@fewangsit/wangsvue-presets 2.0.1-alpha.11 → 2.0.1-alpha.13
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/buttonradio/index.js +1 -1
- package/fixedasset/dialog/index.js +1 -0
- package/fixedasset/image/index.js +1 -1
- package/fixedasset/index.es.js +3 -2
- package/fixedasset/index.system.js +2 -2
- package/fixedasset/style.css +247 -60
- package/globalsettings/dialog/index.js +1 -0
- package/globalsettings/image/index.js +1 -1
- package/globalsettings/index.es.js +16 -15
- package/globalsettings/index.system.js +2 -2
- package/globalsettings/style.css +126 -8
- package/package.json +1 -1
- package/supplyasset/dialog/index.js +1 -0
- package/supplyasset/image/index.js +1 -1
- package/supplyasset/index.es.js +2 -1
- package/supplyasset/index.system.js +2 -2
- package/supplyasset/style.css +236 -60
- package/wangsvue/buttonradio/index.js +1 -1
- package/wangsvue/dialog/index.js +1 -0
- package/wangsvue/image/index.js +1 -1
- package/wangsvue/index.es.js +3 -2
- package/wangsvue/index.system.js +2 -2
- package/wangsvue/style.css +282 -82
|
@@ -221,6 +221,7 @@ const C = {
|
|
|
221
221
|
"transition duration-200 ease-in-out",
|
|
222
222
|
// States
|
|
223
223
|
"hover:bg-general-50 hover:text-general-300",
|
|
224
|
+
"focus-visible:outline-none",
|
|
224
225
|
// Misc
|
|
225
226
|
"overflow-hidden"
|
|
226
227
|
]
|
|
@@ -798,7 +799,7 @@ const C = {
|
|
|
798
799
|
],
|
|
799
800
|
"data-wv-section": "icon"
|
|
800
801
|
})
|
|
801
|
-
}, m = navigator.userAgent.includes("Chrome"),
|
|
802
|
+
}, m = navigator.userAgent.includes("Chrome"), c = {
|
|
802
803
|
root: ({ props: e }) => ({
|
|
803
804
|
class: [
|
|
804
805
|
// Alignments
|
|
@@ -991,9 +992,9 @@ const C = {
|
|
|
991
992
|
icon: {
|
|
992
993
|
class: "hidden"
|
|
993
994
|
},
|
|
994
|
-
label:
|
|
995
|
-
labeltext:
|
|
996
|
-
tooltipicon:
|
|
995
|
+
label: c.label,
|
|
996
|
+
labeltext: c.labeltext,
|
|
997
|
+
tooltipicon: c.tooltipicon
|
|
997
998
|
}, I = {
|
|
998
999
|
buttontrigger: {
|
|
999
1000
|
root: ({ context: e }) => ({
|
|
@@ -1826,7 +1827,7 @@ const C = {
|
|
|
1826
1827
|
buttondownload: {
|
|
1827
1828
|
"data-wv-section": "changelog-dialog-button-download"
|
|
1828
1829
|
}
|
|
1829
|
-
},
|
|
1830
|
+
}, d = {
|
|
1830
1831
|
root: {
|
|
1831
1832
|
class: [
|
|
1832
1833
|
"relative",
|
|
@@ -2429,12 +2430,12 @@ const C = {
|
|
|
2429
2430
|
]
|
|
2430
2431
|
},
|
|
2431
2432
|
headerCheckbox: {
|
|
2432
|
-
...
|
|
2433
|
+
...d,
|
|
2433
2434
|
root: {
|
|
2434
|
-
class: ["!mx-auto", ...
|
|
2435
|
+
class: ["!mx-auto", ...d.root.class]
|
|
2435
2436
|
}
|
|
2436
2437
|
},
|
|
2437
|
-
itemCheckbox:
|
|
2438
|
+
itemCheckbox: d,
|
|
2438
2439
|
closeButton: {
|
|
2439
2440
|
class: ["hidden"]
|
|
2440
2441
|
},
|
|
@@ -2975,7 +2976,7 @@ const C = {
|
|
|
2975
2976
|
}),
|
|
2976
2977
|
image: ({ props: e, context: t }) => ({
|
|
2977
2978
|
class: [
|
|
2978
|
-
"object-
|
|
2979
|
+
"object-contain",
|
|
2979
2980
|
{ "!rounded-full": e.rounded },
|
|
2980
2981
|
{ "!rounded-lg": !e.rounded }
|
|
2981
2982
|
],
|
|
@@ -3926,7 +3927,7 @@ const re = f("WANGS-INPUT-OTP", {
|
|
|
3926
3927
|
leaveActiveClass: "transition-opacity duration-100 ease-linear",
|
|
3927
3928
|
leaveToClass: "opacity-0"
|
|
3928
3929
|
}
|
|
3929
|
-
},
|
|
3930
|
+
}, ce = {
|
|
3930
3931
|
root: {
|
|
3931
3932
|
class: [
|
|
3932
3933
|
// Flex & Alignment
|
|
@@ -4376,7 +4377,7 @@ const re = f("WANGS-INPUT-OTP", {
|
|
|
4376
4377
|
current: {
|
|
4377
4378
|
class: ["text-xs font-normal leading-6 px-3"]
|
|
4378
4379
|
}
|
|
4379
|
-
},
|
|
4380
|
+
}, de = {
|
|
4380
4381
|
root: ({ props: e }) => ({
|
|
4381
4382
|
class: [
|
|
4382
4383
|
"w-full",
|
|
@@ -5689,17 +5690,17 @@ const re = f("WANGS-INPUT-OTP", {
|
|
|
5689
5690
|
inputbadge: Q,
|
|
5690
5691
|
inputotp: re,
|
|
5691
5692
|
calendar: U,
|
|
5692
|
-
checkbox:
|
|
5693
|
+
checkbox: d,
|
|
5693
5694
|
buttonradio: P,
|
|
5694
5695
|
multiselect: i,
|
|
5695
5696
|
togglebutton: he,
|
|
5696
|
-
toggleswitch:
|
|
5697
|
+
toggleswitch: c,
|
|
5697
5698
|
inputgroup: te,
|
|
5698
5699
|
inputgroupaddon: ae,
|
|
5699
5700
|
treeselect: we,
|
|
5700
5701
|
tristatecheckbox: pe,
|
|
5701
5702
|
textarea: me,
|
|
5702
|
-
password:
|
|
5703
|
+
password: de,
|
|
5703
5704
|
validatormessage: Ce,
|
|
5704
5705
|
fileupload: D,
|
|
5705
5706
|
fieldwrapper: W,
|
|
@@ -5711,7 +5712,7 @@ const re = f("WANGS-INPUT-OTP", {
|
|
|
5711
5712
|
buttonsplit: F,
|
|
5712
5713
|
buttonfilter: T,
|
|
5713
5714
|
// Data
|
|
5714
|
-
paginator:
|
|
5715
|
+
paginator: ce,
|
|
5715
5716
|
datatable: L,
|
|
5716
5717
|
customcolumn: B,
|
|
5717
5718
|
tree: ye,
|