@das-fed/ui 6.4.0-dev.19 → 6.4.0-dev.20
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/esm-map.json +4 -1
- package/package.json +5 -6
- package/packages/business-components/device-panel/index.js +22265 -16373
- package/packages/business-components/device-panel/index.js.gz +0 -0
- package/packages/business-components/device-panel/src/components/drag-resize/index.vue.d.ts +129 -0
- package/packages/business-components/device-panel/src/components/drag-resize/type.d.ts +83 -0
- package/packages/business-components/device-panel/style.css +1 -1
- package/packages/business-components/device-panel/style.css.gz +0 -0
- package/packages/business-components/echarts/index.d.ts +125 -0
- package/packages/business-components/echarts/index.js +6530 -6460
- package/packages/business-components/echarts/index.js.gz +0 -0
- package/packages/business-components/echarts/src/Index.vue.d.ts +15 -0
- package/packages/business-components/echarts/src/type.d.ts +13 -0
- package/packages/business-components/import-button/hooks/file.d.ts +1 -1
- package/packages/business-components/import-button/index.d.ts +3 -0
- package/packages/business-components/import-button/index.js +33 -32
- package/packages/business-components/import-button/index.js.gz +0 -0
- package/packages/business-components/import-button/src/App.vue.d.ts +1 -0
- package/packages/business-components/import-button/style.css +1 -1
- package/packages/business-components/process-form/index.js +28 -28
- package/packages/business-components/process-form/index.js.gz +0 -0
- package/packages/business-components/urgent-panel/index.d.ts +2 -1
- package/packages/business-components/urgent-panel/index.js +1505 -1586
- package/packages/business-components/urgent-panel/index.js.gz +0 -0
- package/packages/business-components/urgent-panel/src/components/drag-resize/index.vue.d.ts +129 -0
- package/packages/business-components/urgent-panel/src/components/drag-resize/type.d.ts +83 -0
- package/packages/business-components/urgent-panel/style.css +1 -1
- package/packages/business-components/urgent-panel/style.css.gz +0 -0
- package/packages/components/image-viewer/index.js +286 -271
- package/packages/components/image-viewer/index.js.gz +0 -0
- package/packages/components/image-viewer/src/hooks/use-imageViewer.d.ts +1 -1
- package/packages/components/image-viewer/style.css +1 -1
- package/packages/components/image-viewer/style.css.gz +0 -0
|
Binary file
|
|
@@ -52,6 +52,28 @@ declare const DasEcharts: import("@das-fed/utils").SFCWithInstall<import("vue").
|
|
|
52
52
|
type: import("vue").PropType<string | string[]>;
|
|
53
53
|
default: string;
|
|
54
54
|
};
|
|
55
|
+
maxLabelTooltipLength: {
|
|
56
|
+
type: import("vue").PropType<number>;
|
|
57
|
+
default: number;
|
|
58
|
+
};
|
|
59
|
+
yOverflowTooltip: {
|
|
60
|
+
type: import("vue").PropType<boolean>;
|
|
61
|
+
required: true;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
xOverflowTooltip: {
|
|
65
|
+
type: import("vue").PropType<boolean>;
|
|
66
|
+
required: true;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
69
|
+
xEmptyMaxVal: {
|
|
70
|
+
type: import("vue").PropType<number | null>;
|
|
71
|
+
default: null;
|
|
72
|
+
};
|
|
73
|
+
yEmptyMaxVal: {
|
|
74
|
+
type: import("vue").PropType<number | import("./src/type.js").maxValType[] | null>;
|
|
75
|
+
default: null;
|
|
76
|
+
};
|
|
55
77
|
}, {
|
|
56
78
|
$echarts: import("vue").Ref<any>;
|
|
57
79
|
myChart: any;
|
|
@@ -111,6 +133,28 @@ declare const DasEcharts: import("@das-fed/utils").SFCWithInstall<import("vue").
|
|
|
111
133
|
type: import("vue").PropType<string | string[]>;
|
|
112
134
|
default: string;
|
|
113
135
|
};
|
|
136
|
+
maxLabelTooltipLength: {
|
|
137
|
+
type: import("vue").PropType<number>;
|
|
138
|
+
default: number;
|
|
139
|
+
};
|
|
140
|
+
yOverflowTooltip: {
|
|
141
|
+
type: import("vue").PropType<boolean>;
|
|
142
|
+
required: true;
|
|
143
|
+
default: boolean;
|
|
144
|
+
};
|
|
145
|
+
xOverflowTooltip: {
|
|
146
|
+
type: import("vue").PropType<boolean>;
|
|
147
|
+
required: true;
|
|
148
|
+
default: boolean;
|
|
149
|
+
};
|
|
150
|
+
xEmptyMaxVal: {
|
|
151
|
+
type: import("vue").PropType<number | null>;
|
|
152
|
+
default: null;
|
|
153
|
+
};
|
|
154
|
+
yEmptyMaxVal: {
|
|
155
|
+
type: import("vue").PropType<number | import("./src/type.js").maxValType[] | null>;
|
|
156
|
+
default: null;
|
|
157
|
+
};
|
|
114
158
|
}>>, {
|
|
115
159
|
options: any;
|
|
116
160
|
height: number | string;
|
|
@@ -125,6 +169,11 @@ declare const DasEcharts: import("@das-fed/utils").SFCWithInstall<import("vue").
|
|
|
125
169
|
lazyUpdate: boolean;
|
|
126
170
|
silent: false;
|
|
127
171
|
replaceMerge: string | string[];
|
|
172
|
+
maxLabelTooltipLength: number;
|
|
173
|
+
yOverflowTooltip: boolean;
|
|
174
|
+
xOverflowTooltip: boolean;
|
|
175
|
+
xEmptyMaxVal: number | null;
|
|
176
|
+
yEmptyMaxVal: number | null | import("./src/type.js").maxValType[];
|
|
128
177
|
}, {}>>;
|
|
129
178
|
declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
130
179
|
options: {
|
|
@@ -180,6 +229,28 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
180
229
|
type: import("vue").PropType<string | string[]>;
|
|
181
230
|
default: string;
|
|
182
231
|
};
|
|
232
|
+
maxLabelTooltipLength: {
|
|
233
|
+
type: import("vue").PropType<number>;
|
|
234
|
+
default: number;
|
|
235
|
+
};
|
|
236
|
+
yOverflowTooltip: {
|
|
237
|
+
type: import("vue").PropType<boolean>;
|
|
238
|
+
required: true;
|
|
239
|
+
default: boolean;
|
|
240
|
+
};
|
|
241
|
+
xOverflowTooltip: {
|
|
242
|
+
type: import("vue").PropType<boolean>;
|
|
243
|
+
required: true;
|
|
244
|
+
default: boolean;
|
|
245
|
+
};
|
|
246
|
+
xEmptyMaxVal: {
|
|
247
|
+
type: import("vue").PropType<number | null>;
|
|
248
|
+
default: null;
|
|
249
|
+
};
|
|
250
|
+
yEmptyMaxVal: {
|
|
251
|
+
type: import("vue").PropType<number | import("./src/type.js").maxValType[] | null>;
|
|
252
|
+
default: null;
|
|
253
|
+
};
|
|
183
254
|
}>>, {
|
|
184
255
|
$echarts: import("vue").Ref<any>;
|
|
185
256
|
myChart: any;
|
|
@@ -239,6 +310,28 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
239
310
|
type: import("vue").PropType<string | string[]>;
|
|
240
311
|
default: string;
|
|
241
312
|
};
|
|
313
|
+
maxLabelTooltipLength: {
|
|
314
|
+
type: import("vue").PropType<number>;
|
|
315
|
+
default: number;
|
|
316
|
+
};
|
|
317
|
+
yOverflowTooltip: {
|
|
318
|
+
type: import("vue").PropType<boolean>;
|
|
319
|
+
required: true;
|
|
320
|
+
default: boolean;
|
|
321
|
+
};
|
|
322
|
+
xOverflowTooltip: {
|
|
323
|
+
type: import("vue").PropType<boolean>;
|
|
324
|
+
required: true;
|
|
325
|
+
default: boolean;
|
|
326
|
+
};
|
|
327
|
+
xEmptyMaxVal: {
|
|
328
|
+
type: import("vue").PropType<number | null>;
|
|
329
|
+
default: null;
|
|
330
|
+
};
|
|
331
|
+
yEmptyMaxVal: {
|
|
332
|
+
type: import("vue").PropType<number | import("./src/type.js").maxValType[] | null>;
|
|
333
|
+
default: null;
|
|
334
|
+
};
|
|
242
335
|
}>>, {
|
|
243
336
|
options: any;
|
|
244
337
|
height: number | string;
|
|
@@ -253,6 +346,11 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
253
346
|
lazyUpdate: boolean;
|
|
254
347
|
silent: false;
|
|
255
348
|
replaceMerge: string | string[];
|
|
349
|
+
maxLabelTooltipLength: number;
|
|
350
|
+
yOverflowTooltip: boolean;
|
|
351
|
+
xOverflowTooltip: boolean;
|
|
352
|
+
xEmptyMaxVal: number | null;
|
|
353
|
+
yEmptyMaxVal: number | null | import("./src/type.js").maxValType[];
|
|
256
354
|
}, true, {}, {}, {
|
|
257
355
|
P: {};
|
|
258
356
|
B: {};
|
|
@@ -314,6 +412,28 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
314
412
|
type: import("vue").PropType<string | string[]>;
|
|
315
413
|
default: string;
|
|
316
414
|
};
|
|
415
|
+
maxLabelTooltipLength: {
|
|
416
|
+
type: import("vue").PropType<number>;
|
|
417
|
+
default: number;
|
|
418
|
+
};
|
|
419
|
+
yOverflowTooltip: {
|
|
420
|
+
type: import("vue").PropType<boolean>;
|
|
421
|
+
required: true;
|
|
422
|
+
default: boolean;
|
|
423
|
+
};
|
|
424
|
+
xOverflowTooltip: {
|
|
425
|
+
type: import("vue").PropType<boolean>;
|
|
426
|
+
required: true;
|
|
427
|
+
default: boolean;
|
|
428
|
+
};
|
|
429
|
+
xEmptyMaxVal: {
|
|
430
|
+
type: import("vue").PropType<number | null>;
|
|
431
|
+
default: null;
|
|
432
|
+
};
|
|
433
|
+
yEmptyMaxVal: {
|
|
434
|
+
type: import("vue").PropType<number | import("./src/type.js").maxValType[] | null>;
|
|
435
|
+
default: null;
|
|
436
|
+
};
|
|
317
437
|
}>>, {
|
|
318
438
|
$echarts: import("vue").Ref<any>;
|
|
319
439
|
myChart: any;
|
|
@@ -333,6 +453,11 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
333
453
|
lazyUpdate: boolean;
|
|
334
454
|
silent: false;
|
|
335
455
|
replaceMerge: string | string[];
|
|
456
|
+
maxLabelTooltipLength: number;
|
|
457
|
+
yOverflowTooltip: boolean;
|
|
458
|
+
xOverflowTooltip: boolean;
|
|
459
|
+
xEmptyMaxVal: number | null;
|
|
460
|
+
yEmptyMaxVal: number | null | import("./src/type.js").maxValType[];
|
|
336
461
|
}> | null>;
|
|
337
462
|
export { DasEcharts, DasEchartsRef };
|
|
338
463
|
export default DasEcharts;
|