@fewangsit/wangsvue-presets 1.0.103-alpha.1 → 1.0.103
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 +20 -20
- 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/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
|
@@ -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-700 [&:has(:focus)_.inputgroupaddon]:!ring-primary-700': 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/supplyasset/style.css
CHANGED
|
@@ -4874,7 +4874,7 @@
|
|
|
4874
4874
|
font-family: 'Manrope', sans-serif !important;
|
|
4875
4875
|
}
|
|
4876
4876
|
|
|
4877
|
-
h1,
|
|
4877
|
+
h1,
|
|
4878
4878
|
.heading-1{
|
|
4879
4879
|
font-size: 22px !important;
|
|
4880
4880
|
font-weight: 600 !important;
|
|
@@ -4882,7 +4882,7 @@ h1,
|
|
|
4882
4882
|
letter-spacing: 0.02em;
|
|
4883
4883
|
}
|
|
4884
4884
|
|
|
4885
|
-
h2,
|
|
4885
|
+
h2,
|
|
4886
4886
|
.heading-2{
|
|
4887
4887
|
font-size: 1.125rem !important;
|
|
4888
4888
|
font-weight: 600 !important;
|
|
@@ -4890,7 +4890,7 @@ h2,
|
|
|
4890
4890
|
letter-spacing: 0.02em;
|
|
4891
4891
|
}
|
|
4892
4892
|
|
|
4893
|
-
h3,
|
|
4893
|
+
h3,
|
|
4894
4894
|
.heading-3{
|
|
4895
4895
|
font-size: 1rem !important;
|
|
4896
4896
|
font-weight: 500 !important;
|
|
@@ -4898,7 +4898,7 @@ h3,
|
|
|
4898
4898
|
letter-spacing: 0.02em;
|
|
4899
4899
|
}
|
|
4900
4900
|
|
|
4901
|
-
h4,
|
|
4901
|
+
h4,
|
|
4902
4902
|
.heading-4{
|
|
4903
4903
|
font-size: 0.875rem !important;
|
|
4904
4904
|
font-weight: 500 !important;
|
|
@@ -4906,7 +4906,7 @@ h4,
|
|
|
4906
4906
|
letter-spacing: 0.02em;
|
|
4907
4907
|
}
|
|
4908
4908
|
|
|
4909
|
-
p,
|
|
4909
|
+
p,
|
|
4910
4910
|
.p{
|
|
4911
4911
|
font-size: 0.75rem !important;
|
|
4912
4912
|
font-weight: 500 !important;
|
|
@@ -4914,7 +4914,7 @@ p,
|
|
|
4914
4914
|
letter-spacing: 0.02em;
|
|
4915
4915
|
}
|
|
4916
4916
|
|
|
4917
|
-
h5,
|
|
4917
|
+
h5,
|
|
4918
4918
|
.heading-5{
|
|
4919
4919
|
font-size: 0.75rem !important;
|
|
4920
4920
|
font-weight: 600 !important;
|
|
@@ -4922,7 +4922,7 @@ h5,
|
|
|
4922
4922
|
letter-spacing: 0.02em;
|
|
4923
4923
|
}
|
|
4924
4924
|
|
|
4925
|
-
h6,
|
|
4925
|
+
h6,
|
|
4926
4926
|
.heading-6{
|
|
4927
4927
|
font-size: 10px !important;
|
|
4928
4928
|
font-weight: 600 !important;
|
|
@@ -4934,12 +4934,12 @@ h6,
|
|
|
4934
4934
|
scrollbar-width: none;
|
|
4935
4935
|
}
|
|
4936
4936
|
|
|
4937
|
-
.scrollbar-w-thin,
|
|
4937
|
+
.scrollbar-w-thin,
|
|
4938
4938
|
.p-virtualscroller {
|
|
4939
4939
|
scrollbar-width: thin;
|
|
4940
4940
|
}
|
|
4941
4941
|
|
|
4942
|
-
p,
|
|
4942
|
+
p,
|
|
4943
4943
|
div{
|
|
4944
4944
|
font-size: 0.75rem;
|
|
4945
4945
|
line-height: 1rem;
|
|
@@ -6751,4 +6751,4 @@ div{
|
|
|
6751
6751
|
|
|
6752
6752
|
.\[\&_ul_li\]\:pl-\[6px\] ul li{
|
|
6753
6753
|
padding-left: 6px;
|
|
6754
|
-
}
|
|
6754
|
+
}
|
|
@@ -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;
|
|
@@ -45,7 +45,7 @@ exports.default = {
|
|
|
45
45
|
'before:left-0.5': props.modelValue != props.trueValue,
|
|
46
46
|
},
|
|
47
47
|
// Colors
|
|
48
|
-
{ 'ring-1':
|
|
48
|
+
{ 'ring-1': !isChromeBased, 'ring-[0.5px]': isChromeBased },
|
|
49
49
|
{
|
|
50
50
|
'before:bg-white': props.modelValue == props.trueValue,
|
|
51
51
|
'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;
|
|
@@ -481,8 +481,8 @@ var preset = {
|
|
|
481
481
|
class: [
|
|
482
482
|
'w-[39px] h-[26px] flex justify-center items-center ring-general-200 rounded',
|
|
483
483
|
{
|
|
484
|
-
'ring-1':
|
|
485
|
-
'ring-[0.5px]':
|
|
484
|
+
'ring-1': !isChromeBased,
|
|
485
|
+
'ring-[0.5px]': isChromeBased,
|
|
486
486
|
},
|
|
487
487
|
],
|
|
488
488
|
},
|
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
{
|
|
2
|
-
"primary-50": "#F8F7EE",
|
|
3
|
-
"primary-100": "#EEEBD3",
|
|
4
|
-
"primary-200": "#DFD7A9",
|
|
5
|
-
"primary-300": "#CDBC77",
|
|
6
|
-
"primary-400": "#BDA552",
|
|
7
|
-
"primary-500": "#9F7C3C",
|
|
8
|
-
"primary-600": "#856732",
|
|
9
|
-
"primary-700": "#785930",
|
|
10
|
-
"primary-800": "#65492E",
|
|
11
|
-
"primary-900": "#583F2B",
|
|
12
|
-
"primary-950": "#322116",
|
|
13
|
-
"primary-1000": "#695200",
|
|
14
|
-
|
|
15
|
-
"danger-50": "#E7C3B6",
|
|
16
|
-
"danger-100": "#E7C3B6",
|
|
17
|
-
"danger-200": "#DBA592",
|
|
18
|
-
"danger-300": "#CF876D",
|
|
19
|
-
"danger-400": "#C36948",
|
|
20
|
-
"danger-500": "#B74B24",
|
|
21
|
-
"danger-600": "#993F1E",
|
|
22
|
-
"danger-700": "#7A3218",
|
|
23
|
-
"danger-800": "#5C2612",
|
|
24
|
-
"danger-900": "#3D190C",
|
|
25
|
-
"danger-950": "#1F0D06",
|
|
26
|
-
|
|
27
|
-
"warning-50": "#F9EFD9",
|
|
28
|
-
"warning-100": "#F3E0B3",
|
|
29
|
-
"warning-200": "#EDD08E",
|
|
30
|
-
"warning-300": "#E7C068",
|
|
31
|
-
"warning-400": "#E1B142",
|
|
32
|
-
"warning-500": "#DBA11C",
|
|
33
|
-
"warning-600": "#B78617",
|
|
34
|
-
"warning-700": "#926B13",
|
|
35
|
-
"warning-800": "#6E510E",
|
|
36
|
-
"warning-900": "#493609",
|
|
37
|
-
"warning-950": "#251B05",
|
|
38
|
-
|
|
39
|
-
"success-50": "#D5EDEB",
|
|
40
|
-
"success-100": "#AADBD6",
|
|
41
|
-
"success-200": "#80C9C2",
|
|
42
|
-
"success-300": "#55B7AD",
|
|
43
|
-
"success-400": "#2AA599",
|
|
44
|
-
"success-500": "#009384",
|
|
45
|
-
"success-600": "#007B6E",
|
|
46
|
-
"success-700": "#006258",
|
|
47
|
-
"success-800": "#004A42",
|
|
48
|
-
"success-900": "#00312C",
|
|
49
|
-
"success-950": "#001916",
|
|
50
|
-
"success-1000": "#00A455",
|
|
51
|
-
|
|
52
|
-
"grayscale-50": "#f7f7f7",
|
|
53
|
-
"grayscale-100": "#f2f2f2",
|
|
54
|
-
"grayscale-200": "#e5e6e6",
|
|
55
|
-
"grayscale-300": "#d8d9d9",
|
|
56
|
-
"grayscale-400": "#cbcccd",
|
|
57
|
-
"grayscale-500": "#bdbebf",
|
|
58
|
-
"grayscale-600": "#97999b",
|
|
59
|
-
"grayscale-700": "#717374",
|
|
60
|
-
"grayscale-800": "#4b4d4e",
|
|
61
|
-
"grayscale-900": "#262627",
|
|
62
|
-
"grayscale-950": "#121212",
|
|
63
|
-
|
|
64
|
-
"general-50": "#EBEAF0",
|
|
65
|
-
"general-100": "#DAD9E3",
|
|
66
|
-
"general-200": "#B5B3C7",
|
|
67
|
-
"general-300": "#908CAB",
|
|
68
|
-
"general-400": "#6C688D",
|
|
69
|
-
"general-500": "#4E4B66",
|
|
70
|
-
"general-600": "#3F3C52",
|
|
71
|
-
"general-700": "#2F2D3E",
|
|
72
|
-
"general-800": "#201E29",
|
|
73
|
-
"general-900": "#100F15",
|
|
74
|
-
"general-950": "#070609",
|
|
75
|
-
|
|
76
|
-
"link": "#0000EE"
|
|
1
|
+
{
|
|
2
|
+
"primary-50": "#F8F7EE",
|
|
3
|
+
"primary-100": "#EEEBD3",
|
|
4
|
+
"primary-200": "#DFD7A9",
|
|
5
|
+
"primary-300": "#CDBC77",
|
|
6
|
+
"primary-400": "#BDA552",
|
|
7
|
+
"primary-500": "#9F7C3C",
|
|
8
|
+
"primary-600": "#856732",
|
|
9
|
+
"primary-700": "#785930",
|
|
10
|
+
"primary-800": "#65492E",
|
|
11
|
+
"primary-900": "#583F2B",
|
|
12
|
+
"primary-950": "#322116",
|
|
13
|
+
"primary-1000": "#695200",
|
|
14
|
+
|
|
15
|
+
"danger-50": "#E7C3B6",
|
|
16
|
+
"danger-100": "#E7C3B6",
|
|
17
|
+
"danger-200": "#DBA592",
|
|
18
|
+
"danger-300": "#CF876D",
|
|
19
|
+
"danger-400": "#C36948",
|
|
20
|
+
"danger-500": "#B74B24",
|
|
21
|
+
"danger-600": "#993F1E",
|
|
22
|
+
"danger-700": "#7A3218",
|
|
23
|
+
"danger-800": "#5C2612",
|
|
24
|
+
"danger-900": "#3D190C",
|
|
25
|
+
"danger-950": "#1F0D06",
|
|
26
|
+
|
|
27
|
+
"warning-50": "#F9EFD9",
|
|
28
|
+
"warning-100": "#F3E0B3",
|
|
29
|
+
"warning-200": "#EDD08E",
|
|
30
|
+
"warning-300": "#E7C068",
|
|
31
|
+
"warning-400": "#E1B142",
|
|
32
|
+
"warning-500": "#DBA11C",
|
|
33
|
+
"warning-600": "#B78617",
|
|
34
|
+
"warning-700": "#926B13",
|
|
35
|
+
"warning-800": "#6E510E",
|
|
36
|
+
"warning-900": "#493609",
|
|
37
|
+
"warning-950": "#251B05",
|
|
38
|
+
|
|
39
|
+
"success-50": "#D5EDEB",
|
|
40
|
+
"success-100": "#AADBD6",
|
|
41
|
+
"success-200": "#80C9C2",
|
|
42
|
+
"success-300": "#55B7AD",
|
|
43
|
+
"success-400": "#2AA599",
|
|
44
|
+
"success-500": "#009384",
|
|
45
|
+
"success-600": "#007B6E",
|
|
46
|
+
"success-700": "#006258",
|
|
47
|
+
"success-800": "#004A42",
|
|
48
|
+
"success-900": "#00312C",
|
|
49
|
+
"success-950": "#001916",
|
|
50
|
+
"success-1000": "#00A455",
|
|
51
|
+
|
|
52
|
+
"grayscale-50": "#f7f7f7",
|
|
53
|
+
"grayscale-100": "#f2f2f2",
|
|
54
|
+
"grayscale-200": "#e5e6e6",
|
|
55
|
+
"grayscale-300": "#d8d9d9",
|
|
56
|
+
"grayscale-400": "#cbcccd",
|
|
57
|
+
"grayscale-500": "#bdbebf",
|
|
58
|
+
"grayscale-600": "#97999b",
|
|
59
|
+
"grayscale-700": "#717374",
|
|
60
|
+
"grayscale-800": "#4b4d4e",
|
|
61
|
+
"grayscale-900": "#262627",
|
|
62
|
+
"grayscale-950": "#121212",
|
|
63
|
+
|
|
64
|
+
"general-50": "#EBEAF0",
|
|
65
|
+
"general-100": "#DAD9E3",
|
|
66
|
+
"general-200": "#B5B3C7",
|
|
67
|
+
"general-300": "#908CAB",
|
|
68
|
+
"general-400": "#6C688D",
|
|
69
|
+
"general-500": "#4E4B66",
|
|
70
|
+
"general-600": "#3F3C52",
|
|
71
|
+
"general-700": "#2F2D3E",
|
|
72
|
+
"general-800": "#201E29",
|
|
73
|
+
"general-900": "#100F15",
|
|
74
|
+
"general-950": "#070609",
|
|
75
|
+
|
|
76
|
+
"link": "#0000EE"
|
|
77
77
|
}
|
package/wangsvue/index.es.js
CHANGED
|
@@ -332,7 +332,7 @@ const _ = {
|
|
|
332
332
|
image: {
|
|
333
333
|
class: "h-full w-full rounded-full"
|
|
334
334
|
}
|
|
335
|
-
},
|
|
335
|
+
}, S = {
|
|
336
336
|
root: {
|
|
337
337
|
class: "flex items-center ml-4",
|
|
338
338
|
"data-wv-name": "usergroup",
|
|
@@ -386,7 +386,7 @@ const _ = {
|
|
|
386
386
|
"icon-class": "w-3 h-3",
|
|
387
387
|
"data-wv-section": "removebutton"
|
|
388
388
|
})
|
|
389
|
-
},
|
|
389
|
+
}, F = {
|
|
390
390
|
root: ({ context: e }) => ({
|
|
391
391
|
class: [
|
|
392
392
|
// Font
|
|
@@ -795,7 +795,7 @@ const _ = {
|
|
|
795
795
|
"data-wv-section": "button-split"
|
|
796
796
|
},
|
|
797
797
|
menuButton: "!rounded-ss-none !rounded-es-none"
|
|
798
|
-
}, x = navigator.userAgent.includes("
|
|
798
|
+
}, x = navigator.userAgent.includes("Chrome"), E = {
|
|
799
799
|
root: ({ props: e }) => ({
|
|
800
800
|
class: [
|
|
801
801
|
// Display and Position
|
|
@@ -1254,8 +1254,8 @@ const _ = {
|
|
|
1254
1254
|
class: [
|
|
1255
1255
|
"w-[39px] h-[26px] flex justify-center items-center ring-general-200 rounded",
|
|
1256
1256
|
{
|
|
1257
|
-
"ring-1": x,
|
|
1258
|
-
"ring-[0.5px]":
|
|
1257
|
+
"ring-1": !x,
|
|
1258
|
+
"ring-[0.5px]": x
|
|
1259
1259
|
}
|
|
1260
1260
|
]
|
|
1261
1261
|
},
|
|
@@ -3967,15 +3967,15 @@ const _ = {
|
|
|
3967
3967
|
]
|
|
3968
3968
|
};
|
|
3969
3969
|
}
|
|
3970
|
-
}, v = navigator.userAgent.includes("
|
|
3970
|
+
}, v = navigator.userAgent.includes("Chrome"), de = {
|
|
3971
3971
|
root: ({ context: e }) => ({
|
|
3972
3972
|
class: [
|
|
3973
3973
|
"flex flex-wrap gap-x-0.5 gap-y-[5px] items-center",
|
|
3974
3974
|
"min-h-[26px] h-fit w-full",
|
|
3975
3975
|
"ring-inset rounded px-[12px] py-[2px]",
|
|
3976
3976
|
{
|
|
3977
|
-
"ring-[1px]": v,
|
|
3978
|
-
"ring-[0.5px]":
|
|
3977
|
+
"ring-[1px]": !v,
|
|
3978
|
+
"ring-[0.5px]": v
|
|
3979
3979
|
},
|
|
3980
3980
|
{ "!ring-danger-500 !dark:ring-danger-500": e.invalidInput },
|
|
3981
3981
|
{ "!ring-general-200 !dark:ring-general-200": !e.invalidInput },
|
|
@@ -4000,7 +4000,7 @@ const _ = {
|
|
|
4000
4000
|
erroroverlaypanel: {
|
|
4001
4001
|
class: ["px-3 py-1 text-[12px] text-general-800"]
|
|
4002
4002
|
}
|
|
4003
|
-
}, h = navigator.userAgent.includes("
|
|
4003
|
+
}, h = navigator.userAgent.includes("Chrome"), ue = {
|
|
4004
4004
|
root: ({ props: e }) => ({
|
|
4005
4005
|
class: [
|
|
4006
4006
|
{
|
|
@@ -4012,8 +4012,8 @@ const _ = {
|
|
|
4012
4012
|
"[&:has(:focus)]:!ring-primary-400 [&:has(:focus)_.inputgroupaddon]:!ring-primary-400": e.ring !== "none"
|
|
4013
4013
|
},
|
|
4014
4014
|
{
|
|
4015
|
-
"ring-[1px] [&_.inputgroupaddon]:ring-[1px]": h && e.ring !== "none",
|
|
4016
|
-
"ring-[0.5px] [&_.inputgroupaddon]:ring-[0.5px]":
|
|
4015
|
+
"ring-[1px] [&_.inputgroupaddon]:ring-[1px]": !h && e.ring !== "none",
|
|
4016
|
+
"ring-[0.5px] [&_.inputgroupaddon]:ring-[0.5px]": h && e.ring !== "none"
|
|
4017
4017
|
},
|
|
4018
4018
|
"[&_.inputgroupaddon[data-addon-variant=plain]]:!ring-[0px]",
|
|
4019
4019
|
"[&:has(input)]:cursor-text",
|
|
@@ -4205,8 +4205,8 @@ const _ = {
|
|
|
4205
4205
|
};
|
|
4206
4206
|
}
|
|
4207
4207
|
}
|
|
4208
|
-
}, f = ({
|
|
4209
|
-
{ "ring-[1px]": e, "ring-[0.5px]":
|
|
4208
|
+
}, f = ({ isChromeBased: e, invalidInput: t }) => [
|
|
4209
|
+
{ "ring-[1px]": !e, "ring-[0.5px]": e },
|
|
4210
4210
|
{ "!ring-danger-500": t },
|
|
4211
4211
|
"ring-inset",
|
|
4212
4212
|
"ring-general-400",
|
|
@@ -6017,7 +6017,7 @@ const _ = {
|
|
|
6017
6017
|
leaveActiveClass: "transition-opacity duration-100 ease-linear",
|
|
6018
6018
|
leaveToClass: "opacity-0"
|
|
6019
6019
|
}
|
|
6020
|
-
},
|
|
6020
|
+
}, Se = {
|
|
6021
6021
|
root: {
|
|
6022
6022
|
class: [
|
|
6023
6023
|
// Flexbox
|
|
@@ -6588,7 +6588,7 @@ const _ = {
|
|
|
6588
6588
|
leaveActiveClass: "!transition-none",
|
|
6589
6589
|
leaveToClass: "!transition-none"
|
|
6590
6590
|
}
|
|
6591
|
-
},
|
|
6591
|
+
}, Fe = {
|
|
6592
6592
|
root: ({ props: e }) => ({
|
|
6593
6593
|
class: [
|
|
6594
6594
|
{
|
|
@@ -6672,7 +6672,7 @@ const _ = {
|
|
|
6672
6672
|
}
|
|
6673
6673
|
]
|
|
6674
6674
|
})
|
|
6675
|
-
}, k = navigator.userAgent.includes("
|
|
6675
|
+
}, k = navigator.userAgent.includes("Chrome"), u = {
|
|
6676
6676
|
root: ({ props: e }) => ({
|
|
6677
6677
|
class: [
|
|
6678
6678
|
// Alignments
|
|
@@ -6712,7 +6712,7 @@ const _ = {
|
|
|
6712
6712
|
},
|
|
6713
6713
|
// Colors
|
|
6714
6714
|
"ring-1",
|
|
6715
|
-
{ "ring-1": k, "ring-[0.5px]":
|
|
6715
|
+
{ "ring-1": !k, "ring-[0.5px]": k },
|
|
6716
6716
|
{
|
|
6717
6717
|
"before:bg-white": e.modelValue == e.trueValue,
|
|
6718
6718
|
"before:bg-primary-200": e.modelValue !== e.trueValue && !e.disabled,
|
|
@@ -9826,7 +9826,7 @@ const Oe = p("WANGS-TAB-MENU", {
|
|
|
9826
9826
|
}
|
|
9827
9827
|
}
|
|
9828
9828
|
}, gt = {
|
|
9829
|
-
badge:
|
|
9829
|
+
badge: F,
|
|
9830
9830
|
ripple: Ve,
|
|
9831
9831
|
tooltip: Qe
|
|
9832
9832
|
}, bt = {
|
|
@@ -9884,7 +9884,7 @@ const Oe = p("WANGS-TAB-MENU", {
|
|
|
9884
9884
|
dataviewlayoutoptions: X,
|
|
9885
9885
|
organizationchart: ze,
|
|
9886
9886
|
orderlist: Ce,
|
|
9887
|
-
picklist:
|
|
9887
|
+
picklist: Se,
|
|
9888
9888
|
timeline: qe,
|
|
9889
9889
|
changelog: R,
|
|
9890
9890
|
// Panels
|
|
@@ -9924,10 +9924,10 @@ const Oe = p("WANGS-TAB-MENU", {
|
|
|
9924
9924
|
badge: c,
|
|
9925
9925
|
badgegroup: nt,
|
|
9926
9926
|
avatar: I,
|
|
9927
|
-
avatargroup:
|
|
9927
|
+
avatargroup: S,
|
|
9928
9928
|
tag: De,
|
|
9929
9929
|
chip: M,
|
|
9930
|
-
progressbar:
|
|
9930
|
+
progressbar: Fe,
|
|
9931
9931
|
skeleton: Ue,
|
|
9932
9932
|
scrolltop: Be,
|
|
9933
9933
|
terminal: Ke,
|