@schukai/monster 3.23.0 → 3.25.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/package.json
CHANGED
@@ -8,6 +8,7 @@
|
|
8
8
|
import {internalSymbol} from "../constants.mjs";
|
9
9
|
import {extend} from "../data/extend.mjs";
|
10
10
|
import {Pathfinder} from "../data/pathfinder.mjs";
|
11
|
+
import {Formatter} from "../text/formatter.mjs";
|
11
12
|
|
12
13
|
import {parseDataURL} from "../types/dataurl.mjs";
|
13
14
|
import {getGlobalObject} from "../types/global.mjs";
|
@@ -946,6 +947,11 @@ function initShadowRoot() {
|
|
946
947
|
return this;
|
947
948
|
}
|
948
949
|
|
950
|
+
const mapping = this.getOption("templateMapping", {});
|
951
|
+
if (isObject(mapping)) {
|
952
|
+
html = new Formatter(mapping).format(html);
|
953
|
+
}
|
954
|
+
|
949
955
|
this.shadowRoot.innerHTML = html;
|
950
956
|
return this;
|
951
957
|
}
|
package/source/types/version.mjs
CHANGED
package/test/cases/monster.mjs
CHANGED