@juzhenfe/page-model 3.18.5 → 3.18.7
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.es.js +6 -2
- package/dist/index.umd.js +2 -2
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -5328,7 +5328,10 @@ class TableManager extends IManager {
|
|
|
5328
5328
|
const el = exportEls[j];
|
|
5329
5329
|
let val = this.getTableCellText(el, item);
|
|
5330
5330
|
if (((_a = el == null ? void 0 : el.filters) == null ? void 0 : _a.filterType) === "number") {
|
|
5331
|
-
|
|
5331
|
+
let _val = Number(val);
|
|
5332
|
+
if (!isNaN(_val)) {
|
|
5333
|
+
val = _val;
|
|
5334
|
+
}
|
|
5332
5335
|
}
|
|
5333
5336
|
rowData.push(val);
|
|
5334
5337
|
}
|
|
@@ -13961,6 +13964,7 @@ const _sfc_main$4 = defineComponent({
|
|
|
13961
13964
|
createElementVNode("div", {
|
|
13962
13965
|
class: normalizeClass(unref(createBEMName)("main"))
|
|
13963
13966
|
}, [
|
|
13967
|
+
renderSlot(_ctx.$slots, "main-header"),
|
|
13964
13968
|
createVNode(_sfc_main$n, {
|
|
13965
13969
|
ref_key: "pageModelTableRef",
|
|
13966
13970
|
ref: pageModelTableRef,
|
|
@@ -14928,7 +14932,7 @@ const defineEditableTable = function(config) {
|
|
|
14928
14932
|
};
|
|
14929
14933
|
var iconfont = "";
|
|
14930
14934
|
const name = "@juzhenfe/page-model";
|
|
14931
|
-
const version = "3.18.
|
|
14935
|
+
const version = "3.18.7";
|
|
14932
14936
|
const types = "dist/main.d.ts";
|
|
14933
14937
|
const main = "dist/index.umd.js";
|
|
14934
14938
|
const keywords = [
|