@companycam/slab-web 1.7.0 → 1.9.0
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/index.d.ts +20 -3
- package/index.js +1156 -446
- package/index.mjs +9886 -2551
- package/lib/Billboard/Billboard.d.ts +9 -9
- package/lib/Button/Button.d.ts +2 -2
- package/lib/ButtonCondensed/ButtonCondensed.d.ts +4 -1
- package/lib/ButtonFilter/ButtonFilter.d.ts +15 -0
- package/lib/ButtonIcon/ButtonIcon.d.ts +2 -1
- package/lib/ButtonIconCondensed/ButtonIconCondensed.d.ts +2 -6
- package/lib/Card/Card.d.ts +26 -0
- package/lib/Drawer/Drawer.d.ts +64 -0
- package/lib/Grid/Grid.d.ts +31 -0
- package/lib/HorizontalRule/HorizontalRule.d.ts +13 -0
- package/lib/InputFile/InputFile.d.ts +34 -0
- package/lib/Label/Label.d.ts +11 -0
- package/lib/Link/Link.d.ts +10 -0
- package/lib/Menu/Menu.d.ts +30 -0
- package/lib/MenuHeading/MenuHeading.d.ts +6 -0
- package/lib/MenuItem/MenuItem.d.ts +12 -0
- package/lib/Metric/Metric.d.ts +15 -3
- package/lib/Modal/Modal.d.ts +38 -0
- package/lib/Modal/ModalBase.d.ts +1 -30
- package/lib/Notice/Notice.d.ts +6 -4
- package/lib/Popover/Popover.d.ts +25 -0
- package/lib/ProgressBar/ProgressBar.d.ts +15 -0
- package/lib/ProgressCircle/ProgressCircle.d.ts +18 -0
- package/lib/Table/Table.d.ts +46 -0
- package/lib/Text/Text.d.ts +1 -1
- package/lib/Tooltip/Tooltip.d.ts +13 -0
- package/lib/shared/Buttons/IconInsideButtons.d.ts +8 -0
- package/lib/shared/Buttons/TextInsideButtons.d.ts +8 -0
- package/lib/shared/Buttons/styles.d.ts +24 -0
- package/lib/shared/Message/Message.d.ts +6 -0
- package/lib/shared/TableColumnSortButton/TableColumnSortButton.d.ts +4 -0
- package/lib/shared/styles.d.ts +25 -11
- package/lib/shared/types.d.ts +12 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,27 +1,44 @@
|
|
|
1
|
-
export * from './lib/Metric/Metric';
|
|
2
1
|
export * from './lib/Avatar/Avatar';
|
|
3
2
|
export * from './lib/Badge/Badge';
|
|
4
3
|
export * from './lib/Billboard/Billboard';
|
|
5
4
|
export * from './lib/Button/Button';
|
|
6
5
|
export * from './lib/ButtonCondensed/ButtonCondensed';
|
|
6
|
+
export * from './lib/ButtonFilter/ButtonFilter';
|
|
7
7
|
export * from './lib/ButtonIcon/ButtonIcon';
|
|
8
8
|
export * from './lib/ButtonIconCondensed/ButtonIconCondensed';
|
|
9
|
+
export * from './lib/Card/Card';
|
|
9
10
|
export * from './lib/ChipFilter/ChipFilter';
|
|
10
11
|
export * from './lib/ChipToggle/ChipToggle';
|
|
11
|
-
export * from './lib/
|
|
12
|
+
export * from './lib/Drawer/Drawer';
|
|
13
|
+
export * from './lib/Grid/Grid';
|
|
14
|
+
export * from './lib/HorizontalRule/HorizontalRule';
|
|
12
15
|
export * from './lib/InputCheckbox/InputCheckbox';
|
|
13
16
|
export * from './lib/InputCheckboxGroup/InputCheckboxGroup';
|
|
17
|
+
export * from './lib/InputFile/InputFile';
|
|
14
18
|
export * from './lib/InputPassword/InputPassword';
|
|
15
19
|
export * from './lib/InputRadio/InputRadio';
|
|
16
20
|
export * from './lib/InputRadioGroup/InputRadioGroup';
|
|
17
21
|
export * from './lib/InputRange/InputRange';
|
|
18
22
|
export * from './lib/InputText/InputText';
|
|
19
23
|
export * from './lib/InputTextArea/InputTextArea';
|
|
24
|
+
export * from './lib/Label/Label';
|
|
25
|
+
export * from './lib/Link/Link';
|
|
26
|
+
export * from './lib/Menu/Menu';
|
|
27
|
+
export * from './lib/MenuHeading/MenuHeading';
|
|
28
|
+
export * from './lib/MenuItem/MenuItem';
|
|
29
|
+
export * from './lib/Metric/Metric';
|
|
30
|
+
export * from './lib/Modal/Modal';
|
|
20
31
|
export * from './lib/Modal/ModalBase';
|
|
21
32
|
export * from './lib/Notice/Notice';
|
|
22
33
|
export * from './lib/PageHeader/PageHeader';
|
|
34
|
+
export * from './lib/Popover/Popover';
|
|
35
|
+
export * from './lib/ProgressBar/ProgressBar';
|
|
36
|
+
export * from './lib/ProgressCircle/ProgressCircle';
|
|
23
37
|
export * from './lib/ScreenReaderContent/ScreenReaderContent';
|
|
24
38
|
export * from './lib/Spinner/Spinner';
|
|
39
|
+
export * from './lib/Switch/Switch';
|
|
40
|
+
export * from './lib/Table/Table';
|
|
25
41
|
export * from './lib/Text/Text';
|
|
26
42
|
export * from './lib/Toast/Toast';
|
|
27
|
-
export * from './lib/
|
|
43
|
+
export * from './lib/Tooltip/Tooltip';
|
|
44
|
+
export * from './lib/shared/Fieldset/Fieldset';
|