srcdev-nuxt-components 9.1.50 → 9.1.52
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 +8 -27
- 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 +3 -0
- package/.claude/skills/pull-request-description.md +48 -0
- package/.claude/skills/testing-add-unit-test.md +40 -2
- package/README.md +26 -5
- 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/navigation/tab-navigation/TabNavigation.vue +2 -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 +17 -16
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "srcdev-nuxt-components",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "9.1.
|
|
4
|
+
"version": "9.1.52",
|
|
5
5
|
"main": "nuxt.config.ts",
|
|
6
6
|
"types": "types.d.ts",
|
|
7
7
|
"license": "MIT",
|
|
@@ -87,33 +87,34 @@
|
|
|
87
87
|
"@chromatic-com/storybook": "4.1.2",
|
|
88
88
|
"@iconify-json/akar-icons": "1.2.7",
|
|
89
89
|
"@iconify-json/bi": "1.2.7",
|
|
90
|
-
"@iconify-json/bitcoin-icons": "1.2.
|
|
90
|
+
"@iconify-json/bitcoin-icons": "1.2.5",
|
|
91
91
|
"@iconify-json/gravity-ui": "1.2.12",
|
|
92
92
|
"@iconify-json/ic": "*",
|
|
93
93
|
"@iconify-json/logos": "1.2.11",
|
|
94
94
|
"@iconify-json/lucide": "*",
|
|
95
|
-
"@iconify-json/material-symbols": "1.2.
|
|
95
|
+
"@iconify-json/material-symbols": "1.2.73",
|
|
96
96
|
"@iconify-json/mdi": "1.2.3",
|
|
97
97
|
"@iconify-json/radix-icons": "*",
|
|
98
|
-
"@nuxt/eslint": "1.
|
|
98
|
+
"@nuxt/eslint": "1.15.2",
|
|
99
|
+
"@nuxt/schema": "4.4.6",
|
|
99
100
|
"@nuxt/test-utils": "3.23.0",
|
|
100
101
|
"@nuxtjs/storybook": "9.1.0-29374011.dab79ae",
|
|
101
|
-
"@playwright/test": "1.
|
|
102
|
+
"@playwright/test": "1.60.0",
|
|
102
103
|
"@storybook/addon-a11y": "10.0.7",
|
|
103
104
|
"@storybook/addon-docs": "10.0.7",
|
|
104
105
|
"@storybook/builder-vite": "10.0.7",
|
|
105
|
-
"@vue/test-utils": "2.4.
|
|
106
|
-
"@vueuse/core": "14.
|
|
107
|
-
"eslint": "
|
|
106
|
+
"@vue/test-utils": "2.4.10",
|
|
107
|
+
"@vueuse/core": "14.3.0",
|
|
108
|
+
"eslint": "10.4.0",
|
|
108
109
|
"eslint-plugin-storybook": "10.0.7",
|
|
109
|
-
"happy-dom": "20.
|
|
110
|
-
"nuxt-qrcode": "0.4.
|
|
110
|
+
"happy-dom": "20.9.0",
|
|
111
|
+
"nuxt-qrcode": "0.4.10",
|
|
111
112
|
"patch-package": "8.0.1",
|
|
112
|
-
"release-it": "
|
|
113
|
+
"release-it": "20.0.1",
|
|
113
114
|
"storybook": "10.0.7",
|
|
114
|
-
"typescript": "5.
|
|
115
|
+
"typescript": "~5.8.3",
|
|
115
116
|
"vitest": "3.2.4",
|
|
116
|
-
"vue-tsc": "3.
|
|
117
|
+
"vue-tsc": "3.3.1"
|
|
117
118
|
},
|
|
118
119
|
"release-it": {
|
|
119
120
|
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
|
|
@@ -127,15 +128,15 @@
|
|
|
127
128
|
},
|
|
128
129
|
"dependencies": {
|
|
129
130
|
"@nuxt/fonts": "0.14.0",
|
|
130
|
-
"@nuxt/icon": "2.2.
|
|
131
|
+
"@nuxt/icon": "2.2.2",
|
|
131
132
|
"@nuxt/image": "2.0.0",
|
|
132
133
|
"@oddbird/css-anchor-positioning": "0.9.0",
|
|
133
134
|
"@pinia/nuxt": "0.11.3",
|
|
134
135
|
"@vueuse/motion": "3.0.3",
|
|
135
136
|
"focus-trap-vue": "4.1.0",
|
|
136
|
-
"nuxt": "4.4.
|
|
137
|
+
"nuxt": "4.4.6",
|
|
137
138
|
"pinia": "3.0.4",
|
|
138
139
|
"pinia-plugin-persistedstate": "4.7.1",
|
|
139
|
-
"zod": "4.3
|
|
140
|
+
"zod": "4.4.3"
|
|
140
141
|
}
|
|
141
142
|
}
|