@ecan-bi/datav 1.4.51 → 1.4.53
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 +2411 -2399
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +24 -24
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/text/text/Text.vue.d.ts +9 -0
- package/types/text/text/index.d.ts +9 -0
- package/types/text/text/props.d.ts +5 -0
package/package.json
CHANGED
|
@@ -211,6 +211,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
211
211
|
type?: import("vue").PropType<boolean>;
|
|
212
212
|
default?: boolean;
|
|
213
213
|
};
|
|
214
|
+
isContentMarkDown: {
|
|
215
|
+
type?: import("vue").PropType<boolean>;
|
|
216
|
+
default?: boolean;
|
|
217
|
+
};
|
|
214
218
|
id: {
|
|
215
219
|
type?: import("vue").PropType<string>;
|
|
216
220
|
default?: string;
|
|
@@ -337,6 +341,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
337
341
|
gradientStyle: import("vue").ComputedRef<any>;
|
|
338
342
|
cursorStyle: import("vue").ComputedRef<any>;
|
|
339
343
|
myTitle: import("vue").Ref<any>;
|
|
344
|
+
wrapStyle: import("vue").ComputedRef<any>;
|
|
340
345
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
341
346
|
text: {
|
|
342
347
|
type?: import("vue").PropType<string>;
|
|
@@ -550,6 +555,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
550
555
|
type?: import("vue").PropType<boolean>;
|
|
551
556
|
default?: boolean;
|
|
552
557
|
};
|
|
558
|
+
isContentMarkDown: {
|
|
559
|
+
type?: import("vue").PropType<boolean>;
|
|
560
|
+
default?: boolean;
|
|
561
|
+
};
|
|
553
562
|
id: {
|
|
554
563
|
type?: import("vue").PropType<string>;
|
|
555
564
|
default?: string;
|
|
@@ -211,6 +211,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
211
211
|
type?: import("vue").PropType<boolean>;
|
|
212
212
|
default?: boolean;
|
|
213
213
|
};
|
|
214
|
+
isContentMarkDown: {
|
|
215
|
+
type?: import("vue").PropType<boolean>;
|
|
216
|
+
default?: boolean;
|
|
217
|
+
};
|
|
214
218
|
id: {
|
|
215
219
|
type?: import("vue").PropType<string>;
|
|
216
220
|
default?: string;
|
|
@@ -337,6 +341,7 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
337
341
|
gradientStyle: import("vue").ComputedRef<any>;
|
|
338
342
|
cursorStyle: import("vue").ComputedRef<any>;
|
|
339
343
|
myTitle: import("vue").Ref<any>;
|
|
344
|
+
wrapStyle: import("vue").ComputedRef<any>;
|
|
340
345
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
341
346
|
text: {
|
|
342
347
|
type?: import("vue").PropType<string>;
|
|
@@ -550,6 +555,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
550
555
|
type?: import("vue").PropType<boolean>;
|
|
551
556
|
default?: boolean;
|
|
552
557
|
};
|
|
558
|
+
isContentMarkDown: {
|
|
559
|
+
type?: import("vue").PropType<boolean>;
|
|
560
|
+
default?: boolean;
|
|
561
|
+
};
|
|
553
562
|
id: {
|
|
554
563
|
type?: import("vue").PropType<string>;
|
|
555
564
|
default?: string;
|
|
@@ -56,6 +56,7 @@ export interface TextProps extends Props {
|
|
|
56
56
|
titleBackgroundColor: string;
|
|
57
57
|
titleFontColor: string;
|
|
58
58
|
isMarkDown: boolean;
|
|
59
|
+
isContentMarkDown: boolean;
|
|
59
60
|
}
|
|
60
61
|
export declare const textProps: TextProps;
|
|
61
62
|
export declare const textComponentProps: {
|
|
@@ -271,6 +272,10 @@ export declare const textComponentProps: {
|
|
|
271
272
|
type?: import("vue").PropType<boolean>;
|
|
272
273
|
default?: boolean;
|
|
273
274
|
};
|
|
275
|
+
isContentMarkDown: {
|
|
276
|
+
type?: import("vue").PropType<boolean>;
|
|
277
|
+
default?: boolean;
|
|
278
|
+
};
|
|
274
279
|
id: {
|
|
275
280
|
type?: import("vue").PropType<string>;
|
|
276
281
|
default?: string;
|