codesaaz-core 0.4.12 → 0.4.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/dist/codesaaz.es.js +33 -9
- package/dist/codesaaz.umd.js +12 -12
- package/package.json +1 -1
package/dist/codesaaz.es.js
CHANGED
|
@@ -2171,7 +2171,7 @@ const Ue = (e, t) => {
|
|
|
2171
2171
|
onInput: o,
|
|
2172
2172
|
onBlur: r,
|
|
2173
2173
|
onFocus: a
|
|
2174
|
-
}, i.$attrs), null, 16, ["placeholder", "disabled", "size", "modelValue"]);
|
|
2174
|
+
}, i.$attrs, { fluid: "" }), null, 16, ["placeholder", "disabled", "size", "modelValue"]);
|
|
2175
2175
|
};
|
|
2176
2176
|
}
|
|
2177
2177
|
}, Na = {
|
|
@@ -2480,7 +2480,7 @@ const Ue = (e, t) => {
|
|
|
2480
2480
|
onInput: o,
|
|
2481
2481
|
onBlur: r,
|
|
2482
2482
|
onFocus: a
|
|
2483
|
-
}, i.$attrs), null, 16, ["placeholder", "disabled", "size", "modelValue"]);
|
|
2483
|
+
}, i.$attrs, { fluid: "" }), null, 16, ["placeholder", "disabled", "size", "modelValue"]);
|
|
2484
2484
|
};
|
|
2485
2485
|
}
|
|
2486
2486
|
}, Ma = {
|
|
@@ -2637,7 +2637,7 @@ const Ue = (e, t) => {
|
|
|
2637
2637
|
onValueChange: o,
|
|
2638
2638
|
onBlur: r,
|
|
2639
2639
|
onFocus: a
|
|
2640
|
-
}, i.$attrs), null, 16, ["modelValue", "mask", "placeholder", "disabled"]);
|
|
2640
|
+
}, i.$attrs, { fluid: "" }), null, 16, ["modelValue", "mask", "placeholder", "disabled"]);
|
|
2641
2641
|
};
|
|
2642
2642
|
}
|
|
2643
2643
|
}, Wa = {
|
|
@@ -15639,10 +15639,14 @@ const ql = {
|
|
|
15639
15639
|
default: "medium",
|
|
15640
15640
|
validator: (e) => ["small", "medium", "large"].includes(e)
|
|
15641
15641
|
},
|
|
15642
|
+
variant: {
|
|
15643
|
+
type: String,
|
|
15644
|
+
default: "''"
|
|
15645
|
+
},
|
|
15642
15646
|
severity: {
|
|
15643
15647
|
type: String,
|
|
15644
15648
|
default: "primary",
|
|
15645
|
-
validator: (e) => ["primary", "info", "danger", "success"].includes(e)
|
|
15649
|
+
validator: (e) => ["primary", "secondary", "info", "warn", "help", "danger", "success"].includes(e)
|
|
15646
15650
|
},
|
|
15647
15651
|
onClick: {
|
|
15648
15652
|
type: Function,
|
|
@@ -15659,6 +15663,22 @@ const ql = {
|
|
|
15659
15663
|
iconName: {
|
|
15660
15664
|
type: String,
|
|
15661
15665
|
default: null
|
|
15666
|
+
},
|
|
15667
|
+
iconsOnly: {
|
|
15668
|
+
type: Boolean,
|
|
15669
|
+
default: !1
|
|
15670
|
+
},
|
|
15671
|
+
iconPos: {
|
|
15672
|
+
type: String,
|
|
15673
|
+
default: "left"
|
|
15674
|
+
},
|
|
15675
|
+
rounded: {
|
|
15676
|
+
type: Boolean,
|
|
15677
|
+
default: !1
|
|
15678
|
+
},
|
|
15679
|
+
raised: {
|
|
15680
|
+
type: Boolean,
|
|
15681
|
+
default: !1
|
|
15662
15682
|
}
|
|
15663
15683
|
},
|
|
15664
15684
|
setup(e) {
|
|
@@ -15669,14 +15689,18 @@ const ql = {
|
|
|
15669
15689
|
function r(a) {
|
|
15670
15690
|
t.onClick && t.onClick(a);
|
|
15671
15691
|
}
|
|
15672
|
-
return (a, i) => n.value ? (b(), j(X(Ao), {
|
|
15692
|
+
return (a, i) => n.value ? (b(), j(X(Ao), K({
|
|
15673
15693
|
key: 0,
|
|
15674
|
-
label: e.label,
|
|
15694
|
+
label: e.iconsOnly ? null : e.label,
|
|
15675
15695
|
size: e.size,
|
|
15676
|
-
|
|
15696
|
+
variant: e.variant,
|
|
15677
15697
|
severity: e.severity,
|
|
15678
|
-
icon: e.iconName
|
|
15679
|
-
|
|
15698
|
+
icon: e.iconName,
|
|
15699
|
+
iconPos: e.iconPos
|
|
15700
|
+
}, {
|
|
15701
|
+
...e.rounded ? { rounded: !0 } : {},
|
|
15702
|
+
...e.raised ? { raised: !0 } : {}
|
|
15703
|
+
}, { onClick: r }), null, 16, ["label", "size", "variant", "severity", "icon", "iconPos"])) : (b(), S("p", Hy, " You do not have the required permissions to access this feature. "));
|
|
15680
15704
|
}
|
|
15681
15705
|
}, Wy = {
|
|
15682
15706
|
name: "StateFullText",
|