@stlhorizon/vue-ui 1.2.8 → 1.3.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/dist/index.esm.js +6033 -2659
- package/dist/index.js +576 -46
- package/dist/src/components/Alert.vue.d.ts +2 -2
- package/dist/src/components/Badge.vue.d.ts +2 -2
- package/dist/src/components/Breadcrumb.vue.d.ts +2 -2
- package/dist/src/components/Button.vue.d.ts +2 -2
- package/dist/src/components/Checkbox.vue.d.ts +4 -4
- package/dist/src/components/DataTable.vue.d.ts +2 -2
- package/dist/src/components/DataTableCell.vue.d.ts +2 -2
- package/dist/src/components/DataTableFilters.vue.d.ts.map +1 -1
- package/dist/src/components/DataTableToolBar.vue.d.ts.map +1 -1
- package/dist/src/components/DatePicker.vue.d.ts +2 -2
- package/dist/src/components/FormField.vue.d.ts +10 -6
- package/dist/src/components/FormField.vue.d.ts.map +1 -1
- package/dist/src/components/Icon.vue.d.ts +4 -2
- package/dist/src/components/Icon.vue.d.ts.map +1 -1
- package/dist/src/components/Image.vue.d.ts +2 -2
- package/dist/src/components/Input.vue.d.ts +7 -7
- package/dist/src/components/Label.vue.d.ts +2 -2
- package/dist/src/components/Link.vue.d.ts +4 -4
- package/dist/src/components/ListItem.vue.d.ts +2 -2
- package/dist/src/components/Logo.vue.d.ts +2 -2
- package/dist/src/components/Option.vue.d.ts +2 -2
- package/dist/src/components/ProgressBar.vue.d.ts +2 -2
- package/dist/src/components/Radio.vue.d.ts +4 -4
- package/dist/src/components/Search.vue.d.ts +5 -5
- package/dist/src/components/Sidebar.vue.d.ts +2 -0
- package/dist/src/components/Sidebar.vue.d.ts.map +1 -1
- package/dist/src/components/Spinner.vue.d.ts +2 -2
- package/dist/src/components/Textarea.vue.d.ts +6 -6
- package/dist/src/components/Typography.vue.d.ts +2 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/layouts/DashboardLayout.vue.d.ts +2 -9
- package/dist/src/layouts/DashboardLayout.vue.d.ts.map +1 -1
- package/dist/src/layouts/ErrorLayout.vue.d.ts +6 -6
- package/dist/src/router/DashboardRoutes.d.ts +15 -0
- package/dist/src/router/DashboardRoutes.d.ts.map +1 -0
- package/dist/src/router/index.d.ts.map +1 -1
- package/dist/src/views/AnalyticsPage.vue.d.ts +2 -48
- package/dist/src/views/DataTableTest.vue.d.ts +3 -0
- package/dist/src/views/DataTableTest.vue.d.ts.map +1 -0
- package/dist/src/views/authentication/LoginPage.vue.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/vue-ui.css +1 -5
- package/package.json +8 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stlhorizon/vue-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "A Vue.js component library with Tailwind CSS styling",
|
|
@@ -46,12 +46,16 @@
|
|
|
46
46
|
"url": "git+https://github.com/James-Kabz/vue_atomic_ui.git"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"
|
|
50
|
-
"@fortawesome/
|
|
49
|
+
"@fortawesome/fontawesome-svg-core": "^7.0.1",
|
|
50
|
+
"@fortawesome/free-brands-svg-icons": "^7.0.1",
|
|
51
|
+
"@fortawesome/free-regular-svg-icons": "^7.0.1",
|
|
52
|
+
"@fortawesome/free-solid-svg-icons": "^7.0.1",
|
|
53
|
+
"@fortawesome/vue-fontawesome": "^3.1.2",
|
|
51
54
|
"class-variance-authority": "^0.7.0",
|
|
52
55
|
"clsx": "^2.0.0",
|
|
53
56
|
"lucide-vue-next": "^0.292.0",
|
|
54
|
-
"tailwind-merge": "3.3.1"
|
|
57
|
+
"tailwind-merge": "3.3.1",
|
|
58
|
+
"vue-router": "^4.5.1"
|
|
55
59
|
},
|
|
56
60
|
"peerDependencies": {
|
|
57
61
|
"vue": "^3.5.18"
|