@dazhicheng/ui 1.5.1 → 1.5.4
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/components/tt-button/index.d.ts +476 -476
- package/dist/components/tt-button/index.vue.d.ts +272 -272
- package/dist/components/tt-checkbox/index.d.ts +5 -5
- package/dist/components/tt-checkbox/index.vue.d.ts +2 -2
- package/dist/components/tt-drawer/index.d.ts +540 -540
- package/dist/components/tt-drawer/src/RenderDrawer.vue.d.ts +297 -297
- package/dist/components/tt-form/src/form/RenderContent.vue.d.ts +2 -2
- package/dist/components/tt-form/src/form-render/dependencies.d.ts +118 -118
- package/dist/components/tt-form-item-error-tooltip/index.d.ts +196 -196
- package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +98 -98
- package/dist/components/tt-icon/index.d.ts +3 -3
- package/dist/components/tt-icon/index.vue.d.ts +1 -1
- package/dist/components/tt-image/index.d.ts +5 -5
- package/dist/components/tt-image/src/components/ImageViewer.d.ts +2 -2
- package/dist/components/tt-image/tt-image.d.ts +5 -5
- package/dist/components/tt-loading/index.d.ts +3 -3
- package/dist/components/tt-loading/src/loading.vue.d.ts +3 -3
- package/dist/components/tt-modal/index.d.ts +184 -184
- package/dist/components/tt-modal/src/RenderModal.vue.d.ts +101 -101
- package/dist/components/tt-modal/src/components/ModalWrapper.vue.d.ts +10 -10
- package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +33 -33
- package/dist/components/tt-part/index.d.ts +12 -12
- package/dist/components/tt-part/index.vue.d.ts +4 -4
- package/dist/components/tt-select/src/Select.vue.d.ts +89 -89
- package/dist/components/tt-select/src/components/SelectTable.vue.d.ts +7 -7
- package/dist/components/tt-select/src/components/Table.vue.d.ts +9 -9
- package/dist/components/tt-table/src/Table.vue.d.ts +185 -179
- package/dist/components/tt-table/src/components/TableColumnModal.vue.d.ts +1 -1
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +198 -228
- package/dist/components/tt-table/src/hooks/useCustomColumns.d.ts +1 -5
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +128 -128
- package/dist/components/tt-table/src/hooks/usePagination.d.ts +2 -2
- package/dist/components/tt-table/src/hooks/useTableRender.d.ts +7 -8
- package/dist/components/tt-table/src/props.d.ts +8 -5
- package/dist/components/tt-table/src/toolProps.d.ts +3 -21
- package/dist/components/tt-table/src/types/table.d.ts +8 -11
- package/dist/components/tt-table/src/types/tableTools.d.ts +2 -13
- package/dist/components/tt-text/index.d.ts +3 -3
- package/dist/components/tt-text/index.vue.d.ts +1 -1
- package/dist/components/tt-validate/src/Field.d.ts +4 -4
- package/dist/components/tt-validate/src/Form.d.ts +1 -1
- package/dist/components/tt-validate/src/utils/assertions.d.ts +1 -1
- package/dist/components/types.d.ts +10 -33
- package/dist/index.js +5942 -5976
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
5
5
|
*/
|
|
6
6
|
content: {
|
|
7
7
|
default: PropType<(() => any) | Component | string> | undefined;
|
|
8
|
-
type: (
|
|
8
|
+
type: (StringConstructor | FunctionConstructor | ObjectConstructor)[];
|
|
9
9
|
};
|
|
10
10
|
}>, () => string | import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
11
11
|
[key: string]: any;
|
|
@@ -15,7 +15,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
15
15
|
*/
|
|
16
16
|
content: {
|
|
17
17
|
default: PropType<(() => any) | Component | string> | undefined;
|
|
18
|
-
type: (
|
|
18
|
+
type: (StringConstructor | FunctionConstructor | ObjectConstructor)[];
|
|
19
19
|
};
|
|
20
20
|
}>> & Readonly<{}>, {
|
|
21
21
|
content: string | Function | Record<string, any>;
|
|
@@ -2,104 +2,105 @@ import { FormItemDependencies, FormSchemaRuleType, MaybeComponentProps } from '.
|
|
|
2
2
|
export default function useDependencies(getDependencies: () => FormItemDependencies | undefined): {
|
|
3
3
|
dynamicComponentProps: import('vue').Ref<{
|
|
4
4
|
[x: Record<never, never> & string]: any;
|
|
5
|
-
style?: any;
|
|
6
|
-
title?: any;
|
|
7
|
-
options?: any;
|
|
8
5
|
id?: any;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
onAbort?: any;
|
|
15
|
-
onAnimationend?: any;
|
|
16
|
-
onAnimationiteration?: any;
|
|
17
|
-
onAnimationstart?: any;
|
|
18
|
-
onAuxclick?: any;
|
|
19
|
-
onBeforeinput?: any;
|
|
20
|
-
onBlur?: any;
|
|
21
|
-
onCanplay?: any;
|
|
22
|
-
onCanplaythrough?: any;
|
|
23
|
-
onChange?: any;
|
|
6
|
+
title?: any;
|
|
7
|
+
style?: any;
|
|
8
|
+
role?: any;
|
|
9
|
+
onMouseenter?: any;
|
|
10
|
+
onMouseleave?: any;
|
|
24
11
|
onClick?: any;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
12
|
+
onKeydown?: any;
|
|
13
|
+
onFocus?: any;
|
|
14
|
+
onBlur?: any;
|
|
28
15
|
onContextmenu?: any;
|
|
16
|
+
class?: any;
|
|
17
|
+
color?: any;
|
|
29
18
|
onCopy?: any;
|
|
30
19
|
onCut?: any;
|
|
31
|
-
|
|
20
|
+
onPaste?: any;
|
|
21
|
+
onCompositionend?: any;
|
|
22
|
+
onCompositionstart?: any;
|
|
23
|
+
onCompositionupdate?: any;
|
|
32
24
|
onDrag?: any;
|
|
33
25
|
onDragend?: any;
|
|
34
26
|
onDragenter?: any;
|
|
27
|
+
onDragexit?: any;
|
|
35
28
|
onDragleave?: any;
|
|
36
29
|
onDragover?: any;
|
|
37
30
|
onDragstart?: any;
|
|
38
31
|
onDrop?: any;
|
|
39
|
-
onDurationchange?: any;
|
|
40
|
-
onEmptied?: any;
|
|
41
|
-
onEnded?: any;
|
|
42
|
-
onFocus?: any;
|
|
43
32
|
onFocusin?: any;
|
|
44
33
|
onFocusout?: any;
|
|
34
|
+
onChange?: any;
|
|
35
|
+
onBeforeinput?: any;
|
|
36
|
+
onInput?: any;
|
|
37
|
+
onReset?: any;
|
|
38
|
+
onSubmit?: any;
|
|
45
39
|
onInvalid?: any;
|
|
46
|
-
|
|
40
|
+
onLoad?: any;
|
|
41
|
+
onError?: any;
|
|
47
42
|
onKeypress?: any;
|
|
48
43
|
onKeyup?: any;
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
onLoadedmetadata?: any;
|
|
52
|
-
onLoadstart?: any;
|
|
44
|
+
onAuxclick?: any;
|
|
45
|
+
onDblclick?: any;
|
|
53
46
|
onMousedown?: any;
|
|
54
|
-
onMouseenter?: any;
|
|
55
|
-
onMouseleave?: any;
|
|
56
47
|
onMousemove?: any;
|
|
57
48
|
onMouseout?: any;
|
|
58
49
|
onMouseover?: any;
|
|
59
50
|
onMouseup?: any;
|
|
60
|
-
|
|
51
|
+
onAbort?: any;
|
|
52
|
+
onCanplay?: any;
|
|
53
|
+
onCanplaythrough?: any;
|
|
54
|
+
onDurationchange?: any;
|
|
55
|
+
onEmptied?: any;
|
|
56
|
+
onEncrypted?: any;
|
|
57
|
+
onEnded?: any;
|
|
58
|
+
onLoadeddata?: any;
|
|
59
|
+
onLoadedmetadata?: any;
|
|
60
|
+
onLoadstart?: any;
|
|
61
61
|
onPause?: any;
|
|
62
62
|
onPlay?: any;
|
|
63
63
|
onPlaying?: any;
|
|
64
|
-
|
|
65
|
-
onPointerdown?: any;
|
|
66
|
-
onPointerenter?: any;
|
|
67
|
-
onPointerleave?: any;
|
|
68
|
-
onPointermove?: any;
|
|
69
|
-
onPointerout?: any;
|
|
70
|
-
onPointerover?: any;
|
|
71
|
-
onPointerup?: any;
|
|
64
|
+
onProgress?: any;
|
|
72
65
|
onRatechange?: any;
|
|
73
|
-
onReset?: any;
|
|
74
|
-
onScroll?: any;
|
|
75
|
-
onScrollend?: any;
|
|
76
66
|
onSeeked?: any;
|
|
77
67
|
onSeeking?: any;
|
|
78
68
|
onStalled?: any;
|
|
79
|
-
onSubmit?: any;
|
|
80
69
|
onSuspend?: any;
|
|
81
70
|
onTimeupdate?: any;
|
|
71
|
+
onVolumechange?: any;
|
|
72
|
+
onWaiting?: any;
|
|
73
|
+
onSelect?: any;
|
|
74
|
+
onScroll?: any;
|
|
75
|
+
onScrollend?: any;
|
|
82
76
|
onTouchcancel?: any;
|
|
83
77
|
onTouchend?: any;
|
|
84
78
|
onTouchmove?: any;
|
|
85
79
|
onTouchstart?: any;
|
|
80
|
+
onPointerdown?: any;
|
|
81
|
+
onPointermove?: any;
|
|
82
|
+
onPointerup?: any;
|
|
83
|
+
onPointercancel?: any;
|
|
84
|
+
onPointerenter?: any;
|
|
85
|
+
onPointerleave?: any;
|
|
86
|
+
onPointerover?: any;
|
|
87
|
+
onPointerout?: any;
|
|
88
|
+
onWheel?: any;
|
|
89
|
+
onAnimationstart?: any;
|
|
90
|
+
onAnimationend?: any;
|
|
91
|
+
onAnimationiteration?: any;
|
|
86
92
|
onTransitionend?: any;
|
|
87
93
|
onTransitionstart?: any;
|
|
88
|
-
onVolumechange?: any;
|
|
89
|
-
onWaiting?: any;
|
|
90
|
-
onWheel?: any;
|
|
91
|
-
role?: any;
|
|
92
|
-
class?: any;
|
|
93
|
-
dir?: any;
|
|
94
|
-
color?: any;
|
|
95
|
-
onDragexit?: any;
|
|
96
|
-
onEncrypted?: any;
|
|
97
|
-
"aria-hidden"?: any;
|
|
98
|
-
hidden?: any;
|
|
99
94
|
placeholder?: any;
|
|
100
|
-
prefix?: any;
|
|
101
95
|
tabindex?: any;
|
|
96
|
+
options?: any;
|
|
97
|
+
hidden?: any;
|
|
98
|
+
property?: any;
|
|
99
|
+
prefix?: any;
|
|
102
100
|
translate?: any;
|
|
101
|
+
contextmenu?: any;
|
|
102
|
+
dir?: any;
|
|
103
|
+
"aria-hidden"?: any;
|
|
103
104
|
innerHTML?: any;
|
|
104
105
|
accesskey?: any;
|
|
105
106
|
contenteditable?: any;
|
|
@@ -111,7 +112,6 @@ export default function useDependencies(getDependencies: () => FormItemDependenc
|
|
|
111
112
|
about?: any;
|
|
112
113
|
datatype?: any;
|
|
113
114
|
inlist?: any;
|
|
114
|
-
property?: any;
|
|
115
115
|
resource?: any;
|
|
116
116
|
typeof?: any;
|
|
117
117
|
vocab?: any;
|
|
@@ -178,104 +178,105 @@ export default function useDependencies(getDependencies: () => FormItemDependenc
|
|
|
178
178
|
manifest?: any;
|
|
179
179
|
}, MaybeComponentProps | {
|
|
180
180
|
[x: Record<never, never> & string]: any;
|
|
181
|
-
style?: any;
|
|
182
|
-
title?: any;
|
|
183
|
-
options?: any;
|
|
184
181
|
id?: any;
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
onAbort?: any;
|
|
191
|
-
onAnimationend?: any;
|
|
192
|
-
onAnimationiteration?: any;
|
|
193
|
-
onAnimationstart?: any;
|
|
194
|
-
onAuxclick?: any;
|
|
195
|
-
onBeforeinput?: any;
|
|
196
|
-
onBlur?: any;
|
|
197
|
-
onCanplay?: any;
|
|
198
|
-
onCanplaythrough?: any;
|
|
199
|
-
onChange?: any;
|
|
182
|
+
title?: any;
|
|
183
|
+
style?: any;
|
|
184
|
+
role?: any;
|
|
185
|
+
onMouseenter?: any;
|
|
186
|
+
onMouseleave?: any;
|
|
200
187
|
onClick?: any;
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
188
|
+
onKeydown?: any;
|
|
189
|
+
onFocus?: any;
|
|
190
|
+
onBlur?: any;
|
|
204
191
|
onContextmenu?: any;
|
|
192
|
+
class?: any;
|
|
193
|
+
color?: any;
|
|
205
194
|
onCopy?: any;
|
|
206
195
|
onCut?: any;
|
|
207
|
-
|
|
196
|
+
onPaste?: any;
|
|
197
|
+
onCompositionend?: any;
|
|
198
|
+
onCompositionstart?: any;
|
|
199
|
+
onCompositionupdate?: any;
|
|
208
200
|
onDrag?: any;
|
|
209
201
|
onDragend?: any;
|
|
210
202
|
onDragenter?: any;
|
|
203
|
+
onDragexit?: any;
|
|
211
204
|
onDragleave?: any;
|
|
212
205
|
onDragover?: any;
|
|
213
206
|
onDragstart?: any;
|
|
214
207
|
onDrop?: any;
|
|
215
|
-
onDurationchange?: any;
|
|
216
|
-
onEmptied?: any;
|
|
217
|
-
onEnded?: any;
|
|
218
|
-
onFocus?: any;
|
|
219
208
|
onFocusin?: any;
|
|
220
209
|
onFocusout?: any;
|
|
210
|
+
onChange?: any;
|
|
211
|
+
onBeforeinput?: any;
|
|
212
|
+
onInput?: any;
|
|
213
|
+
onReset?: any;
|
|
214
|
+
onSubmit?: any;
|
|
221
215
|
onInvalid?: any;
|
|
222
|
-
|
|
216
|
+
onLoad?: any;
|
|
217
|
+
onError?: any;
|
|
223
218
|
onKeypress?: any;
|
|
224
219
|
onKeyup?: any;
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
onLoadedmetadata?: any;
|
|
228
|
-
onLoadstart?: any;
|
|
220
|
+
onAuxclick?: any;
|
|
221
|
+
onDblclick?: any;
|
|
229
222
|
onMousedown?: any;
|
|
230
|
-
onMouseenter?: any;
|
|
231
|
-
onMouseleave?: any;
|
|
232
223
|
onMousemove?: any;
|
|
233
224
|
onMouseout?: any;
|
|
234
225
|
onMouseover?: any;
|
|
235
226
|
onMouseup?: any;
|
|
236
|
-
|
|
227
|
+
onAbort?: any;
|
|
228
|
+
onCanplay?: any;
|
|
229
|
+
onCanplaythrough?: any;
|
|
230
|
+
onDurationchange?: any;
|
|
231
|
+
onEmptied?: any;
|
|
232
|
+
onEncrypted?: any;
|
|
233
|
+
onEnded?: any;
|
|
234
|
+
onLoadeddata?: any;
|
|
235
|
+
onLoadedmetadata?: any;
|
|
236
|
+
onLoadstart?: any;
|
|
237
237
|
onPause?: any;
|
|
238
238
|
onPlay?: any;
|
|
239
239
|
onPlaying?: any;
|
|
240
|
-
|
|
241
|
-
onPointerdown?: any;
|
|
242
|
-
onPointerenter?: any;
|
|
243
|
-
onPointerleave?: any;
|
|
244
|
-
onPointermove?: any;
|
|
245
|
-
onPointerout?: any;
|
|
246
|
-
onPointerover?: any;
|
|
247
|
-
onPointerup?: any;
|
|
240
|
+
onProgress?: any;
|
|
248
241
|
onRatechange?: any;
|
|
249
|
-
onReset?: any;
|
|
250
|
-
onScroll?: any;
|
|
251
|
-
onScrollend?: any;
|
|
252
242
|
onSeeked?: any;
|
|
253
243
|
onSeeking?: any;
|
|
254
244
|
onStalled?: any;
|
|
255
|
-
onSubmit?: any;
|
|
256
245
|
onSuspend?: any;
|
|
257
246
|
onTimeupdate?: any;
|
|
247
|
+
onVolumechange?: any;
|
|
248
|
+
onWaiting?: any;
|
|
249
|
+
onSelect?: any;
|
|
250
|
+
onScroll?: any;
|
|
251
|
+
onScrollend?: any;
|
|
258
252
|
onTouchcancel?: any;
|
|
259
253
|
onTouchend?: any;
|
|
260
254
|
onTouchmove?: any;
|
|
261
255
|
onTouchstart?: any;
|
|
256
|
+
onPointerdown?: any;
|
|
257
|
+
onPointermove?: any;
|
|
258
|
+
onPointerup?: any;
|
|
259
|
+
onPointercancel?: any;
|
|
260
|
+
onPointerenter?: any;
|
|
261
|
+
onPointerleave?: any;
|
|
262
|
+
onPointerover?: any;
|
|
263
|
+
onPointerout?: any;
|
|
264
|
+
onWheel?: any;
|
|
265
|
+
onAnimationstart?: any;
|
|
266
|
+
onAnimationend?: any;
|
|
267
|
+
onAnimationiteration?: any;
|
|
262
268
|
onTransitionend?: any;
|
|
263
269
|
onTransitionstart?: any;
|
|
264
|
-
onVolumechange?: any;
|
|
265
|
-
onWaiting?: any;
|
|
266
|
-
onWheel?: any;
|
|
267
|
-
role?: any;
|
|
268
|
-
class?: any;
|
|
269
|
-
dir?: any;
|
|
270
|
-
color?: any;
|
|
271
|
-
onDragexit?: any;
|
|
272
|
-
onEncrypted?: any;
|
|
273
|
-
"aria-hidden"?: any;
|
|
274
|
-
hidden?: any;
|
|
275
270
|
placeholder?: any;
|
|
276
|
-
prefix?: any;
|
|
277
271
|
tabindex?: any;
|
|
272
|
+
options?: any;
|
|
273
|
+
hidden?: any;
|
|
274
|
+
property?: any;
|
|
275
|
+
prefix?: any;
|
|
278
276
|
translate?: any;
|
|
277
|
+
contextmenu?: any;
|
|
278
|
+
dir?: any;
|
|
279
|
+
"aria-hidden"?: any;
|
|
279
280
|
innerHTML?: any;
|
|
280
281
|
accesskey?: any;
|
|
281
282
|
contenteditable?: any;
|
|
@@ -287,7 +288,6 @@ export default function useDependencies(getDependencies: () => FormItemDependenc
|
|
|
287
288
|
about?: any;
|
|
288
289
|
datatype?: any;
|
|
289
290
|
inlist?: any;
|
|
290
|
-
property?: any;
|
|
291
291
|
resource?: any;
|
|
292
292
|
typeof?: any;
|
|
293
293
|
vocab?: any;
|