cnhis-design-vue 3.1.23-beta.4 → 3.1.23-beta.6

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.
Files changed (24) hide show
  1. package/README.md +123 -123
  2. package/es/components/fabric-chart/src/components/PopupMenu.js +7 -2
  3. package/es/components/fabric-chart/src/hooks/useCenter2.js +0 -1
  4. package/es/components/form-config/index.d.ts +0 -6
  5. package/es/components/form-config/src/FormConfig.vue.d.ts +0 -6
  6. package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +0 -6
  7. package/es/components/form-render/src/components/renderer/search.d.ts +1 -13
  8. package/es/components/form-render/src/components/renderer/searchCascader.d.ts +0 -12
  9. package/es/components/form-render/src/types/fieldItem.d.ts +0 -6
  10. package/es/components/iho-table/index.d.ts +270 -100
  11. package/es/components/iho-table/src/IhoTable.vue.d.ts +270 -100
  12. package/es/components/search-cascader/index.d.ts +0 -10
  13. package/es/components/search-cascader/src/SearchCascader.js +4 -11
  14. package/es/components/search-cascader/src/SearchCascader.vue.d.ts +3 -14
  15. package/es/components/shortcut-setter/index.d.ts +0 -6
  16. package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +0 -6
  17. package/package.json +2 -2
  18. package/es/components/big-table/src/components/edit-form/useCommon.d.ts +0 -4
  19. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  20. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
  21. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
  22. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
  23. package/es/components/fabric-chart/src/utils/index.d.ts +0 -6823
  24. package/es/shared/utils/tapable/index.d.ts +0 -139
@@ -1,9 +1,8 @@
1
1
  import { AnyObject, Func, Nullable } from '../../../../es/shared/types';
2
2
  import { PropType } from 'vue';
3
- declare type ValueType = string | AnyObject[];
4
3
  declare const _default: import("vue").DefineComponent<{
5
4
  value: {
6
- type: PropType<ValueType>;
5
+ type: PropType<string | AnyObject[]>;
7
6
  };
8
7
  clearable: {
9
8
  type: BooleanConstructor;
@@ -20,13 +19,10 @@ declare const _default: import("vue").DefineComponent<{
20
19
  fetchOptions: {
21
20
  type: PropType<Func<any[], any>>;
22
21
  };
23
- beforeSetValue: {
24
- type: PropType<(value: ValueType) => void | ValueType | Promise<ValueType>>;
25
- };
26
22
  }, {
27
23
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
28
24
  value: {
29
- type: PropType<ValueType>;
25
+ type: PropType<string | AnyObject[]>;
30
26
  };
31
27
  clearable: {
32
28
  type: BooleanConstructor;
@@ -43,14 +39,10 @@ declare const _default: import("vue").DefineComponent<{
43
39
  fetchOptions: {
44
40
  type: PropType<Func<any[], any>>;
45
41
  };
46
- beforeSetValue: {
47
- type: PropType<(value: ValueType) => void | ValueType | Promise<ValueType>>;
48
- };
49
42
  }>> & {
50
43
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
51
44
  }>>;
52
45
  emits: (event: "update:value", ...args: any[]) => void;
53
- emitValue: (value: ValueType) => void;
54
46
  onClear: () => void;
55
47
  cssVariable: {
56
48
  '--menu-width': number;
@@ -105,7 +97,7 @@ declare const _default: import("vue").DefineComponent<{
105
97
  }>;
106
98
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
107
99
  value: {
108
- type: PropType<ValueType>;
100
+ type: PropType<string | AnyObject[]>;
109
101
  };
110
102
  clearable: {
111
103
  type: BooleanConstructor;
@@ -122,9 +114,6 @@ declare const _default: import("vue").DefineComponent<{
122
114
  fetchOptions: {
123
115
  type: PropType<Func<any[], any>>;
124
116
  };
125
- beforeSetValue: {
126
- type: PropType<(value: ValueType) => void | ValueType | Promise<ValueType>>;
127
- };
128
117
  }>> & {
129
118
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
130
119
  }, {
@@ -100,12 +100,6 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
100
100
  search_key?: string[] | undefined;
101
101
  type?: string | undefined;
102
102
  value_key?: string | undefined;
103
- level_key?: string | undefined;
104
- link_key?: string | undefined;
105
- link_key_split?: string | undefined;
106
- show_key?: string | undefined;
107
- conObj?: import("../../../es/shared/types").AnyObject[] | undefined;
108
- conObjFirstLevel?: import("../../../es/shared/types").AnyObject[] | undefined;
109
103
  } | undefined;
110
104
  open?: {
111
105
  value?: any;
@@ -102,12 +102,6 @@ declare const _default: import("vue").DefineComponent<{
102
102
  search_key?: string[] | undefined;
103
103
  type?: string | undefined;
104
104
  value_key?: string | undefined;
105
- level_key?: string | undefined;
106
- link_key?: string | undefined;
107
- link_key_split?: string | undefined;
108
- show_key?: string | undefined;
109
- conObj?: import("../../../../es/shared/types").AnyObject[] | undefined;
110
- conObjFirstLevel?: import("../../../../es/shared/types").AnyObject[] | undefined;
111
105
  } | undefined;
112
106
  open?: {
113
107
  value?: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
- "version": "3.1.23-beta.4",
3
+ "version": "3.1.23-beta.6",
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": "245fefa8f22925d581e522aa2b2d8422d65b93a0"
69
+ "gitHead": "6a634e3761d98852782e6fac8335125ea3950418"
70
70
  }
@@ -1,4 +0,0 @@
1
- export declare const useCommon: (props: any, attrs: any) => {
2
- formRef: import("vue").Ref<HTMLElement | null>;
3
- isShow: import("vue").Ref<boolean>;
4
- };
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';