@soft-stech/bootsman-ui-shadcn 0.1.0-beta.4 → 0.1.0-beta.6
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/bootsman-ui-shadcn.js +2079 -1651
- package/dist/bootsman-ui-shadcn.umd.cjs +22 -17
- package/dist/components/ui/accordion/BuiAccordionContent.vue.d.ts +2 -0
- package/dist/components/ui/accordion/BuiAccordionItem.vue.d.ts +2 -0
- package/dist/components/ui/accordion/BuiAccordionTrigger.vue.d.ts +2 -0
- package/dist/components/ui/accordion/index.d.ts +4 -0
- package/dist/components/ui/alert/BuiAlertDescription.vue.d.ts +2 -0
- package/dist/components/ui/alert/BuiAlertTitle.vue.d.ts +2 -0
- package/dist/components/ui/alert/index.d.ts +4 -0
- package/dist/components/ui/badge/index.d.ts +2 -0
- package/dist/components/ui/button/index.d.ts +2 -0
- package/dist/components/ui/form/BuiFormControl.vue.d.ts +2 -0
- package/dist/components/ui/form/BuiFormDescription.vue.d.ts +2 -0
- package/dist/components/ui/form/BuiFormItem.vue.d.ts +3 -0
- package/dist/components/ui/form/BuiFormLabel.vue.d.ts +2 -0
- package/dist/components/ui/form/BuiFormMessage.vue.d.ts +2 -0
- package/dist/components/ui/form/index.d.ts +6 -0
- package/dist/components/ui/form/useFormField.d.ts +11 -0
- package/dist/components/ui/input/BuiInput.vue.d.ts +2 -0
- package/dist/components/ui/input/index.d.ts +2 -0
- package/dist/components/ui/label/index.d.ts +1 -0
- package/dist/components/ui/switch/index.d.ts +1 -0
- package/dist/index.d.ts +9 -10
- package/package.json +3 -3
@@ -0,0 +1,4 @@
|
|
1
|
+
export { default as Accordion } from './BuiAccordion.vue';
|
2
|
+
export { default as AccordionContent } from './BuiAccordionContent.vue';
|
3
|
+
export { default as AccordionItem } from './BuiAccordionItem.vue';
|
4
|
+
export { default as AccordionTrigger } from './BuiAccordionTrigger.vue';
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export { Form as BuiForm, Field as BuiFormField } from 'vee-validate';
|
2
|
+
export { default as BuiFormItem } from './BuiFormItem.vue';
|
3
|
+
export { default as BuiFormLabel } from './BuiFormLabel.vue';
|
4
|
+
export { default as BuiFormControl } from './BuiFormControl.vue';
|
5
|
+
export { default as BuiFormMessage } from './BuiFormMessage.vue';
|
6
|
+
export { default as BuiFormDescription } from './BuiFormDescription.vue';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Label } from './BuiLabel.vue';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as BuiSwitch } from './BuiSwitch.vue';
|
package/dist/index.d.ts
CHANGED
@@ -1,10 +1,9 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
export { BuiAccordion, BuiAlert, BuiInput, BuiForm, BuiFormField, BuiFormItem, BuiFormLabel, BuiFormControl, BuiFormMessage, BuiFormDescription, BuiButton, BuiSwitch, BuiLabel, BuiBadge, BuiTable, BuiTableBody, BuiTableCaption, BuiTableCell, BuiTableEmpty, BuiTableHead, BuiTableHeader, BuiTableRow, BuiTableFooter };
|
1
|
+
export * from './components/ui/accordion/index';
|
2
|
+
export * from './components/ui/alert/index';
|
3
|
+
export * from './components/ui/input/index';
|
4
|
+
export * from './components/ui/form/index';
|
5
|
+
export * from './components/ui/button/index';
|
6
|
+
export * from './components/ui/switch/index';
|
7
|
+
export * from './components/ui/label/index';
|
8
|
+
export * from './components/ui/badge/index';
|
9
|
+
export * from './components/ui/table/index';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@soft-stech/bootsman-ui-shadcn",
|
3
|
-
"version": "0.1.0-beta.
|
3
|
+
"version": "0.1.0-beta.6",
|
4
4
|
"type": "module",
|
5
5
|
"files": [
|
6
6
|
"dist"
|
@@ -69,10 +69,10 @@
|
|
69
69
|
"prettier": "^3.1.1",
|
70
70
|
"prettier-plugin-tailwindcss": "^0.5.11",
|
71
71
|
"tailwindcss": "^3.4.1",
|
72
|
-
"typescript": "~5.3.
|
72
|
+
"typescript": "~5.3.3",
|
73
73
|
"vite": "^5.0.10",
|
74
74
|
"vite-plugin-dts": "^3.7.0",
|
75
75
|
"vitest": "^1.0.4",
|
76
|
-
"vue-tsc": "^1.8.
|
76
|
+
"vue-tsc": "^1.8.27"
|
77
77
|
}
|
78
78
|
}
|