@ecan-bi/datav 1.6.25 → 1.6.26
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 +158 -157
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +12 -12
- 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
|
@@ -227,6 +227,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
227
227
|
type?: import("vue").PropType<boolean>;
|
|
228
228
|
default?: boolean;
|
|
229
229
|
};
|
|
230
|
+
unitDefaultText?: {
|
|
231
|
+
type?: import("vue").PropType<string>;
|
|
232
|
+
default?: string;
|
|
233
|
+
};
|
|
230
234
|
id: {
|
|
231
235
|
type?: import("vue").PropType<string>;
|
|
232
236
|
default?: string;
|
|
@@ -788,6 +792,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
788
792
|
type?: import("vue").PropType<boolean>;
|
|
789
793
|
default?: boolean;
|
|
790
794
|
};
|
|
795
|
+
unitDefaultText?: {
|
|
796
|
+
type?: import("vue").PropType<string>;
|
|
797
|
+
default?: string;
|
|
798
|
+
};
|
|
791
799
|
id: {
|
|
792
800
|
type?: import("vue").PropType<string>;
|
|
793
801
|
default?: string;
|
|
@@ -227,6 +227,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
227
227
|
type?: import("vue").PropType<boolean>;
|
|
228
228
|
default?: boolean;
|
|
229
229
|
};
|
|
230
|
+
unitDefaultText?: {
|
|
231
|
+
type?: import("vue").PropType<string>;
|
|
232
|
+
default?: string;
|
|
233
|
+
};
|
|
230
234
|
id: {
|
|
231
235
|
type?: import("vue").PropType<string>;
|
|
232
236
|
default?: string;
|
|
@@ -788,6 +792,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
788
792
|
type?: import("vue").PropType<boolean>;
|
|
789
793
|
default?: boolean;
|
|
790
794
|
};
|
|
795
|
+
unitDefaultText?: {
|
|
796
|
+
type?: import("vue").PropType<string>;
|
|
797
|
+
default?: string;
|
|
798
|
+
};
|
|
791
799
|
id: {
|
|
792
800
|
type?: import("vue").PropType<string>;
|
|
793
801
|
default?: string;
|
|
@@ -60,6 +60,7 @@ export interface TextProps extends Props {
|
|
|
60
60
|
parentId?: string;
|
|
61
61
|
associatId?: string;
|
|
62
62
|
useWarningStatus?: boolean;
|
|
63
|
+
unitDefaultText?: string;
|
|
63
64
|
}
|
|
64
65
|
export declare const textProps: TextProps;
|
|
65
66
|
export declare const textComponentProps: {
|
|
@@ -291,6 +292,10 @@ export declare const textComponentProps: {
|
|
|
291
292
|
type?: import("vue").PropType<boolean>;
|
|
292
293
|
default?: boolean;
|
|
293
294
|
};
|
|
295
|
+
unitDefaultText?: {
|
|
296
|
+
type?: import("vue").PropType<string>;
|
|
297
|
+
default?: string;
|
|
298
|
+
};
|
|
294
299
|
id: {
|
|
295
300
|
type?: import("vue").PropType<string>;
|
|
296
301
|
default?: string;
|