bkui-vue 2.0.1-beta.64 → 2.0.1-beta.65

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.64";
7
+ export const version = "2.0.1-beta.65";
8
8
  window.__bkui_vue_version__ = version;
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "2.0.1-beta.64",
3
+ "version": "2.0.1-beta.65",
4
4
  "workspaces": [
5
5
  "packages/**",
6
6
  "scripts/cli",