cnhis-design-vue 3.1.34 → 3.1.35-beta.10
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/big-table/index.d.ts +14 -0
- package/es/components/big-table/src/BigTable.vue.d.ts +17 -9
- package/es/components/big-table/src/BigTable.vue2.js +602 -15
- package/es/components/big-table/src/components/edit-form/edit-separate.vue.d.ts +4 -0
- package/es/components/big-table/src/components/separate.vue.d.ts +1 -0
- package/es/components/big-table/src/hooks/useEdit.d.ts +4 -0
- package/es/components/big-table/src/hooks/useSeparateRow.d.ts +11 -1
- package/es/components/big-table/src/hooks/useSeparateRow.js +56 -12
- package/es/components/big-table/style/index.css +1 -1
- package/es/components/fabric-chart/src/hooks/useCenter.js +3 -3
- package/es/components/fabric-chart/src/hooks/useLeft.js +3 -3
- package/es/components/fabric-chart/src/hooks/useTemperatureChart.js +2 -1
- package/es/components/fabric-chart/src/utils/utils.d.ts +2 -0
- package/es/components/fabric-chart/src/utils/utils.js +7 -1
- package/es/components/form-config/src/components/FormConfigCreator.vue.js +1 -0
- package/es/components/form-config/src/hooks/useConfigurationField.js +7 -1
- package/es/components/form-render/src/components/renderer/combination.js +11 -3
- package/es/components/form-render/src/components/renderer/formItem.d.ts +2 -0
- package/es/components/form-render/src/components/renderer/formItem.js +20 -4
- package/es/components/form-render/src/components/renderer/jsonCombination/index.js +7 -3
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.d.ts +12 -2
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.js +7 -14
- package/es/components/form-render/src/components/renderer/lineBar/index.d.ts +12 -2
- package/es/components/form-render/src/components/tooltipMessage.vue.d.ts +13 -0
- package/es/components/form-render/src/components/tooltipMessage.vue.js +37 -0
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -0
- package/es/components/form-render/style/index.css +1 -1
- package/es/components/iho-table/src/IhoTable.vue.js +3 -3
- package/es/components/index.css +1 -1
- package/es/components/info-header/index.d.ts +45 -0
- package/es/components/info-header/src/InfoHeader.vue.d.ts +39 -6
- package/es/components/info-header/src/InfoHeader.vue.js +40 -29
- package/es/components/info-header/style/index.css +1 -1
- package/es/components/keyboard/index.d.ts +34 -6
- package/es/components/keyboard/src/Keyboard.vue.d.ts +34 -6
- package/es/components/keyboard/src/Keyboard.vue.js +16 -12
- package/es/components/keyboard/src/components/InputNumber.vue.js +1 -1
- package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +14 -4
- package/es/components/keyboard/src/components/NumberPanel.vue.js +88 -30
- package/es/components/keyboard/style/index.css +1 -1
- package/package.json +2 -2
|
@@ -656,6 +656,13 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
656
656
|
separate: (data: import("../../../es/shared/types").AnyObject[], rawData: import("../../../es/shared/types").AnyObject[]) => Promise<import("../../../es/shared/types").AnyObject[]>;
|
|
657
657
|
onColumnResize: import("vxe-table").VxeTableEvents.ResizableChange;
|
|
658
658
|
separateHandle: import("./src/hooks").SeparateHandle;
|
|
659
|
+
separateDataMap: import("vue").Ref<WeakMap<import("../../../es/shared/types").AnyObject, {
|
|
660
|
+
separateData: Record<string, string>;
|
|
661
|
+
index: number;
|
|
662
|
+
rawRow: import("../../../es/shared/types").AnyObject;
|
|
663
|
+
row: import("../../../es/shared/types").AnyObject;
|
|
664
|
+
colspans?: Record<string, number> | undefined;
|
|
665
|
+
}>>;
|
|
659
666
|
onResizableChange: (payload: any) => void;
|
|
660
667
|
loadData: (data: any) => Promise<void>;
|
|
661
668
|
setGroupTitleToFristColumnFieldData: (formatList: any) => void;
|
|
@@ -667,6 +674,7 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
667
674
|
index: number;
|
|
668
675
|
rawRow: import("../../../es/shared/types").AnyObject;
|
|
669
676
|
row: import("../../../es/shared/types").AnyObject;
|
|
677
|
+
colspans?: Record<string, number> | undefined;
|
|
670
678
|
} | undefined;
|
|
671
679
|
formatterEdit: (params: any, col: any) => any;
|
|
672
680
|
getEditBtn: (row: any, col: any, index: any) => any;
|
|
@@ -702,6 +710,7 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
702
710
|
}) => Promise<any>;
|
|
703
711
|
getAsyncTableData: (params: any) => Promise<void>;
|
|
704
712
|
setChecklist: (list: any) => any;
|
|
713
|
+
spanMethod: (payload: any) => any;
|
|
705
714
|
colspanMethod: (payload: any) => any;
|
|
706
715
|
footerRowspanMethod: (obj: any) => {
|
|
707
716
|
rowspan: number;
|
|
@@ -882,6 +891,11 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
882
891
|
}>;
|
|
883
892
|
NIcon: any;
|
|
884
893
|
CGrid: SFCWithInstall<import("vue").DefineComponent<{}, any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
894
|
+
checkMethod: ({ row }: {
|
|
895
|
+
row: any;
|
|
896
|
+
}) => boolean;
|
|
897
|
+
visibleMethod: ({ row }: any) => boolean;
|
|
898
|
+
getRowStyle: ({ row }: any) => string | null;
|
|
885
899
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
886
900
|
data: {
|
|
887
901
|
type: ArrayConstructor;
|
|
@@ -199,9 +199,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
199
199
|
resetBatchEditRowStatus: FunctionConstructor;
|
|
200
200
|
anchor: {
|
|
201
201
|
type: import("vue").PropType<import("../../../shared/types").AnyObject[]>;
|
|
202
|
-
default: () => never[];
|
|
203
|
-
* computed
|
|
204
|
-
*/
|
|
202
|
+
default: () => never[];
|
|
205
203
|
};
|
|
206
204
|
}, {
|
|
207
205
|
_hideAllWrap: null;
|
|
@@ -560,9 +558,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
560
558
|
resetBatchEditRowStatus: FunctionConstructor;
|
|
561
559
|
anchor: {
|
|
562
560
|
type: import("vue").PropType<import("../../../shared/types").AnyObject[]>;
|
|
563
|
-
default: () => never[];
|
|
564
|
-
* computed
|
|
565
|
-
*/
|
|
561
|
+
default: () => never[];
|
|
566
562
|
};
|
|
567
563
|
}>> & {
|
|
568
564
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
@@ -659,6 +655,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
659
655
|
separate: (data: import("../../../shared/types").AnyObject[], rawData: import("../../../shared/types").AnyObject[]) => Promise<import("../../../shared/types").AnyObject[]>;
|
|
660
656
|
onColumnResize: import("vxe-table").VxeTableEvents.ResizableChange;
|
|
661
657
|
separateHandle: import("./hooks").SeparateHandle;
|
|
658
|
+
separateDataMap: import("vue").Ref<WeakMap<import("../../../shared/types").AnyObject, {
|
|
659
|
+
separateData: Record<string, string>;
|
|
660
|
+
index: number;
|
|
661
|
+
rawRow: import("../../../shared/types").AnyObject;
|
|
662
|
+
row: import("../../../shared/types").AnyObject;
|
|
663
|
+
colspans?: Record<string, number> | undefined;
|
|
664
|
+
}>>;
|
|
662
665
|
onResizableChange: (payload: any) => void;
|
|
663
666
|
loadData: (data: any) => Promise<void>;
|
|
664
667
|
setGroupTitleToFristColumnFieldData: (formatList: any) => void;
|
|
@@ -670,6 +673,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
670
673
|
index: number;
|
|
671
674
|
rawRow: import("../../../shared/types").AnyObject;
|
|
672
675
|
row: import("../../../shared/types").AnyObject;
|
|
676
|
+
colspans?: Record<string, number> | undefined;
|
|
673
677
|
} | undefined;
|
|
674
678
|
formatterEdit: (params: any, col: any) => any;
|
|
675
679
|
getEditBtn: (row: any, col: any, index: any) => any;
|
|
@@ -705,6 +709,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
705
709
|
}) => Promise<any>;
|
|
706
710
|
getAsyncTableData: (params: any) => Promise<void>;
|
|
707
711
|
setChecklist: (list: any) => any;
|
|
712
|
+
spanMethod: (payload: any) => any;
|
|
708
713
|
colspanMethod: (payload: any) => any;
|
|
709
714
|
footerRowspanMethod: (obj: any) => {
|
|
710
715
|
rowspan: number;
|
|
@@ -885,6 +890,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
885
890
|
}>;
|
|
886
891
|
NIcon: any;
|
|
887
892
|
CGrid: import("../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{}, any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
893
|
+
checkMethod: ({ row }: {
|
|
894
|
+
row: any;
|
|
895
|
+
}) => boolean;
|
|
896
|
+
visibleMethod: ({ row }: any) => boolean;
|
|
897
|
+
getRowStyle: ({ row }: any) => string | null;
|
|
888
898
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
889
899
|
data: {
|
|
890
900
|
type: ArrayConstructor;
|
|
@@ -1086,9 +1096,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1086
1096
|
resetBatchEditRowStatus: FunctionConstructor;
|
|
1087
1097
|
anchor: {
|
|
1088
1098
|
type: import("vue").PropType<import("../../../shared/types").AnyObject[]>;
|
|
1089
|
-
default: () => never[];
|
|
1090
|
-
* computed
|
|
1091
|
-
*/
|
|
1099
|
+
default: () => never[];
|
|
1092
1100
|
};
|
|
1093
1101
|
}>> & {
|
|
1094
1102
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|