@avakhula/ui 0.0.269 → 0.0.271
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 +5 -5
- package/dist/index.umd.cjs +3 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/App.vue +1 -1
- package/src/components/Form/Input/Input.vue +2 -0
- package/src/components/Tooltip/Tooltip.vue +1 -1
- package/src/components/TreeSelect/Select.vue +0 -2
- package/src/components/TreeSelect/scss/select.scss +2 -5
package/dist/index.js
CHANGED
|
@@ -379,7 +379,7 @@ function Ba(t, n, e, r, o, i) {
|
|
|
379
379
|
_: 1
|
|
380
380
|
}, 8, ["position", "always-visible", "class"]);
|
|
381
381
|
}
|
|
382
|
-
const kn = /* @__PURE__ */ Ae(La, [["render", Ba], ["__scopeId", "data-v-
|
|
382
|
+
const kn = /* @__PURE__ */ Ae(La, [["render", Ba], ["__scopeId", "data-v-b65f4cec"]]), qr = {
|
|
383
383
|
[sn.primary]: sn.primary,
|
|
384
384
|
[sn.tertiary]: sn.tertiary,
|
|
385
385
|
[sn.ghost]: sn.ghost,
|
|
@@ -2303,7 +2303,7 @@ const Ts = {
|
|
|
2303
2303
|
this.showPassword = !this.showPassword;
|
|
2304
2304
|
},
|
|
2305
2305
|
clearInput() {
|
|
2306
|
-
this.actualValue = "", this.$emit("update:modelValue", this.actualValue), this.$emit("input", this.actualValue);
|
|
2306
|
+
this.actualValue = "", this.$emit("update:modelValue", this.actualValue), this.$emit("input", this.actualValue), this.$emit("clear");
|
|
2307
2307
|
},
|
|
2308
2308
|
onBlur() {
|
|
2309
2309
|
this.$emit("blur", this.actualValue);
|
|
@@ -2354,6 +2354,7 @@ const Ts = {
|
|
|
2354
2354
|
"input",
|
|
2355
2355
|
"blur",
|
|
2356
2356
|
"focus",
|
|
2357
|
+
"clear",
|
|
2357
2358
|
"update:modelValue",
|
|
2358
2359
|
`label:disabled:${globalThis == null ? void 0 : globalThis.id}`
|
|
2359
2360
|
],
|
|
@@ -2463,7 +2464,7 @@ function As(t, n, e, r, o, i) {
|
|
|
2463
2464
|
], 2)
|
|
2464
2465
|
]);
|
|
2465
2466
|
}
|
|
2466
|
-
const Bo = /* @__PURE__ */ Ae(Ts, [["render", As], ["__scopeId", "data-v-
|
|
2467
|
+
const Bo = /* @__PURE__ */ Ae(Ts, [["render", As], ["__scopeId", "data-v-ea1e952e"]]);
|
|
2467
2468
|
const Ns = {
|
|
2468
2469
|
name: "IbCheckbox",
|
|
2469
2470
|
model: {
|
|
@@ -3854,12 +3855,11 @@ const lu = {
|
|
|
3854
3855
|
}
|
|
3855
3856
|
},
|
|
3856
3857
|
computed: {
|
|
3857
|
-
// RENAME TO CUSTOM TREGER
|
|
3858
3858
|
hasTrigger() {
|
|
3859
3859
|
return !!this.$slots.trigger;
|
|
3860
3860
|
},
|
|
3861
3861
|
hasTriggerContent() {
|
|
3862
|
-
return
|
|
3862
|
+
return !!this.$slots.triggerContent;
|
|
3863
3863
|
},
|
|
3864
3864
|
hasEmptyMessage() {
|
|
3865
3865
|
return !!this.$slots.emptyMessage;
|