@refineui/react 0.0.2 → 0.0.3
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/index.cjs +17 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -20
- package/dist/index.d.ts +20 -20
- package/dist/index.js +17 -17
- package/dist/index.js.map +1 -1
- package/dist/spec/contract-index.json +1 -1
- package/dist/spec/token-graph.json +234 -38
- package/dist/spec/token-trace-v2.json +156 -6
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -587,20 +587,20 @@ var componentColorTokens = {
|
|
|
587
587
|
border: semanticToken("borderDefault"),
|
|
588
588
|
title: semanticToken("foregroundPrimary"),
|
|
589
589
|
description: {
|
|
590
|
-
default: semanticToken("
|
|
591
|
-
info:
|
|
592
|
-
success:
|
|
593
|
-
warning:
|
|
594
|
-
danger:
|
|
595
|
-
custom:
|
|
590
|
+
default: semanticToken("foregroundSecondary"),
|
|
591
|
+
info: semanticToken("foregroundInfo"),
|
|
592
|
+
success: semanticToken("foregroundSuccess"),
|
|
593
|
+
warning: semanticToken("foregroundWarning"),
|
|
594
|
+
danger: semanticToken("foregroundError"),
|
|
595
|
+
custom: semanticToken("foregroundDiscovery")
|
|
596
596
|
},
|
|
597
597
|
accent: {
|
|
598
598
|
default: semanticToken("foregroundPrimary"),
|
|
599
|
-
info:
|
|
600
|
-
success:
|
|
601
|
-
warning:
|
|
602
|
-
danger:
|
|
603
|
-
custom:
|
|
599
|
+
info: semanticToken("foregroundInfo"),
|
|
600
|
+
success: semanticToken("foregroundSuccess"),
|
|
601
|
+
warning: semanticToken("foregroundWarning"),
|
|
602
|
+
danger: semanticToken("foregroundError"),
|
|
603
|
+
custom: semanticToken("foregroundDiscovery")
|
|
604
604
|
}
|
|
605
605
|
},
|
|
606
606
|
badge: {
|
|
@@ -5512,31 +5512,31 @@ var variantSlotClasses = {
|
|
|
5512
5512
|
root: "bg-refineui-alias-background-primary",
|
|
5513
5513
|
icon: "text-refineui-alias-foreground-info",
|
|
5514
5514
|
title: "text-refineui-alias-foreground-info",
|
|
5515
|
-
description: "text-refineui-alias-
|
|
5515
|
+
description: "text-refineui-alias-foreground-info"
|
|
5516
5516
|
},
|
|
5517
5517
|
success: {
|
|
5518
5518
|
root: "bg-refineui-alias-background-primary",
|
|
5519
5519
|
icon: "text-refineui-alias-foreground-success",
|
|
5520
5520
|
title: "text-refineui-alias-foreground-success",
|
|
5521
|
-
description: "text-refineui-alias-
|
|
5521
|
+
description: "text-refineui-alias-foreground-success"
|
|
5522
5522
|
},
|
|
5523
5523
|
warning: {
|
|
5524
5524
|
root: "bg-refineui-alias-background-primary",
|
|
5525
5525
|
icon: "text-refineui-alias-foreground-warning",
|
|
5526
5526
|
title: "text-refineui-alias-foreground-warning",
|
|
5527
|
-
description: "text-refineui-alias-
|
|
5527
|
+
description: "text-refineui-alias-foreground-warning"
|
|
5528
5528
|
},
|
|
5529
5529
|
danger: {
|
|
5530
|
-
root: "bg-refineui-alias-background-
|
|
5530
|
+
root: "bg-refineui-alias-background-primary",
|
|
5531
5531
|
icon: "text-refineui-alias-foreground-error",
|
|
5532
5532
|
title: "text-refineui-alias-foreground-error",
|
|
5533
|
-
description: "text-refineui-alias-
|
|
5533
|
+
description: "text-refineui-alias-foreground-error"
|
|
5534
5534
|
},
|
|
5535
5535
|
custom: {
|
|
5536
5536
|
root: "bg-refineui-alias-background-primary",
|
|
5537
5537
|
icon: "text-refineui-alias-foreground-discovery",
|
|
5538
5538
|
title: "text-refineui-alias-foreground-discovery",
|
|
5539
|
-
description: "text-refineui-alias-
|
|
5539
|
+
description: "text-refineui-alias-foreground-discovery"
|
|
5540
5540
|
}
|
|
5541
5541
|
};
|
|
5542
5542
|
var alertRecipe = defineSlotRecipe({
|