@spectrum-web-components/styles 0.41.2 → 0.42.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.
package/express/scale-large.css
CHANGED
package/express/scale-medium.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/styles",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.42.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -104,13 +104,13 @@
|
|
|
104
104
|
"lit-html"
|
|
105
105
|
],
|
|
106
106
|
"dependencies": {
|
|
107
|
-
"@spectrum-web-components/base": "^0.
|
|
107
|
+
"@spectrum-web-components/base": "^0.42.1"
|
|
108
108
|
},
|
|
109
109
|
"devDependencies": {
|
|
110
|
-
"@spectrum-css/commons": "^9.1.
|
|
110
|
+
"@spectrum-css/commons": "^9.1.3",
|
|
111
111
|
"@spectrum-css/expressvars": "^3.0.9",
|
|
112
112
|
"@spectrum-css/tokens": "^13.2.0",
|
|
113
|
-
"@spectrum-css/typography": "^5.1.
|
|
113
|
+
"@spectrum-css/typography": "^5.1.5",
|
|
114
114
|
"@spectrum-css/vars": "^9.0.8"
|
|
115
115
|
},
|
|
116
116
|
"customElements": "custom-elements.json",
|
|
@@ -118,5 +118,5 @@
|
|
|
118
118
|
"./**/*.css"
|
|
119
119
|
],
|
|
120
120
|
"style": "all-medium-lightest.css",
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "c7ab5516e86d20194e92114afd04affa490b7248"
|
|
122
122
|
}
|
package/scale-large.css
CHANGED
package/scale-medium.css
CHANGED
|
@@ -15,11 +15,11 @@ export const dividers = () => html`
|
|
|
15
15
|
grid-template-columns: 50px 1fr 250px;
|
|
16
16
|
grid-template-rows: 50px 1fr;
|
|
17
17
|
gap: var(--spectrum-global-alias-appframe-border-size);
|
|
18
|
-
background: var(--spectrum-
|
|
18
|
+
background: var(--spectrum-background-base-color);
|
|
19
19
|
}
|
|
20
20
|
header,
|
|
21
21
|
aside {
|
|
22
|
-
background: var(--spectrum-
|
|
22
|
+
background: var(--spectrum-background-layer-1-color);
|
|
23
23
|
}
|
|
24
24
|
header {
|
|
25
25
|
grid-area: header;
|
|
@@ -29,7 +29,7 @@ export const dividers = () => html`
|
|
|
29
29
|
}
|
|
30
30
|
main {
|
|
31
31
|
grid-area: main;
|
|
32
|
-
background: var(--spectrum-
|
|
32
|
+
background: var(--spectrum-background-layer-2-color);
|
|
33
33
|
}
|
|
34
34
|
main + aside {
|
|
35
35
|
grid-area: properties;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["styles.stories.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 { html, TemplateResult } from '@spectrum-web-components/base';\n\nexport default {\n title: 'Styles',\n};\n\nexport const dividers = (): TemplateResult => html`\n <style>\n .app-dividers {\n display: grid;\n position: absolute;\n inset: 0;\n grid-template-areas:\n 'header header header'\n 'toolbar main properties';\n grid-template-columns: 50px 1fr 250px;\n grid-template-rows: 50px 1fr;\n gap: var(--spectrum-global-alias-appframe-border-size);\n background: var(--spectrum-
|
|
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 { html, TemplateResult } from '@spectrum-web-components/base';\n\nexport default {\n title: 'Styles',\n};\n\nexport const dividers = (): TemplateResult => html`\n <style>\n .app-dividers {\n display: grid;\n position: absolute;\n inset: 0;\n grid-template-areas:\n 'header header header'\n 'toolbar main properties';\n grid-template-columns: 50px 1fr 250px;\n grid-template-rows: 50px 1fr;\n gap: var(--spectrum-global-alias-appframe-border-size);\n background: var(--spectrum-background-base-color);\n }\n header,\n aside {\n background: var(--spectrum-background-layer-1-color);\n }\n header {\n grid-area: header;\n }\n header + aside {\n grid-area: toolbar;\n }\n main {\n grid-area: main;\n background: var(--spectrum-background-layer-2-color);\n }\n main + aside {\n grid-area: properties;\n }\n </style>\n <div class=\"app-dividers\">\n <header></header>\n <aside></aside>\n <main></main>\n <aside></aside>\n </div>\n`;\n"],
|
|
5
5
|
"mappings": ";AAYA,SAAS,YAA4B;AAErC,eAAe;AAAA,EACX,OAAO;AACX;AAEO,aAAM,WAAW,MAAsB;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;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|