kaleido-ui 0.1.81 → 0.1.82
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/web/index.cjs +95 -112
- package/dist/web/index.d.cts +4 -0
- package/dist/web/index.d.ts +4 -0
- package/dist/web/index.js +95 -112
- package/package.json +1 -1
package/dist/web/index.d.cts
CHANGED
|
@@ -375,6 +375,7 @@ interface AccountStatusTabItem<TId extends string = string> {
|
|
|
375
375
|
networkLabel: string;
|
|
376
376
|
networkBannerClassName: string;
|
|
377
377
|
accentBg?: string;
|
|
378
|
+
/** @deprecated Borderless sweep (DESIGN.md Coherence Rules): the icon tile is tinted via `accentBg` only. Kept for source compat. */
|
|
378
379
|
accentBorder?: string;
|
|
379
380
|
}
|
|
380
381
|
interface AccountStatusTabsProps<TId extends string = string> {
|
|
@@ -1388,7 +1389,9 @@ interface DepositNetworkConfigEntry {
|
|
|
1388
1389
|
color: string;
|
|
1389
1390
|
bg: string;
|
|
1390
1391
|
text: string;
|
|
1392
|
+
/** @deprecated Borderless sweep (DESIGN.md Coherence Rules): tone comes from `bg`; no border rings. Kept for source compat. */
|
|
1391
1393
|
border: string;
|
|
1394
|
+
/** @deprecated Borderless sweep: the QR panel carries only `qrGlow` now. Kept for source compat. */
|
|
1392
1395
|
qrBorder: string;
|
|
1393
1396
|
/** Inline style. Apply via `style={network.qrGlow}`. */
|
|
1394
1397
|
qrGlow: CSSProperties;
|
|
@@ -1442,6 +1445,7 @@ interface DepositNetworkOption {
|
|
|
1442
1445
|
description: string;
|
|
1443
1446
|
icon: ReactNode;
|
|
1444
1447
|
accentBg: string;
|
|
1448
|
+
/** @deprecated Borderless sweep (DESIGN.md Coherence Rules): the suggested row is tinted via `accentBg` only. Kept for source compat. */
|
|
1445
1449
|
accentBorder: string;
|
|
1446
1450
|
accentText: string;
|
|
1447
1451
|
}
|
package/dist/web/index.d.ts
CHANGED
|
@@ -375,6 +375,7 @@ interface AccountStatusTabItem<TId extends string = string> {
|
|
|
375
375
|
networkLabel: string;
|
|
376
376
|
networkBannerClassName: string;
|
|
377
377
|
accentBg?: string;
|
|
378
|
+
/** @deprecated Borderless sweep (DESIGN.md Coherence Rules): the icon tile is tinted via `accentBg` only. Kept for source compat. */
|
|
378
379
|
accentBorder?: string;
|
|
379
380
|
}
|
|
380
381
|
interface AccountStatusTabsProps<TId extends string = string> {
|
|
@@ -1388,7 +1389,9 @@ interface DepositNetworkConfigEntry {
|
|
|
1388
1389
|
color: string;
|
|
1389
1390
|
bg: string;
|
|
1390
1391
|
text: string;
|
|
1392
|
+
/** @deprecated Borderless sweep (DESIGN.md Coherence Rules): tone comes from `bg`; no border rings. Kept for source compat. */
|
|
1391
1393
|
border: string;
|
|
1394
|
+
/** @deprecated Borderless sweep: the QR panel carries only `qrGlow` now. Kept for source compat. */
|
|
1392
1395
|
qrBorder: string;
|
|
1393
1396
|
/** Inline style. Apply via `style={network.qrGlow}`. */
|
|
1394
1397
|
qrGlow: CSSProperties;
|
|
@@ -1442,6 +1445,7 @@ interface DepositNetworkOption {
|
|
|
1442
1445
|
description: string;
|
|
1443
1446
|
icon: ReactNode;
|
|
1444
1447
|
accentBg: string;
|
|
1448
|
+
/** @deprecated Borderless sweep (DESIGN.md Coherence Rules): the suggested row is tinted via `accentBg` only. Kept for source compat. */
|
|
1445
1449
|
accentBorder: string;
|
|
1446
1450
|
accentText: string;
|
|
1447
1451
|
}
|