@7365admin1/layer-common 3.2.2-staging.179 → 3.2.2-staging.181

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.
@@ -334,4 +334,18 @@ onUnmounted(() => {
334
334
  white-space: normal;
335
335
  line-height: 1.2;
336
336
  }
337
+
338
+ /**
339
+ * The attach icon (mdi-paperclip) was drawing at Vuetify's default
340
+ * `.v-input__prepend > .v-icon { opacity: var(--v-medium-emphasis-opacity) }`
341
+ * (0.64) - the same field-icon dimming ~200 other call sites rely on, so it is
342
+ * overridden here only, not in the layer's token. Full opacity, `--text2` -
343
+ * the same colour `.screen-icon-btn` already uses for an icon at rest -
344
+ * matches a sibling icon drawn outside a field (e.g. a composer's chat icon,
345
+ * which is never subject to this Vuetify rule in the first place).
346
+ */
347
+ .filter-field :deep(.v-input__prepend > .v-icon) {
348
+ opacity: 1;
349
+ color: var(--text2);
350
+ }
337
351
  </style>
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.179",
5
+ "version": "3.2.2-staging.181",
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.",