@7365admin1/layer-common 3.2.2-staging.163 → 3.2.2-staging.164

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.
@@ -752,6 +752,20 @@
752
752
  font-weight: var(--fw-btn);
753
753
  letter-spacing: 0;
754
754
  color: var(--text2);
755
+ /*
756
+ * Same reason as `.screen-btn-ghost` (#1200): `border-color` alone draws
757
+ * nothing, it only tints an edge whose width the Vuetify `variant` decided.
758
+ * Measured: paired with `outlined` this rule gives 1px, paired with `flat`
759
+ * it gives 0px - and the fill is `--card`, the same colour as the surface
760
+ * behind it, so a borderless copy has no boundary at all.
761
+ *
762
+ * The one call site today (`TableMain.vue`, Scan QR Code) does use
763
+ * `outlined`, so nothing is visibly broken right now. This is the latent
764
+ * half of the same defect: the next caller who writes `flat` gets an
765
+ * invisible button and no error. Naming the width closes it.
766
+ */
767
+ border-width: 1px;
768
+ border-style: solid;
755
769
  border-color: var(--border);
756
770
  background: var(--card);
757
771
  }
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.163",
5
+ "version": "3.2.2-staging.164",
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.",