@wikicasa-dev/components 1.8.0 → 1.8.2
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/BaseTextarea.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { defineComponent as $, mergeModels as f, useModel as
|
|
2
|
-
import
|
|
3
|
-
import { useFloatingLabel as
|
|
1
|
+
import { defineComponent as $, mergeModels as f, useModel as h, ref as x, watch as L, openBlock as k, createElementBlock as b, normalizeClass as s, createElementVNode as o, unref as l, withModifiers as d, createCommentVNode as p, createVNode as M, nextTick as F } from "vue";
|
|
2
|
+
import B from "./BaseFloatingLabel.js";
|
|
3
|
+
import { useFloatingLabel as z } from "./useFloatingLabel.js";
|
|
4
4
|
import { _ as C } from "./chunks/_plugin-vue_export-helper.CHgC5LLL.js";
|
|
5
|
-
import './assets/BaseTextarea.css';const
|
|
5
|
+
import './assets/BaseTextarea.css';const E = ["id", "data-cy", "rows", "disabled", "aria-labelledby", "readonly", "value"], H = {
|
|
6
6
|
key: 0,
|
|
7
7
|
class: "uikit-visible uikit-float-none uikit-ml-2 uikit-block uikit-h-3 uikit-w-auto uikit-max-w-full uikit-overflow-hidden uikit-whitespace-nowrap uikit-p-0 uikit-text uikit-duration-[50s] uikit-ease-out"
|
|
8
|
-
},
|
|
8
|
+
}, I = ["innerHTML"], q = ["innerHTML"], A = /* @__PURE__ */ $({
|
|
9
9
|
inheritAttrs: !1,
|
|
10
10
|
__name: "BaseTextarea",
|
|
11
11
|
props: /* @__PURE__ */ f({
|
|
@@ -17,23 +17,24 @@ import './assets/BaseTextarea.css';const H = ["id", "data-cy", "rows", "disabled
|
|
|
17
17
|
modelValue: { default: "" },
|
|
18
18
|
modelModifiers: {}
|
|
19
19
|
}),
|
|
20
|
-
emits: /* @__PURE__ */ f(["focusin", "focusout", "keydown"], ["update:modelValue"]),
|
|
20
|
+
emits: /* @__PURE__ */ f(["focusin", "focusout", "click", "keydown"], ["update:modelValue"]),
|
|
21
21
|
setup(v, { expose: m, emit: c }) {
|
|
22
|
-
const
|
|
23
|
-
labelState:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
22
|
+
const r = h(v, "modelValue"), n = c, {
|
|
23
|
+
labelState: a,
|
|
24
|
+
handleFocusIn: w,
|
|
25
|
+
handleFocusOut: g,
|
|
26
|
+
setFloatingLabel: y,
|
|
27
|
+
setInlineLabel: V
|
|
28
|
+
} = z(n), i = x(null);
|
|
29
|
+
L(
|
|
30
|
+
r,
|
|
31
|
+
(e) => {
|
|
32
|
+
`${e}`.length && a.value !== "floating-label" ? y() : !e?.length && a.value !== "inline-label" && document.activeElement !== i.value && V();
|
|
33
|
+
},
|
|
34
|
+
{ immediate: !0 }
|
|
35
|
+
);
|
|
36
|
+
const T = ({ target: e }) => {
|
|
37
|
+
r.value = e.value;
|
|
37
38
|
};
|
|
38
39
|
return m({
|
|
39
40
|
disableTextarea: () => {
|
|
@@ -43,19 +44,19 @@ import './assets/BaseTextarea.css';const H = ["id", "data-cy", "rows", "disabled
|
|
|
43
44
|
i.value && (i.value.value = "");
|
|
44
45
|
},
|
|
45
46
|
focusDisabledTextarea: () => {
|
|
46
|
-
i.value && (i.value.removeAttribute("readonly"), i.value.classList.remove("disabled"),
|
|
47
|
+
i.value && (i.value.removeAttribute("readonly"), i.value.classList.remove("disabled"), F(() => {
|
|
47
48
|
i.value && i.value.focus();
|
|
48
49
|
}));
|
|
49
50
|
}
|
|
50
|
-
}), (e,
|
|
51
|
+
}), (e, t) => (k(), b("div", {
|
|
51
52
|
class: s(e.$attrs["wrapper-classes"])
|
|
52
53
|
}, [
|
|
53
|
-
|
|
54
|
+
o("div", {
|
|
54
55
|
class: s(["input-wrapper uikit-relative uikit-rounded-xs uikit-px-0", [
|
|
55
|
-
a
|
|
56
|
+
l(a) === "floating-label" ? "floating-state" : "inline-state"
|
|
56
57
|
]])
|
|
57
58
|
}, [
|
|
58
|
-
|
|
59
|
+
o("textarea", {
|
|
59
60
|
id: e.$attrs.id,
|
|
60
61
|
ref_key: "textarea",
|
|
61
62
|
ref: i,
|
|
@@ -70,13 +71,14 @@ import './assets/BaseTextarea.css';const H = ["id", "data-cy", "rows", "disabled
|
|
|
70
71
|
disabled: e.$attrs.disabled,
|
|
71
72
|
"aria-labelledby": e.$attrs.id,
|
|
72
73
|
readonly: e.$attrs.readonly,
|
|
73
|
-
onFocusin:
|
|
74
|
-
onFocusout:
|
|
75
|
-
onInput:
|
|
76
|
-
onKeydown:
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
74
|
+
onFocusin: t[0] || (t[0] = d((u) => l(w)(), ["stop"])),
|
|
75
|
+
onFocusout: t[1] || (t[1] = d((u) => l(g)(`${r.value}`.trim()), ["stop"])),
|
|
76
|
+
onInput: d(T, ["stop"]),
|
|
77
|
+
onKeydown: t[2] || (t[2] = d((u) => n("keydown", u), ["stop"])),
|
|
78
|
+
onClick: t[3] || (t[3] = (u) => n("click", u)),
|
|
79
|
+
value: r.value
|
|
80
|
+
}, null, 42, E),
|
|
81
|
+
o("fieldset", {
|
|
80
82
|
class: s(["uikit-pointer-events-none uikit-absolute -uikit-top-0 uikit-bottom-[3px] uikit-left-0 uikit-right-0 uikit-m-0 uikit-min-w-0 uikit-overflow-hidden uikit-rounded-xs uikit-border uikit-border-solid uikit-bg-white uikit-p-0 uikit-px-2 uikit-text-start uikit-transition-[border] uikit-duration-100 uikit-ease-out peer-focus/fieldset:uikit-border-2 peer-focus/fieldset:uikit-border-w-primary peer-disabled/fieldset:uikit-bg-w-cultured peer-[&.disabled]/fieldset:uikit-bg-w-cultured peer-focus/fieldset:[&.is-invalid]:uikit-border-w-danger", [
|
|
81
83
|
{ "is-invalid": e.isValid === !1, "is-valid": e.isValid },
|
|
82
84
|
{ "uikit-border-w-danger": e.isValid === !1 },
|
|
@@ -84,42 +86,42 @@ import './assets/BaseTextarea.css';const H = ["id", "data-cy", "rows", "disabled
|
|
|
84
86
|
{ "uikit-border-w-secondary": e.isValid === null }
|
|
85
87
|
]])
|
|
86
88
|
}, [
|
|
87
|
-
e.labelText ? (
|
|
88
|
-
|
|
89
|
+
e.labelText ? (k(), b("legend", H, [
|
|
90
|
+
o("span", {
|
|
89
91
|
class: s(["uikit-px-5px uikit-opacity-0", [
|
|
90
92
|
{
|
|
91
|
-
"uikit-visible uikit-inline-block": a
|
|
93
|
+
"uikit-visible uikit-inline-block": l(a) === "floating-label"
|
|
92
94
|
},
|
|
93
95
|
{
|
|
94
|
-
"uikit-invisible uikit-hidden": a
|
|
96
|
+
"uikit-invisible uikit-hidden": l(a) === "inline-label"
|
|
95
97
|
}
|
|
96
98
|
]]),
|
|
97
99
|
innerHTML: e.labelText
|
|
98
|
-
}, null, 10,
|
|
100
|
+
}, null, 10, I)
|
|
99
101
|
])) : p("", !0)
|
|
100
102
|
], 2),
|
|
101
|
-
|
|
103
|
+
M(B, {
|
|
102
104
|
for: e.$attrs.id,
|
|
103
105
|
"label-text": e.labelText,
|
|
104
|
-
"label-state": a
|
|
106
|
+
"label-state": l(a),
|
|
105
107
|
required: e.$attrs.required,
|
|
106
108
|
"is-valid": e.isValid,
|
|
107
109
|
"label-classes": [
|
|
108
|
-
a
|
|
110
|
+
l(a) === "floating-label" ? "!-uikit-top-1" : "!uikit-top-4",
|
|
109
111
|
e.$attrs["label-classes"]
|
|
110
112
|
]
|
|
111
113
|
}, null, 8, ["for", "label-text", "label-state", "required", "is-valid", "label-classes"])
|
|
112
114
|
], 2),
|
|
113
|
-
(e.isValid || e.isValid === !1) && e.feedback ? (
|
|
115
|
+
(e.isValid || e.isValid === !1) && e.feedback ? (k(), b("div", {
|
|
114
116
|
key: 0,
|
|
115
117
|
class: s(
|
|
116
118
|
e.isValid === !1 ? "uikit-mt-1 uikit-text-12 uikit-text-w-danger" : "uikit-mt-1 uikit-text-12 uikit-text-w-primary"
|
|
117
119
|
),
|
|
118
120
|
innerHTML: e.isValid === !1 ? e.feedback.invalid : e.feedback.valid
|
|
119
|
-
}, null, 10,
|
|
121
|
+
}, null, 10, q)) : p("", !0)
|
|
120
122
|
], 2));
|
|
121
123
|
}
|
|
122
|
-
}),
|
|
124
|
+
}), J = /* @__PURE__ */ C(A, [["__scopeId", "data-v-b3053514"]]);
|
|
123
125
|
export {
|
|
124
|
-
|
|
126
|
+
J as default
|
|
125
127
|
};
|
|
@@ -22,6 +22,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
22
22
|
clearTextareaElem: () => void;
|
|
23
23
|
focusDisabledTextarea: () => void;
|
|
24
24
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
|
+
click: (args_0: MouseEvent) => void;
|
|
25
26
|
focusin: () => void;
|
|
26
27
|
focusout: () => void;
|
|
27
28
|
keydown: (args_0: KeyboardEvent) => void;
|
|
@@ -46,6 +47,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
46
47
|
onFocusin?: (() => any) | undefined;
|
|
47
48
|
onFocusout?: (() => any) | undefined;
|
|
48
49
|
onKeydown?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
50
|
+
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
49
51
|
}, {
|
|
50
52
|
resize: boolean;
|
|
51
53
|
isValid: Nullable<boolean>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.invalid-bg[data-v-
|
|
1
|
+
.invalid-bg[data-v-b3053514]{--invalid-img: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMicgaGVpZ2h0PScxMicgZmlsbD0nbm9uZScgc3Ryb2tlPScjRkE0RjY0Jz48Y2lyY2xlIGN4PSc2JyBjeT0nNicgcj0nNC41Jy8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSdyb3VuZCcgZD0nTTUuOCAzLjZoLjRMNiA2LjV6Jy8+PGNpcmNsZSBjeD0nNicgY3k9JzguMicgcj0nLjYnIGZpbGw9JyNGQTRGNjQnIHN0cm9rZT0nbm9uZScvPjwvc3ZnPg==);background-image:var(--invalid-img)}.valid-bg[data-v-b3053514]{--valid-img: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA4IDgnPjxwYXRoIGZpbGw9JyMyQjVERkYnIGQ9J00yLjMgNi43My42IDQuNTNjLS40LTEuMDQuNDYtMS40IDEuMS0uOGwxLjEgMS40IDMuNC0zLjhjLjYtLjYzIDEuNi0uMjcgMS4yLjdsLTQgNC42Yy0uNDMuNS0uOC40LTEuMS4xeicvPjwvc3ZnPg==);background-image:var(--valid-img)}.invalid-bg[data-v-b3053514],.valid-bg[data-v-b3053514]{background-position:top 0px right 12px;background-size:20px}.textarea-scrollbar[data-v-b3053514]::-webkit-scrollbar{width:8px;height:6px}.textarea-scrollbar[data-v-b3053514]::-webkit-scrollbar-track{--tw-bg-opacity: 1;background-color:rgb(244 247 255 / var(--tw-bg-opacity))}.textarea-scrollbar[data-v-b3053514]::-webkit-scrollbar-thumb{border-radius:5px;--tw-bg-opacity: 1;background-color:rgb(180 194 240 / var(--tw-bg-opacity))}.is-valid.textarea-scrollbar[data-v-b3053514]::-webkit-scrollbar-thumb{background-color:#2b5dff!important}.is-invalid.textarea-scrollbar[data-v-b3053514]::-webkit-scrollbar-thumb{background-color:#fa4f64!important}
|