@opentinyvue/vue-input 2.22.0 → 3.22.0
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/lib/index.js +1 -1
- package/lib/mobile-first.js +494 -344
- package/lib/pc.js +538 -365
- package/lib/tall-storage.js +73 -68
- package/package.json +7 -7
- package/src/index.d.ts +406 -2
- package/src/mobile-first.vue.d.ts +125 -1
- package/src/pc.vue.d.ts +137 -1
- package/src/tall-storage.vue.d.ts +18 -1
|
@@ -1,2 +1,126 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
name?: any;
|
|
3
|
+
label?: any;
|
|
4
|
+
disabled?: any;
|
|
5
|
+
height?: any;
|
|
6
|
+
size?: any;
|
|
7
|
+
resize?: any;
|
|
8
|
+
type?: any;
|
|
9
|
+
form?: any;
|
|
10
|
+
mask?: any;
|
|
11
|
+
customClass?: any;
|
|
12
|
+
tiny_mode?: any;
|
|
13
|
+
tiny_mode_root?: any;
|
|
14
|
+
tiny_template?: any;
|
|
15
|
+
tiny_renderless?: any;
|
|
16
|
+
_constants?: any;
|
|
17
|
+
tiny_theme?: any;
|
|
18
|
+
tiny_chart_theme?: any;
|
|
19
|
+
modelValue?: any;
|
|
20
|
+
tabindex?: any;
|
|
21
|
+
suffixIcon?: any;
|
|
22
|
+
readonly?: any;
|
|
23
|
+
hoverExpand?: any;
|
|
24
|
+
prefixIcon?: any;
|
|
25
|
+
counter?: any;
|
|
26
|
+
autosize?: any;
|
|
27
|
+
clearable?: any;
|
|
28
|
+
autocomplete?: any;
|
|
29
|
+
showPassword?: any;
|
|
30
|
+
showWordLimit?: any;
|
|
31
|
+
validateEvent?: any;
|
|
32
|
+
popupMore?: any;
|
|
33
|
+
displayOnly?: any;
|
|
34
|
+
displayOnlyContent?: any;
|
|
35
|
+
frontClearIcon?: any;
|
|
36
|
+
showEmptyValue?: any;
|
|
37
|
+
showTooltip?: any;
|
|
38
|
+
}>, any, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("input" | "change" | "keyup" | "keydown" | "blur" | "click" | "focus" | "mouseenter" | "mouseleave" | "paste" | "clear" | "update:modelValue")[], "input" | "change" | "keyup" | "keydown" | "blur" | "click" | "focus" | "mouseenter" | "mouseleave" | "paste" | "clear" | "update:modelValue", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
39
|
+
name?: any;
|
|
40
|
+
label?: any;
|
|
41
|
+
disabled?: any;
|
|
42
|
+
height?: any;
|
|
43
|
+
size?: any;
|
|
44
|
+
resize?: any;
|
|
45
|
+
type?: any;
|
|
46
|
+
form?: any;
|
|
47
|
+
mask?: any;
|
|
48
|
+
customClass?: any;
|
|
49
|
+
tiny_mode?: any;
|
|
50
|
+
tiny_mode_root?: any;
|
|
51
|
+
tiny_template?: any;
|
|
52
|
+
tiny_renderless?: any;
|
|
53
|
+
_constants?: any;
|
|
54
|
+
tiny_theme?: any;
|
|
55
|
+
tiny_chart_theme?: any;
|
|
56
|
+
modelValue?: any;
|
|
57
|
+
tabindex?: any;
|
|
58
|
+
suffixIcon?: any;
|
|
59
|
+
readonly?: any;
|
|
60
|
+
hoverExpand?: any;
|
|
61
|
+
prefixIcon?: any;
|
|
62
|
+
counter?: any;
|
|
63
|
+
autosize?: any;
|
|
64
|
+
clearable?: any;
|
|
65
|
+
autocomplete?: any;
|
|
66
|
+
showPassword?: any;
|
|
67
|
+
showWordLimit?: any;
|
|
68
|
+
validateEvent?: any;
|
|
69
|
+
popupMore?: any;
|
|
70
|
+
displayOnly?: any;
|
|
71
|
+
displayOnlyContent?: any;
|
|
72
|
+
frontClearIcon?: any;
|
|
73
|
+
showEmptyValue?: any;
|
|
74
|
+
showTooltip?: any;
|
|
75
|
+
}>>> & {
|
|
76
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
77
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
78
|
+
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
79
|
+
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
80
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
81
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
82
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
83
|
+
onMouseenter?: ((...args: any[]) => any) | undefined;
|
|
84
|
+
onMouseleave?: ((...args: any[]) => any) | undefined;
|
|
85
|
+
onPaste?: ((...args: any[]) => any) | undefined;
|
|
86
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
87
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
}, {
|
|
89
|
+
readonly name?: any;
|
|
90
|
+
readonly label?: any;
|
|
91
|
+
readonly disabled?: any;
|
|
92
|
+
readonly height?: any;
|
|
93
|
+
readonly size?: any;
|
|
94
|
+
readonly resize?: any;
|
|
95
|
+
readonly type?: any;
|
|
96
|
+
readonly form?: any;
|
|
97
|
+
readonly mask?: any;
|
|
98
|
+
readonly customClass?: any;
|
|
99
|
+
readonly tiny_mode?: any;
|
|
100
|
+
readonly tiny_mode_root?: any;
|
|
101
|
+
readonly tiny_template?: any;
|
|
102
|
+
readonly tiny_renderless?: any;
|
|
103
|
+
readonly _constants?: any;
|
|
104
|
+
readonly tiny_theme?: any;
|
|
105
|
+
readonly tiny_chart_theme?: any;
|
|
106
|
+
readonly modelValue?: any;
|
|
107
|
+
readonly tabindex?: any;
|
|
108
|
+
readonly suffixIcon?: any;
|
|
109
|
+
readonly readonly?: any;
|
|
110
|
+
readonly hoverExpand?: any;
|
|
111
|
+
readonly prefixIcon?: any;
|
|
112
|
+
readonly counter?: any;
|
|
113
|
+
readonly autosize?: any;
|
|
114
|
+
readonly clearable?: any;
|
|
115
|
+
readonly autocomplete?: any;
|
|
116
|
+
readonly showPassword?: any;
|
|
117
|
+
readonly showWordLimit?: any;
|
|
118
|
+
readonly validateEvent?: any;
|
|
119
|
+
readonly popupMore?: any;
|
|
120
|
+
readonly displayOnly?: any;
|
|
121
|
+
readonly displayOnlyContent?: any;
|
|
122
|
+
readonly frontClearIcon?: any;
|
|
123
|
+
readonly showEmptyValue?: any;
|
|
124
|
+
readonly showTooltip?: any;
|
|
125
|
+
}, {}>;
|
|
2
126
|
export default _default;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,2 +1,138 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
name?: any;
|
|
3
|
+
label?: any;
|
|
4
|
+
disabled?: any;
|
|
5
|
+
height?: any;
|
|
6
|
+
size?: any;
|
|
7
|
+
resize?: any;
|
|
8
|
+
type?: any;
|
|
9
|
+
form?: any;
|
|
10
|
+
mask?: any;
|
|
11
|
+
tiny_mode?: any;
|
|
12
|
+
tiny_mode_root?: any;
|
|
13
|
+
tiny_template?: any;
|
|
14
|
+
tiny_renderless?: any;
|
|
15
|
+
_constants?: any;
|
|
16
|
+
tiny_theme?: any;
|
|
17
|
+
tiny_chart_theme?: any;
|
|
18
|
+
modelValue?: any;
|
|
19
|
+
tabindex?: any;
|
|
20
|
+
suffixIcon?: any;
|
|
21
|
+
readonly?: any;
|
|
22
|
+
hoverExpand?: any;
|
|
23
|
+
prefixIcon?: any;
|
|
24
|
+
memorySpace?: any;
|
|
25
|
+
counter?: any;
|
|
26
|
+
autosize?: any;
|
|
27
|
+
clearable?: any;
|
|
28
|
+
autocomplete?: any;
|
|
29
|
+
showPassword?: any;
|
|
30
|
+
showWordLimit?: any;
|
|
31
|
+
validateEvent?: any;
|
|
32
|
+
popupMore?: any;
|
|
33
|
+
displayOnly?: any;
|
|
34
|
+
displayOnlyContent?: any;
|
|
35
|
+
frontClearIcon?: any;
|
|
36
|
+
showEmptyValue?: any;
|
|
37
|
+
showTooltip?: any;
|
|
38
|
+
inputBoxType?: any;
|
|
39
|
+
}>, {
|
|
40
|
+
t: (this: any, path: any, options?: any) => any;
|
|
41
|
+
vm: any;
|
|
42
|
+
f: (props: any, attrs?: {}) => {};
|
|
43
|
+
a: (attrs: any, filters: any, include: any) => {};
|
|
44
|
+
d: (props: any) => void;
|
|
45
|
+
dp: (props: any) => void;
|
|
46
|
+
gcls: (key: any) => any;
|
|
47
|
+
m: (...cssClasses: any[]) => string;
|
|
48
|
+
}, any, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("input" | "change" | "keyup" | "keydown" | "blur" | "click" | "focus" | "mouseenter" | "mouseleave" | "paste" | "clear" | "update:modelValue")[], "input" | "change" | "keyup" | "keydown" | "blur" | "click" | "focus" | "mouseenter" | "mouseleave" | "paste" | "clear" | "update:modelValue", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
49
|
+
name?: any;
|
|
50
|
+
label?: any;
|
|
51
|
+
disabled?: any;
|
|
52
|
+
height?: any;
|
|
53
|
+
size?: any;
|
|
54
|
+
resize?: any;
|
|
55
|
+
type?: any;
|
|
56
|
+
form?: any;
|
|
57
|
+
mask?: any;
|
|
58
|
+
tiny_mode?: any;
|
|
59
|
+
tiny_mode_root?: any;
|
|
60
|
+
tiny_template?: any;
|
|
61
|
+
tiny_renderless?: any;
|
|
62
|
+
_constants?: any;
|
|
63
|
+
tiny_theme?: any;
|
|
64
|
+
tiny_chart_theme?: any;
|
|
65
|
+
modelValue?: any;
|
|
66
|
+
tabindex?: any;
|
|
67
|
+
suffixIcon?: any;
|
|
68
|
+
readonly?: any;
|
|
69
|
+
hoverExpand?: any;
|
|
70
|
+
prefixIcon?: any;
|
|
71
|
+
memorySpace?: any;
|
|
72
|
+
counter?: any;
|
|
73
|
+
autosize?: any;
|
|
74
|
+
clearable?: any;
|
|
75
|
+
autocomplete?: any;
|
|
76
|
+
showPassword?: any;
|
|
77
|
+
showWordLimit?: any;
|
|
78
|
+
validateEvent?: any;
|
|
79
|
+
popupMore?: any;
|
|
80
|
+
displayOnly?: any;
|
|
81
|
+
displayOnlyContent?: any;
|
|
82
|
+
frontClearIcon?: any;
|
|
83
|
+
showEmptyValue?: any;
|
|
84
|
+
showTooltip?: any;
|
|
85
|
+
inputBoxType?: any;
|
|
86
|
+
}>>> & {
|
|
87
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
89
|
+
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
90
|
+
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
onMouseenter?: ((...args: any[]) => any) | undefined;
|
|
95
|
+
onMouseleave?: ((...args: any[]) => any) | undefined;
|
|
96
|
+
onPaste?: ((...args: any[]) => any) | undefined;
|
|
97
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
98
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
99
|
+
}, {
|
|
100
|
+
readonly name?: any;
|
|
101
|
+
readonly label?: any;
|
|
102
|
+
readonly disabled?: any;
|
|
103
|
+
readonly height?: any;
|
|
104
|
+
readonly size?: any;
|
|
105
|
+
readonly resize?: any;
|
|
106
|
+
readonly type?: any;
|
|
107
|
+
readonly form?: any;
|
|
108
|
+
readonly mask?: any;
|
|
109
|
+
readonly tiny_mode?: any;
|
|
110
|
+
readonly tiny_mode_root?: any;
|
|
111
|
+
readonly tiny_template?: any;
|
|
112
|
+
readonly tiny_renderless?: any;
|
|
113
|
+
readonly _constants?: any;
|
|
114
|
+
readonly tiny_theme?: any;
|
|
115
|
+
readonly tiny_chart_theme?: any;
|
|
116
|
+
readonly modelValue?: any;
|
|
117
|
+
readonly tabindex?: any;
|
|
118
|
+
readonly suffixIcon?: any;
|
|
119
|
+
readonly readonly?: any;
|
|
120
|
+
readonly hoverExpand?: any;
|
|
121
|
+
readonly prefixIcon?: any;
|
|
122
|
+
readonly memorySpace?: any;
|
|
123
|
+
readonly counter?: any;
|
|
124
|
+
readonly autosize?: any;
|
|
125
|
+
readonly clearable?: any;
|
|
126
|
+
readonly autocomplete?: any;
|
|
127
|
+
readonly showPassword?: any;
|
|
128
|
+
readonly showWordLimit?: any;
|
|
129
|
+
readonly validateEvent?: any;
|
|
130
|
+
readonly popupMore?: any;
|
|
131
|
+
readonly displayOnly?: any;
|
|
132
|
+
readonly displayOnlyContent?: any;
|
|
133
|
+
readonly frontClearIcon?: any;
|
|
134
|
+
readonly showEmptyValue?: any;
|
|
135
|
+
readonly showTooltip?: any;
|
|
136
|
+
readonly inputBoxType?: any;
|
|
137
|
+
}, {}>;
|
|
2
138
|
export default _default;
|
|
@@ -1,2 +1,19 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
|
+
isMemoryStorage: BooleanConstructor;
|
|
3
|
+
localstorageData: ArrayConstructor;
|
|
4
|
+
}, {
|
|
5
|
+
t: (this: any, path: any, options?: any) => any;
|
|
6
|
+
vm: any;
|
|
7
|
+
f: (props: any, attrs?: {}) => {};
|
|
8
|
+
a: (attrs: any, filters: any, include: any) => {};
|
|
9
|
+
d: (props: any) => void;
|
|
10
|
+
dp: (props: any) => void;
|
|
11
|
+
gcls: (key: any) => any;
|
|
12
|
+
m: (...cssClasses: any[]) => string;
|
|
13
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
14
|
+
isMemoryStorage: BooleanConstructor;
|
|
15
|
+
localstorageData: ArrayConstructor;
|
|
16
|
+
}>>, {
|
|
17
|
+
isMemoryStorage: boolean;
|
|
18
|
+
}, {}>;
|
|
2
19
|
export default _default;
|