@companycam/slab-web 1.6.0 → 1.7.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 +9 -6
- package/index.js +737 -453
- package/index.mjs +2486 -1827
- package/lib/Avatar/Avatar.d.ts +2 -1
- package/lib/ChipFilter/ChipFilter.d.ts +18 -0
- package/lib/ChipToggle/ChipToggle.d.ts +12 -0
- package/lib/InputCheckboxGroup/InputCheckboxGroup.d.ts +57 -0
- package/lib/InputRadio/InputRadio.d.ts +1 -1
- package/lib/InputRadioGroup/InputRadioGroup.d.ts +46 -14
- package/lib/InputRange/InputRange.d.ts +24 -0
- package/lib/InputText/InputText.d.ts +1 -2
- package/lib/Metric/Metric.d.ts +30 -0
- package/lib/Modal/ModalBase.d.ts +1 -1
- package/lib/Switch/Switch.d.ts +16 -0
- package/lib/shared/Chips/ChipLayout.d.ts +3 -0
- package/lib/shared/Chips/styles.d.ts +2 -0
- package/lib/shared/Fieldset/Fieldset.d.ts +2 -1
- package/lib/shared/InputGroup/InputGroup.d.ts +13 -0
- package/lib/shared/LabelLegendText/LabelLegendText.d.ts +2 -1
- package/lib/shared/types.d.ts +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
export * from './lib/
|
|
2
|
-
export * from './lib/InputPassword/InputPassword';
|
|
3
|
-
export * from './lib/InputRadioGroup/InputRadioGroup';
|
|
4
|
-
export * from './lib/shared/Fieldset/Fieldset';
|
|
5
|
-
export * from './lib/InputRadio/InputRadio';
|
|
1
|
+
export * from './lib/Metric/Metric';
|
|
6
2
|
export * from './lib/Avatar/Avatar';
|
|
7
3
|
export * from './lib/Badge/Badge';
|
|
8
4
|
export * from './lib/Billboard/Billboard';
|
|
@@ -10,11 +6,17 @@ export * from './lib/Button/Button';
|
|
|
10
6
|
export * from './lib/ButtonCondensed/ButtonCondensed';
|
|
11
7
|
export * from './lib/ButtonIcon/ButtonIcon';
|
|
12
8
|
export * from './lib/ButtonIconCondensed/ButtonIconCondensed';
|
|
9
|
+
export * from './lib/ChipFilter/ChipFilter';
|
|
10
|
+
export * from './lib/ChipToggle/ChipToggle';
|
|
13
11
|
export * from './lib/shared/Fieldset/Fieldset';
|
|
14
12
|
export * from './lib/InputCheckbox/InputCheckbox';
|
|
15
|
-
export * from './lib/
|
|
13
|
+
export * from './lib/InputCheckboxGroup/InputCheckboxGroup';
|
|
14
|
+
export * from './lib/InputPassword/InputPassword';
|
|
16
15
|
export * from './lib/InputRadio/InputRadio';
|
|
16
|
+
export * from './lib/InputRadioGroup/InputRadioGroup';
|
|
17
|
+
export * from './lib/InputRange/InputRange';
|
|
17
18
|
export * from './lib/InputText/InputText';
|
|
19
|
+
export * from './lib/InputTextArea/InputTextArea';
|
|
18
20
|
export * from './lib/Modal/ModalBase';
|
|
19
21
|
export * from './lib/Notice/Notice';
|
|
20
22
|
export * from './lib/PageHeader/PageHeader';
|
|
@@ -22,3 +24,4 @@ export * from './lib/ScreenReaderContent/ScreenReaderContent';
|
|
|
22
24
|
export * from './lib/Spinner/Spinner';
|
|
23
25
|
export * from './lib/Text/Text';
|
|
24
26
|
export * from './lib/Toast/Toast';
|
|
27
|
+
export * from './lib/Switch/Switch';
|