cnhis-design-vue 3.4.0-beta.59 → 3.4.0-beta.60
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/field-set/src/FieldColor.vue.d.ts +1 -1
- package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
- package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
- package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
- package/es/components/iho-table/src/hooks/useColumnConfigAdaptor.js +1 -1
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -2
|
@@ -553,9 +553,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
553
553
|
hide: boolean;
|
|
554
554
|
}>;
|
|
555
555
|
draggable: boolean;
|
|
556
|
+
isHighlightRow: boolean;
|
|
556
557
|
idx: number;
|
|
557
558
|
isHighlight: boolean;
|
|
558
|
-
isHighlightRow: boolean;
|
|
559
559
|
isFieldSet: boolean;
|
|
560
560
|
fieldDescribeMode: "column" | "tooltip";
|
|
561
561
|
hideExpressionOption: AnyObject[];
|
|
@@ -594,9 +594,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
594
594
|
hide: boolean;
|
|
595
595
|
}>;
|
|
596
596
|
draggable: boolean;
|
|
597
|
+
isHighlightRow: boolean;
|
|
597
598
|
idx: number;
|
|
598
599
|
isHighlight: boolean;
|
|
599
|
-
isHighlightRow: boolean;
|
|
600
600
|
isFieldSet: boolean;
|
|
601
601
|
fieldDescribeMode: "column" | "tooltip";
|
|
602
602
|
hideExpressionOption: AnyObject[];
|
|
@@ -773,9 +773,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
773
773
|
hide: boolean;
|
|
774
774
|
}>;
|
|
775
775
|
draggable: boolean;
|
|
776
|
+
isHighlightRow: boolean;
|
|
776
777
|
idx: number;
|
|
777
778
|
isHighlight: boolean;
|
|
778
|
-
isHighlightRow: boolean;
|
|
779
779
|
isFieldSet: boolean;
|
|
780
780
|
fieldDescribeMode: "column" | "tooltip";
|
|
781
781
|
hideExpressionOption: AnyObject[];
|
|
@@ -384,9 +384,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
384
384
|
hide: boolean;
|
|
385
385
|
}>;
|
|
386
386
|
draggable: boolean;
|
|
387
|
+
isHighlightRow: boolean;
|
|
387
388
|
idx: number;
|
|
388
389
|
isHighlight: boolean;
|
|
389
|
-
isHighlightRow: boolean;
|
|
390
390
|
isFieldSet: boolean;
|
|
391
391
|
fieldDescribeMode: "column" | "tooltip";
|
|
392
392
|
hideExpressionOption: AnyObject[];
|
|
@@ -85,7 +85,7 @@ function useColumnConfigAdaptor() {
|
|
|
85
85
|
return;
|
|
86
86
|
}
|
|
87
87
|
result.formType = (_a = htmlTypeValueMap.get(value)) != null ? _a : value;
|
|
88
|
-
const multiple = value === "SEARCH" ? false :
|
|
88
|
+
const multiple = value === "SEARCH" ? false : ["SEARCH_MORE", "CHECKBOX", "CHECKBOX_BLOCK"].includes(value) ? true : value === "SELECT" ? fieldItem.multi_select === "0" : null;
|
|
89
89
|
if (multiple) {
|
|
90
90
|
result.componentProps = {
|
|
91
91
|
multiple,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cnhis-design-vue",
|
|
3
|
-
"version": "3.4.0-beta.
|
|
3
|
+
"version": "3.4.0-beta.60",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"module": "./es/components/index.js",
|
|
6
6
|
"main": "./es/components/index.js",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"iOS 7",
|
|
74
74
|
"last 3 iOS versions"
|
|
75
75
|
],
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "8bd05157ab043e7ef037ee69e52191ef2c335bf3"
|
|
77
77
|
}
|