@kaizen/components 0.0.0-canary-package-bundler-v2-20241113071536 → 0.0.0-canary-link-button-wip-canary-20241121010628

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 (93) hide show
  1. package/codemods/README.md +16 -1
  2. package/codemods/upgradeIconV1/getNewIconPropsFromOldIconName.ts +9 -9
  3. package/dist/cjs/EmptyState/EmptyState.cjs +15 -17
  4. package/dist/cjs/EmptyState/EmptyState.module.css.cjs +20 -0
  5. package/dist/cjs/GuidanceBlock/GuidanceBlock.cjs +1 -1
  6. package/dist/cjs/GuidanceBlock/GuidanceBlock.module.css.cjs +28 -0
  7. package/dist/cjs/__actions__/Button/v3/Button.cjs +43 -8
  8. package/dist/cjs/__actions__/Button/v3/Button.module.css.cjs +21 -0
  9. package/dist/cjs/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.cjs +37 -0
  10. package/dist/cjs/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.module.css.cjs +9 -0
  11. package/dist/cjs/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.cjs +35 -0
  12. package/dist/cjs/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.module.css.cjs +8 -0
  13. package/dist/cjs/__overlays__/Tooltip/v3/Tooltip.cjs +2 -2
  14. package/dist/esm/Calendar/CalendarPopover/CalendarPopover.mjs +1 -1
  15. package/dist/esm/EmptyState/EmptyState.mjs +16 -18
  16. package/dist/esm/EmptyState/EmptyState.module.css.mjs +18 -0
  17. package/dist/esm/Filter/FilterMultiSelect/subcomponents/ListBox/ListBox.mjs +1 -1
  18. package/dist/esm/GuidanceBlock/GuidanceBlock.mjs +1 -1
  19. package/dist/esm/GuidanceBlock/GuidanceBlock.module.css.mjs +26 -0
  20. package/dist/esm/MultiSelect/subcomponents/Popover/Popover.mjs +1 -1
  21. package/dist/esm/RichTextEditor/RichTextEditor/RichTextEditor.mjs +1 -1
  22. package/dist/esm/RichTextEditor/RichTextEditor/schema.mjs +1 -1
  23. package/dist/esm/RichTextEditor/utils/schema/nodes.mjs +1 -1
  24. package/dist/esm/TimeField/TimeField.mjs +1 -1
  25. package/dist/esm/__actions__/Button/v3/Button.mjs +44 -9
  26. package/dist/esm/__actions__/Button/v3/Button.module.css.mjs +19 -0
  27. package/dist/esm/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.mjs +28 -0
  28. package/dist/esm/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.module.css.mjs +7 -0
  29. package/dist/esm/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.mjs +26 -0
  30. package/dist/esm/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.module.css.mjs +6 -0
  31. package/dist/esm/__overlays__/Tooltip/v1/Tooltip.mjs +1 -1
  32. package/dist/esm/__overlays__/Tooltip/v3/Tooltip.mjs +1 -1
  33. package/dist/styles.css +547 -463
  34. package/dist/types/EmptyState/EmptyState.d.ts +2 -1
  35. package/dist/types/__actions__/Button/v3/Button.d.ts +17 -4
  36. package/dist/types/__actions__/Button/v3/index.d.ts +1 -0
  37. package/dist/types/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.d.ts +11 -0
  38. package/dist/types/__actions__/Button/v3/subcomponents/ButtonContent/index.d.ts +1 -0
  39. package/dist/types/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.d.ts +5 -0
  40. package/dist/types/__actions__/Button/v3/subcomponents/PendingContent/index.d.ts +1 -0
  41. package/dist/types/__actions__/Button/v3/subcomponents/index.d.ts +2 -0
  42. package/dist/types/__actions__/Button/v3/types.d.ts +21 -0
  43. package/dist/types/__actions__/LinkButton/index.d.ts +1 -0
  44. package/dist/types/__actions__/LinkButton/v3/LinkButton.d.ts +11 -0
  45. package/dist/types/__actions__/LinkButton/v3/index.d.ts +1 -0
  46. package/package.json +8 -8
  47. package/src/EmptyState/EmptyState.module.css +114 -0
  48. package/src/EmptyState/EmptyState.tsx +18 -20
  49. package/src/EmptyState/_docs/EmptyState.stickersheet.stories.tsx +55 -39
  50. package/src/GuidanceBlock/{GuidanceBlock.module.scss → GuidanceBlock.module.css} +60 -114
  51. package/src/GuidanceBlock/GuidanceBlock.tsx +1 -1
  52. package/src/__actions__/Button/v3/Button.module.css +235 -0
  53. package/src/__actions__/Button/v3/Button.tsx +95 -29
  54. package/src/__actions__/Button/v3/_docs/Button--api-specification.mdx +151 -0
  55. package/src/__actions__/Button/v3/_docs/Button--usage-guidelines.mdx +30 -0
  56. package/src/__actions__/Button/v3/_docs/Button.docs.stories.tsx +112 -50
  57. package/src/__actions__/Button/v3/_docs/Button.spec.stories.tsx +80 -120
  58. package/src/__actions__/Button/v3/_docs/Button.stickersheet.stories.tsx +183 -81
  59. package/src/__actions__/Button/v3/index.ts +1 -0
  60. package/src/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.module.css +19 -0
  61. package/src/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.tsx +40 -0
  62. package/src/__actions__/Button/v3/subcomponents/ButtonContent/index.ts +1 -0
  63. package/src/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.module.css +16 -0
  64. package/src/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.tsx +28 -0
  65. package/src/__actions__/Button/v3/subcomponents/PendingContent/index.ts +1 -0
  66. package/src/__actions__/Button/v3/subcomponents/index.ts +2 -0
  67. package/src/__actions__/Button/v3/types.ts +25 -0
  68. package/src/__actions__/LinkButton/index.ts +1 -0
  69. package/src/__actions__/LinkButton/v3/LinkButton.module.css +4 -0
  70. package/src/__actions__/LinkButton/v3/LinkButton.tsx +71 -0
  71. package/src/__actions__/LinkButton/v3/_docs/LinkButton--api-specification.mdx +200 -0
  72. package/src/__actions__/LinkButton/v3/_docs/LinkButton.doc.stories.tsx +131 -0
  73. package/src/__actions__/LinkButton/v3/_docs/LinkButton.spec.stories.tsx +100 -0
  74. package/src/__actions__/LinkButton/v3/index.ts +1 -0
  75. package/src/__actions__/Menu/v3/_docs/Menu.docs.stories.tsx +54 -18
  76. package/src/__actions__/Menu/v3/_docs/Menu.spec.stories.tsx +30 -10
  77. package/src/__actions__/Menu/v3/_docs/Menu.stories.tsx +12 -4
  78. package/src/__future__/Icon/_docs/Icon.docs.stories.tsx +7 -7
  79. package/src/__overlays__/Tooltip/v3/Tooltip.tsx +1 -1
  80. package/src/__overlays__/Tooltip/v3/_docs/Tooltip.spec.stories.tsx +2 -0
  81. package/dist/cjs/EmptyState/EmptyState.module.scss.cjs +0 -23
  82. package/dist/cjs/GuidanceBlock/GuidanceBlock.module.scss.cjs +0 -33
  83. package/dist/cjs/__actions__/Button/v3/Button.module.scss.cjs +0 -9
  84. package/dist/esm/EmptyState/EmptyState.module.scss.mjs +0 -21
  85. package/dist/esm/GuidanceBlock/GuidanceBlock.module.scss.mjs +0 -31
  86. package/dist/esm/__actions__/Button/v3/Button.module.scss.mjs +0 -7
  87. package/src/EmptyState/EmptyState.module.scss +0 -177
  88. package/src/EmptyState/EmptyState.spec.tsx +0 -48
  89. package/src/EmptyState/_mixins.scss +0 -44
  90. package/src/__actions__/Button/v3/Button.module.scss +0 -104
  91. package/src/__actions__/Button/v3/_docs/ApiSpecification.mdx +0 -173
  92. package/src/__actions__/Button/v3/_docs/Button.mdx +0 -41
  93. package/src/__actions__/Button/v3/_docs/Button.stories.tsx +0 -98
package/dist/styles.css CHANGED
@@ -72,93 +72,306 @@
72
72
  opacity: 0.3;
73
73
  }
74
74
 
75
- .Button-module_button__QOSYH {
76
- --button-min-height-width: var(--spacing-48);
77
- --button-padding-x: calc(
78
- var(--spacing-12) - var(--border-solid-border-width)
79
- );
80
- --button-padding-y: calc(
81
- var(--spacing-8) - var(--border-solid-border-width)
82
- );
83
- --button-icon-size: var(--spacing-24);
75
+ .Button-module_button__vlUCI {
76
+ /* RESET */
84
77
  appearance: none;
85
78
  background: transparent;
86
- color: inherit;
87
79
  font: inherit;
88
80
  margin: 0;
89
- border: none;
90
- border: var(--border-solid-border-width) var(--border-solid-border-style);
81
+ outline: none;
82
+ -webkit-font-smoothing: antialiased;
83
+ -moz-osx-font-smoothing: grayscale;
84
+
85
+ --button-min-x-y: var(--spacing-40);
86
+ --button-border-width: var(--border-solid-border-width);
87
+ --button-padding-y: calc(var(--spacing-8) - var(--button-border-width));
88
+ --button-padding-x: calc(var(--spacing-16) - var(--button-border-width));
89
+
90
+ background-color: var(--button-bg-color, var(--color-blue-500));
91
+ border: var(--button-border-width) solid;
91
92
  border-radius: var(--border-solid-border-radius);
93
+ border-color: var(--button-border-color, var(--color-blue-500));
92
94
  box-sizing: border-box;
95
+ color: var(--button-text-color, var(--color-white));
93
96
  display: inline-flex;
94
97
  align-items: center;
95
98
  justify-content: center;
96
- text-align: left;
97
- gap: var(--spacing-8);
98
- font-family: var(--typography-button-primary-font-family);
99
- font-weight: var(--typography-button-primary-font-weight);
100
- font-size: var(--typography-button-primary-font-size);
101
- line-height: var(--typography-button-primary-line-height);
102
- min-height: var(--button-min-height-width);
103
- min-width: var(--button-min-height-width);
104
- outline: none;
99
+ text-align: start;
100
+ font-family: var(
101
+ --button-font-family,
102
+ var(--typography-paragraph-body-font-family)
103
+ );
104
+ font-weight: var(--button-font-weight, 500);
105
+ font-size: var(--button-font-size, 1rem);
106
+ line-height: var(--button-line-height, 1.5rem);
107
+ min-height: var(--button-min-x-y);
108
+ min-width: var(--button-min-x-y);
105
109
  position: relative;
106
110
  padding: var(--button-padding-y) var(--button-padding-x);
107
- -webkit-font-smoothing: antialiased;
108
- -moz-osx-font-smoothing: grayscale;
111
+
112
+ &[data-hovered] {
113
+ --button-bg-color: var(--color-blue-600);
114
+ --button-border-color: var(--color-blue-600);
115
+ }
116
+
117
+ &[data-pressed] {
118
+ --button-bg-color: var(--color-blue-700);
119
+ --button-border-color: var(--color-blue-700);
120
+ }
121
+
122
+ &[data-pending] {
123
+ --button-bg-color: var(--color-blue-700);
124
+ --button-border-color: var(--color-blue-700);
125
+ }
126
+
127
+ &[data-focus-visible]::after {
128
+ content: "";
129
+ position: absolute;
130
+ background: transparent;
131
+ border-color: var(--color-blue-500);
132
+ border-radius: var(--border-focus-ring-border-radius);
133
+ border-width: var(--border-focus-ring-border-width);
134
+ border-style: var(--border-focus-ring-border-style);
135
+ inset: calc(-1 * (var(--border-focus-ring-border-width) * 2) - 1px);
136
+ }
109
137
  }
110
- .Button-module_button__QOSYH[data-focus-visible]::after {
111
- content: "";
138
+
139
+ .Button-module_fullWidth__qIkG6 {
140
+ width: 100%;
141
+ }
142
+
143
+ .Button-module_small__FYPwk {
144
+ --button-font-size: 0.75rem;
145
+ --button-line-height: 1rem;
146
+ --button-min-x-y: var(--spacing-32);
147
+ --icon-size: 16;
148
+ }
149
+
150
+ .Button-module_medium__4LOhQ {
151
+ --button-padding-x: calc(var(--spacing-20) - var(--button-border-width));
152
+ --button-padding-y: calc(var(--spacing-8) - var(--button-border-width));
153
+ --button-min-x-y: var(--spacing-40);
154
+ --icon-size: 24;
155
+ }
156
+
157
+ .Button-module_large__MjtVH {
158
+ --button-padding-x: calc(var(--spacing-24) - var(--button-border-width));
159
+ --button-padding-y: calc(var(--spacing-12) - var(--button-border-width));
160
+ --button-min-x-y: var(--spacing-48);
161
+ --icon-size: 24;
162
+ }
163
+
164
+ .Button-module_smallIconButton__4gN-i,
165
+ .Button-module_mediumIconButton__CEXv- {
166
+ --button-padding-x: calc(var(--spacing-8) - var(--button-border-width));
167
+ --button-padding-y: calc(var(--spacing-8) - var(--button-border-width));
168
+ }
169
+
170
+ .Button-module_largeIconButton__Apt33 {
171
+ --button-padding-x: calc(var(--spacing-12) - var(--button-border-width));
172
+ --button-padding-y: calc(var(--spacing-12) - var(--button-border-width));
173
+ }
174
+
175
+ .Button-module_secondary__Mmev0 {
176
+ --button-bg-color: var(--color-white);
177
+ --button-border-color: var(--color-gray-500);
178
+ --button-text-color: var(--color-purple-800);
179
+
180
+ &[data-hovered] {
181
+ --button-bg-color: var(--color-gray-200);
182
+ --button-border-color: var(--color-gray-600);
183
+ }
184
+
185
+ &[data-pressed] {
186
+ --button-bg-color: var(--color-gray-300);
187
+ --button-border-color: var(--color-black);
188
+ }
189
+
190
+ &[data-pending] {
191
+ --button-bg-color: var(--color-gray-300);
192
+ --button-border-color: var(--color-black);
193
+ }
194
+ }
195
+
196
+ .Button-module_tertiary__MJjKC {
197
+ --button-bg-color: transparent;
198
+ --button-border-color: transparent;
199
+ --button-text-color: var(--color-purple-800);
200
+
201
+ &[data-hovered] {
202
+ --button-bg-color: var(--color-gray-200);
203
+ --button-border-color: var(--color-gray-200);
204
+ }
205
+
206
+ &[data-pressed] {
207
+ --button-bg-color: var(--color-gray-300);
208
+ --button-border-color: var(--color-gray-300);
209
+ }
210
+
211
+ &[data-pending] {
212
+ --button-bg-color: var(--color-gray-300);
213
+ --button-border-color: var(--color-gray-300);
214
+ }
215
+ }
216
+
217
+ .Button-module_primaryReversed__m4kze,
218
+ .Button-module_secondaryReversed__Q435c,
219
+ .Button-module_tertiaryReversed__Q-UqR {
220
+ &[data-focus-visible]::after {
221
+ border-color: var(--color-blue-300);
222
+ }
223
+ }
224
+
225
+ .Button-module_primaryReversed__m4kze {
226
+ --button-bg-color: var(--color-white);
227
+ --button-border-color: var(--color-white);
228
+ --button-text-color: var(--color-purple-800);
229
+
230
+ &[data-hovered] {
231
+ --button-bg-color: var(--color-white);
232
+ --button-border-color: var(--color-white);
233
+ }
234
+
235
+ &[data-pressed] {
236
+ --button-bg-color: var(--color-white);
237
+ --button-border-color: var(--color-white);
238
+ }
239
+
240
+ &[data-pending] {
241
+ --button-bg-color: var(--color-white);
242
+ --button-border-color: var(--color-white);
243
+ }
244
+ }
245
+
246
+ .Button-module_secondaryReversed__Q435c {
247
+ --button-bg-color: transparent;
248
+ --button-border-color: var(--color-white);
249
+ --button-text-color: var(--color-white);
250
+
251
+ &[data-hovered] {
252
+ --button-bg-color: rgba(var(--color-white-rgb), 0.2);
253
+ --button-border-color: var(--color-white);
254
+ }
255
+
256
+ &[data-pressed] {
257
+ --button-bg-color: rgba(var(--color-white-rgb), 0.1);
258
+ --button-border-color: var(--color-white);
259
+ }
260
+
261
+ &[data-pending] {
262
+ --button-bg-color: rgba(var(--color-white-rgb), 0.1);
263
+ --button-border-color: var(--color-white);
264
+ }
265
+ }
266
+
267
+ .Button-module_tertiaryReversed__Q-UqR {
268
+ --button-bg-color: transparent;
269
+ --button-border-color: transparent;
270
+ --button-text-color: var(--color-white);
271
+
272
+ &[data-hovered] {
273
+ --button-bg-color: rgba(var(--color-white-rgb), 0.2);
274
+ --button-border-color: transparent;
275
+ }
276
+
277
+ &[data-pressed] {
278
+ --button-bg-color: rgba(var(--color-white-rgb), 0.1);
279
+ --button-border-color: transparent;
280
+ }
281
+
282
+ &[data-pending] {
283
+ --button-bg-color: rgba(var(--color-white-rgb), 0.1);
284
+ --button-border-color: transparent;
285
+ }
286
+ }
287
+
288
+ .Button-module_isDisabled__m1eE- {
289
+ --button-bg-color: var(--color-gray-400);
290
+ --button-border-color: var(--color-gray-400);
291
+ --button-text-color: var(--color-white);
292
+
293
+ &[data-hovered] {
294
+ --button-bg-color: var(--color-gray-400);
295
+ --button-border-color: var(--color-gray-400);
296
+ }
297
+ }
298
+
299
+ .Button-module_hideContentWidth__-E94d {
112
300
  position: absolute;
113
- background: transparent;
114
- border-color: var(--color-blue-500);
115
- border-radius: var(--border-focus-ring-border-radius);
116
- border-width: var(--border-focus-ring-border-width);
117
- border-style: var(--border-focus-ring-border-style);
118
- inset: calc(-1 * (var(--border-focus-ring-border-width) * 2 + 1px));
301
+ left: 50%;
302
+ top: 50%;
303
+ transform: translate(-50%, -50%);
304
+ visibility: hidden;
119
305
  }
120
- .Button-module_button__QOSYH svg {
121
- height: var(--button-icon-size);
122
- width: var(--button-icon-size);
306
+
307
+ .Button-module_retainContentWidth__b4IEC {
308
+ visibility: hidden;
123
309
  }
124
310
 
125
- .Button-module_default__gSx3e {
126
- border-color: var(--color-gray-500);
127
- color: var(--color-purple-800);
311
+ .PendingContent-module_pendingContent__c4IFS {
312
+ display: inline-flex;
313
+ align-items: center;
314
+ gap: var(--button-pending-content-gap, var(--spacing-6));
128
315
  }
129
- .Button-module_default__gSx3e[data-hovered], .Button-module_default__gSx3e[data-focus-visible], .Button-module_default__gSx3e[data-pressed] {
130
- background-color: var(--color-gray-200);
131
- border-color: var(--color-purple-800);
316
+
317
+ .PendingContent-module_large__ypTxk {
318
+ --button-pending-content-gap: var(--spacing-8);
132
319
  }
133
- .Button-module_default__gSx3e[data-disabled] {
134
- opacity: 0.3;
320
+
321
+ .PendingContent-module_centerSpinner__EYn7L {
322
+ position: absolute;
323
+ left: 50%;
324
+ top: 50%;
325
+ transform: translate(-50%, -50%);
135
326
  }
136
- .Button-module_default__gSx3e.Button-module_reversed__DT-Id {
137
- background-color: transparent;
138
- border-color: rgba(var(--color-white-rgb), 0.65);
139
- color: var(--color-white);
327
+
328
+ .ButtonContent-module_buttonContent__v5mHZ {
329
+ display: inline-flex;
330
+ align-items: center;
331
+ gap: var(--button-icon-gap, var(--spacing-6));
140
332
  }
141
- .Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-hovered], .Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible] {
142
- background-color: rgba(var(--color-white-rgb), 0.1);
143
- border-color: var(--color-white);
333
+
334
+ .ButtonContent-module_large__mLOdb {
335
+ --button-icon-gap: var(--spacing-8);
144
336
  }
145
- .Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible]::after {
146
- border-color: var(--color-blue-300);
337
+
338
+ .ButtonContent-module_buttonLabel__T5XAq {
339
+ display: inline-flex;
340
+ align-items: center;
147
341
  }
148
- .Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-disabled]::after {
149
- border-color: var(--color-gray-400);
342
+
343
+ .ButtonContent-module_buttonIcon__qkAX- {
344
+ display: inline-flex;
345
+ align-items: center;
150
346
  }
151
347
 
152
- .Button-module_small__S-t5B {
153
- --button-min-height-width: 2.5rem;
154
- --button-padding-x: calc(
155
- var(--spacing-8) - var(--border-solid-border-width)
156
- );
157
- --button-padding-y: calc(
158
- var(--spacing-8) - var(--border-solid-border-width)
159
- );
160
- --button-icon-size: var(--spacing-16);
161
- gap: var(--spacing-8);
348
+ /** THIS IS AN AUTOGENERATED FILE **/
349
+ /** THIS IS AN AUTOGENERATED FILE **/
350
+ .OverlayArrow-module_overlayArrow__hoDyK {
351
+ display: flex;
352
+ padding: 8px;
353
+ }
354
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=top], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] {
355
+ padding: 0 8px;
356
+ }
357
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] {
358
+ padding: 8px 0;
359
+ }
360
+ .OverlayArrow-module_overlayArrow__hoDyK path {
361
+ fill: var(--color-purple-800, #2f2438);
362
+ box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
363
+ }
364
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] svg {
365
+ transform: rotate(90deg);
366
+ }
367
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] svg {
368
+ transform: rotate(180deg);
369
+ }
370
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left] svg {
371
+ transform: rotate(270deg);
372
+ }
373
+ .OverlayArrow-module_overlayArrow__hoDyK.OverlayArrow-module_reversed__-WGcR path {
374
+ fill: var(--color-white, #ffffff);
162
375
  }
163
376
  .Focusable-module_focusableWrapper__NfuIi {
164
377
  display: inline-flex;
@@ -219,34 +432,6 @@
219
432
  opacity: 1;
220
433
  }
221
434
  }
222
- /** THIS IS AN AUTOGENERATED FILE **/
223
- /** THIS IS AN AUTOGENERATED FILE **/
224
- .OverlayArrow-module_overlayArrow__hoDyK {
225
- display: flex;
226
- padding: 8px;
227
- }
228
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=top], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] {
229
- padding: 0 8px;
230
- }
231
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] {
232
- padding: 8px 0;
233
- }
234
- .OverlayArrow-module_overlayArrow__hoDyK path {
235
- fill: var(--color-purple-800, #2f2438);
236
- box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
237
- }
238
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] svg {
239
- transform: rotate(90deg);
240
- }
241
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] svg {
242
- transform: rotate(180deg);
243
- }
244
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left] svg {
245
- transform: rotate(270deg);
246
- }
247
- .OverlayArrow-module_overlayArrow__hoDyK.OverlayArrow-module_reversed__-WGcR path {
248
- fill: var(--color-white, #ffffff);
249
- }
250
435
  /*
251
436
  * This is taken from the Material Symbols CDN
252
437
  * font-weight & font-size removed as overridden in .icon
@@ -3879,183 +4064,121 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3879
4064
  white-space: nowrap;
3880
4065
  border: 0;
3881
4066
  }
3882
- /** THIS IS AN AUTOGENERATED FILE **/
3883
- /** THIS IS AN AUTOGENERATED FILE **/
3884
- /** THIS IS AN AUTOGENERATED FILE **/
3885
- /** THIS IS AN AUTOGENERATED FILE **/
3886
- .EmptyState-module_container__-B5OU {
4067
+ .EmptyState-module_container__0kOpV {
3887
4068
  --empty-state-border-width: var(--border-width-1);
3888
- display: flex;
3889
- justify-content: space-around;
4069
+ --empty-state-illustration-max-height: 366px;
4070
+ --empty-state-illustration-max-width: 420px;
4071
+ --empty-state-text-container-max-width: 426px;
4072
+
4073
+ container-type: inline-size;
3890
4074
  width: 100%;
3891
- padding: calc(2% - var(--empty-state-border-width)) calc(var(--spacing-24) - var(--empty-state-border-width));
3892
- color: var(--color-purple-800, #2f2438);
3893
4075
  border: var(--empty-state-border-width) solid var(--empty-state-border-color);
3894
4076
  border-radius: var(--border-solid-border-radius);
3895
4077
  background-color: var(--empty-state-background-color);
4078
+ color: var(--color-purple-800);
3896
4079
  }
3897
- @media (max-width: 815px) {
3898
- .EmptyState-module_container__-B5OU {
3899
- flex-direction: column;
3900
- align-items: center;
3901
- padding-block: calc(var(--spacing-24) - var(--empty-state-border-width));
3902
- }
3903
- }
3904
- .EmptyState-module_container__-B5OU.EmptyState-module_straightCorners__Aeou0 {
4080
+
4081
+ .EmptyState-module_straightCorners__BNh-9 {
3905
4082
  border-radius: 0;
3906
4083
  }
3907
- @media (min-width: 1416px) {
3908
- .EmptyState-module_container__-B5OU.EmptyState-module_sidebarAndContent__Eysay {
3909
- padding-top: var(--spacing-md, 1.5rem);
3910
- padding-bottom: var(--spacing-md, 1.5rem);
3911
- }
3912
- }
3913
- @media (min-width: 1128px) {
3914
- .EmptyState-module_container__-B5OU.EmptyState-module_contentOnly__RWVVX {
3915
- padding-top: var(--spacing-md, 1.5rem);
3916
- padding-bottom: var(--spacing-md, 1.5rem);
3917
- }
3918
- }
3919
4084
 
3920
4085
  /** @deprecated */
3921
- .EmptyState-module_positive__o3dXR {
4086
+ .EmptyState-module_positive__Z2a3J {
3922
4087
  --empty-state-border-color: var(--color-green-500);
3923
4088
  --empty-state-background-color: var(--color-green-100);
3924
4089
  }
3925
4090
 
3926
- .EmptyState-module_negative__e5ci6,
3927
- .EmptyState-module_action__OdsgJ {
4091
+ .EmptyState-module_negative__mSmjN,
4092
+ .EmptyState-module_action__l1243 {
3928
4093
  --empty-state-border-color: var(--color-red-500);
3929
4094
  --empty-state-background-color: var(--color-red-100);
3930
4095
  }
3931
4096
 
3932
- .EmptyState-module_neutral__L6fBb {
4097
+ .EmptyState-module_neutral__i9IVq {
3933
4098
  --empty-state-border-color: var(--color-purple-400);
3934
4099
  --empty-state-background-color: var(--color-purple-100);
3935
4100
  }
3936
4101
 
3937
4102
  /** end @deprecated */
3938
- .EmptyState-module_success__y7jKP {
4103
+ .EmptyState-module_success__w9nvN {
3939
4104
  --empty-state-border-color: var(--color-green-500);
3940
4105
  --empty-state-background-color: var(--color-green-100);
3941
4106
  }
3942
4107
 
3943
- .EmptyState-module_warning__-PrRp {
4108
+ .EmptyState-module_warning__vdEBx {
3944
4109
  --empty-state-border-color: var(--color-red-500);
3945
4110
  --empty-state-background-color: var(--color-red-100);
3946
4111
  }
3947
4112
 
3948
- .EmptyState-module_informative__x0GSr {
4113
+ .EmptyState-module_informative__aeHUD {
3949
4114
  --empty-state-border-color: var(--color-blue-400);
3950
4115
  --empty-state-background-color: var(--color-blue-100);
3951
4116
  }
3952
4117
 
3953
- .EmptyState-module_expert-advice__VVB8i {
4118
+ .EmptyState-module_expert-advice__05WOw {
3954
4119
  --empty-state-border-color: var(--color-purple-400);
3955
4120
  --empty-state-background-color: var(--color-purple-100);
3956
4121
  }
3957
4122
 
3958
- .EmptyState-module_illustrationSide__ZSjF3,
3959
- .EmptyState-module_textSide__tv54w {
3960
- display: inline-block;
4123
+ .EmptyState-module_content__dggps {
4124
+ justify-content: center;
4125
+ display: grid;
4126
+ grid-template-columns: minmax(auto, var(--empty-state-illustration-max-width)) minmax(
4127
+ auto,
4128
+ var(--empty-state-text-container-max-width)
4129
+ );
4130
+ grid-template-rows: minmax(auto, var(--empty-state-illustration-max-height)) auto;
4131
+ padding: var(--spacing-24);
4132
+ grid-column-gap: var(--spacing-32);
3961
4133
  }
3962
4134
 
3963
- .EmptyState-module_illustrationSide__ZSjF3 {
3964
- min-width: 224px;
3965
- flex-grow: 0;
3966
- flex-shrink: 1;
3967
- margin-bottom: var(--spacing-md, 1.5rem);
3968
- }
3969
- @media (max-width: 815px) {
3970
- .EmptyState-module_illustrationSide__ZSjF3 {
3971
- width: 224px;
3972
- }
3973
- }
3974
- @media (min-width: 816px) {
3975
- .EmptyState-module_illustrationSide__ZSjF3 {
3976
- display: flex;
3977
- flex-direction: column;
3978
- justify-content: center;
3979
- align-items: flex-end;
3980
- margin-bottom: 0;
3981
- min-width: 40%;
3982
- max-width: 50%;
3983
- flex-grow: 1;
3984
- box-sizing: border-box;
3985
- padding-inline-end: var(--spacing-md, 1.5rem);
3986
- }
3987
- }
3988
- @media (min-width: 1416px) {
3989
- .EmptyState-module_sidebarAndContent__Eysay .EmptyState-module_illustrationSide__ZSjF3 {
3990
- flex-shrink: 1;
3991
- flex-basis: auto;
3992
- }
3993
- }
3994
- @media (min-width: 1128px) {
3995
- .EmptyState-module_contentOnly__RWVVX .EmptyState-module_illustrationSide__ZSjF3 {
3996
- flex-shrink: 1;
3997
- flex-basis: auto;
3998
- }
4135
+ .EmptyState-module_illustrationContainer__2Ch-u {
4136
+ display: flex;
4137
+ align-items: center;
3999
4138
  }
4000
4139
 
4001
- .EmptyState-module_illustration__HyD2k,
4002
- .EmptyState-module_illustrationSide__ZSjF3 video {
4140
+ .EmptyState-module_illustration__QSUZA,
4141
+ .EmptyState-module_illustrationContainer__2Ch-u video {
4003
4142
  max-width: 100%;
4004
- max-height: 366px;
4143
+ max-height: var(--empty-state-illustration-max-height);
4144
+ height: 100%;
4005
4145
  width: auto;
4006
- min-height: 196px;
4007
- }
4008
- @media (max-width: 815px) {
4009
- .EmptyState-module_illustration__HyD2k,
4010
- .EmptyState-module_illustrationSide__ZSjF3 video {
4011
- max-height: 196px;
4012
- }
4013
4146
  }
4014
4147
 
4015
- .EmptyState-module_textSide__tv54w {
4148
+ .EmptyState-module_textContainer__jJ9NS {
4016
4149
  display: flex;
4017
- flex-grow: 1;
4018
- flex-shrink: 1;
4019
- align-items: center;
4020
- -webkit-font-smoothing: antialiased;
4150
+ flex-direction: column;
4151
+ justify-content: center;
4152
+ gap: var(--spacing-24);
4021
4153
  }
4022
- @media (min-width: 816px) {
4023
- .EmptyState-module_textSide__tv54w {
4024
- flex-basis: 50%;
4025
- flex-grow: 0;
4154
+
4155
+ @container (width <=1024px) {
4156
+ .EmptyState-module_content__dggps {
4157
+ padding: var(--spacing-16);
4026
4158
  }
4027
4159
  }
4028
4160
 
4029
- .EmptyState-module_textSideInner__Yynhi {
4030
- flex-grow: 0;
4031
- height: auto;
4032
- margin: 0 var(--spacing-sm, 0.75rem);
4033
- }
4034
- @media (max-width: 815px) {
4035
- .EmptyState-module_textSideInner__Yynhi {
4036
- margin-bottom: 0;
4161
+ @container (width <=560px) {
4162
+ .EmptyState-module_content__dggps {
4163
+ grid-template-columns: 1fr;
4164
+ grid-template-rows: auto;
4165
+ grid-column-gap: unset;
4166
+ grid-row-gap: var(--spacing-24);
4167
+ padding: var(--spacing-24);
4037
4168
  }
4038
- }
4039
- @media (min-width: 816px) {
4040
- .EmptyState-module_textSideInner__Yynhi {
4041
- max-width: 426px;
4169
+
4170
+ .EmptyState-module_illustrationContainer__2Ch-u {
4171
+ --empty-state-illustration-max-height: 210px;
4172
+
4173
+ justify-content: center;
4042
4174
  }
4043
- }
4044
4175
 
4045
- .EmptyState-module_heading__y-yvC {
4046
- margin-bottom: var(--spacing-md, 1.5rem);
4047
- }
4048
- @media (max-width: 375px) {
4049
- .EmptyState-module_heading__y-yvC {
4176
+ .EmptyState-module_heading__pEPi3 {
4050
4177
  font-size: 1.25rem;
4051
4178
  line-height: 1.5rem;
4052
- font-weight: 700;
4053
4179
  }
4054
4180
  }
4055
4181
 
4056
- .EmptyState-module_description__fsJOc {
4057
- margin-bottom: var(--spacing-md, 1.5rem);
4058
- }
4059
4182
  /** THIS IS AN AUTOGENERATED FILE **/
4060
4183
  .ErrorPage-module_paragraphPadding__-L-qy {
4061
4184
  padding: var(--spacing-24, 1.5rem) 0;
@@ -4698,368 +4821,329 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
4698
4821
  gap: var(--spacing-8);
4699
4822
  }
4700
4823
 
4701
- /** THIS IS AN AUTOGENERATED FILE **/
4702
- /** THIS IS AN AUTOGENERATED FILE **/
4703
- /** THIS IS AN AUTOGENERATED FILE **/
4704
- /** THIS IS AN AUTOGENERATED FILE **/
4705
- /** THIS IS AN AUTOGENERATED FILE **/
4706
- /** THIS IS AN AUTOGENERATED FILE **/
4707
- .GuidanceBlock-module_rightMargin__-iEFa {
4708
- margin-right: var(--spacing-8, 0.5rem);
4824
+ .GuidanceBlock-module_rightMargin__T6JO2 {
4825
+ margin-right: var(--spacing-8);
4709
4826
  }
4710
4827
 
4711
- .GuidanceBlock-module_noRightMargin__4Uy9N {
4828
+ .GuidanceBlock-module_noRightMargin__MczwN {
4712
4829
  margin-right: 0;
4713
4830
  }
4714
4831
 
4715
- .GuidanceBlock-module_banner__FxKcd.GuidanceBlock-module_noMaxWidth__UzHP1 {
4832
+ .GuidanceBlock-module_banner__7FT39.GuidanceBlock-module_noMaxWidth__UCCUk {
4716
4833
  max-width: inherit;
4717
4834
  }
4718
4835
 
4719
- .GuidanceBlock-module_banner__FxKcd {
4836
+ .GuidanceBlock-module_banner__7FT39 {
4720
4837
  --border-width: var(--border-width-1);
4838
+ --banner-padding: var(--spacing-lg);
4839
+
4721
4840
  display: flex;
4722
4841
  flex-direction: column;
4723
- gap: var(--spacing-sm, 0.75rem);
4842
+ gap: var(--spacing-12);
4724
4843
  min-width: 320px;
4725
- max-width: 1080px;
4844
+ max-width: var(--layout-breakpoints-large);
4726
4845
  border: var(--border-width) var(--border-solid-border-style);
4727
- border-radius: var(--border-solid-border-radius, 7px);
4728
- padding: calc(var(--spacing-lg, 2.25rem) - var(--border-width));
4729
- box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
4846
+ border-radius: var(--border-solid-border-radius);
4847
+ padding: calc(var(--banner-padding) - var(--border-width));
4848
+ box-shadow: var(--shadow-small-box-shadow);
4730
4849
  position: relative;
4731
4850
  top: -1px;
4732
- transition: opacity var(--animation-duration-slow, 400ms) ease, margin-top var(--animation-duration-fast, 300ms) var(--animation-duration-slow, 400ms) ease;
4733
- color: var(--color-purple-800, #2f2438);
4734
- }
4735
- @media (min-width: 1024px) {
4736
- .GuidanceBlock-module_banner__FxKcd {
4737
- min-height: calc(12rem - var(--spacing-lg, 2.25rem) * 2);
4851
+ transition:
4852
+ opacity var(--animation-duration-slow) ease,
4853
+ margin-top var(--animation-duration-fast) var(--animation-duration-slow)
4854
+ ease;
4855
+ color: var(--color-purple-800);
4856
+
4857
+ @media (width >= 1024px) {
4858
+ min-height: calc(12rem - calc(var(--banner-padding) * 2));
4738
4859
  flex-direction: row;
4739
- gap: var(--spacing-md, 1.5rem);
4860
+ gap: var(--spacing-24);
4740
4861
  width: auto;
4741
4862
  align-items: center;
4742
4863
  }
4743
- }
4744
- @media (max-width: 767px) {
4745
- .GuidanceBlock-module_banner__FxKcd {
4864
+
4865
+ @media (width <= 767px) {
4746
4866
  min-width: unset;
4747
4867
  }
4748
4868
  }
4749
4869
 
4750
- .GuidanceBlock-module_illustrationWrapper__AEljX {
4870
+ .GuidanceBlock-module_illustrationWrapper__tK4Xr {
4751
4871
  display: flex;
4752
- }
4753
- @media (min-width: 768px) and (max-width: 1023px) {
4754
- .GuidanceBlock-module_illustrationWrapper__AEljX {
4872
+
4873
+ @media (768px <= width <= 1023px) {
4755
4874
  text-align: center;
4756
4875
  justify-content: center;
4757
4876
  align-self: center;
4758
- padding: var(--spacing-sm, 0.75rem);
4877
+ padding: var(--spacing-12);
4759
4878
  }
4760
- }
4761
- @media (max-width: 767px) {
4762
- .GuidanceBlock-module_illustrationWrapper__AEljX {
4879
+
4880
+ @media (width <= 767px) {
4763
4881
  display: none;
4764
4882
  }
4765
4883
  }
4766
4884
 
4767
- .GuidanceBlock-module_illustration__sU1Vu {
4768
- width: 155px;
4769
- height: 155px;
4770
- }
4771
- .GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu {
4772
- display: flex;
4773
- justify-content: center;
4774
- max-width: 300px;
4775
- max-height: 300px;
4776
- width: 300px;
4777
- height: auto;
4778
- }
4779
- .GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu figure {
4780
- max-height: 100%;
4781
- max-width: 100%;
4782
- aspect-ratio: 4/3;
4783
- }
4784
- .GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu img {
4785
- height: 100%;
4786
- object-fit: contain;
4787
- object-position: center;
4885
+ .GuidanceBlock-module_illustration__LiDV3 {
4886
+ --illustration-size: 155px;
4887
+ --scene-illustration-size: 300px;
4888
+
4889
+ width: var(--illustration-size);
4890
+ height: var(--illustration-size);
4891
+
4892
+ /* This has been created to handle scene illustrations consistently until the tile component is created */
4893
+ .GuidanceBlock-module_hasSceneIllustration__eBOyt & {
4894
+ display: flex;
4895
+ justify-content: center;
4896
+ max-width: var(--scene-illustration-size);
4897
+ max-height: var(--scene-illustration-size);
4898
+ width: var(--scene-illustration-size);
4899
+ height: auto;
4900
+
4901
+ figure {
4902
+ max-height: 100%;
4903
+ max-width: 100%;
4904
+ aspect-ratio: 4/3;
4905
+ }
4906
+
4907
+ img {
4908
+ height: 100%;
4909
+ object-fit: contain;
4910
+ object-position: center;
4911
+ }
4912
+ }
4788
4913
  }
4789
4914
 
4790
- .GuidanceBlock-module_descriptionContainer__aywtY {
4915
+ .GuidanceBlock-module_descriptionContainer__w1-P- {
4791
4916
  flex: 1;
4792
4917
  text-align: center;
4793
4918
  align-self: center;
4794
4919
  max-width: 780px;
4795
- }
4796
- @media (min-width: 1024px) {
4797
- .GuidanceBlock-module_descriptionContainer__aywtY {
4798
- padding: 0 var(--spacing-sm, 0.75rem);
4920
+
4921
+ @media (width >= 1024px) {
4922
+ padding: 0 var(--spacing-12);
4799
4923
  text-align: left;
4800
4924
  }
4801
- }
4802
- @media (max-width: 767px) {
4803
- .GuidanceBlock-module_descriptionContainer__aywtY {
4804
- margin: var(--spacing-sm, 0.75rem);
4925
+
4926
+ @media (width <= 767px) {
4927
+ margin: var(--spacing-12);
4805
4928
  max-width: 100%;
4806
4929
  }
4807
- }
4808
- @media (min-width: 1024px) {
4809
- [dir=rtl] .GuidanceBlock-module_descriptionContainer__aywtY {
4810
- padding: 0 var(--spacing-sm, 0.75rem);
4811
- text-align: right;
4930
+
4931
+ [dir="rtl"] & {
4932
+ @media (width >= 1024px) {
4933
+ padding: 0 var(--spacing-12);
4934
+ text-align: right;
4935
+ }
4812
4936
  }
4813
4937
  }
4814
4938
 
4815
- .GuidanceBlock-module_descriptionAndActions__E5BcL {
4939
+ .GuidanceBlock-module_descriptionAndActions__aQhc9 {
4816
4940
  display: flex;
4817
4941
  flex: 1;
4818
4942
  align-items: center;
4819
4943
  justify-content: space-between;
4820
- gap: var(--spacing-md, 1.5rem);
4821
- }
4822
- @media (max-width: 1023px) {
4823
- .GuidanceBlock-module_descriptionAndActions__E5BcL {
4944
+ gap: var(--spacing-24);
4945
+
4946
+ @media (width <= 1023px) {
4824
4947
  flex-direction: column;
4825
4948
  width: 100%;
4826
4949
  align-items: unset;
4827
4950
  }
4828
4951
  }
4829
4952
 
4830
- .GuidanceBlock-module_buttonContainer__U2Hxn {
4953
+ .GuidanceBlock-module_buttonContainer__bcVmB {
4831
4954
  display: flex;
4832
4955
  flex: 1 0 auto;
4833
4956
  justify-content: center;
4834
4957
  flex-direction: row-reverse;
4835
- gap: var(--spacing-sm, 0.75rem);
4958
+ gap: var(--spacing-12);
4836
4959
  min-width: max-content;
4837
- }
4838
- @media (min-width: 768px) {
4839
- .GuidanceBlock-module_buttonContainer__U2Hxn {
4960
+
4961
+ @media (width >= 768px) {
4840
4962
  text-align: center;
4841
4963
  }
4842
- }
4843
- @media (max-width: 767px) {
4844
- .GuidanceBlock-module_buttonContainer__U2Hxn {
4964
+
4965
+ @media (width <= 767px) {
4845
4966
  flex-direction: column;
4846
4967
  width: 100%;
4847
- margin-top: var(--spacing-xs, 0.375rem);
4968
+ margin-top: var(--spacing-6);
4848
4969
  }
4849
- }
4850
- [dir=rtl] .GuidanceBlock-module_buttonContainer__U2Hxn svg {
4851
- transform: rotate(180deg);
4852
- }
4853
4970
 
4854
- .GuidanceBlock-module_hidden__CbgXn {
4855
- opacity: 0%;
4856
- margin-bottom: 0;
4971
+ [dir="rtl"] & svg {
4972
+ transform: rotate(180deg);
4973
+ }
4857
4974
  }
4858
4975
 
4859
- .GuidanceBlock-module_headingWrapper__zgVmA {
4860
- margin-bottom: var(--spacing-md, 1.5rem);
4976
+ .GuidanceBlock-module_hidden__mwvrs {
4977
+ opacity: 0;
4978
+ margin-bottom: 0;
4861
4979
  }
4862
4980
 
4863
- .GuidanceBlock-module_cancel__UaIA- {
4864
- appearance: none;
4865
- display: inline;
4866
- background: transparent;
4867
- color: inherit;
4868
- font: inherit;
4869
- margin: 0;
4870
- padding: 0;
4871
- border: none;
4872
- cursor: pointer;
4873
- position: absolute;
4874
- top: var(--spacing-sm, 0.75rem);
4875
- right: var(--spacing-sm, 0.75rem);
4876
- color: var(--color-purple-800, #2f2438);
4877
- }
4878
- .GuidanceBlock-module_cancel__UaIA- .GuidanceBlock-module_icon__y2xz8 {
4879
- opacity: 70%;
4880
- transition: var(--animation-duration-fast, 300ms) opacity;
4881
- }
4882
- .GuidanceBlock-module_cancel__UaIA-:disabled .GuidanceBlock-module_icon__y2xz8, .GuidanceBlock-module_cancel__UaIA-.GuidanceBlock-module_disabled__Uhgsr .GuidanceBlock-module_icon__y2xz8 {
4883
- opacity: 30%;
4884
- }
4885
- .GuidanceBlock-module_cancel__UaIA-:not(:disabled, .GuidanceBlock-module_disabled__Uhgsr):hover .GuidanceBlock-module_icon__y2xz8, .GuidanceBlock-module_cancel__UaIA-:not(:disabled, .GuidanceBlock-module_disabled__Uhgsr):focus .GuidanceBlock-module_icon__y2xz8, .GuidanceBlock-module_cancel__UaIA-:not(:disabled, .GuidanceBlock-module_disabled__Uhgsr).GuidanceBlock-module_hover__7V9x1 .GuidanceBlock-module_icon__y2xz8 {
4886
- opacity: 100%;
4887
- }
4888
- .GuidanceBlock-module_cancel__UaIA-:not(:disabled, .GuidanceBlock-module_disabled__Uhgsr):active .GuidanceBlock-module_icon__y2xz8, .GuidanceBlock-module_cancel__UaIA-:not(:disabled, .GuidanceBlock-module_disabled__Uhgsr).GuidanceBlock-module_active__YJaZt .GuidanceBlock-module_icon__y2xz8 {
4889
- opacity: 100%;
4981
+ .GuidanceBlock-module_headingWrapper__OfZB5 {
4982
+ margin-bottom: var(--spacing-24);
4890
4983
  }
4891
4984
 
4892
- .GuidanceBlock-module_default__Ffblg {
4985
+ .GuidanceBlock-module_default__7naG4 {
4893
4986
  border-color: var(--color-gray-500);
4894
4987
  background: var(--color-white);
4895
4988
  }
4896
4989
 
4897
- .GuidanceBlock-module_positive__yENlT {
4990
+ .GuidanceBlock-module_positive__iCp-1 {
4898
4991
  border-color: var(--color-green-500);
4899
- background: var(--color-green-100, #e8f8f4);
4992
+ background: var(--color-green-100);
4900
4993
  }
4901
4994
 
4902
- .GuidanceBlock-module_negative__E-Jvh,
4903
- .GuidanceBlock-module_assertive__6PZlM {
4995
+ .GuidanceBlock-module_negative__wWBlw,
4996
+ .GuidanceBlock-module_assertive__bNdnQ {
4904
4997
  border-color: var(--color-red-500);
4905
- background: var(--color-red-100, #fdeaee);
4998
+ background: var(--color-red-100);
4906
4999
  }
4907
5000
 
4908
- .GuidanceBlock-module_informative__ZUH4j {
5001
+ .GuidanceBlock-module_informative__KeJWO {
4909
5002
  border-color: var(--color-blue-400);
4910
- background: var(--color-blue-100, #e6f6ff);
5003
+ background: var(--color-blue-100);
4911
5004
  }
4912
5005
 
4913
- .GuidanceBlock-module_cautionary__sJ1CE {
5006
+ .GuidanceBlock-module_cautionary__5Vkw6 {
4914
5007
  border-color: var(--color-yellow-700);
4915
- background: var(--color-yellow-100, #fff9e4);
5008
+ background: var(--color-yellow-100);
4916
5009
  }
4917
5010
 
4918
- .GuidanceBlock-module_prominent__nn-r4 {
5011
+ .GuidanceBlock-module_prominent__rWTgt {
4919
5012
  border-color: var(--color-purple-400);
4920
- background: var(--color-purple-100, #f4edf8);
5013
+ background: var(--color-purple-100);
4921
5014
  }
4922
5015
 
4923
- .GuidanceBlock-module_inline__GwOWR,
4924
- .GuidanceBlock-module_stacked__rDupX {
5016
+ .GuidanceBlock-module_inline__B-Ubr,
5017
+ .GuidanceBlock-module_stacked__4dS71 {
4925
5018
  flex-flow: row wrap;
4926
5019
  align-items: unset;
4927
- gap: var(--spacing-md, 1.5rem);
5020
+ gap: var(--spacing-24);
4928
5021
  min-width: unset;
4929
- }
4930
- @media (max-width: 1023px) {
4931
- .GuidanceBlock-module_inline__GwOWR,
4932
- .GuidanceBlock-module_stacked__rDupX {
5022
+
5023
+ @media (width <= 1023px) {
4933
5024
  flex-direction: unset;
4934
5025
  }
4935
- }
4936
- .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,
4937
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX {
4938
- margin-right: var(--spacing-sm, 0.75rem);
4939
- }
4940
- [dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,
4941
- [dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX {
4942
- margin-left: var(--spacing-sm, 0.75rem);
4943
- margin-right: inherit;
4944
- }
4945
- @media (min-width: 768px) and (max-width: 1023px) {
4946
- .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,
4947
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX {
4948
- padding: 0;
5026
+
5027
+ .GuidanceBlock-module_illustrationWrapper__tK4Xr {
5028
+ margin-right: var(--spacing-12);
5029
+
5030
+ [dir="rtl"] & {
5031
+ margin-left: var(--spacing-12);
5032
+ margin-right: inherit;
5033
+ }
5034
+
5035
+ @media (768px <= width <= 1023px) {
5036
+ padding: 0;
5037
+ }
5038
+
5039
+ @media (width <= 767px) {
5040
+ display: flex;
5041
+ }
4949
5042
  }
4950
- }
4951
- @media (max-width: 767px) {
4952
- .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,
4953
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX {
4954
- display: flex;
5043
+
5044
+ .GuidanceBlock-module_descriptionAndActions__aQhc9 {
5045
+ margin: auto 0;
4955
5046
  }
4956
- }
4957
- .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionAndActions__E5BcL,
4958
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionAndActions__E5BcL {
4959
- margin: auto 0;
4960
- }
4961
- .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,
4962
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY {
4963
- text-align: left;
4964
- max-width: unset;
4965
- min-width: 320px;
4966
- }
4967
- @media (min-width: 1024px) {
4968
- .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,
4969
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY {
4970
- padding: 0;
5047
+
5048
+ .GuidanceBlock-module_descriptionContainer__w1-P- {
5049
+ text-align: left;
5050
+ max-width: unset;
5051
+ min-width: 320px;
5052
+
5053
+ @media (width >= 1024px) {
5054
+ padding: 0;
5055
+ }
5056
+
5057
+ @media (width <= 767px) {
5058
+ margin: 0;
5059
+ }
5060
+
5061
+ [dir="rtl"] & {
5062
+ text-align: right;
5063
+
5064
+ @media (width >= 1024px) {
5065
+ padding: 0;
5066
+ }
5067
+ }
4971
5068
  }
4972
- }
4973
- @media (max-width: 767px) {
4974
- .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,
4975
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY {
4976
- margin: 0;
5069
+
5070
+ .GuidanceBlock-module_buttonContainer__bcVmB {
5071
+ padding-left: var(--spacing-12);
5072
+ justify-content: flex-start;
5073
+ width: unset;
5074
+ min-width: unset;
5075
+
5076
+ @media (width <= 767px) {
5077
+ flex-direction: row-reverse;
5078
+ }
5079
+
5080
+ [dir="rtl"] & {
5081
+ padding-left: 0;
5082
+ padding-right: var(--spacing-12);
5083
+ }
5084
+
5085
+ > * {
5086
+ width: unset;
5087
+ }
4977
5088
  }
4978
- }
4979
- [dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,
4980
- [dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY {
4981
- text-align: right;
4982
- }
4983
- @media (min-width: 1024px) {
4984
- [dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,
4985
- [dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY {
4986
- padding: 0;
5089
+
5090
+ &.GuidanceBlock-module_hasSceneIllustration__eBOyt {
5091
+ justify-content: center;
4987
5092
  }
4988
- }
4989
- .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,
4990
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn {
4991
- padding-left: var(--spacing-sm, 0.75rem);
4992
- justify-content: flex-start;
4993
- width: unset;
4994
- min-width: unset;
4995
- }
4996
- @media (max-width: 767px) {
4997
- .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,
4998
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn {
4999
- flex-direction: row-reverse;
5093
+
5094
+ &.GuidanceBlock-module_centerContent__9Vlup {
5095
+ flex-direction: column;
5096
+
5097
+ &.GuidanceBlock-module_hasSceneIllustration__eBOyt .GuidanceBlock-module_illustration__LiDV3 {
5098
+ width: 100%;
5099
+ }
5100
+
5101
+ .GuidanceBlock-module_illustrationWrapper__tK4Xr {
5102
+ margin: 0 auto;
5103
+ align-self: center;
5104
+ }
5105
+
5106
+ .GuidanceBlock-module_descriptionContainer__w1-P- {
5107
+ text-align: center;
5108
+ min-width: unset;
5109
+
5110
+ [dir="rtl"] & {
5111
+ text-align: center;
5112
+ }
5113
+ }
5114
+
5115
+ .GuidanceBlock-module_buttonContainer__bcVmB {
5116
+ padding: 0;
5117
+ flex-direction: column;
5118
+ min-width: unset;
5119
+ justify-content: center;
5120
+ }
5121
+ }
5122
+
5123
+ &.GuidanceBlock-module_centerContent__9Vlup.GuidanceBlock-module_smallScreenTextAlignment__-UXo9 {
5124
+ .GuidanceBlock-module_descriptionContainer__w1-P- {
5125
+ text-align: left;
5126
+
5127
+ [dir="rtl"] & {
5128
+ text-align: right;
5129
+ }
5130
+ }
5000
5131
  }
5001
- }
5002
- [dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,
5003
- [dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn {
5004
- padding-left: 0;
5005
- padding-right: var(--spacing-sm, 0.75rem);
5006
- }
5007
- .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn > *,
5008
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn > * {
5009
- width: unset;
5010
- }
5011
- .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_hasSceneIllustration__tvFRD,
5012
- .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_hasSceneIllustration__tvFRD {
5013
- justify-content: center;
5014
- }
5015
- .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB,
5016
- .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB {
5017
- flex-direction: column;
5018
- }
5019
- .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu,
5020
- .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu {
5021
- width: 100%;
5022
- }
5023
- .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_illustrationWrapper__AEljX,
5024
- .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_illustrationWrapper__AEljX {
5025
- margin: 0 auto;
5026
- align-self: center;
5027
- }
5028
- .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY,
5029
- .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY {
5030
- text-align: center;
5031
- min-width: unset;
5032
- }
5033
- [dir=rtl] .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY,
5034
- [dir=rtl] .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY {
5035
- text-align: center;
5036
- }
5037
- .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_buttonContainer__U2Hxn,
5038
- .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_buttonContainer__U2Hxn {
5039
- padding: 0;
5040
- flex-direction: column;
5041
- min-width: unset;
5042
- justify-content: center;
5043
- }
5044
- .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY,
5045
- .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY {
5046
- text-align: left;
5047
- }
5048
- [dir=rtl] .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY,
5049
- [dir=rtl] .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY {
5050
- text-align: right;
5051
5132
  }
5052
5133
 
5053
5134
  /* stylelint-disable no-descending-specificity */
5054
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionAndActions__E5BcL {
5055
- flex-direction: column;
5056
- align-items: unset;
5057
- }
5058
- .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY {
5059
- align-self: flex-start;
5060
- }
5135
+ .GuidanceBlock-module_stacked__4dS71 {
5136
+ .GuidanceBlock-module_descriptionAndActions__aQhc9 {
5137
+ flex-direction: column;
5138
+ align-items: unset;
5139
+ }
5061
5140
 
5141
+ .GuidanceBlock-module_descriptionContainer__w1-P- {
5142
+ align-self: flex-start;
5143
+ }
5144
+ }
5062
5145
  /* stylelint-enable no-descending-specificity */
5146
+
5063
5147
  .SVG-module_icon__8J5Ev {
5064
5148
  width: 20px;
5065
5149
  height: 20px;