srcdev-nuxt-components 9.1.51 → 9.1.53
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/.claude/settings.json +29 -26
- package/.claude/settings.local.json +24 -52
- package/.claude/skills/components/action-menu.md +141 -0
- package/.claude/skills/components/stepper-list.md +52 -18
- package/.claude/skills/css-nesting-conventions.md +121 -0
- package/.claude/skills/index.md +4 -0
- package/.claude/skills/pull-request-description.md +48 -0
- package/.claude/skills/testing-add-unit-test.md +40 -2
- package/.claude/skills/vercel-node-version.md +48 -0
- package/README.md +26 -5
- package/app/components/01.atoms/page-row/PageRow.vue +5 -1
- package/app/components/02.molecules/action-menu/ActionMenu.vue +218 -0
- package/app/components/02.molecules/action-menu/ActionMenuItemCore.vue +123 -0
- package/app/components/02.molecules/action-menu/CONSUMER-STYLING.md +125 -0
- package/app/components/02.molecules/action-menu/stories/ActionMenu.stories.ts +326 -0
- package/app/components/02.molecules/action-menu/tests/ActionMenu.spec.ts +458 -0
- package/app/components/02.molecules/action-menu/tests/ActionMenuItemCore.spec.ts +199 -0
- package/app/components/02.molecules/action-menu/tests/__snapshots__/ActionMenu.spec.ts.snap +28 -0
- package/app/components/02.molecules/action-menu/tests/__snapshots__/ActionMenuItemCore.spec.ts.snap +27 -0
- package/app/components/02.molecules/display-chip/tests/DisplayChip.spec.ts +5 -1
- package/app/components/02.molecules/stepper-list/CONSUMER-STYLING.md +138 -0
- package/app/components/02.molecules/stepper-list/StepperList.vue +50 -24
- package/app/components/03.organisms/image-galleries/slider-gallery/tests/SliderGallery.spec.ts +5 -1
- package/app/components/05.forms/input-button/InputButtonCore.vue +1 -1
- package/app/components/carousels/tests/CarouselFlip.spec.ts +1 -0
- package/app/components/responsive-header/NavigationItems.vue +302 -81
- package/app/components/responsive-header/ResponsiveHeader.vue +360 -56
- package/app/layouts/default.vue +43 -352
- package/app/layouts/site-navigation-demo.vue +36 -34
- package/app/pages/page-hero-highlights.vue +3 -3
- package/app/pages/ui/scroll-reveal-image.vue +3 -3
- package/app/pages/ui/simple-grid.vue +9 -20
- package/modules/colour-scheme.ts +1 -1
- package/nuxt.config.ts +11 -2
- package/package.json +18 -21
package/package.json
CHANGED
|
@@ -1,20 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "srcdev-nuxt-components",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "9.1.
|
|
4
|
+
"version": "9.1.53",
|
|
5
5
|
"main": "nuxt.config.ts",
|
|
6
6
|
"types": "types.d.ts",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"engines": {
|
|
9
|
-
"node": ">=20.19.0 <23",
|
|
10
|
-
"npm": ">=10.0.0"
|
|
11
|
-
},
|
|
12
8
|
"scripts": {
|
|
13
9
|
"clean": "rm -rf .nuxt && rm -rf .output",
|
|
14
10
|
"cleanall": "rm -rf node_modules && rm -rf .nuxt && rm -rf .output && rm package-lock.json",
|
|
15
11
|
"reinstall": "rm -rf node_modules && npm install",
|
|
16
12
|
"cleaninstall": "npm run clean && npm run reinstall",
|
|
17
|
-
"dev": "SRCDEV_STANDALONE=true
|
|
13
|
+
"dev": "SRCDEV_STANDALONE=true nuxt dev",
|
|
18
14
|
"build": "SRCDEV_STANDALONE=true nuxt build",
|
|
19
15
|
"generate": "SRCDEV_STANDALONE=true nuxt generate",
|
|
20
16
|
"preview": "SRCDEV_STANDALONE=true nuxt preview",
|
|
@@ -87,33 +83,34 @@
|
|
|
87
83
|
"@chromatic-com/storybook": "4.1.2",
|
|
88
84
|
"@iconify-json/akar-icons": "1.2.7",
|
|
89
85
|
"@iconify-json/bi": "1.2.7",
|
|
90
|
-
"@iconify-json/bitcoin-icons": "1.2.
|
|
86
|
+
"@iconify-json/bitcoin-icons": "1.2.5",
|
|
91
87
|
"@iconify-json/gravity-ui": "1.2.12",
|
|
92
88
|
"@iconify-json/ic": "*",
|
|
93
89
|
"@iconify-json/logos": "1.2.11",
|
|
94
90
|
"@iconify-json/lucide": "*",
|
|
95
|
-
"@iconify-json/material-symbols": "1.2.
|
|
91
|
+
"@iconify-json/material-symbols": "1.2.73",
|
|
96
92
|
"@iconify-json/mdi": "1.2.3",
|
|
97
93
|
"@iconify-json/radix-icons": "*",
|
|
98
|
-
"@nuxt/eslint": "1.
|
|
94
|
+
"@nuxt/eslint": "1.15.2",
|
|
95
|
+
"@nuxt/schema": "4.4.6",
|
|
99
96
|
"@nuxt/test-utils": "3.23.0",
|
|
100
97
|
"@nuxtjs/storybook": "9.1.0-29374011.dab79ae",
|
|
101
|
-
"@playwright/test": "1.
|
|
98
|
+
"@playwright/test": "1.60.0",
|
|
102
99
|
"@storybook/addon-a11y": "10.0.7",
|
|
103
100
|
"@storybook/addon-docs": "10.0.7",
|
|
104
101
|
"@storybook/builder-vite": "10.0.7",
|
|
105
|
-
"@vue/test-utils": "2.4.
|
|
106
|
-
"@vueuse/core": "14.
|
|
107
|
-
"eslint": "
|
|
102
|
+
"@vue/test-utils": "2.4.10",
|
|
103
|
+
"@vueuse/core": "14.3.0",
|
|
104
|
+
"eslint": "10.4.0",
|
|
108
105
|
"eslint-plugin-storybook": "10.0.7",
|
|
109
|
-
"happy-dom": "20.
|
|
110
|
-
"nuxt-qrcode": "0.4.
|
|
106
|
+
"happy-dom": "20.9.0",
|
|
107
|
+
"nuxt-qrcode": "0.4.10",
|
|
111
108
|
"patch-package": "8.0.1",
|
|
112
|
-
"release-it": "
|
|
109
|
+
"release-it": "20.0.1",
|
|
113
110
|
"storybook": "10.0.7",
|
|
114
|
-
"typescript": "5.
|
|
111
|
+
"typescript": "~5.8.3",
|
|
115
112
|
"vitest": "3.2.4",
|
|
116
|
-
"vue-tsc": "3.
|
|
113
|
+
"vue-tsc": "3.3.1"
|
|
117
114
|
},
|
|
118
115
|
"release-it": {
|
|
119
116
|
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
|
|
@@ -127,15 +124,15 @@
|
|
|
127
124
|
},
|
|
128
125
|
"dependencies": {
|
|
129
126
|
"@nuxt/fonts": "0.14.0",
|
|
130
|
-
"@nuxt/icon": "2.2.
|
|
127
|
+
"@nuxt/icon": "2.2.2",
|
|
131
128
|
"@nuxt/image": "2.0.0",
|
|
132
129
|
"@oddbird/css-anchor-positioning": "0.9.0",
|
|
133
130
|
"@pinia/nuxt": "0.11.3",
|
|
134
131
|
"@vueuse/motion": "3.0.3",
|
|
135
132
|
"focus-trap-vue": "4.1.0",
|
|
136
|
-
"nuxt": "4.4.
|
|
133
|
+
"nuxt": "4.4.6",
|
|
137
134
|
"pinia": "3.0.4",
|
|
138
135
|
"pinia-plugin-persistedstate": "4.7.1",
|
|
139
|
-
"zod": "4.3
|
|
136
|
+
"zod": "4.4.3"
|
|
140
137
|
}
|
|
141
138
|
}
|