@wpic/ui 0.3.6 → 0.3.8
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/dist/components/WCard.vue.d.ts +2 -0
- package/dist/wpic-ui.cjs +53 -53
- package/dist/wpic-ui.css +18 -0
- package/dist/wpic-ui.js +517 -516
- package/package.json +1 -1
- package/src/style.css +18 -0
package/dist/wpic-ui.css
CHANGED
|
@@ -56,6 +56,24 @@
|
|
|
56
56
|
.border-strong { border-color: var(--border-strong); }
|
|
57
57
|
.border-hover { border-color: var(--border-hover); }
|
|
58
58
|
|
|
59
|
+
/* WCard owns its border colors. This avoids a missing host Tailwind utility
|
|
60
|
+
falling back to currentColor and producing a black header separator. */
|
|
61
|
+
.wpic-card--bordered {
|
|
62
|
+
border: 1px solid var(--border-strong);
|
|
63
|
+
}
|
|
64
|
+
.wpic-card--borderless {
|
|
65
|
+
border: 0;
|
|
66
|
+
}
|
|
67
|
+
.wpic-card__header--divided {
|
|
68
|
+
border-bottom: 1px solid var(--border-subtle);
|
|
69
|
+
}
|
|
70
|
+
.wpic-card__header--undivided {
|
|
71
|
+
border-bottom: 0;
|
|
72
|
+
}
|
|
73
|
+
.wpic-card__footer {
|
|
74
|
+
border-top: 1px solid var(--border-subtle);
|
|
75
|
+
}
|
|
76
|
+
|
|
59
77
|
/* ── Text ─────────────────────────────────────────────────────────────── */
|
|
60
78
|
.text-main { color: var(--text-main); }
|
|
61
79
|
.text-muted { color: var(--text-muted); }
|