cnhis-design-vue 3.1.22-beta.1 → 3.1.22-beta.2

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 (62) hide show
  1. package/README.md +123 -123
  2. package/es/components/big-table/index.d.ts +0 -8
  3. package/es/components/big-table/index2.js +0 -2
  4. package/es/components/big-table/src/BigTable.vue.d.ts +0 -8
  5. package/es/components/big-table/src/components/edit-form/useCommon.d.ts +4 -0
  6. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  7. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
  8. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
  9. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
  10. package/es/components/fabric-chart/src/utils/index.d.ts +6823 -0
  11. package/es/components/form-render/src/components/renderer/combination.d.ts +7 -0
  12. package/es/components/form-render/src/components/renderer/combination.js +4 -1
  13. package/es/components/grid/index2.js +0 -2
  14. package/es/components/iho-table/index.d.ts +4011 -11
  15. package/es/components/iho-table/index2.js +1 -0
  16. package/es/components/iho-table/src/IhoTable.js +13 -5
  17. package/es/components/iho-table/src/IhoTable.vue.d.ts +4011 -11
  18. package/es/components/iho-table/src/constants/index.d.ts +5 -0
  19. package/es/components/iho-table/src/constants/index.js +1 -1
  20. package/es/components/iho-table/src/constants/index2.js +66 -1
  21. package/es/components/iho-table/src/hooks/index.js +1 -1
  22. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +2 -0
  23. package/es/components/iho-table/src/hooks/tapHooks/index.js +1 -1
  24. package/es/components/iho-table/src/hooks/tapHooks/index2.js +34 -3
  25. package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks.d.ts +14 -0
  26. package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks2.js +39 -1
  27. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +61 -60
  28. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks2.js +3 -1
  29. package/es/components/iho-table/src/plugins/defaultConfigPlugin/index2.js +1 -1
  30. package/es/components/iho-table/src/plugins/index.js +7 -5
  31. package/es/components/iho-table/src/plugins/index2.js +7 -5
  32. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index2.js +2 -0
  33. package/es/components/iho-table/src/plugins/rendererPlugins/index.d.ts +2 -5
  34. package/es/components/iho-table/src/plugins/rendererPlugins/index.js +7 -5
  35. package/es/components/iho-table/src/plugins/rendererPlugins/inputs/index.d.ts +1 -0
  36. package/es/components/iho-table/src/plugins/rendererPlugins/inputs/index.js +1 -0
  37. package/es/components/iho-table/src/plugins/rendererPlugins/inputs/inputRendererPlugins.d.ts +1 -0
  38. package/es/components/iho-table/src/plugins/rendererPlugins/inputs/inputRendererPlugins.js +44 -0
  39. package/es/components/iho-table/src/plugins/rendererPlugins/{checkRendererPlugin.d.ts → widgets/checkRendererPlugin.d.ts} +1 -1
  40. package/es/components/iho-table/src/plugins/rendererPlugins/{checkRendererPlugin.js → widgets/checkRendererPlugin.js} +2 -2
  41. package/es/components/iho-table/src/plugins/rendererPlugins/{colorRendererPlugin.d.ts → widgets/colorRendererPlugin.d.ts} +1 -1
  42. package/es/components/iho-table/src/plugins/rendererPlugins/{colorRendererPlugin.js → widgets/colorRendererPlugin.js} +6 -8
  43. package/es/components/iho-table/src/plugins/rendererPlugins/{defaultRendererPlugin.d.ts → widgets/defaultRendererPlugin.d.ts} +1 -1
  44. package/es/components/iho-table/src/plugins/rendererPlugins/{defaultRendererPlugin.js → widgets/defaultRendererPlugin.js} +4 -4
  45. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/index.d.ts +6 -0
  46. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/index.js +6 -0
  47. package/es/components/iho-table/src/plugins/rendererPlugins/{labelRendererPlugin.d.ts → widgets/labelRendererPlugin.d.ts} +1 -1
  48. package/es/components/iho-table/src/plugins/rendererPlugins/{labelRendererPlugin.js → widgets/labelRendererPlugin.js} +3 -3
  49. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.d.ts +2 -0
  50. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.js +89 -0
  51. package/es/components/iho-table/src/plugins/rendererPlugins/{seqRendererPlugin.d.ts → widgets/seqRendererPlugin.d.ts} +1 -1
  52. package/es/components/iho-table/src/plugins/rendererPlugins/{seqRendererPlugin.js → widgets/seqRendererPlugin.js} +3 -3
  53. package/es/components/iho-table/src/types/index.d.ts +7 -0
  54. package/es/components/iho-table/src/types/pluginType.d.ts +14 -0
  55. package/es/components/iho-table/src/utils/index.d.ts +1 -0
  56. package/es/components/iho-table/src/utils/index.js +1 -1
  57. package/es/components/iho-table/src/utils/index2.js +12 -1
  58. package/es/shared/utils/tapable/index.d.ts +139 -0
  59. package/package.json +3 -3
  60. package/es/shared/utils/loadVxe.d.ts +0 -2
  61. package/es/shared/utils/loadVxe.js +0 -1
  62. package/es/shared/utils/loadVxe2.js +0 -12
@@ -11,6 +11,9 @@ export declare const COMBINATION: import("vue").DefineComponent<{
11
11
  maxGroupNum: {
12
12
  type: NumberConstructor;
13
13
  };
14
+ disabled: {
15
+ type: BooleanConstructor;
16
+ };
14
17
  getProperties: {
15
18
  type: PropType<() => FieldItem[]>;
16
19
  default: () => never[];
@@ -29,6 +32,9 @@ export declare const COMBINATION: import("vue").DefineComponent<{
29
32
  maxGroupNum: {
30
33
  type: NumberConstructor;
31
34
  };
35
+ disabled: {
36
+ type: BooleanConstructor;
37
+ };
32
38
  getProperties: {
33
39
  type: PropType<() => FieldItem[]>;
34
40
  default: () => never[];
@@ -39,6 +45,7 @@ export declare const COMBINATION: import("vue").DefineComponent<{
39
45
  }>> & {
40
46
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
41
47
  }, {
48
+ disabled: boolean;
42
49
  title: string;
43
50
  getProperties: () => FieldItem[];
44
51
  }>;
@@ -22,6 +22,9 @@ const script = defineComponent({
22
22
  maxGroupNum: {
23
23
  type: Number
24
24
  },
25
+ disabled: {
26
+ type: Boolean
27
+ },
25
28
  getProperties: {
26
29
  type: Function,
27
30
  default: () => []
@@ -70,7 +73,7 @@ const script = defineComponent({
70
73
  "onClick": addGroup,
71
74
  "type": "info",
72
75
  "text": true,
73
- "disabled": currentGroupNum.value >= maxGroupNum.value
76
+ "disabled": currentGroupNum.value >= maxGroupNum.value || props.disabled
74
77
  }, {
75
78
  icon: () => createVNode(NIcon, {
76
79
  "component": AddCircleOutline
@@ -1,13 +1,11 @@
1
1
  import { COMPONENT_NAMESPACE } from '../../shared/global/variable2.js';
2
2
  import { safeComponentRegister } from '../../shared/utils/index2.js';
3
- import { loadVxeTable } from '../../shared/utils/loadVxe2.js';
4
3
  import '../../shared/utils/utilExpand.js';
5
4
  import script from './src/Grid.js';
6
5
 
7
6
  const Grid = script;
8
7
  Grid.install = function(app) {
9
8
  safeComponentRegister(app, Grid, COMPONENT_NAMESPACE + "Grid");
10
- loadVxeTable(app);
11
9
  };
12
10
 
13
11
  export { Grid as default };