cnhis-design-vue 3.1.35 → 3.1.36-beta.1
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.
|
@@ -13,11 +13,12 @@ function checkRendererPlugin() {
|
|
|
13
13
|
if (index === 0 && config.selectType) {
|
|
14
14
|
insertBefore({
|
|
15
15
|
field: pluginName,
|
|
16
|
+
annotation: false,
|
|
17
|
+
type: config.selectType,
|
|
18
|
+
...config.checkboxConfig,
|
|
16
19
|
width: 45,
|
|
17
20
|
align: "center",
|
|
18
|
-
|
|
19
|
-
fixed: "left",
|
|
20
|
-
type: config.selectType
|
|
21
|
+
fixed: "left"
|
|
21
22
|
});
|
|
22
23
|
}
|
|
23
24
|
return field;
|
|
@@ -53,10 +53,14 @@ async function getColumnRenderWidth(column, $table) {
|
|
|
53
53
|
function useIhoTableFormEvent(payload) {
|
|
54
54
|
const emit = inject(InjectionIhoTableEmits);
|
|
55
55
|
function getPayload() {
|
|
56
|
+
var _a;
|
|
56
57
|
return {
|
|
57
58
|
value: payload.row[payload.column.field],
|
|
58
59
|
row: payload.row,
|
|
59
|
-
column:
|
|
60
|
+
column: {
|
|
61
|
+
...payload.column,
|
|
62
|
+
...(_a = payload.column.editRender) == null ? void 0 : _a.props
|
|
63
|
+
},
|
|
60
64
|
index: payload.rowIndex > -1 ? payload.rowIndex : payload.$rowIndex
|
|
61
65
|
};
|
|
62
66
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cnhis-design-vue",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.36-beta.1",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"module": "./es/components/index.js",
|
|
6
6
|
"main": "./es/components/index.js",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"iOS 7",
|
|
62
62
|
"last 3 iOS versions"
|
|
63
63
|
],
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "a913431be3c6e1c249099884e86338a111a1ee03"
|
|
65
65
|
}
|