srcdev-nuxt-components 9.0.14 → 9.0.16
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 +25 -0
- package/.claude/skills/component-aria-landmark.md +68 -0
- package/.claude/skills/component-dynamic-slots.md +150 -0
- package/.claude/skills/component-local-style-override.md +126 -0
- package/.claude/skills/component-prop-driven-container-layout.md +42 -0
- package/.claude/skills/components/accordian-core.md +159 -0
- package/.claude/skills/components/contact-section.md +101 -0
- package/.claude/skills/components/expanding-panel.md +156 -0
- package/.claude/skills/components/eyebrow-text.md +25 -0
- package/.claude/skills/components/hero-text.md +25 -0
- package/.claude/skills/components/layout-grid-by-cols.md +147 -0
- package/.claude/skills/components/layout-row.md +35 -0
- package/.claude/skills/components/link-text.md +33 -0
- package/.claude/skills/components/page-hero-highlights.md +224 -0
- package/.claude/skills/components/services-card.md +28 -0
- package/.claude/skills/components/services-section.md +25 -0
- package/.claude/skills/components/stepper-list.md +227 -0
- package/.claude/skills/css-grid-max-width-gutters.md +67 -0
- package/.claude/skills/index.md +14 -3
- package/.claude/skills/storybook-add-story.md +60 -0
- package/.claude/skills/testing-add-unit-test.md +56 -0
- package/app/assets/styles/setup/01.config/index.css +0 -1
- package/app/assets/styles/setup/03.theming/default/_dark.css +2 -2
- package/app/assets/styles/setup/04.elements/forms/02.typography.css +1 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/_font-classes-page-link.css +14 -14
- package/app/assets/styles/setup/index.css +0 -1
- package/app/components/01.atoms/card/CardCore.vue +92 -0
- package/app/components/01.atoms/card/stories/CardCore.stories.ts +132 -0
- package/app/components/01.atoms/card/tests/CardCore.spec.ts +207 -0
- package/app/components/01.atoms/card/tests/__snapshots__/CardCore.spec.ts.snap +43 -0
- package/app/components/01.atoms/content-wrappers/content-columns-2/ContentColumns2.vue +51 -0
- package/app/components/01.atoms/content-wrappers/content-columns-2/stories/ContentColumns2.stories.ts +110 -0
- package/app/components/01.atoms/content-wrappers/content-columns-2/tests/ContentColumns2.spec.ts +105 -0
- package/app/components/01.atoms/content-wrappers/content-columns-2/tests/__snapshots__/ContentColumns2.spec.ts.snap +14 -0
- package/app/components/01.atoms/content-wrappers/content-width/ContentWidth.vue +88 -0
- package/app/components/01.atoms/content-wrappers/content-width/stories/ContentWidth.stories.ts +362 -0
- package/app/components/01.atoms/content-wrappers/content-width/tests/ContentWidth.spec.ts +132 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-cols/LayoutGridByCols.vue +71 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-cols/stories/LayoutGridByCols.stories.ts +219 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-cols/tests/LayoutGridByCols.spec.ts +174 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-cols/tests/__snapshots__/LayoutGrid.spec.ts.snap +36 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-cols/tests/__snapshots__/LayoutGridByCols.spec.ts.snap +36 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-width/LayoutGridByWidth.vue +70 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-width/stories/LayoutGridByWidth.stories.ts +220 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-width/tests/LayoutGridByWidth.spec.ts +174 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-width/tests/__snapshots__/LayoutGrid.spec.ts.snap +36 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-width/tests/__snapshots__/LayoutGridByCols.spec.ts.snap +36 -0
- package/app/components/01.atoms/content-wrappers/layout-grid/layout-grid-by-width/tests/__snapshots__/LayoutGridByWidth.spec.ts.snap +36 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/stories/EyebrowText.stories.ts +1 -1
- package/app/components/01.atoms/text-blocks/hero-text/stories/HeroText.stories.ts +1 -1
- package/app/components/01.atoms/text-blocks/link-text/stories/LinkText.stories.ts +1 -1
- package/app/components/02.molecules/contact-section/stories/ContactSection.stories.ts +5 -0
- package/app/components/02.molecules/contact-section/tests/ContactSection.spec.ts +15 -0
- package/app/components/02.molecules/contact-section/tests/ContactSection.vue +25 -17
- package/app/components/{accordian → 02.molecules/expandable/accordian}/stories/AccordianCore.stories.ts +1 -1
- package/app/components/02.molecules/expandable/expanding-panel/stories/ExpandingPanel.stories.ts +245 -0
- package/app/components/02.molecules/expandable/expanding-panel/tests/ExpandingPanel.spec.ts +351 -0
- package/app/components/02.molecules/expandable/expanding-panel/tests/__snapshots__/ExpandingPanel.spec.ts.snap +38 -0
- package/app/components/02.molecules/navigation/navigation-horizontal/NavigationHorizontal.vue +139 -0
- package/app/components/02.molecules/navigation/navigation-horizontal/NavigationHorizontalAdvanced.vue +172 -0
- package/app/components/02.molecules/profile-section/ProfileSection.vue +2 -3
- package/app/components/02.molecules/profile-section/tests/ProfileSection.spec.ts +2 -2
- package/app/components/02.molecules/stepper-list/StepperList.vue +131 -92
- package/app/components/02.molecules/stepper-list/stories/StepperList.stories.ts +31 -0
- package/app/components/02.molecules/stepper-list/tests/StepperList.spec.ts +24 -0
- package/app/components/02.molecules/stepper-list/tests/__snapshots__/StepperList.spec.ts.snap +22 -9
- package/app/components/03.organisms/image-galleries/slider-gallery/SliderGallery.vue +782 -0
- package/app/components/03.organisms/image-galleries/slider-gallery/stories/SliderGallery.stories.ts +233 -0
- package/app/components/03.organisms/image-galleries/slider-gallery/tests/SliderGallery.spec.ts +226 -0
- package/app/components/03.organisms/image-galleries/slider-gallery/tests/__snapshots__/SliderGallery.spec.ts.snap +69 -0
- package/app/components/03.organisms/services/services-grids/ServicesCardGrid.vue +1 -1
- package/app/components/03.organisms/services/services-grids/ServicesSectionGrid.vue +1 -1
- package/app/components/03.organisms/services/services-section/ServicesSection.vue +2 -3
- package/app/components/04.templates/page-hero-highlights/PageHeroHighlights.vue +239 -0
- package/app/components/04.templates/page-hero-highlights/stories/PageHeroHighlights.stories.ts +404 -0
- package/app/components/04.templates/page-hero-highlights/tests/PageHeroHighlights.spec.ts +198 -0
- package/app/components/04.templates/page-hero-highlights/tests/__snapshots__/PageHeroHighlights.spec.ts.snap +19 -0
- package/app/components/container-glow/ContainerGlowCore.vue +20 -27
- package/app/components/forms/input-button/InputButtonCore.vue +105 -104
- package/app/components/glowing-border/stories/GlowingBorder.stories.ts +21 -21
- package/app/composables/useAriaLabelledById.ts +13 -0
- package/app/layouts/default.vue +8 -3
- package/app/pages/forms/examples/buttons/index.vue +6 -6
- package/app/pages/forms/examples/material/checkbox-radio-panels.vue +3 -3
- package/app/pages/forms/examples/material/text-fields.vue +607 -610
- package/app/pages/page-hero-highlights.vue +81 -0
- package/app/pages/ui/{display-card.vue → card-core.vue} +15 -15
- package/app/pages/ui/contact-section.vue +1 -1
- package/app/pages/ui/container-glow.vue +1 -1
- package/app/pages/ui/content-width.vue +126 -0
- package/app/pages/ui/glowing-border.vue +9 -9
- package/app/pages/ui/navigation/navigation-horizontal.vue +493 -0
- package/app/pages/ui/services/services-section/[slug].vue +3 -1
- package/nuxt.config.ts +4 -1
- package/package.json +2 -2
- package/app/assets/styles/setup/01.config/_basic-resets.css +0 -9
- package/app/components/content-columns/TwoColumns.vue +0 -59
- package/app/components/content-columns/stories/TwoColumns.stories.ts +0 -561
- package/app/components/content-containers/ContentContainer.vue +0 -89
- package/app/components/content-containers/stories/ContentContainer.stories.ts +0 -465
- package/app/components/content-grid/ContentGrid.vue +0 -85
- package/app/components/display-card/DisplayCard.vue +0 -122
- package/app/components/image-galleries/SliderGallery.vue +0 -786
- package/app/pages/ui/content-container.vue +0 -112
- /package/app/components/{accordian → 02.molecules/expandable/accordian}/AccordianCore.vue +0 -0
- /package/app/components/{accordian → 02.molecules/expandable/accordian}/tests/AccordianCore.spec.ts +0 -0
- /package/app/components/{accordian → 02.molecules/expandable/accordian}/tests/__snapshots__/AccordianCore.spec.ts.snap +0 -0
- /package/app/components/{expanding-panel → 02.molecules/expandable/expanding-panel}/ExpandingPanel.vue +0 -0
package/app/layouts/default.vue
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="page-layout">
|
|
3
|
-
<LayoutRow tag="div" variant="full" :style-class-passthrough="['header'
|
|
3
|
+
<LayoutRow tag="div" variant="full" :style-class-passthrough="['header']">
|
|
4
4
|
<template #default>
|
|
5
5
|
<header class="responsive-header">
|
|
6
6
|
<nav class="home-navigation" aria-label="Home Navigation">
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
</header>
|
|
39
39
|
</template>
|
|
40
40
|
</LayoutRow>
|
|
41
|
-
<LayoutRow id="main-content" tag="main" variant="full" :is-landmark="true">
|
|
41
|
+
<LayoutRow id="main-content" class="main-content" tag="main" variant="full" :is-landmark="true">
|
|
42
42
|
<template #default>
|
|
43
43
|
<slot name="layout-content">Page content goes here</slot>
|
|
44
44
|
</template>
|
|
@@ -74,7 +74,7 @@ const responsiveNavLinks = {
|
|
|
74
74
|
{ name: "Container Glow", path: "/ui/container-glow" },
|
|
75
75
|
{ name: "Accordian", path: "/ui/accordian" },
|
|
76
76
|
{ name: "Display Details", path: "/ui/display-details" },
|
|
77
|
-
{ name: "
|
|
77
|
+
{ name: "Card Core", path: "/ui/card-core" },
|
|
78
78
|
{ name: "Glowing Border", path: "/ui/glowing-border" },
|
|
79
79
|
{ name: "Display Toast", path: "/ui/display-toast" },
|
|
80
80
|
{ name: "Masked Alert", path: "/ui/mask-element" },
|
|
@@ -96,6 +96,7 @@ const responsiveNavLinks = {
|
|
|
96
96
|
childLinksTitle: "UI Layouts",
|
|
97
97
|
childLinks: [
|
|
98
98
|
{ name: "Block Decorators", path: "/ui/block-decorators" },
|
|
99
|
+
{ name: "Navigation Horizontal", path: "/ui/navigation/navigation-horizontal" },
|
|
99
100
|
{ name: "Magnetic Navigation", path: "/ui/magnetic-navigation" },
|
|
100
101
|
{ name: "Layout Row", path: "/ui/layout-row" },
|
|
101
102
|
{ name: "Layout Grid A", path: "/ui/layout-grid-a" },
|
|
@@ -205,6 +206,10 @@ onMounted(() => {
|
|
|
205
206
|
display: grid;
|
|
206
207
|
grid-template-columns: 1fr;
|
|
207
208
|
grid-template-rows: auto 1fr auto;
|
|
209
|
+
|
|
210
|
+
.main-content {
|
|
211
|
+
container-type: inline-size;
|
|
212
|
+
}
|
|
208
213
|
}
|
|
209
214
|
|
|
210
215
|
/* Modifiers for ResposiveHeader */
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
<DisplayThemeSwitch />
|
|
10
10
|
</LayoutRow>
|
|
11
11
|
|
|
12
|
-
<
|
|
13
|
-
<template #
|
|
12
|
+
<LayoutGridByCols>
|
|
13
|
+
<template #item-0>
|
|
14
14
|
<div>
|
|
15
15
|
<h1>Example buttons</h1>
|
|
16
16
|
<p>Primary submit</p>
|
|
@@ -115,10 +115,10 @@
|
|
|
115
115
|
</ul>
|
|
116
116
|
</div>
|
|
117
117
|
</template>
|
|
118
|
-
</
|
|
118
|
+
</LayoutGridByCols>
|
|
119
119
|
|
|
120
|
-
<
|
|
121
|
-
<template #
|
|
120
|
+
<LayoutGridByCols>
|
|
121
|
+
<template #item-0>
|
|
122
122
|
<div>
|
|
123
123
|
<h1>Example buttons</h1>
|
|
124
124
|
<p>Currently displaying {{ buttonText }}</p>
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
</ul>
|
|
197
197
|
</div>
|
|
198
198
|
</template>
|
|
199
|
-
</
|
|
199
|
+
</LayoutGridByCols>
|
|
200
200
|
</template>
|
|
201
201
|
</NuxtLayout>
|
|
202
202
|
</div>
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<div>
|
|
6
6
|
<h1 class="header-1">Checkbox/Radio panels</h1>
|
|
7
7
|
</div>
|
|
8
|
-
<
|
|
9
|
-
<template #
|
|
8
|
+
<LayoutGridByCols>
|
|
9
|
+
<template #item-0>
|
|
10
10
|
<FormWrapper width="medium">
|
|
11
11
|
<template #default>
|
|
12
12
|
<ClientOnly>
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
</template>
|
|
85
85
|
</FormWrapper>
|
|
86
86
|
</template>
|
|
87
|
-
</
|
|
87
|
+
</LayoutGridByCols>
|
|
88
88
|
</template>
|
|
89
89
|
</NuxtLayout>
|
|
90
90
|
</div>
|