srcdev-nuxt-components 9.2.11 → 9.3.1
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/hooks/check-component-update.sh +66 -0
- package/.claude/settings.json +1 -1
- package/.claude/skills/component-local-style-override.md +45 -0
- package/.claude/skills/components/accordian-core.md +26 -5
- package/.claude/skills/components/expanding-panel-classic.md +221 -0
- package/.claude/skills/components/expanding-panel.md +8 -8
- package/.claude/skills/components/navigation-items.md +51 -0
- package/.claude/skills/components/responsive-header.md +161 -0
- package/.claude/skills/components/site-header.md +98 -0
- package/.claude/skills/index.md +6 -1
- package/.claude/skills/page-transitions.md +116 -0
- package/.claude/skills/theming-form-geometry-tokens.md +12 -0
- package/.claude/skills/theming-override-default.md +14 -0
- package/.claude/skills/theming-partial-override.md +17 -0
- package/.vscode/srcdev-component-accordian-core.code-snippets +74 -0
- package/.vscode/srcdev-component-expanding-panel-classic.code-snippets +121 -0
- package/.vscode/srcdev-component-expanding-panel.code-snippets +1 -3
- package/.vscode/srcdev-component-responsive-header.code-snippets +46 -0
- package/.vscode/srcdev-component-site-header.code-snippets +74 -0
- package/app/app.config.ts +1 -1
- package/app/assets/styles/setup/01.config/index.css +2 -2
- package/app/assets/styles/setup/02.colours/index.css +8 -8
- package/app/assets/styles/setup/03.theming/index.css +6 -6
- package/app/assets/styles/setup/04.elements/forms/index.css +2 -2
- package/app/assets/styles/setup/04.elements/index.css +1 -1
- package/app/assets/styles/setup/05.typography/01.tokens/index.css +3 -3
- package/app/assets/styles/setup/05.typography/02.utility-classes/index.css +6 -6
- package/app/assets/styles/setup/05.typography/index.css +2 -2
- package/app/assets/styles/setup/06.utility-classes/animations/index.css +4 -4
- package/app/assets/styles/setup/06.utility-classes/index.css +3 -3
- package/app/assets/styles/setup/06.utility-classes/spacing/index.css +3 -3
- package/app/assets/styles/setup/a11y/index.css +1 -1
- package/app/assets/styles/setup/index.css +7 -7
- package/app/components/01.atoms/content-wrappers/docs-pages/tests/ContentDocs.spec.ts +3 -1
- package/app/components/02.molecules/alert-masked-content/tests/AlertMaskedContent.spec.ts +9 -5
- package/app/components/02.molecules/expandable/accordian/AccordianCore.vue +19 -11
- package/app/components/02.molecules/expandable/accordian/CONSUMER-STYLING.md +93 -0
- package/app/components/02.molecules/expandable/accordian/stories/AccordianCore.stories.ts +31 -0
- package/app/components/02.molecules/expandable/accordian/tests/AccordianCore.spec.ts +31 -0
- package/app/components/02.molecules/expandable/accordian/tests/__snapshots__/AccordianCore.spec.ts.snap +7 -21
- package/app/components/02.molecules/expandable/expanding-panel/CONSUMER-STYLING.md +10 -10
- package/app/components/02.molecules/expandable/expanding-panel/ExpandingPanel.vue +35 -37
- package/app/components/02.molecules/expandable/expanding-panel/stories/ExpandingPanel.stories.ts +5 -6
- package/app/components/02.molecules/expandable/expanding-panel/tests/ExpandingPanel.spec.ts +6 -0
- package/app/components/02.molecules/expandable/expanding-panel/tests/__snapshots__/ExpandingPanel.spec.ts.snap +5 -13
- package/app/components/02.molecules/expandable/expanding-panel-classic/CONSUMER-STYLING.md +103 -0
- package/app/components/02.molecules/expandable/expanding-panel-classic/ExpandingPanelClassic.vue +191 -0
- package/app/components/02.molecules/expandable/expanding-panel-classic/stories/ExpandingPanelClassic.stories.ts +293 -0
- package/app/components/02.molecules/expandable/expanding-panel-classic/tests/ExpandingPanelClassic.spec.ts +514 -0
- package/app/components/02.molecules/expandable/expanding-panel-classic/tests/__snapshots__/ExpandingPanelClassic.spec.ts.snap +59 -0
- package/app/components/02.molecules/navigation/site-navigation/tests/SiteNavigation.spec.ts +9 -5
- package/app/components/02.molecules/navigation/tab-navigation/tests/TabNavigation.spec.ts +9 -5
- package/app/components/03.organisms/image-galleries/slider-gallery/tests/SliderGallery.spec.ts +5 -1
- package/app/components/03.organisms/responsive-header/CONSUMER-STYLING.md +66 -0
- package/app/components/{responsive-header → 03.organisms/responsive-header}/NavigationItems.vue +21 -28
- package/app/components/{responsive-header → 03.organisms/responsive-header}/ResponsiveHeader.vue +141 -43
- package/app/components/03.organisms/responsive-header/stories/NavigationItems.stories.ts +80 -0
- package/app/components/03.organisms/responsive-header/stories/ResponsiveHeader.stories.ts +122 -0
- package/app/components/03.organisms/responsive-header/tests/NavigationItems.spec.ts +155 -0
- package/app/components/03.organisms/responsive-header/tests/ResponsiveHeader.spec.ts +319 -0
- package/app/components/03.organisms/responsive-header/tests/__snapshots__/NavigationItems.spec.ts.snap +34 -0
- package/app/components/03.organisms/responsive-header/tests/__snapshots__/ResponsiveHeader.spec.ts.snap +72 -0
- package/app/components/03.organisms/site-header/CONSUMER-STYLING.md +60 -0
- package/app/components/03.organisms/site-header/SiteHeader.vue +96 -0
- package/app/components/03.organisms/site-header/stories/SiteHeader.stories.ts +135 -0
- package/app/components/03.organisms/site-header/tests/SiteHeader.spec.ts +103 -0
- package/app/components/03.organisms/site-header/tests/__snapshots__/SiteHeader.spec.ts.snap +15 -0
- package/app/components/alert-mask/tests/AlertMaskCore.spec.ts +9 -5
- package/app/composables/tests/useContainerBreakpoints.spec.ts +27 -7
- package/app/composables/tests/useWhatsApp.spec.ts +10 -4
- package/app/layouts/default.vue +64 -67
- package/nuxt.config.ts +9 -0
- package/package.json +29 -21
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "srcdev-nuxt-components",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "9.
|
|
4
|
+
"version": "9.3.1",
|
|
5
5
|
"main": "nuxt.config.ts",
|
|
6
6
|
"types": "types.d.ts",
|
|
7
7
|
"license": "MIT",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=24.0.0"
|
|
10
|
+
},
|
|
8
11
|
"scripts": {
|
|
9
12
|
"postinstall": "node scripts/copy-snippets.mjs",
|
|
10
13
|
"clean": "rm -rf .nuxt && rm -rf .output",
|
|
@@ -90,33 +93,35 @@
|
|
|
90
93
|
"@iconify-json/akar-icons": "1.2.7",
|
|
91
94
|
"@iconify-json/bi": "1.2.7",
|
|
92
95
|
"@iconify-json/bitcoin-icons": "1.2.5",
|
|
93
|
-
"@iconify-json/gravity-ui": "1.2.
|
|
96
|
+
"@iconify-json/gravity-ui": "1.2.14",
|
|
94
97
|
"@iconify-json/ic": "*",
|
|
95
|
-
"@iconify-json/logos": "1.2.
|
|
96
|
-
"@iconify-json/lucide": "
|
|
97
|
-
"@iconify-json/material-symbols": "1.2.
|
|
98
|
+
"@iconify-json/logos": "1.2.13",
|
|
99
|
+
"@iconify-json/lucide": "1.2.124",
|
|
100
|
+
"@iconify-json/material-symbols": "1.2.89",
|
|
98
101
|
"@iconify-json/mdi": "1.2.3",
|
|
99
102
|
"@iconify-json/radix-icons": "*",
|
|
100
|
-
"@nuxt/eslint": "1.
|
|
103
|
+
"@nuxt/eslint": "1.17.0",
|
|
101
104
|
"@nuxt/schema": "4.4.6",
|
|
102
|
-
"@nuxt/test-utils": "
|
|
105
|
+
"@nuxt/test-utils": "4.1.0",
|
|
103
106
|
"@nuxtjs/storybook": "9.1.0-29374011.dab79ae",
|
|
104
|
-
"@playwright/test": "1.
|
|
107
|
+
"@playwright/test": "1.62.1",
|
|
105
108
|
"@storybook/addon-a11y": "10.0.7",
|
|
106
109
|
"@storybook/addon-docs": "10.0.7",
|
|
107
110
|
"@storybook/builder-vite": "10.0.7",
|
|
108
|
-
"@vue/test-utils": "2.4.
|
|
109
|
-
"@vueuse/core": "14.
|
|
110
|
-
"eslint": "10.
|
|
111
|
+
"@vue/test-utils": "2.4.11",
|
|
112
|
+
"@vueuse/core": "14.4.0",
|
|
113
|
+
"eslint": "10.8.1",
|
|
111
114
|
"eslint-plugin-storybook": "10.0.7",
|
|
112
|
-
"happy-dom": "20.
|
|
115
|
+
"happy-dom": "20.11.2",
|
|
113
116
|
"nuxt-qrcode": "0.4.10",
|
|
117
|
+
"oxc-parser": "0.131.0",
|
|
114
118
|
"patch-package": "8.0.1",
|
|
115
|
-
"release-it": "
|
|
119
|
+
"release-it": "21.0.2",
|
|
116
120
|
"storybook": "10.0.7",
|
|
117
|
-
"typescript": "
|
|
118
|
-
"vitest": "
|
|
119
|
-
"vue-
|
|
121
|
+
"typescript": "5.9.3",
|
|
122
|
+
"vitest": "4.1.11",
|
|
123
|
+
"vue-router": "5.2.0",
|
|
124
|
+
"vue-tsc": "3.3.10"
|
|
120
125
|
},
|
|
121
126
|
"release-it": {
|
|
122
127
|
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
|
|
@@ -130,15 +135,18 @@
|
|
|
130
135
|
},
|
|
131
136
|
"dependencies": {
|
|
132
137
|
"@nuxt/fonts": "0.14.0",
|
|
133
|
-
"@nuxt/icon": "2.
|
|
134
|
-
"@nuxt/image": "2.
|
|
135
|
-
"@oddbird/css-anchor-positioning": "0.
|
|
136
|
-
"@pinia/nuxt": "0.
|
|
138
|
+
"@nuxt/icon": "2.5.0",
|
|
139
|
+
"@nuxt/image": "2.1.0",
|
|
140
|
+
"@oddbird/css-anchor-positioning": "0.10.2",
|
|
141
|
+
"@pinia/nuxt": "1.0.2",
|
|
137
142
|
"@vueuse/motion": "3.0.3",
|
|
138
143
|
"focus-trap-vue": "4.1.0",
|
|
139
144
|
"nuxt": "4.4.6",
|
|
140
|
-
"pinia": "
|
|
145
|
+
"pinia": "4.0.3",
|
|
141
146
|
"pinia-plugin-persistedstate": "4.7.1",
|
|
142
147
|
"zod": "4.4.3"
|
|
148
|
+
},
|
|
149
|
+
"overrides": {
|
|
150
|
+
"vue-router": "5.2.0"
|
|
143
151
|
}
|
|
144
152
|
}
|