cnhis-design-vue 3.1.33-beta.9 → 3.1.34-beta.0

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 (150) hide show
  1. package/README.md +123 -123
  2. package/es/components/big-table/index.d.ts +1 -1
  3. package/es/components/big-table/src/BigTable.vue.d.ts +1 -1
  4. package/es/components/big-table/src/BigTable.vue2.js +7 -9
  5. package/es/components/big-table/src/components/edit-form/edit-input.js +1 -1
  6. package/es/components/big-table/src/components/edit-form/edit-select.js +1 -1
  7. package/es/components/big-table/src/components/edit-form/edit-time.js +5 -3
  8. package/es/components/big-table/src/components/edit-form/useCommon.d.ts +2 -1
  9. package/es/components/big-table/src/components/edit-form/useCommon.js +7 -3
  10. package/es/components/big-table/src/hooks/useFormat.js +1 -1
  11. package/es/components/button-print/index.d.ts +13 -0
  12. package/es/components/button-print/src/ButtonPrint.vue.d.ts +13 -0
  13. package/es/components/button-print/src/ButtonPrint.vue2.js +8 -1
  14. package/es/components/button-print/src/utils/print.d.ts +2 -2
  15. package/es/components/button-print/src/utils/print.js +7 -4
  16. package/es/components/fabric-chart/index.d.ts +133 -2
  17. package/es/components/fabric-chart/src/BirthProcessChart.vue.d.ts +132 -0
  18. package/es/components/fabric-chart/src/BirthProcessChart.vue.js +62 -8
  19. package/es/components/fabric-chart/src/FabricChart.vue.d.ts +133 -2
  20. package/es/components/fabric-chart/src/FabricChart.vue.js +2 -2
  21. package/es/components/fabric-chart/src/TemperatureChart.vue.d.ts +1 -2
  22. package/es/components/fabric-chart/src/TemperatureChart.vue.js +17 -9
  23. package/es/components/fabric-chart/src/components/PopupMenu.js +2 -2
  24. package/es/components/fabric-chart/src/components/PopupTip.vue.d.ts +3 -2
  25. package/es/components/fabric-chart/src/hooks/index.d.ts +1 -0
  26. package/es/components/fabric-chart/src/hooks/index.js +1 -0
  27. package/es/components/fabric-chart/src/hooks/useBirthProcess.d.ts +23 -1
  28. package/es/components/fabric-chart/src/hooks/useBirthProcess.js +305 -9
  29. package/es/components/fabric-chart/src/hooks/useCenter.d.ts +0 -2
  30. package/es/components/fabric-chart/src/hooks/useCenter.js +27 -45
  31. package/es/components/fabric-chart/src/hooks/useCommon.d.ts +8 -0
  32. package/es/components/fabric-chart/src/hooks/useCommon.js +32 -0
  33. package/es/components/fabric-chart/src/hooks/useCumputedPoint.d.ts +5 -2
  34. package/es/components/fabric-chart/src/hooks/useCumputedPoint.js +27 -10
  35. package/es/components/fabric-chart/src/hooks/useLeft.d.ts +1 -1
  36. package/es/components/fabric-chart/src/hooks/useLeft.js +12 -7
  37. package/es/components/fabric-chart/src/interface.d.ts +1 -0
  38. package/es/components/fabric-chart/src/utils/utils.d.ts +11 -0
  39. package/es/components/fabric-chart/src/utils/utils.js +27 -0
  40. package/es/components/iho-table/index.d.ts +4 -3
  41. package/es/components/iho-table/src/IhoTable.vue.d.ts +4 -3
  42. package/es/components/iho-table/src/IhoTable.vue.js +6 -4
  43. package/es/components/iho-table/src/components/IhoTableColumn.js +1 -1
  44. package/es/components/iho-table/src/constants/index.d.ts +3 -3
  45. package/es/components/iho-table/src/constants/index.js +0 -1
  46. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +5 -1
  47. package/es/components/iho-table/src/hooks/tapHooks/index.js +10 -9
  48. package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +2 -2
  49. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +119 -119
  50. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.d.ts +5 -3
  51. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.js +1 -1
  52. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.d.ts +16 -4
  53. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.js +9 -4
  54. package/es/components/iho-table/src/hooks/useColumnConfigAdaptor.js +6 -1
  55. package/es/components/iho-table/src/plugins/defaultConfigPlugin/index.js +1 -1
  56. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.d.ts +51 -24
  57. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.js +37 -51
  58. package/es/components/iho-table/src/plugins/filterPlugin/index.js +181 -20
  59. package/es/components/iho-table/src/plugins/filterPlugin/types.d.ts +2 -6
  60. package/es/components/iho-table/src/plugins/filterPlugin/types.js +0 -7
  61. package/es/components/iho-table/src/plugins/index.js +1 -1
  62. package/es/components/iho-table/src/plugins/keyboardEventPlugin/index.js +1 -1
  63. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +7 -4
  64. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +8 -8
  65. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.js +8 -12
  66. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/index.js +2 -2
  67. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/{useCommon.d.ts → useAutoFocus.d.ts} +2 -1
  68. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/{useCommon.js → useAutoFocus.js} +6 -2
  69. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/inputRendererPlugin.js +4 -2
  70. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/numberRendererPlugin.js +11 -5
  71. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.d.ts +5 -5
  72. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.js +14 -15
  73. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +2 -2
  74. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.d.ts +9 -9
  75. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.js +9 -10
  76. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +5 -5
  77. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin.js +7 -1
  78. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/checkRendererPlugin.js +3 -5
  79. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/seqRendererPlugin.js +5 -2
  80. package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/rowGroupUtils.js +7 -4
  81. package/es/components/iho-table/src/plugins/virtualTreePlugin/index.js +1 -1
  82. package/es/components/iho-table/src/types/index.d.ts +10 -12
  83. package/es/components/iho-table/src/types/pluginType.d.ts +28 -12
  84. package/es/components/iho-table/src/utils/index.d.ts +5 -10
  85. package/es/components/iho-table/src/utils/index.js +19 -26
  86. package/es/components/iho-table/style/index.css +1 -1
  87. package/es/components/index.css +1 -1
  88. package/es/components/info-header/src/InfoHeader.vue.js +1 -1
  89. package/es/components/info-header/style/index.css +1 -1
  90. package/es/components/keyboard/index.d.ts +62 -1
  91. package/es/components/keyboard/src/Keyboard.vue.d.ts +62 -1
  92. package/es/components/keyboard/src/Keyboard.vue.js +4 -1
  93. package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +67 -5
  94. package/es/components/keyboard/src/components/NumberPanel.vue.js +48 -26
  95. package/es/components/keyboard/style/index.css +1 -1
  96. package/es/components/select-person/index.d.ts +1 -2
  97. package/es/components/select-person/src/SelectPerson.vue.d.ts +1 -2
  98. package/es/components/select-person/src/SelectPerson.vue2.js +20 -19
  99. package/es/components/select-person/src/utils/index.d.ts +1 -0
  100. package/es/components/select-person/src/utils/index.js +15 -1
  101. package/es/shared/assets/img/failure.js +1 -1
  102. package/es/shared/assets/img/failure.png.js +1 -1
  103. package/es/shared/assets/img/icon-asc.js +1 -1
  104. package/es/shared/assets/img/icon-desc.js +1 -1
  105. package/es/shared/assets/img/no-permission.js +1 -1
  106. package/es/shared/assets/img/no-permission.png.js +1 -1
  107. package/es/shared/assets/img/nodata.js +1 -1
  108. package/es/shared/assets/img/nodata.png.js +1 -1
  109. package/es/shared/assets/img/notfound.js +1 -1
  110. package/es/shared/assets/img/notfound.png.js +1 -1
  111. package/es/shared/assets/img/qr.js +1 -1
  112. package/es/shared/assets/img/qr.png.js +1 -1
  113. package/es/shared/assets/img/success.js +1 -1
  114. package/es/shared/assets/img/success.png.js +1 -1
  115. package/es/shared/assets/img/video.js +1 -1
  116. package/es/shared/assets/img/video.png.js +1 -1
  117. package/es/shared/assets/img/video_default_cover.js +1 -1
  118. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  119. package/es/shared/assets/img/video_hover.js +1 -1
  120. package/es/shared/assets/img/video_play_hover.js +1 -1
  121. package/es/shared/assets/img/xb_big.js +1 -1
  122. package/es/shared/assets/img/xb_big.png.js +1 -1
  123. package/es/shared/assets/img/xb_small.js +1 -1
  124. package/es/shared/assets/img/xb_small.png.js +1 -1
  125. package/package.json +2 -2
  126. package/es/components/big-table/src/components/edit-form/dist/edit-date.d.ts +0 -36
  127. package/es/components/big-table/src/components/edit-form/dist/edit-select.d.ts +0 -37
  128. package/es/components/big-table/src/components/edit-form/dist/edit-time.d.ts +0 -45
  129. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  130. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
  131. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
  132. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
  133. package/es/components/fabric-chart/src/constants/index.d.ts +0 -4
  134. package/es/components/fabric-chart/src/constants/index.js +0 -4
  135. package/es/components/fabric-chart/src/utils/index.d.ts +0 -6823
  136. package/es/components/form-render/src/components/renderer/dist/levelSearchCascader.d.ts +0 -65
  137. package/es/components/form-render/src/components/renderer/dist/radio.d.ts +0 -64
  138. package/es/components/form-render/src/components/renderer/dist/remoteSearch.d.ts +0 -46
  139. package/es/components/form-render/src/components/renderer/dist/search.d.ts +0 -56
  140. package/es/components/form-render/src/components/renderer/dist/select.d.ts +0 -55
  141. package/es/components/iho-table/src/components/dist/IhoTableColumn.d.ts +0 -20
  142. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/dist/index.d.ts +0 -3
  143. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dist/inputRendererPlugin.d.ts +0 -3
  144. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dist/numberRendererPlugin.d.ts +0 -3
  145. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dist/timeRendererPlugin.d.ts +0 -3
  146. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/dist/editSelect.d.ts +0 -42
  147. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/dist/index.d.ts +0 -3
  148. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/dist/index.d.ts +0 -3
  149. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +0 -86
  150. package/es/shared/utils/tapable/index.d.ts +0 -139
@@ -1,65 +0,0 @@
1
- export const __esModule: true;
2
- export const LEVEL_SEARCH_CASCADER: vue_2.DefineComponent<{
3
- options: {
4
- type: ArrayConstructor;
5
- default: () => never[];
6
- };
7
- onFocus: {
8
- type: FunctionConstructor;
9
- };
10
- autograph: {
11
- type: StringConstructor;
12
- required: true;
13
- };
14
- lazyRequest: {
15
- type: BooleanConstructor;
16
- default: boolean;
17
- };
18
- requestCache: {
19
- type: BooleanConstructor;
20
- default: boolean;
21
- };
22
- wordbook: {
23
- type: ObjectConstructor;
24
- required: true;
25
- };
26
- onChange: {};
27
- value: {
28
- type: (ArrayConstructor | StringConstructor)[];
29
- };
30
- }, () => any, any, {}, {}, vue_2.ComponentOptionsMixin, vue_2.ComponentOptionsMixin, "update:value"[], "update:value", vue_2.VNodeProps & vue_2.AllowedComponentProps & vue_2.ComponentCustomProps, Readonly<vue_2.ExtractPropTypes<{
31
- options: {
32
- type: ArrayConstructor;
33
- default: () => never[];
34
- };
35
- onFocus: {
36
- type: FunctionConstructor;
37
- };
38
- autograph: {
39
- type: StringConstructor;
40
- required: true;
41
- };
42
- lazyRequest: {
43
- type: BooleanConstructor;
44
- default: boolean;
45
- };
46
- requestCache: {
47
- type: BooleanConstructor;
48
- default: boolean;
49
- };
50
- wordbook: {
51
- type: ObjectConstructor;
52
- required: true;
53
- };
54
- onChange: {};
55
- value: {
56
- type: (ArrayConstructor | StringConstructor)[];
57
- };
58
- }>> & {
59
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
60
- }, {
61
- options: unknown[];
62
- lazyRequest: boolean;
63
- requestCache: boolean;
64
- }>;
65
- import vue_2 = require("vue");
@@ -1,64 +0,0 @@
1
- export const __esModule: true;
2
- export const RADIO: vue_2.DefineComponent<{
3
- value: {
4
- type: (NumberConstructor | StringConstructor)[];
5
- };
6
- options: {
7
- type: ArrayConstructor;
8
- default: () => never[];
9
- };
10
- autograph: {
11
- type: StringConstructor;
12
- };
13
- lazyRequest: {
14
- type: BooleanConstructor;
15
- default: boolean;
16
- };
17
- requestCache: {
18
- type: BooleanConstructor;
19
- default: boolean;
20
- };
21
- wordbook: {
22
- type: ObjectConstructor;
23
- };
24
- vertical: {
25
- type: BooleanConstructor;
26
- default: boolean;
27
- };
28
- onChange: {};
29
- }, () => any, any, {}, {}, vue_2.ComponentOptionsMixin, vue_2.ComponentOptionsMixin, "update:value"[], "update:value", vue_2.VNodeProps & vue_2.AllowedComponentProps & vue_2.ComponentCustomProps, Readonly<vue_2.ExtractPropTypes<{
30
- value: {
31
- type: (NumberConstructor | StringConstructor)[];
32
- };
33
- options: {
34
- type: ArrayConstructor;
35
- default: () => never[];
36
- };
37
- autograph: {
38
- type: StringConstructor;
39
- };
40
- lazyRequest: {
41
- type: BooleanConstructor;
42
- default: boolean;
43
- };
44
- requestCache: {
45
- type: BooleanConstructor;
46
- default: boolean;
47
- };
48
- wordbook: {
49
- type: ObjectConstructor;
50
- };
51
- vertical: {
52
- type: BooleanConstructor;
53
- default: boolean;
54
- };
55
- onChange: {};
56
- }>> & {
57
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
58
- }, {
59
- options: unknown[];
60
- vertical: boolean;
61
- lazyRequest: boolean;
62
- requestCache: boolean;
63
- }>;
64
- import vue_2 = require("vue");
@@ -1,46 +0,0 @@
1
- export const __esModule: true;
2
- export const REMOTE_SEARCH: vue_2.DefineComponent<{
3
- value: {
4
- type: StringConstructor;
5
- };
6
- requestCache: {
7
- type: BooleanConstructor;
8
- default: boolean;
9
- };
10
- options: {
11
- type: ArrayConstructor;
12
- default: () => never[];
13
- };
14
- urlConfig: {
15
- type: ObjectConstructor;
16
- };
17
- onFocus: {
18
- type: FunctionConstructor;
19
- };
20
- onChange: {};
21
- }, () => any, any, {}, {}, vue_2.ComponentOptionsMixin, vue_2.ComponentOptionsMixin, "update:value"[], "update:value", vue_2.VNodeProps & vue_2.AllowedComponentProps & vue_2.ComponentCustomProps, Readonly<vue_2.ExtractPropTypes<{
22
- value: {
23
- type: StringConstructor;
24
- };
25
- requestCache: {
26
- type: BooleanConstructor;
27
- default: boolean;
28
- };
29
- options: {
30
- type: ArrayConstructor;
31
- default: () => never[];
32
- };
33
- urlConfig: {
34
- type: ObjectConstructor;
35
- };
36
- onFocus: {
37
- type: FunctionConstructor;
38
- };
39
- onChange: {};
40
- }>> & {
41
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
42
- }, {
43
- options: unknown[];
44
- requestCache: boolean;
45
- }>;
46
- import vue_2 = require("vue");
@@ -1,56 +0,0 @@
1
- export const __esModule: true;
2
- export const SEARCH: vue_2.DefineComponent<{
3
- value: {
4
- type: StringConstructor;
5
- };
6
- autograph: {
7
- type: StringConstructor;
8
- required: true;
9
- };
10
- lazyRequest: {
11
- type: BooleanConstructor;
12
- default: boolean;
13
- };
14
- requestCache: {
15
- type: BooleanConstructor;
16
- default: boolean;
17
- };
18
- wordbook: {
19
- type: ObjectConstructor;
20
- required: true;
21
- };
22
- onFocus: {
23
- type: FunctionConstructor;
24
- };
25
- onChange: {};
26
- }, () => any, any, {}, {}, vue_2.ComponentOptionsMixin, vue_2.ComponentOptionsMixin, "update:value"[], "update:value", vue_2.VNodeProps & vue_2.AllowedComponentProps & vue_2.ComponentCustomProps, Readonly<vue_2.ExtractPropTypes<{
27
- value: {
28
- type: StringConstructor;
29
- };
30
- autograph: {
31
- type: StringConstructor;
32
- required: true;
33
- };
34
- lazyRequest: {
35
- type: BooleanConstructor;
36
- default: boolean;
37
- };
38
- requestCache: {
39
- type: BooleanConstructor;
40
- default: boolean;
41
- };
42
- wordbook: {
43
- type: ObjectConstructor;
44
- required: true;
45
- };
46
- onFocus: {
47
- type: FunctionConstructor;
48
- };
49
- onChange: {};
50
- }>> & {
51
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
52
- }, {
53
- lazyRequest: boolean;
54
- requestCache: boolean;
55
- }>;
56
- import vue_2 = require("vue");
@@ -1,55 +0,0 @@
1
- export const __esModule: true;
2
- export const SELECT: vue_2.DefineComponent<{
3
- value: {
4
- type: (ArrayConstructor | StringConstructor)[];
5
- };
6
- lazyRequest: {
7
- type: BooleanConstructor;
8
- default: boolean;
9
- };
10
- requestCache: {
11
- type: BooleanConstructor;
12
- default: boolean;
13
- };
14
- options: {
15
- type: ArrayConstructor;
16
- default: () => never[];
17
- };
18
- urlConfig: {
19
- type: ObjectConstructor;
20
- };
21
- onFocus: {
22
- type: FunctionConstructor;
23
- };
24
- onChange: {};
25
- }, () => any, any, {}, {}, vue_2.ComponentOptionsMixin, vue_2.ComponentOptionsMixin, "update:value"[], "update:value", vue_2.VNodeProps & vue_2.AllowedComponentProps & vue_2.ComponentCustomProps, Readonly<vue_2.ExtractPropTypes<{
26
- value: {
27
- type: (ArrayConstructor | StringConstructor)[];
28
- };
29
- lazyRequest: {
30
- type: BooleanConstructor;
31
- default: boolean;
32
- };
33
- requestCache: {
34
- type: BooleanConstructor;
35
- default: boolean;
36
- };
37
- options: {
38
- type: ArrayConstructor;
39
- default: () => never[];
40
- };
41
- urlConfig: {
42
- type: ObjectConstructor;
43
- };
44
- onFocus: {
45
- type: FunctionConstructor;
46
- };
47
- onChange: {};
48
- }>> & {
49
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
50
- }, {
51
- options: unknown[];
52
- lazyRequest: boolean;
53
- requestCache: boolean;
54
- }>;
55
- import vue_2 = require("vue");
@@ -1,20 +0,0 @@
1
- export const __esModule: true;
2
- export default ColumnComponent;
3
- declare var ColumnComponent: vue_1.DefineComponent<{
4
- field: {
5
- type: ObjectConstructor;
6
- required: true;
7
- };
8
- annotation: {
9
- type: ObjectConstructor;
10
- };
11
- }, () => any, any, {}, {}, vue_1.ComponentOptionsMixin, vue_1.ComponentOptionsMixin, {}, string, vue_1.VNodeProps & vue_1.AllowedComponentProps & vue_1.ComponentCustomProps, Readonly<vue_1.ExtractPropTypes<{
12
- field: {
13
- type: ObjectConstructor;
14
- required: true;
15
- };
16
- annotation: {
17
- type: ObjectConstructor;
18
- };
19
- }>>, {}>;
20
- import vue_1 = require("vue");
@@ -1,3 +0,0 @@
1
- export const __esModule: true;
2
- export function dateRendererPlugin(): iho_table_1.TablePlugin;
3
- import iho_table_1 = require("../../../../../../../../../es/components/iho-table");
@@ -1,3 +0,0 @@
1
- export const __esModule: true;
2
- export function inputRendererPlugin(): iho_table_1.TablePlugin;
3
- import iho_table_1 = require("../../../../../../../../es/components/iho-table");
@@ -1,3 +0,0 @@
1
- export const __esModule: true;
2
- export function numberRendererPlugin(): iho_table_1.TablePlugin;
3
- import iho_table_1 = require("../../../../../../../../es/components/iho-table");
@@ -1,3 +0,0 @@
1
- export const __esModule: true;
2
- export function timeRendererPlugin(): iho_table_1.TablePlugin;
3
- import iho_table_1 = require("../../../../../../../../es/components/iho-table");
@@ -1,42 +0,0 @@
1
- export const __esModule: true;
2
- declare const _default: vue_1.DefineComponent<{
3
- value: {
4
- type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
5
- default: undefined;
6
- };
7
- column: {
8
- type: ObjectConstructor;
9
- required: true;
10
- };
11
- row: {
12
- type: ObjectConstructor;
13
- required: true;
14
- };
15
- index: {
16
- type: NumberConstructor;
17
- required: true;
18
- };
19
- }, () => any, any, {}, {}, vue_1.ComponentOptionsMixin, vue_1.ComponentOptionsMixin, "update:value"[], "update:value", vue_1.VNodeProps & vue_1.AllowedComponentProps & vue_1.ComponentCustomProps, Readonly<vue_1.ExtractPropTypes<{
20
- value: {
21
- type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
22
- default: undefined;
23
- };
24
- column: {
25
- type: ObjectConstructor;
26
- required: true;
27
- };
28
- row: {
29
- type: ObjectConstructor;
30
- required: true;
31
- };
32
- index: {
33
- type: NumberConstructor;
34
- required: true;
35
- };
36
- }>> & {
37
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
38
- }, {
39
- value: string | number | unknown[];
40
- }>;
41
- export default _default;
42
- import vue_1 = require("vue");
@@ -1,3 +0,0 @@
1
- export const __esModule: true;
2
- export function selectRendererPlugin(): iho_table_1.TablePlugin;
3
- import iho_table_1 = require("../../../../../../../../../es/components/iho-table");
@@ -1,3 +0,0 @@
1
- export const __esModule: true;
2
- export function separateRendererPlugins(): iho_table_1.TablePlugin;
3
- import iho_table_1 = require("../../../../../../../../../es/components/iho-table");
@@ -1,86 +0,0 @@
1
- declare const draggableComponent: import('vue').DefineComponent<
2
- {
3
- list: {
4
- type: ArrayConstructor;
5
- required: boolean;
6
- default: any;
7
- };
8
- modelValue: {
9
- type: ArrayConstructor;
10
- required: boolean;
11
- default: any;
12
- };
13
- itemKey: {
14
- type: (FunctionConstructor | StringConstructor)[];
15
- required: boolean;
16
- };
17
- clone: {
18
- type: FunctionConstructor;
19
- default: (original: any) => any;
20
- };
21
- tag: {
22
- type: StringConstructor;
23
- default: string;
24
- };
25
- move: {
26
- type: FunctionConstructor;
27
- default: any;
28
- };
29
- componentData: {
30
- type: ObjectConstructor;
31
- required: boolean;
32
- default: any;
33
- };
34
- },
35
- unknown,
36
- {
37
- error: boolean;
38
- },
39
- {
40
- realList(): any;
41
- getKey(): any;
42
- },
43
- {
44
- getUnderlyingVm(domElement: any): any;
45
- getUnderlyingPotencialDraggableComponent(htmElement: any): any;
46
- emitChanges(evt: any): void;
47
- alterList(onList: any): void;
48
- spliceList(): void;
49
- updatePosition(oldIndex: any, newIndex: any): void;
50
- getRelatedContextFromMoveEvent({ to, related }: { to: any; related: any }): any;
51
- getVmIndexFromDomIndex(domIndex: any): any;
52
- onDragStart(evt: any): void;
53
- onDragAdd(evt: any): void;
54
- onDragRemove(evt: any): void;
55
- onDragUpdate(evt: any): void;
56
- computeFutureIndex(relatedContext: any, evt: any): any;
57
- onDragMove(evt: any, originalEvent: any): any;
58
- onDragEnd(): void;
59
- },
60
- import('vue').ComponentOptionsMixin,
61
- import('vue').ComponentOptionsMixin,
62
- any[],
63
- any,
64
- import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps,
65
- Readonly<
66
- {
67
- move: Function;
68
- tag: string;
69
- clone: Function;
70
- list: unknown[];
71
- modelValue: unknown[];
72
- componentData: Record<string, any>;
73
- } & {
74
- itemKey?: string | Function;
75
- }
76
- >,
77
- {
78
- move: Function;
79
- tag: string;
80
- clone: Function;
81
- list: unknown[];
82
- modelValue: unknown[];
83
- componentData: Record<string, any>;
84
- }
85
- >;
86
- export default draggableComponent;
@@ -1,139 +0,0 @@
1
- type FixedSizeArray<T extends number, U> = T extends 0
2
- ? void[]
3
- : ReadonlyArray<U> & {
4
- 0: U;
5
- length: T;
6
- };
7
- type Measure<T extends number> = T extends 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 ? T : never;
8
- type Append<T extends any[], U> = {
9
- 0: [U];
10
- 1: [T[0], U];
11
- 2: [T[0], T[1], U];
12
- 3: [T[0], T[1], T[2], U];
13
- 4: [T[0], T[1], T[2], T[3], U];
14
- 5: [T[0], T[1], T[2], T[3], T[4], U];
15
- 6: [T[0], T[1], T[2], T[3], T[4], T[5], U];
16
- 7: [T[0], T[1], T[2], T[3], T[4], T[5], T[6], U];
17
- 8: [T[0], T[1], T[2], T[3], T[4], T[5], T[6], T[7], U];
18
- }[Measure<T['length']>];
19
- type AsArray<T> = T extends any[] ? T : [T];
20
-
21
- declare class UnsetAdditionalOptions {
22
- _UnsetAdditionalOptions: true;
23
- }
24
- type IfSet<X> = X extends UnsetAdditionalOptions ? {} : X;
25
-
26
- type Callback<E, T> = (error: E | null, result?: T) => void;
27
- type InnerCallback<E, T> = (error?: E | null | false, result?: T) => void;
28
-
29
- type FullTap = Tap & {
30
- type: 'sync' | 'async' | 'promise';
31
- fn: Function;
32
- };
33
-
34
- type Tap = TapOptions & {
35
- name: string;
36
- };
37
-
38
- type TapOptions = {
39
- before?: string;
40
- stage?: number;
41
- };
42
-
43
- interface HookInterceptor<T, R, AdditionalOptions = UnsetAdditionalOptions> {
44
- name?: string;
45
- tap?: (tap: FullTap & IfSet<AdditionalOptions>) => void;
46
- call?: (...args: any[]) => void;
47
- loop?: (...args: any[]) => void;
48
- error?: (err: Error) => void;
49
- result?: (result: R) => void;
50
- done?: () => void;
51
- register?: (tap: FullTap & IfSet<AdditionalOptions>) => FullTap & IfSet<AdditionalOptions>;
52
- }
53
-
54
- type ArgumentNames<T extends any[]> = FixedSizeArray<T['length'], string>;
55
-
56
- declare class Hook<T, R, AdditionalOptions = UnsetAdditionalOptions> {
57
- constructor(args?: ArgumentNames<AsArray<T>>, name?: string);
58
- name: string | undefined;
59
- taps: FullTap[];
60
- intercept(interceptor: HookInterceptor<T, R, AdditionalOptions>): void;
61
- isUsed(): boolean;
62
- callAsync(...args: Append<AsArray<T>, Callback<Error, R>>): void;
63
- promise(...args: AsArray<T>): Promise<R>;
64
- tap(options: string | (Tap & IfSet<AdditionalOptions>), fn: (...args: AsArray<T>) => R): void;
65
- withOptions(options: TapOptions & IfSet<AdditionalOptions>): Omit<this, 'call' | 'callAsync' | 'promise'>;
66
- }
67
-
68
- export class SyncHook<T, R = void, AdditionalOptions = UnsetAdditionalOptions> extends Hook<T, R, AdditionalOptions> {
69
- call(...args: AsArray<T>): R;
70
- }
71
-
72
- export class SyncBailHook<T, R, AdditionalOptions = UnsetAdditionalOptions> extends SyncHook<T, R, AdditionalOptions> {}
73
- export class SyncLoopHook<T, AdditionalOptions = UnsetAdditionalOptions> extends SyncHook<T, void, AdditionalOptions> {}
74
- export class SyncWaterfallHook<T, AdditionalOptions = UnsetAdditionalOptions> extends SyncHook<
75
- T,
76
- AsArray<T>[0],
77
- AdditionalOptions
78
- > {}
79
-
80
- declare class AsyncHook<T, R, AdditionalOptions = UnsetAdditionalOptions> extends Hook<T, R, AdditionalOptions> {
81
- tapAsync(
82
- options: string | (Tap & IfSet<AdditionalOptions>),
83
- fn: (...args: Append<AsArray<T>, InnerCallback<Error, R>>) => void
84
- ): void;
85
- tapPromise(options: string | (Tap & IfSet<AdditionalOptions>), fn: (...args: AsArray<T>) => Promise<R>): void;
86
- }
87
-
88
- export class AsyncParallelHook<T, AdditionalOptions = UnsetAdditionalOptions> extends AsyncHook<
89
- T,
90
- void,
91
- AdditionalOptions
92
- > {}
93
- export class AsyncParallelBailHook<T, R, AdditionalOptions = UnsetAdditionalOptions> extends AsyncHook<
94
- T,
95
- R,
96
- AdditionalOptions
97
- > {}
98
- export class AsyncSeriesHook<T, AdditionalOptions = UnsetAdditionalOptions> extends AsyncHook<
99
- T,
100
- void,
101
- AdditionalOptions
102
- > {}
103
- export class AsyncSeriesBailHook<T, R, AdditionalOptions = UnsetAdditionalOptions> extends AsyncHook<
104
- T,
105
- R,
106
- AdditionalOptions
107
- > {}
108
- export class AsyncSeriesLoopHook<T, AdditionalOptions = UnsetAdditionalOptions> extends AsyncHook<
109
- T,
110
- void,
111
- AdditionalOptions
112
- > {}
113
- export class AsyncSeriesWaterfallHook<T, AdditionalOptions = UnsetAdditionalOptions> extends AsyncHook<
114
- T,
115
- AsArray<T>[0],
116
- AdditionalOptions
117
- > {}
118
-
119
- type HookFactory<H> = (key: any, hook?: H) => H;
120
-
121
- interface HookMapInterceptor<H> {
122
- factory?: HookFactory<H>;
123
- }
124
-
125
- export class HookMap<H> {
126
- constructor(factory: HookFactory<H>, name?: string);
127
- name: string | undefined;
128
- get(key: any): H | undefined;
129
- for(key: any): H;
130
- intercept(interceptor: HookMapInterceptor<H>): void;
131
- }
132
-
133
- export class MultiHook<H> {
134
- constructor(hooks: H[], name?: string);
135
- name: string | undefined;
136
- tap(options: string | Tap, fn?: Function): void;
137
- tapAsync(options: string | Tap, fn?: Function): void;
138
- tapPromise(options: string | Tap, fn?: Function): void;
139
- }