@7365admin1/layer-common 4.0.3-staging.234 → 4.0.3-staging.235
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/assets/css/primitives.css +21 -1
- package/package.json +1 -1
|
@@ -92,6 +92,16 @@
|
|
|
92
92
|
font-family: var(--font-sans, Roboto, sans-serif);
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
+
/* `[class*="text-h"]` is a substring match, so the rule above would also
|
|
96
|
+
catch an icon: `text-h6` and friends are used as SIZE classes directly on
|
|
97
|
+
`<v-icon>` (DeliveryCompany, PasswordConfirmation, OvernightParking-
|
|
98
|
+
Management), and `text-high-emphasis` matches too. The re-pointed family
|
|
99
|
+
would then beat `.material-symbols-outlined`, the ligature would fall back,
|
|
100
|
+
and the icon would draw as its literal name - hygiene saw the red word
|
|
101
|
+
"error" on its work-order list. `:not(.material-symbols-outlined)` keeps
|
|
102
|
+
icons out of the match set; web-app-hygiene `517eaeb` and web-app-account
|
|
103
|
+
#26 carry the same guard on their local copies. */
|
|
104
|
+
|
|
95
105
|
/* ------------------------------------------------------------------ */
|
|
96
106
|
/* The icon face. */
|
|
97
107
|
/* ------------------------------------------------------------------ */
|
|
@@ -109,8 +119,18 @@
|
|
|
109
119
|
* through `.mdi:before`, which we no longer emit. Only `text-transform` has
|
|
110
120
|
* to be stated: `.v-btn` uppercases its contents, and an uppercased "close"
|
|
111
121
|
* matches no ligature, so the icon would render as the word.
|
|
122
|
+
*
|
|
123
|
+
* The scoped selectors are load-bearing, not belt-and-braces: an app bundle
|
|
124
|
+
* emits Vuetify's typography utilities twice, and the second
|
|
125
|
+
* `.text-h6 { font-family: Roboto }` lands AFTER this rule, winning the
|
|
126
|
+
* 0,1,0 tie on source order. An icon sized with `text-h6` then drew the
|
|
127
|
+
* word in Roboto even with the re-point above guarded (measured in
|
|
128
|
+
* web-app-account's bundle). `.v-application`-scoped, the family is 0,2,0
|
|
129
|
+
* and survives any typography size class on the icon.
|
|
112
130
|
*/
|
|
113
|
-
.material-symbols-outlined
|
|
131
|
+
.material-symbols-outlined,
|
|
132
|
+
.v-application .material-symbols-outlined,
|
|
133
|
+
.v-overlay-container .material-symbols-outlined {
|
|
114
134
|
font-family: "Material Symbols Outlined";
|
|
115
135
|
font-style: normal;
|
|
116
136
|
font-variation-settings:
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@7365admin1/layer-common",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "4.0.3-staging.
|
|
5
|
+
"version": "4.0.3-staging.235",
|
|
6
6
|
"author": "7365admin1",
|
|
7
7
|
"main": "./nuxt.config.ts",
|
|
8
8
|
"//files": "What a consumer extending this layer actually loads. Without this npm ships the whole working tree - the changesets, the CI workflows, the render harness in tools/ and any scratch directory that happened to exist at publish time. Nuxt resolves a layer by directory, so every runtime directory below has to stay listed; adding a new top-level runtime directory means adding it here too.",
|