@resee-movies/nuxt-ux 0.4.1 → 0.5.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/module.json +1 -1
- package/dist/module.mjs +9 -2
- package/dist/runtime/components/Button.vue +15 -9
- package/dist/runtime/components/Button.vue.d.ts +2 -12
- package/dist/runtime/components/Card.vue.d.ts +1 -4
- package/dist/runtime/components/Dialog.vue.d.ts +1 -13
- package/dist/runtime/components/Drawer.vue.d.ts +1 -4
- package/dist/runtime/components/Heading.vue.d.ts +1 -4
- package/dist/runtime/components/Icon.vue +27 -15
- package/dist/runtime/components/Icon.vue.d.ts +4 -6
- package/dist/runtime/components/IconTextPair.vue +22 -19
- package/dist/runtime/components/IconTextPair.vue.d.ts +5 -12
- package/dist/runtime/components/Image.vue +1 -1
- package/dist/runtime/components/Image.vue.d.ts +1 -17
- package/dist/runtime/components/LayoutPageColumn.vue.d.ts +1 -4
- package/dist/runtime/components/LayoutPageContainer.vue +12 -2
- package/dist/runtime/components/LayoutPageContainer.vue.d.ts +4 -5
- package/dist/runtime/components/Lorem.vue.d.ts +1 -11
- package/dist/runtime/components/Menu.vue +28 -20
- package/dist/runtime/components/Menu.vue.d.ts +4 -7
- package/dist/runtime/components/Message.vue.d.ts +2 -2
- package/dist/runtime/components/NotificationContainer.vue +0 -1
- package/dist/runtime/components/ProgressBar.vue.d.ts +1 -5
- package/dist/runtime/components/ProgressSpinner.vue.d.ts +1 -3
- package/dist/runtime/components/Tag.vue.d.ts +1 -7
- package/dist/runtime/components/form/Form.vue +52 -0
- package/dist/runtime/components/form/Form.vue.d.ts +27 -0
- package/dist/runtime/components/form/FormField.vue +91 -0
- package/dist/runtime/components/form/FormField.vue.d.ts +37 -0
- package/dist/runtime/components/form/FormFieldCheckbox.vue +51 -0
- package/dist/runtime/components/form/FormFieldCheckbox.vue.d.ts +17 -0
- package/dist/runtime/components/form/FormFieldSelect.vue +76 -0
- package/dist/runtime/components/form/FormFieldSelect.vue.d.ts +26 -0
- package/dist/runtime/components/form/FormFieldText.vue +56 -0
- package/dist/runtime/components/form/FormFieldText.vue.d.ts +16 -0
- package/dist/runtime/components/form/FormFieldToggleSwitch.vue +47 -0
- package/dist/runtime/components/form/FormFieldToggleSwitch.vue.d.ts +15 -0
- package/dist/runtime/components/form/FormLabelInputPair.vue +42 -0
- package/dist/runtime/components/form/FormLabelInputPair.vue.d.ts +22 -0
- package/dist/runtime/components/form/FormSubmitButton.vue +39 -0
- package/dist/runtime/components/form/FormSubmitButton.vue.d.ts +6 -0
- package/dist/runtime/components/form/FormValidationMessage.vue +24 -0
- package/dist/runtime/components/form/FormValidationMessage.vue.d.ts +15 -0
- package/dist/runtime/components/form/element/FormElementSelectOptions.vue +250 -0
- package/dist/runtime/components/form/element/FormElementSelectOptions.vue.d.ts +13 -0
- package/dist/runtime/composables/use-load-image.js +1 -0
- package/dist/runtime/composables/use-resee-ux.d.ts +24 -0
- package/dist/runtime/composables/use-resee-ux.js +22 -0
- package/dist/runtime/constants.d.ts +3 -0
- package/dist/runtime/constants.js +3 -0
- package/dist/runtime/server/plugins/teleport-targets.d.ts +3 -0
- package/dist/runtime/server/plugins/teleport-targets.js +6 -0
- package/dist/runtime/theme/css/brand/form.css +1 -0
- package/dist/runtime/theme/css/brand/menu.css +1 -0
- package/dist/runtime/theme/css/brand/mobile.css +1 -0
- package/dist/runtime/theme/css/brand/transition.css +1 -1
- package/dist/runtime/theme/css/brand/utilities.css +1 -1
- package/dist/runtime/theme/css/styles.css +1 -1
- package/dist/runtime/types/form.d.ts +23 -0
- package/dist/runtime/types/form.js +0 -0
- package/dist/runtime/utils/dom.d.ts +9 -0
- package/dist/runtime/utils/dom.js +25 -0
- package/dist/runtime/utils/form.d.ts +34 -0
- package/dist/runtime/utils/form.js +34 -0
- package/dist/runtime/utils/string.d.ts +6 -0
- package/dist/runtime/utils/string.js +3 -0
- package/dist/runtime/utils/validation.d.ts +21 -0
- package/dist/runtime/utils/validation.js +56 -0
- package/package.json +26 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@resee-movies/nuxt-ux",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "The next-gen user experience library for ReSee Movies - currently in development. ",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/ReSee-Movies/nuxt-ux.git"
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
],
|
|
37
37
|
"scripts": {
|
|
38
38
|
"dev": "npm run dev:prepare && nuxi dev playground",
|
|
39
|
+
"dev:preview": "npm run dev:build && nuxi preview playground",
|
|
39
40
|
"dev:build": "nuxi build playground",
|
|
40
|
-
"dev:preview": "nuxi preview playground",
|
|
41
41
|
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
42
42
|
"prepare": "nuxt-module-build prepare && nuxt-module-build build",
|
|
43
43
|
"release": "dotenv release-it --",
|
|
@@ -48,40 +48,42 @@
|
|
|
48
48
|
"test:coverage": "vitest run --coverage"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@nuxt/devtools": "^
|
|
52
|
-
"@nuxt/eslint": "^1.
|
|
53
|
-
"@nuxt/eslint-config": "^1.
|
|
51
|
+
"@nuxt/devtools": "^3.1.1",
|
|
52
|
+
"@nuxt/eslint": "^1.11.0",
|
|
53
|
+
"@nuxt/eslint-config": "^1.11.0",
|
|
54
54
|
"@nuxt/kit": "^4.1.3",
|
|
55
55
|
"@nuxt/module-builder": "^1.0.2",
|
|
56
56
|
"@nuxt/schema": "^4.1.3",
|
|
57
|
-
"@nuxt/test-utils": "^3.
|
|
58
|
-
"@release-it/conventional-changelog": "^10.0.
|
|
59
|
-
"@types/node": "^
|
|
57
|
+
"@nuxt/test-utils": "^3.20.1",
|
|
58
|
+
"@release-it/conventional-changelog": "^10.0.2",
|
|
59
|
+
"@types/node": "^24.10.1",
|
|
60
60
|
"@vitest/coverage-v8": "^3.2.4",
|
|
61
|
-
"@vue/language-server": "^3.1.0",
|
|
62
61
|
"@vue/test-utils": "^2.4.6",
|
|
63
|
-
"dotenv-cli": "^
|
|
64
|
-
"eslint": "^9.
|
|
65
|
-
"happy-dom": "^
|
|
66
|
-
"nuxt": "^4.1
|
|
67
|
-
"release-it": "^19.0.
|
|
62
|
+
"dotenv-cli": "^11.0.0",
|
|
63
|
+
"eslint": "^9.39.1",
|
|
64
|
+
"happy-dom": "^20.0.11",
|
|
65
|
+
"nuxt": "^4.2.1",
|
|
66
|
+
"release-it": "^19.0.6",
|
|
68
67
|
"typescript": "^5.9.3",
|
|
68
|
+
"vite-plugin-devtools-json": "^1.0.0",
|
|
69
69
|
"vitest": "^3.2.4",
|
|
70
|
-
"vue-tsc": "^3.1.
|
|
70
|
+
"vue-tsc": "^3.1.5"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@egoist/tailwindcss-icons": "^1.9.0",
|
|
74
74
|
"@iconify-json/ph": "^1.2.2",
|
|
75
|
-
"@iconify-json/simple-icons": "^1.2.
|
|
76
|
-
"@iconify-json/solar": "^1.2.
|
|
77
|
-
"@nuxt/fonts": "^0.
|
|
75
|
+
"@iconify-json/simple-icons": "^1.2.61",
|
|
76
|
+
"@iconify-json/solar": "^1.2.5",
|
|
77
|
+
"@nuxt/fonts": "^0.12.1",
|
|
78
78
|
"@primeuix/utils": "^0.6.1",
|
|
79
|
-
"@primevue/
|
|
79
|
+
"@primevue/forms": "^4.5.1",
|
|
80
|
+
"@primevue/nuxt-module": "^4.5.1",
|
|
80
81
|
"@resee-movies/utilities": "^0.10.0",
|
|
81
|
-
"@tailwindcss/postcss": "^4.1.
|
|
82
|
-
"@tailwindcss/vite": "^4.1.
|
|
83
|
-
"@vueuse/core": "^
|
|
84
|
-
"primevue": "^4.
|
|
85
|
-
"tailwindcss": "^4.1.
|
|
82
|
+
"@tailwindcss/postcss": "^4.1.17",
|
|
83
|
+
"@tailwindcss/vite": "^4.1.17",
|
|
84
|
+
"@vueuse/core": "^14.1.0",
|
|
85
|
+
"primevue": "^4.5.1",
|
|
86
|
+
"tailwindcss": "^4.1.17",
|
|
87
|
+
"zod": "^4.1.13"
|
|
86
88
|
}
|
|
87
89
|
}
|