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/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/table/index.js +2 -2
- package/package.json +1 -1
package/lib/index.js
CHANGED
package/lib/table/index.js
CHANGED
@@ -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
|
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));
|