bkui-vue 2.0.1-beta.80 → 2.0.1-beta.81
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 -3
- package/dist/index.umd.js +1 -1
- package/lib/index.js +1 -1
- package/lib/search-select/index.js +2 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
@@ -2967,6 +2967,7 @@ var SearchSelectProps = {
|
|
2967
2967
|
// life hooks
|
2968
2968
|
(0,external_vue_namespaceObject.onMounted)(function () {
|
2969
2969
|
addListener(wrapRef.value.querySelector(".".concat(resolveClassName('search-select-container'))), debounceResize);
|
2970
|
+
debounceResize();
|
2970
2971
|
});
|
2971
2972
|
(0,external_vue_namespaceObject.onBeforeUnmount)(function () {
|
2972
2973
|
removeListener(wrapRef.value.querySelector(".".concat(resolveClassName('search-select-container'))), debounceResize);
|
@@ -3108,7 +3109,7 @@ var SearchSelectProps = {
|
|
3108
3109
|
var _this = this,
|
3109
3110
|
_this$$slots$prepend,
|
3110
3111
|
_this$$slots2;
|
3111
|
-
var maxHeight = "".concat(this.isFocus ? this.maxHeight : INPUT_MIN_HEIGHT,
|
3112
|
+
var maxHeight = "".concat(this.isFocus ? this.maxHeight : INPUT_MIN_HEIGHT).replace('px', '');
|
3112
3113
|
var showCondition = !!this.selectedList.length && this.selectedList.slice(-1)[0].type !== 'condition';
|
3113
3114
|
var menuSlots = Object.assign({}, this.$slots.menu ? {
|
3114
3115
|
menu: function menu(data) {
|