bkui-vue 2.0.1-beta.35 → 2.0.1-beta.36

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.35";
7
+ export const version = "2.0.1-beta.36";
8
8
  window.__bkui_vue_version__ = version;
@@ -22073,8 +22073,8 @@ const icon_namespaceObject = icon_x({ ["DownShape"]: () => __WEBPACK_EXTERNAL_MO
22073
22073
  if (typeof column.render === 'function') {
22074
22074
  return renderCellCallbackFn();
22075
22075
  }
22076
- if (typeof cell === 'boolean') {
22077
- return String(cell);
22076
+ if (typeof cell === 'boolean' || typeof cell === 'number') {
22077
+ return "".concat(cell);
22078
22078
  }
22079
22079
  if (typeof_typeof(cell) === 'object') {
22080
22080
  return JSON.stringify((0,external_vue_namespaceObject.unref)(cell));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "2.0.1-beta.35",
3
+ "version": "2.0.1-beta.36",
4
4
  "workspaces": [
5
5
  "packages/**",
6
6
  "scripts/cli",