@ecan-bi/pivot-table 1.0.10 → 1.0.12
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 +15396 -11455
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +34 -34
- 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 +154 -464
- 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
- package/types/pivotTable/register.d.ts +1 -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,7 +82,14 @@ 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
|
}>, {
|
|
90
|
+
dropDownMenuColor: import("vue").ComputedRef<any>;
|
|
91
|
+
dropDownMenuBgColor: import("vue").ComputedRef<any>;
|
|
92
|
+
styleData: import("vue").ComputedRef<any>;
|
|
86
93
|
subMenuLeft: import("vue").Ref<string, string>;
|
|
87
94
|
subMenuTop: import("vue").Ref<string, string>;
|
|
88
95
|
pivotTableRef: import("vue").Ref<any, any>;
|
|
@@ -103,7 +110,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
103
110
|
}) => void;
|
|
104
111
|
handleFormat: (config: any) => void;
|
|
105
112
|
handleCondition: (indicatorKey: string, config?: any[]) => void;
|
|
106
|
-
handleAggregate: (types: string[]) => void;
|
|
113
|
+
handleAggregate: (types: string[], key: string) => void;
|
|
107
114
|
handleGetTop: (data: any) => void;
|
|
108
115
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
109
116
|
id: {
|
|
@@ -188,17 +195,22 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
188
195
|
}>;
|
|
189
196
|
default: () => {};
|
|
190
197
|
};
|
|
198
|
+
theme: {
|
|
199
|
+
type: StringConstructor;
|
|
200
|
+
default: string;
|
|
201
|
+
};
|
|
191
202
|
}>> & Readonly<{}>, {
|
|
192
203
|
data: unknown[];
|
|
193
204
|
type: string;
|
|
205
|
+
theme: string;
|
|
194
206
|
name: string;
|
|
195
207
|
position: string;
|
|
196
208
|
top: string;
|
|
197
209
|
left: string;
|
|
198
|
-
id: string;
|
|
199
210
|
width: string;
|
|
200
211
|
height: string;
|
|
201
212
|
zIndex: number;
|
|
213
|
+
id: string;
|
|
202
214
|
keyName: string;
|
|
203
215
|
events: unknown[];
|
|
204
216
|
dataType: string;
|
|
@@ -217,6 +229,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
217
229
|
type: ObjectConstructor;
|
|
218
230
|
default: () => void;
|
|
219
231
|
};
|
|
232
|
+
theme: {
|
|
233
|
+
type: StringConstructor;
|
|
234
|
+
default: string;
|
|
235
|
+
};
|
|
220
236
|
}>, {
|
|
221
237
|
visible: import("vue").Ref<boolean, boolean>;
|
|
222
238
|
checkAllDimensions: import("vue").Ref<boolean, boolean>;
|
|
@@ -229,18 +245,30 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
229
245
|
}[];
|
|
230
246
|
filterValue: import("vue").Ref<string, string>;
|
|
231
247
|
searchDimName: import("vue").Ref<string, string>;
|
|
248
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
232
249
|
handleOk: () => void;
|
|
233
250
|
onCheckAllDimChange: (e: any) => void;
|
|
234
251
|
handleClear: () => void;
|
|
252
|
+
getPopupContainer: () => Element;
|
|
235
253
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
236
254
|
data: {
|
|
237
255
|
type: ObjectConstructor;
|
|
238
256
|
default: () => void;
|
|
239
257
|
};
|
|
258
|
+
theme: {
|
|
259
|
+
type: StringConstructor;
|
|
260
|
+
default: string;
|
|
261
|
+
};
|
|
240
262
|
}>> & Readonly<{}>, {
|
|
241
263
|
data: Record<string, any>;
|
|
264
|
+
theme: string;
|
|
242
265
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
243
|
-
PivotProperty: import("vue").DefineComponent<{
|
|
266
|
+
PivotProperty: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
267
|
+
theme: {
|
|
268
|
+
type: StringConstructor;
|
|
269
|
+
default: string;
|
|
270
|
+
};
|
|
271
|
+
}>, {
|
|
244
272
|
visible: import("vue").Ref<boolean, boolean>;
|
|
245
273
|
formData: import("vue").Ref<{
|
|
246
274
|
unit: string;
|
|
@@ -256,463 +284,25 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
256
284
|
floatLength: string;
|
|
257
285
|
}>;
|
|
258
286
|
handleOk: () => void;
|
|
287
|
+
getPopupContainer: () => Element;
|
|
259
288
|
formatOptions: {
|
|
260
289
|
label: string;
|
|
261
290
|
value: string;
|
|
262
291
|
}[];
|
|
263
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<
|
|
264
|
-
|
|
265
|
-
new (...args: any[]): {
|
|
266
|
-
$: import("vue").ComponentInternalInstance;
|
|
267
|
-
$data: {};
|
|
268
|
-
$props: Partial<{
|
|
269
|
-
step: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
270
|
-
bordered: boolean;
|
|
271
|
-
keyboard: boolean;
|
|
272
|
-
controls: boolean;
|
|
273
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
274
|
-
size: {
|
|
275
|
-
type: PropType<import("ant-design-vue/lib/button").ButtonSize>;
|
|
276
|
-
};
|
|
277
|
-
bordered: {
|
|
278
|
-
type: BooleanConstructor;
|
|
279
|
-
default: boolean;
|
|
280
|
-
};
|
|
281
|
-
placeholder: StringConstructor;
|
|
282
|
-
name: StringConstructor;
|
|
283
|
-
id: StringConstructor;
|
|
284
|
-
type: StringConstructor;
|
|
285
|
-
addonBefore: import("vue-types").VueTypeValidableDef<any>;
|
|
286
|
-
addonAfter: import("vue-types").VueTypeValidableDef<any>;
|
|
287
|
-
prefix: import("vue-types").VueTypeValidableDef<any>;
|
|
288
|
-
'update:value': {
|
|
289
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
290
|
-
};
|
|
291
|
-
stringMode: {
|
|
292
|
-
type: PropType<boolean>;
|
|
293
|
-
};
|
|
294
|
-
defaultValue: {
|
|
295
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
296
|
-
};
|
|
297
|
-
value: {
|
|
298
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
299
|
-
};
|
|
300
|
-
prefixCls: {
|
|
301
|
-
type: PropType<string>;
|
|
302
|
-
};
|
|
303
|
-
min: {
|
|
304
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
305
|
-
};
|
|
306
|
-
max: {
|
|
307
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
308
|
-
};
|
|
309
|
-
step: {
|
|
310
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
311
|
-
default: number;
|
|
312
|
-
};
|
|
313
|
-
tabindex: {
|
|
314
|
-
type: PropType<number>;
|
|
315
|
-
};
|
|
316
|
-
controls: {
|
|
317
|
-
type: PropType<boolean>;
|
|
318
|
-
default: boolean;
|
|
319
|
-
};
|
|
320
|
-
readonly: {
|
|
321
|
-
type: PropType<boolean>;
|
|
322
|
-
};
|
|
323
|
-
disabled: {
|
|
324
|
-
type: PropType<boolean>;
|
|
325
|
-
};
|
|
326
|
-
autofocus: {
|
|
327
|
-
type: PropType<boolean>;
|
|
328
|
-
};
|
|
329
|
-
keyboard: {
|
|
330
|
-
type: PropType<boolean>;
|
|
331
|
-
default: boolean;
|
|
332
|
-
};
|
|
333
|
-
parser: {
|
|
334
|
-
type: PropType<(displayValue: string) => import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
335
|
-
};
|
|
336
|
-
formatter: {
|
|
337
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
338
|
-
userTyping: boolean;
|
|
339
|
-
input: string;
|
|
340
|
-
}) => string>;
|
|
341
|
-
};
|
|
342
|
-
precision: {
|
|
343
|
-
type: PropType<number>;
|
|
344
|
-
};
|
|
345
|
-
decimalSeparator: {
|
|
346
|
-
type: PropType<string>;
|
|
347
|
-
};
|
|
348
|
-
onInput: {
|
|
349
|
-
type: PropType<(text: string) => void>;
|
|
350
|
-
};
|
|
351
|
-
onChange: {
|
|
352
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
353
|
-
};
|
|
354
|
-
onPressEnter: {
|
|
355
|
-
type: PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
|
|
356
|
-
};
|
|
357
|
-
onStep: {
|
|
358
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
359
|
-
offset: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
360
|
-
type: "down" | "up";
|
|
361
|
-
}) => void>;
|
|
362
|
-
};
|
|
363
|
-
onBlur: {
|
|
364
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
365
|
-
};
|
|
366
|
-
onFocus: {
|
|
367
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
368
|
-
};
|
|
369
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "bordered" | "step" | "controls" | "keyboard">;
|
|
370
|
-
$attrs: {
|
|
371
|
-
[x: string]: unknown;
|
|
372
|
-
};
|
|
373
|
-
$refs: {
|
|
374
|
-
[x: string]: unknown;
|
|
375
|
-
};
|
|
376
|
-
$slots: Readonly<{
|
|
377
|
-
[name: string]: import("vue").Slot<any>;
|
|
378
|
-
}>;
|
|
379
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>;
|
|
380
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>;
|
|
381
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
382
|
-
$el: any;
|
|
383
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
384
|
-
size: {
|
|
385
|
-
type: PropType<import("ant-design-vue/lib/button").ButtonSize>;
|
|
386
|
-
};
|
|
387
|
-
bordered: {
|
|
388
|
-
type: BooleanConstructor;
|
|
389
|
-
default: boolean;
|
|
390
|
-
};
|
|
391
|
-
placeholder: StringConstructor;
|
|
392
|
-
name: StringConstructor;
|
|
393
|
-
id: StringConstructor;
|
|
394
|
-
type: StringConstructor;
|
|
395
|
-
addonBefore: import("vue-types").VueTypeValidableDef<any>;
|
|
396
|
-
addonAfter: import("vue-types").VueTypeValidableDef<any>;
|
|
397
|
-
prefix: import("vue-types").VueTypeValidableDef<any>;
|
|
398
|
-
'update:value': {
|
|
399
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
400
|
-
};
|
|
401
|
-
stringMode: {
|
|
402
|
-
type: PropType<boolean>;
|
|
403
|
-
};
|
|
404
|
-
defaultValue: {
|
|
405
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
406
|
-
};
|
|
407
|
-
value: {
|
|
408
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
409
|
-
};
|
|
410
|
-
prefixCls: {
|
|
411
|
-
type: PropType<string>;
|
|
412
|
-
};
|
|
413
|
-
min: {
|
|
414
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
415
|
-
};
|
|
416
|
-
max: {
|
|
417
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
418
|
-
};
|
|
419
|
-
step: {
|
|
420
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
421
|
-
default: number;
|
|
422
|
-
};
|
|
423
|
-
tabindex: {
|
|
424
|
-
type: PropType<number>;
|
|
425
|
-
};
|
|
426
|
-
controls: {
|
|
427
|
-
type: PropType<boolean>;
|
|
428
|
-
default: boolean;
|
|
429
|
-
};
|
|
430
|
-
readonly: {
|
|
431
|
-
type: PropType<boolean>;
|
|
432
|
-
};
|
|
433
|
-
disabled: {
|
|
434
|
-
type: PropType<boolean>;
|
|
435
|
-
};
|
|
436
|
-
autofocus: {
|
|
437
|
-
type: PropType<boolean>;
|
|
438
|
-
};
|
|
439
|
-
keyboard: {
|
|
440
|
-
type: PropType<boolean>;
|
|
441
|
-
default: boolean;
|
|
442
|
-
};
|
|
443
|
-
parser: {
|
|
444
|
-
type: PropType<(displayValue: string) => import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
445
|
-
};
|
|
446
|
-
formatter: {
|
|
447
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
448
|
-
userTyping: boolean;
|
|
449
|
-
input: string;
|
|
450
|
-
}) => string>;
|
|
451
|
-
};
|
|
452
|
-
precision: {
|
|
453
|
-
type: PropType<number>;
|
|
454
|
-
};
|
|
455
|
-
decimalSeparator: {
|
|
456
|
-
type: PropType<string>;
|
|
457
|
-
};
|
|
458
|
-
onInput: {
|
|
459
|
-
type: PropType<(text: string) => void>;
|
|
460
|
-
};
|
|
461
|
-
onChange: {
|
|
462
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
463
|
-
};
|
|
464
|
-
onPressEnter: {
|
|
465
|
-
type: PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
|
|
466
|
-
};
|
|
467
|
-
onStep: {
|
|
468
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
469
|
-
offset: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
470
|
-
type: "down" | "up";
|
|
471
|
-
}) => void>;
|
|
472
|
-
};
|
|
473
|
-
onBlur: {
|
|
474
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
475
|
-
};
|
|
476
|
-
onFocus: {
|
|
477
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
478
|
-
};
|
|
479
|
-
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
480
|
-
[key: string]: any;
|
|
481
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
482
|
-
step: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
483
|
-
bordered: boolean;
|
|
484
|
-
keyboard: boolean;
|
|
485
|
-
controls: boolean;
|
|
486
|
-
}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> & {
|
|
487
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
488
|
-
created?: (() => void) | (() => void)[];
|
|
489
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
490
|
-
mounted?: (() => void) | (() => void)[];
|
|
491
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
492
|
-
updated?: (() => void) | (() => void)[];
|
|
493
|
-
activated?: (() => void) | (() => void)[];
|
|
494
|
-
deactivated?: (() => void) | (() => void)[];
|
|
495
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
496
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
497
|
-
destroyed?: (() => void) | (() => void)[];
|
|
498
|
-
unmounted?: (() => void) | (() => void)[];
|
|
499
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
500
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
501
|
-
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)[];
|
|
502
|
-
};
|
|
503
|
-
$forceUpdate: () => void;
|
|
504
|
-
$nextTick: typeof nextTick;
|
|
505
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
506
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
507
|
-
size: {
|
|
508
|
-
type: PropType<import("ant-design-vue/lib/button").ButtonSize>;
|
|
509
|
-
};
|
|
510
|
-
bordered: {
|
|
511
|
-
type: BooleanConstructor;
|
|
512
|
-
default: boolean;
|
|
513
|
-
};
|
|
514
|
-
placeholder: StringConstructor;
|
|
515
|
-
name: StringConstructor;
|
|
516
|
-
id: StringConstructor;
|
|
517
|
-
type: StringConstructor;
|
|
518
|
-
addonBefore: import("vue-types").VueTypeValidableDef<any>;
|
|
519
|
-
addonAfter: import("vue-types").VueTypeValidableDef<any>;
|
|
520
|
-
prefix: import("vue-types").VueTypeValidableDef<any>;
|
|
521
|
-
'update:value': {
|
|
522
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
523
|
-
};
|
|
524
|
-
stringMode: {
|
|
525
|
-
type: PropType<boolean>;
|
|
526
|
-
};
|
|
527
|
-
defaultValue: {
|
|
528
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
529
|
-
};
|
|
530
|
-
value: {
|
|
531
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
532
|
-
};
|
|
533
|
-
prefixCls: {
|
|
534
|
-
type: PropType<string>;
|
|
535
|
-
};
|
|
536
|
-
min: {
|
|
537
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
538
|
-
};
|
|
539
|
-
max: {
|
|
540
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
541
|
-
};
|
|
542
|
-
step: {
|
|
543
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
544
|
-
default: number;
|
|
545
|
-
};
|
|
546
|
-
tabindex: {
|
|
547
|
-
type: PropType<number>;
|
|
548
|
-
};
|
|
549
|
-
controls: {
|
|
550
|
-
type: PropType<boolean>;
|
|
551
|
-
default: boolean;
|
|
552
|
-
};
|
|
553
|
-
readonly: {
|
|
554
|
-
type: PropType<boolean>;
|
|
555
|
-
};
|
|
556
|
-
disabled: {
|
|
557
|
-
type: PropType<boolean>;
|
|
558
|
-
};
|
|
559
|
-
autofocus: {
|
|
560
|
-
type: PropType<boolean>;
|
|
561
|
-
};
|
|
562
|
-
keyboard: {
|
|
563
|
-
type: PropType<boolean>;
|
|
564
|
-
default: boolean;
|
|
565
|
-
};
|
|
566
|
-
parser: {
|
|
567
|
-
type: PropType<(displayValue: string) => import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
568
|
-
};
|
|
569
|
-
formatter: {
|
|
570
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
571
|
-
userTyping: boolean;
|
|
572
|
-
input: string;
|
|
573
|
-
}) => string>;
|
|
574
|
-
};
|
|
575
|
-
precision: {
|
|
576
|
-
type: PropType<number>;
|
|
577
|
-
};
|
|
578
|
-
decimalSeparator: {
|
|
579
|
-
type: PropType<string>;
|
|
580
|
-
};
|
|
581
|
-
onInput: {
|
|
582
|
-
type: PropType<(text: string) => void>;
|
|
583
|
-
};
|
|
584
|
-
onChange: {
|
|
585
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
586
|
-
};
|
|
587
|
-
onPressEnter: {
|
|
588
|
-
type: PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
|
|
589
|
-
};
|
|
590
|
-
onStep: {
|
|
591
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
592
|
-
offset: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
593
|
-
type: "down" | "up";
|
|
594
|
-
}) => void>;
|
|
595
|
-
};
|
|
596
|
-
onBlur: {
|
|
597
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
598
|
-
};
|
|
599
|
-
onFocus: {
|
|
600
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
601
|
-
};
|
|
602
|
-
}>> & import("vue").ShallowUnwrapRef<() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
603
|
-
[key: string]: any;
|
|
604
|
-
}>> & import("vue").ComponentCustomProperties;
|
|
605
|
-
__isFragment?: never;
|
|
606
|
-
__isTeleport?: never;
|
|
607
|
-
__isSuspense?: never;
|
|
608
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
609
|
-
size: {
|
|
610
|
-
type: PropType<import("ant-design-vue/lib/button").ButtonSize>;
|
|
611
|
-
};
|
|
612
|
-
bordered: {
|
|
613
|
-
type: BooleanConstructor;
|
|
614
|
-
default: boolean;
|
|
615
|
-
};
|
|
616
|
-
placeholder: StringConstructor;
|
|
617
|
-
name: StringConstructor;
|
|
618
|
-
id: StringConstructor;
|
|
292
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
293
|
+
theme: {
|
|
619
294
|
type: StringConstructor;
|
|
620
|
-
|
|
621
|
-
addonAfter: import("vue-types").VueTypeValidableDef<any>;
|
|
622
|
-
prefix: import("vue-types").VueTypeValidableDef<any>;
|
|
623
|
-
'update:value': {
|
|
624
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
625
|
-
};
|
|
626
|
-
stringMode: {
|
|
627
|
-
type: PropType<boolean>;
|
|
628
|
-
};
|
|
629
|
-
defaultValue: {
|
|
630
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
631
|
-
};
|
|
632
|
-
value: {
|
|
633
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
634
|
-
};
|
|
635
|
-
prefixCls: {
|
|
636
|
-
type: PropType<string>;
|
|
637
|
-
};
|
|
638
|
-
min: {
|
|
639
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
640
|
-
};
|
|
641
|
-
max: {
|
|
642
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
643
|
-
};
|
|
644
|
-
step: {
|
|
645
|
-
type: PropType<import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
646
|
-
default: number;
|
|
647
|
-
};
|
|
648
|
-
tabindex: {
|
|
649
|
-
type: PropType<number>;
|
|
650
|
-
};
|
|
651
|
-
controls: {
|
|
652
|
-
type: PropType<boolean>;
|
|
653
|
-
default: boolean;
|
|
654
|
-
};
|
|
655
|
-
readonly: {
|
|
656
|
-
type: PropType<boolean>;
|
|
657
|
-
};
|
|
658
|
-
disabled: {
|
|
659
|
-
type: PropType<boolean>;
|
|
660
|
-
};
|
|
661
|
-
autofocus: {
|
|
662
|
-
type: PropType<boolean>;
|
|
663
|
-
};
|
|
664
|
-
keyboard: {
|
|
665
|
-
type: PropType<boolean>;
|
|
666
|
-
default: boolean;
|
|
667
|
-
};
|
|
668
|
-
parser: {
|
|
669
|
-
type: PropType<(displayValue: string) => import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType>;
|
|
670
|
-
};
|
|
671
|
-
formatter: {
|
|
672
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
673
|
-
userTyping: boolean;
|
|
674
|
-
input: string;
|
|
675
|
-
}) => string>;
|
|
676
|
-
};
|
|
677
|
-
precision: {
|
|
678
|
-
type: PropType<number>;
|
|
679
|
-
};
|
|
680
|
-
decimalSeparator: {
|
|
681
|
-
type: PropType<string>;
|
|
682
|
-
};
|
|
683
|
-
onInput: {
|
|
684
|
-
type: PropType<(text: string) => void>;
|
|
685
|
-
};
|
|
686
|
-
onChange: {
|
|
687
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType) => void>;
|
|
688
|
-
};
|
|
689
|
-
onPressEnter: {
|
|
690
|
-
type: PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
|
|
691
|
-
};
|
|
692
|
-
onStep: {
|
|
693
|
-
type: PropType<(value: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType, info: {
|
|
694
|
-
offset: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
695
|
-
type: "down" | "up";
|
|
696
|
-
}) => void>;
|
|
697
|
-
};
|
|
698
|
-
onBlur: {
|
|
699
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
700
|
-
};
|
|
701
|
-
onFocus: {
|
|
702
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
703
|
-
};
|
|
704
|
-
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
705
|
-
[key: string]: any;
|
|
706
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
707
|
-
step: import("ant-design-vue/lib/input-number/src/utils/MiniDecimal").ValueType;
|
|
708
|
-
bordered: boolean;
|
|
709
|
-
keyboard: boolean;
|
|
710
|
-
controls: boolean;
|
|
711
|
-
}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
712
|
-
install: (app: import("vue").App<any>) => import("vue").App<any>;
|
|
295
|
+
default: string;
|
|
713
296
|
};
|
|
714
|
-
}
|
|
715
|
-
|
|
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
|
+
}>, {
|
|
716
306
|
visible: import("vue").Ref<boolean, boolean>;
|
|
717
307
|
config: import("vue").Ref<any[], any[]>;
|
|
718
308
|
changeSelectedItem: (index: any) => void;
|
|
@@ -720,12 +310,23 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
720
310
|
selectedIndex: import("vue").Ref<number, number>;
|
|
721
311
|
handleOk: () => void;
|
|
722
312
|
handleClear: () => void;
|
|
723
|
-
}, {}, {}, {}, 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
|
+
}, {}, {
|
|
724
321
|
ConditionalItemConfig: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
725
322
|
config: {
|
|
726
323
|
type: ArrayConstructor;
|
|
727
324
|
default(): any[];
|
|
728
325
|
};
|
|
326
|
+
theme: {
|
|
327
|
+
type: StringConstructor;
|
|
328
|
+
default: string;
|
|
329
|
+
};
|
|
729
330
|
}>, {
|
|
730
331
|
modalType: import("vue").Ref<string, string>;
|
|
731
332
|
visible: import("vue").Ref<boolean, boolean>;
|
|
@@ -735,12 +336,18 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
735
336
|
handleOk: () => void;
|
|
736
337
|
editItem: () => void;
|
|
737
338
|
deleteItem: () => void;
|
|
339
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
738
340
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
739
341
|
config: {
|
|
740
342
|
type: ArrayConstructor;
|
|
741
343
|
default(): any[];
|
|
742
344
|
};
|
|
345
|
+
theme: {
|
|
346
|
+
type: StringConstructor;
|
|
347
|
+
default: string;
|
|
348
|
+
};
|
|
743
349
|
}>> & Readonly<{}>, {
|
|
350
|
+
theme: string;
|
|
744
351
|
config: unknown[];
|
|
745
352
|
}, {}, {
|
|
746
353
|
PlusCircleOutlined: import("@ant-design/icons-vue/lib/icons/PlusCircleOutlined").PlusCircleOutlinedIconType;
|
|
@@ -755,6 +362,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
755
362
|
isSelected: {
|
|
756
363
|
type: BooleanConstructor;
|
|
757
364
|
};
|
|
365
|
+
theme: {
|
|
366
|
+
type: StringConstructor;
|
|
367
|
+
default: string;
|
|
368
|
+
};
|
|
758
369
|
}>, {
|
|
759
370
|
modalType: import("vue").Ref<string, string>;
|
|
760
371
|
visible: import("vue").Ref<boolean, boolean>;
|
|
@@ -785,6 +396,8 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
785
396
|
};
|
|
786
397
|
formRef: import("vue").Ref<any, any>;
|
|
787
398
|
conditionTitle: import("vue").ComputedRef<(item: any) => string>;
|
|
399
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
400
|
+
getPopupContainer: () => Element;
|
|
788
401
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
789
402
|
config: {
|
|
790
403
|
type: ArrayConstructor;
|
|
@@ -793,7 +406,12 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
793
406
|
isSelected: {
|
|
794
407
|
type: BooleanConstructor;
|
|
795
408
|
};
|
|
409
|
+
theme: {
|
|
410
|
+
type: StringConstructor;
|
|
411
|
+
default: string;
|
|
412
|
+
};
|
|
796
413
|
}>> & Readonly<{}>, {
|
|
414
|
+
theme: string;
|
|
797
415
|
config: unknown[];
|
|
798
416
|
isSelected: boolean;
|
|
799
417
|
}, {}, {
|
|
@@ -809,6 +427,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
809
427
|
selectedIndex: {
|
|
810
428
|
type: BooleanConstructor;
|
|
811
429
|
};
|
|
430
|
+
theme: {
|
|
431
|
+
type: StringConstructor;
|
|
432
|
+
default: string;
|
|
433
|
+
};
|
|
812
434
|
}>, {
|
|
813
435
|
formConfig: ({
|
|
814
436
|
label: string;
|
|
@@ -829,6 +451,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
829
451
|
handleSelect: (e: any, key: any) => void;
|
|
830
452
|
selectedProperty: import("vue").Ref<any[], any[]>;
|
|
831
453
|
onChange: (key: any, value: any) => void;
|
|
454
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
832
455
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
833
456
|
config: {
|
|
834
457
|
type: ObjectConstructor;
|
|
@@ -837,7 +460,12 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
837
460
|
selectedIndex: {
|
|
838
461
|
type: BooleanConstructor;
|
|
839
462
|
};
|
|
463
|
+
theme: {
|
|
464
|
+
type: StringConstructor;
|
|
465
|
+
default: string;
|
|
466
|
+
};
|
|
840
467
|
}>> & Readonly<{}>, {
|
|
468
|
+
theme: string;
|
|
841
469
|
config: Record<string, any>;
|
|
842
470
|
selectedIndex: boolean;
|
|
843
471
|
}, {}, {
|
|
@@ -1080,7 +708,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
1080
708
|
fontVariant?: import("csstype").Property.FontVariant;
|
|
1081
709
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates;
|
|
1082
710
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps;
|
|
1083
|
-
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian;
|
|
711
|
+
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian; /**
|
|
712
|
+
* 获取指标的计算类型(计算指标的字段名:指标字段-计算类型)
|
|
713
|
+
* @param field 指标字段
|
|
714
|
+
* @param indicators 已有的指标字段 string[] | object[]
|
|
715
|
+
*/
|
|
1084
716
|
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji;
|
|
1085
717
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures;
|
|
1086
718
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric;
|
|
@@ -4127,7 +3759,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
4127
3759
|
toPopupContainer: import("vue").ComputedRef<string | HTMLElement>;
|
|
4128
3760
|
formatValue: import("vue").Ref<import("vue-pick-colors").Format, import("vue-pick-colors").Format>;
|
|
4129
3761
|
onFormatChange: (format: import("vue-pick-colors").Format) => void;
|
|
4130
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
3762
|
+
}, {}, {}, {}, 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<{
|
|
4131
3763
|
value: {
|
|
4132
3764
|
type: PropType<string | string[]>;
|
|
4133
3765
|
};
|
|
@@ -7957,11 +7589,23 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7957
7589
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7958
7590
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7959
7591
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7960
|
-
ChartModal: import("vue").DefineComponent<{
|
|
7592
|
+
ChartModal: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7593
|
+
theme: {
|
|
7594
|
+
type: StringConstructor;
|
|
7595
|
+
default: string;
|
|
7596
|
+
};
|
|
7597
|
+
}>, {
|
|
7961
7598
|
visible: import("vue").Ref<boolean, boolean>;
|
|
7962
7599
|
chartOptions: import("vue").Ref<{}, {}>;
|
|
7963
7600
|
chartRef: import("vue").Ref<any, any>;
|
|
7964
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<
|
|
7601
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7602
|
+
theme: {
|
|
7603
|
+
type: StringConstructor;
|
|
7604
|
+
default: string;
|
|
7605
|
+
};
|
|
7606
|
+
}>> & Readonly<{}>, {
|
|
7607
|
+
theme: string;
|
|
7608
|
+
}, {}, {
|
|
7965
7609
|
PivotChart: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7966
7610
|
data: {
|
|
7967
7611
|
type: ObjectConstructor;
|
|
@@ -7971,6 +7615,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7971
7615
|
yLabel: string;
|
|
7972
7616
|
};
|
|
7973
7617
|
};
|
|
7618
|
+
theme: {
|
|
7619
|
+
type: StringConstructor;
|
|
7620
|
+
default: string;
|
|
7621
|
+
};
|
|
7974
7622
|
}>, {
|
|
7975
7623
|
echartRef: import("vue").Ref<any, any>;
|
|
7976
7624
|
dropdownList: import("vue").Ref<any[], any[]>;
|
|
@@ -7993,6 +7641,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7993
7641
|
checkKeys: any;
|
|
7994
7642
|
type: any;
|
|
7995
7643
|
}) => void;
|
|
7644
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
7996
7645
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7997
7646
|
data: {
|
|
7998
7647
|
type: ObjectConstructor;
|
|
@@ -8002,8 +7651,13 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
8002
7651
|
yLabel: string;
|
|
8003
7652
|
};
|
|
8004
7653
|
};
|
|
7654
|
+
theme: {
|
|
7655
|
+
type: StringConstructor;
|
|
7656
|
+
default: string;
|
|
7657
|
+
};
|
|
8005
7658
|
}>> & Readonly<{}>, {
|
|
8006
7659
|
data: Record<string, any>;
|
|
7660
|
+
theme: string;
|
|
8007
7661
|
}, {}, {
|
|
8008
7662
|
FilterOutlined: import("@ant-design/icons-vue/lib/icons/FilterOutlined").FilterOutlinedIconType;
|
|
8009
7663
|
MinusSquareOutlined: import("@ant-design/icons-vue/lib/icons/MinusSquareOutlined").MinusSquareOutlinedIconType;
|
|
@@ -8012,6 +7666,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
8012
7666
|
type: ObjectConstructor;
|
|
8013
7667
|
default: () => void;
|
|
8014
7668
|
};
|
|
7669
|
+
theme: {
|
|
7670
|
+
type: StringConstructor;
|
|
7671
|
+
default: string;
|
|
7672
|
+
};
|
|
8015
7673
|
}>, {
|
|
8016
7674
|
visible: import("vue").Ref<boolean, boolean>;
|
|
8017
7675
|
checkAllDimensions: import("vue").Ref<boolean, boolean>;
|
|
@@ -8024,20 +7682,32 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
8024
7682
|
}[];
|
|
8025
7683
|
filterValue: import("vue").Ref<string, string>;
|
|
8026
7684
|
searchDimName: import("vue").Ref<string, string>;
|
|
7685
|
+
fontColor: import("vue").ComputedRef<"" | "#b2c3dd">;
|
|
8027
7686
|
handleOk: () => void;
|
|
8028
7687
|
onCheckAllDimChange: (e: any) => void;
|
|
8029
7688
|
handleClear: () => void;
|
|
7689
|
+
getPopupContainer: () => Element;
|
|
8030
7690
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8031
7691
|
data: {
|
|
8032
7692
|
type: ObjectConstructor;
|
|
8033
7693
|
default: () => void;
|
|
8034
7694
|
};
|
|
7695
|
+
theme: {
|
|
7696
|
+
type: StringConstructor;
|
|
7697
|
+
default: string;
|
|
7698
|
+
};
|
|
8035
7699
|
}>> & Readonly<{}>, {
|
|
8036
7700
|
data: Record<string, any>;
|
|
7701
|
+
theme: string;
|
|
8037
7702
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8038
7703
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8039
7704
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8040
|
-
PivotAggregate: import("vue").DefineComponent<{
|
|
7705
|
+
PivotAggregate: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7706
|
+
theme: {
|
|
7707
|
+
type: StringConstructor;
|
|
7708
|
+
default: string;
|
|
7709
|
+
};
|
|
7710
|
+
}>, {
|
|
8041
7711
|
visible: import("vue").Ref<boolean, boolean>;
|
|
8042
7712
|
aggregationType: import("vue").Ref<any[], any[]>;
|
|
8043
7713
|
options: {
|
|
@@ -8045,11 +7715,31 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
8045
7715
|
value: string;
|
|
8046
7716
|
}[];
|
|
8047
7717
|
handleOk: () => void;
|
|
8048
|
-
|
|
8049
|
-
|
|
7718
|
+
getPopupContainer: () => Element;
|
|
7719
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7720
|
+
theme: {
|
|
7721
|
+
type: StringConstructor;
|
|
7722
|
+
default: string;
|
|
7723
|
+
};
|
|
7724
|
+
}>> & Readonly<{}>, {
|
|
7725
|
+
theme: string;
|
|
7726
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7727
|
+
PivotTop: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7728
|
+
theme: {
|
|
7729
|
+
type: StringConstructor;
|
|
7730
|
+
default: string;
|
|
7731
|
+
};
|
|
7732
|
+
}>, {
|
|
8050
7733
|
visible: import("vue").Ref<boolean, boolean>;
|
|
8051
7734
|
topNum: import("vue").Ref<string, string>;
|
|
8052
7735
|
handleOk: () => void;
|
|
8053
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<
|
|
7736
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7737
|
+
theme: {
|
|
7738
|
+
type: StringConstructor;
|
|
7739
|
+
default: string;
|
|
7740
|
+
};
|
|
7741
|
+
}>> & Readonly<{}>, {
|
|
7742
|
+
theme: string;
|
|
7743
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8054
7744
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8055
7745
|
export default _sfc_main;
|