@indico-data/design-system 1.0.48 → 1.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/Accordion/Accordion.styles.d.ts +1 -275
- package/lib/components/Icon/Icon.stories.d.ts +2 -2
- package/lib/components/Icon/storyHelpers.d.ts +3 -813
- package/lib/components/ListTable/Header/Header.styles.d.ts +1 -272
- package/lib/components/ListTable/ListTable.styles.d.ts +1 -272
- package/lib/components/LoadingAwareContainer/LoadingAwareContainer.styles.d.ts +2 -543
- package/lib/components/Navigation/Drawer/DrawerLinkList.styles.d.ts +1 -272
- package/lib/components/Pagination/Pagination.styles.d.ts +1 -272
- package/lib/components/Wizard/Wizard.styles.d.ts +3 -814
- package/lib/components/basic-section/Section/Section.styles.d.ts +1 -272
- package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +1 -272
- package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +1 -272
- package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +1 -272
- package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +1 -272
- package/lib/components/buttons/Button/Button.styles.d.ts +1 -282
- package/lib/components/buttons/IconButton/IconButton.styles.d.ts +2 -567
- package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +2 -543
- package/lib/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +1 -84
- package/lib/components/dropdowns/Select/Select.styles.d.ts +1 -272
- package/lib/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +1 -84
- package/lib/components/index.d.ts +1 -1
- package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +1 -272
- package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +1 -272
- package/lib/components/inputs/RadioButtons/RadioButtons.d.ts +24 -0
- package/lib/components/inputs/RadioButtons/RadioButtons.stories.d.ts +15 -0
- package/lib/components/inputs/RadioButtons/RadioButtons.styles.d.ts +14 -0
- package/lib/components/inputs/RadioButtons/index.d.ts +1 -0
- package/lib/components/inputs/RadioGroup/RadioGroup.d.ts +27 -0
- package/lib/components/inputs/RadioGroup/RadioGroup.stories.d.ts +16 -0
- package/lib/components/inputs/RadioGroup/RadioGroup.styles.d.ts +2 -0
- package/lib/components/inputs/RadioGroup/index.d.ts +1 -0
- package/lib/components/inputs/SearchInput/SearchInput.styles.d.ts +1 -272
- package/lib/components/inputs/TextInput/TextInput.styles.d.ts +2 -543
- package/lib/components/inputs/index.d.ts +2 -0
- package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +1 -272
- package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +1 -272
- package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +1 -272
- package/lib/components/modals/ConfirmModal/ConfirmModal.styles.d.ts +1 -272
- package/lib/components/modals/ModalBase/ModalBase.styles.d.ts +1 -3
- package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +1 -272
- package/lib/index.d.ts +191 -953
- package/lib/index.esm.js +1624 -186
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1626 -184
- package/lib/index.js.map +1 -1
- package/lib/tokens/colors.d.ts +2 -0
- package/package.json +45 -42
- package/src/components/Wizard/Wizard.tsx +0 -1
- package/src/components/WizardWithSidebar/WizardWithSidebar.tsx +1 -0
- package/src/components/index.ts +10 -1
- package/src/components/inputs/RadioButtons/RadioButtons.stories.tsx +84 -0
- package/src/components/inputs/RadioButtons/RadioButtons.styles.ts +82 -0
- package/src/components/inputs/RadioButtons/RadioButtons.tsx +61 -0
- package/src/components/inputs/RadioButtons/index.tsx +1 -0
- package/src/components/inputs/RadioGroup/RadioGroup.stories.tsx +66 -0
- package/src/components/inputs/RadioGroup/RadioGroup.styles.ts +11 -0
- package/src/components/inputs/RadioGroup/RadioGroup.tsx +120 -0
- package/src/components/inputs/RadioGroup/index.ts +1 -0
- package/src/components/inputs/SearchInput/SearchInput.styles.ts +1 -1
- package/src/components/inputs/index.ts +2 -0
- package/src/components/loading-indicators/LoadingIndicator/LoadingIndicator.stories.tsx +0 -1
- package/src/index.ts +4 -0
- package/src/tokens/colors.ts +2 -0
- package/lib/components/Navigation/Drawer/constants.d.ts +0 -3
package/src/tokens/colors.ts
CHANGED
|
@@ -18,6 +18,7 @@ export const allColors = {
|
|
|
18
18
|
bouqet: '#a35c9a',
|
|
19
19
|
brick: '#c62828',
|
|
20
20
|
brightDusk: '#efebf7',
|
|
21
|
+
britishShorthair: '#4b94eb',
|
|
21
22
|
brown: '#785349',
|
|
22
23
|
candyCorn: '#fcef4d',
|
|
23
24
|
carnation: '#ff8adf',
|
|
@@ -28,6 +29,7 @@ export const allColors = {
|
|
|
28
29
|
charcoal: '#474b4b',
|
|
29
30
|
chartreuse: '#34ff01',
|
|
30
31
|
clay: '#283243',
|
|
32
|
+
clementine: '#F16E00',
|
|
31
33
|
cocoaBean: '#5c1200',
|
|
32
34
|
comet: '#5a6982',
|
|
33
35
|
cornflower: '#2060ff',
|