vuv-ui 1.0.9 → 1.0.11
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/package.json +8 -3
- package/src/components/button/Data.vue +11 -0
- package/vuv-ui/components/index.d.ts +445 -0
- package/vuv-ui/src/components/index.d.ts +3 -445
- package/vuv-ui/style.css +1 -1
- package/vuv-ui/vuv-ui.es.js +551 -553
- package/vuv-ui/vuv-ui.umd.js +1 -1
- /package/vuv-ui/{src/components → components}/button/Data.vue.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/button/View.vue.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/button/index.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/collapse/Data.vue.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/collapse/View.vue.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/collapse/index.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/numberBxo/Data.vue.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/numberBxo/View.vue.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/numberBxo/index.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/textarea/Data.vue.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/textarea/View.vue.d.ts +0 -0
- /package/vuv-ui/{src/components → components}/textarea/index.d.ts +0 -0
- /package/vuv-ui/{src/main.d.ts → main.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuv-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.11",
|
|
5
5
|
"description": "基于UVUI 组件再次封装",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": "lsq",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
15
|
"dev": "vite",
|
|
16
|
-
"build": "
|
|
16
|
+
"build": "vite build",
|
|
17
17
|
"preview": "vite preview",
|
|
18
18
|
"build-only": "vite build",
|
|
19
19
|
"type-check": "vue-tsc --build",
|
|
@@ -41,12 +41,14 @@
|
|
|
41
41
|
"@vitejs/plugin-vue": "4.0.0",
|
|
42
42
|
"@vue/compiler-sfc": "3.2.45",
|
|
43
43
|
"@vue/tsconfig": "^0.9.1",
|
|
44
|
+
"element-plus": "2.2.27",
|
|
44
45
|
"npm-run-all2": "^8.0.4",
|
|
45
46
|
"prettier": "3.8.3",
|
|
46
47
|
"sass": "^1.100.0",
|
|
47
48
|
"sass-embedded": "^1.100.0",
|
|
48
|
-
"typescript": "
|
|
49
|
+
"typescript": "^5.4.5",
|
|
49
50
|
"unplugin-vue-setup-extend-plus": "^1.0.1",
|
|
51
|
+
"uv-ui": "^1.0.25",
|
|
50
52
|
"vite": "^4.0.0",
|
|
51
53
|
"vite-plugin-dts": "^3.0.0",
|
|
52
54
|
"vite-plugin-vue-devtools": "^8.1.1",
|
|
@@ -55,5 +57,8 @@
|
|
|
55
57
|
},
|
|
56
58
|
"engines": {
|
|
57
59
|
"node": "^20.19.0 || >=22.12.0"
|
|
60
|
+
},
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"@vueuse/core": "^8.9.4"
|
|
58
63
|
}
|
|
59
64
|
}
|
|
@@ -99,6 +99,17 @@
|
|
|
99
99
|
|
|
100
100
|
<script setup lang="ts" name="ButtonData">
|
|
101
101
|
import { ref, onMounted } from 'vue';
|
|
102
|
+
import ElForm from 'element-plus';
|
|
103
|
+
import ElInput from 'element-plus';
|
|
104
|
+
import ElFormItem from 'element-plus';
|
|
105
|
+
import ElInputNumber from 'element-plus';
|
|
106
|
+
import ElSelect from 'element-plus';
|
|
107
|
+
import ElOption from 'element-plus';
|
|
108
|
+
import ElRadioGroup from 'element-plus';
|
|
109
|
+
import ElRadioButton from 'element-plus';
|
|
110
|
+
import ElSwitch from 'element-plus';
|
|
111
|
+
import ElColorPicker from 'element-plus';
|
|
112
|
+
|
|
102
113
|
const props = defineProps({
|
|
103
114
|
data: {
|
|
104
115
|
type: Object,
|
|
@@ -0,0 +1,445 @@
|
|
|
1
|
+
export declare const uvUiList: {
|
|
2
|
+
buttonTypeList: {
|
|
3
|
+
type: string;
|
|
4
|
+
name: string;
|
|
5
|
+
icon: string;
|
|
6
|
+
fontIcon: string;
|
|
7
|
+
page: string;
|
|
8
|
+
viewCom: import('vue').DefineComponent<{
|
|
9
|
+
data: {
|
|
10
|
+
type: ObjectConstructor;
|
|
11
|
+
default: () => void;
|
|
12
|
+
};
|
|
13
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
14
|
+
data: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
default: () => void;
|
|
17
|
+
};
|
|
18
|
+
}>>, {
|
|
19
|
+
data: Record<string, any>;
|
|
20
|
+
}>;
|
|
21
|
+
editCom: import('vue').DefineComponent<{
|
|
22
|
+
data: {
|
|
23
|
+
type: ObjectConstructor;
|
|
24
|
+
default: () => void;
|
|
25
|
+
};
|
|
26
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
27
|
+
data: {
|
|
28
|
+
type: ObjectConstructor;
|
|
29
|
+
default: () => void;
|
|
30
|
+
};
|
|
31
|
+
}>>, {
|
|
32
|
+
data: Record<string, any>;
|
|
33
|
+
}>;
|
|
34
|
+
limit: number;
|
|
35
|
+
};
|
|
36
|
+
textareaTypeList: {
|
|
37
|
+
type: string;
|
|
38
|
+
name: string;
|
|
39
|
+
icon: string;
|
|
40
|
+
fontIcon: string;
|
|
41
|
+
page: string;
|
|
42
|
+
viewCom: import('vue').DefineComponent<{
|
|
43
|
+
data: {
|
|
44
|
+
type: ObjectConstructor;
|
|
45
|
+
default: () => void;
|
|
46
|
+
};
|
|
47
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
48
|
+
data: {
|
|
49
|
+
type: ObjectConstructor;
|
|
50
|
+
default: () => void;
|
|
51
|
+
};
|
|
52
|
+
}>>, {
|
|
53
|
+
data: Record<string, any>;
|
|
54
|
+
}>;
|
|
55
|
+
editCom: import('vue').DefineComponent<{
|
|
56
|
+
data: {
|
|
57
|
+
type: ObjectConstructor;
|
|
58
|
+
default: () => void;
|
|
59
|
+
};
|
|
60
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
61
|
+
data: {
|
|
62
|
+
type: ObjectConstructor;
|
|
63
|
+
default: () => void;
|
|
64
|
+
};
|
|
65
|
+
}>>, {
|
|
66
|
+
data: Record<string, any>;
|
|
67
|
+
}>;
|
|
68
|
+
limit: number;
|
|
69
|
+
};
|
|
70
|
+
numberBoxTypeList: {
|
|
71
|
+
type: string;
|
|
72
|
+
name: string;
|
|
73
|
+
icon: string;
|
|
74
|
+
fontIcon: string;
|
|
75
|
+
page: string;
|
|
76
|
+
viewCom: import('vue').DefineComponent<{
|
|
77
|
+
data: {
|
|
78
|
+
type: ObjectConstructor;
|
|
79
|
+
default: () => void;
|
|
80
|
+
};
|
|
81
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
82
|
+
data: {
|
|
83
|
+
type: ObjectConstructor;
|
|
84
|
+
default: () => void;
|
|
85
|
+
};
|
|
86
|
+
}>>, {
|
|
87
|
+
data: Record<string, any>;
|
|
88
|
+
}>;
|
|
89
|
+
editCom: import('vue').DefineComponent<{
|
|
90
|
+
data: {
|
|
91
|
+
type: ObjectConstructor;
|
|
92
|
+
default: () => void;
|
|
93
|
+
};
|
|
94
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
95
|
+
data: {
|
|
96
|
+
type: ObjectConstructor;
|
|
97
|
+
default: () => void;
|
|
98
|
+
};
|
|
99
|
+
}>>, {
|
|
100
|
+
data: Record<string, any>;
|
|
101
|
+
}>;
|
|
102
|
+
limit: number;
|
|
103
|
+
};
|
|
104
|
+
collapseTypeList: {
|
|
105
|
+
type: string;
|
|
106
|
+
name: string;
|
|
107
|
+
icon: string;
|
|
108
|
+
fontIcon: string;
|
|
109
|
+
page: string;
|
|
110
|
+
viewCom: import('vue').DefineComponent<{
|
|
111
|
+
data: {
|
|
112
|
+
type: ObjectConstructor;
|
|
113
|
+
default: () => void;
|
|
114
|
+
};
|
|
115
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
116
|
+
data: {
|
|
117
|
+
type: ObjectConstructor;
|
|
118
|
+
default: () => void;
|
|
119
|
+
};
|
|
120
|
+
}>>, {
|
|
121
|
+
data: Record<string, any>;
|
|
122
|
+
}>;
|
|
123
|
+
editCom: import('vue').DefineComponent<{
|
|
124
|
+
data: {
|
|
125
|
+
type: ObjectConstructor;
|
|
126
|
+
default: () => void;
|
|
127
|
+
};
|
|
128
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
129
|
+
data: {
|
|
130
|
+
type: ObjectConstructor;
|
|
131
|
+
default: () => void;
|
|
132
|
+
};
|
|
133
|
+
}>>, {
|
|
134
|
+
data: Record<string, any>;
|
|
135
|
+
}>;
|
|
136
|
+
limit: number;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
export declare const uvUIOptions: {
|
|
140
|
+
buttonOptions: {
|
|
141
|
+
data: {};
|
|
142
|
+
options: {
|
|
143
|
+
width: string;
|
|
144
|
+
height: string;
|
|
145
|
+
hairline: boolean;
|
|
146
|
+
type: string;
|
|
147
|
+
size: string;
|
|
148
|
+
shape: string;
|
|
149
|
+
position: string;
|
|
150
|
+
plain: boolean;
|
|
151
|
+
disabled: boolean;
|
|
152
|
+
loading: boolean;
|
|
153
|
+
loadingText: string;
|
|
154
|
+
openType: string;
|
|
155
|
+
pagePath: string;
|
|
156
|
+
isTabBar: boolean;
|
|
157
|
+
text: string;
|
|
158
|
+
textColor: string;
|
|
159
|
+
icon: string;
|
|
160
|
+
color: string;
|
|
161
|
+
customStyle: string;
|
|
162
|
+
fill: boolean;
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
textareaOptions: {
|
|
166
|
+
type: string;
|
|
167
|
+
data: {};
|
|
168
|
+
options: {
|
|
169
|
+
placeholder: string;
|
|
170
|
+
height: string;
|
|
171
|
+
confirmType: string;
|
|
172
|
+
count: boolean;
|
|
173
|
+
autoHeight: boolean;
|
|
174
|
+
showConfirmBar: boolean;
|
|
175
|
+
maxlength: number;
|
|
176
|
+
border: string;
|
|
177
|
+
customStyle: string;
|
|
178
|
+
fill: boolean;
|
|
179
|
+
};
|
|
180
|
+
};
|
|
181
|
+
numberBoxOptions: {
|
|
182
|
+
data: {};
|
|
183
|
+
options: {
|
|
184
|
+
value: number;
|
|
185
|
+
min: number;
|
|
186
|
+
max: number;
|
|
187
|
+
step: number;
|
|
188
|
+
integer: boolean;
|
|
189
|
+
disabled: boolean;
|
|
190
|
+
disabledInput: boolean;
|
|
191
|
+
inputWidth: number;
|
|
192
|
+
showMinus: boolean;
|
|
193
|
+
showPlus: boolean;
|
|
194
|
+
decimalLength: number;
|
|
195
|
+
longPress: boolean;
|
|
196
|
+
color: string;
|
|
197
|
+
buttonSize: number;
|
|
198
|
+
bgColor: string;
|
|
199
|
+
disablePlus: boolean;
|
|
200
|
+
disableMinus: boolean;
|
|
201
|
+
align: string;
|
|
202
|
+
fill: boolean;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
collapseOptions: {
|
|
206
|
+
data: {
|
|
207
|
+
list: {
|
|
208
|
+
title: string;
|
|
209
|
+
value: string;
|
|
210
|
+
label: string;
|
|
211
|
+
disabled: boolean;
|
|
212
|
+
isLink: boolean;
|
|
213
|
+
clickable: boolean;
|
|
214
|
+
border: boolean;
|
|
215
|
+
}[];
|
|
216
|
+
};
|
|
217
|
+
options: {
|
|
218
|
+
fill: boolean;
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
declare const hsryvvuUI: {
|
|
223
|
+
uvUiList: {
|
|
224
|
+
buttonTypeList: {
|
|
225
|
+
type: string;
|
|
226
|
+
name: string;
|
|
227
|
+
icon: string;
|
|
228
|
+
fontIcon: string;
|
|
229
|
+
page: string;
|
|
230
|
+
viewCom: import('vue').DefineComponent<{
|
|
231
|
+
data: {
|
|
232
|
+
type: ObjectConstructor;
|
|
233
|
+
default: () => void;
|
|
234
|
+
};
|
|
235
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
236
|
+
data: {
|
|
237
|
+
type: ObjectConstructor;
|
|
238
|
+
default: () => void;
|
|
239
|
+
};
|
|
240
|
+
}>>, {
|
|
241
|
+
data: Record<string, any>;
|
|
242
|
+
}>;
|
|
243
|
+
editCom: import('vue').DefineComponent<{
|
|
244
|
+
data: {
|
|
245
|
+
type: ObjectConstructor;
|
|
246
|
+
default: () => void;
|
|
247
|
+
};
|
|
248
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
249
|
+
data: {
|
|
250
|
+
type: ObjectConstructor;
|
|
251
|
+
default: () => void;
|
|
252
|
+
};
|
|
253
|
+
}>>, {
|
|
254
|
+
data: Record<string, any>;
|
|
255
|
+
}>;
|
|
256
|
+
limit: number;
|
|
257
|
+
};
|
|
258
|
+
textareaTypeList: {
|
|
259
|
+
type: string;
|
|
260
|
+
name: string;
|
|
261
|
+
icon: string;
|
|
262
|
+
fontIcon: string;
|
|
263
|
+
page: string;
|
|
264
|
+
viewCom: import('vue').DefineComponent<{
|
|
265
|
+
data: {
|
|
266
|
+
type: ObjectConstructor;
|
|
267
|
+
default: () => void;
|
|
268
|
+
};
|
|
269
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
270
|
+
data: {
|
|
271
|
+
type: ObjectConstructor;
|
|
272
|
+
default: () => void;
|
|
273
|
+
};
|
|
274
|
+
}>>, {
|
|
275
|
+
data: Record<string, any>;
|
|
276
|
+
}>;
|
|
277
|
+
editCom: import('vue').DefineComponent<{
|
|
278
|
+
data: {
|
|
279
|
+
type: ObjectConstructor;
|
|
280
|
+
default: () => void;
|
|
281
|
+
};
|
|
282
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
283
|
+
data: {
|
|
284
|
+
type: ObjectConstructor;
|
|
285
|
+
default: () => void;
|
|
286
|
+
};
|
|
287
|
+
}>>, {
|
|
288
|
+
data: Record<string, any>;
|
|
289
|
+
}>;
|
|
290
|
+
limit: number;
|
|
291
|
+
};
|
|
292
|
+
numberBoxTypeList: {
|
|
293
|
+
type: string;
|
|
294
|
+
name: string;
|
|
295
|
+
icon: string;
|
|
296
|
+
fontIcon: string;
|
|
297
|
+
page: string;
|
|
298
|
+
viewCom: import('vue').DefineComponent<{
|
|
299
|
+
data: {
|
|
300
|
+
type: ObjectConstructor;
|
|
301
|
+
default: () => void;
|
|
302
|
+
};
|
|
303
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
304
|
+
data: {
|
|
305
|
+
type: ObjectConstructor;
|
|
306
|
+
default: () => void;
|
|
307
|
+
};
|
|
308
|
+
}>>, {
|
|
309
|
+
data: Record<string, any>;
|
|
310
|
+
}>;
|
|
311
|
+
editCom: import('vue').DefineComponent<{
|
|
312
|
+
data: {
|
|
313
|
+
type: ObjectConstructor;
|
|
314
|
+
default: () => void;
|
|
315
|
+
};
|
|
316
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
317
|
+
data: {
|
|
318
|
+
type: ObjectConstructor;
|
|
319
|
+
default: () => void;
|
|
320
|
+
};
|
|
321
|
+
}>>, {
|
|
322
|
+
data: Record<string, any>;
|
|
323
|
+
}>;
|
|
324
|
+
limit: number;
|
|
325
|
+
};
|
|
326
|
+
collapseTypeList: {
|
|
327
|
+
type: string;
|
|
328
|
+
name: string;
|
|
329
|
+
icon: string;
|
|
330
|
+
fontIcon: string;
|
|
331
|
+
page: string;
|
|
332
|
+
viewCom: import('vue').DefineComponent<{
|
|
333
|
+
data: {
|
|
334
|
+
type: ObjectConstructor;
|
|
335
|
+
default: () => void;
|
|
336
|
+
};
|
|
337
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
338
|
+
data: {
|
|
339
|
+
type: ObjectConstructor;
|
|
340
|
+
default: () => void;
|
|
341
|
+
};
|
|
342
|
+
}>>, {
|
|
343
|
+
data: Record<string, any>;
|
|
344
|
+
}>;
|
|
345
|
+
editCom: import('vue').DefineComponent<{
|
|
346
|
+
data: {
|
|
347
|
+
type: ObjectConstructor;
|
|
348
|
+
default: () => void;
|
|
349
|
+
};
|
|
350
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
351
|
+
data: {
|
|
352
|
+
type: ObjectConstructor;
|
|
353
|
+
default: () => void;
|
|
354
|
+
};
|
|
355
|
+
}>>, {
|
|
356
|
+
data: Record<string, any>;
|
|
357
|
+
}>;
|
|
358
|
+
limit: number;
|
|
359
|
+
};
|
|
360
|
+
};
|
|
361
|
+
uvUIOptions: {
|
|
362
|
+
buttonOptions: {
|
|
363
|
+
data: {};
|
|
364
|
+
options: {
|
|
365
|
+
width: string;
|
|
366
|
+
height: string;
|
|
367
|
+
hairline: boolean;
|
|
368
|
+
type: string;
|
|
369
|
+
size: string;
|
|
370
|
+
shape: string;
|
|
371
|
+
position: string;
|
|
372
|
+
plain: boolean;
|
|
373
|
+
disabled: boolean;
|
|
374
|
+
loading: boolean;
|
|
375
|
+
loadingText: string;
|
|
376
|
+
openType: string;
|
|
377
|
+
pagePath: string;
|
|
378
|
+
isTabBar: boolean;
|
|
379
|
+
text: string;
|
|
380
|
+
textColor: string;
|
|
381
|
+
icon: string;
|
|
382
|
+
color: string;
|
|
383
|
+
customStyle: string;
|
|
384
|
+
fill: boolean;
|
|
385
|
+
};
|
|
386
|
+
};
|
|
387
|
+
textareaOptions: {
|
|
388
|
+
type: string;
|
|
389
|
+
data: {};
|
|
390
|
+
options: {
|
|
391
|
+
placeholder: string;
|
|
392
|
+
height: string;
|
|
393
|
+
confirmType: string;
|
|
394
|
+
count: boolean;
|
|
395
|
+
autoHeight: boolean;
|
|
396
|
+
showConfirmBar: boolean;
|
|
397
|
+
maxlength: number;
|
|
398
|
+
border: string;
|
|
399
|
+
customStyle: string;
|
|
400
|
+
fill: boolean;
|
|
401
|
+
};
|
|
402
|
+
};
|
|
403
|
+
numberBoxOptions: {
|
|
404
|
+
data: {};
|
|
405
|
+
options: {
|
|
406
|
+
value: number;
|
|
407
|
+
min: number;
|
|
408
|
+
max: number;
|
|
409
|
+
step: number;
|
|
410
|
+
integer: boolean;
|
|
411
|
+
disabled: boolean;
|
|
412
|
+
disabledInput: boolean;
|
|
413
|
+
inputWidth: number;
|
|
414
|
+
showMinus: boolean;
|
|
415
|
+
showPlus: boolean;
|
|
416
|
+
decimalLength: number;
|
|
417
|
+
longPress: boolean;
|
|
418
|
+
color: string;
|
|
419
|
+
buttonSize: number;
|
|
420
|
+
bgColor: string;
|
|
421
|
+
disablePlus: boolean;
|
|
422
|
+
disableMinus: boolean;
|
|
423
|
+
align: string;
|
|
424
|
+
fill: boolean;
|
|
425
|
+
};
|
|
426
|
+
};
|
|
427
|
+
collapseOptions: {
|
|
428
|
+
data: {
|
|
429
|
+
list: {
|
|
430
|
+
title: string;
|
|
431
|
+
value: string;
|
|
432
|
+
label: string;
|
|
433
|
+
disabled: boolean;
|
|
434
|
+
isLink: boolean;
|
|
435
|
+
clickable: boolean;
|
|
436
|
+
border: boolean;
|
|
437
|
+
}[];
|
|
438
|
+
};
|
|
439
|
+
options: {
|
|
440
|
+
fill: boolean;
|
|
441
|
+
};
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
};
|
|
445
|
+
export default hsryvvuUI;
|