@vaneui/ui 0.9.0-alpha.20260106192523.680d7a3 → 0.9.0-alpha.20260107081332.7a31978
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/ui/classes/appearanceClasses.d.ts +7 -4
- package/dist/components/ui/classes/appearanceClasses.d.ts.map +1 -1
- package/dist/components/ui/props/propDescriptions.d.ts +1 -1
- package/dist/index.esm.js +8 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +8 -5
- package/dist/index.js.map +1 -1
- package/dist/ui.css +15 -15
- package/package.json +1 -1
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
/** Background consumer classes - consume --bg-color, --bg-hover-color, --bg-active-color
|
|
1
|
+
/** Background consumer classes - consume --bg-color, --bg-hover-color, --bg-active-color
|
|
2
|
+
* Uses bg-() syntax (background-color) instead of [background:] shorthand
|
|
3
|
+
* to allow gradient overrides via className without conflicts.
|
|
4
|
+
*/
|
|
2
5
|
export declare const bgConsumerClasses: {
|
|
3
|
-
readonly base: "
|
|
4
|
-
readonly hover: "hover:
|
|
5
|
-
readonly active: "active:
|
|
6
|
+
readonly base: "bg-(--bg-color)";
|
|
7
|
+
readonly hover: "hover:bg-(--bg-hover-color)";
|
|
8
|
+
readonly active: "active:bg-(--bg-active-color)";
|
|
6
9
|
};
|
|
7
10
|
/** Text color consumer class - consumes --text-color */
|
|
8
11
|
export declare const textConsumerClass = "text-(--text-color)";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appearanceClasses.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/classes/appearanceClasses.ts"],"names":[],"mappings":"AAOA
|
|
1
|
+
{"version":3,"file":"appearanceClasses.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/classes/appearanceClasses.ts"],"names":[],"mappings":"AAOA;;;GAGG;AACH,eAAO,MAAM,iBAAiB;;;;CAIpB,CAAC;AAEX,wDAAwD;AACxD,eAAO,MAAM,iBAAiB,wBAAwB,CAAC;AAEvD,sDAAsD;AACtD,eAAO,MAAM,mBAAmB,4BAA4B,CAAC;AAE7D,kDAAkD;AAClD,eAAO,MAAM,iBAAiB,wBAAwB,CAAC;AAEvD,mEAAmE;AACnE,eAAO,MAAM,yBAAyB,yCAAyC,CAAC;AAEhF,4DAA4D;AAC5D,eAAO,MAAM,mBAAmB,4BAA4B,CAAC;AAE7D,sEAAsE;AACtE,eAAO,MAAM,sBAAsB,iDAAiD,CAAC"}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Auto-generated prop descriptions from JSDoc comments.
|
|
3
3
|
* DO NOT EDIT MANUALLY - Run 'npm run props:generate' to regenerate.
|
|
4
4
|
*
|
|
5
|
-
* Generated on: 2026-01-
|
|
5
|
+
* Generated on: 2026-01-07T08:13:34.116Z
|
|
6
6
|
*/
|
|
7
7
|
export interface PropDescription {
|
|
8
8
|
description: string;
|
package/dist/index.esm.js
CHANGED
|
@@ -225,7 +225,7 @@ const ComponentCategories = {
|
|
|
225
225
|
* Auto-generated prop descriptions from JSDoc comments.
|
|
226
226
|
* DO NOT EDIT MANUALLY - Run 'npm run props:generate' to regenerate.
|
|
227
227
|
*
|
|
228
|
-
* Generated on: 2026-01-
|
|
228
|
+
* Generated on: 2026-01-07T08:13:34.116Z
|
|
229
229
|
*/
|
|
230
230
|
const PropDescriptions = {
|
|
231
231
|
"appearance": {
|
|
@@ -4533,11 +4533,14 @@ const themeDefaults = {
|
|
|
4533
4533
|
that are set by CSS rules in vars.css based on
|
|
4534
4534
|
data-appearance and data-variant attributes.
|
|
4535
4535
|
========================================== */
|
|
4536
|
-
/** Background consumer classes - consume --bg-color, --bg-hover-color, --bg-active-color
|
|
4536
|
+
/** Background consumer classes - consume --bg-color, --bg-hover-color, --bg-active-color
|
|
4537
|
+
* Uses bg-() syntax (background-color) instead of [background:] shorthand
|
|
4538
|
+
* to allow gradient overrides via className without conflicts.
|
|
4539
|
+
*/
|
|
4537
4540
|
const bgConsumerClasses = {
|
|
4538
|
-
base: "
|
|
4539
|
-
hover: "hover:
|
|
4540
|
-
active: "active:
|
|
4541
|
+
base: "bg-(--bg-color)",
|
|
4542
|
+
hover: "hover:bg-(--bg-hover-color)",
|
|
4543
|
+
active: "active:bg-(--bg-active-color)",
|
|
4541
4544
|
};
|
|
4542
4545
|
/** Text color consumer class - consumes --text-color */
|
|
4543
4546
|
const textConsumerClass = "text-(--text-color)";
|