@ecan-bi/datav 1.3.30 → 1.3.32
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 +2529 -2513
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +23 -23
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/circulate/Circulate.vue.d.ts +8 -0
- package/types/container/circulate/index.d.ts +8 -0
- package/types/container/circulate/props.d.ts +5 -0
- package/types/graph/bar/Bar.vue.d.ts +18 -0
- package/types/graph/bar/index.d.ts +18 -0
- package/types/graph/bar/props.d.ts +10 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +18 -0
- package/types/graph/combo-graph/index.d.ts +18 -0
- package/types/graph/combo-graph/props.d.ts +10 -0
- package/types/graph/line/Line.vue.d.ts +18 -0
- package/types/graph/line/index.d.ts +18 -0
- package/types/graph/line/props.d.ts +12 -0
- package/types/text/list/List.vue.d.ts +1 -1
- package/types/text/list/index.d.ts +1 -1
- package/types/text/text/Text.vue.d.ts +8 -0
- package/types/text/text/index.d.ts +8 -0
- package/types/text/text/props.d.ts +5 -0
|
@@ -167,6 +167,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
167
167
|
type?: import("vue").PropType<string>;
|
|
168
168
|
default?: string;
|
|
169
169
|
};
|
|
170
|
+
showEllipsis: {
|
|
171
|
+
type?: import("vue").PropType<boolean>;
|
|
172
|
+
default?: boolean;
|
|
173
|
+
};
|
|
170
174
|
id: {
|
|
171
175
|
type?: import("vue").PropType<string>;
|
|
172
176
|
default?: string;
|
|
@@ -440,6 +444,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
440
444
|
type?: import("vue").PropType<string>;
|
|
441
445
|
default?: string;
|
|
442
446
|
};
|
|
447
|
+
showEllipsis: {
|
|
448
|
+
type?: import("vue").PropType<boolean>;
|
|
449
|
+
default?: boolean;
|
|
450
|
+
};
|
|
443
451
|
id: {
|
|
444
452
|
type?: import("vue").PropType<string>;
|
|
445
453
|
default?: string;
|
|
@@ -44,6 +44,7 @@ export interface TextProps extends Props {
|
|
|
44
44
|
openCustomRequestData?: boolean;
|
|
45
45
|
customRequestName: string;
|
|
46
46
|
customRequestField: string;
|
|
47
|
+
showEllipsis: boolean;
|
|
47
48
|
}
|
|
48
49
|
export declare const textProps: TextProps;
|
|
49
50
|
export declare const textComponentProps: {
|
|
@@ -215,6 +216,10 @@ export declare const textComponentProps: {
|
|
|
215
216
|
type?: import("vue").PropType<string>;
|
|
216
217
|
default?: string;
|
|
217
218
|
};
|
|
219
|
+
showEllipsis: {
|
|
220
|
+
type?: import("vue").PropType<boolean>;
|
|
221
|
+
default?: boolean;
|
|
222
|
+
};
|
|
218
223
|
id: {
|
|
219
224
|
type?: import("vue").PropType<string>;
|
|
220
225
|
default?: string;
|