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

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 (102) 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/__actions__/LinkButton/v3/LinkButton.cjs +56 -0
  14. package/dist/cjs/__actions__/LinkButton/v3/LinkButton.module.css.cjs +6 -0
  15. package/dist/cjs/__overlays__/Tooltip/v3/Tooltip.cjs +2 -2
  16. package/dist/cjs/actionsV3.cjs +2 -0
  17. package/dist/esm/Calendar/CalendarPopover/CalendarPopover.mjs +1 -1
  18. package/dist/esm/EmptyState/EmptyState.mjs +16 -18
  19. package/dist/esm/EmptyState/EmptyState.module.css.mjs +18 -0
  20. package/dist/esm/Filter/FilterMultiSelect/subcomponents/ListBox/ListBox.mjs +1 -1
  21. package/dist/esm/GuidanceBlock/GuidanceBlock.mjs +1 -1
  22. package/dist/esm/GuidanceBlock/GuidanceBlock.module.css.mjs +26 -0
  23. package/dist/esm/MultiSelect/subcomponents/Popover/Popover.mjs +1 -1
  24. package/dist/esm/RichTextEditor/RichTextEditor/RichTextEditor.mjs +1 -1
  25. package/dist/esm/RichTextEditor/RichTextEditor/schema.mjs +1 -1
  26. package/dist/esm/RichTextEditor/utils/schema/nodes.mjs +1 -1
  27. package/dist/esm/TimeField/TimeField.mjs +1 -1
  28. package/dist/esm/__actions__/Button/v3/Button.mjs +44 -9
  29. package/dist/esm/__actions__/Button/v3/Button.module.css.mjs +19 -0
  30. package/dist/esm/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.mjs +28 -0
  31. package/dist/esm/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.module.css.mjs +7 -0
  32. package/dist/esm/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.mjs +26 -0
  33. package/dist/esm/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.module.css.mjs +6 -0
  34. package/dist/esm/__actions__/LinkButton/v3/LinkButton.mjs +47 -0
  35. package/dist/esm/__actions__/LinkButton/v3/LinkButton.module.css.mjs +4 -0
  36. package/dist/esm/__overlays__/Tooltip/v1/Tooltip.mjs +1 -1
  37. package/dist/esm/__overlays__/Tooltip/v3/Tooltip.mjs +1 -1
  38. package/dist/esm/actionsV3.mjs +1 -0
  39. package/dist/styles.css +552 -463
  40. package/dist/types/EmptyState/EmptyState.d.ts +2 -1
  41. package/dist/types/__actions__/Button/v3/Button.d.ts +17 -4
  42. package/dist/types/__actions__/Button/v3/index.d.ts +1 -0
  43. package/dist/types/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.d.ts +11 -0
  44. package/dist/types/__actions__/Button/v3/subcomponents/ButtonContent/index.d.ts +1 -0
  45. package/dist/types/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.d.ts +5 -0
  46. package/dist/types/__actions__/Button/v3/subcomponents/PendingContent/index.d.ts +1 -0
  47. package/dist/types/__actions__/Button/v3/subcomponents/index.d.ts +2 -0
  48. package/dist/types/__actions__/Button/v3/types.d.ts +21 -0
  49. package/dist/types/__actions__/LinkButton/index.d.ts +1 -0
  50. package/dist/types/__actions__/LinkButton/v3/LinkButton.d.ts +11 -0
  51. package/dist/types/__actions__/LinkButton/v3/index.d.ts +1 -0
  52. package/dist/types/__actions__/v3.d.ts +1 -0
  53. package/package.json +8 -8
  54. package/src/EmptyState/EmptyState.module.css +114 -0
  55. package/src/EmptyState/EmptyState.tsx +18 -20
  56. package/src/EmptyState/_docs/EmptyState.stickersheet.stories.tsx +55 -39
  57. package/src/GuidanceBlock/{GuidanceBlock.module.scss → GuidanceBlock.module.css} +60 -114
  58. package/src/GuidanceBlock/GuidanceBlock.tsx +1 -1
  59. package/src/__actions__/Button/v3/Button.module.css +235 -0
  60. package/src/__actions__/Button/v3/Button.tsx +95 -29
  61. package/src/__actions__/Button/v3/_docs/Button--api-specification.mdx +151 -0
  62. package/src/__actions__/Button/v3/_docs/Button--usage-guidelines.mdx +30 -0
  63. package/src/__actions__/Button/v3/_docs/Button.docs.stories.tsx +112 -50
  64. package/src/__actions__/Button/v3/_docs/Button.spec.stories.tsx +80 -120
  65. package/src/__actions__/Button/v3/_docs/Button.stickersheet.stories.tsx +183 -81
  66. package/src/__actions__/Button/v3/index.ts +1 -0
  67. package/src/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.module.css +19 -0
  68. package/src/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.tsx +40 -0
  69. package/src/__actions__/Button/v3/subcomponents/ButtonContent/index.ts +1 -0
  70. package/src/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.module.css +16 -0
  71. package/src/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.tsx +28 -0
  72. package/src/__actions__/Button/v3/subcomponents/PendingContent/index.ts +1 -0
  73. package/src/__actions__/Button/v3/subcomponents/index.ts +2 -0
  74. package/src/__actions__/Button/v3/types.ts +25 -0
  75. package/src/__actions__/LinkButton/index.ts +1 -0
  76. package/src/__actions__/LinkButton/v3/LinkButton.module.css +4 -0
  77. package/src/__actions__/LinkButton/v3/LinkButton.tsx +72 -0
  78. package/src/__actions__/LinkButton/v3/_docs/LinkButton--api-specification.mdx +210 -0
  79. package/src/__actions__/LinkButton/v3/_docs/LinkButton.doc.stories.tsx +132 -0
  80. package/src/__actions__/LinkButton/v3/_docs/LinkButton.spec.stories.tsx +100 -0
  81. package/src/__actions__/LinkButton/v3/_docs/LinkButton.stickersheet.stories.tsx +176 -0
  82. package/src/__actions__/LinkButton/v3/index.ts +1 -0
  83. package/src/__actions__/Menu/v3/_docs/Menu.docs.stories.tsx +54 -18
  84. package/src/__actions__/Menu/v3/_docs/Menu.spec.stories.tsx +30 -10
  85. package/src/__actions__/Menu/v3/_docs/Menu.stories.tsx +12 -4
  86. package/src/__actions__/v3.ts +1 -0
  87. package/src/__future__/Icon/_docs/Icon.docs.stories.tsx +7 -7
  88. package/src/__overlays__/Tooltip/v3/Tooltip.tsx +1 -1
  89. package/src/__overlays__/Tooltip/v3/_docs/Tooltip.spec.stories.tsx +2 -0
  90. package/dist/cjs/EmptyState/EmptyState.module.scss.cjs +0 -23
  91. package/dist/cjs/GuidanceBlock/GuidanceBlock.module.scss.cjs +0 -33
  92. package/dist/cjs/__actions__/Button/v3/Button.module.scss.cjs +0 -9
  93. package/dist/esm/EmptyState/EmptyState.module.scss.mjs +0 -21
  94. package/dist/esm/GuidanceBlock/GuidanceBlock.module.scss.mjs +0 -31
  95. package/dist/esm/__actions__/Button/v3/Button.module.scss.mjs +0 -7
  96. package/src/EmptyState/EmptyState.module.scss +0 -177
  97. package/src/EmptyState/EmptyState.spec.tsx +0 -48
  98. package/src/EmptyState/_mixins.scss +0 -44
  99. package/src/__actions__/Button/v3/Button.module.scss +0 -104
  100. package/src/__actions__/Button/v3/_docs/ApiSpecification.mdx +0 -173
  101. package/src/__actions__/Button/v3/_docs/Button.mdx +0 -41
  102. package/src/__actions__/Button/v3/_docs/Button.stories.tsx +0 -98
package/dist/styles.css CHANGED
@@ -72,93 +72,311 @@
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
+ .LinkButton-module_linkButton__1kdGO {
312
+ /* Reset */
313
+ text-decoration: inherit;
128
314
  }
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);
315
+
316
+ .PendingContent-module_pendingContent__c4IFS {
317
+ display: inline-flex;
318
+ align-items: center;
319
+ gap: var(--button-pending-content-gap, var(--spacing-6));
132
320
  }
133
- .Button-module_default__gSx3e[data-disabled] {
134
- opacity: 0.3;
321
+
322
+ .PendingContent-module_large__ypTxk {
323
+ --button-pending-content-gap: var(--spacing-8);
135
324
  }
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);
325
+
326
+ .PendingContent-module_centerSpinner__EYn7L {
327
+ position: absolute;
328
+ left: 50%;
329
+ top: 50%;
330
+ transform: translate(-50%, -50%);
140
331
  }
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);
332
+
333
+ .ButtonContent-module_buttonContent__v5mHZ {
334
+ display: inline-flex;
335
+ align-items: center;
336
+ gap: var(--button-icon-gap, var(--spacing-6));
144
337
  }
145
- .Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible]::after {
146
- border-color: var(--color-blue-300);
338
+
339
+ .ButtonContent-module_large__mLOdb {
340
+ --button-icon-gap: var(--spacing-8);
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_buttonLabel__T5XAq {
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
+ .ButtonContent-module_buttonIcon__qkAX- {
349
+ display: inline-flex;
350
+ align-items: center;
351
+ }
352
+
353
+ /** THIS IS AN AUTOGENERATED FILE **/
354
+ /** THIS IS AN AUTOGENERATED FILE **/
355
+ .OverlayArrow-module_overlayArrow__hoDyK {
356
+ display: flex;
357
+ padding: 8px;
358
+ }
359
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=top], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] {
360
+ padding: 0 8px;
361
+ }
362
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] {
363
+ padding: 8px 0;
364
+ }
365
+ .OverlayArrow-module_overlayArrow__hoDyK path {
366
+ fill: var(--color-purple-800, #2f2438);
367
+ 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));
368
+ }
369
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] svg {
370
+ transform: rotate(90deg);
371
+ }
372
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] svg {
373
+ transform: rotate(180deg);
374
+ }
375
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left] svg {
376
+ transform: rotate(270deg);
377
+ }
378
+ .OverlayArrow-module_overlayArrow__hoDyK.OverlayArrow-module_reversed__-WGcR path {
379
+ fill: var(--color-white, #ffffff);
162
380
  }
163
381
  .Focusable-module_focusableWrapper__NfuIi {
164
382
  display: inline-flex;
@@ -219,34 +437,6 @@
219
437
  opacity: 1;
220
438
  }
221
439
  }
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
440
  /*
251
441
  * This is taken from the Material Symbols CDN
252
442
  * font-weight & font-size removed as overridden in .icon
@@ -3879,183 +4069,121 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3879
4069
  white-space: nowrap;
3880
4070
  border: 0;
3881
4071
  }
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 {
4072
+ .EmptyState-module_container__0kOpV {
3887
4073
  --empty-state-border-width: var(--border-width-1);
3888
- display: flex;
3889
- justify-content: space-around;
4074
+ --empty-state-illustration-max-height: 366px;
4075
+ --empty-state-illustration-max-width: 420px;
4076
+ --empty-state-text-container-max-width: 426px;
4077
+
4078
+ container-type: inline-size;
3890
4079
  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
4080
  border: var(--empty-state-border-width) solid var(--empty-state-border-color);
3894
4081
  border-radius: var(--border-solid-border-radius);
3895
4082
  background-color: var(--empty-state-background-color);
4083
+ color: var(--color-purple-800);
3896
4084
  }
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 {
4085
+
4086
+ .EmptyState-module_straightCorners__BNh-9 {
3905
4087
  border-radius: 0;
3906
4088
  }
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
4089
 
3920
4090
  /** @deprecated */
3921
- .EmptyState-module_positive__o3dXR {
4091
+ .EmptyState-module_positive__Z2a3J {
3922
4092
  --empty-state-border-color: var(--color-green-500);
3923
4093
  --empty-state-background-color: var(--color-green-100);
3924
4094
  }
3925
4095
 
3926
- .EmptyState-module_negative__e5ci6,
3927
- .EmptyState-module_action__OdsgJ {
4096
+ .EmptyState-module_negative__mSmjN,
4097
+ .EmptyState-module_action__l1243 {
3928
4098
  --empty-state-border-color: var(--color-red-500);
3929
4099
  --empty-state-background-color: var(--color-red-100);
3930
4100
  }
3931
4101
 
3932
- .EmptyState-module_neutral__L6fBb {
4102
+ .EmptyState-module_neutral__i9IVq {
3933
4103
  --empty-state-border-color: var(--color-purple-400);
3934
4104
  --empty-state-background-color: var(--color-purple-100);
3935
4105
  }
3936
4106
 
3937
4107
  /** end @deprecated */
3938
- .EmptyState-module_success__y7jKP {
4108
+ .EmptyState-module_success__w9nvN {
3939
4109
  --empty-state-border-color: var(--color-green-500);
3940
4110
  --empty-state-background-color: var(--color-green-100);
3941
4111
  }
3942
4112
 
3943
- .EmptyState-module_warning__-PrRp {
4113
+ .EmptyState-module_warning__vdEBx {
3944
4114
  --empty-state-border-color: var(--color-red-500);
3945
4115
  --empty-state-background-color: var(--color-red-100);
3946
4116
  }
3947
4117
 
3948
- .EmptyState-module_informative__x0GSr {
4118
+ .EmptyState-module_informative__aeHUD {
3949
4119
  --empty-state-border-color: var(--color-blue-400);
3950
4120
  --empty-state-background-color: var(--color-blue-100);
3951
4121
  }
3952
4122
 
3953
- .EmptyState-module_expert-advice__VVB8i {
4123
+ .EmptyState-module_expert-advice__05WOw {
3954
4124
  --empty-state-border-color: var(--color-purple-400);
3955
4125
  --empty-state-background-color: var(--color-purple-100);
3956
4126
  }
3957
4127
 
3958
- .EmptyState-module_illustrationSide__ZSjF3,
3959
- .EmptyState-module_textSide__tv54w {
3960
- display: inline-block;
4128
+ .EmptyState-module_content__dggps {
4129
+ justify-content: center;
4130
+ display: grid;
4131
+ grid-template-columns: minmax(auto, var(--empty-state-illustration-max-width)) minmax(
4132
+ auto,
4133
+ var(--empty-state-text-container-max-width)
4134
+ );
4135
+ grid-template-rows: minmax(auto, var(--empty-state-illustration-max-height)) auto;
4136
+ padding: var(--spacing-24);
4137
+ grid-column-gap: var(--spacing-32);
3961
4138
  }
3962
4139
 
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
- }
4140
+ .EmptyState-module_illustrationContainer__2Ch-u {
4141
+ display: flex;
4142
+ align-items: center;
3999
4143
  }
4000
4144
 
4001
- .EmptyState-module_illustration__HyD2k,
4002
- .EmptyState-module_illustrationSide__ZSjF3 video {
4145
+ .EmptyState-module_illustration__QSUZA,
4146
+ .EmptyState-module_illustrationContainer__2Ch-u video {
4003
4147
  max-width: 100%;
4004
- max-height: 366px;
4148
+ max-height: var(--empty-state-illustration-max-height);
4149
+ height: 100%;
4005
4150
  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
4151
  }
4014
4152
 
4015
- .EmptyState-module_textSide__tv54w {
4153
+ .EmptyState-module_textContainer__jJ9NS {
4016
4154
  display: flex;
4017
- flex-grow: 1;
4018
- flex-shrink: 1;
4019
- align-items: center;
4020
- -webkit-font-smoothing: antialiased;
4155
+ flex-direction: column;
4156
+ justify-content: center;
4157
+ gap: var(--spacing-24);
4021
4158
  }
4022
- @media (min-width: 816px) {
4023
- .EmptyState-module_textSide__tv54w {
4024
- flex-basis: 50%;
4025
- flex-grow: 0;
4159
+
4160
+ @container (width <=1024px) {
4161
+ .EmptyState-module_content__dggps {
4162
+ padding: var(--spacing-16);
4026
4163
  }
4027
4164
  }
4028
4165
 
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;
4166
+ @container (width <=560px) {
4167
+ .EmptyState-module_content__dggps {
4168
+ grid-template-columns: 1fr;
4169
+ grid-template-rows: auto;
4170
+ grid-column-gap: unset;
4171
+ grid-row-gap: var(--spacing-24);
4172
+ padding: var(--spacing-24);
4037
4173
  }
4038
- }
4039
- @media (min-width: 816px) {
4040
- .EmptyState-module_textSideInner__Yynhi {
4041
- max-width: 426px;
4174
+
4175
+ .EmptyState-module_illustrationContainer__2Ch-u {
4176
+ --empty-state-illustration-max-height: 210px;
4177
+
4178
+ justify-content: center;
4042
4179
  }
4043
- }
4044
4180
 
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 {
4181
+ .EmptyState-module_heading__pEPi3 {
4050
4182
  font-size: 1.25rem;
4051
4183
  line-height: 1.5rem;
4052
- font-weight: 700;
4053
4184
  }
4054
4185
  }
4055
4186
 
4056
- .EmptyState-module_description__fsJOc {
4057
- margin-bottom: var(--spacing-md, 1.5rem);
4058
- }
4059
4187
  /** THIS IS AN AUTOGENERATED FILE **/
4060
4188
  .ErrorPage-module_paragraphPadding__-L-qy {
4061
4189
  padding: var(--spacing-24, 1.5rem) 0;
@@ -4698,368 +4826,329 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
4698
4826
  gap: var(--spacing-8);
4699
4827
  }
4700
4828
 
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);
4829
+ .GuidanceBlock-module_rightMargin__T6JO2 {
4830
+ margin-right: var(--spacing-8);
4709
4831
  }
4710
4832
 
4711
- .GuidanceBlock-module_noRightMargin__4Uy9N {
4833
+ .GuidanceBlock-module_noRightMargin__MczwN {
4712
4834
  margin-right: 0;
4713
4835
  }
4714
4836
 
4715
- .GuidanceBlock-module_banner__FxKcd.GuidanceBlock-module_noMaxWidth__UzHP1 {
4837
+ .GuidanceBlock-module_banner__7FT39.GuidanceBlock-module_noMaxWidth__UCCUk {
4716
4838
  max-width: inherit;
4717
4839
  }
4718
4840
 
4719
- .GuidanceBlock-module_banner__FxKcd {
4841
+ .GuidanceBlock-module_banner__7FT39 {
4720
4842
  --border-width: var(--border-width-1);
4843
+ --banner-padding: var(--spacing-lg);
4844
+
4721
4845
  display: flex;
4722
4846
  flex-direction: column;
4723
- gap: var(--spacing-sm, 0.75rem);
4847
+ gap: var(--spacing-12);
4724
4848
  min-width: 320px;
4725
- max-width: 1080px;
4849
+ max-width: var(--layout-breakpoints-large);
4726
4850
  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));
4851
+ border-radius: var(--border-solid-border-radius);
4852
+ padding: calc(var(--banner-padding) - var(--border-width));
4853
+ box-shadow: var(--shadow-small-box-shadow);
4730
4854
  position: relative;
4731
4855
  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);
4856
+ transition:
4857
+ opacity var(--animation-duration-slow) ease,
4858
+ margin-top var(--animation-duration-fast) var(--animation-duration-slow)
4859
+ ease;
4860
+ color: var(--color-purple-800);
4861
+
4862
+ @media (width >= 1024px) {
4863
+ min-height: calc(12rem - calc(var(--banner-padding) * 2));
4738
4864
  flex-direction: row;
4739
- gap: var(--spacing-md, 1.5rem);
4865
+ gap: var(--spacing-24);
4740
4866
  width: auto;
4741
4867
  align-items: center;
4742
4868
  }
4743
- }
4744
- @media (max-width: 767px) {
4745
- .GuidanceBlock-module_banner__FxKcd {
4869
+
4870
+ @media (width <= 767px) {
4746
4871
  min-width: unset;
4747
4872
  }
4748
4873
  }
4749
4874
 
4750
- .GuidanceBlock-module_illustrationWrapper__AEljX {
4875
+ .GuidanceBlock-module_illustrationWrapper__tK4Xr {
4751
4876
  display: flex;
4752
- }
4753
- @media (min-width: 768px) and (max-width: 1023px) {
4754
- .GuidanceBlock-module_illustrationWrapper__AEljX {
4877
+
4878
+ @media (768px <= width <= 1023px) {
4755
4879
  text-align: center;
4756
4880
  justify-content: center;
4757
4881
  align-self: center;
4758
- padding: var(--spacing-sm, 0.75rem);
4882
+ padding: var(--spacing-12);
4759
4883
  }
4760
- }
4761
- @media (max-width: 767px) {
4762
- .GuidanceBlock-module_illustrationWrapper__AEljX {
4884
+
4885
+ @media (width <= 767px) {
4763
4886
  display: none;
4764
4887
  }
4765
4888
  }
4766
4889
 
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;
4890
+ .GuidanceBlock-module_illustration__LiDV3 {
4891
+ --illustration-size: 155px;
4892
+ --scene-illustration-size: 300px;
4893
+
4894
+ width: var(--illustration-size);
4895
+ height: var(--illustration-size);
4896
+
4897
+ /* This has been created to handle scene illustrations consistently until the tile component is created */
4898
+ .GuidanceBlock-module_hasSceneIllustration__eBOyt & {
4899
+ display: flex;
4900
+ justify-content: center;
4901
+ max-width: var(--scene-illustration-size);
4902
+ max-height: var(--scene-illustration-size);
4903
+ width: var(--scene-illustration-size);
4904
+ height: auto;
4905
+
4906
+ figure {
4907
+ max-height: 100%;
4908
+ max-width: 100%;
4909
+ aspect-ratio: 4/3;
4910
+ }
4911
+
4912
+ img {
4913
+ height: 100%;
4914
+ object-fit: contain;
4915
+ object-position: center;
4916
+ }
4917
+ }
4788
4918
  }
4789
4919
 
4790
- .GuidanceBlock-module_descriptionContainer__aywtY {
4920
+ .GuidanceBlock-module_descriptionContainer__w1-P- {
4791
4921
  flex: 1;
4792
4922
  text-align: center;
4793
4923
  align-self: center;
4794
4924
  max-width: 780px;
4795
- }
4796
- @media (min-width: 1024px) {
4797
- .GuidanceBlock-module_descriptionContainer__aywtY {
4798
- padding: 0 var(--spacing-sm, 0.75rem);
4925
+
4926
+ @media (width >= 1024px) {
4927
+ padding: 0 var(--spacing-12);
4799
4928
  text-align: left;
4800
4929
  }
4801
- }
4802
- @media (max-width: 767px) {
4803
- .GuidanceBlock-module_descriptionContainer__aywtY {
4804
- margin: var(--spacing-sm, 0.75rem);
4930
+
4931
+ @media (width <= 767px) {
4932
+ margin: var(--spacing-12);
4805
4933
  max-width: 100%;
4806
4934
  }
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;
4935
+
4936
+ [dir="rtl"] & {
4937
+ @media (width >= 1024px) {
4938
+ padding: 0 var(--spacing-12);
4939
+ text-align: right;
4940
+ }
4812
4941
  }
4813
4942
  }
4814
4943
 
4815
- .GuidanceBlock-module_descriptionAndActions__E5BcL {
4944
+ .GuidanceBlock-module_descriptionAndActions__aQhc9 {
4816
4945
  display: flex;
4817
4946
  flex: 1;
4818
4947
  align-items: center;
4819
4948
  justify-content: space-between;
4820
- gap: var(--spacing-md, 1.5rem);
4821
- }
4822
- @media (max-width: 1023px) {
4823
- .GuidanceBlock-module_descriptionAndActions__E5BcL {
4949
+ gap: var(--spacing-24);
4950
+
4951
+ @media (width <= 1023px) {
4824
4952
  flex-direction: column;
4825
4953
  width: 100%;
4826
4954
  align-items: unset;
4827
4955
  }
4828
4956
  }
4829
4957
 
4830
- .GuidanceBlock-module_buttonContainer__U2Hxn {
4958
+ .GuidanceBlock-module_buttonContainer__bcVmB {
4831
4959
  display: flex;
4832
4960
  flex: 1 0 auto;
4833
4961
  justify-content: center;
4834
4962
  flex-direction: row-reverse;
4835
- gap: var(--spacing-sm, 0.75rem);
4963
+ gap: var(--spacing-12);
4836
4964
  min-width: max-content;
4837
- }
4838
- @media (min-width: 768px) {
4839
- .GuidanceBlock-module_buttonContainer__U2Hxn {
4965
+
4966
+ @media (width >= 768px) {
4840
4967
  text-align: center;
4841
4968
  }
4842
- }
4843
- @media (max-width: 767px) {
4844
- .GuidanceBlock-module_buttonContainer__U2Hxn {
4969
+
4970
+ @media (width <= 767px) {
4845
4971
  flex-direction: column;
4846
4972
  width: 100%;
4847
- margin-top: var(--spacing-xs, 0.375rem);
4973
+ margin-top: var(--spacing-6);
4848
4974
  }
4849
- }
4850
- [dir=rtl] .GuidanceBlock-module_buttonContainer__U2Hxn svg {
4851
- transform: rotate(180deg);
4852
- }
4853
4975
 
4854
- .GuidanceBlock-module_hidden__CbgXn {
4855
- opacity: 0%;
4856
- margin-bottom: 0;
4976
+ [dir="rtl"] & svg {
4977
+ transform: rotate(180deg);
4978
+ }
4857
4979
  }
4858
4980
 
4859
- .GuidanceBlock-module_headingWrapper__zgVmA {
4860
- margin-bottom: var(--spacing-md, 1.5rem);
4981
+ .GuidanceBlock-module_hidden__mwvrs {
4982
+ opacity: 0;
4983
+ margin-bottom: 0;
4861
4984
  }
4862
4985
 
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%;
4986
+ .GuidanceBlock-module_headingWrapper__OfZB5 {
4987
+ margin-bottom: var(--spacing-24);
4890
4988
  }
4891
4989
 
4892
- .GuidanceBlock-module_default__Ffblg {
4990
+ .GuidanceBlock-module_default__7naG4 {
4893
4991
  border-color: var(--color-gray-500);
4894
4992
  background: var(--color-white);
4895
4993
  }
4896
4994
 
4897
- .GuidanceBlock-module_positive__yENlT {
4995
+ .GuidanceBlock-module_positive__iCp-1 {
4898
4996
  border-color: var(--color-green-500);
4899
- background: var(--color-green-100, #e8f8f4);
4997
+ background: var(--color-green-100);
4900
4998
  }
4901
4999
 
4902
- .GuidanceBlock-module_negative__E-Jvh,
4903
- .GuidanceBlock-module_assertive__6PZlM {
5000
+ .GuidanceBlock-module_negative__wWBlw,
5001
+ .GuidanceBlock-module_assertive__bNdnQ {
4904
5002
  border-color: var(--color-red-500);
4905
- background: var(--color-red-100, #fdeaee);
5003
+ background: var(--color-red-100);
4906
5004
  }
4907
5005
 
4908
- .GuidanceBlock-module_informative__ZUH4j {
5006
+ .GuidanceBlock-module_informative__KeJWO {
4909
5007
  border-color: var(--color-blue-400);
4910
- background: var(--color-blue-100, #e6f6ff);
5008
+ background: var(--color-blue-100);
4911
5009
  }
4912
5010
 
4913
- .GuidanceBlock-module_cautionary__sJ1CE {
5011
+ .GuidanceBlock-module_cautionary__5Vkw6 {
4914
5012
  border-color: var(--color-yellow-700);
4915
- background: var(--color-yellow-100, #fff9e4);
5013
+ background: var(--color-yellow-100);
4916
5014
  }
4917
5015
 
4918
- .GuidanceBlock-module_prominent__nn-r4 {
5016
+ .GuidanceBlock-module_prominent__rWTgt {
4919
5017
  border-color: var(--color-purple-400);
4920
- background: var(--color-purple-100, #f4edf8);
5018
+ background: var(--color-purple-100);
4921
5019
  }
4922
5020
 
4923
- .GuidanceBlock-module_inline__GwOWR,
4924
- .GuidanceBlock-module_stacked__rDupX {
5021
+ .GuidanceBlock-module_inline__B-Ubr,
5022
+ .GuidanceBlock-module_stacked__4dS71 {
4925
5023
  flex-flow: row wrap;
4926
5024
  align-items: unset;
4927
- gap: var(--spacing-md, 1.5rem);
5025
+ gap: var(--spacing-24);
4928
5026
  min-width: unset;
4929
- }
4930
- @media (max-width: 1023px) {
4931
- .GuidanceBlock-module_inline__GwOWR,
4932
- .GuidanceBlock-module_stacked__rDupX {
5027
+
5028
+ @media (width <= 1023px) {
4933
5029
  flex-direction: unset;
4934
5030
  }
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;
5031
+
5032
+ .GuidanceBlock-module_illustrationWrapper__tK4Xr {
5033
+ margin-right: var(--spacing-12);
5034
+
5035
+ [dir="rtl"] & {
5036
+ margin-left: var(--spacing-12);
5037
+ margin-right: inherit;
5038
+ }
5039
+
5040
+ @media (768px <= width <= 1023px) {
5041
+ padding: 0;
5042
+ }
5043
+
5044
+ @media (width <= 767px) {
5045
+ display: flex;
5046
+ }
4949
5047
  }
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;
5048
+
5049
+ .GuidanceBlock-module_descriptionAndActions__aQhc9 {
5050
+ margin: auto 0;
4955
5051
  }
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;
5052
+
5053
+ .GuidanceBlock-module_descriptionContainer__w1-P- {
5054
+ text-align: left;
5055
+ max-width: unset;
5056
+ min-width: 320px;
5057
+
5058
+ @media (width >= 1024px) {
5059
+ padding: 0;
5060
+ }
5061
+
5062
+ @media (width <= 767px) {
5063
+ margin: 0;
5064
+ }
5065
+
5066
+ [dir="rtl"] & {
5067
+ text-align: right;
5068
+
5069
+ @media (width >= 1024px) {
5070
+ padding: 0;
5071
+ }
5072
+ }
4971
5073
  }
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;
5074
+
5075
+ .GuidanceBlock-module_buttonContainer__bcVmB {
5076
+ padding-left: var(--spacing-12);
5077
+ justify-content: flex-start;
5078
+ width: unset;
5079
+ min-width: unset;
5080
+
5081
+ @media (width <= 767px) {
5082
+ flex-direction: row-reverse;
5083
+ }
5084
+
5085
+ [dir="rtl"] & {
5086
+ padding-left: 0;
5087
+ padding-right: var(--spacing-12);
5088
+ }
5089
+
5090
+ > * {
5091
+ width: unset;
5092
+ }
4977
5093
  }
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;
5094
+
5095
+ &.GuidanceBlock-module_hasSceneIllustration__eBOyt {
5096
+ justify-content: center;
4987
5097
  }
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;
5098
+
5099
+ &.GuidanceBlock-module_centerContent__9Vlup {
5100
+ flex-direction: column;
5101
+
5102
+ &.GuidanceBlock-module_hasSceneIllustration__eBOyt .GuidanceBlock-module_illustration__LiDV3 {
5103
+ width: 100%;
5104
+ }
5105
+
5106
+ .GuidanceBlock-module_illustrationWrapper__tK4Xr {
5107
+ margin: 0 auto;
5108
+ align-self: center;
5109
+ }
5110
+
5111
+ .GuidanceBlock-module_descriptionContainer__w1-P- {
5112
+ text-align: center;
5113
+ min-width: unset;
5114
+
5115
+ [dir="rtl"] & {
5116
+ text-align: center;
5117
+ }
5118
+ }
5119
+
5120
+ .GuidanceBlock-module_buttonContainer__bcVmB {
5121
+ padding: 0;
5122
+ flex-direction: column;
5123
+ min-width: unset;
5124
+ justify-content: center;
5125
+ }
5126
+ }
5127
+
5128
+ &.GuidanceBlock-module_centerContent__9Vlup.GuidanceBlock-module_smallScreenTextAlignment__-UXo9 {
5129
+ .GuidanceBlock-module_descriptionContainer__w1-P- {
5130
+ text-align: left;
5131
+
5132
+ [dir="rtl"] & {
5133
+ text-align: right;
5134
+ }
5135
+ }
5000
5136
  }
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
5137
  }
5052
5138
 
5053
5139
  /* 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
- }
5140
+ .GuidanceBlock-module_stacked__4dS71 {
5141
+ .GuidanceBlock-module_descriptionAndActions__aQhc9 {
5142
+ flex-direction: column;
5143
+ align-items: unset;
5144
+ }
5061
5145
 
5146
+ .GuidanceBlock-module_descriptionContainer__w1-P- {
5147
+ align-self: flex-start;
5148
+ }
5149
+ }
5062
5150
  /* stylelint-enable no-descending-specificity */
5151
+
5063
5152
  .SVG-module_icon__8J5Ev {
5064
5153
  width: 20px;
5065
5154
  height: 20px;