bkui-vue 2.0.1-beta.64 → 2.0.1-beta.66
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/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +3 -2
- package/dist/index.umd.js +1 -1
- package/lib/index.js +1 -1
- package/lib/resize-layout/index.js +4 -0
- package/lib/table/index.js +1 -0
- package/package.json +1 -1
package/lib/index.js
CHANGED
@@ -175,6 +175,10 @@ const icon_namespaceObject = icon_x({ ["AngleLeft"]: () => __WEBPACK_EXTERNAL_MO
|
|
175
175
|
// 转换类型
|
176
176
|
var parseInitialDivide = (0,external_vue_namespaceObject.computed)(function () {
|
177
177
|
var divide = initialDivide.value;
|
178
|
+
// 如果min不是默认值,且initialDivide不是number类型,min优先级提升
|
179
|
+
if (min.value !== 3 && typeof divide !== 'number') {
|
180
|
+
return "".concat(min.value, "px");
|
181
|
+
}
|
178
182
|
if (typeof divide === 'number') {
|
179
183
|
divide = divide <= min.value ? "".concat(min.value, "px") : "".concat(divide, "px");
|
180
184
|
}
|
package/lib/table/index.js
CHANGED
@@ -24730,6 +24730,7 @@ var useSettings = function useSettings(props, ctx, columns, afterSetting) {
|
|
24730
24730
|
toggleAllSelection: rows.toggleAllSelection,
|
24731
24731
|
toggleRowSelection: rows.toggleRowSelection,
|
24732
24732
|
getSelection: rows.getRowSelection,
|
24733
|
+
setRowSelection: rows.setRowSelection,
|
24733
24734
|
clearSort: columns.clearColumnSort,
|
24734
24735
|
scrollTo: scrollTo,
|
24735
24736
|
getRoot: function getRoot() {
|