@schukai/monster 4.96.0 → 4.98.0
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/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/source/components/datatable/columnbar.mjs +5 -1
- package/source/components/form/message-state-button.mjs +37 -9
- package/source/components/state/log.mjs +300 -15
- package/source/components/state/style/thread.pcss +172 -0
- package/source/components/state/stylesheet/thread.mjs +38 -0
- package/source/components/state/thread/entry.mjs +242 -0
- package/source/components/state/thread.mjs +1034 -0
- package/source/dom/updater.mjs +8 -0
package/source/dom/updater.mjs
CHANGED
|
@@ -820,6 +820,14 @@ function applyRecursive(node, key, path) {
|
|
|
820
820
|
);
|
|
821
821
|
}
|
|
822
822
|
|
|
823
|
+
if (node.hasAttribute(ATTRIBUTE_UPDATER_INSERT)) {
|
|
824
|
+
const value = node.getAttribute(ATTRIBUTE_UPDATER_INSERT);
|
|
825
|
+
node.setAttribute(
|
|
826
|
+
ATTRIBUTE_UPDATER_INSERT,
|
|
827
|
+
value.replaceAll(`path:${key}`, `path:${path}`),
|
|
828
|
+
);
|
|
829
|
+
}
|
|
830
|
+
|
|
823
831
|
for (const [, child] of Object.entries(node.childNodes)) {
|
|
824
832
|
if (child instanceof HTMLElement) {
|
|
825
833
|
applyRecursive(child, key, path);
|