srcdev-nuxt-components 9.0.17 → 9.1.0

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.
Files changed (28) hide show
  1. package/.claude/settings.json +2 -1
  2. package/.claude/skills/component-inline-action-button.md +79 -0
  3. package/.claude/skills/components/input-copy-core.md +66 -0
  4. package/.claude/skills/components/navigation-horizontal.md +99 -0
  5. package/.claude/skills/components/treatment-consultant.md +128 -0
  6. package/.claude/skills/icon-sets.md +45 -0
  7. package/.claude/skills/index.md +8 -1
  8. package/.claude/skills/performance-review.md +105 -0
  9. package/.claude/skills/robots-env-aware.md +69 -0
  10. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_error.css +1 -1
  11. package/app/assets/styles/setup/02.colours/_amber.css +2 -2
  12. package/app/assets/styles/setup/03.theming/default/_dark.css +20 -2
  13. package/app/assets/styles/setup/03.theming/default/_light.css +11 -1
  14. package/app/assets/styles/setup/03.theming/error/_dark.css +1 -1
  15. package/app/components/01.atoms/text-blocks/eyebrow-text/EyebrowText.vue +15 -12
  16. package/app/components/01.atoms/text-blocks/hero-text/HeroText.vue +3 -1
  17. package/app/components/forms/form-errors/InputError.vue +104 -103
  18. package/app/components/forms/input-copy/InputCopyCore.vue +132 -0
  19. package/app/components/forms/input-copy/stories/InputCopyCore.stories.ts +89 -0
  20. package/app/components/forms/input-copy/tests/InputCopyCore.spec.ts +212 -0
  21. package/app/components/forms/input-copy/tests/__snapshots__/InputCopyCore.spec.ts.snap +28 -0
  22. package/app/pages/index.vue +0 -5
  23. package/modules/icon-sets.ts +53 -0
  24. package/nuxt.config.ts +1 -0
  25. package/package.json +44 -1
  26. package/app/components/03.organisms/treatment-consultant/TreatmentConsultant.vue +0 -2204
  27. package/app/components/03.organisms/treatment-consultant/stories/TreatmentConsultant.stories.ts +0 -38
  28. package/app/pages/ui/services/treatment-consultant.vue +0 -39
@@ -1,38 +0,0 @@
1
- import type { Meta, StoryObj } from "@nuxtjs/storybook";
2
- import TreatmentConsultant from "../TreatmentConsultant.vue";
3
-
4
- const meta: Meta<typeof TreatmentConsultant> = {
5
- title: "Organisms/TreatmentConsultant",
6
- component: TreatmentConsultant,
7
- argTypes: {
8
- autoAdvance: {
9
- control: "boolean",
10
- description: "Automatically advance to the next step after selection",
11
- },
12
- allowMultipleTreatments: {
13
- control: "boolean",
14
- description: "Allow users to select multiple treatments",
15
- },
16
- },
17
- };
18
-
19
- export default meta;
20
- type Story = StoryObj<typeof TreatmentConsultant>;
21
-
22
- // ─── Stories ─────────────────────────────────────────────────────────────────
23
-
24
- export const Default: Story = {
25
- args: {
26
- autoAdvance: true,
27
- allowMultipleTreatments: true,
28
- },
29
- render: (args) => ({
30
- components: { TreatmentConsultant },
31
- setup() {
32
- return { args };
33
- },
34
- template: `
35
- <TreatmentConsultant v-bind="args" />
36
- `,
37
- }),
38
- };
@@ -1,39 +0,0 @@
1
- <template>
2
- <div>
3
- <NuxtLayout name="default">
4
- <template #layout-content>
5
- <LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
6
- <TreatmentConsultant :auto-advance="true" :allow-multiple-treatments="true" />
7
- </LayoutRow>
8
- </template>
9
- </NuxtLayout>
10
- </div>
11
- </template>
12
-
13
- <script setup lang="ts">
14
- definePageMeta({
15
- layout: false,
16
- });
17
-
18
- useHead({
19
- title: "Treatment Consultant - ColourFinder",
20
- meta: [
21
- {
22
- name: "description",
23
- content: "Treatment Consultant Meta description content",
24
- },
25
- ],
26
- bodyAttrs: {
27
- class: "treatment-consultant-page",
28
- },
29
- });
30
- </script>
31
-
32
- <style lang="css">
33
- .treatment-consultant-page {
34
- .colour-finder {
35
- max-inline-size: 800px;
36
- margin-inline: auto;
37
- }
38
- }
39
- </style>