srcdev-nuxt-components 9.1.49 → 9.1.51
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 +2 -4
- package/.claude/settings.local.json +22 -2
- package/.claude/skills/components/card-core.md +205 -0
- package/.claude/skills/components/display-dialog.md +128 -0
- package/.claude/skills/components/page-hero-highlights.md +1 -1
- package/.claude/skills/components/page-row.md +157 -0
- package/.claude/skills/components/services-card-grid.md +4 -4
- package/.claude/skills/components/services-section-grid.md +4 -4
- package/.claude/skills/components/tab-navigation.md +222 -0
- package/.claude/skills/composable-dialog-controls.md +55 -43
- package/.claude/skills/index.md +5 -2
- package/app/components/01.atoms/card/CONSUMER-STYLING.md +175 -0
- package/app/components/01.atoms/card/CardCore.vue +48 -21
- package/app/components/01.atoms/display-dialog/CONSUMER-STYLING.md +163 -0
- package/app/components/01.atoms/display-dialog/DisplayDialog.vue +277 -0
- package/app/components/01.atoms/display-dialog/stories/DisplayDialog.stories.ts +177 -0
- package/app/components/01.atoms/display-dialog/tests/DisplayDialog.spec.ts +264 -0
- package/app/components/01.atoms/display-dialog/tests/__snapshots__/DisplayDialog.spec.ts.snap +18 -0
- package/app/components/01.atoms/page-row/CONSUMER-STYLING.md +90 -0
- package/app/components/01.atoms/page-row/PageRow.vue +115 -0
- package/app/components/01.atoms/page-row/stories/PageRow.stories.ts +311 -0
- package/app/components/01.atoms/page-row/tests/PageRow.spec.ts +191 -0
- package/app/components/02.molecules/navigation/tab-navigation/CONSUMER-STYLING.md +145 -0
- package/app/components/02.molecules/navigation/tab-navigation/TabNavigation.vue +20 -9
- package/app/components/02.molecules/navigation/tab-navigation/tests/__snapshots__/TabNavigation.spec.ts.snap +12 -6
- package/app/components/{forms/ui → 05.forms/form-field}/FormField.vue +12 -19
- package/app/components/{forms/ui → 05.forms/form-wrapper}/FormWrapper.vue +6 -6
- package/app/components/{forms → 05.forms}/input-button/InputButtonCore.vue +2 -0
- package/app/components/{forms → 05.forms}/input-button/stories/InputButtonCore.stories.ts +1 -1
- package/app/components/{forms → 05.forms}/input-text/InputTextCore.vue +73 -73
- package/app/components/{forms → 05.forms}/input-text/variants/InputTextAsNumberWithLabel.vue +29 -29
- package/app/components/carousels/CarouselBasic.vue +99 -99
- package/app/components/carousels/CarouselInfinite.vue +150 -150
- package/app/components/deep-expanding-menu/DeepExpandingMenu.vue +111 -111
- package/app/components/responsive-header/ResponsiveHeader.vue +250 -282
- package/app/components/test-storybook/TestStorybook.vue +16 -16
- package/app/composables/tests/useDialogControls.spec.ts +34 -64
- package/app/composables/useDialogControls.ts +19 -33
- package/app/composables/useFormControl.ts +0 -2
- package/app/layouts/default.vue +9 -7
- package/app/pages/auto-grid.vue +37 -20
- package/app/pages/banner-video.vue +2 -2
- package/app/pages/forms/examples/buttons/index.vue +189 -215
- package/app/pages/forms/examples/material/text-fields.vue +2 -2
- package/app/pages/grid-stack.vue +10 -10
- package/app/pages/index.vue +20 -20
- package/app/pages/samaritan.vue +4 -4
- package/app/pages/typography/hero-text.vue +6 -6
- package/app/pages/typography/index.vue +4 -4
- package/app/pages/typography/page-body.vue +4 -4
- package/app/pages/typography/page-heading.vue +4 -4
- package/app/pages/typography/page-link.vue +4 -4
- package/app/pages/ui/accordian.vue +4 -4
- package/app/pages/ui/anchor-scroll-tab-navigation.vue +77 -66
- package/app/pages/ui/anchor-scroll.vue +94 -70
- package/app/pages/ui/animated-svg-text.vue +4 -4
- package/app/pages/ui/block-decorators.vue +11 -11
- package/app/pages/ui/card-core.vue +9 -9
- package/app/pages/ui/carousel-basic.vue +4 -4
- package/app/pages/ui/carousel-flip.vue +2 -2
- package/app/pages/ui/carousel-infinite.vue +4 -4
- package/app/pages/ui/clipped-panels.vue +10 -10
- package/app/pages/ui/contact-section.vue +4 -4
- package/app/pages/ui/container-glow.vue +2 -3
- package/app/pages/ui/deep-expanding-menu.vue +138 -0
- package/app/pages/ui/display-avatar.vue +2 -2
- package/app/pages/ui/display-banner.vue +2 -2
- package/app/pages/ui/display-chip.vue +32 -25
- package/app/pages/ui/display-details.vue +6 -10
- package/app/pages/ui/display-dialog.vue +96 -131
- package/app/pages/ui/display-pill.vue +27 -33
- package/app/pages/ui/display-prompt.vue +4 -4
- package/app/pages/ui/display-toast.vue +2 -2
- package/app/pages/ui/expanding-panel.vue +12 -16
- package/app/pages/ui/glowing-border.vue +12 -12
- package/app/pages/ui/layout-grid-a.vue +6 -6
- package/app/pages/ui/layout-grid-b.vue +4 -4
- package/app/pages/ui/magnetic-navigation.vue +6 -6
- package/app/pages/ui/marquee-scroller.vue +2 -2
- package/app/pages/ui/mask-element.vue +2 -2
- package/app/pages/ui/masonry-columns.vue +4 -4
- package/app/pages/ui/masonry-grid-ordered-experiment.vue +4 -4
- package/app/pages/ui/masonry-grid-ordered.vue +4 -4
- package/app/pages/ui/masonry-grid-sorted.vue +4 -4
- package/app/pages/ui/masonry-grid.vue +4 -4
- package/app/pages/ui/navigation/navigation-horizontal.vue +12 -12
- package/app/pages/ui/navigation/tab-navigation.vue +493 -0
- package/app/pages/ui/page-row.vue +127 -0
- package/app/pages/ui/price-list.vue +4 -4
- package/app/pages/ui/profile-section.vue +4 -4
- package/app/pages/ui/qr-code/[componentName].vue +6 -6
- package/app/pages/ui/rotating-carousel.vue +16 -16
- package/app/pages/ui/scroll-reveal-image.vue +20 -20
- package/app/pages/ui/section-parallax.vue +7 -7
- package/app/pages/ui/services/colour-finder.vue +4 -4
- package/app/pages/ui/services/services-cards.vue +4 -4
- package/app/pages/ui/services/services-section/[slug].vue +4 -4
- package/app/pages/ui/services/services-sections-compact.vue +6 -6
- package/app/pages/ui/settings.vue +10 -10
- package/app/pages/ui/simple-grid.vue +2 -2
- package/app/pages/ui/slider-gallery.vue +5 -5
- package/app/pages/ui/tabs-y.vue +2 -3
- package/app/pages/ui/tabs.vue +6 -9
- package/app/pages/ui/tooltips.vue +9 -9
- package/app/pages/ui/wipe-away-vertical.vue +14 -14
- package/package.json +1 -1
- package/.claude/skills/components/layout-row.md +0 -239
- package/app/components/display-dialog/DisplayDialogCore.vue +0 -276
- package/app/components/display-dialog/variants/DisplayDialogConfirm.vue +0 -47
- package/app/components/display-dialog/variants/DisplayDialogScrollableContent.vue +0 -51
- package/app/components/forms/c12/utils.ts +0 -14
- package/app/components/layout-row/LayoutRow.vue +0 -171
- package/app/components/layout-row/stories/LayoutRow.stories.ts +0 -528
- package/app/pages/ui/layout-row.vue +0 -139
- /package/app/components/{forms → 05.forms}/form-errors/InputError.vue +0 -0
- /package/app/components/{forms → 05.forms}/form-errors/tests/InputError.spec.ts +0 -0
- /package/app/components/{forms → 05.forms}/form-fieldset/FormFieldset.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-secondary-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-secondary-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-secondary-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-tertiary-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-tertiary-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-tertiary-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-primary-pending-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-primary-pending-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-primary-pending-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-secondary-pill-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-secondary-pill-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-secondary-pill-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-tertiary-readonly-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-tertiary-readonly-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-tertiary-readonly-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-default-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-default-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-default-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-error-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-error-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-error-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-success-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-success-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-success-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-warning-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-warning-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-warning-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-primary-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-primary-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-primary-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-secondary-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-secondary-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-secondary-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-tertiary-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-tertiary-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-tertiary-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/nuxt-icon-only-component-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/nuxt-icon-only-component-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/nuxt-icon-only-component-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pending-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pending-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pending-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pill-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pill-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pill-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-readonly-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-readonly-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-readonly-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/with-both-nuxt-icon-components-chromium-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/with-both-nuxt-icon-components-firefox-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/with-both-nuxt-icon-components-webkit-darwin.png +0 -0
- /package/app/components/{forms → 05.forms}/input-button/tests/InputButtonCore.spec.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-button/tests/__snapshots__/InputButtonCore.spec.ts.snap +0 -0
- /package/app/components/{forms → 05.forms}/input-checkbox/MultipleCheckboxes.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-checkbox/SingleCheckbox.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-checkbox/tests/MultipleCheckboxes.spec.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-checkbox/tests/data/tags.json +0 -0
- /package/app/components/{forms → 05.forms}/input-checkbox-radio/InputCheckboxRadioButton.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-checkbox-radio/InputCheckboxRadioCore.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-checkbox-radio/InputCheckboxRadioWithLabel.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-checkbox-radio/tests/InputCheckboxRadioCore.spec.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-copy/InputCopyCore.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-copy/stories/InputCopyCore.stories.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-copy/tests/InputCopyCore.spec.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-copy/tests/__snapshots__/InputCopyCore.spec.ts.snap +0 -0
- /package/app/components/{forms → 05.forms}/input-description/InputDescription.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-description/tests/InputDescription.spec.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-label/InputLabel.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-label/tests/InputLabel.spec.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-number/InputNumberCore.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-number/variants/InputNumberDefault.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-radio/MultipleRadiobuttons.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-radio/tests/MultipleRadioButtons.spec.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-radio/tests/data/tags.json +0 -0
- /package/app/components/{forms → 05.forms}/input-range/InputRangeCore.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-range/variants/InputRangeDefault.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-range-fancy/InputRangeFancyCore.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-range-fancy/InputRangeFancyWithLabel.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-select/InputSelectCore.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-select/variants/InputSelectWithLabel.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-text/stories/InputPasswordWithLabel.stories.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-text/stories/InputTextAsNumberWithLabel.stories.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-text/stories/InputTextCore.stories.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-text/stories/InputTextWithLabel.stories.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-text/variants/InputPasswordWithLabel.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-text/variants/InputTextWithLabel.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-textarea/InputTextareaCore.vue +0 -0
- /package/app/components/{forms → 05.forms}/input-textarea/stories/InputTextareaCore.stories.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-textarea/stories/InputTextareaWithLabel.stories.ts +0 -0
- /package/app/components/{forms → 05.forms}/input-textarea/variants/InputTextareaWithLabel.vue +0 -0
- /package/app/components/{forms → 05.forms}/pending-effect/PendingEffect.vue +0 -0
- /package/app/components/{forms → 05.forms}/toggle-switch/ToggleSwitchCore.vue +0 -0
- /package/app/components/{forms → 05.forms}/toggle-switch/stories/ToggleSwitchCore.stories.ts +0 -0
- /package/app/components/{forms → 05.forms}/toggle-switch/stories/ToggleSwitchWithLabel.stories.ts +0 -0
- /package/app/components/{forms → 05.forms}/toggle-switch/stories/ToggleSwitchWithLabelInline.stories.ts +0 -0
- /package/app/components/{forms → 05.forms}/toggle-switch/variants/ToggleSwitchWithLabel.vue +0 -0
- /package/app/components/{forms → 05.forms}/toggle-switch/variants/ToggleSwitchWithLabelInline.vue +0 -0
- /package/app/components/{forms → 05.forms}/triple-toggle-switch/TripleToggleSwitchCore.vue +0 -0
- /package/app/{components/forms/c12/prop-validators/index.ts → utils/prop-validators.ts} +0 -0
|
@@ -2,20 +2,20 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
|
|
6
6
|
<h2 class="page-heading-2">Index</h2>
|
|
7
7
|
<p class="page-body-normal">This is the index page for the QR Code component: {{ componentName }}</p>
|
|
8
|
-
</
|
|
8
|
+
</PageRow>
|
|
9
9
|
|
|
10
|
-
<
|
|
10
|
+
<PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
|
|
11
11
|
<ul class="qr-code-index-links-list">
|
|
12
12
|
<li><NuxtLink to="/ui/qr-code/display">Display QR Code</NuxtLink></li>
|
|
13
13
|
<li><NuxtLink to="/ui/qr-code/capture">Capture QR Code</NuxtLink></li>
|
|
14
14
|
<li><NuxtLink to="/ui/qr-code/decode">Decode QR Code</NuxtLink></li>
|
|
15
15
|
</ul>
|
|
16
|
-
</
|
|
16
|
+
</PageRow>
|
|
17
17
|
|
|
18
|
-
<
|
|
18
|
+
<PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
|
|
19
19
|
<h2 class="page-heading-2 pbe-20">{{ pageHeader }}</h2>
|
|
20
20
|
<div class="demo-panel">
|
|
21
21
|
<div class="qr-code-col">
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
</div>
|
|
90
90
|
</form>
|
|
91
91
|
</div>
|
|
92
|
-
</
|
|
92
|
+
</PageRow>
|
|
93
93
|
</template>
|
|
94
94
|
</NuxtLayout>
|
|
95
95
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="full" :styleClassPassthrough="['mbe-20']">
|
|
6
6
|
<h1 class="page-heading-2">Rotating Carousel</h1>
|
|
7
7
|
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
8
8
|
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
<span>{{ useParallaxEffect }}</span>
|
|
32
32
|
</div>
|
|
33
33
|
</div>
|
|
34
|
-
</
|
|
34
|
+
</PageRow>
|
|
35
35
|
|
|
36
|
-
<
|
|
36
|
+
<PageRow tag="div" variant="full" :styleClassPassthrough="['mbe-20']" style="margin-block: 300px">
|
|
37
37
|
<RotatingCarouselImage
|
|
38
38
|
:data
|
|
39
39
|
:rotateX="Number(rotateX)"
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
:pauseOnHover
|
|
43
43
|
:useParallaxEffect
|
|
44
44
|
/>
|
|
45
|
-
</
|
|
45
|
+
</PageRow>
|
|
46
46
|
|
|
47
|
-
<
|
|
47
|
+
<PageRow tag="div" variant="full" :styleClassPassthrough="['mbe-20']" style="margin-block-end: 600px">
|
|
48
48
|
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
49
49
|
<div class="display-flex mbe-12" align-content="center-center" gap="12px" flex-wrap="wrap">
|
|
50
50
|
<label for="rotateX">rotateX</label>
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<span>{{ useParallaxEffect }}</span>
|
|
73
73
|
</div>
|
|
74
74
|
</div>
|
|
75
|
-
</
|
|
75
|
+
</PageRow>
|
|
76
76
|
</template>
|
|
77
77
|
</NuxtLayout>
|
|
78
78
|
</div>
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
<script setup lang="ts">
|
|
82
82
|
definePageMeta({
|
|
83
83
|
layout: false,
|
|
84
|
-
})
|
|
84
|
+
});
|
|
85
85
|
|
|
86
86
|
useHead({
|
|
87
87
|
title: "Browser title tag",
|
|
@@ -94,17 +94,17 @@ useHead({
|
|
|
94
94
|
bodyAttrs: {
|
|
95
95
|
class: "classname-for-namespacing-if-desired",
|
|
96
96
|
},
|
|
97
|
-
})
|
|
97
|
+
});
|
|
98
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)
|
|
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
104
|
|
|
105
105
|
interface IAccordianData {
|
|
106
|
-
src: string
|
|
107
|
-
alt: string
|
|
106
|
+
src: string;
|
|
107
|
+
alt: string;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
const data = ref<IAccordianData[]>([
|
|
@@ -144,7 +144,7 @@ const data = ref<IAccordianData[]>([
|
|
|
144
144
|
src: "/images/rotating-carousel/image-9.webp",
|
|
145
145
|
alt: "Image 9",
|
|
146
146
|
},
|
|
147
|
-
])
|
|
147
|
+
]);
|
|
148
148
|
</script>
|
|
149
149
|
|
|
150
150
|
<style lang="css">
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
5
|
<!-- ── Page header ──────────────────────────────────────────────── -->
|
|
6
|
-
<
|
|
6
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-48']">
|
|
7
7
|
<h1 class="page-heading-1">ScrollRevealImage / ScrollRevealFrame</h1>
|
|
8
8
|
<p class="page-body-normal">
|
|
9
9
|
A pure-CSS parallax reveal. No scroll listeners, no JS animation — driven entirely by
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
<code>NuxtImg</code>
|
|
19
19
|
optimisation and a horizontal focal-point prop.
|
|
20
20
|
</p>
|
|
21
|
-
</
|
|
21
|
+
</PageRow>
|
|
22
22
|
|
|
23
23
|
<!-- ── Interactive demo ──────────────────────────────────────────── -->
|
|
24
|
-
<
|
|
24
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-48']">
|
|
25
25
|
<h2 class="page-heading-2 mbe-8">Interactive demo</h2>
|
|
26
26
|
<p class="page-body-normal mbe-16">Adjust the props then scroll through the image on the right.</p>
|
|
27
27
|
<div class="demo-controls">
|
|
@@ -77,15 +77,15 @@
|
|
|
77
77
|
/>
|
|
78
78
|
</div>
|
|
79
79
|
</div>
|
|
80
|
-
</
|
|
80
|
+
</PageRow>
|
|
81
81
|
|
|
82
82
|
<!-- ── Variants ──────────────────────────────────────────────────── -->
|
|
83
|
-
<
|
|
83
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-24']">
|
|
84
84
|
<h2 class="page-heading-2">Variants</h2>
|
|
85
|
-
</
|
|
85
|
+
</PageRow>
|
|
86
86
|
|
|
87
87
|
<!-- Default -->
|
|
88
|
-
<
|
|
88
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-32']">
|
|
89
89
|
<div class="sri-demo-row">
|
|
90
90
|
<div class="sri-demo-row__info">
|
|
91
91
|
<h3 class="page-heading-3 mbe-8">Default</h3>
|
|
@@ -109,10 +109,10 @@
|
|
|
109
109
|
:img-height="1920"
|
|
110
110
|
/>
|
|
111
111
|
</div>
|
|
112
|
-
</
|
|
112
|
+
</PageRow>
|
|
113
113
|
|
|
114
114
|
<!-- Short frame / banner -->
|
|
115
|
-
<
|
|
115
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-32']">
|
|
116
116
|
<div class="sri-demo-row">
|
|
117
117
|
<div class="sri-demo-row__info">
|
|
118
118
|
<h3 class="page-heading-3 mbe-8">Short frame — landscape image</h3>
|
|
@@ -137,10 +137,10 @@
|
|
|
137
137
|
parallax-offset="24rem"
|
|
138
138
|
/>
|
|
139
139
|
</div>
|
|
140
|
-
</
|
|
140
|
+
</PageRow>
|
|
141
141
|
|
|
142
142
|
<!-- Rounded corners -->
|
|
143
|
-
<
|
|
143
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-32']">
|
|
144
144
|
<div class="sri-demo-row">
|
|
145
145
|
<div class="sri-demo-row__info">
|
|
146
146
|
<h3 class="page-heading-3 mbe-8">Rounded corners</h3>
|
|
@@ -169,10 +169,10 @@
|
|
|
169
169
|
radius="2.4rem"
|
|
170
170
|
/>
|
|
171
171
|
</div>
|
|
172
|
-
</
|
|
172
|
+
</PageRow>
|
|
173
173
|
|
|
174
174
|
<!-- Focal point -->
|
|
175
|
-
<
|
|
175
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-32']">
|
|
176
176
|
<div class="sri-demo-row">
|
|
177
177
|
<div class="sri-demo-row__info">
|
|
178
178
|
<h3 class="page-heading-3 mbe-8">Horizontal focal point</h3>
|
|
@@ -198,10 +198,10 @@
|
|
|
198
198
|
focal-x="75%"
|
|
199
199
|
/>
|
|
200
200
|
</div>
|
|
201
|
-
</
|
|
201
|
+
</PageRow>
|
|
202
202
|
|
|
203
203
|
<!-- Tall frame -->
|
|
204
|
-
<
|
|
204
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-32']">
|
|
205
205
|
<div class="sri-demo-row">
|
|
206
206
|
<div class="sri-demo-row__info">
|
|
207
207
|
<h3 class="page-heading-3 mbe-8">Tall frame — maximum travel</h3>
|
|
@@ -226,17 +226,17 @@
|
|
|
226
226
|
parallax-offset="60rem"
|
|
227
227
|
/>
|
|
228
228
|
</div>
|
|
229
|
-
</
|
|
229
|
+
</PageRow>
|
|
230
230
|
|
|
231
231
|
<!-- ScrollRevealFrame: image grid -->
|
|
232
|
-
<
|
|
232
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-48']">
|
|
233
233
|
<div class="sri-demo-row">
|
|
234
234
|
<div class="sri-demo-row__info">
|
|
235
235
|
<h3 class="page-heading-3 mbe-8">Image grid — ScrollRevealFrame</h3>
|
|
236
236
|
<p class="page-body-normal mbe-12">
|
|
237
237
|
<code>ScrollRevealFrame</code>
|
|
238
|
-
accepts arbitrary slot content. Here a six-image CSS grid scrolls as a single unit inside the
|
|
239
|
-
|
|
238
|
+
accepts arbitrary slot content. Here a six-image CSS grid scrolls as a single unit inside the clipping
|
|
239
|
+
frame — no
|
|
240
240
|
<code>focalX</code>
|
|
241
241
|
or
|
|
242
242
|
<code>NuxtImg</code>
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
</div>
|
|
323
323
|
</ScrollRevealFrame>
|
|
324
324
|
</div>
|
|
325
|
-
</
|
|
325
|
+
</PageRow>
|
|
326
326
|
</template>
|
|
327
327
|
</NuxtLayout>
|
|
328
328
|
</div>
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="full" :style-class-passthrough="['expanding-panel-section', 'mbe-20']">
|
|
6
6
|
<h1 class="page-heading-1">SectionParallax Component</h1>
|
|
7
7
|
<p class="mbe-12">Static image displayed as page scrolls through it.</p>
|
|
8
|
-
</
|
|
8
|
+
</PageRow>
|
|
9
9
|
<SectionParallax
|
|
10
10
|
background-image="/images/rotating-carousel/image-3.webp"
|
|
11
11
|
:style-class-passthrough="['mbe-20']"
|
|
12
12
|
>
|
|
13
|
-
<
|
|
13
|
+
<PageRow tag="div" variant="full" :style-class-passthrough="['expanding-panel-section', 'mbe-20']">
|
|
14
14
|
<h1 class="page-heading-1">SectionParallax Content</h1>
|
|
15
15
|
<p class="page-body-normal">This is default slot content for the SectionParallax component.</p>
|
|
16
16
|
<p class="page-body-normal">As it's a slot, any html content can be placed here.</p>
|
|
17
|
-
</
|
|
17
|
+
</PageRow>
|
|
18
18
|
</SectionParallax>
|
|
19
19
|
</template>
|
|
20
20
|
</NuxtLayout>
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<script setup lang="ts">
|
|
25
25
|
definePageMeta({
|
|
26
26
|
layout: false,
|
|
27
|
-
})
|
|
27
|
+
});
|
|
28
28
|
|
|
29
29
|
useHead({
|
|
30
30
|
title: "SectionParallax Component",
|
|
@@ -37,9 +37,9 @@ useHead({
|
|
|
37
37
|
bodyAttrs: {
|
|
38
38
|
class: "section-parallax-page",
|
|
39
39
|
},
|
|
40
|
-
})
|
|
40
|
+
});
|
|
41
41
|
|
|
42
|
-
const forceOpened = ref(false)
|
|
42
|
+
const forceOpened = ref(false);
|
|
43
43
|
</script>
|
|
44
44
|
|
|
45
45
|
<style lang="css">
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
6
6
|
<h2 class="page-heading-2">ColourFinder</h2>
|
|
7
|
-
</
|
|
7
|
+
</PageRow>
|
|
8
8
|
|
|
9
|
-
<
|
|
9
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
10
10
|
<ColourFinder />
|
|
11
|
-
</
|
|
11
|
+
</PageRow>
|
|
12
12
|
</template>
|
|
13
13
|
</NuxtLayout>
|
|
14
14
|
</div>
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
6
6
|
<h1 class="page-heading-1">Services Card Grid</h1>
|
|
7
7
|
<p class="page-body-normal">Example of a services card grid component.</p>
|
|
8
|
-
</
|
|
8
|
+
</PageRow>
|
|
9
9
|
|
|
10
|
-
<
|
|
10
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
11
11
|
<ServicesCardGrid
|
|
12
12
|
:services-data="servicesData ?? []"
|
|
13
13
|
:eyebrow-config="{ fontSize: 'large' }"
|
|
14
14
|
:hero-config="{ tag: 'h2', fontSize: 'heading' }"
|
|
15
15
|
/>
|
|
16
|
-
</
|
|
16
|
+
</PageRow>
|
|
17
17
|
</template>
|
|
18
18
|
</NuxtLayout>
|
|
19
19
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
6
6
|
<EyebrowText font-size="large" text-content="Services" />
|
|
7
7
|
|
|
8
8
|
<HeroText
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
<p class="page-body-normal">
|
|
21
21
|
<NuxtLink to="/ui/services/services-cards" class="page-link-normal">Back to Services</NuxtLink>
|
|
22
22
|
</p>
|
|
23
|
-
</
|
|
23
|
+
</PageRow>
|
|
24
24
|
|
|
25
|
-
<
|
|
25
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
26
26
|
<ServicesSection v-if="servicesData.length > 0 && serviceData" :service-data="serviceData!" />
|
|
27
|
-
</
|
|
27
|
+
</PageRow>
|
|
28
28
|
</template>
|
|
29
29
|
</NuxtLayout>
|
|
30
30
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
6
6
|
<EyebrowText font-size="large" text-content="Services" />
|
|
7
7
|
<HeroText
|
|
8
8
|
:tag="'h1'"
|
|
@@ -15,23 +15,23 @@
|
|
|
15
15
|
]"
|
|
16
16
|
:style-class-passthrough="['mbe-20']"
|
|
17
17
|
/>
|
|
18
|
-
</
|
|
18
|
+
</PageRow>
|
|
19
19
|
|
|
20
|
-
<
|
|
20
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
21
21
|
<p class="page-body-medium">
|
|
22
22
|
I'm a mobile hair artist bringing bold, custom hair transformations straight to your doorstep in Bath. From
|
|
23
23
|
lived-in balayage and dimensional lowlights to face-framing highlights and precision cuts — salon-quality
|
|
24
24
|
results, zero hassle.
|
|
25
25
|
</p>
|
|
26
|
-
</
|
|
26
|
+
</PageRow>
|
|
27
27
|
|
|
28
|
-
<
|
|
28
|
+
<PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
|
|
29
29
|
<ServicesSectionGrid
|
|
30
30
|
:services-data="servicesData ?? []"
|
|
31
31
|
:use-alternate-reverse="true"
|
|
32
32
|
summary-alignment="center"
|
|
33
33
|
/>
|
|
34
|
-
</
|
|
34
|
+
</PageRow>
|
|
35
35
|
</template>
|
|
36
36
|
</NuxtLayout>
|
|
37
37
|
</div>
|
|
@@ -2,48 +2,48 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
|
|
6
6
|
<h1 class="page-heading-1 mbe-18">Settings</h1>
|
|
7
7
|
<h2 class="page-heading-2 mbe-18">Theme Switcher</h2>
|
|
8
8
|
|
|
9
9
|
<DisplayThemeSwitch />
|
|
10
|
-
</
|
|
10
|
+
</PageRow>
|
|
11
11
|
|
|
12
|
-
<
|
|
12
|
+
<PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
|
|
13
13
|
<h1 class="page-heading-1 mbe-18">Default button elements</h1>
|
|
14
14
|
|
|
15
15
|
<div class="mb-12">
|
|
16
16
|
<p class="page-body-normal mbe-12"><code>class="test-button" data-theme="default"</code></p>
|
|
17
17
|
<button class="input-button-core" type="button">This is a button</button>
|
|
18
18
|
</div>
|
|
19
|
-
</
|
|
19
|
+
</PageRow>
|
|
20
20
|
|
|
21
|
-
<
|
|
21
|
+
<PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
|
|
22
22
|
<h1 class="page-heading-1 mbe-18">Primary button elements</h1>
|
|
23
23
|
|
|
24
24
|
<div class="mb-12" data-theme="default">
|
|
25
25
|
<p class="page-body-normal mbe-12"><code>class="test-button" data-theme="default"</code></p>
|
|
26
26
|
<button class="input-button-core" type="button">This is a button</button>
|
|
27
27
|
</div>
|
|
28
|
-
</
|
|
28
|
+
</PageRow>
|
|
29
29
|
|
|
30
|
-
<
|
|
30
|
+
<PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
|
|
31
31
|
<h1 class="page-heading-1 mbe-18">Error button elements</h1>
|
|
32
32
|
|
|
33
33
|
<div class="mb-12" data-theme="default" data-error>
|
|
34
34
|
<p class="page-body-normal mbe-12"><code>class="test-button" data-theme="error"</code></p>
|
|
35
35
|
<button class="input-button-core" type="button">This is a button</button>
|
|
36
36
|
</div>
|
|
37
|
-
</
|
|
37
|
+
</PageRow>
|
|
38
38
|
|
|
39
|
-
<
|
|
39
|
+
<PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
|
|
40
40
|
<h1 class="page-heading-1 mbe-18">Success button elements</h1>
|
|
41
41
|
|
|
42
42
|
<div class="mb-12" data-theme="success">
|
|
43
43
|
<p class="page-body-normal mbe-12"><code>class="test-button" data-theme="success"</code></p>
|
|
44
44
|
<button class="input-button-core" type="button">This is a button</button>
|
|
45
45
|
</div>
|
|
46
|
-
</
|
|
46
|
+
</PageRow>
|
|
47
47
|
</template>
|
|
48
48
|
</NuxtLayout>
|
|
49
49
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
|
|
6
6
|
<h1 class="page-heading-3">Simple Grid</h1>
|
|
7
7
|
<p class="page-body-normal">Simple grid displaying dummy posts data</p>
|
|
8
8
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
</GridCore>
|
|
22
22
|
|
|
23
23
|
<p v-else class="page-body-normal">…Loading</p>
|
|
24
|
-
</
|
|
24
|
+
</PageRow>
|
|
25
25
|
</template>
|
|
26
26
|
</NuxtLayout>
|
|
27
27
|
</div>
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="full" :style-class-passthrough="['display-details-section', 'mbe-20']">
|
|
6
6
|
<h1 class="page-heading-2">Slider Gallery Component</h1>
|
|
7
7
|
|
|
8
8
|
<SliderGallery v-model:gallery-data="galleryData" :auto-run="false" />
|
|
9
|
-
</
|
|
9
|
+
</PageRow>
|
|
10
10
|
</template>
|
|
11
11
|
</NuxtLayout>
|
|
12
12
|
</div>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<script setup lang="ts">
|
|
16
16
|
definePageMeta({
|
|
17
17
|
layout: false,
|
|
18
|
-
})
|
|
18
|
+
});
|
|
19
19
|
|
|
20
20
|
useHead({
|
|
21
21
|
title: "Slider Gallery Component",
|
|
@@ -28,7 +28,7 @@ useHead({
|
|
|
28
28
|
bodyAttrs: {
|
|
29
29
|
class: "slider-gallery-page",
|
|
30
30
|
},
|
|
31
|
-
})
|
|
31
|
+
});
|
|
32
32
|
|
|
33
33
|
const galleryData = ref([
|
|
34
34
|
{
|
|
@@ -201,7 +201,7 @@ const galleryData = ref([
|
|
|
201
201
|
},
|
|
202
202
|
textBrightness: "light",
|
|
203
203
|
},
|
|
204
|
-
])
|
|
204
|
+
]);
|
|
205
205
|
</script>
|
|
206
206
|
|
|
207
207
|
<style lang="css">
|
package/app/pages/ui/tabs-y.vue
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="popout" :style-class-passthrough="['mbs-32']">
|
|
6
6
|
<h1 class="page-heading-2">Tabs #3</h1>
|
|
7
7
|
<p>Data driven accordian navigation with custom content</p>
|
|
8
8
|
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<p class="p-24">This is content slot 5</p>
|
|
28
28
|
</template>
|
|
29
29
|
</TabsCore>
|
|
30
|
-
</
|
|
30
|
+
</PageRow>
|
|
31
31
|
</template>
|
|
32
32
|
</NuxtLayout>
|
|
33
33
|
</div>
|
|
@@ -49,7 +49,6 @@ useHead({
|
|
|
49
49
|
|
|
50
50
|
const navLinks6: ITabNav[] = [
|
|
51
51
|
{ name: "Home", path: "/" },
|
|
52
|
-
{ name: "Layout Row", path: "/ui/layout-row" },
|
|
53
52
|
{ name: "Dialogs", path: "/ui/dialog" },
|
|
54
53
|
{ name: "Tabs", path: "/ui/tabs" },
|
|
55
54
|
{ name: "Something Else", path: "/ui/something" },
|
package/app/pages/ui/tabs.vue
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<NuxtLayout name="default">
|
|
4
4
|
<template #layout-content>
|
|
5
|
-
<
|
|
5
|
+
<PageRow tag="div" variant="popout" :style-class-passthrough="['mbs-32']">
|
|
6
6
|
<h1 class="page-heading-2">Tabs #1</h1>
|
|
7
7
|
<p>Static tabs</p>
|
|
8
8
|
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
<p class="p-24">This is content slot 2</p>
|
|
26
26
|
</template>
|
|
27
27
|
</TabsCore>
|
|
28
|
-
</
|
|
28
|
+
</PageRow>
|
|
29
29
|
|
|
30
|
-
<
|
|
30
|
+
<PageRow tag="div" variant="popout" :style-class-passthrough="['mbs-32']">
|
|
31
31
|
<h2 class="page-heading-2">Tabs #2</h2>
|
|
32
32
|
<p>Data driven tabs</p>
|
|
33
33
|
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
<p class="p-24">This is content slot 3</p>
|
|
47
47
|
</template>
|
|
48
48
|
</TabsCore>
|
|
49
|
-
</
|
|
49
|
+
</PageRow>
|
|
50
50
|
|
|
51
|
-
<
|
|
51
|
+
<PageRow tag="div" variant="popout" :style-class-passthrough="['mbs-32']">
|
|
52
52
|
<h2 class="page-heading-2">Tabs #3</h2>
|
|
53
53
|
<p>Data driven accordian navigation with custom content</p>
|
|
54
54
|
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
<p class="p-24">This is content slot 5</p>
|
|
74
74
|
</template>
|
|
75
75
|
</TabsCore>
|
|
76
|
-
</
|
|
76
|
+
</PageRow>
|
|
77
77
|
</template>
|
|
78
78
|
</NuxtLayout>
|
|
79
79
|
</div>
|
|
@@ -100,20 +100,17 @@ interface ITabNav {
|
|
|
100
100
|
|
|
101
101
|
const navLinks3: ITabNav[] = [
|
|
102
102
|
{ name: "Home", path: "/" },
|
|
103
|
-
{ name: "Layout Row", path: "/ui/layout-row" },
|
|
104
103
|
{ name: "Dialogs", path: "/ui/dialog" },
|
|
105
104
|
];
|
|
106
105
|
|
|
107
106
|
const navLinks4: ITabNav[] = [
|
|
108
107
|
{ name: "Home", path: "/" },
|
|
109
|
-
{ name: "Layout Row", path: "/ui/layout-row" },
|
|
110
108
|
{ name: "Dialogs", path: "/ui/dialog" },
|
|
111
109
|
{ name: "Tabs", path: "/ui/tabs" },
|
|
112
110
|
];
|
|
113
111
|
|
|
114
112
|
const navLinks6: ITabNav[] = [
|
|
115
113
|
{ name: "Home", path: "/" },
|
|
116
|
-
{ name: "Layout Row", path: "/ui/layout-row" },
|
|
117
114
|
{ name: "Dialogs", path: "/ui/dialog" },
|
|
118
115
|
{ name: "Tabs", path: "/ui/tabs" },
|
|
119
116
|
{ name: "Something Else", path: "/ui/something" },
|