@7365admin1/layer-common 3.2.2-staging.130 → 3.2.2-staging.131

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.
@@ -77,7 +77,7 @@
77
77
  [class*="text-overline"],
78
78
  .v-badge__badge,
79
79
  .v-kbd
80
- ),
80
+ ):not(.material-symbols-outlined),
81
81
  .v-overlay-container
82
82
  :is(
83
83
  [class*="text-h"],
@@ -88,7 +88,7 @@
88
88
  [class*="text-overline"],
89
89
  .v-badge__badge,
90
90
  .v-kbd
91
- ) {
91
+ ):not(.material-symbols-outlined) {
92
92
  font-family: var(--font-sans, Roboto, sans-serif);
93
93
  }
94
94
 
@@ -124,6 +124,23 @@
124
124
  -webkit-font-smoothing: antialiased;
125
125
  }
126
126
 
127
+ /**
128
+ * The icon face, re-asserted at (0,3,0).
129
+ *
130
+ * A `<v-icon class="text-h6">` carries BOTH the icon class and a typography
131
+ * utility, so the re-point above (a descendant of `.v-application`, (0,2,0))
132
+ * would otherwise beat the single-class rule (0,1,0) and the ligature would
133
+ * fall back to Manrope - drawing the literal word "local_shipping" instead of
134
+ * a truck. The `:not()` guard above stops that here; this block stops it
135
+ * anywhere an app ships its own copy of the re-point, whatever the stylesheet
136
+ * order. Repeating the class is how the weight is raised - no `!important`,
137
+ * same precedent as the re-point itself, so a screen can still override.
138
+ */
139
+ .v-application .material-symbols-outlined.material-symbols-outlined,
140
+ .v-overlay-container .material-symbols-outlined.material-symbols-outlined {
141
+ font-family: "Material Symbols Outlined";
142
+ }
143
+
127
144
  /* mdi's spin modifier, kept working now the glyph is not a `:before`.
128
145
  `@keyframes mdi-spin` still comes from `@mdi/font`, which stays loaded so
129
146
  that any icon name without a mapping keeps drawing its old glyph. */
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@7365admin1/layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "3.2.2-staging.130",
5
+ "version": "3.2.2-staging.131",
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.",