@ecan-bi/datav 1.4.50 → 1.4.51
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 +5443 -5422
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +35 -35
- 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 +8 -0
- package/types/text/text/index.d.ts +8 -0
- package/types/text/text/props.d.ts +5 -0
package/package.json
CHANGED
|
@@ -207,6 +207,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
207
207
|
type?: import("vue").PropType<string>;
|
|
208
208
|
default?: string;
|
|
209
209
|
};
|
|
210
|
+
isMarkDown: {
|
|
211
|
+
type?: import("vue").PropType<boolean>;
|
|
212
|
+
default?: boolean;
|
|
213
|
+
};
|
|
210
214
|
id: {
|
|
211
215
|
type?: import("vue").PropType<string>;
|
|
212
216
|
default?: string;
|
|
@@ -542,6 +546,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
542
546
|
type?: import("vue").PropType<string>;
|
|
543
547
|
default?: string;
|
|
544
548
|
};
|
|
549
|
+
isMarkDown: {
|
|
550
|
+
type?: import("vue").PropType<boolean>;
|
|
551
|
+
default?: boolean;
|
|
552
|
+
};
|
|
545
553
|
id: {
|
|
546
554
|
type?: import("vue").PropType<string>;
|
|
547
555
|
default?: string;
|
|
@@ -207,6 +207,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
207
207
|
type?: import("vue").PropType<string>;
|
|
208
208
|
default?: string;
|
|
209
209
|
};
|
|
210
|
+
isMarkDown: {
|
|
211
|
+
type?: import("vue").PropType<boolean>;
|
|
212
|
+
default?: boolean;
|
|
213
|
+
};
|
|
210
214
|
id: {
|
|
211
215
|
type?: import("vue").PropType<string>;
|
|
212
216
|
default?: string;
|
|
@@ -542,6 +546,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
542
546
|
type?: import("vue").PropType<string>;
|
|
543
547
|
default?: string;
|
|
544
548
|
};
|
|
549
|
+
isMarkDown: {
|
|
550
|
+
type?: import("vue").PropType<boolean>;
|
|
551
|
+
default?: boolean;
|
|
552
|
+
};
|
|
545
553
|
id: {
|
|
546
554
|
type?: import("vue").PropType<string>;
|
|
547
555
|
default?: string;
|
|
@@ -55,6 +55,7 @@ export interface TextProps extends Props {
|
|
|
55
55
|
titleContent: string;
|
|
56
56
|
titleBackgroundColor: string;
|
|
57
57
|
titleFontColor: string;
|
|
58
|
+
isMarkDown: boolean;
|
|
58
59
|
}
|
|
59
60
|
export declare const textProps: TextProps;
|
|
60
61
|
export declare const textComponentProps: {
|
|
@@ -266,6 +267,10 @@ export declare const textComponentProps: {
|
|
|
266
267
|
type?: import("vue").PropType<string>;
|
|
267
268
|
default?: string;
|
|
268
269
|
};
|
|
270
|
+
isMarkDown: {
|
|
271
|
+
type?: import("vue").PropType<boolean>;
|
|
272
|
+
default?: boolean;
|
|
273
|
+
};
|
|
269
274
|
id: {
|
|
270
275
|
type?: import("vue").PropType<string>;
|
|
271
276
|
default?: string;
|