@spectrum-web-components/styles 0.18.0 → 0.19.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.
package/core-global.css CHANGED
@@ -1671,18 +1671,6 @@ governing permissions and limitations under the License.
1671
1671
  --spectrum-alias-thumbnail-border-radius-small: var(
1672
1672
  --spectrum-global-dimension-size-25
1673
1673
  );
1674
- --spectrum-alias-actiongroup-button-gap: var(
1675
- --spectrum-global-dimension-size-100
1676
- );
1677
- --spectrum-alias-actiongroup-button-gap-compact: var(
1678
- --spectrum-global-dimension-size-0
1679
- );
1680
- --spectrum-alias-actiongroup-button-gap-quiet: var(
1681
- --spectrum-global-dimension-size-100
1682
- );
1683
- --spectrum-alias-actiongroup-button-gap-quiet-compact: var(
1684
- --spectrum-global-dimension-size-25
1685
- );
1686
1674
  --spectrum-alias-search-padding-left-s: var(
1687
1675
  --spectrum-global-dimension-size-85
1688
1676
  );
@@ -1722,18 +1722,6 @@ governing permissions and limitations under the License.
1722
1722
  --spectrum-alias-avatar-border-size: var(
1723
1723
  --spectrum-global-dimension-static-size-25
1724
1724
  );
1725
- --spectrum-alias-actiongroup-button-gap: var(
1726
- --spectrum-global-dimension-size-100
1727
- );
1728
- --spectrum-alias-actiongroup-button-gap-compact: var(
1729
- --spectrum-global-dimension-size-25
1730
- );
1731
- --spectrum-alias-actiongroup-button-gap-quiet: var(
1732
- --spectrum-global-dimension-size-100
1733
- );
1734
- --spectrum-alias-actiongroup-button-gap-quiet-compact: var(
1735
- --spectrum-global-dimension-size-25
1736
- );
1737
1725
  --spectrum-alias-search-padding-left-s: var(
1738
1726
  --spectrum-global-dimension-size-125
1739
1727
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/styles",
3
- "version": "0.18.0",
3
+ "version": "0.19.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -122,5 +122,5 @@
122
122
  "./**/*.css"
123
123
  ],
124
124
  "style": "all-medium-lightest.css",
125
- "gitHead": "15588c72c774b17cfac605b20ac52a27d123bd03"
125
+ "gitHead": "96da2eef637c5d50dd04a75d40a46353116787b4"
126
126
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["styles.test-vrt.ts"],
4
- "sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport * as stories from '../stories/styles.stories.js';\nimport { regressVisuals } from '../../../test/visual/test.js';\n\nregressVisuals('StylesStories', stories);\n"],
5
- "mappings": ";AAYA,YAAY,aAAa;AACzB,SAAS,sBAAsB;AAE/B,eAAe,iBAAiB,OAAO;",
4
+ "sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport * as stories from '../stories/styles.stories.js';\nimport { regressVisuals } from '../../../test/visual/test.js';\nimport type { TestsType } from '../../../test/visual/test.js';\n\nregressVisuals('StylesStories', stories as unknown as TestsType);\n"],
5
+ "mappings": ";AAYA,YAAY,aAAa;AACzB,SAAS,sBAAsB;AAG/B,eAAe,iBAAiB,OAA+B;",
6
6
  "names": []
7
7
  }
@@ -362,3 +362,13 @@ governing permissions and limitations under the License.
362
362
  --spectrum-neutral-background-color-default
363
363
  );
364
364
  }
365
+ :host,
366
+ :root {
367
+ --system-spectrum-actiongroup-gap-size-compact: var(--spectrum-spacing-50);
368
+ --system-spectrum-actiongroup-horizontal-spacing-compact: calc(
369
+ -1px * var(--spectrum-spacing-50)
370
+ );
371
+ --system-spectrum-actiongroup-vertical-spacing-compact: calc(
372
+ -1px * var(--spectrum-spacing-50)
373
+ );
374
+ }
@@ -376,3 +376,9 @@ governing permissions and limitations under the License.
376
376
  --spectrum-neutral-subdued-background-color-default
377
377
  );
378
378
  }
379
+ :host,
380
+ :root {
381
+ --system-spectrum-actiongroup-gap-size-compact: 0;
382
+ --system-spectrum-actiongroup-horizontal-spacing-compact: -1px;
383
+ --system-spectrum-actiongroup-vertical-spacing-compact: -1px;
384
+ }