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/lib/index.js CHANGED
@@ -4,5 +4,5 @@ export { default } from './preset';
4
4
  export * from './config-provider';
5
5
  export * from './directives';
6
6
  export * as plugins from './plugins';
7
- export const version = "2.0.1-beta.80";
7
+ export const version = "2.0.1-beta.81";
8
8
  window.__bkui_vue_version__ = version;
@@ -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, "px");
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "2.0.1-beta.80",
3
+ "version": "2.0.1-beta.81",
4
4
  "workspaces": [
5
5
  "packages/**",
6
6
  "scripts/cli",