bianic-ui 0.4.13 → 0.4.14
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/cjs/index.js +6 -1
- package/dist/esm/index.js +6 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -3442,6 +3442,11 @@ var TagLabel = function (_a) {
|
|
|
3442
3442
|
bg = "bg-primary-black border border-bia-black";
|
|
3443
3443
|
fontColor = "text-primary-white";
|
|
3444
3444
|
}
|
|
3445
|
+
else if (color === "default") {
|
|
3446
|
+
bg = "bg-bia-gray-disabled border border-bia-gray-disabled";
|
|
3447
|
+
fontColor = "text-primary-black";
|
|
3448
|
+
closefill = "fill-primary-cool";
|
|
3449
|
+
}
|
|
3445
3450
|
else if (color === "blue") {
|
|
3446
3451
|
bg = "bg-bia-blue border border-bia-blue";
|
|
3447
3452
|
fontColor = "text-primary-white";
|
|
@@ -3490,7 +3495,7 @@ var TagLabel = function (_a) {
|
|
|
3490
3495
|
if (size === "small") {
|
|
3491
3496
|
fontSize = "text-xs font-normal";
|
|
3492
3497
|
padding = "px-[5px] py-[2px]";
|
|
3493
|
-
fontPadding = "px-[5px]
|
|
3498
|
+
fontPadding = "px-[5px]";
|
|
3494
3499
|
svgSize = "w-3 h-3";
|
|
3495
3500
|
}
|
|
3496
3501
|
else if (size === "tiny") {
|
package/dist/esm/index.js
CHANGED
|
@@ -3440,6 +3440,11 @@ var TagLabel = function (_a) {
|
|
|
3440
3440
|
bg = "bg-primary-black border border-bia-black";
|
|
3441
3441
|
fontColor = "text-primary-white";
|
|
3442
3442
|
}
|
|
3443
|
+
else if (color === "default") {
|
|
3444
|
+
bg = "bg-bia-gray-disabled border border-bia-gray-disabled";
|
|
3445
|
+
fontColor = "text-primary-black";
|
|
3446
|
+
closefill = "fill-primary-cool";
|
|
3447
|
+
}
|
|
3443
3448
|
else if (color === "blue") {
|
|
3444
3449
|
bg = "bg-bia-blue border border-bia-blue";
|
|
3445
3450
|
fontColor = "text-primary-white";
|
|
@@ -3488,7 +3493,7 @@ var TagLabel = function (_a) {
|
|
|
3488
3493
|
if (size === "small") {
|
|
3489
3494
|
fontSize = "text-xs font-normal";
|
|
3490
3495
|
padding = "px-[5px] py-[2px]";
|
|
3491
|
-
fontPadding = "px-[5px]
|
|
3496
|
+
fontPadding = "px-[5px]";
|
|
3492
3497
|
svgSize = "w-3 h-3";
|
|
3493
3498
|
}
|
|
3494
3499
|
else if (size === "tiny") {
|
package/package.json
CHANGED