srcdev-nuxt-components 9.1.49 → 9.1.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (220) hide show
  1. package/.claude/settings.json +2 -4
  2. package/.claude/settings.local.json +22 -2
  3. package/.claude/skills/components/card-core.md +205 -0
  4. package/.claude/skills/components/display-dialog.md +128 -0
  5. package/.claude/skills/components/page-hero-highlights.md +1 -1
  6. package/.claude/skills/components/page-row.md +157 -0
  7. package/.claude/skills/components/services-card-grid.md +4 -4
  8. package/.claude/skills/components/services-section-grid.md +4 -4
  9. package/.claude/skills/components/tab-navigation.md +222 -0
  10. package/.claude/skills/composable-dialog-controls.md +55 -43
  11. package/.claude/skills/index.md +5 -2
  12. package/app/components/01.atoms/card/CONSUMER-STYLING.md +175 -0
  13. package/app/components/01.atoms/card/CardCore.vue +48 -21
  14. package/app/components/01.atoms/display-dialog/CONSUMER-STYLING.md +163 -0
  15. package/app/components/01.atoms/display-dialog/DisplayDialog.vue +277 -0
  16. package/app/components/01.atoms/display-dialog/stories/DisplayDialog.stories.ts +177 -0
  17. package/app/components/01.atoms/display-dialog/tests/DisplayDialog.spec.ts +264 -0
  18. package/app/components/01.atoms/display-dialog/tests/__snapshots__/DisplayDialog.spec.ts.snap +18 -0
  19. package/app/components/01.atoms/page-row/CONSUMER-STYLING.md +90 -0
  20. package/app/components/01.atoms/page-row/PageRow.vue +115 -0
  21. package/app/components/01.atoms/page-row/stories/PageRow.stories.ts +311 -0
  22. package/app/components/01.atoms/page-row/tests/PageRow.spec.ts +191 -0
  23. package/app/components/02.molecules/navigation/tab-navigation/CONSUMER-STYLING.md +145 -0
  24. package/app/components/02.molecules/navigation/tab-navigation/TabNavigation.vue +21 -11
  25. package/app/components/02.molecules/navigation/tab-navigation/tests/__snapshots__/TabNavigation.spec.ts.snap +12 -6
  26. package/app/components/{forms/ui → 05.forms/form-field}/FormField.vue +12 -19
  27. package/app/components/{forms/ui → 05.forms/form-wrapper}/FormWrapper.vue +6 -6
  28. package/app/components/{forms → 05.forms}/input-button/InputButtonCore.vue +2 -0
  29. package/app/components/{forms → 05.forms}/input-button/stories/InputButtonCore.stories.ts +1 -1
  30. package/app/components/{forms → 05.forms}/input-text/InputTextCore.vue +73 -73
  31. package/app/components/{forms → 05.forms}/input-text/variants/InputTextAsNumberWithLabel.vue +29 -29
  32. package/app/components/carousels/CarouselBasic.vue +99 -99
  33. package/app/components/carousels/CarouselInfinite.vue +150 -150
  34. package/app/components/deep-expanding-menu/DeepExpandingMenu.vue +111 -111
  35. package/app/components/responsive-header/ResponsiveHeader.vue +250 -282
  36. package/app/components/test-storybook/TestStorybook.vue +16 -16
  37. package/app/composables/tests/useDialogControls.spec.ts +34 -64
  38. package/app/composables/useDialogControls.ts +19 -33
  39. package/app/composables/useFormControl.ts +0 -2
  40. package/app/layouts/default.vue +9 -7
  41. package/app/pages/auto-grid.vue +37 -20
  42. package/app/pages/banner-video.vue +2 -2
  43. package/app/pages/forms/examples/buttons/index.vue +189 -215
  44. package/app/pages/forms/examples/material/text-fields.vue +2 -2
  45. package/app/pages/grid-stack.vue +10 -10
  46. package/app/pages/index.vue +20 -20
  47. package/app/pages/samaritan.vue +4 -4
  48. package/app/pages/typography/hero-text.vue +6 -6
  49. package/app/pages/typography/index.vue +4 -4
  50. package/app/pages/typography/page-body.vue +4 -4
  51. package/app/pages/typography/page-heading.vue +4 -4
  52. package/app/pages/typography/page-link.vue +4 -4
  53. package/app/pages/ui/accordian.vue +4 -4
  54. package/app/pages/ui/anchor-scroll-tab-navigation.vue +77 -66
  55. package/app/pages/ui/anchor-scroll.vue +94 -70
  56. package/app/pages/ui/animated-svg-text.vue +4 -4
  57. package/app/pages/ui/block-decorators.vue +11 -11
  58. package/app/pages/ui/card-core.vue +9 -9
  59. package/app/pages/ui/carousel-basic.vue +4 -4
  60. package/app/pages/ui/carousel-flip.vue +2 -2
  61. package/app/pages/ui/carousel-infinite.vue +4 -4
  62. package/app/pages/ui/clipped-panels.vue +10 -10
  63. package/app/pages/ui/contact-section.vue +4 -4
  64. package/app/pages/ui/container-glow.vue +2 -3
  65. package/app/pages/ui/deep-expanding-menu.vue +138 -0
  66. package/app/pages/ui/display-avatar.vue +2 -2
  67. package/app/pages/ui/display-banner.vue +2 -2
  68. package/app/pages/ui/display-chip.vue +32 -25
  69. package/app/pages/ui/display-details.vue +6 -10
  70. package/app/pages/ui/display-dialog.vue +96 -131
  71. package/app/pages/ui/display-pill.vue +27 -33
  72. package/app/pages/ui/display-prompt.vue +4 -4
  73. package/app/pages/ui/display-toast.vue +2 -2
  74. package/app/pages/ui/expanding-panel.vue +12 -16
  75. package/app/pages/ui/glowing-border.vue +12 -12
  76. package/app/pages/ui/layout-grid-a.vue +6 -6
  77. package/app/pages/ui/layout-grid-b.vue +4 -4
  78. package/app/pages/ui/magnetic-navigation.vue +6 -6
  79. package/app/pages/ui/marquee-scroller.vue +2 -2
  80. package/app/pages/ui/mask-element.vue +2 -2
  81. package/app/pages/ui/masonry-columns.vue +4 -4
  82. package/app/pages/ui/masonry-grid-ordered-experiment.vue +4 -4
  83. package/app/pages/ui/masonry-grid-ordered.vue +4 -4
  84. package/app/pages/ui/masonry-grid-sorted.vue +4 -4
  85. package/app/pages/ui/masonry-grid.vue +4 -4
  86. package/app/pages/ui/navigation/navigation-horizontal.vue +12 -12
  87. package/app/pages/ui/navigation/tab-navigation.vue +493 -0
  88. package/app/pages/ui/page-row.vue +127 -0
  89. package/app/pages/ui/price-list.vue +4 -4
  90. package/app/pages/ui/profile-section.vue +4 -4
  91. package/app/pages/ui/qr-code/[componentName].vue +6 -6
  92. package/app/pages/ui/rotating-carousel.vue +16 -16
  93. package/app/pages/ui/scroll-reveal-image.vue +20 -20
  94. package/app/pages/ui/section-parallax.vue +7 -7
  95. package/app/pages/ui/services/colour-finder.vue +4 -4
  96. package/app/pages/ui/services/services-cards.vue +4 -4
  97. package/app/pages/ui/services/services-section/[slug].vue +4 -4
  98. package/app/pages/ui/services/services-sections-compact.vue +6 -6
  99. package/app/pages/ui/settings.vue +10 -10
  100. package/app/pages/ui/simple-grid.vue +2 -2
  101. package/app/pages/ui/slider-gallery.vue +5 -5
  102. package/app/pages/ui/tabs-y.vue +2 -3
  103. package/app/pages/ui/tabs.vue +6 -9
  104. package/app/pages/ui/tooltips.vue +9 -9
  105. package/app/pages/ui/wipe-away-vertical.vue +14 -14
  106. package/package.json +1 -1
  107. package/.claude/skills/components/layout-row.md +0 -239
  108. package/app/components/display-dialog/DisplayDialogCore.vue +0 -276
  109. package/app/components/display-dialog/variants/DisplayDialogConfirm.vue +0 -47
  110. package/app/components/display-dialog/variants/DisplayDialogScrollableContent.vue +0 -51
  111. package/app/components/forms/c12/utils.ts +0 -14
  112. package/app/components/layout-row/LayoutRow.vue +0 -171
  113. package/app/components/layout-row/stories/LayoutRow.stories.ts +0 -528
  114. package/app/pages/ui/layout-row.vue +0 -139
  115. /package/app/components/{forms → 05.forms}/form-errors/InputError.vue +0 -0
  116. /package/app/components/{forms → 05.forms}/form-errors/tests/InputError.spec.ts +0 -0
  117. /package/app/components/{forms → 05.forms}/form-fieldset/FormFieldset.vue +0 -0
  118. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts +0 -0
  119. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-secondary-chromium-darwin.png +0 -0
  120. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-secondary-firefox-darwin.png +0 -0
  121. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-secondary-webkit-darwin.png +0 -0
  122. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-tertiary-chromium-darwin.png +0 -0
  123. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-tertiary-firefox-darwin.png +0 -0
  124. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-icons-tertiary-webkit-darwin.png +0 -0
  125. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-primary-pending-chromium-darwin.png +0 -0
  126. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-primary-pending-firefox-darwin.png +0 -0
  127. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-primary-pending-webkit-darwin.png +0 -0
  128. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-secondary-pill-chromium-darwin.png +0 -0
  129. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-secondary-pill-firefox-darwin.png +0 -0
  130. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-secondary-pill-webkit-darwin.png +0 -0
  131. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-tertiary-readonly-chromium-darwin.png +0 -0
  132. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-tertiary-readonly-firefox-darwin.png +0 -0
  133. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/combo-tertiary-readonly-webkit-darwin.png +0 -0
  134. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-chromium-darwin.png +0 -0
  135. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-firefox-darwin.png +0 -0
  136. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-default-chromium-darwin.png +0 -0
  137. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-default-firefox-darwin.png +0 -0
  138. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-default-webkit-darwin.png +0 -0
  139. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-error-chromium-darwin.png +0 -0
  140. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-error-firefox-darwin.png +0 -0
  141. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-error-webkit-darwin.png +0 -0
  142. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-success-chromium-darwin.png +0 -0
  143. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-success-firefox-darwin.png +0 -0
  144. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-success-webkit-darwin.png +0 -0
  145. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-warning-chromium-darwin.png +0 -0
  146. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-warning-firefox-darwin.png +0 -0
  147. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-theme-warning-webkit-darwin.png +0 -0
  148. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-primary-chromium-darwin.png +0 -0
  149. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-primary-firefox-darwin.png +0 -0
  150. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-primary-webkit-darwin.png +0 -0
  151. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-secondary-chromium-darwin.png +0 -0
  152. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-secondary-firefox-darwin.png +0 -0
  153. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-secondary-webkit-darwin.png +0 -0
  154. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-tertiary-chromium-darwin.png +0 -0
  155. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-tertiary-firefox-darwin.png +0 -0
  156. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-variant-tertiary-webkit-darwin.png +0 -0
  157. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/default-webkit-darwin.png +0 -0
  158. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/nuxt-icon-only-component-chromium-darwin.png +0 -0
  159. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/nuxt-icon-only-component-firefox-darwin.png +0 -0
  160. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/nuxt-icon-only-component-webkit-darwin.png +0 -0
  161. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pending-chromium-darwin.png +0 -0
  162. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pending-firefox-darwin.png +0 -0
  163. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pending-webkit-darwin.png +0 -0
  164. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pill-chromium-darwin.png +0 -0
  165. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pill-firefox-darwin.png +0 -0
  166. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-pill-webkit-darwin.png +0 -0
  167. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-readonly-chromium-darwin.png +0 -0
  168. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-readonly-firefox-darwin.png +0 -0
  169. /package/app/components/{forms → 05.forms}/input-button/playwright/input-button-core.playwright.ts-snapshots/state-readonly-webkit-darwin.png +0 -0
  170. /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
  171. /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
  172. /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
  173. /package/app/components/{forms → 05.forms}/input-button/tests/InputButtonCore.spec.ts +0 -0
  174. /package/app/components/{forms → 05.forms}/input-button/tests/__snapshots__/InputButtonCore.spec.ts.snap +0 -0
  175. /package/app/components/{forms → 05.forms}/input-checkbox/MultipleCheckboxes.vue +0 -0
  176. /package/app/components/{forms → 05.forms}/input-checkbox/SingleCheckbox.vue +0 -0
  177. /package/app/components/{forms → 05.forms}/input-checkbox/tests/MultipleCheckboxes.spec.ts +0 -0
  178. /package/app/components/{forms → 05.forms}/input-checkbox/tests/data/tags.json +0 -0
  179. /package/app/components/{forms → 05.forms}/input-checkbox-radio/InputCheckboxRadioButton.vue +0 -0
  180. /package/app/components/{forms → 05.forms}/input-checkbox-radio/InputCheckboxRadioCore.vue +0 -0
  181. /package/app/components/{forms → 05.forms}/input-checkbox-radio/InputCheckboxRadioWithLabel.vue +0 -0
  182. /package/app/components/{forms → 05.forms}/input-checkbox-radio/tests/InputCheckboxRadioCore.spec.ts +0 -0
  183. /package/app/components/{forms → 05.forms}/input-copy/InputCopyCore.vue +0 -0
  184. /package/app/components/{forms → 05.forms}/input-copy/stories/InputCopyCore.stories.ts +0 -0
  185. /package/app/components/{forms → 05.forms}/input-copy/tests/InputCopyCore.spec.ts +0 -0
  186. /package/app/components/{forms → 05.forms}/input-copy/tests/__snapshots__/InputCopyCore.spec.ts.snap +0 -0
  187. /package/app/components/{forms → 05.forms}/input-description/InputDescription.vue +0 -0
  188. /package/app/components/{forms → 05.forms}/input-description/tests/InputDescription.spec.ts +0 -0
  189. /package/app/components/{forms → 05.forms}/input-label/InputLabel.vue +0 -0
  190. /package/app/components/{forms → 05.forms}/input-label/tests/InputLabel.spec.ts +0 -0
  191. /package/app/components/{forms → 05.forms}/input-number/InputNumberCore.vue +0 -0
  192. /package/app/components/{forms → 05.forms}/input-number/variants/InputNumberDefault.vue +0 -0
  193. /package/app/components/{forms → 05.forms}/input-radio/MultipleRadiobuttons.vue +0 -0
  194. /package/app/components/{forms → 05.forms}/input-radio/tests/MultipleRadioButtons.spec.ts +0 -0
  195. /package/app/components/{forms → 05.forms}/input-radio/tests/data/tags.json +0 -0
  196. /package/app/components/{forms → 05.forms}/input-range/InputRangeCore.vue +0 -0
  197. /package/app/components/{forms → 05.forms}/input-range/variants/InputRangeDefault.vue +0 -0
  198. /package/app/components/{forms → 05.forms}/input-range-fancy/InputRangeFancyCore.vue +0 -0
  199. /package/app/components/{forms → 05.forms}/input-range-fancy/InputRangeFancyWithLabel.vue +0 -0
  200. /package/app/components/{forms → 05.forms}/input-select/InputSelectCore.vue +0 -0
  201. /package/app/components/{forms → 05.forms}/input-select/variants/InputSelectWithLabel.vue +0 -0
  202. /package/app/components/{forms → 05.forms}/input-text/stories/InputPasswordWithLabel.stories.ts +0 -0
  203. /package/app/components/{forms → 05.forms}/input-text/stories/InputTextAsNumberWithLabel.stories.ts +0 -0
  204. /package/app/components/{forms → 05.forms}/input-text/stories/InputTextCore.stories.ts +0 -0
  205. /package/app/components/{forms → 05.forms}/input-text/stories/InputTextWithLabel.stories.ts +0 -0
  206. /package/app/components/{forms → 05.forms}/input-text/variants/InputPasswordWithLabel.vue +0 -0
  207. /package/app/components/{forms → 05.forms}/input-text/variants/InputTextWithLabel.vue +0 -0
  208. /package/app/components/{forms → 05.forms}/input-textarea/InputTextareaCore.vue +0 -0
  209. /package/app/components/{forms → 05.forms}/input-textarea/stories/InputTextareaCore.stories.ts +0 -0
  210. /package/app/components/{forms → 05.forms}/input-textarea/stories/InputTextareaWithLabel.stories.ts +0 -0
  211. /package/app/components/{forms → 05.forms}/input-textarea/variants/InputTextareaWithLabel.vue +0 -0
  212. /package/app/components/{forms → 05.forms}/pending-effect/PendingEffect.vue +0 -0
  213. /package/app/components/{forms → 05.forms}/toggle-switch/ToggleSwitchCore.vue +0 -0
  214. /package/app/components/{forms → 05.forms}/toggle-switch/stories/ToggleSwitchCore.stories.ts +0 -0
  215. /package/app/components/{forms → 05.forms}/toggle-switch/stories/ToggleSwitchWithLabel.stories.ts +0 -0
  216. /package/app/components/{forms → 05.forms}/toggle-switch/stories/ToggleSwitchWithLabelInline.stories.ts +0 -0
  217. /package/app/components/{forms → 05.forms}/toggle-switch/variants/ToggleSwitchWithLabel.vue +0 -0
  218. /package/app/components/{forms → 05.forms}/toggle-switch/variants/ToggleSwitchWithLabelInline.vue +0 -0
  219. /package/app/components/{forms → 05.forms}/triple-toggle-switch/TripleToggleSwitchCore.vue +0 -0
  220. /package/app/{components/forms/c12/prop-validators/index.ts → utils/prop-validators.ts} +0 -0
@@ -2,7 +2,7 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="popout">
5
+ <PageRow tag="div" variant="popout">
6
6
  <h1 class="page-heading-2">Display Pill</h1>
7
7
 
8
8
  <!-- ── QA Panel (dev only) ───────────────────────────────── -->
@@ -15,7 +15,6 @@
15
15
  </code>
16
16
  </summary>
17
17
  <div class="qa-panel__body">
18
-
19
18
  <div class="qa-panel__group">
20
19
  <span class="qa-panel__label">Variant</span>
21
20
  <div class="qa-panel__chips">
@@ -25,7 +24,9 @@
25
24
  class="qa-panel__chip"
26
25
  :class="{ 'is-active': qaVariant === v }"
27
26
  @click="qaVariant = v"
28
- >{{ v }}</button>
27
+ >
28
+ {{ v }}
29
+ </button>
29
30
  </div>
30
31
  </div>
31
32
 
@@ -38,23 +39,21 @@
38
39
  class="qa-panel__chip"
39
40
  :class="{ 'is-active': qaSize === s }"
40
41
  @click="qaSize = s"
41
- >{{ s }}</button>
42
+ >
43
+ {{ s }}
44
+ </button>
42
45
  </div>
43
46
  </div>
44
47
 
45
48
  <div class="qa-panel__group">
46
49
  <span class="qa-panel__label">Reversed</span>
47
50
  <div class="qa-panel__chips">
48
- <button
49
- class="qa-panel__chip"
50
- :class="{ 'is-active': !qaReversed }"
51
- @click="qaReversed = false"
52
- >icontext</button>
53
- <button
54
- class="qa-panel__chip"
55
- :class="{ 'is-active': qaReversed }"
56
- @click="qaReversed = true"
57
- >text → icon</button>
51
+ <button class="qa-panel__chip" :class="{ 'is-active': !qaReversed }" @click="qaReversed = false">
52
+ icon → text
53
+ </button>
54
+ <button class="qa-panel__chip" :class="{ 'is-active': qaReversed }" @click="qaReversed = true">
55
+ texticon
56
+ </button>
58
57
  </div>
59
58
  </div>
60
59
 
@@ -67,10 +66,11 @@
67
66
  class="qa-panel__chip"
68
67
  :class="{ 'is-active': qaTag === t }"
69
68
  @click="qaTag = t"
70
- >&lt;{{ t }}&gt;</button>
69
+ >
70
+ &lt;{{ t }}&gt;
71
+ </button>
71
72
  </div>
72
73
  </div>
73
-
74
74
  </div>
75
75
  </details>
76
76
  </div>
@@ -79,13 +79,7 @@
79
79
  <section>
80
80
  <h2 class="page-heading-3">Interactive preview</h2>
81
81
  <div class="demo-row">
82
- <DisplayPill
83
- :tag="qaTag"
84
- label="Label text"
85
- :variant="qaVariant"
86
- :size="qaSize"
87
- :reversed="qaReversed"
88
- >
82
+ <DisplayPill :tag="qaTag" label="Label text" :variant="qaVariant" :size="qaSize" :reversed="qaReversed">
89
83
  <template #icon>
90
84
  <Icon name="material-symbols:star-outline-rounded" class="demo-icon" aria-hidden="true" />
91
85
  </template>
@@ -138,12 +132,7 @@
138
132
 
139
133
  <div class="dt">Dashed border</div>
140
134
  <div class="dd">
141
- <DisplayPill
142
- label="Dashed"
143
- :variant="qaVariant"
144
- :size="qaSize"
145
- style-class-passthrough="demo-dashed"
146
- >
135
+ <DisplayPill label="Dashed" :variant="qaVariant" :size="qaSize" style-class-passthrough="demo-dashed">
147
136
  <template #icon>
148
137
  <Icon name="material-symbols:circle-outline" class="demo-icon" aria-hidden="true" />
149
138
  </template>
@@ -210,12 +199,13 @@
210
199
  <template #icon>
211
200
  <Icon name="material-symbols:info-outline-rounded" class="demo-icon" aria-hidden="true" />
212
201
  </template>
213
- <strong>Custom</strong>&nbsp;slot
202
+ <strong>Custom</strong>
203
+ &nbsp;slot
214
204
  </DisplayPill>
215
205
  </div>
216
206
  </div>
217
207
  </section>
218
- </LayoutRow>
208
+ </PageRow>
219
209
  </template>
220
210
  </NuxtLayout>
221
211
  </div>
@@ -271,7 +261,9 @@ const qaTag = ref<Tag>("span");
271
261
  list-style: none;
272
262
  user-select: none;
273
263
 
274
- &::-webkit-details-marker { display: none; }
264
+ &::-webkit-details-marker {
265
+ display: none;
266
+ }
275
267
  }
276
268
 
277
269
  .qa-panel__title {
@@ -328,7 +320,9 @@ const qaTag = ref<Tag>("span");
328
320
  cursor: pointer;
329
321
  transition: background 0.15s;
330
322
 
331
- &:hover { background: oklch(0% 0 0 / 0.4); }
323
+ &:hover {
324
+ background: oklch(0% 0 0 / 0.4);
325
+ }
332
326
 
333
327
  &.is-active {
334
328
  background: oklch(55% 0.18 240);
@@ -2,7 +2,7 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="popout" style-class-passthrough="['pb-12']">
5
+ <PageRow tag="div" variant="popout" style-class-passthrough="['pb-12']">
6
6
  <h1 class="page-heading-2">Display Prompts</h1>
7
7
 
8
8
  <section class="prompt-examples pb-12">
@@ -55,7 +55,7 @@
55
55
  <template #content>This is prompt content, it can contain html or plain text.</template>
56
56
  </DisplayPromptCore>
57
57
  </section>
58
- </LayoutRow>
58
+ </PageRow>
59
59
  </template>
60
60
  </NuxtLayout>
61
61
  </div>
@@ -64,12 +64,12 @@
64
64
  <script setup lang="ts">
65
65
  definePageMeta({
66
66
  layout: false,
67
- })
67
+ });
68
68
 
69
69
  useHead({
70
70
  title: "UI Display Prompts",
71
71
  meta: [{ name: "description", content: "Examples of UI Display Prompts" }],
72
- })
72
+ });
73
73
  </script>
74
74
 
75
75
  <style lang="css">
@@ -2,7 +2,7 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20', 'p-20']">
5
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20', 'p-20']">
6
6
  <h2 class="page-heading-2">DisplayToast Component</h2>
7
7
  <HeaderBlock :tag-level="3" :class-level="3" :style-class-passthrough="['mbe-10']">
8
8
  Toast notification component (HeaderBlock)
@@ -93,7 +93,7 @@
93
93
  />
94
94
  </p>
95
95
  </form>
96
- </LayoutRow>
96
+ </PageRow>
97
97
 
98
98
  <DisplayToast
99
99
  v-model="firstToastActive"
@@ -2,7 +2,7 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['expanding-panel-section', 'mbe-20']">
5
+ <PageRow tag="div" variant="full" :style-class-passthrough="['expanding-panel-section', 'mbe-20']">
6
6
  <h1 class="page-heading-2">Details element - Unlinked</h1>
7
7
  <p class="mbe-12">Following 2 details block behave independantly.</p>
8
8
 
@@ -41,13 +41,9 @@
41
41
  </div>
42
42
  </template>
43
43
  </ExpandingPanel>
44
- </LayoutRow>
44
+ </PageRow>
45
45
 
46
- <LayoutRow
47
- tag="div"
48
- variant="full-width"
49
- :style-class-passthrough="['expanding-panel-section', 'mbe-20', 'hidden']"
50
- >
46
+ <PageRow tag="div" variant="full" :style-class-passthrough="['expanding-panel-section', 'mbe-20', 'hidden']">
51
47
  <h2 class="page-heading-2">Details element - Linked</h2>
52
48
  <p class="mbe-12">Details panels are linked, only 1 can be open at a time.</p>
53
49
 
@@ -96,9 +92,9 @@
96
92
  </div>
97
93
  </template>
98
94
  </ExpandingPanel>
99
- </LayoutRow>
95
+ </PageRow>
100
96
 
101
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['expanding-panel-section', 'mbe-20']">
97
+ <PageRow tag="div" variant="full" :style-class-passthrough="['expanding-panel-section', 'mbe-20']">
102
98
  <h1 class="page-heading-2">Details element - forceOpened</h1>
103
99
  <p class="page-body-normal">Will be displayed as force opened via prop forceOpened</p>
104
100
  <p class="page-body-normal">Also contains a button and link within content which toggles to closed</p>
@@ -134,7 +130,7 @@
134
130
  </div>
135
131
  </template>
136
132
  </ExpandingPanel>
137
- </LayoutRow>
133
+ </PageRow>
138
134
  </template>
139
135
  </NuxtLayout>
140
136
  </div>
@@ -143,7 +139,7 @@
143
139
  <script setup lang="ts">
144
140
  definePageMeta({
145
141
  layout: false,
146
- })
142
+ });
147
143
 
148
144
  useHead({
149
145
  title: "Browser title tag",
@@ -153,14 +149,14 @@ useHead({
153
149
  content: "Meta description content",
154
150
  },
155
151
  ],
156
- })
152
+ });
157
153
 
158
- const forceOpened = ref(false)
159
- const isPanelOpen = ref(false)
154
+ const forceOpened = ref(false);
155
+ const isPanelOpen = ref(false);
160
156
 
161
157
  const closePanel = () => {
162
- isPanelOpen.value = false
163
- }
158
+ isPanelOpen.value = false;
159
+ };
164
160
  </script>
165
161
 
166
162
  <style lang="css">
@@ -2,7 +2,7 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
6
6
  <h1 class="page-heading-1">GlowingBorder Component</h1>
7
7
  <form class="mb-12">
8
8
  <div>
@@ -35,9 +35,9 @@
35
35
  <input type="checkbox" id="noOutline" v-model="noOutline" class="form-checkbox" />
36
36
  </div>
37
37
  </form>
38
- </LayoutRow>
38
+ </PageRow>
39
39
 
40
- <LayoutRow tag="div" variant="inset-content" :style-class-passthrough="['mbe-20']">
40
+ <PageRow tag="div" variant="inset-content" :style-class-passthrough="['mbe-20']">
41
41
  <h2 class="page-heading-2">Default</h2>
42
42
 
43
43
  <GlowingBorder :variant="glowingBorderVariant" :style-class-passthrough="['mbe-20']">
@@ -49,9 +49,9 @@
49
49
  <p class="page-body-small">GlowingBorder Footer</p>
50
50
  </div>
51
51
  </GlowingBorder>
52
- </LayoutRow>
52
+ </PageRow>
53
53
 
54
- <LayoutRow tag="div" variant="inset-content" :style-class-passthrough="['mbe-20']">
54
+ <PageRow tag="div" variant="inset-content" :style-class-passthrough="['mbe-20']">
55
55
  <h2 class="page-heading-2">Default</h2>
56
56
 
57
57
  <GlowingBorder :variant="glowingBorderVariant" :style-class-passthrough="['mbe-20']">
@@ -69,7 +69,7 @@
69
69
  </template>
70
70
  </CardCore>
71
71
  </GlowingBorder>
72
- </LayoutRow>
72
+ </PageRow>
73
73
  </template>
74
74
  </NuxtLayout>
75
75
  </div>
@@ -78,7 +78,7 @@
78
78
  <script setup lang="ts">
79
79
  definePageMeta({
80
80
  layout: false,
81
- })
81
+ });
82
82
 
83
83
  useHead({
84
84
  title: "GlowingBorder Component",
@@ -91,12 +91,12 @@ useHead({
91
91
  bodyAttrs: {
92
92
  class: "glowing-border-page",
93
93
  },
94
- })
94
+ });
95
95
 
96
- const glowingBorderVariant = ref("vivid")
97
- const cardCoreVariant = ref<"outline" | "solid" | "subtle" | "soft">("solid")
98
- const hasDividers = ref(false)
99
- const noOutline = ref(false)
96
+ const glowingBorderVariant = ref("vivid");
97
+ const cardCoreVariant = ref<"outline" | "solid" | "subtle" | "soft">("solid");
98
+ const hasDividers = ref(false);
99
+ const noOutline = ref(false);
100
100
  </script>
101
101
 
102
102
  <style lang="css">
@@ -2,13 +2,13 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="full-width" :styleClassPassthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="full" :styleClassPassthrough="['mbe-20']">
6
6
  <h1 class="page-heading-2">Layout Grid 'A'</h1>
7
7
 
8
8
  <CanvasSwitcher v-model:canvasName="canvasName" />
9
- </LayoutRow>
9
+ </PageRow>
10
10
 
11
- <LayoutRow tag="div" variant="popout" :styleClassPassthrough="['mbe-20']">
11
+ <PageRow tag="div" variant="popout" :styleClassPassthrough="['mbe-20']">
12
12
  <LayoutGridA :styleClassPassthrough="[canvasName]">
13
13
  <template #slot1>
14
14
  <h3 class="page-heading-3">Slot 1</h3>
@@ -54,9 +54,9 @@
54
54
  </p>
55
55
  </template>
56
56
  </LayoutGridA>
57
- </LayoutRow>
57
+ </PageRow>
58
58
 
59
- <LayoutRow tag="div" variant="full-width" :styleClassPassthrough="['mbe-20']">
59
+ <PageRow tag="div" variant="full" :styleClassPassthrough="['mbe-20']">
60
60
  <h2 class="page-heading-2">Full Width</h2>
61
61
  <p>
62
62
  Lorem ipsum odor amet, consectetuer adipiscing elit. Nec elementum maecenas placerat laoreet curae elit
@@ -72,7 +72,7 @@
72
72
  suscipit quisque convallis eget? Dignissim mattis luctus enim habitant porta pretium litora. Parturient
73
73
  montes imperdiet massa; sollicitudin varius hac aptent. Eleifend parturient mattis tellus nisi a montes.
74
74
  </p>
75
- </LayoutRow>
75
+ </PageRow>
76
76
  </template>
77
77
  </NuxtLayout>
78
78
  </div>
@@ -2,12 +2,12 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
6
6
  <h1 class="page-heading-2">Layout Grid 'B'</h1>
7
7
  <CanvasSwitcher v-model:canvas-name="canvasName" />
8
- </LayoutRow>
8
+ </PageRow>
9
9
 
10
- <LayoutRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
10
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
11
11
  <LayoutGridB :top-row-slot1-item-count="6" :bottom-row-item-count="4" :style-class-passthrough="[canvasName]">
12
12
  <template #[`top-row-slot1-1-content`]>
13
13
  <p class="p-24">This is content slot 1</p>
@@ -107,7 +107,7 @@
107
107
  </p>
108
108
  </template>
109
109
  </LayoutGridB>
110
- </LayoutRow>
110
+ </PageRow>
111
111
  </template>
112
112
  </NuxtLayout>
113
113
  </div>
@@ -2,13 +2,13 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
6
6
  <h2 class="page-heading-2">Magnetic Navigation</h2>
7
- </LayoutRow>
7
+ </PageRow>
8
8
 
9
- <LayoutRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
9
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
10
10
  <MagneticNavigation />
11
- </LayoutRow>
11
+ </PageRow>
12
12
  </template>
13
13
  </NuxtLayout>
14
14
  </div>
@@ -17,7 +17,7 @@
17
17
  <script setup lang="ts">
18
18
  definePageMeta({
19
19
  layout: false,
20
- })
20
+ });
21
21
 
22
22
  useHead({
23
23
  title: "Magnetic Navigation",
@@ -30,7 +30,7 @@ useHead({
30
30
  bodyAttrs: {
31
31
  class: "magnetic-navigation-page",
32
32
  },
33
- })
33
+ });
34
34
  </script>
35
35
 
36
36
  <style lang="css">
@@ -2,7 +2,7 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
6
6
  <h1 class="page-heading-1">Marquee Scroller</h1>
7
7
 
8
8
  <MarqueeScroller
@@ -18,7 +18,7 @@
18
18
  </div>
19
19
  </template>
20
20
  </MarqueeScroller>
21
- </LayoutRow>
21
+ </PageRow>
22
22
  </template>
23
23
  </NuxtLayout>
24
24
  </div>
@@ -2,7 +2,7 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
6
6
  <h2 class="page-heading-2">Mask Element</h2>
7
7
 
8
8
  <div class="test-mask-element">
@@ -24,7 +24,7 @@
24
24
  </div>
25
25
  </AlertMaskCore>
26
26
  </div>
27
- </LayoutRow>
27
+ </PageRow>
28
28
  </template>
29
29
  </NuxtLayout>
30
30
  </div>
@@ -2,13 +2,13 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
6
6
  <h1 class="page-heading-3">Masonry Grid Ordered</h1>
7
7
  <p class="page-body-normal">Masonry grid ordered displaying dummy posts data</p>
8
8
  <CanvasSwitcher v-model:canvas-name="canvasName" />
9
- </LayoutRow>
9
+ </PageRow>
10
10
 
11
- <LayoutRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
11
+ <PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
12
12
  <div v-if="status === 'success'" class="masonry-columns">
13
13
  <div
14
14
  v-for="(item, index) in quotesData?.quotes.slice(0, displayCount)"
@@ -20,7 +20,7 @@
20
20
  </div>
21
21
  </div>
22
22
  <p v-else class="page-body-normal">&hellip;Loading</p>
23
- </LayoutRow>
23
+ </PageRow>
24
24
  </template>
25
25
  </NuxtLayout>
26
26
  </div>
@@ -2,13 +2,13 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
6
6
  <h1 class="page-heading-3">Masonry Grid Ordered</h1>
7
7
  <p class="page-body-normal">Masonry grid ordered displaying dummy posts data</p>
8
8
  <CanvasSwitcher v-model:canvas-name="canvasName" />
9
- </LayoutRow>
9
+ </PageRow>
10
10
 
11
- <LayoutRow tag="div" variant="full-content" :style-class-passthrough="['mbe-20']">
11
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
12
12
  <MasonryGridOrderedGridExperiment
13
13
  v-if="status === 'success'"
14
14
  :grid-data="quotesData?.quotes?.slice(0, displayCount).map((q) => ({ ...q, id: String(q.id) })) ?? []"
@@ -25,7 +25,7 @@
25
25
  </template>
26
26
  </MasonryGridOrderedGridExperiment>
27
27
  <p v-else class="page-body-normal">&hellip;Loading</p>
28
- </LayoutRow>
28
+ </PageRow>
29
29
  </template>
30
30
  </NuxtLayout>
31
31
  </div>
@@ -2,13 +2,13 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
6
6
  <h1 class="page-heading-3">Masonry Grid Ordered</h1>
7
7
  <p class="page-body-normal">Masonry grid ordered displaying dummy posts data</p>
8
8
  <CanvasSwitcher v-model:canvas-name="canvasName" />
9
- </LayoutRow>
9
+ </PageRow>
10
10
 
11
- <LayoutRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
11
+ <PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
12
12
  <MasonryGridOrdered
13
13
  v-if="status === 'success'"
14
14
  :grid-data="quotesData?.quotes.slice(0, displayCount) ?? []"
@@ -25,7 +25,7 @@
25
25
  </template>
26
26
  </MasonryGridOrdered>
27
27
  <p v-else class="page-body-normal">&hellip;Loading</p>
28
- </LayoutRow>
28
+ </PageRow>
29
29
  </template>
30
30
  </NuxtLayout>
31
31
  </div>
@@ -2,12 +2,12 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
6
6
  <h1 class="page-heading-2">Masonry Grid</h1>
7
7
  <CanvasSwitcher v-model:canvas-name="canvasName" />
8
- </LayoutRow>
8
+ </PageRow>
9
9
 
10
- <LayoutRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
10
+ <PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
11
11
  <MasonryGridSorted
12
12
  :grid-data="quotesData?.quotes.slice(0, qoutesDisplayCount) ?? []"
13
13
  :item-min-width="350"
@@ -26,7 +26,7 @@
26
26
  </div>
27
27
  </template>
28
28
  </MasonryGridSorted>
29
- </LayoutRow>
29
+ </PageRow>
30
30
  </template>
31
31
  </NuxtLayout>
32
32
  </div>
@@ -2,12 +2,12 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-20']">
6
6
  <h1 class="page-heading-2">Masonry Grid</h1>
7
7
  <CanvasSwitcher v-model:canvas-name="canvasName" />
8
- </LayoutRow>
8
+ </PageRow>
9
9
 
10
- <LayoutRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
10
+ <PageRow tag="div" variant="popout" :style-class-passthrough="['mbe-20']">
11
11
  <MasonryGrid
12
12
  :grid-data="quotesData?.quotes.slice(0, qoutesDisplayCount) ?? []"
13
13
  :item-min-width="350"
@@ -26,7 +26,7 @@
26
26
  </div>
27
27
  </template>
28
28
  </MasonryGrid>
29
- </LayoutRow>
29
+ </PageRow>
30
30
  </template>
31
31
  </NuxtLayout>
32
32
  </div>
@@ -2,25 +2,25 @@
2
2
  <div>
3
3
  <NuxtLayout name="default">
4
4
  <template #layout-content>
5
- <LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
5
+ <PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
6
6
  <h2 class="page-heading-2">Navigation Horizontal</h2>
7
7
  <p class="page-body-medium">This navigation has a reflective glow effect</p>
8
- </LayoutRow>
8
+ </PageRow>
9
9
 
10
- <LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
10
+ <PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
11
11
  <DisplayThemeSwitch />
12
- </LayoutRow>
12
+ </PageRow>
13
13
 
14
- <LayoutRow tag="div" variant="full-width" :style-class-passthrough="['mbe-4']">
15
- <LayoutRow tag="div" variant="content">
14
+ <PageRow tag="div" variant="full" :style-class-passthrough="['mbe-4']">
15
+ <PageRow tag="div" variant="content">
16
16
  <h3 class="page-heading-3">User controllable</h3>
17
- </LayoutRow>
17
+ </PageRow>
18
18
  <div class="nav-preview" :class="`theme-${theme}`" :style="navStyle">
19
19
  <NavigationHorizontal :nav-item-data="navItemData" />
20
20
  </div>
21
- </LayoutRow>
21
+ </PageRow>
22
22
 
23
- <LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
23
+ <PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
24
24
  <div class="nav-playground">
25
25
  <fieldset>
26
26
  <legend>Theme</legend>
@@ -203,9 +203,9 @@
203
203
  </div>
204
204
  </fieldset>
205
205
  </div>
206
- </LayoutRow>
206
+ </PageRow>
207
207
 
208
- <LayoutRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
208
+ <PageRow tag="div" variant="content" :style-class-passthrough="['mbe-20']">
209
209
  <div class="css-snippet">
210
210
  <div class="css-snippet-header">
211
211
  <h3 class="page-heading-3">CSS Token Snippet</h3>
@@ -213,7 +213,7 @@
213
213
  </div>
214
214
  <pre class="css-snippet-code">{{ cssSnippet }}</pre>
215
215
  </div>
216
- </LayoutRow>
216
+ </PageRow>
217
217
  </template>
218
218
  </NuxtLayout>
219
219
  </div>