@ecan-bi/datav 1.4.64 → 1.4.65
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 +146 -140
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +8 -0
- package/types/container/border/index.d.ts +8 -0
- package/types/container/border/props.d.ts +5 -0
package/package.json
CHANGED
|
@@ -11,6 +11,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
11
11
|
type?: import("vue").PropType<number>;
|
|
12
12
|
default?: number;
|
|
13
13
|
};
|
|
14
|
+
color: {
|
|
15
|
+
type?: import("vue").PropType<string>;
|
|
16
|
+
default?: string;
|
|
17
|
+
};
|
|
14
18
|
title: {
|
|
15
19
|
type?: import("vue").PropType<string>;
|
|
16
20
|
default?: string;
|
|
@@ -225,6 +229,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
225
229
|
type?: import("vue").PropType<number>;
|
|
226
230
|
default?: number;
|
|
227
231
|
};
|
|
232
|
+
color: {
|
|
233
|
+
type?: import("vue").PropType<string>;
|
|
234
|
+
default?: string;
|
|
235
|
+
};
|
|
228
236
|
title: {
|
|
229
237
|
type?: import("vue").PropType<string>;
|
|
230
238
|
default?: string;
|
|
@@ -11,6 +11,10 @@ export declare const EcanBorder: import('../../utils/withInstall').SFCWithInstal
|
|
|
11
11
|
type?: import("vue").PropType<number>;
|
|
12
12
|
default?: number;
|
|
13
13
|
};
|
|
14
|
+
color: {
|
|
15
|
+
type?: import("vue").PropType<string>;
|
|
16
|
+
default?: string;
|
|
17
|
+
};
|
|
14
18
|
title: {
|
|
15
19
|
type?: import("vue").PropType<string>;
|
|
16
20
|
default?: string;
|
|
@@ -225,6 +229,10 @@ export declare const EcanBorder: import('../../utils/withInstall').SFCWithInstal
|
|
|
225
229
|
type?: import("vue").PropType<number>;
|
|
226
230
|
default?: number;
|
|
227
231
|
};
|
|
232
|
+
color: {
|
|
233
|
+
type?: import("vue").PropType<string>;
|
|
234
|
+
default?: string;
|
|
235
|
+
};
|
|
228
236
|
title: {
|
|
229
237
|
type?: import("vue").PropType<string>;
|
|
230
238
|
default?: string;
|
|
@@ -3,6 +3,7 @@ export interface BorderProps extends Props {
|
|
|
3
3
|
fontSize: string;
|
|
4
4
|
fontFamily: string;
|
|
5
5
|
fontWeight: number;
|
|
6
|
+
color: string;
|
|
6
7
|
title: string;
|
|
7
8
|
mode: 'top-title' | 'no-title' | 'left-title';
|
|
8
9
|
borderColor: string;
|
|
@@ -36,6 +37,10 @@ export declare const borderComponentProps: {
|
|
|
36
37
|
type?: import("vue").PropType<number>;
|
|
37
38
|
default?: number;
|
|
38
39
|
};
|
|
40
|
+
color: {
|
|
41
|
+
type?: import("vue").PropType<string>;
|
|
42
|
+
default?: string;
|
|
43
|
+
};
|
|
39
44
|
title: {
|
|
40
45
|
type?: import("vue").PropType<string>;
|
|
41
46
|
default?: string;
|