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

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.
@@ -456,6 +456,21 @@
456
456
  letter-spacing: 0;
457
457
  text-transform: none;
458
458
  color: var(--text2);
459
+ /*
460
+ * THE EDGE IS THE GHOST. The handoff draws this button as "40px, 1px border,
461
+ * card fill" - the border is what separates it from the page, since the fill
462
+ * is the same `--card` as the surface behind it.
463
+ *
464
+ * `border-color` alone does not draw anything. It only tinted an edge that
465
+ * Vuetify's `variant` had already decided the width of: `outlined` gives
466
+ * `thin`, `flat` gives 0. So the same class rendered a bordered button at 48
467
+ * call sites and a borderless one at 13 - measured 1px vs 0px, both themes -
468
+ * and which you got depended on a `variant` a caller had no reason to think
469
+ * was load-bearing. Naming the width here makes the class draw the design's
470
+ * button whichever variant it is paired with.
471
+ */
472
+ border-width: 1px;
473
+ border-style: solid;
459
474
  border-color: var(--border);
460
475
  background: var(--card);
461
476
  }
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.162",
5
+ "version": "3.2.2-staging.163",
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.",