srcdev-nuxt-components 8.0.2 → 9.0.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.
- package/README.md +170 -118
- package/app/assets/styles/extends-layer/srcdev-components/components/_display-prompt-core.css +94 -0
- package/app/assets/styles/extends-layer/srcdev-components/components/_display-toast.css +5 -0
- package/app/assets/styles/extends-layer/srcdev-components/components/_expanding-panel.css +37 -0
- package/app/assets/styles/extends-layer/srcdev-components/components/index.css +3 -0
- package/app/assets/styles/extends-layer/srcdev-components/index.css +1 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_form-fieldset.css +38 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-button.css +67 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-checkbox-radio-core.css +87 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-checkbox-radio-options-button.css +74 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-checkbox-radio-with-label.css +14 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-description.css +13 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-error.css +54 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-label.css +21 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-select.css +143 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-text.css +190 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-textarea.css +96 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/_input-toggle-switch.css +68 -0
- package/app/assets/styles/extends-layer/srcdev-forms/components/index.css +12 -0
- package/app/assets/styles/extends-layer/srcdev-forms/index.css +2 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/_generic.css +21 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/index.css +3 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/sizes/_default.css +13 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/sizes/_large.css +12 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/sizes/_medium.css +12 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/sizes/_small.css +12 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/sizes/_x-small.css +11 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/sizes/index.css +23 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_default.css +62 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_error.css +63 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_ghost.css +63 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_info.css +63 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_primary.css +66 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_secondary.css +64 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_success.css +63 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_tertiary.css +63 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_warning.css +63 -0
- package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/index.css +7 -0
- package/app/assets/styles/main.css +2 -0
- package/app/assets/styles/setup/01.config/_basic-resets.css +9 -0
- package/app/assets/styles/setup/01.config/_head.css +33 -0
- package/app/assets/styles/setup/01.config/_normalise.css +209 -0
- package/app/assets/styles/setup/01.config/index.css +3 -0
- package/app/assets/styles/setup/02.colours/_amber.css +12 -0
- package/app/assets/styles/setup/02.colours/_blue.css +13 -0
- package/app/assets/styles/setup/02.colours/_green.css +13 -0
- package/app/assets/styles/setup/02.colours/_orange.css +12 -0
- package/app/assets/styles/setup/02.colours/_red.css +13 -0
- package/app/assets/styles/setup/02.colours/_slate.css +13 -0
- package/app/assets/styles/setup/02.colours/_sunset.css +12 -0
- package/app/assets/styles/setup/02.colours/index.css +7 -0
- package/app/assets/styles/setup/03.theming/default/_dark.css +138 -0
- package/app/assets/styles/setup/03.theming/default/_light.css +156 -0
- package/app/assets/styles/setup/03.theming/default/index.css +2 -0
- package/app/assets/styles/setup/03.theming/error/_dark.css +56 -0
- package/app/assets/styles/setup/03.theming/error/_light.css +74 -0
- package/app/assets/styles/setup/03.theming/error/index.css +2 -0
- package/app/assets/styles/setup/03.theming/index.css +4 -0
- package/app/assets/styles/setup/03.theming/success/_dark.css +50 -0
- package/app/assets/styles/setup/03.theming/success/_light.css +65 -0
- package/app/assets/styles/setup/03.theming/success/index.css +2 -0
- package/app/assets/styles/setup/03.theming/warning/_dark.css +50 -0
- package/app/assets/styles/setup/03.theming/warning/_light.css +64 -0
- package/app/assets/styles/setup/03.theming/warning/index.css +2 -0
- package/app/assets/styles/setup/04.elements/forms/00.element-defaults.css +21 -0
- package/app/assets/styles/setup/04.elements/forms/01.field-layout-container-level.css +14 -0
- package/app/assets/styles/setup/04.elements/forms/02.typography.css +24 -0
- package/app/assets/styles/setup/04.elements/forms/03.generic-input-geometry.css +63 -0
- package/app/assets/styles/setup/04.elements/forms/04.slot-icon-system.css +14 -0
- package/app/assets/styles/setup/04.elements/forms/05.checkbox-radio-geometry.css +17 -0
- package/app/assets/styles/setup/04.elements/forms/06.button-geometry.css +17 -0
- package/app/assets/styles/setup/04.elements/forms/07.validation-error-block-layout.css +9 -0
- package/app/assets/styles/setup/04.elements/forms/09.animation-motion.css +6 -0
- package/app/assets/styles/setup/04.elements/forms/index.css +9 -0
- package/app/assets/styles/setup/04.elements/index.css +1 -0
- package/app/assets/styles/setup/05.typography/01.tokens/_font-family.css +8 -0
- package/app/assets/styles/setup/05.typography/01.tokens/_reponsive-font-sizes.css +22 -0
- package/app/assets/styles/setup/05.typography/01.tokens/_timing-functions.css +119 -0
- package/app/assets/styles/setup/05.typography/01.tokens/index.css +3 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/_font-classes-article.css +30 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/_font-classes-card.css +45 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/_font-classes-page-body.css +146 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/_font-classes-page-heading.css +35 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/_font-classes-page-link.css +116 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/_font-classes-section.css +7 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/_generic-font-classes.css +3 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/_generic-font-variation-settings.css +29 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/_generic-font-weights.css +39 -0
- package/app/assets/styles/setup/05.typography/02.utility-classes/index.css +9 -0
- package/app/assets/styles/setup/05.typography/index.css +2 -0
- package/app/assets/styles/setup/06.utility-classes/_a11y.css +280 -0
- package/app/assets/styles/setup/06.utility-classes/animations/_auto-rotate.css +13 -0
- package/app/assets/styles/setup/06.utility-classes/animations/_entry-exit-blur.css +16 -0
- package/app/assets/styles/setup/06.utility-classes/animations/_entry-slide-in.css +15 -0
- package/app/assets/styles/setup/06.utility-classes/animations/_entry-zoom-reveal.css +15 -0
- package/app/assets/styles/setup/06.utility-classes/animations/index.css +4 -0
- package/app/assets/styles/setup/06.utility-classes/index.css +4 -0
- package/app/assets/styles/setup/06.utility-classes/layout/_containers.css +96 -0
- package/app/assets/styles/setup/06.utility-classes/layout/_flexbox.css +196 -0
- package/app/assets/styles/setup/06.utility-classes/layout/_grid.css +266 -0
- package/app/assets/styles/setup/06.utility-classes/layout/_positioning.css +149 -0
- package/app/assets/styles/setup/06.utility-classes/layout/index.css +9 -0
- package/app/assets/styles/setup/06.utility-classes/spacing/_fluid-spacing.css +13 -0
- package/app/assets/styles/setup/06.utility-classes/spacing/_margin.css +334 -0
- package/app/assets/styles/setup/06.utility-classes/spacing/_padding.css +308 -0
- package/app/assets/styles/setup/06.utility-classes/spacing/index.css +3 -0
- package/app/assets/styles/setup/a11y/_variables.css +8 -0
- package/app/assets/styles/setup/a11y/index.css +1 -0
- package/app/assets/styles/setup/index.css +10 -0
- package/app/components/01.atoms/animations/entry/EntryAnimation.vue +22 -0
- package/app/components/01.atoms/animations/entry/stories/EntryAnimation.stories.ts +74 -0
- package/app/components/01.atoms/glass-panel/GlassPanel.vue +52 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/EyebrowText.vue +42 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts +67 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/default-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/default-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/default-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/fontSize-large-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/fontSize-large-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/fontSize-large-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/fontSize-medium-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/fontSize-medium-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/fontSize-medium-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/fontSize-small-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/fontSize-small-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/fontSize-small-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/tag-div-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/tag-div-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/tag-div-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/tag-p-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/tag-p-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/tag-p-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/tag-span-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/tag-span-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/playwright/eyebrow-text.playwright.ts-snapshots/tag-span-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/stories/EyebrowText.stories.ts +49 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/tests/EyebrowText.spec.ts +196 -0
- package/app/components/01.atoms/text-blocks/eyebrow-text/tests/__snapshots__/EyebrowText.spec.ts.snap +17 -0
- package/app/components/01.atoms/text-blocks/hero-text/HeroText.vue +101 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts +110 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-display-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-display-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-display-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-heading-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-heading-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-heading-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-label-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-label-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-label-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-subheading-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-subheading-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-subheading-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-title-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-title-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-fontSize-title-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-horizontal-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-display-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-display-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-display-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-heading-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-heading-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-heading-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-label-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-label-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-label-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-subheading-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-subheading-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-subheading-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-title-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-title-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-fontSize-title-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/axis-vertical-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/default-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/default-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/default-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-display-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-display-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-display-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-heading-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-heading-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-heading-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-label-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-label-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-label-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-subheading-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-subheading-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-subheading-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-title-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-title-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/fontSize-title-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/icon-with-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/icon-with-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/icon-with-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/icon-without-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/icon-without-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/icon-without-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h1-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h1-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h1-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h2-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h2-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h2-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h3-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h3-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h3-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h4-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h4-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h4-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h5-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h5-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h5-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h6-chromium-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h6-firefox-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/playwright/hero-text.playwright.ts-snapshots/tag-h6-webkit-darwin.png +0 -0
- package/app/components/01.atoms/text-blocks/hero-text/stories/HeroText.stories.ts +70 -0
- package/app/components/01.atoms/text-blocks/hero-text/tests/HeroText.spec.ts +148 -0
- package/app/components/01.atoms/text-blocks/hero-text/tests/__snapshots__/HeroText.spec.ts.snap +7 -0
- package/app/components/02.molecules/contact-section/stories/ContactSection.stories.ts +197 -0
- package/app/components/02.molecules/contact-section/tests/ContactSection.spec.ts +196 -0
- package/app/components/02.molecules/contact-section/tests/ContactSection.vue +87 -0
- package/app/components/02.molecules/contact-section/tests/__snapshots__/ContactSection.spec.ts.snap +119 -0
- package/app/components/02.molecules/price-list/PriceList.vue +119 -0
- package/app/components/02.molecules/price-list/stories/PriceList.stories.ts +103 -0
- package/app/components/02.molecules/price-list/tests/PriceList.spec.ts +192 -0
- package/app/components/02.molecules/price-list/tests/__snapshots__/PriceList.spec.ts.snap +73 -0
- package/app/components/02.molecules/profile-section/ProfileSection.vue +154 -0
- package/app/components/02.molecules/profile-section/stories/ProfileSection.stories.ts +154 -0
- package/app/components/02.molecules/profile-section/tests/ProfileSection.spec.ts +147 -0
- package/app/components/02.molecules/profile-section/tests/__snapshots__/ProfileSection.spec.ts.snap +29 -0
- package/app/components/02.molecules/stepper-list/StepperList.vue +158 -0
- package/app/components/02.molecules/stepper-list/stories/StepperList.stories.ts +392 -0
- package/app/components/02.molecules/stepper-list/tests/StepperList.spec.ts +289 -0
- package/app/components/02.molecules/stepper-list/tests/__snapshots__/StepperList.spec.ts.snap +86 -0
- package/app/components/03.organisms/colour-finder/ColourFinder.vue +1519 -0
- package/app/components/03.organisms/services/services-card/ServicesCard.vue +104 -0
- package/app/components/03.organisms/services/services-grids/ServicesCardGrid.vue +39 -0
- package/app/components/03.organisms/services/services-grids/ServicesSectionGrid.vue +52 -0
- package/app/components/03.organisms/services/services-section/ServicesSection.vue +307 -0
- package/app/components/03.organisms/treatment-consultant/TreatmentConsultant.vue +2221 -0
- package/app/components/03.organisms/treatment-consultant/stories/TreatmentConsultant.stories.ts +38 -0
- package/app/components/accordian/AccordianCore.vue +26 -21
- package/app/components/accordian/stories/AccordianCore.stories.ts +241 -0
- package/app/components/accordian/tests/AccordianCore.spec.ts +218 -0
- package/app/components/accordian/tests/__snapshots__/AccordianCore.spec.ts.snap +74 -0
- package/app/components/alert-mask/AlertMaskCore.vue +35 -33
- package/app/components/alert-mask/tests/AlertMaskCore.spec.ts +304 -0
- package/app/components/animated-svg-text/AnimatedSvgText.vue +2 -0
- package/app/components/canvas-switcher/CanvasSwitcher.vue +10 -8
- package/app/components/{carousel-basic → carousels}/CarouselBasic.vue +58 -56
- package/app/components/{carousel-basic → carousels}/CarouselFlip.vue +150 -148
- package/app/components/{carousel-basic → carousels}/CarouselInfinite.vue +2 -0
- package/app/components/carousels/stories/CarouselFlip.stories.ts +637 -0
- package/app/components/carousels/tests/CarouselFlip.spec.ts +556 -0
- package/app/components/clip-element/ClipElement.vue +2 -0
- package/app/components/clipped-panels/ClippedPanel.vue +2 -0
- package/app/components/container-glow/ContainerGlowCore.vue +119 -50
- package/app/components/container-glow/stories/ContainerGlowCore.stories.ts +337 -0
- package/app/components/content-columns/TwoColumns.vue +59 -0
- package/app/components/content-columns/stories/TwoColumns.stories.ts +561 -0
- package/app/components/content-containers/ContentContainer.vue +89 -0
- package/app/components/content-containers/stories/ContentContainer.stories.ts +465 -0
- package/app/components/content-grid/ContentGrid.vue +4 -2
- package/app/components/deep-expanding-menu/DeepExpandingMenu.vue +18 -16
- package/app/components/deep-expanding-menu/DeepExpandingMenuOld.vue +28 -26
- package/app/components/display-avatar/DisplayAvatar.vue +15 -13
- package/app/components/display-avatar/stories/DisplayAvatar.stories.ts +94 -0
- package/app/components/display-banner/DisplayBanner.vue +2 -0
- package/app/components/display-card/DisplayCard.vue +16 -14
- package/app/components/display-chip/DisplayChip.vue +2 -0
- package/app/components/display-chip/stories/DisplayChip.stories.ts +346 -0
- package/app/components/display-details/DisplayDetailsCore.vue +2 -0
- package/app/components/display-dialog/DisplayDialogCore.vue +24 -17
- package/app/components/display-dialog/variants/DisplayDialogConfirm.vue +2 -0
- package/app/components/display-dialog/variants/DisplayDialogScrollableContent.vue +2 -0
- package/app/components/display-grid/DisplayGridCore.vue +4 -4
- package/app/components/display-prompt/DisplayPromptCore.vue +20 -16
- package/app/components/display-prompt/variants/DisplayPromptError.vue +6 -4
- package/app/components/display-theme-switch/DisplayThemeSwitch.vue +182 -0
- package/app/components/display-theme-switch/stories/DisplayThemeSwitch.stories.ts +154 -0
- package/app/components/display-toast/DisplayToast.vue +63 -61
- package/app/components/display-toast/molecules/DefaultToastContent.vue +21 -45
- package/app/components/display-toast/stories/DisplayToast.stories.ts +380 -0
- package/app/components/display-tooltip/DisplayTooltip.vue +14 -9
- package/app/components/display-tooltip/DisplayTooltipDefined.vue +2 -0
- package/app/components/expanding-panel/ExpandingPanel.vue +28 -41
- package/app/components/forms/c12/prop-validators/index.ts +48 -0
- package/app/components/forms/c12/utils.ts +14 -0
- package/app/components/forms/form-errors/InputError.vue +208 -0
- package/app/components/forms/form-errors/tests/InputError.spec.ts +66 -0
- package/app/components/forms/form-fieldset/FormFieldset.vue +75 -0
- package/app/components/forms/input-button/InputButtonCore.vue +219 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts +113 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-secondary-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-secondary-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-secondary-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-tertiary-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-tertiary-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-tertiary-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-primary-pending-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-primary-pending-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-primary-pending-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-secondary-pill-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-secondary-pill-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-secondary-pill-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-tertiary-readonly-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-tertiary-readonly-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-tertiary-readonly-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-default-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-default-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-default-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-error-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-error-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-error-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-success-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-success-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-success-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-warning-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-warning-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-warning-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-primary-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-primary-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-primary-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-secondary-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-secondary-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-secondary-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-tertiary-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-tertiary-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-tertiary-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/default-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/nuxt-icon-only-component-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/nuxt-icon-only-component-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/nuxt-icon-only-component-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pending-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pending-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pending-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pill-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pill-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pill-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/state-readonly-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/state-readonly-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/state-readonly-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/with-both-nuxt-icon-components-chromium-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/with-both-nuxt-icon-components-firefox-darwin.png +0 -0
- package/app/components/forms/input-button/playwright/input-button-core.playwright.ts-snapshots/with-both-nuxt-icon-components-webkit-darwin.png +0 -0
- package/app/components/forms/input-button/stories/InputButtonCore.stories.ts +304 -0
- package/app/components/forms/input-button/tests/InputButtonCore.spec.ts +269 -0
- package/app/components/forms/input-button/tests/__snapshots__/InputButtonCore.spec.ts.snap +72 -0
- package/app/components/forms/input-checkbox/MultipleCheckboxes.vue +181 -0
- package/app/components/forms/input-checkbox/SingleCheckbox.vue +144 -0
- package/app/components/forms/input-checkbox/tests/MultipleCheckboxes.spec.ts +101 -0
- package/app/components/forms/input-checkbox/tests/data/tags.json +67 -0
- package/app/components/forms/input-checkbox-radio/InputCheckboxRadioButton.vue +174 -0
- package/app/components/forms/input-checkbox-radio/InputCheckboxRadioCore.vue +199 -0
- package/app/components/forms/input-checkbox-radio/InputCheckboxRadioWithLabel.vue +104 -0
- package/app/components/forms/input-checkbox-radio/tests/InputCheckboxRadioCore.spec.ts +320 -0
- package/app/components/forms/input-description/InputDescription.vue +55 -0
- package/app/components/forms/input-description/tests/InputDescription.spec.ts +429 -0
- package/app/components/forms/input-label/InputLabel.vue +66 -0
- package/app/components/forms/input-label/tests/InputLabel.spec.ts +431 -0
- package/app/components/forms/input-number/InputNumberCore.vue +163 -0
- package/app/components/forms/input-number/variants/InputNumberDefault.vue +150 -0
- package/app/components/forms/input-radio/MultipleRadiobuttons.vue +180 -0
- package/app/components/forms/input-radio/tests/MultipleRadioButtons.spec.ts +90 -0
- package/app/components/forms/input-radio/tests/data/tags.json +67 -0
- package/app/components/forms/input-range/InputRangeCore.vue +233 -0
- package/app/components/forms/input-range/variants/InputRangeDefault.vue +166 -0
- package/app/components/forms/input-range-fancy/InputRangeFancyCore.vue +426 -0
- package/app/components/forms/input-range-fancy/InputRangeFancyWithLabel.vue +94 -0
- package/app/components/forms/input-select/InputSelectCore.vue +171 -0
- package/app/components/forms/input-select/variants/InputSelectWithLabel.vue +121 -0
- package/app/components/forms/input-text/InputTextCore.vue +222 -0
- package/app/components/forms/input-text/stories/InputPasswordWithLabel.stories.ts +339 -0
- package/app/components/forms/input-text/stories/InputTextAsNumberWithLabel.stories.ts +461 -0
- package/app/components/forms/input-text/stories/InputTextCore.stories.ts +241 -0
- package/app/components/forms/input-text/stories/InputTextWithLabel.stories.ts +293 -0
- package/app/components/forms/input-text/variants/InputPasswordWithLabel.vue +86 -0
- package/app/components/forms/input-text/variants/InputTextAsNumberWithLabel.vue +203 -0
- package/app/components/forms/input-text/variants/InputTextWithLabel.vue +149 -0
- package/app/components/forms/input-textarea/InputTextareaCore.vue +151 -0
- package/app/components/forms/input-textarea/stories/InputTextareaCore.stories.ts +247 -0
- package/app/components/forms/input-textarea/stories/InputTextareaWithLabel.stories.ts +452 -0
- package/app/components/forms/input-textarea/variants/InputTextareaWithLabel.vue +150 -0
- package/app/components/forms/pending-effect/PendingEffect.vue +101 -0
- package/app/components/forms/toggle-switch/ToggleSwitchCore.vue +221 -0
- package/app/components/forms/toggle-switch/stories/ToggleSwitchCore.stories.ts +236 -0
- package/app/components/forms/toggle-switch/stories/ToggleSwitchWithLabel.stories.ts +253 -0
- package/app/components/forms/toggle-switch/stories/ToggleSwitchWithLabelInline.stories.ts +280 -0
- package/app/components/forms/toggle-switch/variants/ToggleSwitchWithLabel.vue +101 -0
- package/app/components/forms/toggle-switch/variants/ToggleSwitchWithLabelInline.vue +84 -0
- package/app/components/forms/triple-toggle-switch/TripleToggleSwitchCore.vue +290 -0
- package/app/components/forms/ui/FormField.vue +81 -0
- package/app/components/forms/ui/FormWrapper.vue +37 -0
- package/app/components/glowing-border/GlowingBorder.vue +2 -0
- package/app/components/glowing-border/stories/GlowingBorder.stories.ts +141 -0
- package/app/components/image-galleries/SliderGallery.vue +100 -100
- package/app/components/layout-grids/LayoutGridA.vue +2 -0
- package/app/components/layout-grids/LayoutGridB.vue +8 -6
- package/app/components/layout-grids/stories/LayoutGridA.stories.ts +402 -0
- package/app/components/layout-grids/stories/LayoutGridB.stories.ts +420 -0
- package/app/components/layout-grids/tests/LayoutGridA.spec.ts +352 -0
- package/app/components/layout-grids/tests/LayoutGridB.spec.ts +490 -0
- package/app/components/layout-row/LayoutRow.vue +60 -54
- package/app/components/layout-row/stories/LayoutRow.stories.ts +528 -0
- package/app/components/magnetic-navigation/MagneticNavigation.vue +2 -0
- package/app/components/marquee-scroller/MarqueeScroller.vue +35 -33
- package/app/components/masonry-grid/MasonryGrid.vue +8 -6
- package/app/components/masonry-grid-ordered/MasonryGridOrdered.vue +2 -0
- package/app/components/masonry-grid-ordered/MasonryGridOrderedGridExperiment.vue +82 -87
- package/app/components/masonry-grid-ordered/stories/MasonryGridOrdered.stories.ts +354 -0
- package/app/components/masonry-grid-sorted/MasonryGridSorted.vue +2 -0
- package/app/components/parallax/SectionParallax.vue +10 -8
- package/app/components/pop-over/PopOver.vue +2 -0
- package/app/components/qr-code/CaptureQrCode.vue +2 -0
- package/app/components/qr-code/DecodeQrCode.vue +2 -0
- package/app/components/qr-code/DisplayQrCode.vue +7 -5
- package/app/components/qr-code/stories/QrCode.stories.ts +933 -0
- package/app/components/responsive-header/NavigationItems.vue +34 -23
- package/app/components/responsive-header/ResponsiveHeader.vue +163 -157
- package/app/components/rotating-carousel/RotatingCarouselImage.vue +2 -0
- package/app/components/skip-links/SkipLinks.vue +2 -0
- package/app/components/tabs/TabsCore.vue +38 -30
- package/app/components/test-storybook/TestStorybook.vue +49 -0
- package/app/components/test-storybook/stories/TestStorybook.stories.ts +28 -0
- package/app/components/ui-block-decorated/UiBlockDecorated.vue +2 -0
- package/app/components/view-timeline/WipeAwayVertical.vue +2 -0
- package/app/composables/useApiRequest.ts +25 -0
- package/app/composables/useAriaDescribedById.ts +19 -0
- package/app/composables/useColourScheme.ts +18 -0
- package/app/composables/useErrorMessages.ts +62 -0
- package/app/composables/useFormControl.ts +264 -0
- package/app/composables/useMaxChildWidth.ts +30 -0
- package/app/composables/useTabs.ts +207 -117
- package/app/composables/useZodValidation.ts +147 -0
- package/app/layouts/default.vue +605 -0
- package/app/pages/forms/examples/buttons/index.vue +285 -0
- package/app/pages/forms/examples/material/checkbox-radio-panels.vue +244 -0
- package/app/pages/forms/examples/material/cssbattle.vue +60 -0
- package/app/pages/forms/examples/material/text-fields.vue +913 -0
- package/app/pages/index.vue +122 -0
- package/app/pages/typography/hero-text.vue +97 -0
- package/app/pages/typography/index.vue +39 -0
- package/app/pages/typography/page-body.vue +171 -0
- package/app/pages/typography/page-heading.vue +76 -0
- package/app/pages/typography/page-link.vue +103 -0
- package/app/pages/ui/accordian.vue +211 -0
- package/app/pages/ui/animated-svg-text.vue +85 -0
- package/app/pages/ui/block-decorators.vue +142 -0
- package/app/pages/ui/carousel-basic.vue +292 -0
- package/app/pages/ui/carousel-flip.vue +244 -0
- package/app/pages/ui/carousel-infinite.vue +260 -0
- package/app/pages/ui/clipped-panels.vue +101 -0
- package/app/pages/ui/contact-section.vue +323 -0
- package/app/pages/ui/container-glow.vue +107 -0
- package/app/pages/ui/content-container.vue +112 -0
- package/app/pages/ui/display-avatar.vue +253 -0
- package/app/pages/ui/display-banner.vue +78 -0
- package/app/pages/ui/display-card.vue +82 -0
- package/app/pages/ui/display-chip.vue +225 -0
- package/app/pages/ui/display-details.vue +175 -0
- package/app/pages/ui/display-dialog.vue +231 -0
- package/app/pages/ui/display-prompt.vue +81 -0
- package/app/pages/ui/display-toast.vue +332 -0
- package/app/pages/ui/expanding-panel.vue +193 -0
- package/app/pages/ui/glowing-border.vue +111 -0
- package/app/pages/ui/layout-grid-a.vue +149 -0
- package/app/pages/ui/layout-grid-b.vue +132 -0
- package/app/pages/ui/layout-row.vue +139 -0
- package/app/pages/ui/magnetic-navigation.vue +50 -0
- package/app/pages/ui/marquee-scroller.vue +99 -0
- package/app/pages/ui/mask-element.vue +82 -0
- package/app/pages/ui/masonry-columns.vue +55 -0
- package/app/pages/ui/masonry-grid-ordered-experiment.vue +79 -0
- package/app/pages/ui/masonry-grid-ordered.vue +56 -0
- package/app/pages/ui/masonry-grid-sorted.vue +55 -0
- package/app/pages/ui/masonry-grid.vue +55 -0
- package/app/pages/ui/price-list.vue +65 -0
- package/app/pages/ui/profile-section.vue +96 -0
- package/app/pages/ui/qr-code/[componentName].vue +218 -0
- package/app/pages/ui/rotating-carousel.vue +154 -0
- package/app/pages/ui/section-parallax.vue +54 -0
- package/app/pages/ui/services/colour-finder.vue +43 -0
- package/app/pages/ui/services/services-cards.vue +42 -0
- package/app/pages/ui/services/services-section/[slug].vue +59 -0
- package/app/pages/ui/services/services-sections-compact.vue +64 -0
- package/app/pages/ui/services/treatment-consultant.vue +39 -0
- package/app/pages/ui/settings.vue +80 -0
- package/app/pages/ui/simple-grid.vue +66 -0
- package/app/pages/ui/slider-gallery.vue +261 -0
- package/app/pages/ui/tabs-y.vue +108 -0
- package/app/pages/ui/tabs.vue +192 -0
- package/app/pages/ui/tooltips.vue +104 -0
- package/app/pages/ui/wipe-away-vertical.vue +129 -0
- package/app/plugins/css-anchor-positioning-polyfill.client.ts +5 -0
- package/app/stores/useServicesStore.ts +37 -0
- package/app/stores/useSettingsStore.ts +35 -0
- package/app/types/components/hero-text.ts +4 -0
- package/app/types/components/index.ts +1 -0
- package/app/types/forms/types.forms.d.ts +293 -0
- package/app/types/forms/types.zodFormControl.d.ts +29 -0
- package/app/types/types.posts.ts +21 -0
- package/app/types/types.quotes.ts +12 -0
- package/app/types/types.services.ts +20 -0
- package/app/utils/colour-scheme-init.ts +17 -0
- package/nuxt.config.ts +86 -9
- package/package.json +51 -14
- package/types/components/css-anchor-polyfill.d.ts +1 -0
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<NuxtLayout name="default">
|
|
4
|
+
<template #layout-content>
|
|
5
|
+
<LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20']">
|
|
6
|
+
<h2 class="page-heading-2">Index</h2>
|
|
7
|
+
<p class="page-body-normal">This is the index page for the QR Code component: {{ componentName }}</p>
|
|
8
|
+
</LayoutRow>
|
|
9
|
+
|
|
10
|
+
<LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20']">
|
|
11
|
+
<ul class="qr-code-index-links-list">
|
|
12
|
+
<li><NuxtLink to="/ui/qr-code/display">Display QR Code</NuxtLink></li>
|
|
13
|
+
<li><NuxtLink to="/ui/qr-code/capture">Capture QR Code</NuxtLink></li>
|
|
14
|
+
<li><NuxtLink to="/ui/qr-code/decode">Decode QR Code</NuxtLink></li>
|
|
15
|
+
</ul>
|
|
16
|
+
</LayoutRow>
|
|
17
|
+
|
|
18
|
+
<LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20']">
|
|
19
|
+
<h2 class="page-heading-2 pbe-20">{{ pageHeader }}</h2>
|
|
20
|
+
<div class="demo-panel">
|
|
21
|
+
<div class="qr-code-col">
|
|
22
|
+
<component :is="activeComponent" :key="componentName" v-bind="activeProps" />
|
|
23
|
+
</div>
|
|
24
|
+
<form v-if="componentName === 'display'">
|
|
25
|
+
<div class="form-group mbe-12">
|
|
26
|
+
<label for="qr-value-input">QR Code Value:</label>
|
|
27
|
+
<input id="qr-value-input" v-model="qrValue" type="text" class="form-control" />
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
<div class="form-group mbe-12">
|
|
31
|
+
<label for="inner-variant-select">Inner Variant:</label>
|
|
32
|
+
<select id="inner-variant-select" v-model="variant.inner" class="form-control">
|
|
33
|
+
<option value="default">Default</option>
|
|
34
|
+
<option value="circle">Circle</option>
|
|
35
|
+
<option value="pixelated">Pixelated</option>
|
|
36
|
+
<option value="rounded">Rounded</option>
|
|
37
|
+
<option value="dots">Dots</option>
|
|
38
|
+
</select>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<div class="form-group mbe-12">
|
|
42
|
+
<label for="marker-variant-select">Marker Variant:</label>
|
|
43
|
+
<select id="marker-variant-select" v-model="variant.marker" class="form-control">
|
|
44
|
+
<option value="default">Default</option>
|
|
45
|
+
<option value="circle">Circle</option>
|
|
46
|
+
<option value="pixelated">Pixelated</option>
|
|
47
|
+
<option value="rounded">Rounded</option>
|
|
48
|
+
<option value="dots">Dots</option>
|
|
49
|
+
</select>
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
<div class="form-group mbe-12">
|
|
53
|
+
<label for="pixel-variant-select">Pixel Variant:</label>
|
|
54
|
+
<select id="pixel-variant-select" v-model="variant.pixel" class="form-control">
|
|
55
|
+
<option value="default">Default</option>
|
|
56
|
+
<option value="circle">Circle</option>
|
|
57
|
+
<option value="pixelated">Pixelated</option>
|
|
58
|
+
<option value="rounded">Rounded</option>
|
|
59
|
+
<option value="dots">Dots</option>
|
|
60
|
+
</select>
|
|
61
|
+
</div>
|
|
62
|
+
|
|
63
|
+
<div class="form-group mbe-12">
|
|
64
|
+
<label for="radius-input">Radius:</label>
|
|
65
|
+
<input id="radius-input" v-model.number="radius" type="number" class="form-control" min="0" max="10" />
|
|
66
|
+
</div>
|
|
67
|
+
|
|
68
|
+
<div class="form-group mbe-12">
|
|
69
|
+
<label for="black-color-input">Black Color:</label>
|
|
70
|
+
<input id="black-color-input" v-model="blackColor" type="color" class="form-control" />
|
|
71
|
+
</div>
|
|
72
|
+
|
|
73
|
+
<div class="form-group mbe-12">
|
|
74
|
+
<label for="white-color-input">White Color:</label>
|
|
75
|
+
<input id="white-color-input" v-model="whiteColor" type="color" class="form-control" />
|
|
76
|
+
</div>
|
|
77
|
+
|
|
78
|
+
<div class="form-group mbe-12">
|
|
79
|
+
<label for="size-slider">Size: {{ sizeValue }}px</label>
|
|
80
|
+
<input
|
|
81
|
+
id="size-slider"
|
|
82
|
+
v-model.number="sizeValue"
|
|
83
|
+
type="range"
|
|
84
|
+
class="form-control"
|
|
85
|
+
min="150"
|
|
86
|
+
max="600"
|
|
87
|
+
step="25"
|
|
88
|
+
/>
|
|
89
|
+
</div>
|
|
90
|
+
</form>
|
|
91
|
+
</div>
|
|
92
|
+
</LayoutRow>
|
|
93
|
+
</template>
|
|
94
|
+
</NuxtLayout>
|
|
95
|
+
</div>
|
|
96
|
+
</template>
|
|
97
|
+
|
|
98
|
+
<script setup lang="ts">
|
|
99
|
+
import type { QrCodeVariant } from "~/types/components";
|
|
100
|
+
|
|
101
|
+
definePageMeta({
|
|
102
|
+
layout: false,
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
useHead({
|
|
106
|
+
title: "Index",
|
|
107
|
+
meta: [
|
|
108
|
+
{
|
|
109
|
+
name: "description",
|
|
110
|
+
content: "Index Meta description content",
|
|
111
|
+
},
|
|
112
|
+
],
|
|
113
|
+
bodyAttrs: {
|
|
114
|
+
class: "qr-codes-index-page",
|
|
115
|
+
},
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
const route = useRoute();
|
|
119
|
+
|
|
120
|
+
type QrComponentName = "decode" | "capture" | "display";
|
|
121
|
+
const componentName = computed<QrComponentName>(() => route.params.componentName as QrComponentName);
|
|
122
|
+
|
|
123
|
+
// Component set up
|
|
124
|
+
const DecodeQrCode = defineAsyncComponent(() => import("~/components/qr-code/DecodeQrCode.vue"));
|
|
125
|
+
const CaptureQrCode = defineAsyncComponent(() => import("~/components/qr-code/CaptureQrCode.vue"));
|
|
126
|
+
const DisplayQrCode = defineAsyncComponent(() => import("~/components/qr-code/DisplayQrCode.vue"));
|
|
127
|
+
|
|
128
|
+
const components: Record<
|
|
129
|
+
QrComponentName,
|
|
130
|
+
{
|
|
131
|
+
component: ReturnType<typeof defineAsyncComponent>;
|
|
132
|
+
props: () => Record<string, unknown>;
|
|
133
|
+
}
|
|
134
|
+
> = {
|
|
135
|
+
decode: {
|
|
136
|
+
component: DecodeQrCode,
|
|
137
|
+
props: () => ({
|
|
138
|
+
/* none needed */
|
|
139
|
+
}),
|
|
140
|
+
},
|
|
141
|
+
capture: {
|
|
142
|
+
component: CaptureQrCode,
|
|
143
|
+
props: () => ({ facingMode: "environment" }),
|
|
144
|
+
},
|
|
145
|
+
display: {
|
|
146
|
+
component: DisplayQrCode,
|
|
147
|
+
props: () => ({
|
|
148
|
+
qrValue: qrValue.value,
|
|
149
|
+
inputVariant: variant.value,
|
|
150
|
+
radius: radius.value,
|
|
151
|
+
blackColor: blackColor.value,
|
|
152
|
+
whiteColor: whiteColor.value,
|
|
153
|
+
size: size.value,
|
|
154
|
+
}),
|
|
155
|
+
},
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
// Config for display qr code
|
|
159
|
+
const pageHeader = computed(() => {
|
|
160
|
+
switch (componentName.value) {
|
|
161
|
+
case "decode":
|
|
162
|
+
return "Decode QR Code";
|
|
163
|
+
case "capture":
|
|
164
|
+
return "Capture QR Code";
|
|
165
|
+
case "display":
|
|
166
|
+
return "Display QR Code";
|
|
167
|
+
default:
|
|
168
|
+
return "QR Code";
|
|
169
|
+
}
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
const qrValue = ref("P|7450952822|144392");
|
|
173
|
+
const variant = ref<QrCodeVariant>({
|
|
174
|
+
inner: "circle",
|
|
175
|
+
marker: "rounded",
|
|
176
|
+
pixel: "dots",
|
|
177
|
+
});
|
|
178
|
+
const radius = ref(2);
|
|
179
|
+
const blackColor = ref("#000000");
|
|
180
|
+
const whiteColor = ref("#ffffff");
|
|
181
|
+
const sizeValue = ref(300);
|
|
182
|
+
const size = computed(() => `${sizeValue.value}px`);
|
|
183
|
+
|
|
184
|
+
const activeComponent = computed(() => components[componentName.value]?.component);
|
|
185
|
+
const activeProps = computed(() => components[componentName.value]?.props?.() ?? {});
|
|
186
|
+
</script>
|
|
187
|
+
|
|
188
|
+
<style lang="css">
|
|
189
|
+
.qr-codes-index-page {
|
|
190
|
+
.demo-panel {
|
|
191
|
+
display: flex;
|
|
192
|
+
flex-direction: row-reverse;
|
|
193
|
+
gap: 16px;
|
|
194
|
+
align-items: start;
|
|
195
|
+
|
|
196
|
+
.qr-code-col {
|
|
197
|
+
flex-grow: 1;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
form {
|
|
201
|
+
.form-group {
|
|
202
|
+
display: grid;
|
|
203
|
+
grid-template-columns: 150px 1fr;
|
|
204
|
+
gap: 20px;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.qr-code-index-links-list {
|
|
210
|
+
display: flex;
|
|
211
|
+
gap: 12px;
|
|
212
|
+
|
|
213
|
+
list-style-type: none;
|
|
214
|
+
padding: 0;
|
|
215
|
+
margin: 0;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
</style>
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<NuxtLayout name="default">
|
|
4
|
+
<template #layout-content>
|
|
5
|
+
<LayoutRow tag="div" variant="full" :styleClassPassthrough="['mbe-20']">
|
|
6
|
+
<h1 class="page-heading-2">Rotating Carousel</h1>
|
|
7
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
8
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
9
|
+
<label for="rotateX">rotateX</label>
|
|
10
|
+
<input type="range" min="-20" max="20" step="1" v-model="rotateX" id="rotateX" />
|
|
11
|
+
<span>{{ rotateX }}deg</span>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
14
|
+
<label for="perspective">perspective</label>
|
|
15
|
+
<input type="range" min="600" max="1500" step="50" v-model="perspective" id="perspective" />
|
|
16
|
+
<span>{{ perspective }}px</span>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
19
|
+
<label for="translateZ">translateZ</label>
|
|
20
|
+
<input type="range" min="350" max="900" step="10" v-model="translateZ" id="translateZ" />
|
|
21
|
+
<span>{{ translateZ }}px</span>
|
|
22
|
+
</div>
|
|
23
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
24
|
+
<label for="pauseOnHover">pauseOnHover</label>
|
|
25
|
+
<input type="checkbox" v-model="pauseOnHover" id="pauseOnHover" />
|
|
26
|
+
<span>{{ pauseOnHover }}</span>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
29
|
+
<label for="useParallaxEffect">useParallaxEffect</label>
|
|
30
|
+
<input type="checkbox" v-model="useParallaxEffect" id="useParallaxEffect" />
|
|
31
|
+
<span>{{ useParallaxEffect }}</span>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
</LayoutRow>
|
|
35
|
+
|
|
36
|
+
<LayoutRow tag="div" variant="full" :styleClassPassthrough="['mbe-20']" style="margin-block: 300px">
|
|
37
|
+
<RotatingCarouselImage
|
|
38
|
+
:data
|
|
39
|
+
:rotateX="Number(rotateX)"
|
|
40
|
+
:perspective="Number(perspective)"
|
|
41
|
+
:translateZ="Number(translateZ)"
|
|
42
|
+
:pauseOnHover
|
|
43
|
+
:useParallaxEffect
|
|
44
|
+
/>
|
|
45
|
+
</LayoutRow>
|
|
46
|
+
|
|
47
|
+
<LayoutRow tag="div" variant="full" :styleClassPassthrough="['mbe-20']" style="margin-block-end: 600px">
|
|
48
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
49
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
50
|
+
<label for="rotateX">rotateX</label>
|
|
51
|
+
<input type="range" min="-20" max="20" step="1" v-model="rotateX" id="rotateX" />
|
|
52
|
+
<span>{{ rotateX }}deg</span>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
55
|
+
<label for="perspective">perspective</label>
|
|
56
|
+
<input type="range" min="600" max="1500" step="50" v-model="perspective" id="perspective" />
|
|
57
|
+
<span>{{ perspective }}px</span>
|
|
58
|
+
</div>
|
|
59
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
60
|
+
<label for="translateZ">translateZ</label>
|
|
61
|
+
<input type="range" min="350" max="900" step="10" v-model="translateZ" id="translateZ" />
|
|
62
|
+
<span>{{ translateZ }}px</span>
|
|
63
|
+
</div>
|
|
64
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
65
|
+
<label for="pauseOnHover">pauseOnHover</label>
|
|
66
|
+
<input type="checkbox" v-model="pauseOnHover" id="pauseOnHover" />
|
|
67
|
+
<span>{{ pauseOnHover }}</span>
|
|
68
|
+
</div>
|
|
69
|
+
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
70
|
+
<label for="useParallaxEffect">useParallaxEffect</label>
|
|
71
|
+
<input type="checkbox" v-model="useParallaxEffect" id="useParallaxEffect" />
|
|
72
|
+
<span>{{ useParallaxEffect }}</span>
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
75
|
+
</LayoutRow>
|
|
76
|
+
</template>
|
|
77
|
+
</NuxtLayout>
|
|
78
|
+
</div>
|
|
79
|
+
</template>
|
|
80
|
+
|
|
81
|
+
<script setup lang="ts">
|
|
82
|
+
definePageMeta({
|
|
83
|
+
layout: false,
|
|
84
|
+
})
|
|
85
|
+
|
|
86
|
+
useHead({
|
|
87
|
+
title: "Browser title tag",
|
|
88
|
+
meta: [
|
|
89
|
+
{
|
|
90
|
+
name: "description",
|
|
91
|
+
content: "Meta description content",
|
|
92
|
+
},
|
|
93
|
+
],
|
|
94
|
+
bodyAttrs: {
|
|
95
|
+
class: "classname-for-namespacing-if-desired",
|
|
96
|
+
},
|
|
97
|
+
})
|
|
98
|
+
|
|
99
|
+
const perspective = ref<number>(1000)
|
|
100
|
+
const rotateX = ref<number>(-13)
|
|
101
|
+
const translateZ = ref<number>(550)
|
|
102
|
+
const pauseOnHover = ref<boolean>(false)
|
|
103
|
+
const useParallaxEffect = ref<boolean>(true)
|
|
104
|
+
|
|
105
|
+
interface IAccordianData {
|
|
106
|
+
src: string
|
|
107
|
+
alt: string
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
const data = ref<IAccordianData[]>([
|
|
111
|
+
{
|
|
112
|
+
src: "/images/rotating-carousel/image-1.webp",
|
|
113
|
+
alt: "Image 1",
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
src: "/images/rotating-carousel/image-2.webp",
|
|
117
|
+
alt: "Image 2",
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
src: "/images/rotating-carousel/image-3.webp",
|
|
121
|
+
alt: "Image 3",
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
src: "/images/rotating-carousel/image-4.webp",
|
|
125
|
+
alt: "Image 4",
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
src: "/images/rotating-carousel/image-5.webp",
|
|
129
|
+
alt: "Image 5",
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
src: "/images/rotating-carousel/image-6.webp",
|
|
133
|
+
alt: "Image 6",
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
src: "/images/rotating-carousel/image-7.webp",
|
|
137
|
+
alt: "Image 7",
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
src: "/images/rotating-carousel/image-8.webp",
|
|
141
|
+
alt: "Image 8",
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
src: "/images/rotating-carousel/image-9.webp",
|
|
145
|
+
alt: "Image 9",
|
|
146
|
+
},
|
|
147
|
+
])
|
|
148
|
+
</script>
|
|
149
|
+
|
|
150
|
+
<style lang="css">
|
|
151
|
+
.classname-for-namespacing-if-desired {
|
|
152
|
+
/* CSS styles */
|
|
153
|
+
}
|
|
154
|
+
</style>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<NuxtLayout name="default">
|
|
4
|
+
<template #layout-content>
|
|
5
|
+
<LayoutRow tag="div" variant="full-width" :style-class-passthrough="['expanding-panel-section', 'mbe-20']">
|
|
6
|
+
<h1 class="page-heading-1">SectionParallax Component</h1>
|
|
7
|
+
<p class="mbe-12">Static image displayed as page scrolls through it.</p>
|
|
8
|
+
</LayoutRow>
|
|
9
|
+
<SectionParallax
|
|
10
|
+
background-image="/images/rotating-carousel/image-3.webp"
|
|
11
|
+
:style-class-passthrough="['mbe-20']"
|
|
12
|
+
>
|
|
13
|
+
<LayoutRow tag="div" variant="full-width" :style-class-passthrough="['expanding-panel-section', 'mbe-20']">
|
|
14
|
+
<h1 class="page-heading-1">SectionParallax Content</h1>
|
|
15
|
+
<p class="page-body-normal">This is default slot content for the SectionParallax component.</p>
|
|
16
|
+
<p class="page-body-normal">As it's a slot, any html content can be placed here.</p>
|
|
17
|
+
</LayoutRow>
|
|
18
|
+
</SectionParallax>
|
|
19
|
+
</template>
|
|
20
|
+
</NuxtLayout>
|
|
21
|
+
</div>
|
|
22
|
+
</template>
|
|
23
|
+
|
|
24
|
+
<script setup lang="ts">
|
|
25
|
+
definePageMeta({
|
|
26
|
+
layout: false,
|
|
27
|
+
})
|
|
28
|
+
|
|
29
|
+
useHead({
|
|
30
|
+
title: "SectionParallax Component",
|
|
31
|
+
meta: [
|
|
32
|
+
{
|
|
33
|
+
name: "description",
|
|
34
|
+
content: "SectionParallax Component description content",
|
|
35
|
+
},
|
|
36
|
+
],
|
|
37
|
+
bodyAttrs: {
|
|
38
|
+
class: "section-parallax-page",
|
|
39
|
+
},
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
const forceOpened = ref(false)
|
|
43
|
+
</script>
|
|
44
|
+
|
|
45
|
+
<style lang="css">
|
|
46
|
+
.section-parallax-page {
|
|
47
|
+
/* Page specific styles */
|
|
48
|
+
|
|
49
|
+
margin-block-end: 100vh;
|
|
50
|
+
|
|
51
|
+
.section-parallax {
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<NuxtLayout name="default">
|
|
4
|
+
<template #layout-content>
|
|
5
|
+
<LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
6
|
+
<h2 class="page-heading-2">ColourFinder</h2>
|
|
7
|
+
</LayoutRow>
|
|
8
|
+
|
|
9
|
+
<LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
10
|
+
<ColourFinder />
|
|
11
|
+
</LayoutRow>
|
|
12
|
+
</template>
|
|
13
|
+
</NuxtLayout>
|
|
14
|
+
</div>
|
|
15
|
+
</template>
|
|
16
|
+
|
|
17
|
+
<script setup lang="ts">
|
|
18
|
+
definePageMeta({
|
|
19
|
+
layout: false,
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
useHead({
|
|
23
|
+
title: "ColourFinder",
|
|
24
|
+
meta: [
|
|
25
|
+
{
|
|
26
|
+
name: "description",
|
|
27
|
+
content: "ColourFinder Meta description content",
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
bodyAttrs: {
|
|
31
|
+
class: "colour-finder-page",
|
|
32
|
+
},
|
|
33
|
+
});
|
|
34
|
+
</script>
|
|
35
|
+
|
|
36
|
+
<style lang="css">
|
|
37
|
+
.colour-finder-page {
|
|
38
|
+
.colour-finder {
|
|
39
|
+
max-inline-size: 800px;
|
|
40
|
+
margin-inline: auto;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
</style>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<NuxtLayout name="default">
|
|
4
|
+
<template #layout-content>
|
|
5
|
+
<LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
6
|
+
<h1 class="page-heading-1">Services Card Grid</h1>
|
|
7
|
+
<p class="page-body-normal">Example of a services card grid component.</p>
|
|
8
|
+
</LayoutRow>
|
|
9
|
+
|
|
10
|
+
<LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
11
|
+
<ServicesCardGrid :services-data="servicesData ?? []" />
|
|
12
|
+
</LayoutRow>
|
|
13
|
+
</template>
|
|
14
|
+
</NuxtLayout>
|
|
15
|
+
</div>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script setup lang="ts">
|
|
19
|
+
definePageMeta({
|
|
20
|
+
layout: false,
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
useHead({
|
|
24
|
+
title: "Services Card Grid",
|
|
25
|
+
meta: [{ name: "description", content: "Services Card Grid" }],
|
|
26
|
+
bodyAttrs: {
|
|
27
|
+
class: "page-services-card-grid",
|
|
28
|
+
},
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
const store = useServicesStore();
|
|
32
|
+
const { servicesData } = storeToRefs(store);
|
|
33
|
+
|
|
34
|
+
if (servicesData.value.length === 0) {
|
|
35
|
+
await store.fetchServicesData();
|
|
36
|
+
}
|
|
37
|
+
</script>
|
|
38
|
+
|
|
39
|
+
<style lang="css">
|
|
40
|
+
.page-services-card-grid {
|
|
41
|
+
}
|
|
42
|
+
</style>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<NuxtLayout name="default">
|
|
4
|
+
<template #layout-content>
|
|
5
|
+
<LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
6
|
+
<EyebrowText font-size="large" text-content="Services" />
|
|
7
|
+
|
|
8
|
+
<HeroText
|
|
9
|
+
tag="h1"
|
|
10
|
+
axis="vertical"
|
|
11
|
+
font-size="display"
|
|
12
|
+
:text-content="[
|
|
13
|
+
{ text: 'Expert colour & ', styleClass: 'normal' },
|
|
14
|
+
{ text: 'styling', styleClass: 'accent' },
|
|
15
|
+
{ text: 'at your door', styleClass: 'normal' },
|
|
16
|
+
]"
|
|
17
|
+
:style-class-passthrough="['mb-20']"
|
|
18
|
+
/>
|
|
19
|
+
|
|
20
|
+
<p class="page-body-normal"><NuxtLink to="/ui/services/services-cards">Back to Services</NuxtLink></p>
|
|
21
|
+
</LayoutRow>
|
|
22
|
+
|
|
23
|
+
<LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
24
|
+
<ServicesSection v-if="servicesData.length > 0 && serviceData" :service-data="serviceData!" />
|
|
25
|
+
</LayoutRow>
|
|
26
|
+
</template>
|
|
27
|
+
</NuxtLayout>
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
|
|
31
|
+
<script setup lang="ts">
|
|
32
|
+
definePageMeta({
|
|
33
|
+
layout: false,
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
useHead({
|
|
37
|
+
title: "Services Section",
|
|
38
|
+
meta: [{ name: "description", content: "Services Section" }],
|
|
39
|
+
bodyAttrs: {
|
|
40
|
+
class: "page-services-section",
|
|
41
|
+
},
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
const route = useRoute();
|
|
45
|
+
const slug = route.params.slug as string;
|
|
46
|
+
|
|
47
|
+
const store = useServicesStore();
|
|
48
|
+
const { servicesData } = storeToRefs(store);
|
|
49
|
+
|
|
50
|
+
if (servicesData.value.length === 0) {
|
|
51
|
+
await store.fetchServicesData();
|
|
52
|
+
}
|
|
53
|
+
const serviceData = store.serviceDataBySlug(slug);
|
|
54
|
+
</script>
|
|
55
|
+
|
|
56
|
+
<style lang="css">
|
|
57
|
+
.page-services-section {
|
|
58
|
+
}
|
|
59
|
+
</style>
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<NuxtLayout name="default">
|
|
4
|
+
<template #layout-content>
|
|
5
|
+
<LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
6
|
+
<EyebrowText font-size="large" text-content="Services" />
|
|
7
|
+
<HeroText
|
|
8
|
+
:tag="'h1'"
|
|
9
|
+
font-size="display"
|
|
10
|
+
axis="horizontal"
|
|
11
|
+
:text-content="[
|
|
12
|
+
{ text: 'Expert colour & ' },
|
|
13
|
+
{ text: 'styling', styleClass: 'accent' },
|
|
14
|
+
{ text: ' at your door' },
|
|
15
|
+
]"
|
|
16
|
+
:style-class-passthrough="['mbe-20']"
|
|
17
|
+
/>
|
|
18
|
+
</LayoutRow>
|
|
19
|
+
|
|
20
|
+
<LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
21
|
+
<p class="page-body-medium">
|
|
22
|
+
I'm a mobile hair artist bringing bold, custom hair transformations straight to your doorstep in Bath. From
|
|
23
|
+
lived-in balayage and dimensional lowlights to face-framing highlights and precision cuts — salon-quality
|
|
24
|
+
results, zero hassle.
|
|
25
|
+
</p>
|
|
26
|
+
</LayoutRow>
|
|
27
|
+
|
|
28
|
+
<LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
29
|
+
<ServicesSectionGrid
|
|
30
|
+
:services-data="servicesData ?? []"
|
|
31
|
+
:use-alternate-reverse="true"
|
|
32
|
+
summary-alignment="center"
|
|
33
|
+
/>
|
|
34
|
+
</LayoutRow>
|
|
35
|
+
</template>
|
|
36
|
+
</NuxtLayout>
|
|
37
|
+
</div>
|
|
38
|
+
</template>
|
|
39
|
+
|
|
40
|
+
<script setup lang="ts">
|
|
41
|
+
definePageMeta({
|
|
42
|
+
layout: false,
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
useHead({
|
|
46
|
+
title: "Services Section Grid",
|
|
47
|
+
meta: [{ name: "description", content: "Services Section Grid" }],
|
|
48
|
+
bodyAttrs: {
|
|
49
|
+
class: "page-services-section-grid",
|
|
50
|
+
},
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
const store = useServicesStore();
|
|
54
|
+
const { servicesData } = storeToRefs(store);
|
|
55
|
+
|
|
56
|
+
if (servicesData.value.length === 0) {
|
|
57
|
+
await store.fetchServicesData();
|
|
58
|
+
}
|
|
59
|
+
</script>
|
|
60
|
+
|
|
61
|
+
<style lang="css">
|
|
62
|
+
.page-services-section-grid {
|
|
63
|
+
}
|
|
64
|
+
</style>
|
|
@@ -0,0 +1,39 @@
|
|
|
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>
|