@indico-data/design-system 2.3.0 → 2.3.1
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/index.css +36 -0
- package/lib/index.d.ts +977 -9
- package/lib/index.esm.css +36 -0
- package/lib/index.esm.js +7412 -7019
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +7536 -7142
- package/lib/index.js.map +1 -1
- package/lib/src/components/button/Button.stories.d.ts +1 -1
- package/lib/src/components/grid/col/Col.stories.d.ts +1 -2
- package/lib/src/components/grid/container/Container.stories.d.ts +1 -1
- package/lib/src/components/grid/row/Row.stories.d.ts +1 -1
- package/lib/src/components/index.d.ts +1 -1
- package/lib/src/components/table/index.d.ts +1 -0
- package/lib/src/index.d.ts +1 -0
- package/lib/src/legacy/components/Toggle/Toggle.d.ts +1 -2
- package/lib/src/legacy/components/Toggle/Toggle.stories.d.ts +1 -1
- package/lib/src/legacy/components/inputs/NoInputDatePicker/NoInputDatePicker.d.ts +1 -2
- package/lib/src/legacy/components/loading-indicators/CircleSpinner/CircleSpinner.d.ts +1 -2
- package/lib/src/types.d.ts +2 -0
- package/package.json +1 -1
- package/rollup.config.mjs +1 -1
- package/src/components/button/Button.mdx +1 -1
- package/src/components/button/Button.stories.tsx +8 -8
- package/src/components/button/Button.tsx +1 -1
- package/src/components/grid/GridSystem.mdx +0 -1
- package/src/components/grid/col/Col.stories.tsx +1 -2
- package/src/components/grid/container/Container.mdx +0 -1
- package/src/components/grid/container/Container.stories.tsx +1 -3
- package/src/components/grid/row/Row.mdx +0 -1
- package/src/components/grid/row/Row.stories.tsx +1 -3
- package/src/components/icons/Icon.mdx +1 -1
- package/src/components/icons/Icon.stories.tsx +2 -3
- package/src/components/index.ts +1 -1
- package/src/components/table/index.ts +1 -0
- package/src/index.ts +1 -0
- package/src/legacy/components/Accordion/Accordion.tsx +1 -1
- package/src/legacy/components/ListTable/Header/Header.tsx +2 -4
- package/src/legacy/components/ListTable/ListTable.stories.tsx +1 -1
- package/src/legacy/components/Toggle/Toggle.tsx +2 -3
- package/src/legacy/components/Tooltip/Tooltip.tsx +2 -1
- package/src/legacy/components/basic-section/SectionTable/SectionTable.tsx +1 -1
- package/src/legacy/components/buttons/IconButton/IconButton.tsx +1 -1
- package/src/legacy/components/dropdowns/BorderSelect/BorderSelect.tsx +1 -1
- package/src/legacy/components/dropdowns/MultiCombobox/MultiCombobox.tsx +1 -1
- package/src/legacy/components/dropdowns/Select/Select.tsx +1 -1
- package/src/legacy/components/dropdowns/SingleCombobox/SingleCombobox.tsx +1 -1
- package/src/legacy/components/inputs/EditableInput/EditableInput.tsx +1 -1
- package/src/legacy/components/inputs/NoInputDatePicker/NoInputDatePicker.tsx +2 -3
- package/src/legacy/components/inputs/NumberInput/NumberInput.tsx +1 -1
- package/src/legacy/components/inputs/SearchInput/SearchInput.stories.tsx +3 -3
- package/src/legacy/components/inputs/SearchInput/SearchInput.tsx +1 -1
- package/src/legacy/components/loading-indicators/CircleSpinner/CircleSpinner.tsx +2 -3
- package/src/legacy/components/user-feedback/Shrug/Shrug.tsx +1 -1
- package/src/styles/index.scss +2 -1
- package/src/types.ts +3 -0
- package/webpack.config.js +13 -6
- package/lib/src/components/tables/table/index.d.ts +0 -1
- package/src/components/tables/table/index.ts +0 -1
- /package/lib/src/components/{tables/table → table}/LoadingComponent.d.ts +0 -0
- /package/lib/src/components/{tables/table → table}/Table.d.ts +0 -0
- /package/lib/src/components/{tables/table → table}/Table.stories.d.ts +0 -0
- /package/lib/src/components/{tables/table → table}/sampleData.d.ts +0 -0
- /package/src/components/grid/{Grid.scss → styles/Grid.scss} +0 -0
- /package/src/components/{tables/table → table}/LoadingComponent.tsx +0 -0
- /package/src/components/{tables/table → table}/Table.mdx +0 -0
- /package/src/components/{tables/table → table}/Table.stories.tsx +0 -0
- /package/src/components/{tables/table → table}/Table.tsx +0 -0
- /package/src/components/{tables/table → table}/sampleData.ts +0 -0
- /package/src/components/{tables/table → table/styles}/Table.scss +0 -0
- /package/src/components/{tables/table → table/styles}/_variables.scss +0 -0
package/lib/index.esm.css
CHANGED
|
@@ -721,6 +721,42 @@
|
|
|
721
721
|
font-size: var(--pf-icon-size-xl);
|
|
722
722
|
}
|
|
723
723
|
|
|
724
|
+
.sb__sample-cell {
|
|
725
|
+
background: var(--pf-primary-color-400);
|
|
726
|
+
color: var(--pf-gray-color);
|
|
727
|
+
padding: 1rem;
|
|
728
|
+
margin: 2px 0;
|
|
729
|
+
}
|
|
730
|
+
.sb__sample-cell-secondary {
|
|
731
|
+
background: var(--pf-secondary-color-400);
|
|
732
|
+
color: var(--pf-gray-color);
|
|
733
|
+
padding: 1rem;
|
|
734
|
+
margin: 2px 0;
|
|
735
|
+
}
|
|
736
|
+
.sb__sample-cell-green {
|
|
737
|
+
background: var(--pf-green-color-400);
|
|
738
|
+
color: var(--pf-secondary-color-900);
|
|
739
|
+
padding: 1rem;
|
|
740
|
+
margin: 2px 0;
|
|
741
|
+
}
|
|
742
|
+
.sb__sample-cell-orange {
|
|
743
|
+
background: var(--pf-orange-color-400);
|
|
744
|
+
color: var(--pf-secondary-color-900);
|
|
745
|
+
padding: 1rem;
|
|
746
|
+
margin: 2px 0;
|
|
747
|
+
}
|
|
748
|
+
.sb__sample-cell-red {
|
|
749
|
+
background: var(--pf-red-color-400);
|
|
750
|
+
color: var(--pf-gray-color);
|
|
751
|
+
padding: 1rem;
|
|
752
|
+
margin: 2px 0;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.sb__sample-row {
|
|
756
|
+
min-height: 110px;
|
|
757
|
+
margin: 1em 0;
|
|
758
|
+
}
|
|
759
|
+
|
|
724
760
|
:root,
|
|
725
761
|
:root [data-theme=light],
|
|
726
762
|
:root [data-theme=dark] {
|