bkui-vue 1.0.3-beta.66.dialog.3 → 1.0.3-beta.66.dialog.4
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 +13 -13
- package/dist/index.esm.js +301 -301
- package/dist/index.umd.js +13 -13
- package/lib/resize-layout/index.js +1 -1
- package/lib/select/index.js +2 -2
- package/package.json +1 -1
@@ -171,7 +171,7 @@ const icon_namespaceObject = icon_x({ ["AngleLeft"]: () => __WEBPACK_EXTERNAL_MO
|
|
171
171
|
var asideStyle = (0,external_vue_namespaceObject.computed)(function () {
|
172
172
|
var divide = initialDivide.value;
|
173
173
|
if (typeof divide === 'number') {
|
174
|
-
divide = "".concat(divide, "px");
|
174
|
+
divide = divide <= min.value ? "".concat(min.value, "px") : "".concat(divide, "px");
|
175
175
|
}
|
176
176
|
return _defineProperty({}, cssPropKey.value, divide);
|
177
177
|
});
|
package/lib/select/index.js
CHANGED
@@ -2935,8 +2935,8 @@ function select_objectSpread(e) { for (var r = 1; r < arguments.length; r++) { v
|
|
2935
2935
|
var _contentRef$value, _contentRef$value$que, _optionsDom$;
|
2936
2936
|
var optionsDom = (_contentRef$value = contentRef.value) === null || _contentRef$value === void 0 || (_contentRef$value$que = _contentRef$value.querySelectorAll) === null || _contentRef$value$que === void 0 ? void 0 : _contentRef$value$que.call(_contentRef$value, '.is-selected');
|
2937
2937
|
optionsDom === null || optionsDom === void 0 || (_optionsDom$ = optionsDom[0]) === null || _optionsDom$ === void 0 || _optionsDom$.scrollIntoView({
|
2938
|
-
block: 'center'
|
2939
|
-
behavior: 'smooth'
|
2938
|
+
block: 'center'
|
2939
|
+
// behavior: 'smooth',
|
2940
2940
|
});
|
2941
2941
|
};
|
2942
2942
|
// 初始化当前悬浮的option项
|