@ecan-bi/datav 1.6.29 → 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 +5926 -5916
- 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/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;
|