@textbus/xnote 0.0.1-alpha.29 → 0.0.1-alpha.30

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.
@@ -2405,7 +2405,7 @@ function ListComponentView(props) {
2405
2405
  icon = numberToLetter(listStep) + '.';
2406
2406
  }
2407
2407
  }
2408
- return (jsx(ListType, { ref: props.rootRef, "data-component": component.name, "data-reorder": listStep === 0, class: "xnote-list", style: {
2408
+ return (jsx(ListType, { ref: props.rootRef, "data-component": component.name, "data-reorder": (listStep === 0) + '', class: "xnote-list", style: {
2409
2409
  marginLeft: indent * 24 + 'px'
2410
2410
  }, children: jsxs("li", { style: {
2411
2411
  justifyContent: align[component.state.slot.getAttribute(textAlignAttr)],
package/bundles/index.js CHANGED
@@ -2407,7 +2407,7 @@ function ListComponentView(props) {
2407
2407
  icon = numberToLetter(listStep) + '.';
2408
2408
  }
2409
2409
  }
2410
- return (jsxRuntime.jsx(ListType, { ref: props.rootRef, "data-component": component.name, "data-reorder": listStep === 0, class: "xnote-list", style: {
2410
+ return (jsxRuntime.jsx(ListType, { ref: props.rootRef, "data-component": component.name, "data-reorder": (listStep === 0) + '', class: "xnote-list", style: {
2411
2411
  marginLeft: indent * 24 + 'px'
2412
2412
  }, children: jsxRuntime.jsxs("li", { style: {
2413
2413
  justifyContent: align[component.state.slot.getAttribute(textAlignAttr)],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@textbus/xnote",
3
- "version": "0.0.1-alpha.29",
3
+ "version": "0.0.1-alpha.30",
4
4
  "description": "A high-performance rich text editor that supports multiplayer online collaboration.",
5
5
  "main": "./bundles/index.js",
6
6
  "module": "./bundles/index.esm.js",