@spectrum-web-components/theme 0.35.1-rc.43 → 0.36.0

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 (42) hide show
  1. package/custom-elements.json +407 -0
  2. package/package.json +4 -4
  3. package/src/express/scale-large.css.dev.js +0 -4
  4. package/src/express/scale-large.css.dev.js.map +2 -2
  5. package/src/express/scale-large.css.js +0 -4
  6. package/src/express/scale-large.css.js.map +2 -2
  7. package/src/express/scale-medium.css.dev.js +0 -4
  8. package/src/express/scale-medium.css.dev.js.map +2 -2
  9. package/src/express/scale-medium.css.js +0 -4
  10. package/src/express/scale-medium.css.js.map +2 -2
  11. package/src/express/theme.css.dev.js +13 -29
  12. package/src/express/theme.css.dev.js.map +2 -2
  13. package/src/express/theme.css.js +13 -29
  14. package/src/express/theme.css.js.map +2 -2
  15. package/src/scale-large.css.dev.js +0 -4
  16. package/src/scale-large.css.dev.js.map +2 -2
  17. package/src/scale-large.css.js +0 -4
  18. package/src/scale-large.css.js.map +2 -2
  19. package/src/scale-medium.css.dev.js +0 -4
  20. package/src/scale-medium.css.dev.js.map +2 -2
  21. package/src/scale-medium.css.js +0 -4
  22. package/src/scale-medium.css.js.map +2 -2
  23. package/src/theme-dark.css.dev.js +1 -3
  24. package/src/theme-dark.css.dev.js.map +2 -2
  25. package/src/theme-dark.css.js +1 -3
  26. package/src/theme-dark.css.js.map +2 -2
  27. package/src/theme-darkest.css.dev.js +1 -1
  28. package/src/theme-darkest.css.dev.js.map +1 -1
  29. package/src/theme-darkest.css.js +1 -1
  30. package/src/theme-darkest.css.js.map +1 -1
  31. package/src/theme-light.css.dev.js +1 -1
  32. package/src/theme-light.css.dev.js.map +1 -1
  33. package/src/theme-light.css.js +1 -1
  34. package/src/theme-light.css.js.map +1 -1
  35. package/src/theme-lightest.css.dev.js +1 -1
  36. package/src/theme-lightest.css.dev.js.map +1 -1
  37. package/src/theme-lightest.css.js +1 -1
  38. package/src/theme-lightest.css.js.map +1 -1
  39. package/src/theme.css.dev.js +13 -29
  40. package/src/theme.css.dev.js.map +2 -2
  41. package/src/theme.css.js +13 -29
  42. package/src/theme.css.js.map +2 -2
@@ -0,0 +1,407 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-theme.js",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "custom-element-definition",
12
+ "name": "sp-theme",
13
+ "declaration": {
14
+ "name": "Theme",
15
+ "module": "/src/Theme.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "src/Theme.js",
23
+ "declarations": [
24
+ {
25
+ "kind": "class",
26
+ "description": "",
27
+ "name": "Theme",
28
+ "slots": [
29
+ {
30
+ "description": "Content on which to apply the CSS Custom Properties defined by the current theme configuration",
31
+ "name": ""
32
+ }
33
+ ],
34
+ "members": [
35
+ {
36
+ "kind": "field",
37
+ "name": "themeFragmentsByKind",
38
+ "type": {
39
+ "text": "ThemeFragmentMap"
40
+ },
41
+ "privacy": "private",
42
+ "static": true,
43
+ "default": "new Map()"
44
+ },
45
+ {
46
+ "kind": "field",
47
+ "name": "defaultFragments",
48
+ "type": {
49
+ "text": "Set<FragmentName>"
50
+ },
51
+ "privacy": "private",
52
+ "static": true,
53
+ "default": "new Set(['spectrum'])"
54
+ },
55
+ {
56
+ "kind": "field",
57
+ "name": "templateElement",
58
+ "type": {
59
+ "text": "HTMLTemplateElement | undefined"
60
+ },
61
+ "privacy": "private",
62
+ "static": true
63
+ },
64
+ {
65
+ "kind": "field",
66
+ "name": "instances",
67
+ "type": {
68
+ "text": "Set<Theme>"
69
+ },
70
+ "privacy": "private",
71
+ "static": true,
72
+ "default": "new Set()"
73
+ },
74
+ {
75
+ "kind": "field",
76
+ "name": "_dir",
77
+ "type": {
78
+ "text": "'ltr' | 'rtl' | ''"
79
+ },
80
+ "default": "''"
81
+ },
82
+ {
83
+ "kind": "field",
84
+ "name": "dir",
85
+ "type": {
86
+ "text": "\"ltr\" | \"rtl\" | \"\""
87
+ },
88
+ "description": "Reading direction of the content scoped to this `sp-theme` element.",
89
+ "attribute": "dir"
90
+ },
91
+ {
92
+ "kind": "field",
93
+ "name": "shadowRoot",
94
+ "type": {
95
+ "text": "ShadowRootWithAdoptedStyleSheets"
96
+ },
97
+ "privacy": "public"
98
+ },
99
+ {
100
+ "kind": "field",
101
+ "name": "_theme",
102
+ "type": {
103
+ "text": "ThemeVariant | ''"
104
+ },
105
+ "privacy": "private",
106
+ "default": "'spectrum'"
107
+ },
108
+ {
109
+ "kind": "field",
110
+ "name": "theme",
111
+ "type": {
112
+ "text": "\"spectrum\" | \"express\" | \"\""
113
+ },
114
+ "description": "The Spectrum theme that is applied to the content scoped to this `sp-theme` element.\n\nA value is requried.",
115
+ "attribute": "theme"
116
+ },
117
+ {
118
+ "kind": "field",
119
+ "name": "_color",
120
+ "type": {
121
+ "text": "Color | ''"
122
+ },
123
+ "privacy": "private",
124
+ "default": "''"
125
+ },
126
+ {
127
+ "kind": "field",
128
+ "name": "color",
129
+ "type": {
130
+ "text": "\"lightest\" | \"light\" | \"dark\" | \"darkest\" | \"\""
131
+ },
132
+ "description": "The Spectrum color stops to apply to content scoped by this `sp-theme` element.\n\nA value is requried.",
133
+ "attribute": "color"
134
+ },
135
+ {
136
+ "kind": "field",
137
+ "name": "_scale",
138
+ "type": {
139
+ "text": "Scale | ''"
140
+ },
141
+ "privacy": "private",
142
+ "default": "''"
143
+ },
144
+ {
145
+ "kind": "field",
146
+ "name": "scale",
147
+ "type": {
148
+ "text": "\"medium\" | \"large\" | \"\""
149
+ },
150
+ "description": "The Spectrum platform scale to apply to content scoped by this `sp-theme` element.\n\nA value is requried.",
151
+ "attribute": "scale"
152
+ },
153
+ {
154
+ "kind": "field",
155
+ "name": "template",
156
+ "type": {
157
+ "text": "HTMLTemplateElement"
158
+ },
159
+ "privacy": "private",
160
+ "static": true,
161
+ "readonly": true
162
+ },
163
+ {
164
+ "kind": "field",
165
+ "name": "updateComplete",
166
+ "type": {
167
+ "text": "Promise<boolean>"
168
+ },
169
+ "privacy": "public"
170
+ },
171
+ {
172
+ "kind": "field",
173
+ "name": "__resolve",
174
+ "type": {
175
+ "text": "(compelted: boolean) => void"
176
+ },
177
+ "privacy": "private"
178
+ },
179
+ {
180
+ "kind": "method",
181
+ "name": "__createDeferredPromise",
182
+ "privacy": "private",
183
+ "return": {
184
+ "type": {
185
+ "text": "Promise<boolean>"
186
+ }
187
+ }
188
+ },
189
+ {
190
+ "kind": "method",
191
+ "name": "onQueryTheme",
192
+ "privacy": "private",
193
+ "return": {
194
+ "type": {
195
+ "text": "void"
196
+ }
197
+ },
198
+ "parameters": [
199
+ {
200
+ "name": "event",
201
+ "type": {
202
+ "text": "CustomEvent<ThemeData>"
203
+ }
204
+ }
205
+ ]
206
+ },
207
+ {
208
+ "kind": "method",
209
+ "name": "startManagingContentDirection",
210
+ "privacy": "public",
211
+ "return": {
212
+ "type": {
213
+ "text": "void"
214
+ }
215
+ },
216
+ "parameters": [
217
+ {
218
+ "name": "el",
219
+ "type": {
220
+ "text": "HTMLElement"
221
+ }
222
+ }
223
+ ]
224
+ },
225
+ {
226
+ "kind": "method",
227
+ "name": "stopManagingContentDirection",
228
+ "privacy": "public",
229
+ "return": {
230
+ "type": {
231
+ "text": "void"
232
+ }
233
+ },
234
+ "parameters": [
235
+ {
236
+ "name": "el",
237
+ "type": {
238
+ "text": "HTMLElement"
239
+ }
240
+ }
241
+ ]
242
+ },
243
+ {
244
+ "kind": "field",
245
+ "name": "trackedChildren",
246
+ "type": {
247
+ "text": "Set<HTMLElement>"
248
+ },
249
+ "privacy": "private",
250
+ "default": "new Set()"
251
+ },
252
+ {
253
+ "kind": "field",
254
+ "name": "_updateRequested",
255
+ "type": {
256
+ "text": "boolean"
257
+ },
258
+ "privacy": "private",
259
+ "default": "false"
260
+ },
261
+ {
262
+ "kind": "method",
263
+ "name": "shouldAdoptStyles",
264
+ "privacy": "private",
265
+ "return": {
266
+ "type": {
267
+ "text": "Promise<void>"
268
+ }
269
+ }
270
+ },
271
+ {
272
+ "kind": "method",
273
+ "name": "adoptStyles",
274
+ "privacy": "protected",
275
+ "return": {
276
+ "type": {
277
+ "text": "void"
278
+ }
279
+ }
280
+ },
281
+ {
282
+ "kind": "method",
283
+ "name": "registerThemeFragment",
284
+ "static": true,
285
+ "return": {
286
+ "type": {
287
+ "text": "void"
288
+ }
289
+ },
290
+ "parameters": [
291
+ {
292
+ "name": "name",
293
+ "type": {
294
+ "text": "FragmentName"
295
+ }
296
+ },
297
+ {
298
+ "name": "kind",
299
+ "type": {
300
+ "text": "FragmentType"
301
+ }
302
+ },
303
+ {
304
+ "name": "styles",
305
+ "type": {
306
+ "text": "CSSResultGroup"
307
+ }
308
+ }
309
+ ]
310
+ },
311
+ {
312
+ "kind": "field",
313
+ "name": "_contextConsumers",
314
+ "privacy": "private",
315
+ "default": "new Map<\n HTMLElement,\n [ProvideLang['callback'], () => void]\n >()"
316
+ },
317
+ {
318
+ "kind": "method",
319
+ "name": "_provideContext",
320
+ "privacy": "private",
321
+ "return": {
322
+ "type": {
323
+ "text": "void"
324
+ }
325
+ }
326
+ },
327
+ {
328
+ "kind": "method",
329
+ "name": "_handleContextPresence",
330
+ "privacy": "private",
331
+ "return": {
332
+ "type": {
333
+ "text": "void"
334
+ }
335
+ },
336
+ "parameters": [
337
+ {
338
+ "name": "event",
339
+ "type": {
340
+ "text": "CustomEvent<ProvideLang>"
341
+ }
342
+ }
343
+ ]
344
+ }
345
+ ],
346
+ "attributes": [
347
+ {
348
+ "name": "color",
349
+ "type": {
350
+ "text": "\"lightest\" | \"light\" | \"dark\" | \"darkest\" | \"\""
351
+ },
352
+ "description": "The Spectrum color stops to apply to content scoped by this `sp-theme` element.\n\nA value is requried.",
353
+ "fieldName": "color"
354
+ },
355
+ {
356
+ "name": "scale",
357
+ "type": {
358
+ "text": "\"medium\" | \"large\" | \"\""
359
+ },
360
+ "description": "The Spectrum platform scale to apply to content scoped by this `sp-theme` element.\n\nA value is requried.",
361
+ "fieldName": "scale"
362
+ },
363
+ {
364
+ "name": "theme",
365
+ "type": {
366
+ "text": "\"spectrum\" | \"express\" | \"\""
367
+ },
368
+ "description": "The Spectrum theme that is applied to the content scoped to this `sp-theme` element.\n\nA value is requried.",
369
+ "fieldName": "theme"
370
+ },
371
+ {
372
+ "name": "lang",
373
+ "type": {
374
+ "text": "string"
375
+ },
376
+ "description": "The language of the content scoped to this `sp-theme` element, see: <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/lang\" target=\"_blank\">MDN reference</a>.",
377
+ "default": "\"\""
378
+ },
379
+ {
380
+ "name": "dir",
381
+ "type": {
382
+ "text": "\"ltr\" | \"rtl\" | \"\""
383
+ },
384
+ "description": "Reading direction of the content scoped to this `sp-theme` element.",
385
+ "fieldName": "dir"
386
+ }
387
+ ],
388
+ "superclass": {
389
+ "name": "HTMLElement"
390
+ },
391
+ "tagName": "sp-theme",
392
+ "customElement": true
393
+ }
394
+ ],
395
+ "exports": [
396
+ {
397
+ "kind": "js",
398
+ "name": "Theme",
399
+ "declaration": {
400
+ "name": "Theme",
401
+ "module": "src/Theme.js"
402
+ }
403
+ }
404
+ ]
405
+ }
406
+ ]
407
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/theme",
3
- "version": "0.35.1-rc.43+432051b80",
3
+ "version": "0.36.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -133,8 +133,8 @@
133
133
  "lit-html"
134
134
  ],
135
135
  "dependencies": {
136
- "@spectrum-web-components/base": "^0.35.1-rc.43+432051b80",
137
- "@spectrum-web-components/styles": "^0.35.1-rc.43+432051b80"
136
+ "@spectrum-web-components/base": "^0.36.0",
137
+ "@spectrum-web-components/styles": "^0.36.0"
138
138
  },
139
139
  "types": "./src/index.d.ts",
140
140
  "customElements": "custom-elements.json",
@@ -150,5 +150,5 @@
150
150
  "./src/express/core.js",
151
151
  "./src/express/themes.js"
152
152
  ],
153
- "gitHead": "432051b8085e7c86032333fa296bfa5334d47d84"
153
+ "gitHead": "a532ff8a410abeefb54d9638a2316ae82570566e"
154
154
  }
@@ -129,10 +129,6 @@ const styles = css`
129
129
  --spectrum-global-dimension-font-size-75
130
130
  );--spectrum-dialog-confirm-padding:var(
131
131
  --spectrum-global-dimension-static-size-300
132
- );--spectrum-listitem-m-texticon-padding-left:var(
133
- --spectrum-global-dimension-static-size-150
134
- );--spectrum-listitem-m-textthumbnail-padding-left:var(
135
- --spectrum-global-dimension-static-size-150
136
132
  )}:host,:root{--spectrum-global-alias-appframe-border-size:1px}:host,:root{--spectrum-field-label-text-to-asterisk-small:5px;--spectrum-field-label-text-to-asterisk-medium:5px;--spectrum-field-label-text-to-asterisk-large:6px;--spectrum-field-label-text-to-asterisk-extra-large:6px;--spectrum-field-label-top-to-asterisk-small:11px;--spectrum-field-label-top-to-asterisk-medium:15px;--spectrum-field-label-top-to-asterisk-large:19px;--spectrum-field-label-top-to-asterisk-extra-large:24px;--spectrum-field-label-top-margin-small:0px;--spectrum-field-label-top-margin-medium:5px;--spectrum-field-label-top-margin-large:6px;--spectrum-field-label-top-margin-extra-large:6px;--spectrum-field-label-to-component-quiet-small:-10px;--spectrum-field-label-to-component-quiet-medium:-10px;--spectrum-field-label-to-component-quiet-large:-15px;--spectrum-field-label-to-component-quiet-extra-large:-19px;--spectrum-help-text-top-to-workflow-icon-small:5px;--spectrum-help-text-top-to-workflow-icon-medium:4px;--spectrum-help-text-top-to-workflow-icon-large:8px;--spectrum-help-text-top-to-workflow-icon-extra-large:11px;--spectrum-status-light-dot-size-small:8px;--spectrum-status-light-dot-size-medium:10px;--spectrum-status-light-dot-size-large:12px;--spectrum-status-light-dot-size-extra-large:12px;--spectrum-status-light-top-to-dot-small:11px;--spectrum-status-light-top-to-dot-medium:15px;--spectrum-status-light-top-to-dot-large:19px;--spectrum-status-light-top-to-dot-extra-large:24px;--spectrum-action-button-edge-to-hold-icon-extra-small:3px;--spectrum-action-button-edge-to-hold-icon-small:3px;--spectrum-action-button-edge-to-hold-icon-medium:5px;--spectrum-action-button-edge-to-hold-icon-large:6px;--spectrum-action-button-edge-to-hold-icon-extra-large:7px;--spectrum-tooltip-tip-width:10px;--spectrum-tooltip-tip-height:5px;--spectrum-tooltip-maximum-width:200px;--spectrum-progress-circle-size-small:20px;--spectrum-progress-circle-size-medium:40px;--spectrum-progress-circle-size-large:80px;--spectrum-progress-circle-thickness-small:3px;--spectrum-progress-circle-thickness-medium:4px;--spectrum-progress-circle-thickness-large:5px;--spectrum-toast-height:56px;--spectrum-toast-maximum-width:420px;--spectrum-toast-top-to-workflow-icon:17px;--spectrum-toast-top-to-text:16px;--spectrum-toast-bottom-to-text:19px;--spectrum-action-bar-height:56px;--spectrum-action-bar-top-to-item-counter:16px;--spectrum-swatch-size-extra-small:20px;--spectrum-swatch-size-small:30px;--spectrum-swatch-size-medium:40px;--spectrum-swatch-size-large:50px;--spectrum-progress-bar-thickness-small:5px;--spectrum-progress-bar-thickness-medium:8px;--spectrum-progress-bar-thickness-large:10px;--spectrum-progress-bar-thickness-extra-large:13px;--spectrum-meter-default-width:240px;--spectrum-meter-thickness-small:5px;--spectrum-meter-thickness-large:8px;--spectrum-tag-top-to-avatar-small:5px;--spectrum-tag-top-to-avatar-medium:7px;--spectrum-tag-top-to-avatar-large:11px;--spectrum-tag-top-to-cross-icon-small:10px;--spectrum-tag-top-to-cross-icon-medium:15px;--spectrum-tag-top-to-cross-icon-large:19px;--spectrum-popover-top-to-content-area:5px;--spectrum-menu-item-edge-to-content-not-selected-small:24px;--spectrum-menu-item-edge-to-content-not-selected-medium:42px;--spectrum-menu-item-edge-to-content-not-selected-large:47px;--spectrum-menu-item-edge-to-content-not-selected-extra-large:54px;--spectrum-menu-item-top-to-disclosure-icon-small:9px;--spectrum-menu-item-top-to-disclosure-icon-medium:13px;--spectrum-menu-item-top-to-disclosure-icon-large:17px;--spectrum-menu-item-top-to-disclosure-icon-extra-large:22px;--spectrum-menu-item-top-to-selected-icon-small:9px;--spectrum-menu-item-top-to-selected-icon-medium:13px;--spectrum-menu-item-top-to-selected-icon-large:17px;--spectrum-menu-item-top-to-selected-icon-extra-large:22px;--spectrum-slider-control-to-field-label-small:6px;--spectrum-slider-control-to-field-label-medium:10px;--spectrum-slider-control-to-field-label-large:14px;--spectrum-slider-control-to-field-label-extra-large:17px;--spectrum-picker-visual-to-disclosure-icon-small:9px;--spectrum-picker-visual-to-disclosure-icon-medium:10px;--spectrum-picker-visual-to-disclosure-icon-large:11px;--spectrum-picker-visual-to-disclosure-icon-extra-large:13px;--spectrum-text-area-minimum-width:140px;--spectrum-text-area-minimum-height:70px;--spectrum-combo-box-visual-to-field-button-small:9px;--spectrum-combo-box-visual-to-field-button-medium:10px;--spectrum-combo-box-visual-to-field-button-large:11px;--spectrum-combo-box-visual-to-field-button-extra-large:13px;--spectrum-thumbnail-size-50:20px;--spectrum-thumbnail-size-75:22px;--spectrum-thumbnail-size-100:26px;--spectrum-thumbnail-size-200:28px;--spectrum-thumbnail-size-300:32px;--spectrum-thumbnail-size-400:36px;--spectrum-thumbnail-size-500:40px;--spectrum-thumbnail-size-600:46px;--spectrum-thumbnail-size-700:50px;--spectrum-thumbnail-size-800:55px;--spectrum-thumbnail-size-900:62px;--spectrum-thumbnail-size-1000:70px;--spectrum-alert-dialog-title-size:var(--spectrum-heading-size-xs);--spectrum-alert-dialog-description-size:var(--spectrum-body-size-xs);--spectrum-opacity-checkerboard-square-size:10px;--spectrum-contextual-help-title-size:var(--spectrum-heading-size-xxs);--spectrum-contextual-help-body-size:var(--spectrum-heading-size-xs);--spectrum-breadcrumbs-height-multiline:84px;--spectrum-breadcrumbs-top-to-text:17px;--spectrum-breadcrumbs-top-to-text-compact:16px;--spectrum-breadcrumbs-top-to-text-multiline:15px;--spectrum-breadcrumbs-bottom-to-text:19px;--spectrum-breadcrumbs-bottom-to-text-compact:19px;--spectrum-breadcrumbs-bottom-to-text-multiline:10px;--spectrum-breadcrumbs-start-edge-to-text:9px;--spectrum-breadcrumbs-top-text-to-bottom-text:11px;--spectrum-breadcrumbs-top-to-separator-icon:25px;--spectrum-breadcrumbs-top-to-separator-icon-compact:23px;--spectrum-breadcrumbs-top-to-separator-icon-multiline:20px;--spectrum-breadcrumbs-separator-icon-to-bottom-text-multiline:15px;--spectrum-breadcrumbs-top-to-truncated-menu:10px;--spectrum-breadcrumbs-top-to-truncated-menu-compact:5px;--spectrum-avatar-size-50:20px;--spectrum-avatar-size-75:22px;--spectrum-avatar-size-100:26px;--spectrum-avatar-size-200:28px;--spectrum-avatar-size-300:32px;--spectrum-avatar-size-400:36px;--spectrum-avatar-size-500:40px;--spectrum-avatar-size-600:46px;--spectrum-avatar-size-700:50px;--spectrum-alert-banner-minimum-height:64px;--spectrum-alert-banner-width:680px;--spectrum-alert-banner-top-to-workflow-icon:21px;--spectrum-alert-banner-top-to-text:21px;--spectrum-alert-banner-bottom-to-text:22px;--spectrum-rating-indicator-width:22px;--spectrum-rating-indicator-to-icon:5px;--spectrum-color-area-width:240px;--spectrum-color-area-minimum-width:80px;--spectrum-color-area-height:240px;--spectrum-color-area-minimum-height:80px;--spectrum-color-wheel-width:240px;--spectrum-color-wheel-minimum-width:219px;--spectrum-color-slider-length:240px;--spectrum-color-slider-minimum-length:100px;--spectrum-illustrated-message-title-size:var(--spectrum-heading-size-s);--spectrum-illustrated-message-cjk-title-size:var(
137
133
  --spectrum-heading-cjk-size-s
138
134
  );--spectrum-illustrated-message-body-size:var(--spectrum-body-size-xs);--spectrum-coach-mark-minimum-width:208px;--spectrum-coach-mark-edge-to-content:var(--spectrum-spacing-300);--spectrum-coach-mark-pagination-text-to-bottom-edge:22px;--spectrum-coach-mark-media-minimum-height:121px;--spectrum-coach-mark-title-size:var(--spectrum-heading-size-xxs);--spectrum-coach-mark-body-size:var(--spectrum-body-size-xs);--spectrum-coach-mark-pagination-body-size:var(--spectrum-body-size-xs);--spectrum-accordion-top-to-text-compact-small:2px;--spectrum-accordion-top-to-text-regular-small:7px;--spectrum-accordion-small-top-to-text-spacious:12px;--spectrum-accordion-top-to-text-compact-medium:4px;--spectrum-accordion-top-to-text-regular-medium:9px;--spectrum-accordion-top-to-text-spacious-medium:14px;--spectrum-accordion-top-to-text-compact-large:7px;--spectrum-accordion-top-to-text-regular-large:12px;--spectrum-accordion-top-to-text-spacious-large:14px;--spectrum-accordion-top-to-text-compact-extra-large:7px;--spectrum-accordion-top-to-text-regular-extra-large:12px;--spectrum-accordion-top-to-text-spacious-extra-large:14px;--spectrum-accordion-bottom-to-text-compact-small:4px;--spectrum-accordion-bottom-to-text-regular-small:9px;--spectrum-accordion-bottom-to-text-spacious-small:14px;--spectrum-accordion-bottom-to-text-compact-medium:8px;--spectrum-accordion-bottom-to-text-regular-medium:13px;--spectrum-accordion-bottom-to-text-spacious-medium:18px;--spectrum-accordion-bottom-to-text-compact-large:9px;--spectrum-accordion-bottom-to-text-regular-large:14px;--spectrum-accordion-bottom-to-text-spacious-large:19px;--spectrum-accordion-bottom-to-text-compact-extra-large:10px;--spectrum-accordion-bottom-to-text-regular-extra-large:15px;--spectrum-accordion-bottom-to-text-spacious-extra-large:21px;--spectrum-accordion-minimum-width:250px;--spectrum-accordion-disclosure-indicator-to-text:0px;--spectrum-accordion-edge-to-disclosure-indicator:0px;--spectrum-accordion-edge-to-text:0px;--spectrum-accordion-focus-indicator-gap:0px;--spectrum-accordion-content-area-top-to-content:10px;--spectrum-accordion-content-area-bottom-to-content:20px;--spectrum-color-handle-size:20px;--spectrum-color-handle-size-key-focus:40px;--spectrum-table-column-header-row-top-to-text-small:10px;--spectrum-table-column-header-row-top-to-text-medium:9px;--spectrum-table-column-header-row-top-to-text-large:13px;--spectrum-table-column-header-row-top-to-text-extra-large:16px;--spectrum-table-column-header-row-bottom-to-text-small:11px;--spectrum-table-column-header-row-bottom-to-text-medium:10px;--spectrum-table-column-header-row-bottom-to-text-large:13px;--spectrum-table-column-header-row-bottom-to-text-extra-large:17px;--spectrum-table-row-height-small-regular:40px;--spectrum-table-row-height-medium-regular:50px;--spectrum-table-row-height-large-regular:60px;--spectrum-table-row-height-extra-large-regular:70px;--spectrum-table-row-height-small-spacious:50px;--spectrum-table-row-height-medium-spacious:60px;--spectrum-table-row-height-large-spacious:70px;--spectrum-table-row-height-extra-large-spacious:80px;--spectrum-table-row-top-to-text-small-regular:10px;--spectrum-table-row-top-to-text-medium-regular:14px;--spectrum-table-row-top-to-text-large-regular:18px;--spectrum-table-row-top-to-text-extra-large-regular:21px;--spectrum-table-row-bottom-to-text-small-regular:11px;--spectrum-table-row-bottom-to-text-medium-regular:15px;--spectrum-table-row-bottom-to-text-large-regular:18px;--spectrum-table-row-bottom-to-text-extra-large-regular:22px;--spectrum-table-row-top-to-text-small-spacious:15px;--spectrum-table-row-top-to-text-medium-spacious:18px;--spectrum-table-row-top-to-text-large-spacious:23px;--spectrum-table-row-top-to-text-extra-large-spacious:26px;--spectrum-table-row-bottom-to-text-small-spacious:16px;--spectrum-table-row-bottom-to-text-medium-spacious:18px;--spectrum-table-row-bottom-to-text-large-spacious:23px;--spectrum-table-row-bottom-to-text-extra-large-spacious:27px;--spectrum-table-edge-to-content:16px;--spectrum-table-checkbox-to-text:30px;--spectrum-table-header-row-checkbox-to-top-small:14px;--spectrum-table-header-row-checkbox-to-top-medium:13px;--spectrum-table-header-row-checkbox-to-top-large:17px;--spectrum-table-header-row-checkbox-to-top-extra-large:21px;--spectrum-table-row-checkbox-to-top-small-compact:9px;--spectrum-table-row-checkbox-to-top-small-regular:14px;--spectrum-table-row-checkbox-to-top-small-spacious:19px;--spectrum-table-row-checkbox-to-top-medium-compact:13px;--spectrum-table-row-checkbox-to-top-medium-regular:18px;--spectrum-table-row-checkbox-to-top-medium-spacious:23px;--spectrum-table-row-checkbox-to-top-large-compact:17px;--spectrum-table-row-checkbox-to-top-large-regular:22px;--spectrum-table-row-checkbox-to-top-large-spacious:27px;--spectrum-table-row-checkbox-to-top-extra-large-compact:21px;--spectrum-table-row-checkbox-to-top-extra-large-regular:26px;--spectrum-table-row-checkbox-to-top-extra-large-spacious:31px;--spectrum-table-section-header-row-height-small:30px;--spectrum-table-section-header-row-height-medium:40px;--spectrum-table-section-header-row-height-large:50px;--spectrum-table-section-header-row-height-extra-large:60px;--spectrum-table-thumbnail-to-top-minimum-small-compact:5px;--spectrum-table-thumbnail-to-top-minimum-medium-compact:6px;--spectrum-table-thumbnail-to-top-minimum-large-compact:9px;--spectrum-table-thumbnail-to-top-minimum-extra-large-compact:10px;--spectrum-table-thumbnail-to-top-minimum-small-regular:6px;--spectrum-table-thumbnail-to-top-minimum-medium-regular:9px;--spectrum-table-thumbnail-to-top-minimum-large-regular:10px;--spectrum-table-thumbnail-to-top-minimum-extra-large-regular:10px;--spectrum-table-thumbnail-to-top-minimum-small-spacious:9px;--spectrum-table-thumbnail-to-top-minimum-medium-spacious:10px;--spectrum-table-thumbnail-to-top-minimum-large-spacious:10px;--spectrum-table-thumbnail-to-top-minimum-extra-large-spacious:12px;--spectrum-tab-item-to-tab-item-horizontal-small:27px;--spectrum-tab-item-to-tab-item-horizontal-medium:30px;--spectrum-tab-item-to-tab-item-horizontal-large:33px;--spectrum-tab-item-to-tab-item-horizontal-extra-large:36px;--spectrum-tab-item-to-tab-item-vertical-small:5px;--spectrum-tab-item-to-tab-item-vertical-medium:5px;--spectrum-tab-item-to-tab-item-vertical-large:6px;--spectrum-tab-item-to-tab-item-vertical-extra-large:6px;--spectrum-tab-item-start-to-edge-small:13px;--spectrum-tab-item-start-to-edge-medium:15px;--spectrum-tab-item-start-to-edge-large:17px;--spectrum-tab-item-start-to-edge-extra-large:19px;--spectrum-tab-item-top-to-text-small:14px;--spectrum-tab-item-bottom-to-text-small:15px;--spectrum-tab-item-top-to-text-medium:18px;--spectrum-tab-item-bottom-to-text-medium:19px;--spectrum-tab-item-top-to-text-large:22px;--spectrum-tab-item-bottom-to-text-large:22px;--spectrum-tab-item-top-to-text-extra-large:25px;--spectrum-tab-item-bottom-to-text-extra-large:25px;--spectrum-tab-item-top-to-text-compact-small:5px;--spectrum-tab-item-bottom-to-text-compact-small:6px;--spectrum-tab-item-top-to-text-compact-medium:9px;--spectrum-tab-item-bottom-to-text-compact-medium:10px;--spectrum-tab-item-top-to-text-compact-large:12px;--spectrum-tab-item-bottom-to-text-compact-large:14px;--spectrum-tab-item-top-to-text-compact-extra-large:15px;--spectrum-tab-item-bottom-to-text-compact-extra-large:17px;--spectrum-tab-item-top-to-workflow-icon-small:15px;--spectrum-tab-item-top-to-workflow-icon-medium:19px;--spectrum-tab-item-top-to-workflow-icon-large:23px;--spectrum-tab-item-top-to-workflow-icon-extra-large:26px;--spectrum-tab-item-top-to-workflow-icon-compact-small:5px;--spectrum-tab-item-top-to-workflow-icon-compact-medium:9px;--spectrum-tab-item-top-to-workflow-icon-compact-large:13px;--spectrum-tab-item-top-to-workflow-icon-compact-extra-large:16px;--spectrum-tab-item-focus-indicator-gap-small:9px;--spectrum-tab-item-focus-indicator-gap-medium:10px;--spectrum-tab-item-focus-indicator-gap-large:11px;--spectrum-tab-item-focus-indicator-gap-extra-large:12px;--spectrum-side-navigation-width:240px;--spectrum-side-navigation-minimum-width:200px;--spectrum-side-navigation-maximum-width:300px;--spectrum-side-navigation-second-level-edge-to-text:30px;--spectrum-side-navigation-third-level-edge-to-text:45px;--spectrum-side-navigation-with-icon-second-level-edge-to-text:62px;--spectrum-side-navigation-with-icon-third-level-edge-to-text:77px;--spectrum-side-navigation-item-to-item:5px;--spectrum-side-navigation-item-to-header:20px;--spectrum-side-navigation-bottom-to-text:10px;--spectrum-tray-top-to-content-area:5px;--spectrum-workflow-icon-size-50:18px;--spectrum-workflow-icon-size-75:20px;--spectrum-workflow-icon-size-100:22px;--spectrum-workflow-icon-size-200:24px;--spectrum-workflow-icon-size-300:28px;--spectrum-text-to-visual-50:8px;--spectrum-text-to-visual-75:9px;--spectrum-text-to-visual-100:10px;--spectrum-text-to-visual-200:11px;--spectrum-text-to-visual-300:13px;--spectrum-text-to-control-75:11px;--spectrum-text-to-control-100:13px;--spectrum-text-to-control-200:14px;--spectrum-text-to-control-300:16px;--spectrum-component-height-50:26px;--spectrum-component-height-75:30px;--spectrum-component-height-100:40px;--spectrum-component-height-200:50px;--spectrum-component-height-300:60px;--spectrum-component-height-400:70px;--spectrum-component-height-500:80px;--spectrum-component-pill-edge-to-visual-75:13px;--spectrum-component-pill-edge-to-visual-100:17px;--spectrum-component-pill-edge-to-visual-200:22px;--spectrum-component-pill-edge-to-visual-300:27px;--spectrum-component-pill-edge-to-visual-only-75:5px;--spectrum-component-pill-edge-to-visual-only-100:9px;--spectrum-component-pill-edge-to-visual-only-200:13px;--spectrum-component-pill-edge-to-visual-only-300:16px;--spectrum-component-pill-edge-to-text-75:15px;--spectrum-component-pill-edge-to-text-100:20px;--spectrum-component-pill-edge-to-text-200:25px;--spectrum-component-pill-edge-to-text-300:30px;--spectrum-component-edge-to-visual-50:7px;--spectrum-component-edge-to-visual-75:9px;--spectrum-component-edge-to-visual-100:12px;--spectrum-component-edge-to-visual-200:16px;--spectrum-component-edge-to-visual-300:19px;--spectrum-component-edge-to-visual-only-50:4px;--spectrum-component-edge-to-visual-only-75:5px;--spectrum-component-edge-to-visual-only-100:9px;--spectrum-component-edge-to-visual-only-200:13px;--spectrum-component-edge-to-visual-only-300:16px;--spectrum-component-edge-to-text-50:10px;--spectrum-component-edge-to-text-75:11px;--spectrum-component-edge-to-text-100:15px;--spectrum-component-edge-to-text-200:19px;--spectrum-component-edge-to-text-300:22px;--spectrum-component-top-to-workflow-icon-50:4px;--spectrum-component-top-to-workflow-icon-75:5px;--spectrum-component-top-to-workflow-icon-100:9px;--spectrum-component-top-to-workflow-icon-200:13px;--spectrum-component-top-to-workflow-icon-300:16px;--spectrum-component-top-to-text-50:4px;--spectrum-component-top-to-text-75:5px;--spectrum-component-top-to-text-100:8px;--spectrum-component-top-to-text-200:12px;--spectrum-component-top-to-text-300:15px;--spectrum-component-bottom-to-text-50:6px;--spectrum-component-bottom-to-text-75:6px;--spectrum-component-bottom-to-text-100:11px;--spectrum-component-bottom-to-text-200:14px;--spectrum-component-bottom-to-text-300:18px;--spectrum-component-to-menu-small:7px;--spectrum-component-to-menu-medium:8px;--spectrum-component-to-menu-large:9px;--spectrum-component-to-menu-extra-large:10px;--spectrum-field-edge-to-disclosure-icon-75:9px;--spectrum-field-edge-to-disclosure-icon-100:13px;--spectrum-field-edge-to-disclosure-icon-200:17px;--spectrum-field-edge-to-disclosure-icon-300:22px;--spectrum-field-end-edge-to-disclosure-icon-75:9px;--spectrum-field-end-edge-to-disclosure-icon-100:13px;--spectrum-field-end-edge-to-disclosure-icon-200:17px;--spectrum-field-end-edge-to-disclosure-icon-300:22px;--spectrum-field-top-to-disclosure-icon-75:9px;--spectrum-field-top-to-disclosure-icon-100:13px;--spectrum-field-top-to-disclosure-icon-200:17px;--spectrum-field-top-to-disclosure-icon-300:22px;--spectrum-field-top-to-alert-icon-small:5px;--spectrum-field-top-to-alert-icon-medium:9px;--spectrum-field-top-to-alert-icon-large:13px;--spectrum-field-top-to-alert-icon-extra-large:16px;--spectrum-field-top-to-validation-icon-small:9px;--spectrum-field-top-to-validation-icon-medium:13px;--spectrum-field-top-to-validation-icon-large:17px;--spectrum-field-top-to-validation-icon-extra-large:22px;--spectrum-field-top-to-progress-circle-small:7px;--spectrum-field-top-to-progress-circle-medium:12px;--spectrum-field-top-to-progress-circle-large:17px;--spectrum-field-top-to-progress-circle-extra-large:22px;--spectrum-field-edge-to-alert-icon-small:11px;--spectrum-field-edge-to-alert-icon-medium:15px;--spectrum-field-edge-to-alert-icon-large:19px;--spectrum-field-edge-to-alert-icon-extra-large:22px;--spectrum-field-edge-to-validation-icon-small:11px;--spectrum-field-edge-to-validation-icon-medium:15px;--spectrum-field-edge-to-validation-icon-large:19px;--spectrum-field-edge-to-validation-icon-extra-large:22px;--spectrum-field-text-to-alert-icon-small:10px;--spectrum-field-text-to-alert-icon-medium:15px;--spectrum-field-text-to-alert-icon-large:19px;--spectrum-field-text-to-alert-icon-extra-large:22px;--spectrum-field-text-to-validation-icon-small:10px;--spectrum-field-text-to-validation-icon-medium:15px;--spectrum-field-text-to-validation-icon-large:19px;--spectrum-field-text-to-validation-icon-extra-large:22px;--spectrum-field-width:240px;--spectrum-character-count-to-field-quiet-small:-4px;--spectrum-character-count-to-field-quiet-medium:-4px;--spectrum-character-count-to-field-quiet-large:-4px;--spectrum-character-count-to-field-quiet-extra-large:-5px;--spectrum-side-label-character-count-to-field:15px;--spectrum-side-label-character-count-top-margin-small:5px;--spectrum-side-label-character-count-top-margin-medium:10px;--spectrum-side-label-character-count-top-margin-large:14px;--spectrum-side-label-character-count-top-margin-extra-large:18px;--spectrum-disclosure-indicator-top-to-disclosure-icon-small:9px;--spectrum-disclosure-indicator-top-to-disclosure-icon-medium:13px;--spectrum-disclosure-indicator-top-to-disclosure-icon-large:17px;--spectrum-disclosure-indicator-top-to-disclosure-icon-extra-large:22px;--spectrum-navigational-indicator-top-to-back-icon-small:9px;--spectrum-navigational-indicator-top-to-back-icon-medium:13px;--spectrum-navigational-indicator-top-to-back-icon-large:17px;--spectrum-navigational-indicator-top-to-back-icon-extra-large:22px;--spectrum-color-control-track-width:30px;--spectrum-font-size-50:13px;--spectrum-font-size-75:15px;--spectrum-font-size-100:17px;--spectrum-font-size-200:19px;--spectrum-font-size-300:22px;--spectrum-font-size-400:24px;--spectrum-font-size-500:27px;--spectrum-font-size-600:31px;--spectrum-font-size-700:34px;--spectrum-font-size-800:39px;--spectrum-font-size-900:44px;--spectrum-font-size-1000:49px;--spectrum-font-size-1100:55px;--spectrum-font-size-1200:62px;--spectrum-font-size-1300:70px}:host,:root{--spectrum-edge-to-visual-only-75:5px;--spectrum-edge-to-visual-only-100:9px;--spectrum-edge-to-visual-only-200:13px;--spectrum-edge-to-visual-only-300:16px;--spectrum-slider-tick-mark-height:13px;--spectrum-slider-ramp-track-height:20px;--spectrum-colorwheel-path:"M 119 119 m -119 0 a 119 119 0 1 0 238 0 a 119 119 0 1 0 -238 0.2 M 119 119 m -91 0 a 91 91 0 1 0 182 0 a 91 91 0 1 0 -182 0";--spectrum-colorwheel-colorarea-container-size:182px;--spectrum-colorloupe-checkerboard-fill:url(#checkerboard-secondary);--spectrum-menu-item-selectable-edge-to-text-not-selected-small:34px;--spectrum-menu-item-selectable-edge-to-text-not-selected-medium:42px;--spectrum-menu-item-selectable-edge-to-text-not-selected-large:47px;--spectrum-menu-item-selectable-edge-to-text-not-selected-extra-large:54px;--spectrum-menu-item-checkmark-height-small:12px;--spectrum-menu-item-checkmark-height-medium:14px;--spectrum-menu-item-checkmark-height-large:16px;--spectrum-menu-item-checkmark-height-extra-large:16px;--spectrum-menu-item-checkmark-width-small:12px;--spectrum-menu-item-checkmark-width-medium:14px;--spectrum-menu-item-checkmark-width-large:16px;--spectrum-menu-item-checkmark-width-extra-large:16px;--spectrum-rating-icon-spacing:var(--spectrum-spacing-100);--spectrum-button-top-to-text-small:6px;--spectrum-button-bottom-to-text-small:5px;--spectrum-button-top-to-text-medium:9px;--spectrum-button-bottom-to-text-medium:10px;--spectrum-button-top-to-text-large:12px;--spectrum-button-bottom-to-text-large:13px;--spectrum-button-top-to-text-extra-large:16px;--spectrum-button-bottom-to-text-extra-large:17px;--spectrum-alert-banner-close-button-spacing:var(--spectrum-spacing-200);--spectrum-alert-banner-edge-to-divider:var(--spectrum-spacing-200);--spectrum-alert-banner-edge-to-button:var(--spectrum-spacing-200);--spectrum-alert-banner-text-to-button-vertical:var(