cnhis-design-vue 3.1.24-beta.2 → 3.1.24-beta.3
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/README.md +123 -123
- package/es/components/big-table/src/BigTable.vue.d.ts +1 -16
- package/es/components/big-table/src/components/edit-form/edit-input.js +3 -1
- package/es/components/form-render/src/components/renderer/index.d.ts +3 -20
- package/es/components/form-render/src/components/renderer/index.js +49 -20
- package/es/components/form-render/src/components/renderer/levelSearchCascade.js +1 -1
- package/es/components/form-render/src/components/renderer/search.js +1 -19
- package/es/components/form-render/src/components/renderer/searchCascade.js +1 -19
- package/es/components/form-render/src/components/renderer/select.js +1 -19
- package/es/components/form-render/src/hooks/useFormContext.js +2 -2
- package/es/components/iho-table/index.js +2 -2
- package/es/components/iho-table/src/plugins/index.d.ts +3 -5
- package/es/components/iho-table/src/plugins/index.js +39 -15
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.js +4 -9
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.d.ts +4 -1
- package/es/components/search-cascader/index.d.ts +2 -2
- package/es/components/search-cascader/src/SearchCascader.vue.d.ts +2 -2
- package/package.json +2 -2
- package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
- package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
- package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
- package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
- package/es/components/fabric-chart/src/utils/index.d.ts +0 -6823
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/index.d.ts +0 -5
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/index.js +0 -5
- package/es/components/iho-table/src/plugins/rendererPlugins/index.d.ts +0 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/index.js +0 -11
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/index.d.ts +0 -6
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/index.js +0 -6
- package/es/shared/utils/tapable/index.d.ts +0 -139
|
@@ -5,6 +5,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
5
|
value: {};
|
|
6
6
|
height: {
|
|
7
7
|
type: NumberConstructor;
|
|
8
|
+
default: number;
|
|
8
9
|
};
|
|
9
10
|
column: {
|
|
10
11
|
type: PropType<IhoTableFieldItem>;
|
|
@@ -27,6 +28,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
28
|
value: {};
|
|
28
29
|
height: {
|
|
29
30
|
type: NumberConstructor;
|
|
31
|
+
default: number;
|
|
30
32
|
};
|
|
31
33
|
column: {
|
|
32
34
|
type: PropType<IhoTableFieldItem>;
|
|
@@ -59,13 +61,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
61
|
onClose: () => Promise<void>;
|
|
60
62
|
updateShow: (show: boolean) => void;
|
|
61
63
|
style: import("vue").ComputedRef<CSSProperties>;
|
|
62
|
-
elementRef: import("vue").Ref<any>;
|
|
63
64
|
NPopover: any;
|
|
64
65
|
NInput: any;
|
|
65
66
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
66
67
|
value: {};
|
|
67
68
|
height: {
|
|
68
69
|
type: NumberConstructor;
|
|
70
|
+
default: number;
|
|
69
71
|
};
|
|
70
72
|
column: {
|
|
71
73
|
type: PropType<IhoTableFieldItem>;
|
|
@@ -86,6 +88,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
86
88
|
}>> & {
|
|
87
89
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
88
90
|
}, {
|
|
91
|
+
height: number;
|
|
89
92
|
displayContent: string;
|
|
90
93
|
}>;
|
|
91
94
|
export default _default;
|
|
@@ -89,7 +89,7 @@ declare const SearchCascader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
89
89
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
90
90
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
91
91
|
}>>;
|
|
92
|
-
emits: (event: "update:
|
|
92
|
+
emits: (event: "update:show" | "update:value" | "focus", ...args: any[]) => void;
|
|
93
93
|
emitValue: (value: string | import("../../../es/shared/types").AnyObject[]) => void;
|
|
94
94
|
onClear: () => void;
|
|
95
95
|
onClick: (evt: Event) => void;
|
|
@@ -153,7 +153,7 @@ declare const SearchCascader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
153
153
|
childKey: string;
|
|
154
154
|
labelKey: string;
|
|
155
155
|
}>;
|
|
156
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:
|
|
156
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:show" | "update:value" | "focus")[], "focus" | "update:show" | "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
157
157
|
value: {
|
|
158
158
|
type: import("vue").PropType<string | import("../../../es/shared/types").AnyObject[]>;
|
|
159
159
|
};
|
|
@@ -91,7 +91,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
91
91
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
92
92
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
93
93
|
}>>;
|
|
94
|
-
emits: (event: "update:
|
|
94
|
+
emits: (event: "update:show" | "update:value" | "focus", ...args: any[]) => void;
|
|
95
95
|
emitValue: (value: ValueType) => void;
|
|
96
96
|
onClear: () => void;
|
|
97
97
|
onClick: (evt: Event) => void;
|
|
@@ -155,7 +155,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
155
155
|
childKey: string;
|
|
156
156
|
labelKey: string;
|
|
157
157
|
}>;
|
|
158
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:
|
|
158
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:show" | "update:value" | "focus")[], "focus" | "update:show" | "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
159
159
|
value: {
|
|
160
160
|
type: PropType<ValueType>;
|
|
161
161
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cnhis-design-vue",
|
|
3
|
-
"version": "3.1.24-beta.
|
|
3
|
+
"version": "3.1.24-beta.3",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"module": "./es/components/index.js",
|
|
6
6
|
"main": "./es/components/index.js",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"iOS 7",
|
|
67
67
|
"last 3 iOS versions"
|
|
68
68
|
],
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "d8bd01e1a164a01175e881e3109ab751c9b36e4b"
|
|
70
70
|
}
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
declare module 'bpmn-js/lib/Viewer';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
declare module 'bpmn-js/lib/features/modeling';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
declare module 'diagram-js/lib/navigation/movecanvas';
|