@spectrum-web-components/styles 0.23.3 → 0.24.1-overlay.10

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 (62) hide show
  1. package/README.md +1 -1
  2. package/all-large-dark.css +1 -1
  3. package/all-large-darkest.css +1 -1
  4. package/all-large-light.css +1 -1
  5. package/all-large-lightest.css +1 -1
  6. package/all-medium-dark.css +1 -1
  7. package/all-medium-darkest.css +1 -1
  8. package/all-medium-light.css +1 -1
  9. package/all-medium-lightest.css +1 -1
  10. package/express/spectrum-core-global.css +0 -20
  11. package/fonts.css +1302 -3
  12. package/package.json +7 -8
  13. package/spectrum-core-global.css +0 -32
  14. package/src/spectrum-body.css +167 -212
  15. package/src/spectrum-body.css.dev.js +60 -86
  16. package/src/spectrum-body.css.dev.js.map +2 -2
  17. package/src/spectrum-body.css.js +62 -88
  18. package/src/spectrum-body.css.js.map +2 -2
  19. package/src/spectrum-code.css +98 -137
  20. package/src/spectrum-code.css.dev.js +28 -60
  21. package/src/spectrum-code.css.dev.js.map +2 -2
  22. package/src/spectrum-code.css.js +30 -62
  23. package/src/spectrum-code.css.js.map +2 -2
  24. package/src/spectrum-detail.css +266 -269
  25. package/src/spectrum-detail.css.dev.js +101 -131
  26. package/src/spectrum-detail.css.dev.js.map +2 -2
  27. package/src/spectrum-detail.css.js +101 -131
  28. package/src/spectrum-detail.css.js.map +2 -2
  29. package/src/spectrum-heading.css +410 -329
  30. package/src/spectrum-heading.css.dev.js +153 -159
  31. package/src/spectrum-heading.css.dev.js.map +2 -2
  32. package/src/spectrum-heading.css.js +153 -159
  33. package/src/spectrum-heading.css.js.map +2 -2
  34. package/src/spectrum-lang.css +311 -1162
  35. package/src/spectrum-lang.css.dev.js +98 -412
  36. package/src/spectrum-lang.css.dev.js.map +2 -2
  37. package/src/spectrum-lang.css.js +98 -412
  38. package/src/spectrum-lang.css.js.map +2 -2
  39. package/src/spectrum-typography.css +16 -122
  40. package/src/spectrum-typography.css.dev.js +9 -47
  41. package/src/spectrum-typography.css.dev.js.map +2 -2
  42. package/src/spectrum-typography.css.js +11 -49
  43. package/src/spectrum-typography.css.js.map +2 -2
  44. package/tokens/dark-vars.css +404 -205
  45. package/tokens/darkest-vars.css +404 -205
  46. package/tokens/express/custom-dark-vars.css +1 -1
  47. package/tokens/express/custom-darkest-vars.css +1 -1
  48. package/tokens/express/custom-large-vars.css +17 -13
  49. package/tokens/express/custom-light-vars.css +2 -1
  50. package/tokens/express/custom-medium-vars.css +17 -13
  51. package/tokens/express/custom-vars.css +12 -13
  52. package/tokens/global-vars.css +136 -37
  53. package/tokens/large-vars.css +23 -14
  54. package/tokens/light-vars.css +404 -205
  55. package/tokens/medium-vars.css +23 -14
  56. package/tokens/spectrum/custom-dark-vars.css +16 -16
  57. package/tokens/spectrum/custom-darkest-vars.css +16 -16
  58. package/tokens/spectrum/custom-large-vars.css +25 -15
  59. package/tokens/spectrum/custom-light-vars.css +18 -17
  60. package/tokens/spectrum/custom-medium-vars.css +25 -15
  61. package/tokens/spectrum/custom-vars.css +20 -18
  62. package/typography.css +907 -2251
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Description
2
2
 
3
- Spectrum Web Components are a [`LitElement`](https://lit-element.polymer-project.org)-powered web component library of patterns built on top of the [Spectrum CSS](https://opensource.adobe.com/spectrum-css) specification. Styles for these components are made available (and, in some cases, customizable) via CSS Custom Properties, e.g. `var(--spectrum-global-color-static-black)`. In this package, you will find the CSS Custom Properties that power the various color and size themes defined by Spectrum CSS.
3
+ Spectrum Web Components are a [`LitElement`](https://lit-element.polymer-project.org)-powered web component library of patterns built on top of the [Spectrum CSS](https://opensource.adobe.com/spectrum-css) specification. Styles for these components are made available (and, in some cases, customizable) via CSS Custom Properties, e.g. `var(--spectrum-black)`. In this package, you will find the CSS Custom Properties that power the various color and size themes defined by Spectrum CSS.
4
4
 
5
5
  The easiest way to consume these values is via the `<sp-theme>` element. However, in some cases, it can be useful to have direct access to the files outlining the CSS Custom Properties, on top of which the rest of the component system is built.
6
6
 
@@ -11,6 +11,6 @@ governing permissions and limitations under the License.
11
11
  */
12
12
 
13
13
  @import 'core-global.css';
14
- @import 'fonts.css';
14
+ @import 'typography.css';
15
15
  @import 'theme-dark.css';
16
16
  @import 'scale-large.css';
@@ -11,6 +11,6 @@ governing permissions and limitations under the License.
11
11
  */
12
12
 
13
13
  @import 'core-global.css';
14
- @import 'fonts.css';
14
+ @import 'typography.css';
15
15
  @import 'theme-darkest.css';
16
16
  @import 'scale-large.css';
@@ -11,6 +11,6 @@ governing permissions and limitations under the License.
11
11
  */
12
12
 
13
13
  @import 'core-global.css';
14
- @import 'fonts.css';
14
+ @import 'typography.css';
15
15
  @import 'theme-light.css';
16
16
  @import 'scale-large.css';
@@ -11,6 +11,6 @@ governing permissions and limitations under the License.
11
11
  */
12
12
 
13
13
  @import 'core-global.css';
14
- @import 'fonts.css';
14
+ @import 'typography.css';
15
15
  @import 'theme-lightest.css';
16
16
  @import 'scale-large.css';
@@ -11,6 +11,6 @@ governing permissions and limitations under the License.
11
11
  */
12
12
 
13
13
  @import 'core-global.css';
14
- @import 'fonts.css';
14
+ @import 'typography.css';
15
15
  @import 'theme-dark.css';
16
16
  @import 'scale-medium.css';
@@ -11,6 +11,6 @@ governing permissions and limitations under the License.
11
11
  */
12
12
 
13
13
  @import 'core-global.css';
14
- @import 'fonts.css';
14
+ @import 'typography.css';
15
15
  @import 'theme-darkest.css';
16
16
  @import 'scale-medium.css';
@@ -11,6 +11,6 @@ governing permissions and limitations under the License.
11
11
  */
12
12
 
13
13
  @import 'core-global.css';
14
- @import 'fonts.css';
14
+ @import 'typography.css';
15
15
  @import 'theme-light.css';
16
16
  @import 'scale-medium.css';
@@ -11,6 +11,6 @@ governing permissions and limitations under the License.
11
11
  */
12
12
 
13
13
  @import 'core-global.css';
14
- @import 'fonts.css';
14
+ @import 'typography.css';
15
15
  @import 'theme-lightest.css';
16
16
  @import 'scale-medium.css';
@@ -1688,12 +1688,6 @@ governing permissions and limitations under the License.
1688
1688
  --spectrum-alias-search-padding-left-xl: var(
1689
1689
  --spectrum-global-dimension-size-225
1690
1690
  );
1691
- --spectrum-alias-colorloupe-width: var(
1692
- --spectrum-global-dimension-static-size-450
1693
- );
1694
- --spectrum-alias-colorloupe-height: var(
1695
- --spectrum-global-dimension-static-size-550
1696
- );
1697
1691
  --spectrum-alias-search-border-radius-quiet: 0;
1698
1692
  --spectrum-alias-percent-50: 50%;
1699
1693
  --spectrum-alias-percent-70: 70%;
@@ -2687,20 +2681,6 @@ governing permissions and limitations under the License.
2687
2681
  }
2688
2682
  :host,
2689
2683
  :root {
2690
- --spectrum-colorloupe-express-visibility: block;
2691
- --spectrum-colorloupe-spectrum-visibility: none;
2692
- --spectrum-colorloupe-outer-border-color: transparent;
2693
- --spectrum-colorloupe-outer-border-size: 0;
2694
- --spectrum-colorloupe-outer-stroke-color: rgba(0, 0, 0, 0.15);
2695
- --spectrum-colorloupe-outer-stroke-width: 6px;
2696
- --spectrum-colorhandle-size: var(--spectrum-global-dimension-size-250);
2697
- --spectrum-colorhandle-background-offset: 0px;
2698
- --spectrum-colorhandle-inner-shadow-color: rgba(0, 0, 0, 0.15);
2699
- --spectrum-colorhandle-outer-shadow-color: rgba(0, 0, 0, 0.3);
2700
- --spectrum-colorhandle-outer-shadow-blur: var(
2701
- --spectrum-global-dimension-static-size-50
2702
- );
2703
- --spectrum-colorhandle-outer-shadow-spread: 0;
2704
2684
  --spectrum-colorslider-height: var(--spectrum-global-dimension-size-200);
2705
2685
  --spectrum-colorslider-vertical-width: var(--spectrum-colorslider-height);
2706
2686
  --spectrum-colorslider-border-radius: var(