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