Skip to content

Commit

Permalink
Deployed using Blazing fast GitHub Pages deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Nov 3, 2023
1 parent 2b97812 commit 8ba063c
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 46 deletions.
3 changes: 0 additions & 3 deletions node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -927,9 +927,6 @@ declare namespace $ {
declare namespace $ {
class $mol_plugin extends $mol_view {
dom_node_external(next?: Element): Element;
attr_static(): {
[key: string]: string | number | boolean;
};
render(): void;
}
}
Expand Down
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

12 changes: 5 additions & 7 deletions node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

12 changes: 5 additions & 7 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2183,6 +2183,9 @@ var $;
function $mol_dom_render_attributes(el, attrs) {
for (let name in attrs) {
let val = attrs[name];
if (val === undefined) {
continue;
}
if (val === null || val === false) {
if (!el.hasAttribute(name))
continue;
Expand Down Expand Up @@ -2768,7 +2771,6 @@ var $;
$mol_dom_render_styles(node, this.style_size());
const attr = this.attr();
const style = this.style();
const fields = this.field();
$mol_dom_render_attributes(node, attr);
$mol_dom_render_styles(node, style);
return node;
Expand Down Expand Up @@ -2864,7 +2866,7 @@ var $;
}
attr() {
return {
mol_theme: this.theme(),
mol_theme: this.theme() || undefined,
};
}
style_size() {
Expand Down Expand Up @@ -3026,11 +3028,7 @@ var $;
(function ($) {
class $mol_plugin extends $mol_view {
dom_node_external(next) {
const host = $mol_owning_get(this).host;
return next ?? host.dom_node();
}
attr_static() {
return {};
return next ?? $mol_owning_get(this).host.dom_node();
}
render() {
this.dom_node_actual();
Expand Down
12 changes: 5 additions & 7 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2175,6 +2175,9 @@ var $;
function $mol_dom_render_attributes(el, attrs) {
for (let name in attrs) {
let val = attrs[name];
if (val === undefined) {
continue;
}
if (val === null || val === false) {
if (!el.hasAttribute(name))
continue;
Expand Down Expand Up @@ -2760,7 +2763,6 @@ var $;
$mol_dom_render_styles(node, this.style_size());
const attr = this.attr();
const style = this.style();
const fields = this.field();
$mol_dom_render_attributes(node, attr);
$mol_dom_render_styles(node, style);
return node;
Expand Down Expand Up @@ -2856,7 +2858,7 @@ var $;
}
attr() {
return {
mol_theme: this.theme(),
mol_theme: this.theme() || undefined,
};
}
style_size() {
Expand Down Expand Up @@ -3018,11 +3020,7 @@ var $;
(function ($) {
class $mol_plugin extends $mol_view {
dom_node_external(next) {
const host = $mol_owning_get(this).host;
return next ?? host.dom_node();
}
attr_static() {
return {};
return next ?? $mol_owning_get(this).host.dom_node();
}
render() {
this.dom_node_actual();
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions web.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -785,9 +785,6 @@ declare namespace $ {
declare namespace $ {
class $mol_plugin extends $mol_view {
dom_node_external(next?: Element): Element;
attr_static(): {
[key: string]: string | number | boolean;
};
render(): void;
}
}
Expand Down
2 changes: 1 addition & 1 deletion web.deps.json

Large diffs are not rendered by default.

12 changes: 5 additions & 7 deletions web.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web.js.map

Large diffs are not rendered by default.

12 changes: 5 additions & 7 deletions web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1616,6 +1616,9 @@ var $;
function $mol_dom_render_attributes(el, attrs) {
for (let name in attrs) {
let val = attrs[name];
if (val === undefined) {
continue;
}
if (val === null || val === false) {
if (!el.hasAttribute(name))
continue;
Expand Down Expand Up @@ -2201,7 +2204,6 @@ var $;
$mol_dom_render_styles(node, this.style_size());
const attr = this.attr();
const style = this.style();
const fields = this.field();
$mol_dom_render_attributes(node, attr);
$mol_dom_render_styles(node, style);
return node;
Expand Down Expand Up @@ -2297,7 +2299,7 @@ var $;
}
attr() {
return {
mol_theme: this.theme(),
mol_theme: this.theme() || undefined,
};
}
style_size() {
Expand Down Expand Up @@ -2466,11 +2468,7 @@ var $;
(function ($) {
class $mol_plugin extends $mol_view {
dom_node_external(next) {
const host = $mol_owning_get(this).host;
return next ?? host.dom_node();
}
attr_static() {
return {};
return next ?? $mol_owning_get(this).host.dom_node();
}
render() {
this.dom_node_actual();
Expand Down

0 comments on commit 8ba063c

Please sign in to comment.