@spectrum-web-components/styles 0.33.2 → 0.33.3-overlay.65

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/styles",
3
- "version": "0.33.2",
3
+ "version": "0.33.3-overlay.65+e3bf25c5c",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -104,19 +104,19 @@
104
104
  "lit-html"
105
105
  ],
106
106
  "dependencies": {
107
- "@spectrum-web-components/base": "^0.33.2"
107
+ "@spectrum-web-components/base": "^0.33.3-overlay.65+e3bf25c5c"
108
108
  },
109
109
  "devDependencies": {
110
- "@spectrum-css/commons": "^7.0.6",
111
- "@spectrum-css/expressvars": "^3.0.5",
112
- "@spectrum-css/tokens": "^10.0.0",
113
- "@spectrum-css/typography": "^5.0.17",
114
- "@spectrum-css/vars": "^9.0.5"
110
+ "@spectrum-css/commons": "^7.0.8",
111
+ "@spectrum-css/expressvars": "^3.0.8",
112
+ "@spectrum-css/tokens": "^10.2.0",
113
+ "@spectrum-css/typography": "^5.0.23",
114
+ "@spectrum-css/vars": "^9.0.8"
115
115
  },
116
116
  "customElements": "custom-elements.json",
117
117
  "sideEffects": [
118
118
  "./**/*.css"
119
119
  ],
120
120
  "style": "all-medium-lightest.css",
121
- "gitHead": "6d5d6b3c31d92a058202a242a283125d25131f81"
121
+ "gitHead": "e3bf25c5c6676cb5ade2ca9ea633540cb08aee23"
122
122
  }
@@ -17,6 +17,12 @@ governing permissions and limitations under the License.
17
17
  --spectrum-static-black-focus-indicator-color: var(--spectrum-black);
18
18
  --spectrum-overlay-color: var(--spectrum-black);
19
19
  --spectrum-opacity-disabled: 0.3;
20
+ --spectrum-neutral-subdued-content-color-selected: var(
21
+ --spectrum-neutral-subdued-content-color-down
22
+ );
23
+ --spectrum-accent-content-color-selected: var(
24
+ --spectrum-accent-content-color-down
25
+ );
20
26
  --spectrum-disabled-background-color: var(--spectrum-gray-200);
21
27
  --spectrum-disabled-static-white-background-color: var(
22
28
  --spectrum-transparent-white-200
@@ -117,9 +123,12 @@ governing permissions and limitations under the License.
117
123
  --spectrum-color-handle-outer-border-opacity: var(
118
124
  --spectrum-color-handle-inner-border-opacity
119
125
  );
120
- --spectrum-floating-action-button-shadow-color: var(
126
+ --spectrum-floating-action-button-drop-shadow-color: var(
121
127
  --spectrum-transparent-black-300
122
128
  );
129
+ --spectrum-floating-action-button-shadow-color: var(
130
+ --spectrum-floating-action-button-drop-shadow-color
131
+ );
123
132
  --spectrum-white-rgb: 255, 255, 255;
124
133
  --spectrum-white: rgba(var(--spectrum-white-rgb));
125
134
  --spectrum-transparent-white-100-rgb: 255, 255, 255;
@@ -249,7 +258,10 @@ governing permissions and limitations under the License.
249
258
  --spectrum-popover-tip-height: 8px;
250
259
  --spectrum-menu-item-label-to-description: 1px;
251
260
  --spectrum-picker-minimum-width-multiplier: 2;
252
- --spectrum-picker-end-edge-to-disclousure-icon-quiet: 0px;
261
+ --spectrum-picker-end-edge-to-disclousure-icon-quiet: var(
262
+ --spectrum-picker-end-edge-to-disclosure-icon-quiet
263
+ );
264
+ --spectrum-picker-end-edge-to-disclosure-icon-quiet: 0px;
253
265
  --spectrum-text-field-minimum-width-multiplier: 1.5;
254
266
  --spectrum-combo-box-minimum-width-multiplier: 2.5;
255
267
  --spectrum-combo-box-quiet-minimum-width-multiplier: 2;
@@ -310,6 +322,25 @@ governing permissions and limitations under the License.
310
322
  --spectrum-color-handle-drop-shadow-x: 0;
311
323
  --spectrum-color-handle-drop-shadow-y: 0;
312
324
  --spectrum-color-handle-drop-shadow-blur: 0;
325
+ --spectrum-tab-item-height-small: var(--spectrum-component-height-200);
326
+ --spectrum-tab-item-height-medium: var(--spectrum-component-height-300);
327
+ --spectrum-tab-item-height-large: var(--spectrum-component-height-400);
328
+ --spectrum-tab-item-height-extra-large: var(
329
+ --spectrum-component-height-500
330
+ );
331
+ --spectrum-tab-item-compact-height-small: var(
332
+ --spectrum-component-height-75
333
+ );
334
+ --spectrum-tab-item-compact-height-medium: var(
335
+ --spectrum-component-height-100
336
+ );
337
+ --spectrum-tab-item-compact-height-large: var(
338
+ --spectrum-component-height-200
339
+ );
340
+ --spectrum-tab-item-compact-height-extra-large: var(
341
+ --spectrum-component-height-300
342
+ );
343
+ --spectrum-tab-item-start-to-edge-quiet: 0px;
313
344
  --spectrum-android-elevation: 2dp;
314
345
  --spectrum-spacing-50: 2px;
315
346
  --spectrum-spacing-75: 4px;
@@ -206,6 +206,46 @@ governing permissions and limitations under the License.
206
206
  --spectrum-accordion-content-area-bottom-to-content: 20px;
207
207
  --spectrum-color-handle-size: 20px;
208
208
  --spectrum-color-handle-size-key-focus: 40px;
209
+ --spectrum-tab-item-to-tab-item-horizontal-small: 27px;
210
+ --spectrum-tab-item-to-tab-item-horizontal-medium: 30px;
211
+ --spectrum-tab-item-to-tab-item-horizontal-large: 33px;
212
+ --spectrum-tab-item-to-tab-item-horizontal-extra-large: 36px;
213
+ --spectrum-tab-item-to-tab-item-vertical-small: 5px;
214
+ --spectrum-tab-item-to-tab-item-vertical-medium: 5px;
215
+ --spectrum-tab-item-to-tab-item-vertical-large: 6px;
216
+ --spectrum-tab-item-to-tab-item-vertical-extra-large: 6px;
217
+ --spectrum-tab-item-start-to-edge-small: 13px;
218
+ --spectrum-tab-item-start-to-edge-medium: 15px;
219
+ --spectrum-tab-item-start-to-edge-large: 17px;
220
+ --spectrum-tab-item-start-to-edge-extra-large: 19px;
221
+ --spectrum-tab-item-top-to-text-small: 14px;
222
+ --spectrum-tab-item-bottom-to-text-small: 15px;
223
+ --spectrum-tab-item-top-to-text-medium: 18px;
224
+ --spectrum-tab-item-bottom-to-text-medium: 19px;
225
+ --spectrum-tab-item-top-to-text-large: 22px;
226
+ --spectrum-tab-item-bottom-to-text-large: 22px;
227
+ --spectrum-tab-item-top-to-text-extra-large: 25px;
228
+ --spectrum-tab-item-bottom-to-text-extra-large: 25px;
229
+ --spectrum-tab-item-top-to-text-compact-small: 5px;
230
+ --spectrum-tab-item-bottom-to-text-compact-small: 6px;
231
+ --spectrum-tab-item-top-to-text-compact-medium: 9px;
232
+ --spectrum-tab-item-bottom-to-text-compact-medium: 10px;
233
+ --spectrum-tab-item-top-to-text-compact-large: 12px;
234
+ --spectrum-tab-item-bottom-to-text-compact-large: 14px;
235
+ --spectrum-tab-item-top-to-text-compact-extra-large: 15px;
236
+ --spectrum-tab-item-bottom-to-text-compact-extra-large: 17px;
237
+ --spectrum-tab-item-top-to-workflow-icon-small: 15px;
238
+ --spectrum-tab-item-top-to-workflow-icon-medium: 19px;
239
+ --spectrum-tab-item-top-to-workflow-icon-large: 23px;
240
+ --spectrum-tab-item-top-to-workflow-icon-extra-large: 26px;
241
+ --spectrum-tab-item-top-to-workflow-icon-compact-small: 5px;
242
+ --spectrum-tab-item-top-to-workflow-icon-compact-medium: 9px;
243
+ --spectrum-tab-item-top-to-workflow-icon-compact-large: 13px;
244
+ --spectrum-tab-item-top-to-workflow-icon-compact-extra-large: 16px;
245
+ --spectrum-tab-item-focus-indicator-gap-small: 9px;
246
+ --spectrum-tab-item-focus-indicator-gap-medium: 10px;
247
+ --spectrum-tab-item-focus-indicator-gap-large: 11px;
248
+ --spectrum-tab-item-focus-indicator-gap-extra-large: 12px;
209
249
  --spectrum-side-navigation-width: 240px;
210
250
  --spectrum-side-navigation-minimum-width: 200px;
211
251
  --spectrum-side-navigation-maximum-width: 300px;
@@ -203,6 +203,46 @@ governing permissions and limitations under the License.
203
203
  --spectrum-accordion-content-area-bottom-to-content: 16px;
204
204
  --spectrum-color-handle-size: 16px;
205
205
  --spectrum-color-handle-size-key-focus: 32px;
206
+ --spectrum-tab-item-to-tab-item-horizontal-small: 21px;
207
+ --spectrum-tab-item-to-tab-item-horizontal-medium: 24px;
208
+ --spectrum-tab-item-to-tab-item-horizontal-large: 27px;
209
+ --spectrum-tab-item-to-tab-item-horizontal-extra-large: 30px;
210
+ --spectrum-tab-item-to-tab-item-vertical-small: 4px;
211
+ --spectrum-tab-item-to-tab-item-vertical-medium: 4px;
212
+ --spectrum-tab-item-to-tab-item-vertical-large: 5px;
213
+ --spectrum-tab-item-to-tab-item-vertical-extra-large: 5px;
214
+ --spectrum-tab-item-start-to-edge-small: 12px;
215
+ --spectrum-tab-item-start-to-edge-medium: 12px;
216
+ --spectrum-tab-item-start-to-edge-large: 13px;
217
+ --spectrum-tab-item-start-to-edge-extra-large: 13px;
218
+ --spectrum-tab-item-top-to-text-small: 11px;
219
+ --spectrum-tab-item-bottom-to-text-small: 12px;
220
+ --spectrum-tab-item-top-to-text-medium: 14px;
221
+ --spectrum-tab-item-bottom-to-text-medium: 14px;
222
+ --spectrum-tab-item-top-to-text-large: 16px;
223
+ --spectrum-tab-item-bottom-to-text-large: 18px;
224
+ --spectrum-tab-item-top-to-text-extra-large: 19px;
225
+ --spectrum-tab-item-bottom-to-text-extra-large: 20px;
226
+ --spectrum-tab-item-top-to-text-compact-small: 4px;
227
+ --spectrum-tab-item-bottom-to-text-compact-small: 5px;
228
+ --spectrum-tab-item-top-to-text-compact-medium: 6px;
229
+ --spectrum-tab-item-bottom-to-text-compact-medium: 8px;
230
+ --spectrum-tab-item-top-to-text-compact-large: 10px;
231
+ --spectrum-tab-item-bottom-to-text-compact-large: 12px;
232
+ --spectrum-tab-item-top-to-text-compact-extra-large: 12px;
233
+ --spectrum-tab-item-bottom-to-text-compact-extra-large: 13px;
234
+ --spectrum-tab-item-top-to-workflow-icon-small: 13px;
235
+ --spectrum-tab-item-top-to-workflow-icon-medium: 15px;
236
+ --spectrum-tab-item-top-to-workflow-icon-large: 17px;
237
+ --spectrum-tab-item-top-to-workflow-icon-extra-large: 19px;
238
+ --spectrum-tab-item-top-to-workflow-icon-compact-small: 3px;
239
+ --spectrum-tab-item-top-to-workflow-icon-compact-medium: 7px;
240
+ --spectrum-tab-item-top-to-workflow-icon-compact-large: 9px;
241
+ --spectrum-tab-item-top-to-workflow-icon-compact-extra-large: 11px;
242
+ --spectrum-tab-item-focus-indicator-gap-small: 7px;
243
+ --spectrum-tab-item-focus-indicator-gap-medium: 8px;
244
+ --spectrum-tab-item-focus-indicator-gap-large: 9px;
245
+ --spectrum-tab-item-focus-indicator-gap-extra-large: 10px;
206
246
  --spectrum-side-navigation-width: 192px;
207
247
  --spectrum-side-navigation-minimum-width: 160px;
208
248
  --spectrum-side-navigation-maximum-width: 240px;
@@ -52,4 +52,11 @@ governing permissions and limitations under the License.
52
52
  --spectrum-button-bottom-to-text-large: 13px;
53
53
  --spectrum-button-top-to-text-extra-large: 16px;
54
54
  --spectrum-button-bottom-to-text-extra-large: 17px;
55
+
56
+ --spectrum-alert-banner-close-button-spacing: var(--spectrum-spacing-200);
57
+ --spectrum-alert-banner-edge-to-divider: var(--spectrum-spacing-200);
58
+ --spectrum-alert-banner-edge-to-button: var(--spectrum-spacing-200);
59
+ --spectrum-alert-banner-text-to-button-vertical: var(
60
+ --spectrum-spacing-200
61
+ );
55
62
  }
@@ -52,4 +52,11 @@ governing permissions and limitations under the License.
52
52
  --spectrum-button-bottom-to-text-large: 10px;
53
53
  --spectrum-button-top-to-text-extra-large: 13px;
54
54
  --spectrum-button-bottom-to-text-extra-large: 13px;
55
+
56
+ --spectrum-alert-banner-close-button-spacing: var(--spectrum-spacing-100);
57
+ --spectrum-alert-banner-edge-to-divider: var(--spectrum-spacing-100);
58
+ --spectrum-alert-banner-edge-to-button: var(--spectrum-spacing-100);
59
+ --spectrum-alert-banner-text-to-button-vertical: var(
60
+ --spectrum-spacing-100
61
+ );
55
62
  }