@ones-editor/editor 2.1.7-beta.34 → 2.1.7-beta.35

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.js CHANGED
@@ -73964,6 +73964,7 @@ ${content}
73964
73964
  }
73965
73965
  const hasRowTitle = hasRowHeader(table);
73966
73966
  const hasColTitle = hasColHeader(table);
73967
+ const striped = table.classList.contains("table-color-striped");
73967
73968
  return [{
73968
73969
  cols: grid.colCount,
73969
73970
  rows: grid.rowCount,
@@ -73973,7 +73974,8 @@ ${content}
73973
73974
  ...spanData,
73974
73975
  colsWidth,
73975
73976
  hasRowTitle,
73976
- hasColTitle
73977
+ hasColTitle,
73978
+ isStripeStyle: striped
73977
73979
  }];
73978
73980
  }
73979
73981
  function convertAllTables(node, options) {
@@ -89266,7 +89268,7 @@ ${data2.flowchartText}
89266
89268
  }
89267
89269
  }
89268
89270
  });
89269
- editor.version = "2.1.7-beta.34";
89271
+ editor.version = "2.1.7-beta.35";
89270
89272
  return editor;
89271
89273
  }
89272
89274
  function isDoc(doc2) {
@@ -89380,7 +89382,7 @@ ${data2.flowchartText}
89380
89382
  }
89381
89383
  }
89382
89384
  OnesEditorToolbar.register(editor);
89383
- editor.version = "2.1.7-beta.34";
89385
+ editor.version = "2.1.7-beta.35";
89384
89386
  return editor;
89385
89387
  }
89386
89388
  async function showDocVersions(editor, options, serverUrl) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ones-editor/editor",
3
- "version": "2.1.7-beta.34",
3
+ "version": "2.1.7-beta.35",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",