@dfsj/components 3.4.0 → 3.5.1
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/CHANGELOG.md +44 -0
- package/dist/components/Boards/src/Boards.vue.d.ts +6 -10
- package/dist/components/Boards/src/Boards.vue2.js +1 -1
- package/dist/components/ClickOutSide/src/ClickOutSide.vue.d.ts +2 -2
- package/dist/components/ClickOutSide/src/ClickOutSide.vue2.js +1 -1
- package/dist/components/DatePicker/src/composables/use-range-picker.d.ts +80 -7
- package/dist/components/DatePicker/src/date-picker-com/panel-date-range.vue.d.ts +6 -6
- package/dist/components/DatePicker/src/date-picker-com/panel-month-range.vue.d.ts +6 -6
- package/dist/components/DatePicker/src/index.d.ts +52 -49
- package/dist/components/Descriptions/src/Descriptions.vue.d.ts +1 -96
- package/dist/components/Descriptions/src/Descriptions.vue2.js +1 -1
- package/dist/components/Editor/src/Editor.vue.d.ts +6 -6
- package/dist/components/Editor/src/Editor.vue2.js +1 -1
- package/dist/components/Form/src/Form.vue.d.ts +1 -153
- package/dist/components/Form/src/Form.vue2.js +2 -2
- package/dist/components/Form/src/components/useRenderCheckbox.js +1 -1
- package/dist/components/Form/src/components/useRenderRadio.js +1 -1
- package/dist/components/Form/src/useForm.js +11 -11
- package/dist/components/Highlight/src/Highlight.vue.d.ts +1 -40
- package/dist/components/Icon/src/Icon.vue.d.ts +5 -5
- package/dist/components/Icon/src/Icon.vue2.js +1 -1
- package/dist/components/Icon/src/SvgIcon.vue.d.ts +5 -5
- package/dist/components/InputPassword/src/InputPassword.vue.d.ts +6 -6
- package/dist/components/Modal/src/BasicModal.vue.d.ts +1 -314
- package/dist/components/Modal/src/BasicModal.vue2.js +1 -1
- package/dist/components/Modal/src/components/ModalFooter.vue.d.ts +5 -5
- package/dist/components/Modal/src/components/ModalHeader.vue.d.ts +5 -5
- package/dist/components/Modal/src/hooks/useModalDrag.d.ts +1 -1
- package/dist/components/Modal/src/hooks/useTimeout.d.ts +2 -2
- package/dist/components/Modal/src/hooks/useTimeout.js +1 -1
- package/dist/components/Modal/src/props.d.ts +6 -4
- package/dist/components/NodeAxis/src/CanvasNodeRender.js +3 -2
- package/dist/components/NodeAxis/src/NodeAxis.d.ts +5 -5
- package/dist/components/NodeAxis/src/NodeAxis.vue.d.ts +5 -5
- package/dist/components/Stateful/src/Stateful.vue.d.ts +5 -5
- package/dist/components/Table/src/Table.vue.d.ts +1 -536
- package/dist/components/Table/src/Table.vue2.js +7 -7
- package/dist/components/Table/src/components/ColumnSetting.vue.d.ts +6 -6
- package/dist/components/Table/src/components/ColumnSetting.vue2.js +3 -3
- package/dist/components/Table/src/components/TableActions.vue.d.ts +1 -19
- package/dist/components/Table/src/useTable.js +9 -9
- package/dist/components/UnifyChart/src/ChartToolbox.vue.d.ts +8 -7
- package/dist/components/UnifyChart/src/UnifyChart.vue.d.ts +7 -7
- package/dist/components/UnifyChart/src/hooks/useLoader.d.ts +1 -1
- package/dist/components/UnifyChart/src/hooks/useLoader.js +1 -1
- package/dist/components/Video/src/VideoPlayer.vue.d.ts +5 -5
- package/dist/components/Video/src/VideoPlayerToolbar.vue.d.ts +5 -5
- package/dist/components/Video/src/VideoPlayerToolbar.vue2.js +1 -1
- package/dist/components/Visual/src/BufferLayerPlayer.js +5 -5
- package/dist/components/Windows/src/ModalWrap.vue.d.ts +5 -5
- package/dist/components/Windows/src/Windows.vue.d.ts +6 -4
- package/dist/index.min.css +2 -2
- package/dist/node_modules/.pnpm/{@vueuse_core@10.11.0_vue@3.4.31_typescript@5.2.2_ → @vueuse_core@10.11.1_vue@3.5.11_typescript@5.6.2_}/node_modules/@vueuse/core/index.js +5 -5
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/is.d.ts +3 -3
- package/package.json +8 -8
- /package/dist/node_modules/.pnpm/{@vueuse_shared@10.11.0_vue@3.4.31_typescript@5.2.2_ → @vueuse_shared@10.11.1_vue@3.5.11_typescript@5.6.2_}/node_modules/@vueuse/shared/index.js +0 -0
|
@@ -1,315 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").
|
|
2
|
-
footer: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
cancel: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
submit: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
|
-
submitOpt: {
|
|
15
|
-
type: ObjectConstructor;
|
|
16
|
-
default: () => {
|
|
17
|
-
label: string;
|
|
18
|
-
color: string;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
cancelOpt: {
|
|
22
|
-
type: ObjectConstructor;
|
|
23
|
-
default: () => {
|
|
24
|
-
label: string;
|
|
25
|
-
color: string;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
onCancel: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
29
|
-
default: (...args: any[]) => any;
|
|
30
|
-
} & {
|
|
31
|
-
default: (...args: any[]) => any;
|
|
32
|
-
};
|
|
33
|
-
onSubmit: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
34
|
-
default: (...args: any[]) => any;
|
|
35
|
-
} & {
|
|
36
|
-
default: (...args: any[]) => any;
|
|
37
|
-
};
|
|
38
|
-
header: {
|
|
39
|
-
type: BooleanConstructor;
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
background: {
|
|
43
|
-
type: StringConstructor;
|
|
44
|
-
default: string;
|
|
45
|
-
};
|
|
46
|
-
maximizer: {
|
|
47
|
-
type: BooleanConstructor;
|
|
48
|
-
default: boolean;
|
|
49
|
-
};
|
|
50
|
-
closer: {
|
|
51
|
-
type: BooleanConstructor;
|
|
52
|
-
default: boolean;
|
|
53
|
-
};
|
|
54
|
-
maximum: import("vue-types").VueTypeValidableDef<any, import("vue-types/dist/types").ValidatorFunction<any>> & {
|
|
55
|
-
default: any;
|
|
56
|
-
};
|
|
57
|
-
headerIcon: {
|
|
58
|
-
type: StringConstructor;
|
|
59
|
-
default: string;
|
|
60
|
-
};
|
|
61
|
-
title: import("vue-types").VueTypeDef<any> & {
|
|
62
|
-
default: any;
|
|
63
|
-
};
|
|
64
|
-
titleAlign: import("vue-types").VueTypeDef<string> & {
|
|
65
|
-
default: string;
|
|
66
|
-
};
|
|
67
|
-
titleBefore: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
68
|
-
default: (...args: any[]) => any;
|
|
69
|
-
};
|
|
70
|
-
titleAfter: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
71
|
-
default: (...args: any[]) => any;
|
|
72
|
-
};
|
|
73
|
-
switcherIcon: {
|
|
74
|
-
type: ObjectConstructor;
|
|
75
|
-
default: () => {
|
|
76
|
-
true: {
|
|
77
|
-
image: string;
|
|
78
|
-
color: string;
|
|
79
|
-
};
|
|
80
|
-
false: {
|
|
81
|
-
image: string;
|
|
82
|
-
color: string;
|
|
83
|
-
};
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
closerIcon: {
|
|
87
|
-
type: ObjectConstructor;
|
|
88
|
-
default: () => {
|
|
89
|
-
image: string;
|
|
90
|
-
color: string;
|
|
91
|
-
};
|
|
92
|
-
};
|
|
93
|
-
onSwitch: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
94
|
-
default: (...args: any[]) => any;
|
|
95
|
-
} & {
|
|
96
|
-
default: (...args: any[]) => any;
|
|
97
|
-
};
|
|
98
|
-
onClose: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
99
|
-
default: (...args: any[]) => any;
|
|
100
|
-
} & {
|
|
101
|
-
default: (...args: any[]) => any;
|
|
102
|
-
};
|
|
103
|
-
visible: BooleanConstructor;
|
|
104
|
-
zIndex: {
|
|
105
|
-
type: NumberConstructor;
|
|
106
|
-
default: () => number;
|
|
107
|
-
};
|
|
108
|
-
sizes: {
|
|
109
|
-
(arrayLength: number): (string | number)[];
|
|
110
|
-
(...items: (string | number)[]): (string | number)[];
|
|
111
|
-
new (arrayLength: number): (string | number)[];
|
|
112
|
-
new (...items: (string | number)[]): (string | number)[];
|
|
113
|
-
isArray(arg: any): arg is any[];
|
|
114
|
-
readonly prototype: any[];
|
|
115
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
116
|
-
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
117
|
-
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
118
|
-
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
119
|
-
of<T_4>(...items: T_4[]): T_4[];
|
|
120
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
121
|
-
};
|
|
122
|
-
offset: ObjectConstructor;
|
|
123
|
-
overflow: StringConstructor;
|
|
124
|
-
modally: BooleanConstructor;
|
|
125
|
-
movable: {
|
|
126
|
-
type: (BooleanConstructor | StringConstructor)[];
|
|
127
|
-
default: boolean;
|
|
128
|
-
};
|
|
129
|
-
position: {
|
|
130
|
-
type: StringConstructor;
|
|
131
|
-
default: string;
|
|
132
|
-
};
|
|
133
|
-
resizeable: BooleanConstructor;
|
|
134
|
-
extent: {
|
|
135
|
-
type: ObjectConstructor;
|
|
136
|
-
default: () => {
|
|
137
|
-
top: number;
|
|
138
|
-
};
|
|
139
|
-
};
|
|
140
|
-
modalClass: StringConstructor;
|
|
141
|
-
contentClass: StringConstructor;
|
|
142
|
-
animation: ObjectConstructor;
|
|
143
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
144
|
-
footer: {
|
|
145
|
-
type: BooleanConstructor;
|
|
146
|
-
default: boolean;
|
|
147
|
-
};
|
|
148
|
-
cancel: {
|
|
149
|
-
type: BooleanConstructor;
|
|
150
|
-
default: boolean;
|
|
151
|
-
};
|
|
152
|
-
submit: {
|
|
153
|
-
type: BooleanConstructor;
|
|
154
|
-
default: boolean;
|
|
155
|
-
};
|
|
156
|
-
submitOpt: {
|
|
157
|
-
type: ObjectConstructor;
|
|
158
|
-
default: () => {
|
|
159
|
-
label: string;
|
|
160
|
-
color: string;
|
|
161
|
-
};
|
|
162
|
-
};
|
|
163
|
-
cancelOpt: {
|
|
164
|
-
type: ObjectConstructor;
|
|
165
|
-
default: () => {
|
|
166
|
-
label: string;
|
|
167
|
-
color: string;
|
|
168
|
-
};
|
|
169
|
-
};
|
|
170
|
-
onCancel: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
171
|
-
default: (...args: any[]) => any;
|
|
172
|
-
} & {
|
|
173
|
-
default: (...args: any[]) => any;
|
|
174
|
-
};
|
|
175
|
-
onSubmit: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
176
|
-
default: (...args: any[]) => any;
|
|
177
|
-
} & {
|
|
178
|
-
default: (...args: any[]) => any;
|
|
179
|
-
};
|
|
180
|
-
header: {
|
|
181
|
-
type: BooleanConstructor;
|
|
182
|
-
default: boolean;
|
|
183
|
-
};
|
|
184
|
-
background: {
|
|
185
|
-
type: StringConstructor;
|
|
186
|
-
default: string;
|
|
187
|
-
};
|
|
188
|
-
maximizer: {
|
|
189
|
-
type: BooleanConstructor;
|
|
190
|
-
default: boolean;
|
|
191
|
-
};
|
|
192
|
-
closer: {
|
|
193
|
-
type: BooleanConstructor;
|
|
194
|
-
default: boolean;
|
|
195
|
-
};
|
|
196
|
-
maximum: import("vue-types").VueTypeValidableDef<any, import("vue-types/dist/types").ValidatorFunction<any>> & {
|
|
197
|
-
default: any;
|
|
198
|
-
};
|
|
199
|
-
headerIcon: {
|
|
200
|
-
type: StringConstructor;
|
|
201
|
-
default: string;
|
|
202
|
-
};
|
|
203
|
-
title: import("vue-types").VueTypeDef<any> & {
|
|
204
|
-
default: any;
|
|
205
|
-
};
|
|
206
|
-
titleAlign: import("vue-types").VueTypeDef<string> & {
|
|
207
|
-
default: string;
|
|
208
|
-
};
|
|
209
|
-
titleBefore: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
210
|
-
default: (...args: any[]) => any;
|
|
211
|
-
};
|
|
212
|
-
titleAfter: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
213
|
-
default: (...args: any[]) => any;
|
|
214
|
-
};
|
|
215
|
-
switcherIcon: {
|
|
216
|
-
type: ObjectConstructor;
|
|
217
|
-
default: () => {
|
|
218
|
-
true: {
|
|
219
|
-
image: string;
|
|
220
|
-
color: string;
|
|
221
|
-
};
|
|
222
|
-
false: {
|
|
223
|
-
image: string;
|
|
224
|
-
color: string;
|
|
225
|
-
};
|
|
226
|
-
};
|
|
227
|
-
};
|
|
228
|
-
closerIcon: {
|
|
229
|
-
type: ObjectConstructor;
|
|
230
|
-
default: () => {
|
|
231
|
-
image: string;
|
|
232
|
-
color: string;
|
|
233
|
-
};
|
|
234
|
-
};
|
|
235
|
-
onSwitch: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
236
|
-
default: (...args: any[]) => any;
|
|
237
|
-
} & {
|
|
238
|
-
default: (...args: any[]) => any;
|
|
239
|
-
};
|
|
240
|
-
onClose: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
241
|
-
default: (...args: any[]) => any;
|
|
242
|
-
} & {
|
|
243
|
-
default: (...args: any[]) => any;
|
|
244
|
-
};
|
|
245
|
-
visible: BooleanConstructor;
|
|
246
|
-
zIndex: {
|
|
247
|
-
type: NumberConstructor;
|
|
248
|
-
default: () => number;
|
|
249
|
-
};
|
|
250
|
-
sizes: {
|
|
251
|
-
(arrayLength: number): (string | number)[];
|
|
252
|
-
(...items: (string | number)[]): (string | number)[];
|
|
253
|
-
new (arrayLength: number): (string | number)[];
|
|
254
|
-
new (...items: (string | number)[]): (string | number)[];
|
|
255
|
-
isArray(arg: any): arg is any[];
|
|
256
|
-
readonly prototype: any[];
|
|
257
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
258
|
-
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
259
|
-
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
260
|
-
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
261
|
-
of<T_4>(...items: T_4[]): T_4[];
|
|
262
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
263
|
-
};
|
|
264
|
-
offset: ObjectConstructor;
|
|
265
|
-
overflow: StringConstructor;
|
|
266
|
-
modally: BooleanConstructor;
|
|
267
|
-
movable: {
|
|
268
|
-
type: (BooleanConstructor | StringConstructor)[];
|
|
269
|
-
default: boolean;
|
|
270
|
-
};
|
|
271
|
-
position: {
|
|
272
|
-
type: StringConstructor;
|
|
273
|
-
default: string;
|
|
274
|
-
};
|
|
275
|
-
resizeable: BooleanConstructor;
|
|
276
|
-
extent: {
|
|
277
|
-
type: ObjectConstructor;
|
|
278
|
-
default: () => {
|
|
279
|
-
top: number;
|
|
280
|
-
};
|
|
281
|
-
};
|
|
282
|
-
modalClass: StringConstructor;
|
|
283
|
-
contentClass: StringConstructor;
|
|
284
|
-
animation: ObjectConstructor;
|
|
285
|
-
}>>, {
|
|
286
|
-
footer: boolean;
|
|
287
|
-
cancel: boolean;
|
|
288
|
-
submit: boolean;
|
|
289
|
-
submitOpt: Record<string, any>;
|
|
290
|
-
cancelOpt: Record<string, any>;
|
|
291
|
-
onCancel: (...args: any[]) => any;
|
|
292
|
-
onSubmit: (...args: any[]) => any;
|
|
293
|
-
header: boolean;
|
|
294
|
-
background: string;
|
|
295
|
-
maximizer: boolean;
|
|
296
|
-
closer: boolean;
|
|
297
|
-
maximum: any;
|
|
298
|
-
headerIcon: string;
|
|
299
|
-
title: any;
|
|
300
|
-
titleAlign: string;
|
|
301
|
-
titleBefore: (...args: any[]) => any;
|
|
302
|
-
titleAfter: (...args: any[]) => any;
|
|
303
|
-
switcherIcon: Record<string, any>;
|
|
304
|
-
closerIcon: Record<string, any>;
|
|
305
|
-
onSwitch: (...args: any[]) => any;
|
|
306
|
-
onClose: (...args: any[]) => any;
|
|
307
|
-
visible: boolean;
|
|
308
|
-
zIndex: number;
|
|
309
|
-
modally: boolean;
|
|
310
|
-
movable: string | boolean;
|
|
311
|
-
position: string;
|
|
312
|
-
resizeable: boolean;
|
|
313
|
-
extent: Record<string, any>;
|
|
314
|
-
}, {}>;
|
|
1
|
+
declare const _default: import("vue").DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import("vue").PublicProps>;
|
|
315
2
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
2
1
|
import { defineComponent, Transition, ref, toRefs, watch, computed, unref, createVNode, resolveComponent, withDirectives, resolveDirective } from 'vue';
|
|
2
|
+
import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
3
3
|
import { toMainStyle, toBodyStyle } from './utils/index.js';
|
|
4
4
|
import { baseProps, headerProps, footerProps } from './props.js';
|
|
5
5
|
import { useModalDragMove } from './hooks/useModalDrag.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
footer: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
@@ -35,9 +35,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
35
35
|
} & {
|
|
36
36
|
default: (...args: any[]) => any;
|
|
37
37
|
};
|
|
38
|
-
}
|
|
38
|
+
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
39
39
|
[key: string]: any;
|
|
40
|
-
}>,
|
|
40
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
41
|
footer: {
|
|
42
42
|
type: BooleanConstructor;
|
|
43
43
|
default: boolean;
|
|
@@ -74,7 +74,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
74
74
|
} & {
|
|
75
75
|
default: (...args: any[]) => any;
|
|
76
76
|
};
|
|
77
|
-
}
|
|
77
|
+
}>> & Readonly<{}>, {
|
|
78
78
|
footer: boolean;
|
|
79
79
|
cancel: boolean;
|
|
80
80
|
submit: boolean;
|
|
@@ -82,5 +82,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
82
82
|
cancelOpt: Record<string, any>;
|
|
83
83
|
onCancel: (...args: any[]) => any;
|
|
84
84
|
onSubmit: (...args: any[]) => any;
|
|
85
|
-
}, {}>;
|
|
85
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
86
86
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
header: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
@@ -64,9 +64,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
64
64
|
} & {
|
|
65
65
|
default: (...args: any[]) => any;
|
|
66
66
|
};
|
|
67
|
-
}
|
|
67
|
+
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
68
68
|
[key: string]: any;
|
|
69
|
-
}>,
|
|
69
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
70
70
|
header: {
|
|
71
71
|
type: BooleanConstructor;
|
|
72
72
|
default: boolean;
|
|
@@ -132,7 +132,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
132
132
|
} & {
|
|
133
133
|
default: (...args: any[]) => any;
|
|
134
134
|
};
|
|
135
|
-
}
|
|
135
|
+
}>> & Readonly<{}>, {
|
|
136
136
|
header: boolean;
|
|
137
137
|
background: string;
|
|
138
138
|
maximizer: boolean;
|
|
@@ -147,5 +147,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
147
147
|
closerIcon: Record<string, any>;
|
|
148
148
|
onSwitch: (...args: any[]) => any;
|
|
149
149
|
onClose: (...args: any[]) => any;
|
|
150
|
-
}, {}>;
|
|
150
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
151
151
|
export default _default;
|
|
@@ -3,12 +3,12 @@ declare interface Fn<T = any, R = T> {
|
|
|
3
3
|
(...arg: T[]): R;
|
|
4
4
|
}
|
|
5
5
|
export declare function useTimeoutFn(handle: Fn<any>, wait: number, native?: boolean): {
|
|
6
|
-
readyRef: import("vue").Ref<boolean>;
|
|
6
|
+
readyRef: import("vue").Ref<boolean, boolean>;
|
|
7
7
|
stop: () => void;
|
|
8
8
|
start: () => void;
|
|
9
9
|
};
|
|
10
10
|
export declare function useTimeoutRef(wait: number): {
|
|
11
|
-
readyRef: import("vue").Ref<boolean>;
|
|
11
|
+
readyRef: import("vue").Ref<boolean, boolean>;
|
|
12
12
|
stop: () => void;
|
|
13
13
|
start: () => void;
|
|
14
14
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { watch, ref } from 'vue';
|
|
2
|
-
import { tryOnUnmounted } from '../../../../node_modules/.pnpm/@vueuse_shared@10.11.
|
|
2
|
+
import { tryOnUnmounted } from '../../../../node_modules/.pnpm/@vueuse_shared@10.11.1_vue@3.5.11_typescript@5.6.2_/node_modules/@vueuse/shared/index.js';
|
|
3
3
|
|
|
4
4
|
function isFunction(val) {
|
|
5
5
|
return typeof val === 'function';
|
|
@@ -12,10 +12,12 @@ export declare const baseProps: {
|
|
|
12
12
|
isArray(arg: any): arg is any[];
|
|
13
13
|
readonly prototype: any[];
|
|
14
14
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
15
|
-
from<
|
|
16
|
-
from<
|
|
17
|
-
from<
|
|
18
|
-
of<
|
|
15
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
16
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
17
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
18
|
+
of<T>(...items: T[]): T[];
|
|
19
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
20
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
19
21
|
readonly [Symbol.species]: ArrayConstructor;
|
|
20
22
|
};
|
|
21
23
|
offset: ObjectConstructor;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import _classCallCheck from '@babel/runtime/helpers/classCallCheck';
|
|
2
2
|
import _createClass from '@babel/runtime/helpers/createClass';
|
|
3
3
|
import _possibleConstructorReturn from '@babel/runtime/helpers/possibleConstructorReturn';
|
|
4
|
-
import _get from '@babel/runtime/helpers/get';
|
|
5
4
|
import _getPrototypeOf from '@babel/runtime/helpers/getPrototypeOf';
|
|
5
|
+
import _get from '@babel/runtime/helpers/get';
|
|
6
6
|
import _inherits from '@babel/runtime/helpers/inherits';
|
|
7
7
|
import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
8
8
|
import NodeMath from '../../Visual/src/utils/NodeMath.js';
|
|
@@ -11,6 +11,7 @@ import * as zrender from 'zrender/dist/zrender';
|
|
|
11
11
|
|
|
12
12
|
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
13
13
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
14
|
+
function _superPropGet(t, e, o, r) { var p = _get(_getPrototypeOf(t.prototype ), e, o); return "function" == typeof p ? function (t) { return p.apply(o, t); } : p; }
|
|
14
15
|
var CanvasNodeRender = /*#__PURE__*/function (_NodeRender) {
|
|
15
16
|
function CanvasNodeRender() {
|
|
16
17
|
var _this;
|
|
@@ -175,7 +176,7 @@ var CanvasNodeRender = /*#__PURE__*/function (_NodeRender) {
|
|
|
175
176
|
key: "initialize",
|
|
176
177
|
value: function initialize(container, accept) {
|
|
177
178
|
if (this.initialized === false) {
|
|
178
|
-
|
|
179
|
+
_superPropGet(CanvasNodeRender, "initialize", this)([container, accept]);
|
|
179
180
|
var _this$getBoundingClie = this.getBoundingClientRect(),
|
|
180
181
|
width = _this$getBoundingClie.width,
|
|
181
182
|
height = _this$getBoundingClie.height;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
2
|
import NodeRender from "./NodeRender";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
render: PropType<NodeRender>;
|
|
5
|
-
}
|
|
5
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6
6
|
[key: string]: any;
|
|
7
|
-
}>,
|
|
7
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:frame"[], "update:frame", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
8
|
render: PropType<NodeRender>;
|
|
9
|
-
}>> & {
|
|
9
|
+
}>> & Readonly<{
|
|
10
10
|
"onUpdate:frame"?: (...args: any[]) => any;
|
|
11
|
-
}, {}, {}>;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
12
|
export default _default;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
config: ObjectConstructor;
|
|
3
3
|
res: {
|
|
4
4
|
type: ObjectConstructor;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
7
7
|
[key: string]: any;
|
|
8
|
-
}>,
|
|
8
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:frame" | "register")[], "update:frame" | "register", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
9
|
config: ObjectConstructor;
|
|
10
10
|
res: {
|
|
11
11
|
type: ObjectConstructor;
|
|
12
12
|
};
|
|
13
|
-
}>> & {
|
|
13
|
+
}>> & Readonly<{
|
|
14
14
|
"onUpdate:frame"?: (...args: any[]) => any;
|
|
15
15
|
onRegister?: (...args: any[]) => any;
|
|
16
|
-
}, {}, {}>;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
17
17
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
value: import("vue-types").VueTypeDef<string | number | Record<string, any>>;
|
|
3
3
|
contentClass: StringConstructor;
|
|
4
4
|
states: import("vue-types").VueTypeValidableDef<Record<string, any>, import("vue-types/dist/types").ValidatorFunction<Record<string, any>>> & {
|
|
@@ -6,9 +6,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6
6
|
} & {
|
|
7
7
|
default: () => Record<string, any>;
|
|
8
8
|
};
|
|
9
|
-
}
|
|
9
|
+
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
10
10
|
[key: string]: any;
|
|
11
|
-
}>,
|
|
11
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
12
|
value: import("vue-types").VueTypeDef<string | number | Record<string, any>>;
|
|
13
13
|
contentClass: StringConstructor;
|
|
14
14
|
states: import("vue-types").VueTypeValidableDef<Record<string, any>, import("vue-types/dist/types").ValidatorFunction<Record<string, any>>> & {
|
|
@@ -16,7 +16,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16
16
|
} & {
|
|
17
17
|
default: () => Record<string, any>;
|
|
18
18
|
};
|
|
19
|
-
}
|
|
19
|
+
}>> & Readonly<{}>, {
|
|
20
20
|
states: Record<string, any>;
|
|
21
|
-
}, {}>;
|
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
22
|
export default _default;
|