Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
b9b3fbc
Convert the ColorPalette component to TypeScript
kienstra Oct 2, 2022
2521cae
Correct the PR number in the CHANGELOG
kienstra Oct 2, 2022
54af17c
Apply Marco's suggestion to remove ts-ignore comments
kienstra Oct 12, 2022
c9f5d8a
Replace complex type with ReactNode, thanks to Marco's suggestion
kienstra Oct 12, 2022
4a602dd
Apply Marco's suggestions for TS verbatim
kienstra Oct 12, 2022
7fe648e
Prevent an error from colors possibly being undefined
kienstra Oct 12, 2022
fcd61ee
Rename Color and MultipleColors to ColorObject and PaletteObject
kienstra Oct 12, 2022
4629f7c
Alphabetize the imports again
kienstra Oct 12, 2022
6ee6987
Remove another needless ts-ignore comment
kienstra Oct 12, 2022
6a7c211
Revert "Prevent an error from colors possibly being undefined"
kienstra Oct 12, 2022
3fc9fa2
Make colors allow undefined
kienstra Oct 12, 2022
1ece323
Merge branch 'trunk' into update/color-palette-component-ts
kienstra Oct 12, 2022
a07c43f
Make actions optional, which I forgot before
kienstra Oct 18, 2022
90efcd9
Merge in trunk, resolve conflict
kienstra Oct 18, 2022
c420232
Commit Marco's changes, including a named export
kienstra Oct 19, 2022
9b770d3
Add default tags, thanks to Marco's idea
kienstra Oct 19, 2022
ea5b1f3
Apply Marco's suggestion to remove ts-ignore
kienstra Oct 19, 2022
a79c187
Apply Marco's suggestions, creating UnforwardedColorProps
kienstra Oct 19, 2022
e729c8f
Merge in trunk, resolve conflict
kienstra Oct 19, 2022
25e0ba2
Fix a linting error, remove needless className
kienstra Oct 19, 2022
8001f14
Commit Marco's suggestion: Update packages/components/src/color-palet…
kienstra Oct 21, 2022
e793921
Commit Marco's suggestion: Update packages/components/src/color-palet…
kienstra Oct 21, 2022
53c8beb
Rename test/index.js to test/indes.tsx, mv snapshot
kienstra Oct 21, 2022
06f7c4e
Add types to test/index.tsx
kienstra Oct 21, 2022
293fafe
Renamce styles.js to styles.ts
kienstra Oct 21, 2022
0af93a8
Commit Marco's suggestion: Update packages/components/src/color-palet…
kienstra Oct 24, 2022
d77ca5b
Revert "Add types to test/index.tsx"
kienstra Oct 24, 2022
626b25d
Paste Marco's description verbatim
kienstra Oct 24, 2022
905c40e
Copy props verbatim from types.ts into README.md
kienstra Oct 24, 2022
eee647c
Update the JSDoc description to be the same as the README.md description
kienstra Oct 24, 2022
0bb6561
Merge branch 'trunk' into update/color-palette-component-ts
kienstra Oct 24, 2022
73c17ea
Remove extra entry for Tooltip
kienstra Oct 24, 2022
bb25a62
Move the CHANGELOG entry up, to Unreleased
kienstra Oct 24, 2022
4fd5d9c
Move Usage section to the top of the README. remove experimental prop…
kienstra Oct 25, 2022
d65a832
Commit Marco's suggestion: Update packages/components/src/color-palet…
kienstra Oct 25, 2022
29984c0
Remove the example of the full props
kienstra Oct 25, 2022
988e940
Change the props format to match CONTRIBUTING.md
kienstra Oct 25, 2022
193fae3
Merge in trunk, resolve conflict
kienstra Oct 25, 2022
2df05c6
Commit Marco's suggestion: Update packages/components/src/color-palet…
kienstra Oct 25, 2022
e88cf95
Commit Marco's suggestion: Update packages/components/src/color-palet…
kienstra Oct 25, 2022
eb8c5c3
Commit Marco's suggestion: Update packages/components/src/color-palet…
kienstra Oct 25, 2022
a2aa2e0
Commit Marco's suggestion: Update packages/components/src/color-palet…
kienstra Oct 25, 2022
f741e4b
Merge branch 'trunk' into update/color-palette-component-ts
ciampo Oct 26, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Alphabetize the imports again
  • Loading branch information
kienstra committed Oct 12, 2022
commit 4629f7c5b8a3e67436623c49c9fe4e489fcb5791
2 changes: 1 addition & 1 deletion packages/components/src/color-palette/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ import { ColorHeading } from './styles';
import DropdownContentWrapper from '../dropdown/dropdown-content-wrapper';
import type {
ColorObject,
PaletteObject,
ColorPaletteProps,
CustomColorPickerDropdownProps,
MultiplePalettesProps,
PaletteObject,
SinglePaletteProps,
} from './types';

Expand Down