@schukai/monster 3.13.0 → 3.13.1
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
package/source/dom/updater.mjs
CHANGED
@@ -614,7 +614,7 @@ function runUpdateContent(container, parts, subject) {
|
|
614
614
|
parts.pop();
|
615
615
|
|
616
616
|
// Unfortunately, static data is always changed as well, since it is not possible to react to changes here.
|
617
|
-
const query = `[${ATTRIBUTE_UPDATER_REPLACE}^="path:${current}"], [${ATTRIBUTE_UPDATER_REPLACE}^="static:"]`;
|
617
|
+
const query = `[${ATTRIBUTE_UPDATER_REPLACE}^="path:${current}"], [${ATTRIBUTE_UPDATER_REPLACE}^="static:"], [${ATTRIBUTE_UPDATER_REPLACE}^="i18n:"]`;
|
618
618
|
const e = container.querySelectorAll(`${query}`);
|
619
619
|
|
620
620
|
const iterator = new Set([...e]);
|
@@ -702,7 +702,7 @@ function runUpdateAttributes(container, parts, subject) {
|
|
702
702
|
|
703
703
|
let iterator = new Set();
|
704
704
|
|
705
|
-
const query = `[${ATTRIBUTE_UPDATER_SELECT_THIS}], [${ATTRIBUTE_UPDATER_ATTRIBUTES}*="path:${current}"], [${ATTRIBUTE_UPDATER_ATTRIBUTES}^="static:"]`;
|
705
|
+
const query = `[${ATTRIBUTE_UPDATER_SELECT_THIS}], [${ATTRIBUTE_UPDATER_ATTRIBUTES}*="path:${current}"], [${ATTRIBUTE_UPDATER_ATTRIBUTES}^="static:"], [${ATTRIBUTE_UPDATER_ATTRIBUTES}^="i18n:"]`;
|
706
706
|
|
707
707
|
const e = container.querySelectorAll(query);
|
708
708
|
|
package/source/types/version.mjs
CHANGED
package/test/cases/monster.mjs
CHANGED