native-document 1.0.155 → 1.0.157

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "native-document",
3
- "version": "1.0.155",
3
+ "version": "1.0.157",
4
4
  "sideEffects": [
5
5
  "index.js",
6
6
  "elements.js",
@@ -191,12 +191,11 @@ export const buildTBody = ($desc, instance, visibleColumns) => {
191
191
  return;
192
192
  }
193
193
  const refB = elB.nextSibling;
194
- console.log(refB)
195
194
  tbody.insertBefore(elB, elA);
196
195
  tbody.insertBefore(elA, refB);
197
196
  },
198
197
  clear: () => {
199
- tbody.innerHTML = '';
198
+ tbody.textContent = '';
200
199
  },
201
200
  merge: (args) => {
202
201
  return mutations.push(args);
@@ -112,12 +112,11 @@ const buildBody = ($desc, instance, visibleColumns) => {
112
112
  return;
113
113
  }
114
114
  const refB = elB.nextSibling;
115
- console.log(refB)
116
115
  tbody.insertBefore(elB, elA);
117
116
  tbody.insertBefore(elA, refB);
118
117
  },
119
118
  clear: () => {
120
- tbody.innerHTML = '';
119
+ tbody.textContent = '';
121
120
  },
122
121
  merge: (args) => {
123
122
  return mutations.push(args);