native-document 1.0.156 → 1.0.158

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.156",
3
+ "version": "1.0.158",
4
4
  "sideEffects": [
5
5
  "index.js",
6
6
  "elements.js",
@@ -195,7 +195,7 @@ export const buildTBody = ($desc, instance, visibleColumns) => {
195
195
  tbody.insertBefore(elA, refB);
196
196
  },
197
197
  clear: () => {
198
- tbody.innerHTML = '';
198
+ tbody.textContent = '';
199
199
  },
200
200
  merge: (args) => {
201
201
  return mutations.push(args);
@@ -116,7 +116,7 @@ const buildBody = ($desc, instance, visibleColumns) => {
116
116
  tbody.insertBefore(elA, refB);
117
117
  },
118
118
  clear: () => {
119
- tbody.innerHTML = '';
119
+ tbody.textContent = '';
120
120
  },
121
121
  merge: (args) => {
122
122
  return mutations.push(args);