@ecan-bi/datav 1.6.28 → 1.6.30
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 +5929 -5917
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +73 -72
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/types/control/input/Input.vue.d.ts +9 -0
- package/types/control/input/index.d.ts +9 -0
- package/types/control/input/props.d.ts +5 -0
- 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecan-bi/datav",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.30",
|
|
4
4
|
"main": "dist/index.umd.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"@ecan-bi/indicator-library": "^1.1.1",
|
|
82
|
-
"@ecan-bi/tools": "^1.0.
|
|
82
|
+
"@ecan-bi/tools": "^1.0.71",
|
|
83
83
|
"@microsoft/fetch-event-source": "2.0.1",
|
|
84
84
|
"@types/big.js": "^6.1.6",
|
|
85
85
|
"ant-design-vue": "^3.1.1",
|
|
@@ -11,6 +11,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
11
11
|
type?: import("vue").PropType<string>;
|
|
12
12
|
default?: string;
|
|
13
13
|
};
|
|
14
|
+
limitNumber: {
|
|
15
|
+
type?: import("vue").PropType<boolean>;
|
|
16
|
+
default?: boolean;
|
|
17
|
+
};
|
|
14
18
|
id: {
|
|
15
19
|
type?: import("vue").PropType<string>;
|
|
16
20
|
default?: string;
|
|
@@ -163,6 +167,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
163
167
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
164
168
|
myValue: import("vue").Ref<string>;
|
|
165
169
|
inputBlur: () => void;
|
|
170
|
+
inputInput: () => void;
|
|
166
171
|
inputChange: import("lodash").DebouncedFunc<() => void>;
|
|
167
172
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
168
173
|
value: {
|
|
@@ -177,6 +182,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
177
182
|
type?: import("vue").PropType<string>;
|
|
178
183
|
default?: string;
|
|
179
184
|
};
|
|
185
|
+
limitNumber: {
|
|
186
|
+
type?: import("vue").PropType<boolean>;
|
|
187
|
+
default?: boolean;
|
|
188
|
+
};
|
|
180
189
|
id: {
|
|
181
190
|
type?: import("vue").PropType<string>;
|
|
182
191
|
default?: string;
|
|
@@ -11,6 +11,10 @@ export declare const EcanInput: import('../../utils/withInstall').SFCWithInstall
|
|
|
11
11
|
type?: import("vue").PropType<string>;
|
|
12
12
|
default?: string;
|
|
13
13
|
};
|
|
14
|
+
limitNumber: {
|
|
15
|
+
type?: import("vue").PropType<boolean>;
|
|
16
|
+
default?: boolean;
|
|
17
|
+
};
|
|
14
18
|
id: {
|
|
15
19
|
type?: import("vue").PropType<string>;
|
|
16
20
|
default?: string;
|
|
@@ -163,6 +167,7 @@ export declare const EcanInput: import('../../utils/withInstall').SFCWithInstall
|
|
|
163
167
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
164
168
|
myValue: import("vue").Ref<string>;
|
|
165
169
|
inputBlur: () => void;
|
|
170
|
+
inputInput: () => void;
|
|
166
171
|
inputChange: import("lodash").DebouncedFunc<() => void>;
|
|
167
172
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
168
173
|
value: {
|
|
@@ -177,6 +182,10 @@ export declare const EcanInput: import('../../utils/withInstall').SFCWithInstall
|
|
|
177
182
|
type?: import("vue").PropType<string>;
|
|
178
183
|
default?: string;
|
|
179
184
|
};
|
|
185
|
+
limitNumber: {
|
|
186
|
+
type?: import("vue").PropType<boolean>;
|
|
187
|
+
default?: boolean;
|
|
188
|
+
};
|
|
180
189
|
id: {
|
|
181
190
|
type?: import("vue").PropType<string>;
|
|
182
191
|
default?: string;
|
|
@@ -3,6 +3,7 @@ export interface InputProps extends Props {
|
|
|
3
3
|
value: string;
|
|
4
4
|
placeholder: string;
|
|
5
5
|
optionFontSize: string;
|
|
6
|
+
limitNumber: boolean;
|
|
6
7
|
}
|
|
7
8
|
export declare const inputProps: InputProps;
|
|
8
9
|
export declare const inputComponentProps: {
|
|
@@ -18,6 +19,10 @@ export declare const inputComponentProps: {
|
|
|
18
19
|
type?: import("vue").PropType<string>;
|
|
19
20
|
default?: string;
|
|
20
21
|
};
|
|
22
|
+
limitNumber: {
|
|
23
|
+
type?: import("vue").PropType<boolean>;
|
|
24
|
+
default?: boolean;
|
|
25
|
+
};
|
|
21
26
|
id: {
|
|
22
27
|
type?: import("vue").PropType<string>;
|
|
23
28
|
default?: string;
|
|
@@ -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[];
|