mol_dump_lib 0.0.9 → 0.0.11
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/node.d.ts +1 -0
- package/node.deps.json +1 -1
- package/node.js +9 -1
- package/node.js.map +1 -1
- package/node.mjs +9 -1
- package/node.test.js +9 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +1 -0
- package/web.deps.json +1 -1
- package/web.js +9 -1
- package/web.js.map +1 -1
- package/web.mjs +9 -1
package/web.js
CHANGED
|
@@ -2266,6 +2266,9 @@ var $;
|
|
|
2266
2266
|
}
|
|
2267
2267
|
return names;
|
|
2268
2268
|
}
|
|
2269
|
+
theme(next = null) {
|
|
2270
|
+
return next;
|
|
2271
|
+
}
|
|
2269
2272
|
attr_static() {
|
|
2270
2273
|
let attrs = {};
|
|
2271
2274
|
for (let name of this.view_names())
|
|
@@ -2273,7 +2276,9 @@ var $;
|
|
|
2273
2276
|
return attrs;
|
|
2274
2277
|
}
|
|
2275
2278
|
attr() {
|
|
2276
|
-
return {
|
|
2279
|
+
return {
|
|
2280
|
+
mol_theme: this.theme(),
|
|
2281
|
+
};
|
|
2277
2282
|
}
|
|
2278
2283
|
style_size() {
|
|
2279
2284
|
return {
|
|
@@ -2389,6 +2394,9 @@ var $;
|
|
|
2389
2394
|
__decorate([
|
|
2390
2395
|
$mol_memo.method
|
|
2391
2396
|
], $mol_view.prototype, "view_names", null);
|
|
2397
|
+
__decorate([
|
|
2398
|
+
$mol_mem
|
|
2399
|
+
], $mol_view.prototype, "theme", null);
|
|
2392
2400
|
__decorate([
|
|
2393
2401
|
$mol_mem_key
|
|
2394
2402
|
], $mol_view, "Root", null);
|