cnhis-design-vue 3.1.22-beta.5 → 3.1.22-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.
- package/es/components/fabric-chart/index.d.ts +1 -0
- package/es/components/fabric-chart/src/FabricChart.js +3 -2
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +1 -0
- package/es/components/fabric-chart/src/hooks/useCenter.d.ts +1 -0
- package/es/components/fabric-chart/src/hooks/useCenter2.js +15 -3
- package/es/components/fabric-chart/src/hooks/useLeft.d.ts +1 -1
- package/es/components/fabric-chart/src/hooks/useLeft2.js +7 -5
- package/es/components/fabric-chart/src/interface.d.ts +2 -0
- package/es/components/iho-table/index.d.ts +453 -348
- package/es/components/iho-table/index2.js +1 -0
- package/es/components/iho-table/src/IhoTable.js +23 -8
- package/es/components/iho-table/src/IhoTable.vue.d.ts +454 -348
- package/es/components/iho-table/src/components/IhoTableColumn.d.ts +2 -2
- package/es/components/iho-table/src/components/IhoTableColumn.js +22 -3
- package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +4 -1
- package/es/components/iho-table/src/hooks/tapHooks/index2.js +3 -2
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +59 -59
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks2.js +59 -59
- package/es/components/iho-table/src/plugins/rendererPlugins/inputs/inputRendererPlugins.js +5 -0
- package/es/components/iho-table/src/types/index.d.ts +4 -2
- package/es/components/iho-table/src/types/pluginType.d.ts +63 -62
- package/package.json +2 -2
- package/es/components/form-render/src/components/index.d.ts +0 -0
- package/es/components/form-render/src/components/index.js +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ArrayAble } from '../../../../../es/shared/types';
|
|
1
|
+
import { ArrayAble, Nullable } from '../../../../../es/shared/types';
|
|
2
2
|
import { AsyncParallelHook, SyncWaterfallHook } from '../../../../../es/shared/utils/tapable';
|
|
3
|
-
import { VxeGlobalCommands, VxeGlobalFormats, VxeGlobalHooks, VxeGlobalMenus, VxeGlobalRenderer } from 'vxe-table';
|
|
3
|
+
import { VxeGlobalCommands, VxeGlobalFormats, VxeGlobalHooks, VxeGlobalMenus, VxeGlobalRenderer, VxeTableInstance } from 'vxe-table';
|
|
4
4
|
import { VxeTableEventProps, VxeTableEvents } from 'vxe-table/types/table';
|
|
5
5
|
import { VxeGlobalInterceptor } from 'vxe-table/types/v-x-e-table';
|
|
6
6
|
import { IhoTableConfig, IhoTableFieldItem } from '.';
|
|
@@ -52,68 +52,69 @@ export interface FieldHookContext {
|
|
|
52
52
|
export declare abstract class AbstractFieldHooks {
|
|
53
53
|
abstract readonly field: SyncWaterfallHook<WithTableConfig<[IhoTableFieldItem, FieldHookContext]>>;
|
|
54
54
|
}
|
|
55
|
+
export declare type WithIhoEventContext<T> = T extends any[] ? [...T, IhoTableConfig, Nullable<VxeTableInstance>] : [T, IhoTableConfig, Nullable<VxeTableInstance>];
|
|
55
56
|
declare type VxeEventTypes = Required<{
|
|
56
|
-
readonly [K in keyof VxeTableEventProps]: AsyncParallelHook<
|
|
57
|
+
readonly [K in keyof VxeTableEventProps]: AsyncParallelHook<WithIhoEventContext<VxeTableEventProps[K]>>;
|
|
57
58
|
}>;
|
|
58
59
|
export declare abstract class AbstractEventHooks implements VxeEventTypes {
|
|
59
|
-
abstract readonly onKeydownStart: AsyncParallelHook<
|
|
60
|
-
abstract readonly onKeydown: AsyncParallelHook<
|
|
61
|
-
abstract readonly onKeydownEnd: AsyncParallelHook<
|
|
62
|
-
abstract readonly onPaste: AsyncParallelHook<
|
|
63
|
-
abstract readonly onCopy: AsyncParallelHook<
|
|
64
|
-
abstract readonly onCut: AsyncParallelHook<
|
|
65
|
-
abstract readonly onCurrentChange: AsyncParallelHook<
|
|
66
|
-
abstract readonly onRadioChange: AsyncParallelHook<
|
|
67
|
-
abstract readonly onCheckboxChange: AsyncParallelHook<
|
|
68
|
-
abstract readonly onCheckboxAll: AsyncParallelHook<
|
|
69
|
-
abstract readonly onCheckboxRangeStart: AsyncParallelHook<
|
|
70
|
-
abstract readonly onCheckboxRangeChange: AsyncParallelHook<
|
|
71
|
-
abstract readonly onCheckboxRangeEnd: AsyncParallelHook<
|
|
72
|
-
abstract readonly onCellClick: AsyncParallelHook<
|
|
73
|
-
abstract readonly onCellDblclick: AsyncParallelHook<
|
|
74
|
-
abstract readonly onCellMenu: AsyncParallelHook<
|
|
75
|
-
abstract readonly onCellMouseenter: AsyncParallelHook<
|
|
76
|
-
abstract readonly onCellMouseleave: AsyncParallelHook<
|
|
77
|
-
abstract readonly onHeaderCellClick: AsyncParallelHook<
|
|
78
|
-
abstract readonly onHeaderCellDblclick: AsyncParallelHook<
|
|
79
|
-
abstract readonly onHeaderCellMenu: AsyncParallelHook<
|
|
80
|
-
abstract readonly onFooterCellClick: AsyncParallelHook<
|
|
81
|
-
abstract readonly onFooterCellDblclick: AsyncParallelHook<
|
|
82
|
-
abstract readonly onFooterCellMenu: AsyncParallelHook<
|
|
83
|
-
abstract readonly onSortChange: AsyncParallelHook<
|
|
84
|
-
abstract readonly onFilterChange: AsyncParallelHook<
|
|
85
|
-
abstract readonly onFilterVisible: AsyncParallelHook<
|
|
86
|
-
abstract readonly onResizableChange: AsyncParallelHook<
|
|
87
|
-
abstract readonly onToggleRowExpand: AsyncParallelHook<
|
|
88
|
-
abstract readonly onToggleTreeExpand: AsyncParallelHook<
|
|
89
|
-
abstract readonly onMenuClick: AsyncParallelHook<
|
|
90
|
-
abstract readonly onEditClosed: AsyncParallelHook<
|
|
91
|
-
abstract readonly onEditActived: AsyncParallelHook<
|
|
92
|
-
abstract readonly onEditDisabled: AsyncParallelHook<
|
|
93
|
-
abstract readonly onValidError: AsyncParallelHook<
|
|
94
|
-
abstract readonly onScroll: AsyncParallelHook<
|
|
95
|
-
abstract readonly onCustom: AsyncParallelHook<
|
|
96
|
-
abstract readonly onOpenFnr: AsyncParallelHook<
|
|
97
|
-
abstract readonly onFnrChange: AsyncParallelHook<
|
|
98
|
-
abstract readonly onFnrFind: AsyncParallelHook<
|
|
99
|
-
abstract readonly onFnrFindAll: AsyncParallelHook<
|
|
100
|
-
abstract readonly onFnrReplace: AsyncParallelHook<
|
|
101
|
-
abstract readonly onFnrReplaceAll: AsyncParallelHook<
|
|
102
|
-
abstract readonly onCellAreaCopy: AsyncParallelHook<
|
|
103
|
-
abstract readonly onCellAreaCut: AsyncParallelHook<
|
|
104
|
-
abstract readonly onCellAreaPaste: AsyncParallelHook<
|
|
105
|
-
abstract readonly onCellAreaMerge: AsyncParallelHook<
|
|
106
|
-
abstract readonly onClearCellAreaMerge: AsyncParallelHook<
|
|
107
|
-
abstract readonly onHeaderCellAreaSelection: AsyncParallelHook<
|
|
108
|
-
abstract readonly onCellAreaSelectionStart: AsyncParallelHook<
|
|
109
|
-
abstract readonly onCellAreaSelectionDrag: AsyncParallelHook<
|
|
110
|
-
abstract readonly onCellAreaSelectionEnd: AsyncParallelHook<
|
|
111
|
-
abstract readonly onCellAreaExtensionStart: AsyncParallelHook<
|
|
112
|
-
abstract readonly onCellAreaExtensionDrag: AsyncParallelHook<
|
|
113
|
-
abstract readonly onCellAreaExtensionEnd: AsyncParallelHook<
|
|
114
|
-
abstract readonly onCellAreaArrowsStart: AsyncParallelHook<
|
|
115
|
-
abstract readonly onCellAreaArrowsEnd: AsyncParallelHook<
|
|
116
|
-
abstract readonly onActiveCellChangeStart: AsyncParallelHook<
|
|
117
|
-
abstract readonly onActiveCellChangeEnd: AsyncParallelHook<
|
|
60
|
+
abstract readonly onKeydownStart: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.KeydownStart>>;
|
|
61
|
+
abstract readonly onKeydown: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.Keydown>>;
|
|
62
|
+
abstract readonly onKeydownEnd: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.KeydownEnd>>;
|
|
63
|
+
abstract readonly onPaste: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.Paste>>;
|
|
64
|
+
abstract readonly onCopy: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.Copy>>;
|
|
65
|
+
abstract readonly onCut: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.Cut>>;
|
|
66
|
+
abstract readonly onCurrentChange: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CurrentChange>>;
|
|
67
|
+
abstract readonly onRadioChange: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.RadioChange>>;
|
|
68
|
+
abstract readonly onCheckboxChange: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CheckboxChange>>;
|
|
69
|
+
abstract readonly onCheckboxAll: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CheckboxAll>>;
|
|
70
|
+
abstract readonly onCheckboxRangeStart: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CheckboxRangeStart>>;
|
|
71
|
+
abstract readonly onCheckboxRangeChange: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CheckboxRangeChange>>;
|
|
72
|
+
abstract readonly onCheckboxRangeEnd: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CheckboxRangeEnd>>;
|
|
73
|
+
abstract readonly onCellClick: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellClick>>;
|
|
74
|
+
abstract readonly onCellDblclick: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellDblclick>>;
|
|
75
|
+
abstract readonly onCellMenu: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellMenu>>;
|
|
76
|
+
abstract readonly onCellMouseenter: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellMouseenter>>;
|
|
77
|
+
abstract readonly onCellMouseleave: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellMouseleave>>;
|
|
78
|
+
abstract readonly onHeaderCellClick: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.HeaderCellClick>>;
|
|
79
|
+
abstract readonly onHeaderCellDblclick: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.HeaderCellDblclick>>;
|
|
80
|
+
abstract readonly onHeaderCellMenu: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.HeaderCellMenu>>;
|
|
81
|
+
abstract readonly onFooterCellClick: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.FooterCellClick>>;
|
|
82
|
+
abstract readonly onFooterCellDblclick: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.FooterCellDblclick>>;
|
|
83
|
+
abstract readonly onFooterCellMenu: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.FooterCellMenu>>;
|
|
84
|
+
abstract readonly onSortChange: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.SortChange>>;
|
|
85
|
+
abstract readonly onFilterChange: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.FilterChange>>;
|
|
86
|
+
abstract readonly onFilterVisible: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.FilterVisible>>;
|
|
87
|
+
abstract readonly onResizableChange: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.ResizableChange>>;
|
|
88
|
+
abstract readonly onToggleRowExpand: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.ToggleRowExpand>>;
|
|
89
|
+
abstract readonly onToggleTreeExpand: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.ToggleTreeExpand>>;
|
|
90
|
+
abstract readonly onMenuClick: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.MenuClick>>;
|
|
91
|
+
abstract readonly onEditClosed: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.EditClosed>>;
|
|
92
|
+
abstract readonly onEditActived: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.EditActived>>;
|
|
93
|
+
abstract readonly onEditDisabled: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.EditDisabled>>;
|
|
94
|
+
abstract readonly onValidError: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.ValidError>>;
|
|
95
|
+
abstract readonly onScroll: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.Scroll>>;
|
|
96
|
+
abstract readonly onCustom: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.Custom>>;
|
|
97
|
+
abstract readonly onOpenFnr: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.OpenFnr>>;
|
|
98
|
+
abstract readonly onFnrChange: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.FnrChange>>;
|
|
99
|
+
abstract readonly onFnrFind: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.FnrFind>>;
|
|
100
|
+
abstract readonly onFnrFindAll: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.FnrFindAll>>;
|
|
101
|
+
abstract readonly onFnrReplace: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.FnrReplace>>;
|
|
102
|
+
abstract readonly onFnrReplaceAll: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.FnrReplaceAll>>;
|
|
103
|
+
abstract readonly onCellAreaCopy: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaCopy>>;
|
|
104
|
+
abstract readonly onCellAreaCut: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaCut>>;
|
|
105
|
+
abstract readonly onCellAreaPaste: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaPaste>>;
|
|
106
|
+
abstract readonly onCellAreaMerge: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaMerge>>;
|
|
107
|
+
abstract readonly onClearCellAreaMerge: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.ClearCellAreaMerge>>;
|
|
108
|
+
abstract readonly onHeaderCellAreaSelection: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.HeaderCellAreaSelection>>;
|
|
109
|
+
abstract readonly onCellAreaSelectionStart: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaSelectionStart>>;
|
|
110
|
+
abstract readonly onCellAreaSelectionDrag: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaSelectionDrag>>;
|
|
111
|
+
abstract readonly onCellAreaSelectionEnd: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaSelectionEnd>>;
|
|
112
|
+
abstract readonly onCellAreaExtensionStart: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaExtensionStart>>;
|
|
113
|
+
abstract readonly onCellAreaExtensionDrag: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaExtensionDrag>>;
|
|
114
|
+
abstract readonly onCellAreaExtensionEnd: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaExtensionEnd>>;
|
|
115
|
+
abstract readonly onCellAreaArrowsStart: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaArrowsStart>>;
|
|
116
|
+
abstract readonly onCellAreaArrowsEnd: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.CellAreaArrowsEnd>>;
|
|
117
|
+
abstract readonly onActiveCellChangeStart: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.ActiveCellChangeStart>>;
|
|
118
|
+
abstract readonly onActiveCellChangeEnd: AsyncParallelHook<WithIhoEventContext<VxeTableEvents.ActiveCellChangeEnd>>;
|
|
118
119
|
}
|
|
119
120
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cnhis-design-vue",
|
|
3
|
-
"version": "3.1.22-beta.
|
|
3
|
+
"version": "3.1.22-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": "
|
|
69
|
+
"gitHead": "d0c2a35d6c077af7ed4e7e874cd57bfecae1e138"
|
|
70
70
|
}
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|