@fewangsit/wangsvue-presets 1.0.103-alpha.0 → 1.0.103-alpha.2
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/fixedasset/calendar/index.js +3 -3
- package/fixedasset/colors.config.json +73 -73
- package/fixedasset/index.es.js +25 -25
- package/fixedasset/index.system.js +2 -2
- package/fixedasset/inputbadge/index.js +3 -3
- package/fixedasset/inputcurrency/index.d.ts +4 -4
- package/fixedasset/inputgroup/index.js +3 -3
- package/fixedasset/inputphonenumber/index.d.ts +8 -8
- package/fixedasset/inputphonenumber/index.js +2 -2
- package/fixedasset/style.css +9 -9
- package/fixedasset/toggleswitch/index.js +2 -2
- package/globalsettings/calendar/index.js +3 -3
- package/globalsettings/colors.config.json +97 -97
- package/globalsettings/index.es.js +21 -21
- package/globalsettings/index.system.js +2 -2
- package/globalsettings/inputbadge/index.js +3 -3
- package/globalsettings/inputcurrency/index.d.ts +4 -4
- package/globalsettings/inputgroup/index.js +3 -3
- package/globalsettings/inputphonenumber/index.d.ts +8 -8
- package/globalsettings/inputphonenumber/index.js +2 -2
- package/globalsettings/style.css +10 -10
- package/globalsettings/tabmenu/index.js +1 -1
- package/globalsettings/toggleswitch/index.js +2 -2
- package/package.json +13 -13
- package/supplyasset/calendar/index.js +3 -3
- package/supplyasset/colors.config.json +97 -97
- package/supplyasset/index.es.js +18 -18
- package/supplyasset/index.system.js +2 -2
- package/supplyasset/inputbadge/index.js +3 -3
- package/supplyasset/inputcurrency/index.d.ts +4 -4
- package/supplyasset/inputgroup/index.js +3 -3
- package/supplyasset/inputphonenumber/index.d.ts +8 -8
- package/supplyasset/inputphonenumber/index.js +2 -2
- package/supplyasset/style.css +10 -10
- package/supplyasset/toggleswitch/index.js +2 -2
- package/wangsvue/calendar/index.js +3 -3
- package/wangsvue/colors.config.json +76 -76
- package/wangsvue/index.es.js +21 -21
- package/wangsvue/index.system.js +2 -2
- package/wangsvue/inputbadge/index.js +3 -3
- package/wangsvue/inputcurrency/index.d.ts +4 -4
- package/wangsvue/inputgroup/index.js +3 -3
- package/wangsvue/inputphonenumber/index.d.ts +8 -8
- package/wangsvue/inputphonenumber/index.js +2 -2
- package/wangsvue/style.css +9 -9
- package/wangsvue/toggleswitch/index.js +2 -2
|
@@ -14,7 +14,7 @@ var index_js_1 = require("../inputtext/index.js");
|
|
|
14
14
|
* To set different ring width for Firefox Browser
|
|
15
15
|
* Also for InputGroupAddon
|
|
16
16
|
*/
|
|
17
|
-
var
|
|
17
|
+
var isChromeBased = navigator.userAgent.includes('Chrome');
|
|
18
18
|
exports.default = {
|
|
19
19
|
root: function (_a) {
|
|
20
20
|
var context = _a.context;
|
|
@@ -24,8 +24,8 @@ exports.default = {
|
|
|
24
24
|
'min-h-[26px] h-fit w-full',
|
|
25
25
|
'ring-inset rounded px-[12px] py-[3px]',
|
|
26
26
|
{
|
|
27
|
-
'ring-[1px]':
|
|
28
|
-
'ring-[0.5px]':
|
|
27
|
+
'ring-[1px]': !isChromeBased,
|
|
28
|
+
'ring-[0.5px]': isChromeBased,
|
|
29
29
|
},
|
|
30
30
|
{ '!ring-danger-500 !dark:ring-danger-500': context.invalidInput },
|
|
31
31
|
{ '!ring-general-200 !dark:ring-general-200': !context.invalidInput },
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
2
|
function currency(ctx: any): {
|
|
3
3
|
class: (string | {
|
|
4
|
-
'ring-[1px]':
|
|
5
|
-
'ring-[0.5px]':
|
|
4
|
+
'ring-[1px]': boolean;
|
|
5
|
+
'ring-[0.5px]': any;
|
|
6
6
|
'!ring-danger-500'?: undefined;
|
|
7
7
|
} | {
|
|
8
8
|
'!ring-danger-500': any;
|
|
@@ -13,8 +13,8 @@ declare namespace _default {
|
|
|
13
13
|
};
|
|
14
14
|
function value(ctx: any): {
|
|
15
15
|
class: (string | {
|
|
16
|
-
'ring-[1px]':
|
|
17
|
-
'ring-[0.5px]':
|
|
16
|
+
'ring-[1px]': boolean;
|
|
17
|
+
'ring-[0.5px]': any;
|
|
18
18
|
'!ring-danger-500'?: undefined;
|
|
19
19
|
} | {
|
|
20
20
|
'!ring-danger-500': any;
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
4
4
|
* To set different ring width for Firefox Browser
|
|
5
5
|
* Also for InputGroupAddon
|
|
6
6
|
*/
|
|
7
|
-
var
|
|
7
|
+
var isChromeBased = navigator.userAgent.includes('Chrome');
|
|
8
8
|
exports.default = {
|
|
9
9
|
root: function (_a) {
|
|
10
10
|
var props = _a.props;
|
|
@@ -19,8 +19,8 @@ exports.default = {
|
|
|
19
19
|
'[&:has(:focus)]:!ring-primary-500 [&:has(:focus)_.inputgroupaddon]:!ring-primary-500': props.ring !== 'none',
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
|
-
'ring-[1px] [&_.inputgroupaddon]:ring-[1px]':
|
|
23
|
-
'ring-[0.5px] [&_.inputgroupaddon]:ring-[0.5px]':
|
|
22
|
+
'ring-[1px] [&_.inputgroupaddon]:ring-[1px]': !isChromeBased && props.ring !== 'none',
|
|
23
|
+
'ring-[0.5px] [&_.inputgroupaddon]:ring-[0.5px]': isChromeBased && props.ring !== 'none',
|
|
24
24
|
},
|
|
25
25
|
'[&_.inputgroupaddon[data-addon-variant=plain]]:!ring-[0px]',
|
|
26
26
|
'[&:has(input)]:cursor-text',
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export function commonClasses({
|
|
2
|
-
|
|
1
|
+
export function commonClasses({ isChromeBased, invalidInput }: {
|
|
2
|
+
isChromeBased: any;
|
|
3
3
|
invalidInput: any;
|
|
4
4
|
}): (string | {
|
|
5
|
-
'ring-[1px]':
|
|
6
|
-
'ring-[0.5px]':
|
|
5
|
+
'ring-[1px]': boolean;
|
|
6
|
+
'ring-[0.5px]': any;
|
|
7
7
|
'!ring-danger-500'?: undefined;
|
|
8
8
|
} | {
|
|
9
9
|
'!ring-danger-500': any;
|
|
@@ -14,8 +14,8 @@ declare namespace _default {
|
|
|
14
14
|
namespace dialcode {
|
|
15
15
|
function root(ctx: any): {
|
|
16
16
|
class: (string | {
|
|
17
|
-
'ring-[1px]':
|
|
18
|
-
'ring-[0.5px]':
|
|
17
|
+
'ring-[1px]': boolean;
|
|
18
|
+
'ring-[0.5px]': any;
|
|
19
19
|
'!ring-danger-500'?: undefined;
|
|
20
20
|
} | {
|
|
21
21
|
'!ring-danger-500': any;
|
|
@@ -34,8 +34,8 @@ declare namespace _default {
|
|
|
34
34
|
}
|
|
35
35
|
function input(ctx: any): {
|
|
36
36
|
class: (string | {
|
|
37
|
-
'ring-[1px]':
|
|
38
|
-
'ring-[0.5px]':
|
|
37
|
+
'ring-[1px]': boolean;
|
|
38
|
+
'ring-[0.5px]': any;
|
|
39
39
|
'!ring-danger-500'?: undefined;
|
|
40
40
|
} | {
|
|
41
41
|
'!ring-danger-500': any;
|
|
@@ -12,9 +12,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.commonClasses = void 0;
|
|
13
13
|
var index_js_1 = require("../multiselect/index.js");
|
|
14
14
|
var commonClasses = function (_a) {
|
|
15
|
-
var
|
|
15
|
+
var isChromeBased = _a.isChromeBased, invalidInput = _a.invalidInput;
|
|
16
16
|
return [
|
|
17
|
-
{ 'ring-[1px]':
|
|
17
|
+
{ 'ring-[1px]': !isChromeBased, 'ring-[0.5px]': isChromeBased },
|
|
18
18
|
{ '!ring-danger-500': invalidInput },
|
|
19
19
|
'ring-inset',
|
|
20
20
|
'ring-general-200',
|
package/fixedasset/style.css
CHANGED
|
@@ -4825,49 +4825,49 @@
|
|
|
4825
4825
|
font-family: 'Manrope', sans-serif !important;
|
|
4826
4826
|
}
|
|
4827
4827
|
|
|
4828
|
-
h1,
|
|
4828
|
+
h1,
|
|
4829
4829
|
.heading-1{
|
|
4830
4830
|
font-size: 22px !important;
|
|
4831
4831
|
font-weight: 600 !important;
|
|
4832
4832
|
line-height: 1.75rem;
|
|
4833
4833
|
}
|
|
4834
4834
|
|
|
4835
|
-
h2,
|
|
4835
|
+
h2,
|
|
4836
4836
|
.heading-2{
|
|
4837
4837
|
font-size: 1.125rem !important;
|
|
4838
4838
|
font-weight: 600 !important;
|
|
4839
4839
|
line-height: 1.5rem;
|
|
4840
4840
|
}
|
|
4841
4841
|
|
|
4842
|
-
h3,
|
|
4842
|
+
h3,
|
|
4843
4843
|
.heading-3{
|
|
4844
4844
|
font-size: 1rem !important;
|
|
4845
4845
|
font-weight: 500 !important;
|
|
4846
4846
|
line-height: 1.25rem;
|
|
4847
4847
|
}
|
|
4848
4848
|
|
|
4849
|
-
h4,
|
|
4849
|
+
h4,
|
|
4850
4850
|
.heading-4{
|
|
4851
4851
|
font-size: 0.875rem !important;
|
|
4852
4852
|
font-weight: 500 !important;
|
|
4853
4853
|
line-height: 1rem;
|
|
4854
4854
|
}
|
|
4855
4855
|
|
|
4856
|
-
p,
|
|
4856
|
+
p,
|
|
4857
4857
|
.p{
|
|
4858
4858
|
font-size: 0.75rem !important;
|
|
4859
4859
|
font-weight: 500 !important;
|
|
4860
4860
|
line-height: 1rem;
|
|
4861
4861
|
}
|
|
4862
4862
|
|
|
4863
|
-
h5,
|
|
4863
|
+
h5,
|
|
4864
4864
|
.heading-5{
|
|
4865
4865
|
font-size: 0.75rem !important;
|
|
4866
4866
|
font-weight: 600 !important;
|
|
4867
4867
|
line-height: 1rem;
|
|
4868
4868
|
}
|
|
4869
4869
|
|
|
4870
|
-
h6,
|
|
4870
|
+
h6,
|
|
4871
4871
|
.heading-6{
|
|
4872
4872
|
font-size: 10px !important;
|
|
4873
4873
|
font-weight: 600 !important;
|
|
@@ -4878,7 +4878,7 @@ h6,
|
|
|
4878
4878
|
scrollbar-width: none;
|
|
4879
4879
|
}
|
|
4880
4880
|
|
|
4881
|
-
.scrollbar-w-thin,
|
|
4881
|
+
.scrollbar-w-thin,
|
|
4882
4882
|
.p-virtualscroller {
|
|
4883
4883
|
scrollbar-width: thin;
|
|
4884
4884
|
}
|
|
@@ -6695,4 +6695,4 @@ h6,
|
|
|
6695
6695
|
|
|
6696
6696
|
.\[\&_ul_li\]\:pl-\[6px\] ul li{
|
|
6697
6697
|
padding-left: 6px;
|
|
6698
|
-
}
|
|
6698
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var
|
|
3
|
+
var isChromeBased = navigator.userAgent.includes('Chrome');
|
|
4
4
|
exports.default = {
|
|
5
5
|
root: function (_a) {
|
|
6
6
|
var props = _a.props;
|
|
@@ -46,7 +46,7 @@ exports.default = {
|
|
|
46
46
|
},
|
|
47
47
|
// Colors
|
|
48
48
|
'ring-1',
|
|
49
|
-
{ 'ring-1':
|
|
49
|
+
{ 'ring-1': !isChromeBased, 'ring-[0.5px]': isChromeBased },
|
|
50
50
|
{
|
|
51
51
|
'before:bg-white': props.modelValue == props.trueValue,
|
|
52
52
|
'before:bg-general-100': props.modelValue !== props.trueValue,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var
|
|
3
|
+
var isChromeBased = navigator.userAgent.includes('Chrome');
|
|
4
4
|
var preset = {
|
|
5
5
|
root: function (_a) {
|
|
6
6
|
var props = _a.props;
|
|
@@ -486,8 +486,8 @@ var preset = {
|
|
|
486
486
|
class: [
|
|
487
487
|
'w-[39px] h-[26px] flex justify-center items-center ring-general-200 rounded',
|
|
488
488
|
{
|
|
489
|
-
'ring-1':
|
|
490
|
-
'ring-[0.5px]':
|
|
489
|
+
'ring-1': !isChromeBased,
|
|
490
|
+
'ring-[0.5px]': isChromeBased,
|
|
491
491
|
},
|
|
492
492
|
],
|
|
493
493
|
},
|
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
{
|
|
2
|
-
"danger-50": "#ffe5e9",
|
|
3
|
-
"danger-100": "#ffccd3",
|
|
4
|
-
"danger-200": "#ff99a7",
|
|
5
|
-
"danger-300": "#ff667a",
|
|
6
|
-
"danger-400": "#ff334e",
|
|
7
|
-
"danger-500": "#ff0022",
|
|
8
|
-
"danger-600": "#cc001b",
|
|
9
|
-
"danger-700": "#990014",
|
|
10
|
-
"danger-800": "#66000e",
|
|
11
|
-
"danger-900": "#330007",
|
|
12
|
-
"danger-950": "#190003",
|
|
13
|
-
|
|
14
|
-
"warning-50": "#fff9e5",
|
|
15
|
-
"warning-100": "#fff4cc",
|
|
16
|
-
"warning-200": "#ffe999",
|
|
17
|
-
"warning-300": "#ffde66",
|
|
18
|
-
"warning-400": "#ffd333",
|
|
19
|
-
"warning-500": "#ffc700",
|
|
20
|
-
"warning-600": "#cca000",
|
|
21
|
-
"warning-700": "#997800",
|
|
22
|
-
"warning-800": "#665000",
|
|
23
|
-
"warning-900": "#332800",
|
|
24
|
-
"warning-950": "#191400",
|
|
25
|
-
|
|
26
|
-
"success-50": "#dbffee",
|
|
27
|
-
"success-100": "#b8ffdc",
|
|
28
|
-
"success-200": "#75ffbc",
|
|
29
|
-
"success-300": "#2eff9a",
|
|
30
|
-
"success-400": "#00eb79",
|
|
31
|
-
"success-500": "#00a455",
|
|
32
|
-
"success-600": "#008545",
|
|
33
|
-
"success-700": "#006132",
|
|
34
|
-
"success-800": "#004222",
|
|
35
|
-
"success-900": "#001f10",
|
|
36
|
-
"success-950": "#000f08",
|
|
37
|
-
|
|
38
|
-
"grayscale-50": "#f7f7f7",
|
|
39
|
-
"grayscale-100": "#f2f2f2",
|
|
40
|
-
"grayscale-200": "#e5e6e6",
|
|
41
|
-
"grayscale-300": "#d8d9d9",
|
|
42
|
-
"grayscale-400": "#cbcccd",
|
|
43
|
-
"grayscale-500": "#bdbebf",
|
|
44
|
-
"grayscale-600": "#97999b",
|
|
45
|
-
"grayscale-700": "#717374",
|
|
46
|
-
"grayscale-800": "#4b4d4e",
|
|
47
|
-
"grayscale-900": "#262627",
|
|
48
|
-
"grayscale-950": "#121212",
|
|
49
|
-
|
|
50
|
-
"general-50": "#ebeaf0",
|
|
51
|
-
"general-100": "#dad9e3",
|
|
52
|
-
"general-200": "#b5b3c7",
|
|
53
|
-
"general-300": "#908cab",
|
|
54
|
-
"general-400": "#6c688d",
|
|
55
|
-
"general-500": "#4e4b66",
|
|
56
|
-
"general-600": "#3f3c52",
|
|
57
|
-
"general-700": "#2f2d3e",
|
|
58
|
-
"general-800": "#201e29",
|
|
59
|
-
"general-900": "#100f15",
|
|
60
|
-
"general-950": "#070609",
|
|
61
|
-
|
|
62
|
-
"primary-50": "#ebeaf0",
|
|
63
|
-
"primary-100": "#dad9e3",
|
|
64
|
-
"primary-200": "#b5b3c7",
|
|
65
|
-
"primary-300": "#908cab",
|
|
66
|
-
"primary-400": "#6c688d",
|
|
67
|
-
"primary-500": "#201e29",
|
|
68
|
-
"primary-600": "#100f15",
|
|
69
|
-
"primary-700": "#070609",
|
|
70
|
-
"primary-800": "#050407",
|
|
71
|
-
"primary-900": "#030204",
|
|
72
|
-
"primary-950": "#020103",
|
|
73
|
-
|
|
74
|
-
"fixed-primary-50": "#e5f0ff",
|
|
75
|
-
"fixed-primary-100": "#cce0ff",
|
|
76
|
-
"fixed-primary-200": "#94bfff",
|
|
77
|
-
"fixed-primary-300": "#61a0ff",
|
|
78
|
-
"fixed-primary-400": "#2e82ff",
|
|
79
|
-
"fixed-primary-500": "#0063f7",
|
|
80
|
-
"fixed-primary-600": "#0050c7",
|
|
81
|
-
"fixed-primary-700": "#003b94",
|
|
82
|
-
"fixed-primary-800": "#002761",
|
|
83
|
-
"fixed-primary-900": "#001433",
|
|
84
|
-
"fixed-primary-950": "#000a19",
|
|
85
|
-
|
|
86
|
-
"supply-primary-50": "#ECFDF5",
|
|
87
|
-
"supply-primary-100": "#d1fae5",
|
|
88
|
-
"supply-primary-200": "#a7f3d0",
|
|
89
|
-
"supply-primary-300": "#6ee7b7",
|
|
90
|
-
"supply-primary-400": "#34d399",
|
|
91
|
-
"supply-primary-500": "#10b981",
|
|
92
|
-
"supply-primary-600": "#059669",
|
|
93
|
-
"supply-primary-700": "#047857",
|
|
94
|
-
"supply-primary-800": "#065F46",
|
|
95
|
-
"supply-primary-900": "#064E3B",
|
|
96
|
-
"supply-primary-950": "#022C22"
|
|
97
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"danger-50": "#ffe5e9",
|
|
3
|
+
"danger-100": "#ffccd3",
|
|
4
|
+
"danger-200": "#ff99a7",
|
|
5
|
+
"danger-300": "#ff667a",
|
|
6
|
+
"danger-400": "#ff334e",
|
|
7
|
+
"danger-500": "#ff0022",
|
|
8
|
+
"danger-600": "#cc001b",
|
|
9
|
+
"danger-700": "#990014",
|
|
10
|
+
"danger-800": "#66000e",
|
|
11
|
+
"danger-900": "#330007",
|
|
12
|
+
"danger-950": "#190003",
|
|
13
|
+
|
|
14
|
+
"warning-50": "#fff9e5",
|
|
15
|
+
"warning-100": "#fff4cc",
|
|
16
|
+
"warning-200": "#ffe999",
|
|
17
|
+
"warning-300": "#ffde66",
|
|
18
|
+
"warning-400": "#ffd333",
|
|
19
|
+
"warning-500": "#ffc700",
|
|
20
|
+
"warning-600": "#cca000",
|
|
21
|
+
"warning-700": "#997800",
|
|
22
|
+
"warning-800": "#665000",
|
|
23
|
+
"warning-900": "#332800",
|
|
24
|
+
"warning-950": "#191400",
|
|
25
|
+
|
|
26
|
+
"success-50": "#dbffee",
|
|
27
|
+
"success-100": "#b8ffdc",
|
|
28
|
+
"success-200": "#75ffbc",
|
|
29
|
+
"success-300": "#2eff9a",
|
|
30
|
+
"success-400": "#00eb79",
|
|
31
|
+
"success-500": "#00a455",
|
|
32
|
+
"success-600": "#008545",
|
|
33
|
+
"success-700": "#006132",
|
|
34
|
+
"success-800": "#004222",
|
|
35
|
+
"success-900": "#001f10",
|
|
36
|
+
"success-950": "#000f08",
|
|
37
|
+
|
|
38
|
+
"grayscale-50": "#f7f7f7",
|
|
39
|
+
"grayscale-100": "#f2f2f2",
|
|
40
|
+
"grayscale-200": "#e5e6e6",
|
|
41
|
+
"grayscale-300": "#d8d9d9",
|
|
42
|
+
"grayscale-400": "#cbcccd",
|
|
43
|
+
"grayscale-500": "#bdbebf",
|
|
44
|
+
"grayscale-600": "#97999b",
|
|
45
|
+
"grayscale-700": "#717374",
|
|
46
|
+
"grayscale-800": "#4b4d4e",
|
|
47
|
+
"grayscale-900": "#262627",
|
|
48
|
+
"grayscale-950": "#121212",
|
|
49
|
+
|
|
50
|
+
"general-50": "#ebeaf0",
|
|
51
|
+
"general-100": "#dad9e3",
|
|
52
|
+
"general-200": "#b5b3c7",
|
|
53
|
+
"general-300": "#908cab",
|
|
54
|
+
"general-400": "#6c688d",
|
|
55
|
+
"general-500": "#4e4b66",
|
|
56
|
+
"general-600": "#3f3c52",
|
|
57
|
+
"general-700": "#2f2d3e",
|
|
58
|
+
"general-800": "#201e29",
|
|
59
|
+
"general-900": "#100f15",
|
|
60
|
+
"general-950": "#070609",
|
|
61
|
+
|
|
62
|
+
"primary-50": "#ebeaf0",
|
|
63
|
+
"primary-100": "#dad9e3",
|
|
64
|
+
"primary-200": "#b5b3c7",
|
|
65
|
+
"primary-300": "#908cab",
|
|
66
|
+
"primary-400": "#6c688d",
|
|
67
|
+
"primary-500": "#201e29",
|
|
68
|
+
"primary-600": "#100f15",
|
|
69
|
+
"primary-700": "#070609",
|
|
70
|
+
"primary-800": "#050407",
|
|
71
|
+
"primary-900": "#030204",
|
|
72
|
+
"primary-950": "#020103",
|
|
73
|
+
|
|
74
|
+
"fixed-primary-50": "#e5f0ff",
|
|
75
|
+
"fixed-primary-100": "#cce0ff",
|
|
76
|
+
"fixed-primary-200": "#94bfff",
|
|
77
|
+
"fixed-primary-300": "#61a0ff",
|
|
78
|
+
"fixed-primary-400": "#2e82ff",
|
|
79
|
+
"fixed-primary-500": "#0063f7",
|
|
80
|
+
"fixed-primary-600": "#0050c7",
|
|
81
|
+
"fixed-primary-700": "#003b94",
|
|
82
|
+
"fixed-primary-800": "#002761",
|
|
83
|
+
"fixed-primary-900": "#001433",
|
|
84
|
+
"fixed-primary-950": "#000a19",
|
|
85
|
+
|
|
86
|
+
"supply-primary-50": "#ECFDF5",
|
|
87
|
+
"supply-primary-100": "#d1fae5",
|
|
88
|
+
"supply-primary-200": "#a7f3d0",
|
|
89
|
+
"supply-primary-300": "#6ee7b7",
|
|
90
|
+
"supply-primary-400": "#34d399",
|
|
91
|
+
"supply-primary-500": "#10b981",
|
|
92
|
+
"supply-primary-600": "#059669",
|
|
93
|
+
"supply-primary-700": "#047857",
|
|
94
|
+
"supply-primary-800": "#065F46",
|
|
95
|
+
"supply-primary-900": "#064E3B",
|
|
96
|
+
"supply-primary-950": "#022C22"
|
|
97
|
+
}
|
|
@@ -484,7 +484,7 @@ const A = {
|
|
|
484
484
|
"data-wv-section": "icon",
|
|
485
485
|
severity: "success"
|
|
486
486
|
}
|
|
487
|
-
},
|
|
487
|
+
}, P = {
|
|
488
488
|
root: ({ context: e }) => ({
|
|
489
489
|
class: [
|
|
490
490
|
"rounded ring-1 ring-general-500 p-[5px] ring-inset",
|
|
@@ -501,7 +501,7 @@ const A = {
|
|
|
501
501
|
],
|
|
502
502
|
"data-wv-section": "icon"
|
|
503
503
|
})
|
|
504
|
-
},
|
|
504
|
+
}, V = {
|
|
505
505
|
buttontrigger: {
|
|
506
506
|
root: ({ context: e }) => ({
|
|
507
507
|
class: [
|
|
@@ -550,7 +550,7 @@ const A = {
|
|
|
550
550
|
inputtext: {
|
|
551
551
|
class: "!h-max !py-0 !px-0"
|
|
552
552
|
}
|
|
553
|
-
},
|
|
553
|
+
}, I = {
|
|
554
554
|
root: ["w-max"],
|
|
555
555
|
button: {
|
|
556
556
|
class: [
|
|
@@ -559,7 +559,7 @@ const A = {
|
|
|
559
559
|
"data-sp-section": "button-split"
|
|
560
560
|
},
|
|
561
561
|
menuButton: "!rounded-ss-none !rounded-es-none"
|
|
562
|
-
}, h = navigator.userAgent.includes("
|
|
562
|
+
}, h = navigator.userAgent.includes("Chrome"), F = {
|
|
563
563
|
root: ({ props: e }) => ({
|
|
564
564
|
class: [
|
|
565
565
|
// Display and Position
|
|
@@ -1021,8 +1021,8 @@ const A = {
|
|
|
1021
1021
|
class: [
|
|
1022
1022
|
"w-[39px] h-[26px] flex justify-center items-center ring-general-200 rounded",
|
|
1023
1023
|
{
|
|
1024
|
-
"ring-1": h,
|
|
1025
|
-
"ring-[0.5px]":
|
|
1024
|
+
"ring-1": !h,
|
|
1025
|
+
"ring-[0.5px]": h
|
|
1026
1026
|
}
|
|
1027
1027
|
]
|
|
1028
1028
|
},
|
|
@@ -2779,15 +2779,15 @@ const A = {
|
|
|
2779
2779
|
]
|
|
2780
2780
|
};
|
|
2781
2781
|
}
|
|
2782
|
-
}, v = navigator.userAgent.includes("
|
|
2782
|
+
}, v = navigator.userAgent.includes("Chrome"), q = {
|
|
2783
2783
|
root: ({ context: e }) => ({
|
|
2784
2784
|
class: [
|
|
2785
2785
|
"flex flex-wrap gap-x-0.5 gap-y-[5px] items-center",
|
|
2786
2786
|
"min-h-[26px] h-fit w-full",
|
|
2787
2787
|
"ring-inset rounded px-[12px] py-[3px]",
|
|
2788
2788
|
{
|
|
2789
|
-
"ring-[1px]": v,
|
|
2790
|
-
"ring-[0.5px]":
|
|
2789
|
+
"ring-[1px]": !v,
|
|
2790
|
+
"ring-[0.5px]": v
|
|
2791
2791
|
},
|
|
2792
2792
|
{ "!ring-danger-500 !dark:ring-danger-500": e.invalidInput },
|
|
2793
2793
|
{ "!ring-general-200 !dark:ring-general-200": !e.invalidInput },
|
|
@@ -2812,7 +2812,7 @@ const A = {
|
|
|
2812
2812
|
erroroverlaypanel: {
|
|
2813
2813
|
class: ["px-3 py-1 text-[12px] text-general-800"]
|
|
2814
2814
|
}
|
|
2815
|
-
}, y = navigator.userAgent.includes("
|
|
2815
|
+
}, y = navigator.userAgent.includes("Chrome"), J = {
|
|
2816
2816
|
root: ({ props: e }) => ({
|
|
2817
2817
|
class: [
|
|
2818
2818
|
{
|
|
@@ -2824,8 +2824,8 @@ const A = {
|
|
|
2824
2824
|
"[&:has(:focus)]:!ring-primary-500 [&:has(:focus)_.inputgroupaddon]:!ring-primary-500": e.ring !== "none"
|
|
2825
2825
|
},
|
|
2826
2826
|
{
|
|
2827
|
-
"ring-[1px] [&_.inputgroupaddon]:ring-[1px]": y && e.ring !== "none",
|
|
2828
|
-
"ring-[0.5px] [&_.inputgroupaddon]:ring-[0.5px]":
|
|
2827
|
+
"ring-[1px] [&_.inputgroupaddon]:ring-[1px]": !y && e.ring !== "none",
|
|
2828
|
+
"ring-[0.5px] [&_.inputgroupaddon]:ring-[0.5px]": y && e.ring !== "none"
|
|
2829
2829
|
},
|
|
2830
2830
|
"[&_.inputgroupaddon[data-addon-variant=plain]]:!ring-[0px]",
|
|
2831
2831
|
"[&:has(input)]:cursor-text",
|
|
@@ -2934,8 +2934,8 @@ const A = {
|
|
|
2934
2934
|
}
|
|
2935
2935
|
]
|
|
2936
2936
|
})
|
|
2937
|
-
}, g = ({
|
|
2938
|
-
{ "ring-[1px]": e, "ring-[0.5px]":
|
|
2937
|
+
}, g = ({ isChromeBased: e, invalidInput: t }) => [
|
|
2938
|
+
{ "ring-[1px]": !e, "ring-[0.5px]": e },
|
|
2939
2939
|
{ "!ring-danger-500": t },
|
|
2940
2940
|
"ring-inset",
|
|
2941
2941
|
"ring-general-200",
|
|
@@ -3700,7 +3700,7 @@ const A = {
|
|
|
3700
3700
|
leaveActiveClass: "transition-opacity duration-100 ease-linear",
|
|
3701
3701
|
leaveToClass: "opacity-0"
|
|
3702
3702
|
}
|
|
3703
|
-
}, k = navigator.userAgent.includes("
|
|
3703
|
+
}, k = navigator.userAgent.includes("Chrome"), u = {
|
|
3704
3704
|
root: ({ props: e }) => ({
|
|
3705
3705
|
class: [
|
|
3706
3706
|
// Alignments
|
|
@@ -3740,7 +3740,7 @@ const A = {
|
|
|
3740
3740
|
},
|
|
3741
3741
|
// Colors
|
|
3742
3742
|
"ring-1",
|
|
3743
|
-
{ "ring-1": k, "ring-[0.5px]":
|
|
3743
|
+
{ "ring-1": !k, "ring-[0.5px]": k },
|
|
3744
3744
|
{
|
|
3745
3745
|
"before:bg-white": e.modelValue == e.trueValue,
|
|
3746
3746
|
"before:bg-general-100": e.modelValue !== e.trueValue,
|
|
@@ -4366,7 +4366,7 @@ const oe = x("WANGS-TAB-MENU", {
|
|
|
4366
4366
|
"border-primary-500": t.active,
|
|
4367
4367
|
"border-grayscale-400": !t.active,
|
|
4368
4368
|
"text-grayscale-600": !t.active,
|
|
4369
|
-
"text-primary-500": t.active,
|
|
4369
|
+
"text-primary-500": t.active && e.type === "tab",
|
|
4370
4370
|
"bg-primary-500 text-white": e.type === "pill" && t.active,
|
|
4371
4371
|
"bg-grayscale-200 text-grayscale-800": e.type === "pill" && !t.active,
|
|
4372
4372
|
"bg-primary-500 text-white shadow-[-2px_2px_2px_rgba(0,0,0,0.25)]": e.type === "segmented" && t.active,
|
|
@@ -5617,7 +5617,7 @@ const oe = x("WANGS-TAB-MENU", {
|
|
|
5617
5617
|
inputcurrency: pe,
|
|
5618
5618
|
inputtext: j,
|
|
5619
5619
|
inputbadge: q,
|
|
5620
|
-
calendar:
|
|
5620
|
+
calendar: F,
|
|
5621
5621
|
checkbox: c,
|
|
5622
5622
|
buttonradio: ie,
|
|
5623
5623
|
multiselect: n,
|
|
@@ -5636,9 +5636,9 @@ const oe = x("WANGS-TAB-MENU", {
|
|
|
5636
5636
|
button: T,
|
|
5637
5637
|
buttondownload: N,
|
|
5638
5638
|
buttonbulkaction: ve,
|
|
5639
|
-
buttonsearch:
|
|
5640
|
-
buttonsplit:
|
|
5641
|
-
buttonfilter:
|
|
5639
|
+
buttonsearch: V,
|
|
5640
|
+
buttonsplit: I,
|
|
5641
|
+
buttonfilter: P,
|
|
5642
5642
|
// Data
|
|
5643
5643
|
paginator: re,
|
|
5644
5644
|
datatable: G,
|