@fctc/sme-widget-ui 2.5.2 → 2.5.4
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.js +7 -0
- package/dist/index.mjs +7 -0
- package/dist/widgets.d.mts +1 -0
- package/dist/widgets.d.ts +1 -0
- package/dist/widgets.js +7 -0
- package/dist/widgets.mjs +7 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17179,6 +17179,11 @@ var typeStyles = {
|
|
|
17179
17179
|
backgroundColor: "#EEFEFF",
|
|
17180
17180
|
color: "#23A9AE",
|
|
17181
17181
|
border: "1px solid #23A9AE"
|
|
17182
|
+
},
|
|
17183
|
+
browned: {
|
|
17184
|
+
backgroundColor: "#F2E8E1",
|
|
17185
|
+
color: "#8B5C3A",
|
|
17186
|
+
border: "1px solid #8B5C3A"
|
|
17182
17187
|
}
|
|
17183
17188
|
};
|
|
17184
17189
|
var baseStyle = {
|
|
@@ -17209,6 +17214,7 @@ var ButtonBadgeField = (props) => {
|
|
|
17209
17214
|
const decorationPurpled = props["decoration-purpled"] && domainHelper.checkDomain(formValues, props["decoration-purpled"]);
|
|
17210
17215
|
const decorationOrange = props["decoration-oranged"] && domainHelper.checkDomain(formValues, props["decoration-oranged"]);
|
|
17211
17216
|
const decorationInforLight = props["decoration-info-light"] && domainHelper.checkDomain(formValues, props["decoration-info-light"]);
|
|
17217
|
+
const decorationBrowned = props["decoration-browned"] && domainHelper.checkDomain(formValues, props["decoration-browned"]);
|
|
17212
17218
|
const getType = () => {
|
|
17213
17219
|
if (decorationInfo) return typeStyles["info"];
|
|
17214
17220
|
if (decorationSuccess) return typeStyles["success"];
|
|
@@ -17216,6 +17222,7 @@ var ButtonBadgeField = (props) => {
|
|
|
17216
17222
|
if (decorationWarning || decorationOrange) return typeStyles["warning"];
|
|
17217
17223
|
if (decorationPurpled) return typeStyles["purpled"];
|
|
17218
17224
|
if (decorationInforLight) return typeStyles["blue_light"];
|
|
17225
|
+
if (decorationBrowned) return typeStyles["browned"];
|
|
17219
17226
|
return typeStyles["default"];
|
|
17220
17227
|
};
|
|
17221
17228
|
const getLabel = (value2) => {
|
package/dist/index.mjs
CHANGED
|
@@ -17052,6 +17052,11 @@ var typeStyles = {
|
|
|
17052
17052
|
backgroundColor: "#EEFEFF",
|
|
17053
17053
|
color: "#23A9AE",
|
|
17054
17054
|
border: "1px solid #23A9AE"
|
|
17055
|
+
},
|
|
17056
|
+
browned: {
|
|
17057
|
+
backgroundColor: "#F2E8E1",
|
|
17058
|
+
color: "#8B5C3A",
|
|
17059
|
+
border: "1px solid #8B5C3A"
|
|
17055
17060
|
}
|
|
17056
17061
|
};
|
|
17057
17062
|
var baseStyle = {
|
|
@@ -17082,6 +17087,7 @@ var ButtonBadgeField = (props) => {
|
|
|
17082
17087
|
const decorationPurpled = props["decoration-purpled"] && domainHelper.checkDomain(formValues, props["decoration-purpled"]);
|
|
17083
17088
|
const decorationOrange = props["decoration-oranged"] && domainHelper.checkDomain(formValues, props["decoration-oranged"]);
|
|
17084
17089
|
const decorationInforLight = props["decoration-info-light"] && domainHelper.checkDomain(formValues, props["decoration-info-light"]);
|
|
17090
|
+
const decorationBrowned = props["decoration-browned"] && domainHelper.checkDomain(formValues, props["decoration-browned"]);
|
|
17085
17091
|
const getType = () => {
|
|
17086
17092
|
if (decorationInfo) return typeStyles["info"];
|
|
17087
17093
|
if (decorationSuccess) return typeStyles["success"];
|
|
@@ -17089,6 +17095,7 @@ var ButtonBadgeField = (props) => {
|
|
|
17089
17095
|
if (decorationWarning || decorationOrange) return typeStyles["warning"];
|
|
17090
17096
|
if (decorationPurpled) return typeStyles["purpled"];
|
|
17091
17097
|
if (decorationInforLight) return typeStyles["blue_light"];
|
|
17098
|
+
if (decorationBrowned) return typeStyles["browned"];
|
|
17092
17099
|
return typeStyles["default"];
|
|
17093
17100
|
};
|
|
17094
17101
|
const getLabel = (value2) => {
|
package/dist/widgets.d.mts
CHANGED
package/dist/widgets.d.ts
CHANGED
package/dist/widgets.js
CHANGED
|
@@ -16428,6 +16428,11 @@ var typeStyles = {
|
|
|
16428
16428
|
backgroundColor: "#EEFEFF",
|
|
16429
16429
|
color: "#23A9AE",
|
|
16430
16430
|
border: "1px solid #23A9AE"
|
|
16431
|
+
},
|
|
16432
|
+
browned: {
|
|
16433
|
+
backgroundColor: "#F2E8E1",
|
|
16434
|
+
color: "#8B5C3A",
|
|
16435
|
+
border: "1px solid #8B5C3A"
|
|
16431
16436
|
}
|
|
16432
16437
|
};
|
|
16433
16438
|
var baseStyle = {
|
|
@@ -16458,6 +16463,7 @@ var ButtonBadgeField = (props) => {
|
|
|
16458
16463
|
const decorationPurpled = props["decoration-purpled"] && domainHelper.checkDomain(formValues, props["decoration-purpled"]);
|
|
16459
16464
|
const decorationOrange = props["decoration-oranged"] && domainHelper.checkDomain(formValues, props["decoration-oranged"]);
|
|
16460
16465
|
const decorationInforLight = props["decoration-info-light"] && domainHelper.checkDomain(formValues, props["decoration-info-light"]);
|
|
16466
|
+
const decorationBrowned = props["decoration-browned"] && domainHelper.checkDomain(formValues, props["decoration-browned"]);
|
|
16461
16467
|
const getType = () => {
|
|
16462
16468
|
if (decorationInfo) return typeStyles["info"];
|
|
16463
16469
|
if (decorationSuccess) return typeStyles["success"];
|
|
@@ -16465,6 +16471,7 @@ var ButtonBadgeField = (props) => {
|
|
|
16465
16471
|
if (decorationWarning || decorationOrange) return typeStyles["warning"];
|
|
16466
16472
|
if (decorationPurpled) return typeStyles["purpled"];
|
|
16467
16473
|
if (decorationInforLight) return typeStyles["blue_light"];
|
|
16474
|
+
if (decorationBrowned) return typeStyles["browned"];
|
|
16468
16475
|
return typeStyles["default"];
|
|
16469
16476
|
};
|
|
16470
16477
|
const getLabel = (value2) => {
|
package/dist/widgets.mjs
CHANGED
|
@@ -16365,6 +16365,11 @@ var typeStyles = {
|
|
|
16365
16365
|
backgroundColor: "#EEFEFF",
|
|
16366
16366
|
color: "#23A9AE",
|
|
16367
16367
|
border: "1px solid #23A9AE"
|
|
16368
|
+
},
|
|
16369
|
+
browned: {
|
|
16370
|
+
backgroundColor: "#F2E8E1",
|
|
16371
|
+
color: "#8B5C3A",
|
|
16372
|
+
border: "1px solid #8B5C3A"
|
|
16368
16373
|
}
|
|
16369
16374
|
};
|
|
16370
16375
|
var baseStyle = {
|
|
@@ -16395,6 +16400,7 @@ var ButtonBadgeField = (props) => {
|
|
|
16395
16400
|
const decorationPurpled = props["decoration-purpled"] && domainHelper.checkDomain(formValues, props["decoration-purpled"]);
|
|
16396
16401
|
const decorationOrange = props["decoration-oranged"] && domainHelper.checkDomain(formValues, props["decoration-oranged"]);
|
|
16397
16402
|
const decorationInforLight = props["decoration-info-light"] && domainHelper.checkDomain(formValues, props["decoration-info-light"]);
|
|
16403
|
+
const decorationBrowned = props["decoration-browned"] && domainHelper.checkDomain(formValues, props["decoration-browned"]);
|
|
16398
16404
|
const getType = () => {
|
|
16399
16405
|
if (decorationInfo) return typeStyles["info"];
|
|
16400
16406
|
if (decorationSuccess) return typeStyles["success"];
|
|
@@ -16402,6 +16408,7 @@ var ButtonBadgeField = (props) => {
|
|
|
16402
16408
|
if (decorationWarning || decorationOrange) return typeStyles["warning"];
|
|
16403
16409
|
if (decorationPurpled) return typeStyles["purpled"];
|
|
16404
16410
|
if (decorationInforLight) return typeStyles["blue_light"];
|
|
16411
|
+
if (decorationBrowned) return typeStyles["browned"];
|
|
16405
16412
|
return typeStyles["default"];
|
|
16406
16413
|
};
|
|
16407
16414
|
const getLabel = (value2) => {
|