@opentiny/tiny-robot 0.3.0-alpha.3 → 0.3.0-alpha.5
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/action-group/index.js +41 -38
- package/dist/base-popper/index.js +123 -0
- package/dist/bubble/index.js +1207 -1992
- package/dist/container/index.js +12 -12
- package/dist/dropdown-menu/index.js +77 -62
- package/dist/feedback/index.js +42 -42
- package/dist/flow-layout-buttons/index.js +23 -20
- package/dist/history/index.js +24 -24
- package/dist/icon-button/index.js +18 -19
- package/dist/index.d.ts +606 -1935
- package/dist/index.js +43 -58
- package/dist/index2.js +358 -290
- package/dist/index3.js +33 -25
- package/dist/index5.js +179 -180
- package/dist/index6.js +610 -613
- package/dist/question/index.js +58 -58
- package/dist/sender/index.js +994 -1184
- package/dist/style.css +1 -1
- package/dist/suggestion/index.js +70 -70
- package/dist/suggestion-pills/index.js +179 -129
- package/dist/suggestion-popover/index.js +215 -212
- package/dist/tiny-robot-svgs.js +174 -227
- package/dist/utils.js +4 -15
- package/package.json +3 -4
- package/dist/loading.js +0 -4
package/dist/index5.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import * as
|
|
3
|
-
import { createElementBlock as
|
|
1
|
+
import { $, M as Ie, S as le, e as ye, s as R, G as Me, m as G, Z as F, n as ie, N as $e, t as Ve, H as De, d as j, a as ae, p as me, b as ge, c as H, f as he, g as Te } from "./index6.js";
|
|
2
|
+
import * as ke from "vue";
|
|
3
|
+
import { createElementBlock as g, openBlock as p, createElementVNode as b, resolveComponent as B, createBlock as M, Transition as q, withCtx as k, withDirectives as Q, withModifiers as ee, normalizeClass as W, createVNode as L, createCommentVNode as h, normalizeStyle as Be, renderSlot as D, toDisplayString as O, vShow as se, resolveDirective as Ee, mergeProps as K, Fragment as te, resolveDynamicComponent as z, createTextVNode as X, withKeys as Le, renderList as _e } from "vue";
|
|
4
4
|
import { i as ve } from "./close.js";
|
|
5
|
-
import { T as
|
|
6
|
-
import { B as
|
|
7
|
-
let
|
|
8
|
-
const
|
|
5
|
+
import { T as Ae } from "./index4.js";
|
|
6
|
+
import { B as Pe } from "./index3.js";
|
|
7
|
+
let ze = 1;
|
|
8
|
+
const Ne = ({
|
|
9
9
|
onMounted: e,
|
|
10
10
|
onBeforeUnmount: t,
|
|
11
11
|
watch: n,
|
|
@@ -16,9 +16,9 @@ const Pe = ({
|
|
|
16
16
|
nextTick: s
|
|
17
17
|
}) => {
|
|
18
18
|
e(() => {
|
|
19
|
-
o._popupId = `popup-${
|
|
19
|
+
o._popupId = `popup-${ze++}`, $.register(o._popupId, o);
|
|
20
20
|
}), t(() => {
|
|
21
|
-
|
|
21
|
+
$.deregister(o._popupId), $.closeModal(o._popupId);
|
|
22
22
|
}), n(
|
|
23
23
|
() => i.visible,
|
|
24
24
|
(r) => {
|
|
@@ -41,13 +41,13 @@ const Pe = ({
|
|
|
41
41
|
return;
|
|
42
42
|
t._opening = !0;
|
|
43
43
|
const a = t.$el, s = o.modal, r = o.zIndex;
|
|
44
|
-
r && (
|
|
44
|
+
r && ($.zIndex = r), s && (t._closing && ($.closeModal(t._popupId), t._closing = !1), $.openModal(
|
|
45
45
|
t._popupId,
|
|
46
|
-
|
|
46
|
+
$.nextZIndex(),
|
|
47
47
|
o.modalAppendToBody ? void 0 : a,
|
|
48
48
|
o.modalClass,
|
|
49
49
|
o.modalFade
|
|
50
|
-
), o.lockScroll && (
|
|
50
|
+
), o.lockScroll && ($.fixBodyBorder(), ye(document.body, $.popLockClass))), getComputedStyle(a).position === "static" && (a.style.position = "absolute"), a.style.zIndex = $.nextZIndex().toString(), e.opened = !0, t._opening = !1;
|
|
51
51
|
}, i = Number(o.openDelay);
|
|
52
52
|
i > 0 ? t._openTimer = setTimeout(() => {
|
|
53
53
|
t._openTimer = null, l();
|
|
@@ -55,7 +55,7 @@ const Pe = ({
|
|
|
55
55
|
}, Fe = ({ state: e, vm: t }) => () => {
|
|
56
56
|
t._openTimer !== null && (clearTimeout(t._openTimer), t._openTimer = null), clearTimeout(t._closeTimer);
|
|
57
57
|
const n = () => {
|
|
58
|
-
t._closing = !0, e.opened = !1,
|
|
58
|
+
t._closing = !0, e.opened = !1, $.closeModal(t._popupId), t._closing = !1;
|
|
59
59
|
}, o = Number(t.closeDelay);
|
|
60
60
|
o > 0 ? t._closeTimer = setTimeout(() => {
|
|
61
61
|
t._closeTimer = null, n();
|
|
@@ -65,18 +65,18 @@ const Pe = ({
|
|
|
65
65
|
opened: !1,
|
|
66
66
|
rendered: !1
|
|
67
67
|
});
|
|
68
|
-
|
|
68
|
+
Ne({ onMounted: l, onBeforeUnmount: o, watch: u, vm: r, api: t, props: i, state: f, nextTick: n });
|
|
69
69
|
const c = xe({ state: f, vm: r }), d = Fe({ state: f, vm: r });
|
|
70
|
-
return { open: c, close: d, PopupManager:
|
|
70
|
+
return { open: c, close: d, PopupManager: $, ...s(f) };
|
|
71
71
|
};
|
|
72
|
-
var We = Object.defineProperty, Ue = Object.defineProperties,
|
|
72
|
+
var We = Object.defineProperty, Ue = Object.defineProperties, je = Object.getOwnPropertyDescriptors, ue = Object.getOwnPropertySymbols, Re = Object.prototype.hasOwnProperty, Ge = Object.prototype.propertyIsEnumerable, de = (e, t, n) => t in e ? We(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n, U = (e, t) => {
|
|
73
73
|
for (var n in t || (t = {}))
|
|
74
|
-
|
|
74
|
+
Re.call(t, n) && de(e, n, t[n]);
|
|
75
75
|
if (ue)
|
|
76
76
|
for (var n of ue(t))
|
|
77
77
|
Ge.call(t, n) && de(e, n, t[n]);
|
|
78
78
|
return e;
|
|
79
|
-
}, be = (e, t) => Ue(e,
|
|
79
|
+
}, be = (e, t) => Ue(e, je(t)), Ke = {
|
|
80
80
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81
81
|
viewBox: "0 0 16 16",
|
|
82
82
|
style: {
|
|
@@ -103,12 +103,12 @@ var We = Object.defineProperty, Ue = Object.defineProperties, Re = Object.getOwn
|
|
|
103
103
|
/* HOISTED */
|
|
104
104
|
), Je = [Xe, Ye];
|
|
105
105
|
function Ze(e, t) {
|
|
106
|
-
return p(),
|
|
106
|
+
return p(), g("svg", Ke, [].concat(Je));
|
|
107
107
|
}
|
|
108
108
|
var qe = {
|
|
109
109
|
render: Ze
|
|
110
110
|
}, Qe = function() {
|
|
111
|
-
return
|
|
111
|
+
return R({
|
|
112
112
|
name: "IconEyeclose",
|
|
113
113
|
component: qe
|
|
114
114
|
})();
|
|
@@ -140,12 +140,12 @@ var qe = {
|
|
|
140
140
|
/* HOISTED */
|
|
141
141
|
), ot = [tt, nt];
|
|
142
142
|
function lt(e, t) {
|
|
143
|
-
return p(),
|
|
143
|
+
return p(), g("svg", et, [].concat(ot));
|
|
144
144
|
}
|
|
145
145
|
var it = {
|
|
146
146
|
render: lt
|
|
147
147
|
}, at = function() {
|
|
148
|
-
return
|
|
148
|
+
return R({
|
|
149
149
|
name: "IconEyeopen",
|
|
150
150
|
component: it
|
|
151
151
|
})();
|
|
@@ -164,12 +164,12 @@ var it = {
|
|
|
164
164
|
/* HOISTED */
|
|
165
165
|
), ut = [st];
|
|
166
166
|
function dt(e, t) {
|
|
167
|
-
return p(),
|
|
167
|
+
return p(), g("svg", rt, [].concat(ut));
|
|
168
168
|
}
|
|
169
169
|
var pt = {
|
|
170
170
|
render: dt
|
|
171
171
|
}, ft = function() {
|
|
172
|
-
return
|
|
172
|
+
return R({
|
|
173
173
|
name: "IconFullscreen",
|
|
174
174
|
component: pt
|
|
175
175
|
})();
|
|
@@ -188,12 +188,12 @@ var pt = {
|
|
|
188
188
|
/* HOISTED */
|
|
189
189
|
), mt = [yt];
|
|
190
190
|
function gt(e, t) {
|
|
191
|
-
return p(),
|
|
191
|
+
return p(), g("svg", ct, [].concat(mt));
|
|
192
192
|
}
|
|
193
193
|
var ht = {
|
|
194
194
|
render: gt
|
|
195
195
|
}, vt = function() {
|
|
196
|
-
return
|
|
196
|
+
return R({
|
|
197
197
|
name: "IconMinscreen",
|
|
198
198
|
component: ht
|
|
199
199
|
})();
|
|
@@ -250,20 +250,20 @@ position:absolute !important;z-index:-1000 !important;top:0 !important;right:0 !
|
|
|
250
250
|
t || (t = document.createElement("textarea"), document.body.appendChild(t));
|
|
251
251
|
const { paddingSize: u, borderSize: f, boxSizing: c, contextStyle: d } = e.calculateNodeStyling(a);
|
|
252
252
|
t.setAttribute("style", `${d};${bt}`), t.value = a.value || a.placeholder || "";
|
|
253
|
-
let
|
|
253
|
+
let m = t.scrollHeight;
|
|
254
254
|
const C = {};
|
|
255
|
-
l === "mobile" && (
|
|
256
|
-
const
|
|
255
|
+
l === "mobile" && (m = Math.max(t.scrollHeight, i.TEXTAREA_HEIGHT_MOBILE)), c === T.BorderBox ? m = m + f * 2 + u : c === T.ContentBox && (m = m - u), t.value = "";
|
|
256
|
+
const I = t.scrollHeight - u;
|
|
257
257
|
if (s !== null) {
|
|
258
|
-
let y =
|
|
259
|
-
c === T.BorderBox && (y = y + u + f), n.size && (y = n.size === "mini" ? y * 0.67 : n.size === "small" ? y : y * 1.17), n.height && (y = n.height), o.isDisplayOnly ? C.minHeight = "0px" : (
|
|
258
|
+
let y = I * s;
|
|
259
|
+
c === T.BorderBox && (y = y + u + f), (n.size || s === 1) && (y = n.size === "mini" ? y * 0.67 : n.size === "small" ? y : y * 1.17), n.height && (y = n.height), o.isDisplayOnly ? C.minHeight = "0px" : (m = Math.max(y, m), C.minHeight = `${Math.floor(y)}px`);
|
|
260
260
|
}
|
|
261
261
|
if (r !== null) {
|
|
262
|
-
let y =
|
|
263
|
-
c === T.BorderBox && (y += f + u),
|
|
262
|
+
let y = I * r;
|
|
263
|
+
c === T.BorderBox && (y += f + u), m = Math.min(y, m);
|
|
264
264
|
}
|
|
265
|
-
return C.height = `${
|
|
266
|
-
}, $t = (e) => () => e.$refs.input || e.$refs.textarea, Vt = (e) => () => e.getInput().blur(), Dt = (e) => () => e.getInput().focus(), Tt = (e) => () => e.getInput().select(),
|
|
265
|
+
return C.height = `${m}px`, t.parentNode && t.parentNode.removeChild(t), t = null, C;
|
|
266
|
+
}, $t = (e) => () => e.$refs.input || e.$refs.textarea, Vt = (e) => () => e.getInput().blur(), Dt = (e) => () => e.getInput().focus(), Tt = (e) => () => e.getInput().select(), kt = ({
|
|
267
267
|
api: e,
|
|
268
268
|
componentName: t,
|
|
269
269
|
eventName: n,
|
|
@@ -273,11 +273,11 @@ position:absolute !important;z-index:-1000 !important;top:0 !important;right:0 !
|
|
|
273
273
|
vm: a
|
|
274
274
|
}) => (s) => {
|
|
275
275
|
i.focused = !1, o("blur", s), e.isMemoryStorage.value = !1, l.validateEvent && e.dispatch(t, n, [l.modelValue]), l.hoverExpand && (a.$refs.textarea.scrollTop = 0);
|
|
276
|
-
},
|
|
276
|
+
}, Bt = ({ api: e, emit: t, state: n }) => (o) => {
|
|
277
277
|
n.focused = !0, t("focus", o), e.searchMemory(o.target.value);
|
|
278
278
|
}, Et = ({ api: e, emit: t, nextTick: n, state: o }) => (l) => {
|
|
279
279
|
o.isComposing || l.target.value !== o.nativeInputValue && (t("update:modelValue", l.target.value), t("input", l), e.searchMemory(l.target.value), n(e.setNativeInputValue));
|
|
280
|
-
}, Lt = (e) => (t) => e("change", t.target.value),
|
|
280
|
+
}, Lt = (e) => (t) => e("change", t.target.value), _t = ({ api: e, parent: t, vm: n, state: o, props: l }) => () => {
|
|
281
281
|
if (le)
|
|
282
282
|
return;
|
|
283
283
|
const { autosize: i, type: a } = t;
|
|
@@ -298,13 +298,13 @@ position:absolute !important;z-index:-1000 !important;top:0 !important;right:0 !
|
|
|
298
298
|
}
|
|
299
299
|
const s = i.minRows, r = i.maxRows;
|
|
300
300
|
o.textareaCalcStyle = e.calcTextareaHeight(n.$refs.textarea, s, r);
|
|
301
|
-
},
|
|
301
|
+
}, At = ({ api: e, state: t }) => () => {
|
|
302
302
|
const n = e.getInput();
|
|
303
303
|
n && n.value !== t.nativeInputValue && (n.value = t.nativeInputValue);
|
|
304
|
-
},
|
|
304
|
+
}, Pt = (e) => () => e.isComposing = !0, zt = (e) => (t) => {
|
|
305
305
|
const n = t.target.value, o = n[n.length - 1] || "";
|
|
306
306
|
e.isComposing = !wt(o);
|
|
307
|
-
},
|
|
307
|
+
}, Nt = ({ api: e, state: t }) => (n) => {
|
|
308
308
|
t.isComposing && (t.isComposing = !1, e.handleInput(n));
|
|
309
309
|
}, xt = ({ vm: e, parent: t }) => (n) => {
|
|
310
310
|
const o = e.$refs[n] ? [e.$refs[n]] : [];
|
|
@@ -331,7 +331,7 @@ position:absolute !important;z-index:-1000 !important;top:0 !important;right:0 !
|
|
|
331
331
|
e("update:modelValue", ""), e("change", ""), e("clear");
|
|
332
332
|
}, Wt = ({ api: e, nextTick: t, state: n }) => () => {
|
|
333
333
|
n.passwordVisible = !n.passwordVisible, t(e.focus);
|
|
334
|
-
}, Ut = ({ parent: e, props: t, state: n }) => () => e.$slots.suffix || t.suffixIcon || n.showClear || t.showPassword || n.isWordLimitVisible || n.validateState && n.needStatusIcon || t.mask && n.inputDisabled,
|
|
334
|
+
}, Ut = ({ parent: e, props: t, state: n }) => () => e.$slots.suffix || t.suffixIcon || n.showClear || t.showPassword || n.isWordLimitVisible || n.validateState && n.needStatusIcon || t.mask && n.inputDisabled, jt = (e) => typeof e == "number" ? String(e).length : (e || "").length, Rt = ({ emit: e, props: t, state: n }) => (o) => {
|
|
335
335
|
if (t.isSelect) {
|
|
336
336
|
e("update:modelValue", o), e("change", o);
|
|
337
337
|
const l = t.selectMenu.length && t.selectMenu.filter((i) => i.id === o).shift();
|
|
@@ -522,7 +522,7 @@ const cn = [
|
|
|
522
522
|
),
|
|
523
523
|
textareaHeight: s.theme === "saas" ? "28px" : "30px",
|
|
524
524
|
upperLimit: t(() => l.$attrs.maxlength),
|
|
525
|
-
textLength: t(() =>
|
|
525
|
+
textLength: t(() => jt(o.modelValue)),
|
|
526
526
|
inputExceed: t(() => u.isWordLimitVisible && u.textLength > u.upperLimit),
|
|
527
527
|
formItemSize: t(() => (l.formItem || {}).formItemSize),
|
|
528
528
|
validateIcon: t(() => i.VALIDATE_ICON[u.validateState]),
|
|
@@ -580,12 +580,12 @@ const cn = [
|
|
|
580
580
|
getInput: $t(i),
|
|
581
581
|
setShowMoreBtn: en({ state: t, vm: i }),
|
|
582
582
|
handleChange: Lt(l),
|
|
583
|
-
watchFormSelect:
|
|
583
|
+
watchFormSelect: Rt({ emit: l, props: a, state: t }),
|
|
584
584
|
calcIconOffset: xt({ vm: i, parent: s }),
|
|
585
585
|
getSuffixVisible: Ut({ parent: s, props: a, state: t }),
|
|
586
586
|
calculateNodeStyling: It(),
|
|
587
|
-
handleCompositionStart:
|
|
588
|
-
handleCompositionUpdate:
|
|
587
|
+
handleCompositionStart: Pt(t),
|
|
588
|
+
handleCompositionUpdate: zt(t),
|
|
589
589
|
setInputDomValue: Jt({ state: t, props: a, nextTick: r, vm: i }),
|
|
590
590
|
getDisplayOnlyText: Qt({ parent: s, props: a, state: t }),
|
|
591
591
|
handleEnterTextarea: Zt({ api: e, state: t, props: a, nextTick: r }),
|
|
@@ -608,17 +608,17 @@ const cn = [
|
|
|
608
608
|
mode: f,
|
|
609
609
|
constants: c
|
|
610
610
|
}) => {
|
|
611
|
-
const { storageData: d, isMemoryStorage:
|
|
611
|
+
const { storageData: d, isMemoryStorage: m, addMemory: C, searchMemory: I, selectedMemory: y } = e;
|
|
612
612
|
return Object.assign(t, {
|
|
613
613
|
addMemory: C,
|
|
614
614
|
storageData: d,
|
|
615
|
-
searchMemory:
|
|
615
|
+
searchMemory: I,
|
|
616
616
|
selectedMemory: y,
|
|
617
|
-
isMemoryStorage:
|
|
617
|
+
isMemoryStorage: m,
|
|
618
618
|
blur: Vt(t),
|
|
619
619
|
focus: Dt(t),
|
|
620
620
|
select: Tt(t),
|
|
621
|
-
handleBlur:
|
|
621
|
+
handleBlur: kt({
|
|
622
622
|
api: t,
|
|
623
623
|
componentName: n,
|
|
624
624
|
emit: l,
|
|
@@ -627,9 +627,9 @@ const cn = [
|
|
|
627
627
|
state: r,
|
|
628
628
|
vm: u
|
|
629
629
|
}),
|
|
630
|
-
handleFocus:
|
|
630
|
+
handleFocus: Bt({ api: t, emit: l, state: r }),
|
|
631
631
|
handleInput: Et({ api: t, emit: l, nextTick: a, state: r }),
|
|
632
|
-
resizeTextarea:
|
|
632
|
+
resizeTextarea: _t({ api: t, parent: s, vm: u, state: r, props: o }),
|
|
633
633
|
updateIconOffset: Ft(t),
|
|
634
634
|
calcTextareaHeight: Mt({
|
|
635
635
|
api: t,
|
|
@@ -639,8 +639,8 @@ const cn = [
|
|
|
639
639
|
mode: f,
|
|
640
640
|
constants: c
|
|
641
641
|
}),
|
|
642
|
-
setNativeInputValue:
|
|
643
|
-
handleCompositionEnd:
|
|
642
|
+
setNativeInputValue: At({ api: t, state: r }),
|
|
643
|
+
handleCompositionEnd: Nt({ api: t, state: r }),
|
|
644
644
|
handlePasswordVisible: Wt({ api: t, nextTick: a, state: r }),
|
|
645
645
|
hasSelection: Gt(t),
|
|
646
646
|
handleEnterDisplayOnlyContent: Kt({ state: r, props: o }),
|
|
@@ -669,8 +669,7 @@ const cn = [
|
|
|
669
669
|
}
|
|
670
670
|
), e(
|
|
671
671
|
() => o.size,
|
|
672
|
-
() => l(n.resizeTextarea)
|
|
673
|
-
{ immediate: !0 }
|
|
672
|
+
() => l(n.resizeTextarea)
|
|
674
673
|
), e(
|
|
675
674
|
() => t.nativeInputValue,
|
|
676
675
|
() => {
|
|
@@ -695,40 +694,40 @@ const cn = [
|
|
|
695
694
|
(r) => n.watchFormSelect(r),
|
|
696
695
|
{ immediate: !0 }
|
|
697
696
|
);
|
|
698
|
-
}, vn = (e, { computed: t, onMounted: n, onBeforeUnmount: o, onUpdated: l, reactive: i, toRefs: a, watch: s, inject: r }, { vm: u, refs: f, parent: c, emit: d, constants:
|
|
699
|
-
const v = {},
|
|
700
|
-
mn({ api: v, state:
|
|
697
|
+
}, vn = (e, { computed: t, onMounted: n, onBeforeUnmount: o, onUpdated: l, reactive: i, toRefs: a, watch: s, inject: r }, { vm: u, refs: f, parent: c, emit: d, constants: m, nextTick: C, broadcast: I, dispatch: y, mode: S, designConfig: V }) => {
|
|
698
|
+
const v = {}, A = m.COMPONENT_NAME.FormItem, re = { change: "form.change", blur: "form.blur" }, P = yn({ reactive: i, computed: t, mode: S, props: e, parent: c, constants: m, api: v, vm: u, designConfig: V });
|
|
699
|
+
mn({ api: v, state: P, dispatch: y, broadcast: I, emit: d, props: e, parent: c, vm: u, nextTick: C });
|
|
701
700
|
const Oe = fn({ api: v, props: e, reactive: i, toRefs: a });
|
|
702
|
-
return c.tinyForm = c.tinyForm || r("form", null), gn({ api: v, storages: Oe, componentName:
|
|
703
|
-
v.setNativeInputValue(), v.resizeTextarea(), v.updateIconOffset(), v.setInputDomValue(), y("Select", "input-mounted", u.$el), y("Tooltip", "tooltip-update", u.$el), e.type === "textarea" && e.popupMore &&
|
|
701
|
+
return c.tinyForm = c.tinyForm || r("form", null), gn({ api: v, storages: Oe, componentName: A, emit: d, eventName: re, props: e, state: P, nextTick: C, parent: c, vm: u, mode: S, constants: m }), hn({ watch: s, state: P, api: v, props: e, nextTick: C, emit: d, componentName: A, eventName: re }), n(() => {
|
|
702
|
+
v.setNativeInputValue(), v.resizeTextarea(), v.updateIconOffset(), v.setInputDomValue(), y("Select", "input-mounted", u.$el), y("Tooltip", "tooltip-update", u.$el), e.type === "textarea" && e.popupMore && P.isDisplayOnly && (v.setShowMoreBtn(!0), F(window, "resize", v.setShowMoreBtn)), u.$attrs.autofocus && v.focus();
|
|
704
703
|
}), o(() => {
|
|
705
|
-
e.type === "textarea" && e.popupMore &&
|
|
704
|
+
e.type === "textarea" && e.popupMore && P.isDisplayOnly && ie(window, "resize", v.setShowMoreBtn);
|
|
706
705
|
}), l(() => {
|
|
707
706
|
C(v.updateIconOffset);
|
|
708
707
|
}), v;
|
|
709
708
|
};
|
|
710
|
-
|
|
711
|
-
var E = [], w = "@@clickoutsideContext",
|
|
709
|
+
ke.ref("");
|
|
710
|
+
var E = [], w = "@@clickoutsideContext", _, bn = 0;
|
|
712
711
|
le || (F(document, "mousedown", function(e) {
|
|
713
|
-
|
|
712
|
+
_ = e, E.filter(function(t) {
|
|
714
713
|
return t[w].mousedownTrigger;
|
|
715
714
|
}).forEach(function(t) {
|
|
716
|
-
return t[w].documentHandler(e,
|
|
715
|
+
return t[w].documentHandler(e, _);
|
|
717
716
|
});
|
|
718
717
|
}), F(document, "mouseup", function(e) {
|
|
719
718
|
E.filter(function(t) {
|
|
720
719
|
return !t[w].mousedownTrigger;
|
|
721
720
|
}).forEach(function(t) {
|
|
722
721
|
var n;
|
|
723
|
-
return t[w].documentHandler(e, (n = t[w]) != null && n.mouseupTrigger ? e :
|
|
724
|
-
}),
|
|
722
|
+
return t[w].documentHandler(e, (n = t[w]) != null && n.mouseupTrigger ? e : _);
|
|
723
|
+
}), _ = null;
|
|
725
724
|
}));
|
|
726
725
|
var pe = function(t, n, o) {
|
|
727
726
|
return function(l, i) {
|
|
728
|
-
var a, s;
|
|
727
|
+
var a, s, r, u, f, c;
|
|
729
728
|
l === void 0 && (l = {}), i === void 0 && (i = {});
|
|
730
|
-
var
|
|
731
|
-
!((
|
|
729
|
+
var d = o.context.popperElm || o.context.state && o.context.state.popperElm, m = ((a = i) == null || a.composedPath == null ? void 0 : a.composedPath()) || [(s = i) == null ? void 0 : s.target], C = ((r = l) == null || r.composedPath == null ? void 0 : r.composedPath()) || [(u = l) == null ? void 0 : u.target], I = m.includes(t) || C.includes(t), y = d && (m.includes(d) || C.includes(d));
|
|
730
|
+
!((f = i) != null && f.target) || !((c = l) != null && c.target) || I || y || (n.expression && t[w].methodName && o.context[t[w].methodName] ? o.context[t[w].methodName]() : t[w].bindingFn && t[w].bindingFn());
|
|
732
731
|
};
|
|
733
732
|
}, Sn = {
|
|
734
733
|
bind: function(t, n, o) {
|
|
@@ -754,7 +753,7 @@ var pe = function(t, n, o) {
|
|
|
754
753
|
E.splice(o, 1);
|
|
755
754
|
break;
|
|
756
755
|
}
|
|
757
|
-
E.length === 0 &&
|
|
756
|
+
E.length === 0 && _ && (_ = null), delete t[w];
|
|
758
757
|
}
|
|
759
758
|
}
|
|
760
759
|
};
|
|
@@ -809,9 +808,9 @@ const wn = ["state", "mousedown", "selectItem"], Cn = (e, { onUnmounted: t, reac
|
|
|
809
808
|
e.mouseDownWrapperFlag = !1, /tiny-dialog-box__wrapper/.test(t.target.className) && t.type === "mousedown" && (e.mouseDownWrapperFlag = !0);
|
|
810
809
|
}, Tn = ({ state: e }) => (t) => {
|
|
811
810
|
e.mouseUpWrapperFlag = !1, /tiny-dialog-box__wrapper/.test(t.target.className) && t.type === "mouseup" && (e.mouseUpWrapperFlag = !0);
|
|
812
|
-
},
|
|
811
|
+
}, kn = ({ api: e, props: t, state: n }) => () => {
|
|
813
812
|
t.closeOnClickModal && n.mouseDownWrapperFlag && n.mouseUpWrapperFlag && e.handleClose("mask");
|
|
814
|
-
},
|
|
813
|
+
}, Bn = ({
|
|
815
814
|
api: e,
|
|
816
815
|
constants: t,
|
|
817
816
|
emit: n,
|
|
@@ -830,13 +829,13 @@ const wn = ["state", "mousedown", "selectItem"], Cn = (e, { onUnmounted: t, reac
|
|
|
830
829
|
l !== !1 && (n.emitter.emit("boxclose", o.isFormReset), t("update:visible", !1), t("change", !1), t("close", l), n.closed = !0, e.hideScrollbar());
|
|
831
830
|
}, Ln = ({ api: e, emit: t }) => () => {
|
|
832
831
|
t("confirm"), e.handleClose("confirm");
|
|
833
|
-
},
|
|
832
|
+
}, _n = ({ api: e, emit: t }) => () => {
|
|
834
833
|
t("cancel"), e.handleClose("cancel");
|
|
835
|
-
},
|
|
834
|
+
}, An = ({ api: e, constants: t }) => () => {
|
|
836
835
|
e.broadcast(t.SELECT_DROPDOWN, "updatePopper"), e.broadcast(t.DROPDOWN_MENU, "updatePopper");
|
|
837
|
-
},
|
|
836
|
+
}, Pn = (e) => () => {
|
|
838
837
|
e("opened");
|
|
839
|
-
},
|
|
838
|
+
}, zn = (e) => () => {
|
|
840
839
|
e("closed");
|
|
841
840
|
}, we = ({
|
|
842
841
|
vm: e,
|
|
@@ -846,7 +845,7 @@ const wn = ["state", "mousedown", "selectItem"], Cn = (e, { onUnmounted: t, reac
|
|
|
846
845
|
return !n || n.length === 0 ? [] : (n.forEach((o) => {
|
|
847
846
|
o.$options.componentName === "Select" && t.push(o), we({ vm: o, componentList: t });
|
|
848
847
|
}), t);
|
|
849
|
-
},
|
|
848
|
+
}, Nn = (e) => {
|
|
850
849
|
we({ vm: e, componentList: [] }).forEach((t) => {
|
|
851
850
|
t.state.visible = !1;
|
|
852
851
|
});
|
|
@@ -862,17 +861,17 @@ const wn = ["state", "mousedown", "selectItem"], Cn = (e, { onUnmounted: t, reac
|
|
|
862
861
|
let a = l.$refs.dialog;
|
|
863
862
|
i.preventDefault();
|
|
864
863
|
let s = document.onmousemove, r = document.onmouseup, u = i.clientX - a.offsetLeft, f = i.clientY - a.offsetTop, { visibleHeight: c, visibleWidth: d } = $e();
|
|
865
|
-
document.onmousemove = (
|
|
866
|
-
|
|
867
|
-
let C = a.offsetWidth,
|
|
864
|
+
document.onmousemove = (m) => {
|
|
865
|
+
m.preventDefault(), n.move || (o("drag-start", m), Nn(e), n.move = !0);
|
|
866
|
+
let C = a.offsetWidth, I = a.offsetHeight, y, S;
|
|
868
867
|
if (t.dragOutsideWindow) {
|
|
869
868
|
let V = d - 10, v = c - 10;
|
|
870
|
-
y =
|
|
869
|
+
y = m.clientX - u, S = m.clientY - f, y = m.clientX < 0 ? -u : y > V ? V : y, S = m.clientY < 0 ? -f : S > v ? v : S;
|
|
871
870
|
} else {
|
|
872
|
-
let V = Math.max(d - C, 0), v = Math.max(c -
|
|
873
|
-
y =
|
|
871
|
+
let V = Math.max(d - C, 0), v = Math.max(c - I, 0);
|
|
872
|
+
y = m.clientX - u, S = m.clientY - f, y = y < 0 ? 0 : y > V ? V : y, S = S < 0 ? 0 : S > v ? v : S;
|
|
874
873
|
}
|
|
875
|
-
n.isFull || (n.dragStyle = { left: `${y}px`, top: `${S}px` }), n.left = `${y}px`, n.top = `${S}px`, n.emitter.emit("boxdrag"), o("drag-move",
|
|
874
|
+
n.isFull || (n.dragStyle = { left: `${y}px`, top: `${S}px` }), n.left = `${y}px`, n.top = `${S}px`, n.emitter.emit("boxdrag"), o("drag-move", m);
|
|
876
875
|
}, document.onmouseup = () => {
|
|
877
876
|
document.onmousemove = s, document.onmouseup = r, t.draggable && n.move && o("drag-end", i), n.move = !1;
|
|
878
877
|
};
|
|
@@ -896,7 +895,7 @@ const wn = ["state", "mousedown", "selectItem"], Cn = (e, { onUnmounted: t, reac
|
|
|
896
895
|
"handleDrag",
|
|
897
896
|
"toggleFullScreen",
|
|
898
897
|
"state"
|
|
899
|
-
],
|
|
898
|
+
], jn = ({
|
|
900
899
|
reactive: e,
|
|
901
900
|
computed: t,
|
|
902
901
|
api: n,
|
|
@@ -922,7 +921,7 @@ const wn = ["state", "mousedown", "selectItem"], Cn = (e, { onUnmounted: t, reac
|
|
|
922
921
|
current: a,
|
|
923
922
|
dragStyle: null
|
|
924
923
|
});
|
|
925
|
-
},
|
|
924
|
+
}, Rn = ({ reactive: e, state: t, toRefs: n, usePopups: o }) => {
|
|
926
925
|
const { opened: l, rendered: i } = o;
|
|
927
926
|
return e(U({
|
|
928
927
|
opened: l,
|
|
@@ -942,20 +941,20 @@ const wn = ["state", "mousedown", "selectItem"], Cn = (e, { onUnmounted: t, reac
|
|
|
942
941
|
designConfig: f,
|
|
943
942
|
vm: c
|
|
944
943
|
}) => {
|
|
945
|
-
const { open: d, close:
|
|
944
|
+
const { open: d, close: m } = s;
|
|
946
945
|
Object.assign(t, {
|
|
947
946
|
state: n,
|
|
948
947
|
open: d,
|
|
949
|
-
close:
|
|
948
|
+
close: m,
|
|
950
949
|
broadcast: u,
|
|
951
|
-
handleCancel:
|
|
950
|
+
handleCancel: _n({ api: t, emit: e }),
|
|
952
951
|
handleConfirm: Ln({ api: t, emit: e }),
|
|
953
|
-
updatePopper:
|
|
954
|
-
handleWrapperClick:
|
|
952
|
+
updatePopper: An({ api: t, constants: a }),
|
|
953
|
+
handleWrapperClick: kn({ api: t, props: l, state: n }),
|
|
955
954
|
useMouseEventDown: Dn({ state: n }),
|
|
956
955
|
useMouseEventUp: Tn({ state: n }),
|
|
957
956
|
hide: En({ api: t, emit: e, state: n, props: l }),
|
|
958
|
-
handleClose:
|
|
957
|
+
handleClose: Bn({ api: t, constants: a, emit: e, parent: o, props: l }),
|
|
959
958
|
watchVisible: Mn({
|
|
960
959
|
api: t,
|
|
961
960
|
constants: a,
|
|
@@ -970,8 +969,8 @@ const wn = ["state", "mousedown", "selectItem"], Cn = (e, { onUnmounted: t, reac
|
|
|
970
969
|
mounted: $n({ api: t, parent: o, props: l }),
|
|
971
970
|
unMounted: Vn({ api: t, parent: o, props: l }),
|
|
972
971
|
computedAnimationName: On({ constants: a, props: l }),
|
|
973
|
-
afterEnter:
|
|
974
|
-
afterLeave:
|
|
972
|
+
afterEnter: Pn(e),
|
|
973
|
+
afterLeave: zn(e),
|
|
975
974
|
hideScrollbar: Hn(i),
|
|
976
975
|
showScrollbar: Fn(i),
|
|
977
976
|
handleDrag: xn({ parent: o, props: l, state: n, emit: e, vm: c }),
|
|
@@ -992,14 +991,14 @@ const wn = ["state", "mousedown", "selectItem"], Cn = (e, { onUnmounted: t, reac
|
|
|
992
991
|
emit: f,
|
|
993
992
|
constants: c,
|
|
994
993
|
nextTick: d,
|
|
995
|
-
mode:
|
|
994
|
+
mode: m,
|
|
996
995
|
broadcast: C,
|
|
997
|
-
designConfig:
|
|
996
|
+
designConfig: I,
|
|
998
997
|
useBreakpoint: y
|
|
999
998
|
}) => {
|
|
1000
|
-
const S = {}, V = c.SCROLL_LOCK_CLASS(
|
|
1001
|
-
let v =
|
|
1002
|
-
const
|
|
999
|
+
const S = {}, V = c.SCROLL_LOCK_CLASS(m);
|
|
1000
|
+
let v = jn({ reactive: i, computed: t, api: S, emitter: r, props: e, useBreakpoint: y });
|
|
1001
|
+
const A = He({
|
|
1003
1002
|
api: S,
|
|
1004
1003
|
nextTick: d,
|
|
1005
1004
|
onBeforeUnmount: n,
|
|
@@ -1017,13 +1016,13 @@ const wn = ["state", "mousedown", "selectItem"], Cn = (e, { onUnmounted: t, reac
|
|
|
1017
1016
|
props: e,
|
|
1018
1017
|
emit: f,
|
|
1019
1018
|
constants: c,
|
|
1020
|
-
usePopups:
|
|
1019
|
+
usePopups: A,
|
|
1021
1020
|
lockScrollClass: V,
|
|
1022
1021
|
nextTick: d,
|
|
1023
1022
|
vm: s,
|
|
1024
1023
|
broadcast: C,
|
|
1025
|
-
designConfig:
|
|
1026
|
-
}), v =
|
|
1024
|
+
designConfig: I
|
|
1025
|
+
}), v = Rn({ reactive: i, state: v, toRefs: l, usePopups: A }), Kn({ watch: a, state: v, api: S, props: e }), o(S.mounted), n(S.unMounted), S;
|
|
1027
1026
|
};
|
|
1028
1027
|
function Yn(e, t) {
|
|
1029
1028
|
var n = typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
|
|
@@ -1056,7 +1055,7 @@ var Zn = function(t, n) {
|
|
|
1056
1055
|
o[s] = r;
|
|
1057
1056
|
}
|
|
1058
1057
|
return o;
|
|
1059
|
-
}, qn =
|
|
1058
|
+
}, qn = j({
|
|
1060
1059
|
components: {
|
|
1061
1060
|
IconClose: ve(),
|
|
1062
1061
|
IconFullscreen: ft(),
|
|
@@ -1108,15 +1107,15 @@ var Zn = function(t, n) {
|
|
|
1108
1107
|
class: "tiny-dialog-box__footer"
|
|
1109
1108
|
};
|
|
1110
1109
|
function lo(e, t, n, o, l, i) {
|
|
1111
|
-
var a =
|
|
1112
|
-
return p(),
|
|
1110
|
+
var a = B("icon-fullscreen"), s = B("icon-minscreen"), r = B("icon-close");
|
|
1111
|
+
return p(), M(q, {
|
|
1113
1112
|
duration: e.noAnimation ? 0 : void 0,
|
|
1114
1113
|
name: e.state.animationName,
|
|
1115
1114
|
onAfterEnter: e.afterEnter,
|
|
1116
1115
|
onAfterLeave: e.afterLeave,
|
|
1117
1116
|
persisted: ""
|
|
1118
1117
|
}, {
|
|
1119
|
-
default:
|
|
1118
|
+
default: k(function() {
|
|
1120
1119
|
return [Q(b(
|
|
1121
1120
|
"div",
|
|
1122
1121
|
{
|
|
@@ -1134,19 +1133,19 @@ function lo(e, t, n, o, l, i) {
|
|
|
1134
1133
|
[L(q, {
|
|
1135
1134
|
name: e.dialogTransition
|
|
1136
1135
|
}, {
|
|
1137
|
-
default:
|
|
1138
|
-
return [!e.destroyOnClose || e.visible ? Q((p(),
|
|
1136
|
+
default: k(function() {
|
|
1137
|
+
return [!e.destroyOnClose || e.visible ? Q((p(), g("div", {
|
|
1139
1138
|
ref: "dialog",
|
|
1140
1139
|
class: W([[{
|
|
1141
1140
|
"is-fullscreen": e.state.isFull,
|
|
1142
1141
|
"is-center": e.center,
|
|
1143
1142
|
"is-right-slide": e.rightSlide
|
|
1144
1143
|
}], "tiny-dialog-box"]),
|
|
1145
|
-
style:
|
|
1144
|
+
style: Be(e.state.style),
|
|
1146
1145
|
"data-tag": "tiny-dialog-box",
|
|
1147
1146
|
"data-dialog-box-draggable": e.draggable,
|
|
1148
1147
|
key: e.state.key
|
|
1149
|
-
}, [e.showHeader ? (p(),
|
|
1148
|
+
}, [e.showHeader ? (p(), g(
|
|
1150
1149
|
"div",
|
|
1151
1150
|
{
|
|
1152
1151
|
key: 0,
|
|
@@ -1164,7 +1163,7 @@ function lo(e, t, n, o, l, i) {
|
|
|
1164
1163
|
1
|
|
1165
1164
|
/* TEXT */
|
|
1166
1165
|
)];
|
|
1167
|
-
}), b("div", to, [e.resize && !e.state.isFull ? (p(),
|
|
1166
|
+
}), b("div", to, [e.resize && !e.state.isFull ? (p(), g("button", {
|
|
1168
1167
|
key: 0,
|
|
1169
1168
|
type: "button",
|
|
1170
1169
|
class: "tiny-dialog-box__headerbtn",
|
|
@@ -1174,7 +1173,7 @@ function lo(e, t, n, o, l, i) {
|
|
|
1174
1173
|
})
|
|
1175
1174
|
}, [L(a, {
|
|
1176
1175
|
class: "tiny-svg-size tiny-dialog-box__resize"
|
|
1177
|
-
})])) : h("v-if", !0), e.resize && e.state.isFull ? (p(),
|
|
1176
|
+
})])) : h("v-if", !0), e.resize && e.state.isFull ? (p(), g("button", {
|
|
1178
1177
|
key: 1,
|
|
1179
1178
|
type: "button",
|
|
1180
1179
|
class: "tiny-dialog-box__headerbtn",
|
|
@@ -1184,7 +1183,7 @@ function lo(e, t, n, o, l, i) {
|
|
|
1184
1183
|
})
|
|
1185
1184
|
}, [L(s, {
|
|
1186
1185
|
class: "tiny-svg-size tiny-dialog-box__resize"
|
|
1187
|
-
})])) : h("v-if", !0), e.showClose ? (p(),
|
|
1186
|
+
})])) : h("v-if", !0), e.showClose ? (p(), g("button", {
|
|
1188
1187
|
key: 2,
|
|
1189
1188
|
type: "button",
|
|
1190
1189
|
class: "tiny-dialog-box__headerbtn",
|
|
@@ -1197,7 +1196,7 @@ function lo(e, t, n, o, l, i) {
|
|
|
1197
1196
|
})])) : h("v-if", !0)])],
|
|
1198
1197
|
544
|
|
1199
1198
|
/* NEED_HYDRATION, NEED_PATCH */
|
|
1200
|
-
)) : h("v-if", !0), b("div", no, [D(e.$slots, "default")]), e.slots.footer ? (p(),
|
|
1199
|
+
)) : h("v-if", !0), b("div", no, [D(e.$slots, "default")]), e.slots.footer ? (p(), g(
|
|
1201
1200
|
"div",
|
|
1202
1201
|
oo,
|
|
1203
1202
|
[D(e.$slots, "footer", {
|
|
@@ -1393,7 +1392,7 @@ var io = function(t) {
|
|
|
1393
1392
|
return {};
|
|
1394
1393
|
}
|
|
1395
1394
|
}
|
|
1396
|
-
}),
|
|
1395
|
+
}), N = j({
|
|
1397
1396
|
name: H + "DialogBox",
|
|
1398
1397
|
model: {
|
|
1399
1398
|
prop: "visible",
|
|
@@ -1408,10 +1407,10 @@ var io = function(t) {
|
|
|
1408
1407
|
});
|
|
1409
1408
|
}
|
|
1410
1409
|
}), so = "3.undefined";
|
|
1411
|
-
|
|
1412
|
-
e.component(
|
|
1410
|
+
N.install = function(e) {
|
|
1411
|
+
e.component(N.name, N);
|
|
1413
1412
|
};
|
|
1414
|
-
|
|
1413
|
+
N.version = so;
|
|
1415
1414
|
function uo(e, t) {
|
|
1416
1415
|
var n = typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
|
|
1417
1416
|
if (n) return (n = n.call(e)).next.bind(n);
|
|
@@ -1443,7 +1442,7 @@ var Ce = function(t, n) {
|
|
|
1443
1442
|
o[s] = r;
|
|
1444
1443
|
}
|
|
1445
1444
|
return o;
|
|
1446
|
-
}, fo =
|
|
1445
|
+
}, fo = j({
|
|
1447
1446
|
name: H + "TallStorage",
|
|
1448
1447
|
inheritAttrs: !1,
|
|
1449
1448
|
props: {
|
|
@@ -1462,7 +1461,7 @@ var Ce = function(t, n) {
|
|
|
1462
1461
|
class: "tiny-storage-list-style"
|
|
1463
1462
|
}, yo = ["onClick"];
|
|
1464
1463
|
function mo(e, t, n, o, l, i) {
|
|
1465
|
-
return p(),
|
|
1464
|
+
return p(), g(
|
|
1466
1465
|
"div",
|
|
1467
1466
|
{
|
|
1468
1467
|
class: "tiny-tall-storage",
|
|
@@ -1478,11 +1477,11 @@ function mo(e, t, n, o, l, i) {
|
|
|
1478
1477
|
}, ["enter"])),
|
|
1479
1478
|
class: "tiny-storage-list"
|
|
1480
1479
|
},
|
|
1481
|
-
[(p(!0),
|
|
1480
|
+
[(p(!0), g(
|
|
1482
1481
|
te,
|
|
1483
1482
|
null,
|
|
1484
|
-
|
|
1485
|
-
return p(),
|
|
1483
|
+
_e(e.localstorageData, function(a) {
|
|
1484
|
+
return p(), g("li", {
|
|
1486
1485
|
key: a,
|
|
1487
1486
|
class: W(["tiny-storage-item", [e.state.hoverValue === a ? "item-hover" : ""]]),
|
|
1488
1487
|
onClick: function(r) {
|
|
@@ -1500,7 +1499,7 @@ function mo(e, t, n, o, l, i) {
|
|
|
1500
1499
|
/* NEED_HYDRATION */
|
|
1501
1500
|
);
|
|
1502
1501
|
}
|
|
1503
|
-
var go = /* @__PURE__ */ Ce(fo, [["render", mo]]), ho =
|
|
1502
|
+
var go = /* @__PURE__ */ Ce(fo, [["render", mo]]), ho = j({
|
|
1504
1503
|
inheritAttrs: !1,
|
|
1505
1504
|
// 勿删,兼容灵雀特殊场景,MR#1861
|
|
1506
1505
|
emits: ["update:modelValue", "change", "clear", "focus", "blur", "keyup", "keydown", "paste", "mouseenter", "mouseleave", "click", "input"],
|
|
@@ -1512,9 +1511,9 @@ var go = /* @__PURE__ */ Ce(fo, [["render", mo]]), ho = R({
|
|
|
1512
1511
|
IconEyeopen: at(),
|
|
1513
1512
|
IconEyeclose: Qe(),
|
|
1514
1513
|
TinyTallStorage: go,
|
|
1515
|
-
TinyTooltip:
|
|
1516
|
-
TinyButton:
|
|
1517
|
-
TinyDialogBox:
|
|
1514
|
+
TinyTooltip: Ae,
|
|
1515
|
+
TinyButton: Pe,
|
|
1516
|
+
TinyDialogBox: N
|
|
1518
1517
|
},
|
|
1519
1518
|
props: [].concat(me, ["name", "size", "form", "type", "mask", "label", "modelValue", "height", "resize", "counter", "autosize", "disabled", "readonly", "tabindex", "clearable", "suffixIcon", "prefixIcon", "autocomplete", "showPassword", "memorySpace", "validateEvent", "showWordLimit", "displayOnly", "displayOnlyContent", "frontClearIcon", "showEmptyValue", "hoverExpand", "popupMore", "showTooltip", "inputBoxType"]),
|
|
1520
1519
|
setup: function(t, n) {
|
|
@@ -1557,9 +1556,9 @@ var go = /* @__PURE__ */ Ce(fo, [["render", mo]]), ho = R({
|
|
|
1557
1556
|
class: "tiny-input__count"
|
|
1558
1557
|
}, To = {
|
|
1559
1558
|
class: "tiny-input__count-inner"
|
|
1560
|
-
}, Bo = {
|
|
1561
|
-
class: "tiny-input__count-text-length"
|
|
1562
1559
|
}, ko = {
|
|
1560
|
+
class: "tiny-input__count-text-length"
|
|
1561
|
+
}, Bo = {
|
|
1563
1562
|
class: "tiny-input__count-upper-limit"
|
|
1564
1563
|
}, Eo = {
|
|
1565
1564
|
key: 3,
|
|
@@ -1569,15 +1568,15 @@ var go = /* @__PURE__ */ Ce(fo, [["render", mo]]), ho = R({
|
|
|
1569
1568
|
key: 4,
|
|
1570
1569
|
class: "tiny-input-group__panel",
|
|
1571
1570
|
ref: "panel"
|
|
1572
|
-
}, Ao = {
|
|
1573
|
-
class: "tiny-textarea-display-only__wrap"
|
|
1574
1571
|
}, _o = {
|
|
1572
|
+
class: "tiny-textarea-display-only__wrap"
|
|
1573
|
+
}, Ao = {
|
|
1575
1574
|
ref: "textBox",
|
|
1576
1575
|
class: "tiny-textarea-display-only__content text-box"
|
|
1577
|
-
},
|
|
1576
|
+
}, Po = ["tabindex", "disabled", "readonly", "unselectable", "autocomplete", "aria-label"], zo = {
|
|
1578
1577
|
key: 2,
|
|
1579
1578
|
class: "tiny-input__count"
|
|
1580
|
-
},
|
|
1579
|
+
}, No = {
|
|
1581
1580
|
class: "tiny-input__count-inner"
|
|
1582
1581
|
}, xo = {
|
|
1583
1582
|
class: "tiny-input__count-text-length"
|
|
@@ -1585,8 +1584,8 @@ var go = /* @__PURE__ */ Ce(fo, [["render", mo]]), ho = R({
|
|
|
1585
1584
|
class: "tiny-input__count-upper-limit"
|
|
1586
1585
|
};
|
|
1587
1586
|
function Ho(e, t, n, o, l, i) {
|
|
1588
|
-
var a =
|
|
1589
|
-
return p(),
|
|
1587
|
+
var a = B("tiny-tooltip"), s = B("tiny-tall-storage"), r = B("icon-close"), u = B("tiny-button"), f = B("tiny-dialog-box"), c = Ee("clickoutside");
|
|
1588
|
+
return p(), g(
|
|
1590
1589
|
"div",
|
|
1591
1590
|
K(e.a(e.$attrs, ["class"]), {
|
|
1592
1591
|
class: [e.$attrs.class, e.type === "textarea" ? "tiny-textarea" : "tiny-input", e.state.inputSize ? "tiny-input-" + e.state.inputSize : "", {
|
|
@@ -1611,18 +1610,18 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1611
1610
|
return e.$emit("click", d);
|
|
1612
1611
|
})
|
|
1613
1612
|
}),
|
|
1614
|
-
[e.type !== "textarea" ? (p(),
|
|
1613
|
+
[e.type !== "textarea" ? (p(), g(
|
|
1615
1614
|
te,
|
|
1616
1615
|
{
|
|
1617
1616
|
key: 0
|
|
1618
1617
|
},
|
|
1619
|
-
[e.slots.prepend && !e.state.isDisplayOnly ? (p(),
|
|
1618
|
+
[e.slots.prepend && !e.state.isDisplayOnly ? (p(), g(
|
|
1620
1619
|
"div",
|
|
1621
1620
|
vo,
|
|
1622
1621
|
[D(e.$slots, "prepend")],
|
|
1623
1622
|
512
|
|
1624
1623
|
/* NEED_PATCH */
|
|
1625
|
-
)) : h("v-if", !0), b("span", bo, [e.state.isDisplayOnly ? (p(),
|
|
1624
|
+
)) : h("v-if", !0), b("span", bo, [e.state.isDisplayOnly ? (p(), M(a, {
|
|
1626
1625
|
key: 0,
|
|
1627
1626
|
disabled: !e.showTooltip,
|
|
1628
1627
|
effect: "light",
|
|
@@ -1631,24 +1630,24 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1631
1630
|
"popper-class": e.state.tooltipConfig.popperClass || "",
|
|
1632
1631
|
onMouseenter: e.handleEnterDisplayOnlyContent
|
|
1633
1632
|
}, {
|
|
1634
|
-
default:
|
|
1635
|
-
return [e.type === "password" ? (p(),
|
|
1633
|
+
default: k(function() {
|
|
1634
|
+
return [e.type === "password" ? (p(), g(
|
|
1636
1635
|
"span",
|
|
1637
1636
|
So,
|
|
1638
1637
|
O(e.state.hiddenPassword),
|
|
1639
1638
|
1
|
|
1640
1639
|
/* TEXT */
|
|
1641
|
-
)) : e.mask ? (p(),
|
|
1640
|
+
)) : e.mask ? (p(), g("span", wo, [b(
|
|
1642
1641
|
"span",
|
|
1643
1642
|
Co,
|
|
1644
1643
|
O(e.state.displayedMaskValue),
|
|
1645
1644
|
1
|
|
1646
1645
|
/* TEXT */
|
|
1647
|
-
), (p(),
|
|
1646
|
+
), (p(), M(z(e.state.maskValueVisible ? "icon-eyeopen" : "icon-eyeclose"), {
|
|
1648
1647
|
onClick: t[0] || (t[0] = function(d) {
|
|
1649
1648
|
return e.state.maskValueVisible = !e.state.maskValueVisible;
|
|
1650
1649
|
})
|
|
1651
|
-
}))])) : (p(),
|
|
1650
|
+
}))])) : (p(), g(
|
|
1652
1651
|
"span",
|
|
1653
1652
|
Oo,
|
|
1654
1653
|
O(e.state.displayOnlyText),
|
|
@@ -1658,7 +1657,7 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1658
1657
|
}),
|
|
1659
1658
|
_: 1
|
|
1660
1659
|
/* STABLE */
|
|
1661
|
-
}, 8, ["disabled", "content", "popper-class", "onMouseenter"])) : h("v-if", !0), e.type !== "textarea" ? (p(),
|
|
1660
|
+
}, 8, ["disabled", "content", "popper-class", "onMouseenter"])) : h("v-if", !0), e.type !== "textarea" ? (p(), g("input", K({
|
|
1662
1661
|
key: 1,
|
|
1663
1662
|
ref: "input",
|
|
1664
1663
|
name: e.name,
|
|
@@ -1702,16 +1701,16 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1702
1701
|
onPaste: t[10] || (t[10] = function(d) {
|
|
1703
1702
|
return e.$emit("paste", d);
|
|
1704
1703
|
})
|
|
1705
|
-
}), null, 16, Io)) : h("v-if", !0)]), e.isMemoryStorage ? (p(),
|
|
1704
|
+
}), null, 16, Io)) : h("v-if", !0)]), e.isMemoryStorage ? (p(), M(s, {
|
|
1706
1705
|
key: 1,
|
|
1707
1706
|
name: e.name,
|
|
1708
1707
|
"localstorage-data": e.storageData,
|
|
1709
1708
|
"is-memory-storage": e.isMemoryStorage,
|
|
1710
1709
|
onSelected: e.selectedMemory
|
|
1711
|
-
}, null, 8, ["name", "localstorage-data", "is-memory-storage", "onSelected"])) : h("v-if", !0), !e.state.isDisplayOnly && (e.slots.prefix || e.prefixIcon) ? (p(),
|
|
1710
|
+
}, null, 8, ["name", "localstorage-data", "is-memory-storage", "onSelected"])) : h("v-if", !0), !e.state.isDisplayOnly && (e.slots.prefix || e.prefixIcon) ? (p(), g(
|
|
1712
1711
|
"span",
|
|
1713
1712
|
Mo,
|
|
1714
|
-
[D(e.$slots, "prefix"), e.prefixIcon ? (p(),
|
|
1713
|
+
[D(e.$slots, "prefix"), e.prefixIcon ? (p(), M(z(e.prefixIcon), {
|
|
1715
1714
|
key: 0,
|
|
1716
1715
|
class: "tiny-svg-size tiny-input__icon"
|
|
1717
1716
|
})) : h("v-if", !0)],
|
|
@@ -1720,56 +1719,56 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1720
1719
|
)) : h("v-if", !0), b("div", null, [L(q, {
|
|
1721
1720
|
name: "tiny-transition-icon-out-in"
|
|
1722
1721
|
}, {
|
|
1723
|
-
default:
|
|
1724
|
-
return [!e.state.isDisplayOnly && e.getSuffixVisible() ? (p(),
|
|
1722
|
+
default: k(function() {
|
|
1723
|
+
return [!e.state.isDisplayOnly && e.getSuffixVisible() ? (p(), g(
|
|
1725
1724
|
"span",
|
|
1726
1725
|
$o,
|
|
1727
|
-
[b("span", Vo, [e.frontClearIcon && e.state.showClear ? (p(),
|
|
1726
|
+
[b("span", Vo, [e.frontClearIcon && e.state.showClear ? (p(), M(r, {
|
|
1728
1727
|
key: 0,
|
|
1729
1728
|
class: "tiny-svg-size tiny-input__icon tiny-input__clear",
|
|
1730
1729
|
onMousedown: t[11] || (t[11] = ee(function() {
|
|
1731
1730
|
}, ["prevent"])),
|
|
1732
1731
|
onClick: e.clear
|
|
1733
|
-
}, null, 8, ["onClick"])) : h("v-if", !0), !e.state.showClear || !e.state.showPwdVisible || !e.state.isWordLimitVisible ? (p(),
|
|
1732
|
+
}, null, 8, ["onClick"])) : h("v-if", !0), !e.state.showClear || !e.state.showPwdVisible || !e.state.isWordLimitVisible ? (p(), g(
|
|
1734
1733
|
te,
|
|
1735
1734
|
{
|
|
1736
1735
|
key: 1
|
|
1737
1736
|
},
|
|
1738
|
-
[D(e.$slots, "suffix"), e.suffixIcon ? (p(),
|
|
1737
|
+
[D(e.$slots, "suffix"), e.suffixIcon ? (p(), M(z(e.suffixIcon), {
|
|
1739
1738
|
key: 0,
|
|
1740
1739
|
class: "tiny-svg-size tiny-input__icon"
|
|
1741
1740
|
})) : h("v-if", !0)],
|
|
1742
1741
|
64
|
|
1743
1742
|
/* STABLE_FRAGMENT */
|
|
1744
|
-
)) : h("v-if", !0), !e.frontClearIcon && e.state.showClear ? (p(),
|
|
1743
|
+
)) : h("v-if", !0), !e.frontClearIcon && e.state.showClear ? (p(), M(r, {
|
|
1745
1744
|
key: 2,
|
|
1746
1745
|
class: "tiny-svg-size tiny-input__icon tiny-input__clear",
|
|
1747
1746
|
onMousedown: t[12] || (t[12] = ee(function() {
|
|
1748
1747
|
}, ["prevent"])),
|
|
1749
1748
|
onClick: e.clear
|
|
1750
|
-
}, null, 8, ["onClick"])) : h("v-if", !0), e.showPassword ? (p(),
|
|
1749
|
+
}, null, 8, ["onClick"])) : h("v-if", !0), e.showPassword ? (p(), M(z(e.state.passwordVisible ? "icon-eyeopen" : "icon-eyeclose"), {
|
|
1751
1750
|
key: 3,
|
|
1752
1751
|
class: "tiny-svg-size tiny-input__icon",
|
|
1753
1752
|
onClick: e.handlePasswordVisible
|
|
1754
|
-
}, null, 8, ["onClick"])) : h("v-if", !0), e.mask && e.state.inputDisabled ? (p(),
|
|
1753
|
+
}, null, 8, ["onClick"])) : h("v-if", !0), e.mask && e.state.inputDisabled ? (p(), M(z(e.state.maskValueVisible ? "icon-eyeopen" : "icon-eyeclose"), {
|
|
1755
1754
|
key: 4,
|
|
1756
1755
|
class: "tiny-svg-size tiny-input__icon",
|
|
1757
1756
|
onClick: t[13] || (t[13] = function(d) {
|
|
1758
1757
|
return e.state.maskValueVisible = !e.state.maskValueVisible;
|
|
1759
1758
|
})
|
|
1760
|
-
})) : h("v-if", !0), e.state.isWordLimitVisible ? (p(),
|
|
1759
|
+
})) : h("v-if", !0), e.state.isWordLimitVisible ? (p(), g("span", Do, [b("span", To, [b(
|
|
1761
1760
|
"span",
|
|
1762
|
-
|
|
1761
|
+
ko,
|
|
1763
1762
|
O(e.state.showWordLimit ? "" + e.state.textLength : ""),
|
|
1764
1763
|
1
|
|
1765
1764
|
/* TEXT */
|
|
1766
1765
|
), b(
|
|
1767
1766
|
"span",
|
|
1768
|
-
|
|
1767
|
+
Bo,
|
|
1769
1768
|
O(e.state.showWordLimit ? "/" + e.state.upperLimit : e.state.textLength),
|
|
1770
1769
|
1
|
|
1771
1770
|
/* TEXT */
|
|
1772
|
-
)])])) : h("v-if", !0)]), e.state.validateState ? (p(),
|
|
1771
|
+
)])])) : h("v-if", !0)]), e.state.validateState ? (p(), g(
|
|
1773
1772
|
"i",
|
|
1774
1773
|
{
|
|
1775
1774
|
key: 0,
|
|
@@ -1785,13 +1784,13 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1785
1784
|
}),
|
|
1786
1785
|
_: 3
|
|
1787
1786
|
/* FORWARDED */
|
|
1788
|
-
})]), e.slots.append && !e.state.isDisplayOnly ? (p(),
|
|
1787
|
+
})]), e.slots.append && !e.state.isDisplayOnly ? (p(), g(
|
|
1789
1788
|
"div",
|
|
1790
1789
|
Eo,
|
|
1791
1790
|
[D(e.$slots, "append")],
|
|
1792
1791
|
512
|
|
1793
1792
|
/* NEED_PATCH */
|
|
1794
|
-
)) : h("v-if", !0), e.slots.panel && !e.state.isDisplayOnly ? (p(),
|
|
1793
|
+
)) : h("v-if", !0), e.slots.panel && !e.state.isDisplayOnly ? (p(), g(
|
|
1795
1794
|
"div",
|
|
1796
1795
|
Lo,
|
|
1797
1796
|
[D(e.$slots, "panel")],
|
|
@@ -1800,13 +1799,13 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1800
1799
|
)) : h("v-if", !0)],
|
|
1801
1800
|
64
|
|
1802
1801
|
/* STABLE_FRAGMENT */
|
|
1803
|
-
)) : (p(),
|
|
1802
|
+
)) : (p(), g(
|
|
1804
1803
|
"span",
|
|
1805
1804
|
{
|
|
1806
1805
|
key: 1,
|
|
1807
1806
|
class: W(["tiny-textarea-display-only", e.hoverExpand && "tiny-textarea__inner-con"])
|
|
1808
1807
|
},
|
|
1809
|
-
[e.state.isDisplayOnly ? (p(),
|
|
1808
|
+
[e.state.isDisplayOnly ? (p(), M(a, {
|
|
1810
1809
|
key: 0,
|
|
1811
1810
|
disabled: !e.showTooltip,
|
|
1812
1811
|
pre: "",
|
|
@@ -1818,11 +1817,11 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1818
1817
|
return e.handleEnterDisplayOnlyContent(d, "textarea");
|
|
1819
1818
|
})
|
|
1820
1819
|
}, {
|
|
1821
|
-
default:
|
|
1822
|
-
return [b("div",
|
|
1820
|
+
default: k(function() {
|
|
1821
|
+
return [b("div", _o, [b(
|
|
1823
1822
|
"span",
|
|
1824
|
-
|
|
1825
|
-
[e.state.showMoreBtn ? (p(),
|
|
1823
|
+
Ao,
|
|
1824
|
+
[e.state.showMoreBtn ? (p(), g(
|
|
1826
1825
|
"span",
|
|
1827
1826
|
{
|
|
1828
1827
|
key: 0,
|
|
@@ -1845,7 +1844,7 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1845
1844
|
}),
|
|
1846
1845
|
_: 1
|
|
1847
1846
|
/* STABLE */
|
|
1848
|
-
}, 8, ["disabled", "content", "popper-class"])) : h("v-if", !0), e.state.isDisplayOnly && e.popupMore ? (p(),
|
|
1847
|
+
}, 8, ["disabled", "content", "popper-class"])) : h("v-if", !0), e.state.isDisplayOnly && e.popupMore ? (p(), M(f, {
|
|
1849
1848
|
key: 1,
|
|
1850
1849
|
title: e.t("ui.input.detail"),
|
|
1851
1850
|
visible: e.state.showDisplayOnlyBox,
|
|
@@ -1854,13 +1853,13 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1854
1853
|
return e.state.showDisplayOnlyBox = d;
|
|
1855
1854
|
})
|
|
1856
1855
|
}, {
|
|
1857
|
-
footer:
|
|
1856
|
+
footer: k(function() {
|
|
1858
1857
|
return [L(u, {
|
|
1859
1858
|
onClick: t[16] || (t[16] = function(d) {
|
|
1860
1859
|
return e.state.showDisplayOnlyBox = !1;
|
|
1861
1860
|
})
|
|
1862
1861
|
}, {
|
|
1863
|
-
default:
|
|
1862
|
+
default: k(function() {
|
|
1864
1863
|
return [X(
|
|
1865
1864
|
O(e.t("ui.input.close")),
|
|
1866
1865
|
1
|
|
@@ -1871,7 +1870,7 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1871
1870
|
/* STABLE */
|
|
1872
1871
|
})];
|
|
1873
1872
|
}),
|
|
1874
|
-
default:
|
|
1873
|
+
default: k(function() {
|
|
1875
1874
|
return [b(
|
|
1876
1875
|
"pre",
|
|
1877
1876
|
null,
|
|
@@ -1882,7 +1881,7 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1882
1881
|
}),
|
|
1883
1882
|
_: 1
|
|
1884
1883
|
/* STABLE */
|
|
1885
|
-
}, 8, ["title", "visible"])) : h("v-if", !0), Q((p(),
|
|
1884
|
+
}, 8, ["title", "visible"])) : h("v-if", !0), Q((p(), g("textarea", K({
|
|
1886
1885
|
ref: "textarea"
|
|
1887
1886
|
}, e.a(e.$attrs, ["type", "class", "style", "id"]), {
|
|
1888
1887
|
tabindex: e.tabindex,
|
|
@@ -1936,14 +1935,14 @@ function Ho(e, t, n, o, l, i) {
|
|
|
1936
1935
|
return e.$emit("paste", d);
|
|
1937
1936
|
})
|
|
1938
1937
|
}), [X(`
|
|
1939
|
-
`)], 16,
|
|
1938
|
+
`)], 16, Po)), [[c, function() {
|
|
1940
1939
|
return e.handleTextareaMouseUp(!0);
|
|
1941
1940
|
}, void 0, {
|
|
1942
1941
|
mouseup: !0
|
|
1943
1942
|
}]])],
|
|
1944
1943
|
2
|
|
1945
1944
|
/* CLASS */
|
|
1946
|
-
)), e.state.isWordLimitVisible && e.type === "textarea" ? (p(),
|
|
1945
|
+
)), e.state.isWordLimitVisible && e.type === "textarea" ? (p(), g("span", zo, [b("span", No, [b(
|
|
1947
1946
|
"span",
|
|
1948
1947
|
xo,
|
|
1949
1948
|
O(e.state.showWordLimit ? "" + e.state.textLength : ""),
|
|
@@ -1995,7 +1994,7 @@ var Wo = function(t) {
|
|
|
1995
1994
|
},
|
|
1996
1995
|
MASKSYMBOL: "******",
|
|
1997
1996
|
TEXTAREA_HEIGHT_MOBILE: 108
|
|
1998
|
-
},
|
|
1997
|
+
}, jo = oe({}, he, {
|
|
1999
1998
|
_constants: {
|
|
2000
1999
|
type: Object,
|
|
2001
2000
|
default: function() {
|
|
@@ -2132,10 +2131,10 @@ var Wo = function(t) {
|
|
|
2132
2131
|
return ["normal", "underline"].includes(t);
|
|
2133
2132
|
}
|
|
2134
2133
|
}
|
|
2135
|
-
}), x =
|
|
2134
|
+
}), x = j({
|
|
2136
2135
|
name: H + "Input",
|
|
2137
2136
|
inheritAttrs: !1,
|
|
2138
|
-
props:
|
|
2137
|
+
props: jo,
|
|
2139
2138
|
setup: function(t, n) {
|
|
2140
2139
|
return ge({
|
|
2141
2140
|
props: t,
|
|
@@ -2143,7 +2142,7 @@ var Wo = function(t) {
|
|
|
2143
2142
|
template: Wo
|
|
2144
2143
|
});
|
|
2145
2144
|
}
|
|
2146
|
-
}),
|
|
2145
|
+
}), Ro = "3.undefined";
|
|
2147
2146
|
x.model = {
|
|
2148
2147
|
prop: "modelValue",
|
|
2149
2148
|
event: "update:modelValue"
|
|
@@ -2151,7 +2150,7 @@ x.model = {
|
|
|
2151
2150
|
x.install = function(e) {
|
|
2152
2151
|
e.component(x.name, x);
|
|
2153
2152
|
};
|
|
2154
|
-
x.version =
|
|
2153
|
+
x.version = Ro;
|
|
2155
2154
|
export {
|
|
2156
2155
|
x as I
|
|
2157
2156
|
};
|