@ecan-bi/datav 1.6.27 → 1.6.29
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 +9 -6
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/laboratory/index-panel/IndexPanel.vue.d.ts +16 -0
- package/types/laboratory/index-panel/index.d.ts +16 -0
- package/types/laboratory/index-panel/props.d.ts +10 -0
package/package.json
CHANGED
|
@@ -3,6 +3,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
3
3
|
type?: import("vue").PropType<string>;
|
|
4
4
|
default?: string;
|
|
5
5
|
};
|
|
6
|
+
borderWidth: {
|
|
7
|
+
type?: import("vue").PropType<string>;
|
|
8
|
+
default?: string;
|
|
9
|
+
};
|
|
10
|
+
borderColor: {
|
|
11
|
+
type?: import("vue").PropType<string>;
|
|
12
|
+
default?: string;
|
|
13
|
+
};
|
|
6
14
|
componentIds: {
|
|
7
15
|
type?: import("vue").PropType<string[]>;
|
|
8
16
|
default?: string[];
|
|
@@ -197,6 +205,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
197
205
|
type?: import("vue").PropType<string>;
|
|
198
206
|
default?: string;
|
|
199
207
|
};
|
|
208
|
+
borderWidth: {
|
|
209
|
+
type?: import("vue").PropType<string>;
|
|
210
|
+
default?: string;
|
|
211
|
+
};
|
|
212
|
+
borderColor: {
|
|
213
|
+
type?: import("vue").PropType<string>;
|
|
214
|
+
default?: string;
|
|
215
|
+
};
|
|
200
216
|
componentIds: {
|
|
201
217
|
type?: import("vue").PropType<string[]>;
|
|
202
218
|
default?: string[];
|
|
@@ -3,6 +3,14 @@ export declare const EcanIndexPanel: import("../../utils/withInstall").SFCWithIn
|
|
|
3
3
|
type?: import("vue").PropType<string>;
|
|
4
4
|
default?: string;
|
|
5
5
|
};
|
|
6
|
+
borderWidth: {
|
|
7
|
+
type?: import("vue").PropType<string>;
|
|
8
|
+
default?: string;
|
|
9
|
+
};
|
|
10
|
+
borderColor: {
|
|
11
|
+
type?: import("vue").PropType<string>;
|
|
12
|
+
default?: string;
|
|
13
|
+
};
|
|
6
14
|
componentIds: {
|
|
7
15
|
type?: import("vue").PropType<string[]>;
|
|
8
16
|
default?: string[];
|
|
@@ -197,6 +205,14 @@ export declare const EcanIndexPanel: import("../../utils/withInstall").SFCWithIn
|
|
|
197
205
|
type?: import("vue").PropType<string>;
|
|
198
206
|
default?: string;
|
|
199
207
|
};
|
|
208
|
+
borderWidth: {
|
|
209
|
+
type?: import("vue").PropType<string>;
|
|
210
|
+
default?: string;
|
|
211
|
+
};
|
|
212
|
+
borderColor: {
|
|
213
|
+
type?: import("vue").PropType<string>;
|
|
214
|
+
default?: string;
|
|
215
|
+
};
|
|
200
216
|
componentIds: {
|
|
201
217
|
type?: import("vue").PropType<string[]>;
|
|
202
218
|
default?: string[];
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { Props } from '../../utils/props';
|
|
2
2
|
export interface IndexPanelProps extends Props {
|
|
3
3
|
borderRadius: string;
|
|
4
|
+
borderWidth: string;
|
|
5
|
+
borderColor: string;
|
|
4
6
|
componentIds: string[];
|
|
5
7
|
componentConfig: {
|
|
6
8
|
[key: string]: any;
|
|
@@ -20,6 +22,14 @@ export declare const indexPanelComponentProps: {
|
|
|
20
22
|
type?: import("vue").PropType<string>;
|
|
21
23
|
default?: string;
|
|
22
24
|
};
|
|
25
|
+
borderWidth: {
|
|
26
|
+
type?: import("vue").PropType<string>;
|
|
27
|
+
default?: string;
|
|
28
|
+
};
|
|
29
|
+
borderColor: {
|
|
30
|
+
type?: import("vue").PropType<string>;
|
|
31
|
+
default?: string;
|
|
32
|
+
};
|
|
23
33
|
componentIds: {
|
|
24
34
|
type?: import("vue").PropType<string[]>;
|
|
25
35
|
default?: string[];
|