Skip to content

Commit

Permalink
Deploying to gh-pages from @ b9e61e4 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelZubkov committed Dec 13, 2023
1 parent a6f9999 commit 40effc0
Show file tree
Hide file tree
Showing 14 changed files with 36 additions and 21 deletions.
2 changes: 1 addition & 1 deletion node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1751,7 +1751,7 @@ declare namespace $ {
head(): readonly any[];
Head(): $mol_view;
body(): readonly $mol_view[];
Body_content(): $$.$mol_list;
Body_content(): $mol_view;
body_content(): readonly any[];
body_scroll_top(next?: any): number;
Body(): $$.$mol_scroll;
Expand Down
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions node.js
Original file line number Diff line number Diff line change
Expand Up @@ -6006,8 +6006,8 @@ var $;
return [];
}
Body_content() {
const obj = new this.$.$mol_list();
obj.rows = () => this.body();
const obj = new this.$.$mol_view();
obj.sub = () => this.body();
return obj;
}
body_content() {
Expand Down Expand Up @@ -6132,6 +6132,9 @@ var $;
},
Body_content: {
padding: $mol_gap.block,
flex: {
direction: 'column',
},
justify: {
self: 'stretch',
},
Expand Down
2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6006,8 +6006,8 @@ var $;
return [];
}
Body_content() {
const obj = new this.$.$mol_list();
obj.rows = () => this.body();
const obj = new this.$.$mol_view();
obj.sub = () => this.body();
return obj;
}
body_content() {
Expand Down Expand Up @@ -6132,6 +6132,9 @@ var $;
},
Body_content: {
padding: $mol_gap.block,
flex: {
direction: 'column',
},
justify: {
self: 'stretch',
},
Expand Down
7 changes: 5 additions & 2 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5998,8 +5998,8 @@ var $;
return [];
}
Body_content() {
const obj = new this.$.$mol_list();
obj.rows = () => this.body();
const obj = new this.$.$mol_view();
obj.sub = () => this.body();
return obj;
}
body_content() {
Expand Down Expand Up @@ -6124,6 +6124,9 @@ var $;
},
Body_content: {
padding: $mol_gap.block,
flex: {
direction: 'column',
},
justify: {
self: 'stretch',
},
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions node.view.tree
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ $mol_page $mol_view
<= Body $mol_scroll
scroll_top? => body_scroll_top?
sub <= body_content /
<= Body_content $mol_list
rows <= body /$mol_view
<= Body_content $mol_view
sub <= body /$mol_view
<= Foot $mol_view
dom_name \footer
sub <= foot /$mol_view
Expand Down
2 changes: 1 addition & 1 deletion web.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1646,7 +1646,7 @@ declare namespace $ {
head(): readonly any[];
Head(): $mol_view;
body(): readonly $mol_view[];
Body_content(): $$.$mol_list;
Body_content(): $mol_view;
body_content(): readonly any[];
body_scroll_top(next?: any): number;
Body(): $$.$mol_scroll;
Expand Down
2 changes: 1 addition & 1 deletion web.deps.json

Large diffs are not rendered by default.

7 changes: 5 additions & 2 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.

7 changes: 5 additions & 2 deletions web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5435,8 +5435,8 @@ var $;
return [];
}
Body_content() {
const obj = new this.$.$mol_list();
obj.rows = () => this.body();
const obj = new this.$.$mol_view();
obj.sub = () => this.body();
return obj;
}
body_content() {
Expand Down Expand Up @@ -5561,6 +5561,9 @@ var $;
},
Body_content: {
padding: $mol_gap.block,
flex: {
direction: 'column',
},
justify: {
self: 'stretch',
},
Expand Down
4 changes: 2 additions & 2 deletions web.view.tree
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ $mol_page $mol_view
<= Body $mol_scroll
scroll_top? => body_scroll_top?
sub <= body_content /
<= Body_content $mol_list
rows <= body /$mol_view
<= Body_content $mol_view
sub <= body /$mol_view
<= Foot $mol_view
dom_name \footer
sub <= foot /$mol_view
Expand Down

0 comments on commit 40effc0

Please sign in to comment.