@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.
- package/bundles/index.esm.js +1 -1
- package/bundles/index.js +1 -1
- package/package.json +1 -1
package/bundles/index.esm.js
CHANGED
|
@@ -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