@avakhula/ui 0.0.176 → 0.0.178
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 +18 -8
- package/dist/index.umd.cjs +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/App.vue +44 -17
- package/src/components/Form/Label/Label.vue +1 -0
- package/src/components/TreeSelect/Select.vue +11 -1
package/dist/index.js
CHANGED
|
@@ -1969,7 +1969,8 @@ function $s(t, n, e, i, o, r) {
|
|
|
1969
1969
|
key: 1,
|
|
1970
1970
|
size: "xs",
|
|
1971
1971
|
class: "info-button",
|
|
1972
|
-
kind: "ghost"
|
|
1972
|
+
kind: "ghost",
|
|
1973
|
+
type: "button"
|
|
1973
1974
|
}, {
|
|
1974
1975
|
default: be(() => [
|
|
1975
1976
|
ge(l, { name: "information-circle-outline" }),
|
|
@@ -1982,7 +1983,7 @@ function $s(t, n, e, i, o, r) {
|
|
|
1982
1983
|
})) : he("", !0)
|
|
1983
1984
|
], 10, bs);
|
|
1984
1985
|
}
|
|
1985
|
-
const Cr = /* @__PURE__ */ Ae(ys, [["render", $s], ["__scopeId", "data-v-
|
|
1986
|
+
const Cr = /* @__PURE__ */ Ae(ys, [["render", $s], ["__scopeId", "data-v-3e867259"]]), ti = {
|
|
1986
1987
|
text: "text",
|
|
1987
1988
|
password: "password",
|
|
1988
1989
|
email: "email",
|
|
@@ -3306,7 +3307,15 @@ const eu = {
|
|
|
3306
3307
|
default: !1
|
|
3307
3308
|
}
|
|
3308
3309
|
},
|
|
3309
|
-
emits: [
|
|
3310
|
+
emits: [
|
|
3311
|
+
"close",
|
|
3312
|
+
"input",
|
|
3313
|
+
"blur",
|
|
3314
|
+
"search",
|
|
3315
|
+
"resize",
|
|
3316
|
+
"submit",
|
|
3317
|
+
"update:modelValue"
|
|
3318
|
+
],
|
|
3310
3319
|
watch: {
|
|
3311
3320
|
value(t) {
|
|
3312
3321
|
this.val = t, this.setPreparedValues();
|
|
@@ -3557,7 +3566,7 @@ const eu = {
|
|
|
3557
3566
|
}), this.filter(this.filterString, t);
|
|
3558
3567
|
},
|
|
3559
3568
|
onClose() {
|
|
3560
|
-
this.filter("", this.actualOptions), this.isMultiple ? this.$emit("close", Object.keys(this.selected)) : this.$emit("close", Object.keys(this.selected)[0]);
|
|
3569
|
+
this.filter("", this.actualOptions), this.isMultiple ? this.$emit("close", Object.keys(this.selected)) : this.$emit("close", Object.keys(this.selected)[0]), this.$emit("blur");
|
|
3561
3570
|
}
|
|
3562
3571
|
},
|
|
3563
3572
|
computed: {
|
|
@@ -3658,12 +3667,12 @@ function ru(t, n, e, i, o, r) {
|
|
|
3658
3667
|
e.isResizable ? (G(), ne("div", {
|
|
3659
3668
|
key: 0,
|
|
3660
3669
|
class: "ib-dropdown-resizer ib-dropdown-resizer-left",
|
|
3661
|
-
onMousedown: n[
|
|
3670
|
+
onMousedown: n[2] || (n[2] = (u) => r.startResizing("left"))
|
|
3662
3671
|
}, null, 32)) : he("", !0),
|
|
3663
3672
|
e.isResizable ? (G(), ne("div", {
|
|
3664
3673
|
key: 1,
|
|
3665
3674
|
class: "ib-dropdown-resizer ib-dropdown-resizer-right",
|
|
3666
|
-
onMousedown: n[
|
|
3675
|
+
onMousedown: n[3] || (n[3] = (u) => r.startResizing("right"))
|
|
3667
3676
|
}, null, 32)) : he("", !0),
|
|
3668
3677
|
Object.keys(o.actualBookmarkedOptions).length > 0 ? (G(), $e(h, {
|
|
3669
3678
|
key: 2,
|
|
@@ -3693,7 +3702,7 @@ function ru(t, n, e, i, o, r) {
|
|
|
3693
3702
|
"show-icon": !0,
|
|
3694
3703
|
value: o.filterString,
|
|
3695
3704
|
placeholder: e.searchPlaceholderText ? e.searchPlaceholderText : o.actualStrings.searchPlaceholder,
|
|
3696
|
-
onInput: n[
|
|
3705
|
+
onInput: n[4] || (n[4] = (u) => r.filter(u, o.actualOptions))
|
|
3697
3706
|
}, null, 8, ["value", "placeholder"])) : he("", !0),
|
|
3698
3707
|
ge(h, {
|
|
3699
3708
|
ref: "list",
|
|
@@ -3800,6 +3809,7 @@ function ru(t, n, e, i, o, r) {
|
|
|
3800
3809
|
}]),
|
|
3801
3810
|
onClick: n[0] || (n[0] = _t(() => {
|
|
3802
3811
|
}, ["prevent"])),
|
|
3812
|
+
onBlur: n[1] || (n[1] = () => t.$emit("blur")),
|
|
3803
3813
|
"aria-label": e.ariaLabel,
|
|
3804
3814
|
"aria-expanded": u
|
|
3805
3815
|
}, [
|
|
@@ -3811,7 +3821,7 @@ function ru(t, n, e, i, o, r) {
|
|
|
3811
3821
|
key: 1,
|
|
3812
3822
|
class: ve({ placeholder: !r.selectStatus })
|
|
3813
3823
|
}, we(r.selectStatus || e.placeholder), 3))
|
|
3814
|
-
],
|
|
3824
|
+
], 42, ["aria-label", "aria-expanded"]),
|
|
3815
3825
|
e.showClearButton ? qe((G(), $e(d, {
|
|
3816
3826
|
key: 0,
|
|
3817
3827
|
kind: "ghost",
|