@universal-material/web 3.0.83 → 3.0.84
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/card/card.styles.js +1 -1
- package/card/card.styles.js.map +1 -1
- package/custom-elements.json +72 -72
- package/package.json +1 -1
package/card/card.styles.js
CHANGED
|
@@ -7,7 +7,7 @@ export const styles = css `
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
:host([variant=elevated]) {
|
|
10
|
-
--u-current-bg-color: var(--u-card-elevated-bg-color, var(
|
|
10
|
+
--u-current-bg-color: var(--u-card-elevated-bg-color, var(--u-color-surface-container-low, rgb(247, 242, 250)));
|
|
11
11
|
background-color: var(--u-current-bg-color);
|
|
12
12
|
}
|
|
13
13
|
:host([variant=elevated]) u-elevation {
|
package/card/card.styles.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"card.styles.js","sourceRoot":"","sources":["../../src/card/card.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE1B,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BzB,CAAC","sourcesContent":["import { css } from 'lit';\n\nexport const styles = css `\n :host {\n display: block;\n position: relative;\n border-radius: var(--u-card-shape-corner, var(--u-shape-corner-medium, 12px));\n }\n\n :host([variant=elevated]) {\n --u-current-bg-color: var(--u-card-elevated-bg-color, var(
|
|
1
|
+
{"version":3,"file":"card.styles.js","sourceRoot":"","sources":["../../src/card/card.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE1B,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BzB,CAAC","sourcesContent":["import { css } from 'lit';\n\nexport const styles = css `\n :host {\n display: block;\n position: relative;\n border-radius: var(--u-card-shape-corner, var(--u-shape-corner-medium, 12px));\n }\n\n :host([variant=elevated]) {\n --u-current-bg-color: var(--u-card-elevated-bg-color, var(--u-color-surface-container-low, rgb(247, 242, 250)));\n background-color: var(--u-current-bg-color);\n }\n :host([variant=elevated]) u-elevation {\n --u-elevation-level: var(--u-elevated-card-elevation-level, 1);\n }\n\n :host([variant=filled]) {\n --u-current-bg-color: var(--u-card-filled-bg-color, var(--u-color-surface-container-highest, rgb(230, 224, 233)));\n background-color: var(--u-current-bg-color);\n }\n\n :host([variant=outlined]) {\n border: var(--u-outlined-card-outline-width, 1px) solid var(--u-outlined-card-outline-color, var(--u-color-outline-variant, rgb(202, 196, 208)));\n }\n\n u-card-content,\n slot {\n border-radius: inherit;\n }\n`;\n"]}
|
package/custom-elements.json
CHANGED
|
@@ -759,7 +759,7 @@
|
|
|
759
759
|
{
|
|
760
760
|
"kind": "variable",
|
|
761
761
|
"name": "styles",
|
|
762
|
-
"default": "css `\n :host {\n display: block;\n position: relative;\n border-radius: var(--u-card-shape-corner, var(--u-shape-corner-medium, 12px));\n }\n\n :host([variant=elevated]) {\n --u-current-bg-color: var(--u-card-elevated-bg-color, var(
|
|
762
|
+
"default": "css `\n :host {\n display: block;\n position: relative;\n border-radius: var(--u-card-shape-corner, var(--u-shape-corner-medium, 12px));\n }\n\n :host([variant=elevated]) {\n --u-current-bg-color: var(--u-card-elevated-bg-color, var(--u-color-surface-container-low, rgb(247, 242, 250)));\n background-color: var(--u-current-bg-color);\n }\n :host([variant=elevated]) u-elevation {\n --u-elevation-level: var(--u-elevated-card-elevation-level, 1);\n }\n\n :host([variant=filled]) {\n --u-current-bg-color: var(--u-card-filled-bg-color, var(--u-color-surface-container-highest, rgb(230, 224, 233)));\n background-color: var(--u-current-bg-color);\n }\n\n :host([variant=outlined]) {\n border: var(--u-outlined-card-outline-width, 1px) solid var(--u-outlined-card-outline-color, var(--u-color-outline-variant, rgb(202, 196, 208)));\n }\n\n u-card-content,\n slot {\n border-radius: inherit;\n }\n`"
|
|
763
763
|
}
|
|
764
764
|
],
|
|
765
765
|
"exports": [
|
|
@@ -16145,6 +16145,77 @@
|
|
|
16145
16145
|
}
|
|
16146
16146
|
]
|
|
16147
16147
|
},
|
|
16148
|
+
{
|
|
16149
|
+
"kind": "javascript-module",
|
|
16150
|
+
"path": "src/shared/sets/set-base.styles.ts",
|
|
16151
|
+
"declarations": [
|
|
16152
|
+
{
|
|
16153
|
+
"kind": "variable",
|
|
16154
|
+
"name": "styles",
|
|
16155
|
+
"default": "css `\n :host {\n display: flex;\n gap: 8px;\n align-items: center;\n flex-wrap: nowrap;\n }\n\n :host([alignment=start]) {\n justify-content: flex-start;\n }\n\n :host([alignment=center]) {\n justify-content: center;\n }\n\n :host([alignment=end]) {\n justify-content: flex-end;\n }\n`"
|
|
16156
|
+
}
|
|
16157
|
+
],
|
|
16158
|
+
"exports": [
|
|
16159
|
+
{
|
|
16160
|
+
"kind": "js",
|
|
16161
|
+
"name": "styles",
|
|
16162
|
+
"declaration": {
|
|
16163
|
+
"name": "styles",
|
|
16164
|
+
"module": "src/shared/sets/set-base.styles.ts"
|
|
16165
|
+
}
|
|
16166
|
+
}
|
|
16167
|
+
]
|
|
16168
|
+
},
|
|
16169
|
+
{
|
|
16170
|
+
"kind": "javascript-module",
|
|
16171
|
+
"path": "src/shared/sets/set-base.ts",
|
|
16172
|
+
"declarations": [
|
|
16173
|
+
{
|
|
16174
|
+
"kind": "class",
|
|
16175
|
+
"description": "",
|
|
16176
|
+
"name": "UmSetBase",
|
|
16177
|
+
"members": [
|
|
16178
|
+
{
|
|
16179
|
+
"kind": "field",
|
|
16180
|
+
"name": "alignment",
|
|
16181
|
+
"type": {
|
|
16182
|
+
"text": "'start' | 'center' | 'end'"
|
|
16183
|
+
},
|
|
16184
|
+
"default": "'start'",
|
|
16185
|
+
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
16186
|
+
"attribute": "alignment",
|
|
16187
|
+
"reflects": true
|
|
16188
|
+
}
|
|
16189
|
+
],
|
|
16190
|
+
"attributes": [
|
|
16191
|
+
{
|
|
16192
|
+
"name": "alignment",
|
|
16193
|
+
"type": {
|
|
16194
|
+
"text": "'start' | 'center' | 'end'"
|
|
16195
|
+
},
|
|
16196
|
+
"default": "'start'",
|
|
16197
|
+
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
16198
|
+
"fieldName": "alignment"
|
|
16199
|
+
}
|
|
16200
|
+
],
|
|
16201
|
+
"superclass": {
|
|
16202
|
+
"name": "LitElement",
|
|
16203
|
+
"package": "lit"
|
|
16204
|
+
},
|
|
16205
|
+
"customElement": true
|
|
16206
|
+
}
|
|
16207
|
+
],
|
|
16208
|
+
"exports": [
|
|
16209
|
+
{
|
|
16210
|
+
"kind": "js",
|
|
16211
|
+
"name": "UmSetBase",
|
|
16212
|
+
"declaration": {
|
|
16213
|
+
"name": "UmSetBase",
|
|
16214
|
+
"module": "src/shared/sets/set-base.ts"
|
|
16215
|
+
}
|
|
16216
|
+
}
|
|
16217
|
+
]
|
|
16218
|
+
},
|
|
16148
16219
|
{
|
|
16149
16220
|
"kind": "javascript-module",
|
|
16150
16221
|
"path": "src/shared/text-field-base/text-field-base.styles.ts",
|
|
@@ -16739,77 +16810,6 @@
|
|
|
16739
16810
|
}
|
|
16740
16811
|
}
|
|
16741
16812
|
]
|
|
16742
|
-
},
|
|
16743
|
-
{
|
|
16744
|
-
"kind": "javascript-module",
|
|
16745
|
-
"path": "src/shared/sets/set-base.styles.ts",
|
|
16746
|
-
"declarations": [
|
|
16747
|
-
{
|
|
16748
|
-
"kind": "variable",
|
|
16749
|
-
"name": "styles",
|
|
16750
|
-
"default": "css `\n :host {\n display: flex;\n gap: 8px;\n align-items: center;\n flex-wrap: nowrap;\n }\n\n :host([alignment=start]) {\n justify-content: flex-start;\n }\n\n :host([alignment=center]) {\n justify-content: center;\n }\n\n :host([alignment=end]) {\n justify-content: flex-end;\n }\n`"
|
|
16751
|
-
}
|
|
16752
|
-
],
|
|
16753
|
-
"exports": [
|
|
16754
|
-
{
|
|
16755
|
-
"kind": "js",
|
|
16756
|
-
"name": "styles",
|
|
16757
|
-
"declaration": {
|
|
16758
|
-
"name": "styles",
|
|
16759
|
-
"module": "src/shared/sets/set-base.styles.ts"
|
|
16760
|
-
}
|
|
16761
|
-
}
|
|
16762
|
-
]
|
|
16763
|
-
},
|
|
16764
|
-
{
|
|
16765
|
-
"kind": "javascript-module",
|
|
16766
|
-
"path": "src/shared/sets/set-base.ts",
|
|
16767
|
-
"declarations": [
|
|
16768
|
-
{
|
|
16769
|
-
"kind": "class",
|
|
16770
|
-
"description": "",
|
|
16771
|
-
"name": "UmSetBase",
|
|
16772
|
-
"members": [
|
|
16773
|
-
{
|
|
16774
|
-
"kind": "field",
|
|
16775
|
-
"name": "alignment",
|
|
16776
|
-
"type": {
|
|
16777
|
-
"text": "'start' | 'center' | 'end'"
|
|
16778
|
-
},
|
|
16779
|
-
"default": "'start'",
|
|
16780
|
-
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
16781
|
-
"attribute": "alignment",
|
|
16782
|
-
"reflects": true
|
|
16783
|
-
}
|
|
16784
|
-
],
|
|
16785
|
-
"attributes": [
|
|
16786
|
-
{
|
|
16787
|
-
"name": "alignment",
|
|
16788
|
-
"type": {
|
|
16789
|
-
"text": "'start' | 'center' | 'end'"
|
|
16790
|
-
},
|
|
16791
|
-
"default": "'start'",
|
|
16792
|
-
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
16793
|
-
"fieldName": "alignment"
|
|
16794
|
-
}
|
|
16795
|
-
],
|
|
16796
|
-
"superclass": {
|
|
16797
|
-
"name": "LitElement",
|
|
16798
|
-
"package": "lit"
|
|
16799
|
-
},
|
|
16800
|
-
"customElement": true
|
|
16801
|
-
}
|
|
16802
|
-
],
|
|
16803
|
-
"exports": [
|
|
16804
|
-
{
|
|
16805
|
-
"kind": "js",
|
|
16806
|
-
"name": "UmSetBase",
|
|
16807
|
-
"declaration": {
|
|
16808
|
-
"name": "UmSetBase",
|
|
16809
|
-
"module": "src/shared/sets/set-base.ts"
|
|
16810
|
-
}
|
|
16811
|
-
}
|
|
16812
|
-
]
|
|
16813
16813
|
}
|
|
16814
16814
|
]
|
|
16815
16815
|
}
|