Skip to content

Commit

Permalink
Deploying to gh-pages from @ fc06359 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Nov 29, 2024
1 parent 7b5128d commit abcd28f
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 16 deletions.
8 changes: 4 additions & 4 deletions node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ declare namespace $ {
}

declare namespace $ {
type $mol_view_content = $mol_view | Node | string | number | boolean;
type $mol_view_content = $mol_view | Node | string | number | boolean | null;
function $mol_view_visible_width(): number;
function $mol_view_visible_height(): number;
function $mol_view_state_key(suffix: string): string;
Expand All @@ -927,8 +927,8 @@ declare namespace $ {
state_key(suffix?: string): string;
dom_name(): string;
dom_name_space(): string;
sub(): readonly ($mol_view | Node | string | number | boolean)[];
sub_visible(): readonly (string | number | boolean | $mol_view | Node)[];
sub(): readonly $mol_view_content[];
sub_visible(): readonly $mol_view_content[];
minimal_width(): number;
maximal_width(): number;
minimal_height(): number;
Expand Down Expand Up @@ -1664,7 +1664,7 @@ declare namespace $.$$ {
tab_index(): number;
error(): string;
hint_safe(): string;
sub_visible(): ($mol_speck | $mol_view_content)[];
sub_visible(): ($mol_view_content | $mol_speck)[];
}
}

Expand Down
2 changes: 1 addition & 1 deletion node.js
Original file line number Diff line number Diff line change
Expand Up @@ -7835,7 +7835,7 @@ var $;
'code-comment-block': /(?:\/\*[^]*?\*\/|\/\+[^]*?\+\/|<![^]*?>)/,
'code-link': /(?:\w+:\/\/|#)\S+?(?=\s|\\\\|""|$)/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\.*/,
'code-string': /(?:".*?"|'.*?'|`.*?`|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
'code-call': /\.?\w+ *(?=\()/,
'code-sexpr': /\((\w+ )/,
Expand Down
2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7835,7 +7835,7 @@ var $;
'code-comment-block': /(?:\/\*[^]*?\*\/|\/\+[^]*?\+\/|<![^]*?>)/,
'code-link': /(?:\w+:\/\/|#)\S+?(?=\s|\\\\|""|$)/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\.*/,
'code-string': /(?:".*?"|'.*?'|`.*?`|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
'code-call': /\.?\w+ *(?=\()/,
'code-sexpr': /\((\w+ )/,
Expand Down
24 changes: 23 additions & 1 deletion node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7826,7 +7826,7 @@ var $;
'code-comment-block': /(?:\/\*[^]*?\*\/|\/\+[^]*?\+\/|<![^]*?>)/,
'code-link': /(?:\w+:\/\/|#)\S+?(?=\s|\\\\|""|$)/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\.*/,
'code-string': /(?:".*?"|'.*?'|`.*?`|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
'code-call': /\.?\w+ *(?=\()/,
'code-sexpr': /\((\w+ )/,
Expand Down Expand Up @@ -22924,6 +22924,28 @@ var $;
;
"use strict";

;
"use strict";
var $;
(function ($) {
$mol_test_mocks.push(context => {
class $mol_state_arg_mock extends $mol_state_arg {
static $ = context;
static href(next) { return next || ''; }
static go(next) {
this.href(this.link(next));
}
}
__decorate([
$mol_mem
], $mol_state_arg_mock, "href", null);
__decorate([
$mol_action
], $mol_state_arg_mock, "go", null);
context.$mol_state_arg = $mol_state_arg_mock;
});
})($ || ($ = {}));

;
"use strict";
var $;
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions web.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ declare namespace $ {
}

declare namespace $ {
type $mol_view_content = $mol_view | Node | string | number | boolean;
type $mol_view_content = $mol_view | Node | string | number | boolean | null;
function $mol_view_visible_width(): number;
function $mol_view_visible_height(): number;
function $mol_view_state_key(suffix: string): string;
Expand All @@ -752,8 +752,8 @@ declare namespace $ {
state_key(suffix?: string): string;
dom_name(): string;
dom_name_space(): string;
sub(): readonly ($mol_view | Node | string | number | boolean)[];
sub_visible(): readonly (string | number | boolean | $mol_view | Node)[];
sub(): readonly $mol_view_content[];
sub_visible(): readonly $mol_view_content[];
minimal_width(): number;
maximal_width(): number;
minimal_height(): number;
Expand Down Expand Up @@ -1544,7 +1544,7 @@ declare namespace $.$$ {
tab_index(): number;
error(): string;
hint_safe(): string;
sub_visible(): ($mol_speck | $mol_view_content)[];
sub_visible(): ($mol_view_content | $mol_speck)[];
}
}

Expand Down
2 changes: 1 addition & 1 deletion web.js
Original file line number Diff line number Diff line change
Expand Up @@ -7261,7 +7261,7 @@ var $;
'code-comment-block': /(?:\/\*[^]*?\*\/|\/\+[^]*?\+\/|<![^]*?>)/,
'code-link': /(?:\w+:\/\/|#)\S+?(?=\s|\\\\|""|$)/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\.*/,
'code-string': /(?:".*?"|'.*?'|`.*?`|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
'code-call': /\.?\w+ *(?=\()/,
'code-sexpr': /\((\w+ )/,
Expand Down
2 changes: 1 addition & 1 deletion web.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7261,7 +7261,7 @@ var $;
'code-comment-block': /(?:\/\*[^]*?\*\/|\/\+[^]*?\+\/|<![^]*?>)/,
'code-link': /(?:\w+:\/\/|#)\S+?(?=\s|\\\\|""|$)/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\.*/,
'code-string': /(?:".*?"|'.*?'|`.*?`|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
'code-call': /\.?\w+ *(?=\()/,
'code-sexpr': /\((\w+ )/,
Expand Down

0 comments on commit abcd28f

Please sign in to comment.