tide-design-system 2.0.30 → 2.0.31
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/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +92 -28
- package/dist/tide-design-system.esm.js +803 -714
- package/index.ts +6 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -18,6 +18,7 @@ import TideDivider from '@/components/TideDivider.vue';
|
|
|
18
18
|
import TideIcon from '@/components/TideIcon.vue';
|
|
19
19
|
import TideImage from '@/components/TideImage.vue';
|
|
20
20
|
import TideIndicator from '@/components/TideIndicator.vue';
|
|
21
|
+
import TideInputCheckbox from '@/components/TideInputCheckbox.vue';
|
|
21
22
|
import TideInputRadio from '@/components/TideInputRadio.vue';
|
|
22
23
|
import TideInputSelect from '@/components/TideInputSelect.vue';
|
|
23
24
|
import TideInputText from '@/components/TideInputText.vue';
|
|
@@ -168,6 +169,10 @@ export {
|
|
|
168
169
|
SIZE,
|
|
169
170
|
TARGET,
|
|
170
171
|
TEXT_INPUT_TYPE,
|
|
172
|
+
VALIDATOR,
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
export {
|
|
171
176
|
TideAccordionItem,
|
|
172
177
|
TideAlert,
|
|
173
178
|
TideBackgroundImage,
|
|
@@ -188,6 +193,7 @@ export {
|
|
|
188
193
|
TideIcon,
|
|
189
194
|
TideImage,
|
|
190
195
|
TideIndicator,
|
|
196
|
+
TideInputCheckbox,
|
|
191
197
|
TideInputRadio,
|
|
192
198
|
TideInputSelect,
|
|
193
199
|
TideInputText,
|
|
@@ -198,5 +204,4 @@ export {
|
|
|
198
204
|
TideSeoLinks,
|
|
199
205
|
TideTabs,
|
|
200
206
|
TideToggle,
|
|
201
|
-
VALIDATOR,
|
|
202
207
|
};
|
package/package.json
CHANGED