x-block-lib 0.6.7 → 0.6.8

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4288,7 +4288,7 @@ r.forBlock.select_column_v1 = function(e) {
4288
4288
  const t = r.quote_, n = e, o = n.space.id, i = n.table.id, s = [];
4289
4289
  for (let c = 0; c < n.itemCount_; c++) {
4290
4290
  const _ = n.getFieldValue("COLUMN" + c), h = n.getFieldValue("ALIAS" + c);
4291
- s.push(`{ name: ${_}, alias: ${h} }`);
4291
+ s.push({ name: _, alias: h });
4292
4292
  }
4293
4293
  const a = JSON.stringify(s);
4294
4294
  return [`{spaceid:${t(o)},tableid:${t(i)},columns:${a}}`, p.ATOMIC];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-block-lib",
3
3
  "private": false,
4
- "version": "0.6.7",
4
+ "version": "0.6.8",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",