@spectrum-web-components/styles 0.15.0 → 0.15.1

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 (75) hide show
  1. package/body.dev.js +5 -0
  2. package/body.dev.js.map +7 -0
  3. package/body.js +4 -15
  4. package/body.js.map +7 -1
  5. package/code.dev.js +5 -0
  6. package/code.dev.js.map +7 -0
  7. package/code.js +4 -15
  8. package/code.js.map +7 -1
  9. package/detail.dev.js +5 -0
  10. package/detail.dev.js.map +7 -0
  11. package/detail.js +4 -15
  12. package/detail.js.map +7 -1
  13. package/express/spectrum-scale-large.css +0 -9
  14. package/express/spectrum-scale-medium.css +0 -9
  15. package/heading.dev.js +5 -0
  16. package/heading.dev.js.map +7 -0
  17. package/heading.js +4 -15
  18. package/heading.js.map +7 -1
  19. package/package.json +56 -18
  20. package/spectrum-scale-large.css +0 -9
  21. package/spectrum-scale-medium.css +0 -9
  22. package/src/spectrum-base.css.dev.js +10 -0
  23. package/src/spectrum-base.css.dev.js.map +7 -0
  24. package/src/spectrum-base.css.js +3 -14
  25. package/src/spectrum-base.css.js.map +7 -1
  26. package/src/spectrum-body.css.dev.js +100 -0
  27. package/src/spectrum-body.css.dev.js.map +7 -0
  28. package/src/spectrum-body.css.js +3 -14
  29. package/src/spectrum-body.css.js.map +7 -1
  30. package/src/spectrum-code.css.dev.js +84 -0
  31. package/src/spectrum-code.css.dev.js.map +7 -0
  32. package/src/spectrum-code.css.js +3 -14
  33. package/src/spectrum-code.css.js.map +7 -1
  34. package/src/spectrum-detail.css.dev.js +154 -0
  35. package/src/spectrum-detail.css.dev.js.map +7 -0
  36. package/src/spectrum-detail.css.js +3 -14
  37. package/src/spectrum-detail.css.js.map +7 -1
  38. package/src/spectrum-heading.css.dev.js +148 -0
  39. package/src/spectrum-heading.css.dev.js.map +7 -0
  40. package/src/spectrum-heading.css.js +3 -14
  41. package/src/spectrum-heading.css.js.map +7 -1
  42. package/src/spectrum-lang.css.dev.js +468 -0
  43. package/src/spectrum-lang.css.dev.js.map +7 -0
  44. package/src/spectrum-lang.css.js +3 -14
  45. package/src/spectrum-lang.css.js.map +7 -1
  46. package/src/spectrum-typography.css.dev.js +66 -0
  47. package/src/spectrum-typography.css.dev.js.map +7 -0
  48. package/src/spectrum-typography.css.js +3 -14
  49. package/src/spectrum-typography.css.js.map +7 -1
  50. package/stories/styles.stories.js +4 -15
  51. package/stories/styles.stories.js.map +7 -1
  52. package/test/styles.test-vrt.js +4 -15
  53. package/test/styles.test-vrt.js.map +7 -1
  54. package/tokens/dark-vars.css +2 -1
  55. package/tokens/darkest-vars.css +2 -1
  56. package/tokens/express/custom-large-vars.css +2 -1
  57. package/tokens/express/custom-medium-vars.css +2 -1
  58. package/tokens/express/custom-vars.css +2 -1
  59. package/tokens/express/global-vars.css +4 -2
  60. package/tokens/express/large-vars.css +2 -1
  61. package/tokens/express/medium-vars.css +2 -1
  62. package/tokens/global-vars.css +4 -1
  63. package/tokens/large-vars.css +14 -5
  64. package/tokens/light-vars.css +2 -1
  65. package/tokens/medium-vars.css +13 -4
  66. package/tokens/spectrum/custom-large-vars.css +27 -1
  67. package/tokens/spectrum/custom-medium-vars.css +27 -1
  68. package/tokens/spectrum/custom-vars.css +14 -2
  69. package/tokens/spectrum/global-vars.css +4 -16
  70. package/tokens/spectrum/large-vars.css +9 -1
  71. package/tokens/spectrum/medium-vars.css +9 -1
  72. package/typography.dev.js +3 -0
  73. package/typography.dev.js.map +7 -0
  74. package/typography.js +2 -13
  75. package/typography.js.map +7 -1
package/body.dev.js ADDED
@@ -0,0 +1,5 @@
1
+ import baseStyles from "./src/spectrum-base.css.js";
2
+ import langStyles from "./src/spectrum-lang.css.js";
3
+ import bodyStyles from "./src/spectrum-body.css.js";
4
+ export default [baseStyles, langStyles, bodyStyles];
5
+ //# sourceMappingURL=body.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["body.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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport bodyStyles from './src/spectrum-body.css.js';\n\nexport default [baseStyles, langStyles, bodyStyles];\n"],
5
+ "mappings": "AAYA;AACA;AACA;AAEA,eAAe,CAAC,YAAY,YAAY,UAAU;",
6
+ "names": []
7
+ }
package/body.js CHANGED
@@ -1,16 +1,5 @@
1
- /*
2
- Copyright 2020 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import baseStyles from './src/spectrum-base.css.js';
13
- import langStyles from './src/spectrum-lang.css.js';
14
- import bodyStyles from './src/spectrum-body.css.js';
1
+ import baseStyles from "./src/spectrum-base.css.js";
2
+ import langStyles from "./src/spectrum-lang.css.js";
3
+ import bodyStyles from "./src/spectrum-body.css.js";
15
4
  export default [baseStyles, langStyles, bodyStyles];
16
- //# sourceMappingURL=body.js.map
5
+ //# sourceMappingURL=body.js.map
package/body.js.map CHANGED
@@ -1 +1,7 @@
1
- {"version":3,"file":"body.js","sourceRoot":"","sources":["body.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,UAAU,MAAM,4BAA4B,CAAC;AAEpD,eAAe,CAAC,UAAU,EAAE,UAAU,EAAE,UAAU,CAAC,CAAC","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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport bodyStyles from './src/spectrum-body.css.js';\n\nexport default [baseStyles, langStyles, bodyStyles];\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["body.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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport bodyStyles from './src/spectrum-body.css.js';\n\nexport default [baseStyles, langStyles, bodyStyles];\n"],
5
+ "mappings": "AAYA;AACA;AACA;AAEA,eAAe,CAAC,YAAY,YAAY,UAAU;",
6
+ "names": []
7
+ }
package/code.dev.js ADDED
@@ -0,0 +1,5 @@
1
+ import baseStyles from "./src/spectrum-base.css.js";
2
+ import langStyles from "./src/spectrum-lang.css.js";
3
+ import codeStyles from "./src/spectrum-code.css.js";
4
+ export default [baseStyles, langStyles, codeStyles];
5
+ //# sourceMappingURL=code.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["code.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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport codeStyles from './src/spectrum-code.css.js';\n\nexport default [baseStyles, langStyles, codeStyles];\n"],
5
+ "mappings": "AAYA;AACA;AACA;AAEA,eAAe,CAAC,YAAY,YAAY,UAAU;",
6
+ "names": []
7
+ }
package/code.js CHANGED
@@ -1,16 +1,5 @@
1
- /*
2
- Copyright 2020 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import baseStyles from './src/spectrum-base.css.js';
13
- import langStyles from './src/spectrum-lang.css.js';
14
- import codeStyles from './src/spectrum-code.css.js';
1
+ import baseStyles from "./src/spectrum-base.css.js";
2
+ import langStyles from "./src/spectrum-lang.css.js";
3
+ import codeStyles from "./src/spectrum-code.css.js";
15
4
  export default [baseStyles, langStyles, codeStyles];
16
- //# sourceMappingURL=code.js.map
5
+ //# sourceMappingURL=code.js.map
package/code.js.map CHANGED
@@ -1 +1,7 @@
1
- {"version":3,"file":"code.js","sourceRoot":"","sources":["code.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,UAAU,MAAM,4BAA4B,CAAC;AAEpD,eAAe,CAAC,UAAU,EAAE,UAAU,EAAE,UAAU,CAAC,CAAC","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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport codeStyles from './src/spectrum-code.css.js';\n\nexport default [baseStyles, langStyles, codeStyles];\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["code.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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport codeStyles from './src/spectrum-code.css.js';\n\nexport default [baseStyles, langStyles, codeStyles];\n"],
5
+ "mappings": "AAYA;AACA;AACA;AAEA,eAAe,CAAC,YAAY,YAAY,UAAU;",
6
+ "names": []
7
+ }
package/detail.dev.js ADDED
@@ -0,0 +1,5 @@
1
+ import baseStyles from "./src/spectrum-base.css.js";
2
+ import langStyles from "./src/spectrum-lang.css.js";
3
+ import detailStyles from "./src/spectrum-detail.css.js";
4
+ export default [baseStyles, langStyles, detailStyles];
5
+ //# sourceMappingURL=detail.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["detail.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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport detailStyles from './src/spectrum-detail.css.js';\n\nexport default [baseStyles, langStyles, detailStyles];\n"],
5
+ "mappings": "AAYA;AACA;AACA;AAEA,eAAe,CAAC,YAAY,YAAY,YAAY;",
6
+ "names": []
7
+ }
package/detail.js CHANGED
@@ -1,16 +1,5 @@
1
- /*
2
- Copyright 2020 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import baseStyles from './src/spectrum-base.css.js';
13
- import langStyles from './src/spectrum-lang.css.js';
14
- import detailStyles from './src/spectrum-detail.css.js';
1
+ import baseStyles from "./src/spectrum-base.css.js";
2
+ import langStyles from "./src/spectrum-lang.css.js";
3
+ import detailStyles from "./src/spectrum-detail.css.js";
15
4
  export default [baseStyles, langStyles, detailStyles];
16
- //# sourceMappingURL=detail.js.map
5
+ //# sourceMappingURL=detail.js.map
package/detail.js.map CHANGED
@@ -1 +1,7 @@
1
- {"version":3,"file":"detail.js","sourceRoot":"","sources":["detail.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,YAAY,MAAM,8BAA8B,CAAC;AAExD,eAAe,CAAC,UAAU,EAAE,UAAU,EAAE,YAAY,CAAC,CAAC","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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport detailStyles from './src/spectrum-detail.css.js';\n\nexport default [baseStyles, langStyles, detailStyles];\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["detail.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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport detailStyles from './src/spectrum-detail.css.js';\n\nexport default [baseStyles, langStyles, detailStyles];\n"],
5
+ "mappings": "AAYA;AACA;AACA;AAEA,eAAe,CAAC,YAAY,YAAY,YAAY;",
6
+ "names": []
7
+ }
@@ -307,15 +307,6 @@ governing permissions and limitations under the License.
307
307
  --spectrum-dialog-confirm-padding: var(
308
308
  --spectrum-global-dimension-static-size-300
309
309
  );
310
- --spectrum-helptext-s-neutral-textonly-text-padding-bottom: var(
311
- --spectrum-global-dimension-static-size-85
312
- );
313
- --spectrum-helptext-m-neutral-textonly-text-padding-bottom: var(
314
- --spectrum-global-dimension-static-size-85
315
- );
316
- --spectrum-helptext-xl-neutral-textonly-text-padding-top: var(
317
- --spectrum-global-dimension-static-size-150
318
- );
319
310
  --spectrum-listitem-m-texticon-padding-left: var(
320
311
  --spectrum-global-dimension-static-size-150
321
312
  );
@@ -315,15 +315,6 @@ governing permissions and limitations under the License.
315
315
  --spectrum-dialog-confirm-padding: var(
316
316
  --spectrum-global-dimension-static-size-500
317
317
  );
318
- --spectrum-helptext-s-neutral-textonly-text-padding-bottom: var(
319
- --spectrum-global-dimension-static-size-65
320
- );
321
- --spectrum-helptext-m-neutral-textonly-text-padding-bottom: var(
322
- --spectrum-global-dimension-static-size-65
323
- );
324
- --spectrum-helptext-xl-neutral-textonly-text-padding-top: var(
325
- --spectrum-global-dimension-size-115
326
- );
327
318
  --spectrum-listitem-m-texticon-padding-left: var(
328
319
  --spectrum-global-dimension-size-125
329
320
  );
package/heading.dev.js ADDED
@@ -0,0 +1,5 @@
1
+ import baseStyles from "./src/spectrum-base.css.js";
2
+ import langStyles from "./src/spectrum-lang.css.js";
3
+ import headingStyles from "./src/spectrum-heading.css.js";
4
+ export default [baseStyles, langStyles, headingStyles];
5
+ //# sourceMappingURL=heading.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["heading.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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport headingStyles from './src/spectrum-heading.css.js';\n\nexport default [baseStyles, langStyles, headingStyles];\n"],
5
+ "mappings": "AAYA;AACA;AACA;AAEA,eAAe,CAAC,YAAY,YAAY,aAAa;",
6
+ "names": []
7
+ }
package/heading.js CHANGED
@@ -1,16 +1,5 @@
1
- /*
2
- Copyright 2020 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import baseStyles from './src/spectrum-base.css.js';
13
- import langStyles from './src/spectrum-lang.css.js';
14
- import headingStyles from './src/spectrum-heading.css.js';
1
+ import baseStyles from "./src/spectrum-base.css.js";
2
+ import langStyles from "./src/spectrum-lang.css.js";
3
+ import headingStyles from "./src/spectrum-heading.css.js";
15
4
  export default [baseStyles, langStyles, headingStyles];
16
- //# sourceMappingURL=heading.js.map
5
+ //# sourceMappingURL=heading.js.map
package/heading.js.map CHANGED
@@ -1 +1,7 @@
1
- {"version":3,"file":"heading.js","sourceRoot":"","sources":["heading.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,aAAa,MAAM,+BAA+B,CAAC;AAE1D,eAAe,CAAC,UAAU,EAAE,UAAU,EAAE,aAAa,CAAC,CAAC","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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport headingStyles from './src/spectrum-heading.css.js';\n\nexport default [baseStyles, langStyles, headingStyles];\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["heading.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 baseStyles from './src/spectrum-base.css.js';\nimport langStyles from './src/spectrum-lang.css.js';\nimport headingStyles from './src/spectrum-heading.css.js';\n\nexport default [baseStyles, langStyles, headingStyles];\n"],
5
+ "mappings": "AAYA;AACA;AACA;AAEA,eAAe,CAAC,YAAY,YAAY,aAAa;",
6
+ "names": []
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/styles",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -20,7 +20,11 @@
20
20
  "module": "src/spectrum-base.css.js",
21
21
  "type": "module",
22
22
  "exports": {
23
- ".": "./src/spectrum-base.css.js",
23
+ ".": {
24
+ "development": "./src/index.dev.js",
25
+ "default": "./src/index.js"
26
+ },
27
+ "./package.json": "./package.json",
24
28
  "./all-large-dark.css": "./all-large-dark.css",
25
29
  "./all-large-darkest.css": "./all-large-darkest.css",
26
30
  "./all-large-light.css": "./all-large-light.css",
@@ -30,26 +34,60 @@
30
34
  "./all-medium-light.css": "./all-medium-light.css",
31
35
  "./all-medium-lightest.css": "./all-medium-lightest.css",
32
36
  "./core-global.css": "./core-global.css",
37
+ "./express/core-global.css": "./express/core-global.css",
33
38
  "./fonts.css": "./fonts.css",
34
39
  "./scale-large.css": "./scale-large.css",
40
+ "./express/scale-large.css": "./express/scale-large.css",
35
41
  "./scale-medium.css": "./scale-medium.css",
42
+ "./express/scale-medium.css": "./express/scale-medium.css",
36
43
  "./theme-dark.css": "./theme-dark.css",
44
+ "./express/theme-dark.css": "./express/theme-dark.css",
37
45
  "./theme-darkest.css": "./theme-darkest.css",
46
+ "./express/theme-darkest.css": "./express/theme-darkest.css",
38
47
  "./theme-light.css": "./theme-light.css",
48
+ "./express/theme-light.css": "./express/theme-light.css",
39
49
  "./theme-lightest.css": "./theme-lightest.css",
50
+ "./express/theme-lightest.css": "./express/theme-lightest.css",
40
51
  "./typography.css": "./typography.css",
41
- "./body": "./body.js",
42
- "./body.js": "./body.js",
43
- "./code": "./code.js",
44
- "./code.js": "./code.js",
45
- "./detail": "./detail.js",
46
- "./detail.js": "./detail.js",
47
- "./heading": "./heading.js",
48
- "./heading.js": "./heading.js",
49
- "./typography": "./typography.js",
50
- "./typography.js": "./typography.js",
51
- "./src/*": "./src/*",
52
- "./tokens/*": "./tokens/*"
52
+ "./body.js": {
53
+ "development": "./body.dev.js",
54
+ "default": "./body.js"
55
+ },
56
+ "./code.js": {
57
+ "development": "./code.dev.js",
58
+ "default": "./code.js"
59
+ },
60
+ "./detail.js": {
61
+ "development": "./detail.dev.js",
62
+ "default": "./detail.js"
63
+ },
64
+ "./heading.js": {
65
+ "development": "./heading.dev.js",
66
+ "default": "./heading.js"
67
+ },
68
+ "./typography.js": {
69
+ "development": "./typography.dev.js",
70
+ "default": "./typography.js"
71
+ },
72
+ "./src/spectrum-base.css": "./src/spectrum-base.css",
73
+ "./src/spectrum-body.css": "./src/spectrum-body.css",
74
+ "./src/spectrum-code.css": "./src/spectrum-code.css",
75
+ "./src/spectrum-detail.css": "./src/spectrum-code.css",
76
+ "./src/spectrum-heading.css": "./src/spectrum-heading.css",
77
+ "./src/spectrum-lang.css": "./src/spectrum-lang.css",
78
+ "./src/spectrum-typography.css": "./src/spectrum-typography.css",
79
+ "./tokens/express/custom-large-vars.css": "./tokens/express/custom-large-vars.css",
80
+ "./tokens/express/custom-medium-vars.css": "./tokens/express/custom-medium-vars.css",
81
+ "./tokens/express/custom-vars.css": "./tokens/express/custom-vars.css",
82
+ "./tokens/express/global-vars.css": "./tokens/express/global-vars.css",
83
+ "./tokens/express/large-vars.css": "./tokens/express/large-vars.css",
84
+ "./tokens/express/medium-vars.css": "./tokens/express/medium-vars.css",
85
+ "./tokens/spectrum/custom-large-vars.css": "./tokens/spectrum/custom-large-vars.css",
86
+ "./tokens/spectrum/custom-medium-vars.css": "./tokens/spectrum/custom-medium-vars.css",
87
+ "./tokens/spectrum/custom-vars.css": "./tokens/spectrum/custom-vars.css",
88
+ "./tokens/spectrum/global-vars.css": "./tokens/spectrum/global-vars.css",
89
+ "./tokens/spectrum/large-vars.css": "./tokens/spectrum/large-vars.css",
90
+ "./tokens/spectrum/medium-vars.css": "./tokens/spectrum/medium-vars.css"
53
91
  },
54
92
  "scripts": {
55
93
  "test": "echo \"Error: run tests from mono-repo root.\" && exit 1"
@@ -70,19 +108,19 @@
70
108
  "lit-html"
71
109
  ],
72
110
  "dependencies": {
73
- "@spectrum-web-components/base": "^0.5.8"
111
+ "@spectrum-web-components/base": "^0.6.0"
74
112
  },
75
113
  "devDependencies": {
76
114
  "@spectrum-css/commons": "^3.0.6",
77
115
  "@spectrum-css/expressvars": "^2.0.0",
78
- "@spectrum-css/tokens": "^1.0.1",
116
+ "@spectrum-css/tokens": "^1.0.4",
79
117
  "@spectrum-css/typography": "^4.0.20",
80
118
  "@spectrum-css/vars": "^8.0.0"
81
119
  },
82
120
  "customElements": "custom-elements.json",
83
121
  "sideEffects": [
84
- "./*.css"
122
+ "./**/*.css"
85
123
  ],
86
124
  "style": "all-medium-lightest.css",
87
- "gitHead": "3be62133721efba844cd7032566a2c49ed6d9875"
125
+ "gitHead": "50cac779bbb0d6735c2061f1eceb86b9daf9b22b"
88
126
  }
@@ -318,15 +318,6 @@ governing permissions and limitations under the License.
318
318
  --spectrum-dialog-confirm-padding: var(
319
319
  --spectrum-global-dimension-static-size-300
320
320
  );
321
- --spectrum-helptext-s-neutral-textonly-text-padding-bottom: var(
322
- --spectrum-global-dimension-static-size-85
323
- );
324
- --spectrum-helptext-m-neutral-textonly-text-padding-bottom: var(
325
- --spectrum-global-dimension-static-size-85
326
- );
327
- --spectrum-helptext-xl-neutral-textonly-text-padding-top: var(
328
- --spectrum-global-dimension-static-size-150
329
- );
330
321
  --spectrum-listitem-m-texticon-padding-left: var(
331
322
  --spectrum-global-dimension-static-size-150
332
323
  );
@@ -320,15 +320,6 @@ governing permissions and limitations under the License.
320
320
  --spectrum-dialog-confirm-padding: var(
321
321
  --spectrum-global-dimension-static-size-500
322
322
  );
323
- --spectrum-helptext-s-neutral-textonly-text-padding-bottom: var(
324
- --spectrum-global-dimension-static-size-65
325
- );
326
- --spectrum-helptext-m-neutral-textonly-text-padding-bottom: var(
327
- --spectrum-global-dimension-static-size-65
328
- );
329
- --spectrum-helptext-xl-neutral-textonly-text-padding-top: var(
330
- --spectrum-global-dimension-size-115
331
- );
332
323
  --spectrum-listitem-m-texticon-padding-left: var(
333
324
  --spectrum-global-dimension-size-125
334
325
  );
@@ -0,0 +1,10 @@
1
+ import { css } from "@spectrum-web-components/base";
2
+ const styles = css`
3
+ .spectrum{color:var(--spectrum-body-m-text-color,var(--spectrum-alias-text-color));font-family:var(
4
+ --spectrum-alias-body-text-font-family,var(--spectrum-global-font-family-base)
5
+ );font-size:var(
6
+ --spectrum-alias-font-size-default,var(--spectrum-global-dimension-font-size-100)
7
+ )}
8
+ `;
9
+ export default styles;
10
+ //# sourceMappingURL=spectrum-base.css.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["spectrum-base.css.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n.spectrum{color:var(--spectrum-body-m-text-color,var(--spectrum-alias-text-color));font-family:var(\n--spectrum-alias-body-text-font-family,var(--spectrum-global-font-family-base)\n);font-size:var(\n--spectrum-alias-font-size-default,var(--spectrum-global-dimension-font-size-100)\n)}\n`;\nexport default styles;"],
5
+ "mappings": "AAWA;AACA,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOf,eAAe;",
6
+ "names": []
7
+ }
@@ -1,16 +1,5 @@
1
- /*
2
- Copyright 2022 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { css } from '@spectrum-web-components/base';
13
- const styles = css `
1
+ import { css } from "@spectrum-web-components/base";
2
+ const styles = css`
14
3
  .spectrum{color:var(--spectrum-body-m-text-color,var(--spectrum-alias-text-color));font-family:var(
15
4
  --spectrum-alias-body-text-font-family,var(--spectrum-global-font-family-base)
16
5
  );font-size:var(
@@ -18,4 +7,4 @@ const styles = css `
18
7
  )}
19
8
  `;
20
9
  export default styles;
21
- //# sourceMappingURL=spectrum-base.css.js.map
10
+ //# sourceMappingURL=spectrum-base.css.js.map
@@ -1 +1,7 @@
1
- {"version":3,"file":"spectrum-base.css.js","sourceRoot":"","sources":["spectrum-base.css.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,GAAG,EAAE,MAAM,+BAA+B,CAAC;AACpD,MAAM,MAAM,GAAG,GAAG,CAAA;;;;;;CAMjB,CAAC;AACF,eAAe,MAAM,CAAC","sourcesContent":["/*\nCopyright 2022 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n.spectrum{color:var(--spectrum-body-m-text-color,var(--spectrum-alias-text-color));font-family:var(\n--spectrum-alias-body-text-font-family,var(--spectrum-global-font-family-base)\n);font-size:var(\n--spectrum-alias-font-size-default,var(--spectrum-global-dimension-font-size-100)\n)}\n`;\nexport default styles;"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["spectrum-base.css.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n.spectrum{color:var(--spectrum-body-m-text-color,var(--spectrum-alias-text-color));font-family:var(\n--spectrum-alias-body-text-font-family,var(--spectrum-global-font-family-base)\n);font-size:var(\n--spectrum-alias-font-size-default,var(--spectrum-global-dimension-font-size-100)\n)}\n`;\nexport default styles;"],
5
+ "mappings": "AAWA;AACA,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOf,eAAe;",
6
+ "names": []
7
+ }
@@ -0,0 +1,100 @@
1
+ import { css } from "@spectrum-web-components/base";
2
+ const styles = css`
3
+ .spectrum-Body--sizeXXXL{font-size:var(
4
+ --spectrum-body-xxxl-text-size,var(--spectrum-global-dimension-font-size-600)
5
+ );font-style:var(
6
+ --spectrum-body-xxxl-text-font-style,var(--spectrum-global-font-style-regular)
7
+ );font-weight:var(
8
+ --spectrum-body-xxxl-text-font-weight,var(--spectrum-alias-body-text-font-weight)
9
+ );letter-spacing:var(
10
+ --spectrum-body-xxxl-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)
11
+ );line-height:var(
12
+ --spectrum-body-xxxl-text-line-height,var(--spectrum-alias-body-text-line-height)
13
+ );margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-xxxl-text-transform,none)}.spectrum-Body--sizeXXL{font-size:var(
14
+ --spectrum-body-xxl-text-size,var(--spectrum-global-dimension-font-size-500)
15
+ );font-style:var(
16
+ --spectrum-body-xxl-text-font-style,var(--spectrum-global-font-style-regular)
17
+ );font-weight:var(
18
+ --spectrum-body-xxl-text-font-weight,var(--spectrum-alias-body-text-font-weight)
19
+ );letter-spacing:var(
20
+ --spectrum-body-xxl-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)
21
+ );line-height:var(
22
+ --spectrum-body-xxl-text-line-height,var(--spectrum-alias-body-text-line-height)
23
+ );margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-xxl-text-transform,none)}.spectrum-Body--sizeXL{font-size:var(
24
+ --spectrum-body-xl-text-size,var(--spectrum-global-dimension-font-size-400)
25
+ );font-style:var(
26
+ --spectrum-body-xl-text-font-style,var(--spectrum-global-font-style-regular)
27
+ );font-weight:var(
28
+ --spectrum-body-xl-text-font-weight,var(--spectrum-alias-body-text-font-weight)
29
+ );letter-spacing:var(
30
+ --spectrum-body-xl-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)
31
+ );line-height:var(
32
+ --spectrum-body-xl-text-line-height,var(--spectrum-alias-body-text-line-height)
33
+ );margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-xl-text-transform,none)}.spectrum-Body--sizeL{font-size:var(
34
+ --spectrum-body-l-text-size,var(--spectrum-global-dimension-font-size-300)
35
+ );font-style:var(
36
+ --spectrum-body-l-text-font-style,var(--spectrum-global-font-style-regular)
37
+ );font-weight:var(
38
+ --spectrum-body-l-text-font-weight,var(--spectrum-alias-body-text-font-weight)
39
+ );letter-spacing:var(
40
+ --spectrum-body-l-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)
41
+ );line-height:var(
42
+ --spectrum-body-l-text-line-height,var(--spectrum-alias-body-text-line-height)
43
+ );margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-l-text-transform,none)}.spectrum-Body--sizeM{font-size:var(
44
+ --spectrum-body-m-text-size,var(--spectrum-global-dimension-font-size-200)
45
+ );font-style:var(
46
+ --spectrum-body-m-text-font-style,var(--spectrum-global-font-style-regular)
47
+ );font-weight:var(
48
+ --spectrum-body-m-text-font-weight,var(--spectrum-alias-body-text-font-weight)
49
+ );letter-spacing:var(
50
+ --spectrum-body-m-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)
51
+ );line-height:var(
52
+ --spectrum-body-m-text-line-height,var(--spectrum-alias-body-text-line-height)
53
+ );margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-m-text-transform,none)}.spectrum-Body--sizeS{font-size:var(
54
+ --spectrum-body-s-text-size,var(--spectrum-global-dimension-font-size-100)
55
+ );font-style:var(
56
+ --spectrum-body-s-text-font-style,var(--spectrum-global-font-style-regular)
57
+ );font-weight:var(
58
+ --spectrum-body-s-text-font-weight,var(--spectrum-alias-body-text-font-weight)
59
+ );letter-spacing:var(
60
+ --spectrum-body-s-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)
61
+ );line-height:var(
62
+ --spectrum-body-s-text-line-height,var(--spectrum-alias-body-text-line-height)
63
+ );margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-s-text-transform,none)}.spectrum-Body--sizeXS{font-size:var(
64
+ --spectrum-body-xs-text-size,var(--spectrum-global-dimension-font-size-75)
65
+ );font-style:var(
66
+ --spectrum-body-xs-text-font-style,var(--spectrum-global-font-style-regular)
67
+ );font-weight:var(
68
+ --spectrum-body-xs-text-font-weight,var(--spectrum-alias-body-text-font-weight)
69
+ );letter-spacing:var(
70
+ --spectrum-body-xs-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)
71
+ );line-height:var(
72
+ --spectrum-body-xs-text-line-height,var(--spectrum-alias-body-text-line-height)
73
+ );margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-xs-text-transform,none)}.spectrum-Body{font-family:var(
74
+ --spectrum-body-m-text-font-family,var(--spectrum-alias-body-text-font-family)
75
+ )}.spectrum-Body .spectrum-Body-strong,.spectrum-Body strong{font-weight:var(
76
+ --spectrum-body-m-strong-text-font-weight,var(--spectrum-global-font-weight-bold)
77
+ )}.spectrum-Body .spectrum-Body-emphasized,.spectrum-Body em{font-style:var(
78
+ --spectrum-body-m-emphasized-text-font-style,var(--spectrum-global-font-style-italic)
79
+ )}.spectrum-Body--serif{font-family:var(
80
+ --spectrum-body-m-serif-text-font-family,var(--spectrum-alias-serif-text-font-family)
81
+ )}.spectrum-Body--sizeXXXL{color:var(
82
+ --spectrum-body-xxxl-text-color,var(--spectrum-alias-text-color)
83
+ )}.spectrum-Body--sizeXXL{color:var(
84
+ --spectrum-body-xxl-text-color,var(--spectrum-alias-text-color)
85
+ )}.spectrum-Body--sizeXL{color:var(
86
+ --spectrum-body-xl-text-color,var(--spectrum-alias-text-color)
87
+ )}.spectrum-Body--sizeL{color:var(
88
+ --spectrum-body-l-text-color,var(--spectrum-alias-text-color)
89
+ )}.spectrum-Body--sizeM{color:var(
90
+ --spectrum-body-m-text-color,var(--spectrum-alias-text-color)
91
+ )}.spectrum-Body--sizeS{color:var(
92
+ --spectrum-body-s-text-color,var(--spectrum-alias-text-color)
93
+ )}.spectrum-Body--sizeXS{color:var(
94
+ --spectrum-body-xs-text-color,var(--spectrum-alias-text-color)
95
+ )}.spectrum-Body{color:var(
96
+ --spectrum-body-m-text-color,var(--spectrum-alias-text-color)
97
+ )}
98
+ `;
99
+ export default styles;
100
+ //# sourceMappingURL=spectrum-body.css.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["spectrum-body.css.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n.spectrum-Body--sizeXXXL{font-size:var(\n--spectrum-body-xxxl-text-size,var(--spectrum-global-dimension-font-size-600)\n);font-style:var(\n--spectrum-body-xxxl-text-font-style,var(--spectrum-global-font-style-regular)\n);font-weight:var(\n--spectrum-body-xxxl-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);letter-spacing:var(\n--spectrum-body-xxxl-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)\n);line-height:var(\n--spectrum-body-xxxl-text-line-height,var(--spectrum-alias-body-text-line-height)\n);margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-xxxl-text-transform,none)}.spectrum-Body--sizeXXL{font-size:var(\n--spectrum-body-xxl-text-size,var(--spectrum-global-dimension-font-size-500)\n);font-style:var(\n--spectrum-body-xxl-text-font-style,var(--spectrum-global-font-style-regular)\n);font-weight:var(\n--spectrum-body-xxl-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);letter-spacing:var(\n--spectrum-body-xxl-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)\n);line-height:var(\n--spectrum-body-xxl-text-line-height,var(--spectrum-alias-body-text-line-height)\n);margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-xxl-text-transform,none)}.spectrum-Body--sizeXL{font-size:var(\n--spectrum-body-xl-text-size,var(--spectrum-global-dimension-font-size-400)\n);font-style:var(\n--spectrum-body-xl-text-font-style,var(--spectrum-global-font-style-regular)\n);font-weight:var(\n--spectrum-body-xl-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);letter-spacing:var(\n--spectrum-body-xl-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)\n);line-height:var(\n--spectrum-body-xl-text-line-height,var(--spectrum-alias-body-text-line-height)\n);margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-xl-text-transform,none)}.spectrum-Body--sizeL{font-size:var(\n--spectrum-body-l-text-size,var(--spectrum-global-dimension-font-size-300)\n);font-style:var(\n--spectrum-body-l-text-font-style,var(--spectrum-global-font-style-regular)\n);font-weight:var(\n--spectrum-body-l-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);letter-spacing:var(\n--spectrum-body-l-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)\n);line-height:var(\n--spectrum-body-l-text-line-height,var(--spectrum-alias-body-text-line-height)\n);margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-l-text-transform,none)}.spectrum-Body--sizeM{font-size:var(\n--spectrum-body-m-text-size,var(--spectrum-global-dimension-font-size-200)\n);font-style:var(\n--spectrum-body-m-text-font-style,var(--spectrum-global-font-style-regular)\n);font-weight:var(\n--spectrum-body-m-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);letter-spacing:var(\n--spectrum-body-m-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)\n);line-height:var(\n--spectrum-body-m-text-line-height,var(--spectrum-alias-body-text-line-height)\n);margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-m-text-transform,none)}.spectrum-Body--sizeS{font-size:var(\n--spectrum-body-s-text-size,var(--spectrum-global-dimension-font-size-100)\n);font-style:var(\n--spectrum-body-s-text-font-style,var(--spectrum-global-font-style-regular)\n);font-weight:var(\n--spectrum-body-s-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);letter-spacing:var(\n--spectrum-body-s-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)\n);line-height:var(\n--spectrum-body-s-text-line-height,var(--spectrum-alias-body-text-line-height)\n);margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-s-text-transform,none)}.spectrum-Body--sizeXS{font-size:var(\n--spectrum-body-xs-text-size,var(--spectrum-global-dimension-font-size-75)\n);font-style:var(\n--spectrum-body-xs-text-font-style,var(--spectrum-global-font-style-regular)\n);font-weight:var(\n--spectrum-body-xs-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);letter-spacing:var(\n--spectrum-body-xs-text-letter-spacing,var(--spectrum-global-font-letter-spacing-none)\n);line-height:var(\n--spectrum-body-xs-text-line-height,var(--spectrum-alias-body-text-line-height)\n);margin-bottom:0;margin-top:0;text-transform:var(--spectrum-body-xs-text-transform,none)}.spectrum-Body{font-family:var(\n--spectrum-body-m-text-font-family,var(--spectrum-alias-body-text-font-family)\n)}.spectrum-Body .spectrum-Body-strong,.spectrum-Body strong{font-weight:var(\n--spectrum-body-m-strong-text-font-weight,var(--spectrum-global-font-weight-bold)\n)}.spectrum-Body .spectrum-Body-emphasized,.spectrum-Body em{font-style:var(\n--spectrum-body-m-emphasized-text-font-style,var(--spectrum-global-font-style-italic)\n)}.spectrum-Body--serif{font-family:var(\n--spectrum-body-m-serif-text-font-family,var(--spectrum-alias-serif-text-font-family)\n)}.spectrum-Body--sizeXXXL{color:var(\n--spectrum-body-xxxl-text-color,var(--spectrum-alias-text-color)\n)}.spectrum-Body--sizeXXL{color:var(\n--spectrum-body-xxl-text-color,var(--spectrum-alias-text-color)\n)}.spectrum-Body--sizeXL{color:var(\n--spectrum-body-xl-text-color,var(--spectrum-alias-text-color)\n)}.spectrum-Body--sizeL{color:var(\n--spectrum-body-l-text-color,var(--spectrum-alias-text-color)\n)}.spectrum-Body--sizeM{color:var(\n--spectrum-body-m-text-color,var(--spectrum-alias-text-color)\n)}.spectrum-Body--sizeS{color:var(\n--spectrum-body-s-text-color,var(--spectrum-alias-text-color)\n)}.spectrum-Body--sizeXS{color:var(\n--spectrum-body-xs-text-color,var(--spectrum-alias-text-color)\n)}.spectrum-Body{color:var(\n--spectrum-body-m-text-color,var(--spectrum-alias-text-color)\n)}\n`;\nexport default styles;"],
5
+ "mappings": "AAWA;AACA,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAiGf,eAAe;",
6
+ "names": []
7
+ }
@@ -1,16 +1,5 @@
1
- /*
2
- Copyright 2022 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { css } from '@spectrum-web-components/base';
13
- const styles = css `
1
+ import { css } from "@spectrum-web-components/base";
2
+ const styles = css`
14
3
  .spectrum-Body--sizeXXXL{font-size:var(
15
4
  --spectrum-body-xxxl-text-size,var(--spectrum-global-dimension-font-size-600)
16
5
  );font-style:var(
@@ -108,4 +97,4 @@ const styles = css `
108
97
  )}
109
98
  `;
110
99
  export default styles;
111
- //# sourceMappingURL=spectrum-body.css.js.map
100
+ //# sourceMappingURL=spectrum-body.css.js.map