srcdev-nuxt-components 9.0.18 → 9.1.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/settings.json +4 -2
- package/.claude/skills/component-inline-action-button.md +79 -0
- package/.claude/skills/components/input-copy-core.md +66 -0
- package/.claude/skills/components/page-hero-highlights.md +60 -0
- package/.claude/skills/components/site-navigation.md +120 -0
- package/.claude/skills/icon-sets.md +45 -0
- package/.claude/skills/index.md +7 -1
- package/.claude/skills/performance-review.md +105 -0
- package/.claude/skills/robots-env-aware.md +69 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_error.css +1 -1
- package/app/assets/styles/setup/02.colours/_amber.css +2 -2
- package/app/assets/styles/setup/03.theming/default/_dark.css +20 -2
- package/app/assets/styles/setup/03.theming/default/_light.css +11 -1
- package/app/assets/styles/setup/03.theming/error/_dark.css +1 -1
- package/app/components/01.atoms/text-blocks/eyebrow-text/EyebrowText.vue +15 -12
- package/app/components/01.atoms/text-blocks/hero-text/HeroText.vue +3 -1
- package/app/components/02.molecules/navigation/site-navigation/SiteNavigation.vue +780 -0
- package/app/components/02.molecules/navigation/site-navigation/stories/SiteNavigation.stories.ts +335 -0
- package/app/components/02.molecules/navigation/site-navigation/tests/SiteNavigation.spec.ts +328 -0
- package/app/components/02.molecules/navigation/site-navigation/tests/__snapshots__/SiteNavigation.spec.ts.snap +30 -0
- package/app/components/04.templates/page-hero-highlights/PageHeroHighlights.vue +36 -21
- package/app/components/04.templates/page-hero-highlights/PageHeroHighlightsHeader.vue +66 -0
- package/app/components/04.templates/page-hero-highlights/stories/PageHeroHighlights.stories.ts +50 -3
- package/app/components/04.templates/page-hero-highlights/stories/PageHeroHighlightsHeader.stories.ts +77 -0
- package/app/components/04.templates/page-hero-highlights/tests/PageHeroHighlights.spec.ts +15 -7
- package/app/components/04.templates/page-hero-highlights/tests/PageHeroHighlightsHeader.spec.ts +51 -0
- package/app/components/04.templates/page-hero-highlights/tests/__snapshots__/PageHeroHighlights.spec.ts.snap +1 -1
- package/app/components/forms/form-errors/InputError.vue +104 -103
- package/app/components/forms/input-copy/InputCopyCore.vue +132 -0
- package/app/components/forms/input-copy/stories/InputCopyCore.stories.ts +89 -0
- package/app/components/forms/input-copy/tests/InputCopyCore.spec.ts +212 -0
- package/app/components/forms/input-copy/tests/__snapshots__/InputCopyCore.spec.ts.snap +28 -0
- package/app/layouts/default.vue +1 -0
- package/app/pages/index.vue +0 -5
- package/app/pages/page-hero-highlights.vue +15 -11
- package/modules/icon-sets.ts +53 -0
- package/nuxt.config.ts +8 -0
- package/package.json +49 -6
- package/app/components/03.organisms/treatment-consultant/TreatmentConsultant.vue +0 -2204
- package/app/components/03.organisms/treatment-consultant/stories/TreatmentConsultant.stories.ts +0 -38
- package/app/pages/ui/services/treatment-consultant.vue +0 -39
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
--glass-panel-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
|
|
31
31
|
--glass-panel-highlight: rgba(255, 255, 255, 0.9);
|
|
32
32
|
|
|
33
|
+
/* ===========================================
|
|
34
|
+
HERO TEXT VARIABLES
|
|
35
|
+
=========================================== */
|
|
36
|
+
--hero-text-bg-img: linear-gradient(135deg, #c2a770, #b4747e, #d1bd94);
|
|
37
|
+
|
|
38
|
+
/* ===========================================
|
|
39
|
+
EYEBROW TEXT VARIABLES
|
|
40
|
+
=========================================== */
|
|
41
|
+
--eyebrow-text-bg-img: linear-gradient(135deg, #c2a770, #b4747e, #d1bd94);
|
|
42
|
+
|
|
33
43
|
/* ===========================================
|
|
34
44
|
STEPPER LIST VARIABLES
|
|
35
45
|
=========================================== */
|
|
@@ -64,7 +74,7 @@
|
|
|
64
74
|
/* ===========================================
|
|
65
75
|
TREATMENT CONSULTANT VARIABLES
|
|
66
76
|
=========================================== */
|
|
67
|
-
--treatment-consultant-primary-colour: var(--
|
|
77
|
+
--treatment-consultant-primary-colour: var(--amber-05);
|
|
68
78
|
--treatment-consultant-border-colour: var(--blue-02);
|
|
69
79
|
|
|
70
80
|
--treatment-consultant-checked-surface-colour: var(--green-03);
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
FORM INPUT VARIABLES
|
|
27
27
|
Styling for form inputs and controls
|
|
28
28
|
=========================================== */
|
|
29
|
-
--theme-input-border: var(--red-
|
|
29
|
+
--theme-input-border: var(--red-06);
|
|
30
30
|
--theme-input-border-focus: var(--red-04);
|
|
31
31
|
|
|
32
32
|
/* Input outlines and focus */
|
|
@@ -22,21 +22,24 @@ const { elementClasses } = useStyleClassPassthrough(props.styleClassPassthrough)
|
|
|
22
22
|
|
|
23
23
|
<style lang="css">
|
|
24
24
|
@layer components {
|
|
25
|
-
.eyebrow-text {
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
.eyebrow-text {
|
|
26
|
+
text-transform: uppercase;
|
|
27
|
+
background-clip: text;
|
|
28
|
+
background-image: var(--eyebrow-text-bg-img);
|
|
29
|
+
font-style: italic;
|
|
30
|
+
color: transparent;
|
|
28
31
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
+
&.large {
|
|
33
|
+
font-size: var(--eyebrow-text-large);
|
|
34
|
+
}
|
|
32
35
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
+
&.medium {
|
|
37
|
+
font-size: var(--eyebrow-text-medium);
|
|
38
|
+
}
|
|
36
39
|
|
|
37
|
-
|
|
38
|
-
|
|
40
|
+
&.small {
|
|
41
|
+
font-size: var(--eyebrow-text-small);
|
|
42
|
+
}
|
|
39
43
|
}
|
|
40
44
|
}
|
|
41
|
-
}
|
|
42
45
|
</style>
|