@pnx-mixtape/mxds 0.0.28 → 0.0.29

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 (98) hide show
  1. package/dist/build/accordion.css +1 -1
  2. package/dist/build/base.css +1 -1
  3. package/dist/build/breadcrumb.css +1 -1
  4. package/dist/build/button.css +1 -1
  5. package/dist/build/callout.css +1 -1
  6. package/dist/build/card.css +1 -1
  7. package/dist/build/carousel.css +1 -1
  8. package/dist/build/chunks/{DropMenu-LnJEp-sg.js → DropMenu-BckyZaZM.js} +1 -1
  9. package/dist/build/chunks/{Popover-C4gisyxr.js → Popover-hTv4lVea.js} +2 -2
  10. package/dist/build/chunks/polyfills-QW1VbwlO.js +562 -0
  11. package/dist/build/chunks/popover-Dk48Vm_U.js +407 -0
  12. package/dist/build/constants.css +1 -1
  13. package/dist/build/container-grid.css +1 -1
  14. package/dist/build/content-block.css +1 -1
  15. package/dist/build/dialog.css +1 -1
  16. package/dist/build/drop-menu.css +1 -1
  17. package/dist/build/drop-menu.entry.js +2 -2
  18. package/dist/build/drupal.css +1 -1
  19. package/dist/build/filters.css +1 -1
  20. package/dist/build/footer.css +1 -1
  21. package/dist/build/form.css +1 -1
  22. package/dist/build/global-alert.css +1 -1
  23. package/dist/build/grid.css +1 -1
  24. package/dist/build/header.css +1 -1
  25. package/dist/build/header.entry.js +524 -379
  26. package/dist/build/hero-banner.css +1 -1
  27. package/dist/build/icon.css +1 -1
  28. package/dist/build/in-page-alert.css +1 -1
  29. package/dist/build/in-page-navigation.css +1 -1
  30. package/dist/build/in-page-navigation.entry.js +23 -11
  31. package/dist/build/link-list.css +1 -1
  32. package/dist/build/list-item.css +1 -1
  33. package/dist/build/masthead.css +1 -1
  34. package/dist/build/navigation.css +1 -1
  35. package/dist/build/page.css +1 -1
  36. package/dist/build/pagination.css +1 -1
  37. package/dist/build/popover.css +1 -1
  38. package/dist/build/popover.entry.js +1 -1
  39. package/dist/build/results-bar.css +1 -1
  40. package/dist/build/section.css +1 -1
  41. package/dist/build/side-navigation.css +1 -1
  42. package/dist/build/sidebar.css +1 -1
  43. package/dist/build/social-links.css +1 -1
  44. package/dist/build/steps.css +1 -1
  45. package/dist/build/sticky.css +1 -1
  46. package/dist/build/tabs.css +1 -1
  47. package/dist/build/tabs.entry.js +2 -2
  48. package/dist/build/tag.css +1 -1
  49. package/dist/build/utilities.css +1 -1
  50. package/dist/build/utility-list.css +1 -1
  51. package/package.json +22 -21
  52. package/src/Atom/Background/_background.css +1 -0
  53. package/src/Atom/Image/_image.css +1 -0
  54. package/src/Atom/Media/_media.css +0 -6
  55. package/src/Atom/Spacing/_mixins.css +22 -0
  56. package/src/Atom/Spacing/_spacing.css +33 -0
  57. package/src/Atom/Table/Table.stories.ts +17 -7
  58. package/src/Atom/Table/__snapshots__/Table.stories.ts.snap +16 -8
  59. package/src/Atom/Table/__snapshots__/TableResponsive.stories.ts.snap +1 -1
  60. package/src/Atom/Table/_table.css +26 -1
  61. package/src/Atom/Table/table-responsive.twig +1 -1
  62. package/src/Atom/Table/table.twig +9 -1
  63. package/src/Atom/_flow.css +1 -5
  64. package/src/Component/Card/Card.stories.ts +19 -0
  65. package/src/Component/Card/__snapshots__/Card.stories.ts.snap +40 -9
  66. package/src/Component/Card/card.css +60 -12
  67. package/src/Component/Card/card.twig +5 -2
  68. package/src/Component/Carousel/Elements/Carousel.ts +8 -3
  69. package/src/Component/Carousel/__snapshots__/Carousel.stories.ts.snap +52 -52
  70. package/src/Component/Carousel/carousel.css +14 -35
  71. package/src/Component/Carousel/carousel.twig +0 -1
  72. package/src/Component/GlobalAlert/global-alert.css +8 -4
  73. package/src/Component/InPageAlert/in-page-alert.css +1 -0
  74. package/src/Component/InPageNavigation/Elements/InPageNavigation.ts +12 -7
  75. package/src/Component/InPageNavigation/InPageNavigation.stories.ts +28 -12
  76. package/src/Component/InPageNavigation/__snapshots__/InPageNavigation.stories.ts.snap +30 -49
  77. package/src/Component/InPageNavigation/in-page-navigation.css +8 -4
  78. package/src/Component/InPageNavigation/in-page-navigation.twig +9 -6
  79. package/src/Component/InPageNavigation/twig/content-example.twig +1 -1
  80. package/src/Component/InPageNavigation/twig/in-page-navigation-selector.twig +4 -0
  81. package/src/Component/ListItem/__snapshots__/ListItem.stories.ts.snap +9 -9
  82. package/src/Component/ListItem/list-item.css +14 -1
  83. package/src/Component/ListItem/list-item.twig +6 -2
  84. package/src/Component/Pagination/Pagination.stories.ts +1 -1
  85. package/src/Component/Pagination/__snapshots__/Pagination.stories.ts.snap +2 -2
  86. package/src/Component/ResultsBar/results-bar.css +4 -0
  87. package/src/Form/FormItem/FormItem.stories.ts +14 -0
  88. package/src/Form/FormItem/__snapshots__/FormItem.stories.ts.snap +19 -0
  89. package/src/Form/form.css +11 -3
  90. package/src/Layout/Grid/Grid.stories.ts +7 -7
  91. package/src/Layout/Grid/GridItem.stories.ts +1 -2
  92. package/src/Layout/Section/section.css +8 -0
  93. package/src/_custom-media.css +2 -0
  94. package/src/constants.css +16 -4
  95. package/src/enums.ts +1 -1
  96. package/src/tokens.js +1 -0
  97. package/dist/build/chunks/polyfills-Du4RTZDf.js +0 -511
  98. package/dist/build/chunks/popover-Bd5oQ1Ic.js +0 -407
@@ -122,22 +122,70 @@
122
122
  */
123
123
 
124
124
  @layer design-system.components {
125
- a[href].mx-card {
126
- &:hover {
127
- color: inherit;
125
+ .mx-card--block {
126
+ position: relative;
127
+
128
+ & a {
129
+ &::before {
130
+ content: "";
131
+ position: absolute;
132
+ inset-block-start: 0;
133
+ inset-inline-start: 0;
134
+ inline-size: 100%;
135
+ block-size: 100%;
136
+ }
137
+
138
+ &:is(:focus, :focus-visible) {
139
+ outline: unset;
140
+ }
141
+ }
142
+
143
+ &:has(a .sr-only:only-child) {
144
+ & a {
145
+ margin-block-start: calc(var(--gap) * -1);
146
+ }
147
+
148
+ &:hover :is(h2, h3, h4) {
149
+ color: var(--link-colour, var(--colour-link));
150
+ }
151
+ }
152
+
153
+ &:focus-within {
154
+ outline: var(--outline-size, 2px) var(--outline-style, solid)
155
+ var(--outline-color, currentcolor);
156
+ outline-offset: var(--outline-offset, 2px);
157
+
158
+ &.mx-background--box {
159
+ outline-offset: var(--outline-offset, -2px);
160
+ }
128
161
  }
129
162
  }
163
+ }
130
164
 
131
- .mx-card--block {
132
- position: relative;
165
+ /*
166
+ * Collapsed on mobile.
167
+ */
168
+ @media (--collapse-card-down) {
169
+ .mx-card--collapse {
170
+ --gap: var(--spacing-xxxs);
133
171
 
134
- & a::before {
135
- content: "";
136
- position: absolute;
137
- inset-block-start: 0;
138
- inset-inline-start: 0;
139
- inline-size: 100%;
140
- block-size: 100%;
172
+ & :is(p, .mx-text--lede) {
173
+ display: none;
174
+ }
175
+
176
+ &:has(.mx-card__media) {
177
+ --collapsed-media-col: var(--collapsed-image-width, 100px);
178
+ --ratio: 1;
179
+
180
+ grid-template-areas: "content media";
181
+ grid-template-columns: var(--collapsed-content-col, 1fr) var(--collapsed-media-col, 1fr);
182
+ }
183
+ }
184
+
185
+ :is(.mx-card--collapse, .mx-container:has(> .mx-card--collapse)) {
186
+ &:where(:not(:first-child)) {
187
+ border-block-start: var(--line-width, 1px) solid var(--line-colour, var(--colour-border));
188
+ padding-block-start: var(--gap);
141
189
  }
142
190
  }
143
191
  }
@@ -1,5 +1,8 @@
1
1
  {% set baseClass = 'mx-card' %}
2
- {% set classes = [baseClass] %}
2
+ {% set classes = [
3
+ baseClass,
4
+ collapse ? baseClass~"--collapse" : null,
5
+ ] %}
3
6
  {% set background = background ? "mx-background--"~background : null %}
4
7
  {% for modifier in modifiers %}
5
8
  {% if modifier == "dark" %}
@@ -25,11 +28,11 @@
25
28
  </div>
26
29
  {% endif %}
27
30
  <div class="mx-card__content mx-vertical-flow-flex">
31
+ {{ tags }}
28
32
  {% if date is not empty %}
29
33
  <div class="mx-text--s">{{ date }}</div>
30
34
  {% endif %}
31
35
  {{ title }}
32
- {{ tags }}
33
36
  {% if content is not empty %}
34
37
  <div class="mx-text--lede mx-vertical-flow-flex">{{ content }}</div>
35
38
  {% endif %}
@@ -153,9 +153,14 @@ export default class Carousel extends HTMLElement {
153
153
  const { scrollWidth, clientWidth } = this.list
154
154
  const hasOverflow = scrollWidth > clientWidth
155
155
  this.list.classList.toggle("overflowing", hasOverflow)
156
- if (this.pagination && hasOverflow) {
157
- // Timeout needed for this.itemMap to get populated by i0.
158
- setTimeout(this.buildPagination, 200)
156
+ if (hasOverflow) {
157
+ if (this.pagination) {
158
+ // Timeout needed for this.itemMap to get populated by i0.
159
+ setTimeout(this.buildPagination, 200)
160
+ }
161
+ this.list.setAttribute("tabindex", "0")
162
+ } else {
163
+ this.list.removeAttribute("tabindex")
159
164
  }
160
165
  }
161
166
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  exports[`Carousel 1`] = `
4
4
  "
5
- <mx-carousel class="mx-carousel mx-vertical-flow" role="group">
5
+ <mx-carousel class="mx-carousel" role="group">
6
6
  <div class="mx-carousel__buttons" data-buttons="">
7
7
  <button class="mx-carousel__prev mx-button mx-button--icon-only" type="button" disabled="">
8
8
  <span class="sr-only">previous</span>
@@ -13,15 +13,15 @@ exports[`Carousel 1`] = `
13
13
  <span class="mx-icon mx-icon--chevron-right"></span>
14
14
  </button>
15
15
  </div>
16
- <ul class="mx-carousel__scrollable overflowing">
16
+ <ul class="mx-carousel__scrollable overflowing" tabindex="0">
17
17
  <li>
18
18
  <div class="mx-container">
19
19
  <article class="mx-card mx-card--block mx-background--box">
20
20
  <div class="mx-card__content mx-vertical-flow-flex">
21
+
21
22
 
22
23
  <h3>Tile 1</h3>
23
24
 
24
-
25
25
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
26
26
 
27
27
 
@@ -39,10 +39,10 @@ exports[`Carousel 1`] = `
39
39
  <div class="mx-container">
40
40
  <article class="mx-card mx-card--block mx-background--box">
41
41
  <div class="mx-card__content mx-vertical-flow-flex">
42
+
42
43
 
43
44
  <h3>Tile 2</h3>
44
45
 
45
-
46
46
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
47
47
 
48
48
 
@@ -60,10 +60,10 @@ exports[`Carousel 1`] = `
60
60
  <div class="mx-container">
61
61
  <article class="mx-card mx-card--block mx-background--box">
62
62
  <div class="mx-card__content mx-vertical-flow-flex">
63
+
63
64
 
64
65
  <h3>Tile 3</h3>
65
66
 
66
-
67
67
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
68
68
 
69
69
 
@@ -81,10 +81,10 @@ exports[`Carousel 1`] = `
81
81
  <div class="mx-container">
82
82
  <article class="mx-card mx-card--block mx-background--box">
83
83
  <div class="mx-card__content mx-vertical-flow-flex">
84
+
84
85
 
85
86
  <h3>Tile 4</h3>
86
87
 
87
-
88
88
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
89
89
 
90
90
 
@@ -102,10 +102,10 @@ exports[`Carousel 1`] = `
102
102
  <div class="mx-container">
103
103
  <article class="mx-card mx-card--block mx-background--box">
104
104
  <div class="mx-card__content mx-vertical-flow-flex">
105
+
105
106
 
106
107
  <h3>Tile 5</h3>
107
108
 
108
-
109
109
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image but may have longer text and trigger height changes..</p></div>
110
110
 
111
111
 
@@ -123,10 +123,10 @@ exports[`Carousel 1`] = `
123
123
  <div class="mx-container">
124
124
  <article class="mx-card mx-card--block mx-background--box">
125
125
  <div class="mx-card__content mx-vertical-flow-flex">
126
+
126
127
 
127
128
  <h3>Tile 6</h3>
128
129
 
129
-
130
130
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
131
131
 
132
132
 
@@ -144,10 +144,10 @@ exports[`Carousel 1`] = `
144
144
  <div class="mx-container">
145
145
  <article class="mx-card mx-card--block mx-background--box">
146
146
  <div class="mx-card__content mx-vertical-flow-flex">
147
+
147
148
 
148
149
  <h3>Tile 7</h3>
149
150
 
150
-
151
151
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
152
152
 
153
153
 
@@ -165,10 +165,10 @@ exports[`Carousel 1`] = `
165
165
  <div class="mx-container">
166
166
  <article class="mx-card mx-card--block mx-background--box">
167
167
  <div class="mx-card__content mx-vertical-flow-flex">
168
+
168
169
 
169
170
  <h3>Tile 8</h3>
170
171
 
171
-
172
172
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
173
173
 
174
174
 
@@ -186,10 +186,10 @@ exports[`Carousel 1`] = `
186
186
  <div class="mx-container">
187
187
  <article class="mx-card mx-card--block mx-background--box">
188
188
  <div class="mx-card__content mx-vertical-flow-flex">
189
+
189
190
 
190
191
  <h3>Tile 9</h3>
191
192
 
192
-
193
193
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
194
194
 
195
195
 
@@ -207,10 +207,10 @@ exports[`Carousel 1`] = `
207
207
  <div class="mx-container">
208
208
  <article class="mx-card mx-card--block mx-background--box">
209
209
  <div class="mx-card__content mx-vertical-flow-flex">
210
+
210
211
 
211
212
  <h3>Tile 10</h3>
212
213
 
213
-
214
214
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
215
215
 
216
216
 
@@ -228,10 +228,10 @@ exports[`Carousel 1`] = `
228
228
  <div class="mx-container">
229
229
  <article class="mx-card mx-card--block mx-background--box">
230
230
  <div class="mx-card__content mx-vertical-flow-flex">
231
+
231
232
 
232
233
  <h3>Tile 11</h3>
233
234
 
234
-
235
235
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
236
236
 
237
237
 
@@ -252,7 +252,7 @@ exports[`Carousel 1`] = `
252
252
 
253
253
  exports[`Counters 1`] = `
254
254
  "
255
- <mx-carousel class="mx-carousel mx-vertical-flow" role="group">
255
+ <mx-carousel class="mx-carousel" role="group">
256
256
  <div class="mx-carousel__buttons" data-buttons="">
257
257
  <button class="mx-carousel__prev mx-button mx-button--icon-only" type="button" disabled="">
258
258
  <span class="sr-only">previous</span>
@@ -263,15 +263,15 @@ exports[`Counters 1`] = `
263
263
  <span class="mx-icon mx-icon--chevron-right"></span>
264
264
  </button>
265
265
  </div>
266
- <ul class="mx-carousel__scrollable overflowing">
266
+ <ul class="mx-carousel__scrollable overflowing" tabindex="0">
267
267
  <li>
268
268
  <div class="mx-container">
269
269
  <article class="mx-card mx-card--block mx-background--box">
270
270
  <div class="mx-card__content mx-vertical-flow-flex">
271
+
271
272
 
272
273
  <h3>Tile 1</h3>
273
274
 
274
-
275
275
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
276
276
 
277
277
 
@@ -289,10 +289,10 @@ exports[`Counters 1`] = `
289
289
  <div class="mx-container">
290
290
  <article class="mx-card mx-card--block mx-background--box">
291
291
  <div class="mx-card__content mx-vertical-flow-flex">
292
+
292
293
 
293
294
  <h3>Tile 2</h3>
294
295
 
295
-
296
296
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
297
297
 
298
298
 
@@ -310,10 +310,10 @@ exports[`Counters 1`] = `
310
310
  <div class="mx-container">
311
311
  <article class="mx-card mx-card--block mx-background--box">
312
312
  <div class="mx-card__content mx-vertical-flow-flex">
313
+
313
314
 
314
315
  <h3>Tile 3</h3>
315
316
 
316
-
317
317
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
318
318
 
319
319
 
@@ -331,10 +331,10 @@ exports[`Counters 1`] = `
331
331
  <div class="mx-container">
332
332
  <article class="mx-card mx-card--block mx-background--box">
333
333
  <div class="mx-card__content mx-vertical-flow-flex">
334
+
334
335
 
335
336
  <h3>Tile 4</h3>
336
337
 
337
-
338
338
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
339
339
 
340
340
 
@@ -352,10 +352,10 @@ exports[`Counters 1`] = `
352
352
  <div class="mx-container">
353
353
  <article class="mx-card mx-card--block mx-background--box">
354
354
  <div class="mx-card__content mx-vertical-flow-flex">
355
+
355
356
 
356
357
  <h3>Tile 5</h3>
357
358
 
358
-
359
359
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image but may have longer text and trigger height changes..</p></div>
360
360
 
361
361
 
@@ -373,10 +373,10 @@ exports[`Counters 1`] = `
373
373
  <div class="mx-container">
374
374
  <article class="mx-card mx-card--block mx-background--box">
375
375
  <div class="mx-card__content mx-vertical-flow-flex">
376
+
376
377
 
377
378
  <h3>Tile 6</h3>
378
379
 
379
-
380
380
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
381
381
 
382
382
 
@@ -394,10 +394,10 @@ exports[`Counters 1`] = `
394
394
  <div class="mx-container">
395
395
  <article class="mx-card mx-card--block mx-background--box">
396
396
  <div class="mx-card__content mx-vertical-flow-flex">
397
+
397
398
 
398
399
  <h3>Tile 7</h3>
399
400
 
400
-
401
401
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
402
402
 
403
403
 
@@ -415,10 +415,10 @@ exports[`Counters 1`] = `
415
415
  <div class="mx-container">
416
416
  <article class="mx-card mx-card--block mx-background--box">
417
417
  <div class="mx-card__content mx-vertical-flow-flex">
418
+
418
419
 
419
420
  <h3>Tile 8</h3>
420
421
 
421
-
422
422
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
423
423
 
424
424
 
@@ -436,10 +436,10 @@ exports[`Counters 1`] = `
436
436
  <div class="mx-container">
437
437
  <article class="mx-card mx-card--block mx-background--box">
438
438
  <div class="mx-card__content mx-vertical-flow-flex">
439
+
439
440
 
440
441
  <h3>Tile 9</h3>
441
442
 
442
-
443
443
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
444
444
 
445
445
 
@@ -457,10 +457,10 @@ exports[`Counters 1`] = `
457
457
  <div class="mx-container">
458
458
  <article class="mx-card mx-card--block mx-background--box">
459
459
  <div class="mx-card__content mx-vertical-flow-flex">
460
+
460
461
 
461
462
  <h3>Tile 10</h3>
462
463
 
463
-
464
464
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
465
465
 
466
466
 
@@ -478,10 +478,10 @@ exports[`Counters 1`] = `
478
478
  <div class="mx-container">
479
479
  <article class="mx-card mx-card--block mx-background--box">
480
480
  <div class="mx-card__content mx-vertical-flow-flex">
481
+
481
482
 
482
483
  <h3>Tile 11</h3>
483
484
 
484
-
485
485
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
486
486
 
487
487
 
@@ -503,7 +503,7 @@ exports[`Counters 1`] = `
503
503
 
504
504
  exports[`Loop 1`] = `
505
505
  "
506
- <mx-carousel class="mx-carousel mx-vertical-flow" role="group" loop="">
506
+ <mx-carousel class="mx-carousel" role="group" loop="">
507
507
  <div class="mx-carousel__buttons" data-buttons="">
508
508
  <button class="mx-carousel__prev mx-button mx-button--icon-only" type="button" disabled="">
509
509
  <span class="sr-only">previous</span>
@@ -514,15 +514,15 @@ exports[`Loop 1`] = `
514
514
  <span class="mx-icon mx-icon--chevron-right"></span>
515
515
  </button>
516
516
  </div>
517
- <ul class="mx-carousel__scrollable overflowing">
517
+ <ul class="mx-carousel__scrollable overflowing" tabindex="0">
518
518
  <li>
519
519
  <div class="mx-container">
520
520
  <article class="mx-card mx-card--block mx-background--box">
521
521
  <div class="mx-card__content mx-vertical-flow-flex">
522
+
522
523
 
523
524
  <h3>Tile 1</h3>
524
525
 
525
-
526
526
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
527
527
 
528
528
 
@@ -540,10 +540,10 @@ exports[`Loop 1`] = `
540
540
  <div class="mx-container">
541
541
  <article class="mx-card mx-card--block mx-background--box">
542
542
  <div class="mx-card__content mx-vertical-flow-flex">
543
+
543
544
 
544
545
  <h3>Tile 2</h3>
545
546
 
546
-
547
547
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
548
548
 
549
549
 
@@ -561,10 +561,10 @@ exports[`Loop 1`] = `
561
561
  <div class="mx-container">
562
562
  <article class="mx-card mx-card--block mx-background--box">
563
563
  <div class="mx-card__content mx-vertical-flow-flex">
564
+
564
565
 
565
566
  <h3>Tile 3</h3>
566
567
 
567
-
568
568
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
569
569
 
570
570
 
@@ -582,10 +582,10 @@ exports[`Loop 1`] = `
582
582
  <div class="mx-container">
583
583
  <article class="mx-card mx-card--block mx-background--box">
584
584
  <div class="mx-card__content mx-vertical-flow-flex">
585
+
585
586
 
586
587
  <h3>Tile 4</h3>
587
588
 
588
-
589
589
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
590
590
 
591
591
 
@@ -603,10 +603,10 @@ exports[`Loop 1`] = `
603
603
  <div class="mx-container">
604
604
  <article class="mx-card mx-card--block mx-background--box">
605
605
  <div class="mx-card__content mx-vertical-flow-flex">
606
+
606
607
 
607
608
  <h3>Tile 5</h3>
608
609
 
609
-
610
610
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image but may have longer text and trigger height changes..</p></div>
611
611
 
612
612
 
@@ -624,10 +624,10 @@ exports[`Loop 1`] = `
624
624
  <div class="mx-container">
625
625
  <article class="mx-card mx-card--block mx-background--box">
626
626
  <div class="mx-card__content mx-vertical-flow-flex">
627
+
627
628
 
628
629
  <h3>Tile 6</h3>
629
630
 
630
-
631
631
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
632
632
 
633
633
 
@@ -645,10 +645,10 @@ exports[`Loop 1`] = `
645
645
  <div class="mx-container">
646
646
  <article class="mx-card mx-card--block mx-background--box">
647
647
  <div class="mx-card__content mx-vertical-flow-flex">
648
+
648
649
 
649
650
  <h3>Tile 7</h3>
650
651
 
651
-
652
652
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
653
653
 
654
654
 
@@ -666,10 +666,10 @@ exports[`Loop 1`] = `
666
666
  <div class="mx-container">
667
667
  <article class="mx-card mx-card--block mx-background--box">
668
668
  <div class="mx-card__content mx-vertical-flow-flex">
669
+
669
670
 
670
671
  <h3>Tile 8</h3>
671
672
 
672
-
673
673
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
674
674
 
675
675
 
@@ -687,10 +687,10 @@ exports[`Loop 1`] = `
687
687
  <div class="mx-container">
688
688
  <article class="mx-card mx-card--block mx-background--box">
689
689
  <div class="mx-card__content mx-vertical-flow-flex">
690
+
690
691
 
691
692
  <h3>Tile 9</h3>
692
693
 
693
-
694
694
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
695
695
 
696
696
 
@@ -708,10 +708,10 @@ exports[`Loop 1`] = `
708
708
  <div class="mx-container">
709
709
  <article class="mx-card mx-card--block mx-background--box">
710
710
  <div class="mx-card__content mx-vertical-flow-flex">
711
+
711
712
 
712
713
  <h3>Tile 10</h3>
713
714
 
714
-
715
715
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
716
716
 
717
717
 
@@ -729,10 +729,10 @@ exports[`Loop 1`] = `
729
729
  <div class="mx-container">
730
730
  <article class="mx-card mx-card--block mx-background--box">
731
731
  <div class="mx-card__content mx-vertical-flow-flex">
732
+
732
733
 
733
734
  <h3>Tile 11</h3>
734
735
 
735
-
736
736
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
737
737
 
738
738
 
@@ -753,7 +753,7 @@ exports[`Loop 1`] = `
753
753
 
754
754
  exports[`Paginated 1`] = `
755
755
  "
756
- <mx-carousel class="mx-carousel mx-vertical-flow" role="group">
756
+ <mx-carousel class="mx-carousel" role="group">
757
757
  <div class="mx-carousel__buttons" data-buttons="">
758
758
  <button class="mx-carousel__prev mx-button mx-button--icon-only" type="button" disabled="">
759
759
  <span class="sr-only">previous</span>
@@ -764,15 +764,15 @@ exports[`Paginated 1`] = `
764
764
  <span class="mx-icon mx-icon--chevron-right"></span>
765
765
  </button>
766
766
  </div>
767
- <ul class="mx-carousel__scrollable overflowing">
767
+ <ul class="mx-carousel__scrollable overflowing" tabindex="0">
768
768
  <li>
769
769
  <div class="mx-container">
770
770
  <article class="mx-card mx-card--block mx-background--box">
771
771
  <div class="mx-card__content mx-vertical-flow-flex">
772
+
772
773
 
773
774
  <h3>Tile 1</h3>
774
775
 
775
-
776
776
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
777
777
 
778
778
 
@@ -790,10 +790,10 @@ exports[`Paginated 1`] = `
790
790
  <div class="mx-container">
791
791
  <article class="mx-card mx-card--block mx-background--box">
792
792
  <div class="mx-card__content mx-vertical-flow-flex">
793
+
793
794
 
794
795
  <h3>Tile 2</h3>
795
796
 
796
-
797
797
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
798
798
 
799
799
 
@@ -811,10 +811,10 @@ exports[`Paginated 1`] = `
811
811
  <div class="mx-container">
812
812
  <article class="mx-card mx-card--block mx-background--box">
813
813
  <div class="mx-card__content mx-vertical-flow-flex">
814
+
814
815
 
815
816
  <h3>Tile 3</h3>
816
817
 
817
-
818
818
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
819
819
 
820
820
 
@@ -832,10 +832,10 @@ exports[`Paginated 1`] = `
832
832
  <div class="mx-container">
833
833
  <article class="mx-card mx-card--block mx-background--box">
834
834
  <div class="mx-card__content mx-vertical-flow-flex">
835
+
835
836
 
836
837
  <h3>Tile 4</h3>
837
838
 
838
-
839
839
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
840
840
 
841
841
 
@@ -853,10 +853,10 @@ exports[`Paginated 1`] = `
853
853
  <div class="mx-container">
854
854
  <article class="mx-card mx-card--block mx-background--box">
855
855
  <div class="mx-card__content mx-vertical-flow-flex">
856
+
856
857
 
857
858
  <h3>Tile 5</h3>
858
859
 
859
-
860
860
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image but may have longer text and trigger height changes..</p></div>
861
861
 
862
862
 
@@ -874,10 +874,10 @@ exports[`Paginated 1`] = `
874
874
  <div class="mx-container">
875
875
  <article class="mx-card mx-card--block mx-background--box">
876
876
  <div class="mx-card__content mx-vertical-flow-flex">
877
+
877
878
 
878
879
  <h3>Tile 6</h3>
879
880
 
880
-
881
881
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
882
882
 
883
883
 
@@ -895,10 +895,10 @@ exports[`Paginated 1`] = `
895
895
  <div class="mx-container">
896
896
  <article class="mx-card mx-card--block mx-background--box">
897
897
  <div class="mx-card__content mx-vertical-flow-flex">
898
+
898
899
 
899
900
  <h3>Tile 7</h3>
900
901
 
901
-
902
902
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
903
903
 
904
904
 
@@ -916,10 +916,10 @@ exports[`Paginated 1`] = `
916
916
  <div class="mx-container">
917
917
  <article class="mx-card mx-card--block mx-background--box">
918
918
  <div class="mx-card__content mx-vertical-flow-flex">
919
+
919
920
 
920
921
  <h3>Tile 8</h3>
921
922
 
922
-
923
923
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
924
924
 
925
925
 
@@ -937,10 +937,10 @@ exports[`Paginated 1`] = `
937
937
  <div class="mx-container">
938
938
  <article class="mx-card mx-card--block mx-background--box">
939
939
  <div class="mx-card__content mx-vertical-flow-flex">
940
+
940
941
 
941
942
  <h3>Tile 9</h3>
942
943
 
943
-
944
944
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
945
945
 
946
946
 
@@ -958,10 +958,10 @@ exports[`Paginated 1`] = `
958
958
  <div class="mx-container">
959
959
  <article class="mx-card mx-card--block mx-background--box">
960
960
  <div class="mx-card__content mx-vertical-flow-flex">
961
+
961
962
 
962
963
  <h3>Tile 10</h3>
963
964
 
964
-
965
965
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
966
966
 
967
967
 
@@ -979,10 +979,10 @@ exports[`Paginated 1`] = `
979
979
  <div class="mx-container">
980
980
  <article class="mx-card mx-card--block mx-background--box">
981
981
  <div class="mx-card__content mx-vertical-flow-flex">
982
+
982
983
 
983
984
  <h3>Tile 11</h3>
984
985
 
985
-
986
986
  <div class="mx-text--lede mx-vertical-flow-flex"><p>Tiles are just block cards without an image.</p></div>
987
987
 
988
988