@ecan-bi/pivot-table 1.0.11 → 1.0.13
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/index.es.js +8426 -8297
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +32 -32
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/pivotTable/ChartModal.vue.d.ts +35 -2
- package/types/pivotTable/PivotAggregate.vue.d.ts +15 -2
- package/types/pivotTable/PivotFilter.vue.d.ts +11 -0
- package/types/pivotTable/PivotProperty.vue.d.ts +13 -451
- package/types/pivotTable/PivotTable.vue.d.ts +145 -462
- package/types/pivotTable/PivotTop.vue.d.ts +14 -2
- package/types/pivotTable/conditional-property/ConditionalProperty.vue.d.ts +46 -3
- package/types/pivotTable/conditional-property/components/ConditionalConfig.vue.d.ts +11 -0
- package/types/pivotTable/conditional-property/components/ConditionalItemConfig.vue.d.ts +10 -0
- package/types/pivotTable/conditional-property/components/PropertyConfig.vue.d.ts +11 -1
- package/types/pivotTable/conditional-property/components/prop-to-form/ColorPick.vue.d.ts +1 -1
- package/types/pivotTable/pivot-chart/PivotChart.vue.d.ts +21 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
id: {
|
|
4
4
|
type: StringConstructor;
|
|
@@ -82,6 +82,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
82
82
|
}>;
|
|
83
83
|
default: () => {};
|
|
84
84
|
};
|
|
85
|
+
theme: {
|
|
86
|
+
type: StringConstructor;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
85
89
|
}>, {
|
|
86
90
|
dropDownMenuColor: import("vue").ComputedRef<any>;
|
|
87
91
|
dropDownMenuBgColor: import("vue").ComputedRef<any>;
|
|
@@ -191,17 +195,22 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
191
195
|
}>;
|
|
192
196
|
default: () => {};
|
|
193
197
|
};
|
|
198
|
+
theme: {
|
|
199
|
+
type: StringConstructor;
|
|
200
|
+
default: string;
|
|
201
|
+
};
|
|
194
202
|
}>> & Readonly<{}>, {
|
|
195
203
|
data: unknown[];
|
|
196
204
|
type: string;
|
|
205
|
+
theme: string;
|
|
197
206
|
name: string;
|
|
198
207
|
position: string;
|
|
199
208
|
top: string;
|
|
200
209
|
left: string;
|
|
201
|
-
id: string;
|
|
202
210
|
width: string;
|
|
203
211
|
height: string;
|
|
204
212
|
zIndex: number;
|
|
213
|
+
id: string;
|
|
205
214
|
keyName: string;
|
|
206
215
|
events: unknown[];
|
|
207
216
|
dataType: string;
|
|
@@ -220,6 +229,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
220
229
|
type: ObjectConstructor;
|
|
221
230
|
default: () => void;
|
|
222
231
|
};
|
|
232
|
+
theme: {
|
|
233
|
+
type: StringConstructor;
|
|
234
|
+
default: string;
|
|
235
|
+
};
|
|
223
236
|
}>, {
|
|
224
237
|
visible: import("vue").Ref<boolean, boolean>;
|
|
225
238
|
checkAllDimensions: import("vue").Ref<boolean, boolean>;
|
|
@@ -232,18 +245,30 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
232
245
|
}[];
|
|
233
246
|
filterValue: import("vue").Ref<string, string>;
|
|
234
247
|
searchDimName: import("vue").Ref<string, string>;
|
|
248
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
235
249
|
handleOk: () => void;
|
|
236
250
|
onCheckAllDimChange: (e: any) => void;
|
|
237
251
|
handleClear: () => void;
|
|
252
|
+
getPopupContainer: () => Element;
|
|
238
253
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
239
254
|
data: {
|
|
240
255
|
type: ObjectConstructor;
|
|
241
256
|
default: () => void;
|
|
242
257
|
};
|
|
258
|
+
theme: {
|
|
259
|
+
type: StringConstructor;
|
|
260
|
+
default: string;
|
|
261
|
+
};
|
|
243
262
|
}>> & Readonly<{}>, {
|
|
244
263
|
data: Record<string, any>;
|
|
264
|
+
theme: string;
|
|
245
265
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
246
|
-
PivotProperty: import("vue").DefineComponent<{
|
|
266
|
+
PivotProperty: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
267
|
+
theme: {
|
|
268
|
+
type: StringConstructor;
|
|
269
|
+
default: string;
|
|
270
|
+
};
|
|
271
|
+
}>, {
|
|
247
272
|
visible: import("vue").Ref<boolean, boolean>;
|
|
248
273
|
formData: import("vue").Ref<{
|
|
249
274
|
unit: string;
|
|
@@ -259,463 +284,25 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
259
284
|
floatLength: string;
|
|
260
285
|
}>;
|
|
261
286
|
handleOk: () => void;
|
|
287
|
+
getPopupContainer: () => Element;
|
|
262
288
|
formatOptions: {
|
|
263
289
|
label: string;
|
|
264
290
|
value: string;
|
|
265
291
|
}[];
|
|
266
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<
|
|
267
|
-
|
|
268
|
-
new (...args: any[]): {
|
|
269
|
-
$: import("vue").ComponentInternalInstance;
|
|
270
|
-
$data: {};
|
|
271
|
-
$props: Partial<{
|
|
272
|
-
step: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
273
|
-
bordered: boolean;
|
|
274
|
-
keyboard: boolean;
|
|
275
|
-
controls: boolean;
|
|
276
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
277
|
-
size: {
|
|
278
|
-
type: PropType<import("ant-design-vue/lib/button").ButtonSize>;
|
|
279
|
-
};
|
|
280
|
-
bordered: {
|
|
281
|
-
type: BooleanConstructor;
|
|
282
|
-
default: boolean;
|
|
283
|
-
};
|
|
284
|
-
placeholder: StringConstructor;
|
|
285
|
-
name: StringConstructor;
|
|
286
|
-
id: StringConstructor;
|
|
287
|
-
type: StringConstructor;
|
|
288
|
-
addonBefore: import("vue-types").VueTypeValidableDef<any>;
|
|
289
|
-
addonAfter: import("vue-types").VueTypeValidableDef<any>;
|
|
290
|
-
prefix: import("vue-types").VueTypeValidableDef<any>;
|
|
291
|
-
'update:value': {
|
|
292
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
293
|
-
};
|
|
294
|
-
stringMode: {
|
|
295
|
-
type: PropType<boolean>;
|
|
296
|
-
};
|
|
297
|
-
defaultValue: {
|
|
298
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
299
|
-
};
|
|
300
|
-
value: {
|
|
301
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
302
|
-
};
|
|
303
|
-
prefixCls: {
|
|
304
|
-
type: PropType<string>;
|
|
305
|
-
};
|
|
306
|
-
min: {
|
|
307
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
308
|
-
};
|
|
309
|
-
max: {
|
|
310
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
311
|
-
};
|
|
312
|
-
step: {
|
|
313
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
314
|
-
default: number;
|
|
315
|
-
};
|
|
316
|
-
tabindex: {
|
|
317
|
-
type: PropType<number>;
|
|
318
|
-
};
|
|
319
|
-
controls: {
|
|
320
|
-
type: PropType<boolean>;
|
|
321
|
-
default: boolean;
|
|
322
|
-
};
|
|
323
|
-
readonly: {
|
|
324
|
-
type: PropType<boolean>;
|
|
325
|
-
};
|
|
326
|
-
disabled: {
|
|
327
|
-
type: PropType<boolean>;
|
|
328
|
-
};
|
|
329
|
-
autofocus: {
|
|
330
|
-
type: PropType<boolean>;
|
|
331
|
-
};
|
|
332
|
-
keyboard: {
|
|
333
|
-
type: PropType<boolean>;
|
|
334
|
-
default: boolean;
|
|
335
|
-
};
|
|
336
|
-
parser: {
|
|
337
|
-
type: PropType<(displayValue: string) => import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
338
|
-
};
|
|
339
|
-
formatter: {
|
|
340
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
341
|
-
userTyping: boolean;
|
|
342
|
-
input: string;
|
|
343
|
-
}) => string>;
|
|
344
|
-
};
|
|
345
|
-
precision: {
|
|
346
|
-
type: PropType<number>;
|
|
347
|
-
};
|
|
348
|
-
decimalSeparator: {
|
|
349
|
-
type: PropType<string>;
|
|
350
|
-
};
|
|
351
|
-
onInput: {
|
|
352
|
-
type: PropType<(text: string) => void>;
|
|
353
|
-
};
|
|
354
|
-
onChange: {
|
|
355
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
356
|
-
};
|
|
357
|
-
onPressEnter: {
|
|
358
|
-
type: PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
|
|
359
|
-
};
|
|
360
|
-
onStep: {
|
|
361
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
362
|
-
offset: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
363
|
-
type: "down" | "up";
|
|
364
|
-
}) => void>;
|
|
365
|
-
};
|
|
366
|
-
onBlur: {
|
|
367
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
368
|
-
};
|
|
369
|
-
onFocus: {
|
|
370
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
371
|
-
};
|
|
372
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "bordered" | "step" | "controls" | "keyboard">;
|
|
373
|
-
$attrs: {
|
|
374
|
-
[x: string]: unknown;
|
|
375
|
-
};
|
|
376
|
-
$refs: {
|
|
377
|
-
[x: string]: unknown;
|
|
378
|
-
};
|
|
379
|
-
$slots: Readonly<{
|
|
380
|
-
[name: string]: import("vue").Slot<any>;
|
|
381
|
-
}>;
|
|
382
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>;
|
|
383
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>;
|
|
384
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
385
|
-
$el: any;
|
|
386
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
387
|
-
size: {
|
|
388
|
-
type: PropType<import("ant-design-vue/lib/button").ButtonSize>;
|
|
389
|
-
};
|
|
390
|
-
bordered: {
|
|
391
|
-
type: BooleanConstructor;
|
|
392
|
-
default: boolean;
|
|
393
|
-
};
|
|
394
|
-
placeholder: StringConstructor;
|
|
395
|
-
name: StringConstructor;
|
|
396
|
-
id: StringConstructor;
|
|
397
|
-
type: StringConstructor;
|
|
398
|
-
addonBefore: import("vue-types").VueTypeValidableDef<any>;
|
|
399
|
-
addonAfter: import("vue-types").VueTypeValidableDef<any>;
|
|
400
|
-
prefix: import("vue-types").VueTypeValidableDef<any>;
|
|
401
|
-
'update:value': {
|
|
402
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
403
|
-
};
|
|
404
|
-
stringMode: {
|
|
405
|
-
type: PropType<boolean>;
|
|
406
|
-
};
|
|
407
|
-
defaultValue: {
|
|
408
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
409
|
-
};
|
|
410
|
-
value: {
|
|
411
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
412
|
-
};
|
|
413
|
-
prefixCls: {
|
|
414
|
-
type: PropType<string>;
|
|
415
|
-
};
|
|
416
|
-
min: {
|
|
417
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
418
|
-
};
|
|
419
|
-
max: {
|
|
420
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
421
|
-
};
|
|
422
|
-
step: {
|
|
423
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
424
|
-
default: number;
|
|
425
|
-
};
|
|
426
|
-
tabindex: {
|
|
427
|
-
type: PropType<number>;
|
|
428
|
-
};
|
|
429
|
-
controls: {
|
|
430
|
-
type: PropType<boolean>;
|
|
431
|
-
default: boolean;
|
|
432
|
-
};
|
|
433
|
-
readonly: {
|
|
434
|
-
type: PropType<boolean>;
|
|
435
|
-
};
|
|
436
|
-
disabled: {
|
|
437
|
-
type: PropType<boolean>;
|
|
438
|
-
};
|
|
439
|
-
autofocus: {
|
|
440
|
-
type: PropType<boolean>;
|
|
441
|
-
};
|
|
442
|
-
keyboard: {
|
|
443
|
-
type: PropType<boolean>;
|
|
444
|
-
default: boolean;
|
|
445
|
-
};
|
|
446
|
-
parser: {
|
|
447
|
-
type: PropType<(displayValue: string) => import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
448
|
-
};
|
|
449
|
-
formatter: {
|
|
450
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
451
|
-
userTyping: boolean;
|
|
452
|
-
input: string;
|
|
453
|
-
}) => string>;
|
|
454
|
-
};
|
|
455
|
-
precision: {
|
|
456
|
-
type: PropType<number>;
|
|
457
|
-
};
|
|
458
|
-
decimalSeparator: {
|
|
459
|
-
type: PropType<string>;
|
|
460
|
-
};
|
|
461
|
-
onInput: {
|
|
462
|
-
type: PropType<(text: string) => void>;
|
|
463
|
-
};
|
|
464
|
-
onChange: {
|
|
465
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
466
|
-
};
|
|
467
|
-
onPressEnter: {
|
|
468
|
-
type: PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
|
|
469
|
-
};
|
|
470
|
-
onStep: {
|
|
471
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
472
|
-
offset: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
473
|
-
type: "down" | "up";
|
|
474
|
-
}) => void>;
|
|
475
|
-
};
|
|
476
|
-
onBlur: {
|
|
477
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
478
|
-
};
|
|
479
|
-
onFocus: {
|
|
480
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
481
|
-
};
|
|
482
|
-
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
483
|
-
[key: string]: any;
|
|
484
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
485
|
-
step: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
486
|
-
bordered: boolean;
|
|
487
|
-
keyboard: boolean;
|
|
488
|
-
controls: boolean;
|
|
489
|
-
}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> & {
|
|
490
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
491
|
-
created?: (() => void) | (() => void)[];
|
|
492
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
493
|
-
mounted?: (() => void) | (() => void)[];
|
|
494
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
495
|
-
updated?: (() => void) | (() => void)[];
|
|
496
|
-
activated?: (() => void) | (() => void)[];
|
|
497
|
-
deactivated?: (() => void) | (() => void)[];
|
|
498
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
499
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
500
|
-
destroyed?: (() => void) | (() => void)[];
|
|
501
|
-
unmounted?: (() => void) | (() => void)[];
|
|
502
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
503
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
504
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>, info: string) => boolean | void)[];
|
|
505
|
-
};
|
|
506
|
-
$forceUpdate: () => void;
|
|
507
|
-
$nextTick: typeof nextTick;
|
|
508
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
509
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
510
|
-
size: {
|
|
511
|
-
type: PropType<import("ant-design-vue/lib/button").ButtonSize>;
|
|
512
|
-
};
|
|
513
|
-
bordered: {
|
|
514
|
-
type: BooleanConstructor;
|
|
515
|
-
default: boolean;
|
|
516
|
-
};
|
|
517
|
-
placeholder: StringConstructor;
|
|
518
|
-
name: StringConstructor;
|
|
519
|
-
id: StringConstructor;
|
|
520
|
-
type: StringConstructor;
|
|
521
|
-
addonBefore: import("vue-types").VueTypeValidableDef<any>;
|
|
522
|
-
addonAfter: import("vue-types").VueTypeValidableDef<any>;
|
|
523
|
-
prefix: import("vue-types").VueTypeValidableDef<any>;
|
|
524
|
-
'update:value': {
|
|
525
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
526
|
-
};
|
|
527
|
-
stringMode: {
|
|
528
|
-
type: PropType<boolean>;
|
|
529
|
-
};
|
|
530
|
-
defaultValue: {
|
|
531
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
532
|
-
};
|
|
533
|
-
value: {
|
|
534
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
535
|
-
};
|
|
536
|
-
prefixCls: {
|
|
537
|
-
type: PropType<string>;
|
|
538
|
-
};
|
|
539
|
-
min: {
|
|
540
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
541
|
-
};
|
|
542
|
-
max: {
|
|
543
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
544
|
-
};
|
|
545
|
-
step: {
|
|
546
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
547
|
-
default: number;
|
|
548
|
-
};
|
|
549
|
-
tabindex: {
|
|
550
|
-
type: PropType<number>;
|
|
551
|
-
};
|
|
552
|
-
controls: {
|
|
553
|
-
type: PropType<boolean>;
|
|
554
|
-
default: boolean;
|
|
555
|
-
};
|
|
556
|
-
readonly: {
|
|
557
|
-
type: PropType<boolean>;
|
|
558
|
-
};
|
|
559
|
-
disabled: {
|
|
560
|
-
type: PropType<boolean>;
|
|
561
|
-
};
|
|
562
|
-
autofocus: {
|
|
563
|
-
type: PropType<boolean>;
|
|
564
|
-
};
|
|
565
|
-
keyboard: {
|
|
566
|
-
type: PropType<boolean>;
|
|
567
|
-
default: boolean;
|
|
568
|
-
};
|
|
569
|
-
parser: {
|
|
570
|
-
type: PropType<(displayValue: string) => import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
571
|
-
};
|
|
572
|
-
formatter: {
|
|
573
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
574
|
-
userTyping: boolean;
|
|
575
|
-
input: string;
|
|
576
|
-
}) => string>;
|
|
577
|
-
};
|
|
578
|
-
precision: {
|
|
579
|
-
type: PropType<number>;
|
|
580
|
-
};
|
|
581
|
-
decimalSeparator: {
|
|
582
|
-
type: PropType<string>;
|
|
583
|
-
};
|
|
584
|
-
onInput: {
|
|
585
|
-
type: PropType<(text: string) => void>;
|
|
586
|
-
};
|
|
587
|
-
onChange: {
|
|
588
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
589
|
-
};
|
|
590
|
-
onPressEnter: {
|
|
591
|
-
type: PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
|
|
592
|
-
};
|
|
593
|
-
onStep: {
|
|
594
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
595
|
-
offset: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
596
|
-
type: "down" | "up";
|
|
597
|
-
}) => void>;
|
|
598
|
-
};
|
|
599
|
-
onBlur: {
|
|
600
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
601
|
-
};
|
|
602
|
-
onFocus: {
|
|
603
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
604
|
-
};
|
|
605
|
-
}>> & import("vue").ShallowUnwrapRef<() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
606
|
-
[key: string]: any;
|
|
607
|
-
}>> & import("vue").ComponentCustomProperties;
|
|
608
|
-
__isFragment?: never;
|
|
609
|
-
__isTeleport?: never;
|
|
610
|
-
__isSuspense?: never;
|
|
611
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
612
|
-
size: {
|
|
613
|
-
type: PropType<import("ant-design-vue/lib/button").ButtonSize>;
|
|
614
|
-
};
|
|
615
|
-
bordered: {
|
|
616
|
-
type: BooleanConstructor;
|
|
617
|
-
default: boolean;
|
|
618
|
-
};
|
|
619
|
-
placeholder: StringConstructor;
|
|
620
|
-
name: StringConstructor;
|
|
621
|
-
id: StringConstructor;
|
|
292
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
293
|
+
theme: {
|
|
622
294
|
type: StringConstructor;
|
|
623
|
-
|
|
624
|
-
addonAfter: import("vue-types").VueTypeValidableDef<any>;
|
|
625
|
-
prefix: import("vue-types").VueTypeValidableDef<any>;
|
|
626
|
-
'update:value': {
|
|
627
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
628
|
-
};
|
|
629
|
-
stringMode: {
|
|
630
|
-
type: PropType<boolean>;
|
|
631
|
-
};
|
|
632
|
-
defaultValue: {
|
|
633
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
634
|
-
};
|
|
635
|
-
value: {
|
|
636
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
637
|
-
};
|
|
638
|
-
prefixCls: {
|
|
639
|
-
type: PropType<string>;
|
|
640
|
-
};
|
|
641
|
-
min: {
|
|
642
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
643
|
-
};
|
|
644
|
-
max: {
|
|
645
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
646
|
-
};
|
|
647
|
-
step: {
|
|
648
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
649
|
-
default: number;
|
|
650
|
-
};
|
|
651
|
-
tabindex: {
|
|
652
|
-
type: PropType<number>;
|
|
653
|
-
};
|
|
654
|
-
controls: {
|
|
655
|
-
type: PropType<boolean>;
|
|
656
|
-
default: boolean;
|
|
657
|
-
};
|
|
658
|
-
readonly: {
|
|
659
|
-
type: PropType<boolean>;
|
|
660
|
-
};
|
|
661
|
-
disabled: {
|
|
662
|
-
type: PropType<boolean>;
|
|
663
|
-
};
|
|
664
|
-
autofocus: {
|
|
665
|
-
type: PropType<boolean>;
|
|
666
|
-
};
|
|
667
|
-
keyboard: {
|
|
668
|
-
type: PropType<boolean>;
|
|
669
|
-
default: boolean;
|
|
670
|
-
};
|
|
671
|
-
parser: {
|
|
672
|
-
type: PropType<(displayValue: string) => import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
673
|
-
};
|
|
674
|
-
formatter: {
|
|
675
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
676
|
-
userTyping: boolean;
|
|
677
|
-
input: string;
|
|
678
|
-
}) => string>;
|
|
679
|
-
};
|
|
680
|
-
precision: {
|
|
681
|
-
type: PropType<number>;
|
|
682
|
-
};
|
|
683
|
-
decimalSeparator: {
|
|
684
|
-
type: PropType<string>;
|
|
685
|
-
};
|
|
686
|
-
onInput: {
|
|
687
|
-
type: PropType<(text: string) => void>;
|
|
688
|
-
};
|
|
689
|
-
onChange: {
|
|
690
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
691
|
-
};
|
|
692
|
-
onPressEnter: {
|
|
693
|
-
type: PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
|
|
694
|
-
};
|
|
695
|
-
onStep: {
|
|
696
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
697
|
-
offset: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
698
|
-
type: "down" | "up";
|
|
699
|
-
}) => void>;
|
|
700
|
-
};
|
|
701
|
-
onBlur: {
|
|
702
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
703
|
-
};
|
|
704
|
-
onFocus: {
|
|
705
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
706
|
-
};
|
|
707
|
-
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
708
|
-
[key: string]: any;
|
|
709
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
710
|
-
step: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
711
|
-
bordered: boolean;
|
|
712
|
-
keyboard: boolean;
|
|
713
|
-
controls: boolean;
|
|
714
|
-
}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
715
|
-
install: (app: import("vue").App<any>) => import("vue").App<any>;
|
|
295
|
+
default: string;
|
|
716
296
|
};
|
|
717
|
-
}
|
|
718
|
-
|
|
297
|
+
}>> & Readonly<{}>, {
|
|
298
|
+
theme: string;
|
|
299
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
300
|
+
ConditionalProperty: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
301
|
+
theme: {
|
|
302
|
+
type: StringConstructor;
|
|
303
|
+
default: string;
|
|
304
|
+
};
|
|
305
|
+
}>, {
|
|
719
306
|
visible: import("vue").Ref<boolean, boolean>;
|
|
720
307
|
config: import("vue").Ref<any[], any[]>;
|
|
721
308
|
changeSelectedItem: (index: any) => void;
|
|
@@ -723,12 +310,23 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
723
310
|
selectedIndex: import("vue").Ref<number, number>;
|
|
724
311
|
handleOk: () => void;
|
|
725
312
|
handleClear: () => void;
|
|
726
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<
|
|
313
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
314
|
+
theme: {
|
|
315
|
+
type: StringConstructor;
|
|
316
|
+
default: string;
|
|
317
|
+
};
|
|
318
|
+
}>> & Readonly<{}>, {
|
|
319
|
+
theme: string;
|
|
320
|
+
}, {}, {
|
|
727
321
|
ConditionalItemConfig: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
728
322
|
config: {
|
|
729
323
|
type: ArrayConstructor;
|
|
730
324
|
default(): any[];
|
|
731
325
|
};
|
|
326
|
+
theme: {
|
|
327
|
+
type: StringConstructor;
|
|
328
|
+
default: string;
|
|
329
|
+
};
|
|
732
330
|
}>, {
|
|
733
331
|
modalType: import("vue").Ref<string, string>;
|
|
734
332
|
visible: import("vue").Ref<boolean, boolean>;
|
|
@@ -738,12 +336,18 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
738
336
|
handleOk: () => void;
|
|
739
337
|
editItem: () => void;
|
|
740
338
|
deleteItem: () => void;
|
|
339
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
741
340
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
742
341
|
config: {
|
|
743
342
|
type: ArrayConstructor;
|
|
744
343
|
default(): any[];
|
|
745
344
|
};
|
|
345
|
+
theme: {
|
|
346
|
+
type: StringConstructor;
|
|
347
|
+
default: string;
|
|
348
|
+
};
|
|
746
349
|
}>> & Readonly<{}>, {
|
|
350
|
+
theme: string;
|
|
747
351
|
config: unknown[];
|
|
748
352
|
}, {}, {
|
|
749
353
|
PlusCircleOutlined: import("@ant-design/icons-vue/lib/icons/PlusCircleOutlined").PlusCircleOutlinedIconType;
|
|
@@ -758,6 +362,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
758
362
|
isSelected: {
|
|
759
363
|
type: BooleanConstructor;
|
|
760
364
|
};
|
|
365
|
+
theme: {
|
|
366
|
+
type: StringConstructor;
|
|
367
|
+
default: string;
|
|
368
|
+
};
|
|
761
369
|
}>, {
|
|
762
370
|
modalType: import("vue").Ref<string, string>;
|
|
763
371
|
visible: import("vue").Ref<boolean, boolean>;
|
|
@@ -788,6 +396,8 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
788
396
|
};
|
|
789
397
|
formRef: import("vue").Ref<any, any>;
|
|
790
398
|
conditionTitle: import("vue").ComputedRef<(item: any) => string>;
|
|
399
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
400
|
+
getPopupContainer: () => Element;
|
|
791
401
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
792
402
|
config: {
|
|
793
403
|
type: ArrayConstructor;
|
|
@@ -796,7 +406,12 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
796
406
|
isSelected: {
|
|
797
407
|
type: BooleanConstructor;
|
|
798
408
|
};
|
|
409
|
+
theme: {
|
|
410
|
+
type: StringConstructor;
|
|
411
|
+
default: string;
|
|
412
|
+
};
|
|
799
413
|
}>> & Readonly<{}>, {
|
|
414
|
+
theme: string;
|
|
800
415
|
config: unknown[];
|
|
801
416
|
isSelected: boolean;
|
|
802
417
|
}, {}, {
|
|
@@ -812,6 +427,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
812
427
|
selectedIndex: {
|
|
813
428
|
type: BooleanConstructor;
|
|
814
429
|
};
|
|
430
|
+
theme: {
|
|
431
|
+
type: StringConstructor;
|
|
432
|
+
default: string;
|
|
433
|
+
};
|
|
815
434
|
}>, {
|
|
816
435
|
formConfig: ({
|
|
817
436
|
label: string;
|
|
@@ -832,6 +451,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
832
451
|
handleSelect: (e: any, key: any) => void;
|
|
833
452
|
selectedProperty: import("vue").Ref<any[], any[]>;
|
|
834
453
|
onChange: (key: any, value: any) => void;
|
|
454
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
835
455
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
836
456
|
config: {
|
|
837
457
|
type: ObjectConstructor;
|
|
@@ -840,7 +460,12 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
840
460
|
selectedIndex: {
|
|
841
461
|
type: BooleanConstructor;
|
|
842
462
|
};
|
|
463
|
+
theme: {
|
|
464
|
+
type: StringConstructor;
|
|
465
|
+
default: string;
|
|
466
|
+
};
|
|
843
467
|
}>> & Readonly<{}>, {
|
|
468
|
+
theme: string;
|
|
844
469
|
config: Record<string, any>;
|
|
845
470
|
selectedIndex: boolean;
|
|
846
471
|
}, {}, {
|
|
@@ -4130,7 +3755,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
4130
3755
|
toPopupContainer: import("vue").ComputedRef<string | HTMLElement>;
|
|
4131
3756
|
formatValue: import("vue").Ref<import("vue-pick-colors").Format, import("vue-pick-colors").Format>;
|
|
4132
3757
|
onFormatChange: (format: import("vue-pick-colors").Format) => void;
|
|
4133
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
3758
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "formatChange" | "update:value" | "update:showPicker" | "overflowMax" | "closePicker")[], "change" | "formatChange" | "update:value" | "update:showPicker" | "overflowMax" | "closePicker", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4134
3759
|
value: {
|
|
4135
3760
|
type: PropType<string | string[]>;
|
|
4136
3761
|
};
|
|
@@ -7960,11 +7585,23 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7960
7585
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7961
7586
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7962
7587
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7963
|
-
ChartModal: import("vue").DefineComponent<{
|
|
7588
|
+
ChartModal: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7589
|
+
theme: {
|
|
7590
|
+
type: StringConstructor;
|
|
7591
|
+
default: string;
|
|
7592
|
+
};
|
|
7593
|
+
}>, {
|
|
7964
7594
|
visible: import("vue").Ref<boolean, boolean>;
|
|
7965
7595
|
chartOptions: import("vue").Ref<{}, {}>;
|
|
7966
7596
|
chartRef: import("vue").Ref<any, any>;
|
|
7967
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<
|
|
7597
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7598
|
+
theme: {
|
|
7599
|
+
type: StringConstructor;
|
|
7600
|
+
default: string;
|
|
7601
|
+
};
|
|
7602
|
+
}>> & Readonly<{}>, {
|
|
7603
|
+
theme: string;
|
|
7604
|
+
}, {}, {
|
|
7968
7605
|
PivotChart: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7969
7606
|
data: {
|
|
7970
7607
|
type: ObjectConstructor;
|
|
@@ -7974,6 +7611,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7974
7611
|
yLabel: string;
|
|
7975
7612
|
};
|
|
7976
7613
|
};
|
|
7614
|
+
theme: {
|
|
7615
|
+
type: StringConstructor;
|
|
7616
|
+
default: string;
|
|
7617
|
+
};
|
|
7977
7618
|
}>, {
|
|
7978
7619
|
echartRef: import("vue").Ref<any, any>;
|
|
7979
7620
|
dropdownList: import("vue").Ref<any[], any[]>;
|
|
@@ -7996,6 +7637,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7996
7637
|
checkKeys: any;
|
|
7997
7638
|
type: any;
|
|
7998
7639
|
}) => void;
|
|
7640
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
7999
7641
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8000
7642
|
data: {
|
|
8001
7643
|
type: ObjectConstructor;
|
|
@@ -8005,8 +7647,13 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
8005
7647
|
yLabel: string;
|
|
8006
7648
|
};
|
|
8007
7649
|
};
|
|
7650
|
+
theme: {
|
|
7651
|
+
type: StringConstructor;
|
|
7652
|
+
default: string;
|
|
7653
|
+
};
|
|
8008
7654
|
}>> & Readonly<{}>, {
|
|
8009
7655
|
data: Record<string, any>;
|
|
7656
|
+
theme: string;
|
|
8010
7657
|
}, {}, {
|
|
8011
7658
|
FilterOutlined: import("@ant-design/icons-vue/lib/icons/FilterOutlined").FilterOutlinedIconType;
|
|
8012
7659
|
MinusSquareOutlined: import("@ant-design/icons-vue/lib/icons/MinusSquareOutlined").MinusSquareOutlinedIconType;
|
|
@@ -8015,6 +7662,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
8015
7662
|
type: ObjectConstructor;
|
|
8016
7663
|
default: () => void;
|
|
8017
7664
|
};
|
|
7665
|
+
theme: {
|
|
7666
|
+
type: StringConstructor;
|
|
7667
|
+
default: string;
|
|
7668
|
+
};
|
|
8018
7669
|
}>, {
|
|
8019
7670
|
visible: import("vue").Ref<boolean, boolean>;
|
|
8020
7671
|
checkAllDimensions: import("vue").Ref<boolean, boolean>;
|
|
@@ -8027,20 +7678,32 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
8027
7678
|
}[];
|
|
8028
7679
|
filterValue: import("vue").Ref<string, string>;
|
|
8029
7680
|
searchDimName: import("vue").Ref<string, string>;
|
|
7681
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
8030
7682
|
handleOk: () => void;
|
|
8031
7683
|
onCheckAllDimChange: (e: any) => void;
|
|
8032
7684
|
handleClear: () => void;
|
|
7685
|
+
getPopupContainer: () => Element;
|
|
8033
7686
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8034
7687
|
data: {
|
|
8035
7688
|
type: ObjectConstructor;
|
|
8036
7689
|
default: () => void;
|
|
8037
7690
|
};
|
|
7691
|
+
theme: {
|
|
7692
|
+
type: StringConstructor;
|
|
7693
|
+
default: string;
|
|
7694
|
+
};
|
|
8038
7695
|
}>> & Readonly<{}>, {
|
|
8039
7696
|
data: Record<string, any>;
|
|
7697
|
+
theme: string;
|
|
8040
7698
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8041
7699
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8042
7700
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8043
|
-
PivotAggregate: import("vue").DefineComponent<{
|
|
7701
|
+
PivotAggregate: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7702
|
+
theme: {
|
|
7703
|
+
type: StringConstructor;
|
|
7704
|
+
default: string;
|
|
7705
|
+
};
|
|
7706
|
+
}>, {
|
|
8044
7707
|
visible: import("vue").Ref<boolean, boolean>;
|
|
8045
7708
|
aggregationType: import("vue").Ref<any[], any[]>;
|
|
8046
7709
|
options: {
|
|
@@ -8048,11 +7711,31 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
8048
7711
|
value: string;
|
|
8049
7712
|
}[];
|
|
8050
7713
|
handleOk: () => void;
|
|
8051
|
-
|
|
8052
|
-
|
|
7714
|
+
getPopupContainer: () => Element;
|
|
7715
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7716
|
+
theme: {
|
|
7717
|
+
type: StringConstructor;
|
|
7718
|
+
default: string;
|
|
7719
|
+
};
|
|
7720
|
+
}>> & Readonly<{}>, {
|
|
7721
|
+
theme: string;
|
|
7722
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7723
|
+
PivotTop: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7724
|
+
theme: {
|
|
7725
|
+
type: StringConstructor;
|
|
7726
|
+
default: string;
|
|
7727
|
+
};
|
|
7728
|
+
}>, {
|
|
8053
7729
|
visible: import("vue").Ref<boolean, boolean>;
|
|
8054
7730
|
topNum: import("vue").Ref<string, string>;
|
|
8055
7731
|
handleOk: () => void;
|
|
8056
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<
|
|
7732
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7733
|
+
theme: {
|
|
7734
|
+
type: StringConstructor;
|
|
7735
|
+
default: string;
|
|
7736
|
+
};
|
|
7737
|
+
}>> & Readonly<{}>, {
|
|
7738
|
+
theme: string;
|
|
7739
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8057
7740
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8058
7741
|
export default _sfc_main;
|