mol_jsx_lib 0.0.1
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/.nojekyll +0 -0
- package/README.md +58 -0
- package/node.audit.js +1 -0
- package/node.d.ts +445 -0
- package/node.deps.json +1 -0
- package/node.esm.js +1879 -0
- package/node.esm.js.map +1 -0
- package/node.js +1878 -0
- package/node.js.map +1 -0
- package/node.test.js +3543 -0
- package/node.test.js.map +1 -0
- package/package.json +64 -0
- package/test.html +17 -0
- package/web.audit.js +1 -0
- package/web.css +1 -0
- package/web.css.map +1 -0
- package/web.d.ts +360 -0
- package/web.deps.json +1 -0
- package/web.esm.js +1386 -0
- package/web.esm.js.map +1 -0
- package/web.js +1385 -0
- package/web.js.map +1 -0
- package/web.test.js +1695 -0
- package/web.test.js.map +1 -0
package/.nojekyll
ADDED
|
File without changes
|
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# $mol_jsx
|
|
2
|
+
|
|
3
|
+
JSX adapter that makes DOM tree. Generates global uniue ids for every dom-element by components tree with ids. Ensures all local ids are unique. Can reuse an existing nodes by guids when used inside [`$mol_jsx_attach`](./attach).
|
|
4
|
+
|
|
5
|
+
## Usage example
|
|
6
|
+
|
|
7
|
+
```tsx
|
|
8
|
+
/** @jsx $mol_jsx */
|
|
9
|
+
|
|
10
|
+
const $my_message = ( props : { content : string } )=> (
|
|
11
|
+
<div classList={[ 'foo bar' ]} >
|
|
12
|
+
{ props.content } is
|
|
13
|
+
<strong id="/text_nodes" >
|
|
14
|
+
text nodes
|
|
15
|
+
</strong>
|
|
16
|
+
mixed with
|
|
17
|
+
<strong id="/elements" >
|
|
18
|
+
elements
|
|
19
|
+
</strong>
|
|
20
|
+
!
|
|
21
|
+
</div>
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
const dom = (
|
|
25
|
+
<html>
|
|
26
|
+
<body>
|
|
27
|
+
<$my_message id="$my_app" content="Content" />
|
|
28
|
+
</body>
|
|
29
|
+
</html>
|
|
30
|
+
)
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Result:
|
|
34
|
+
|
|
35
|
+
```html
|
|
36
|
+
<html>
|
|
37
|
+
<body>
|
|
38
|
+
<div id="$my_app" class="foo bar" >
|
|
39
|
+
Content is
|
|
40
|
+
<strong id="$my_app/text_nodes" >
|
|
41
|
+
text nodes
|
|
42
|
+
</strong>
|
|
43
|
+
mixed with
|
|
44
|
+
<strong id="$my_app/elements" >
|
|
45
|
+
elements
|
|
46
|
+
</strong>
|
|
47
|
+
!
|
|
48
|
+
</div>
|
|
49
|
+
</body>
|
|
50
|
+
</html>
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
[More examples in tests.](jsx.test.tsx)
|
|
54
|
+
|
|
55
|
+
# See also
|
|
56
|
+
|
|
57
|
+
- [$mol_jsx_attach](attach) - render JSX to existing document
|
|
58
|
+
- [$mol_jsx_view](view) - statefull view bound to dom-element
|
package/node.audit.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.info("Audit passed")
|
package/node.d.ts
ADDED
|
@@ -0,0 +1,445 @@
|
|
|
1
|
+
declare let _$_: {
|
|
2
|
+
new (): {};
|
|
3
|
+
} & typeof globalThis;
|
|
4
|
+
declare class $ extends _$_ {
|
|
5
|
+
}
|
|
6
|
+
declare namespace $ {
|
|
7
|
+
export type $ = typeof $$;
|
|
8
|
+
export class $$ extends $ {
|
|
9
|
+
}
|
|
10
|
+
namespace $$ {
|
|
11
|
+
type $$ = $;
|
|
12
|
+
}
|
|
13
|
+
export {};
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare namespace $ {
|
|
17
|
+
var $mol_dom_context: typeof globalThis;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
interface $node {
|
|
21
|
+
[key: string]: any;
|
|
22
|
+
}
|
|
23
|
+
declare var $node: $node;
|
|
24
|
+
|
|
25
|
+
declare namespace $ {
|
|
26
|
+
type $mol_log3_event<Fields> = {
|
|
27
|
+
[key in string]: unknown;
|
|
28
|
+
} & {
|
|
29
|
+
time?: string;
|
|
30
|
+
place: unknown;
|
|
31
|
+
message: string;
|
|
32
|
+
} & Fields;
|
|
33
|
+
type $mol_log3_logger<Fields, Res = void> = (this: $, event: $mol_log3_event<Fields>) => Res;
|
|
34
|
+
let $mol_log3_come: $mol_log3_logger<{}>;
|
|
35
|
+
let $mol_log3_done: $mol_log3_logger<{}>;
|
|
36
|
+
let $mol_log3_fail: $mol_log3_logger<{}>;
|
|
37
|
+
let $mol_log3_warn: $mol_log3_logger<{
|
|
38
|
+
hint: string;
|
|
39
|
+
}>;
|
|
40
|
+
let $mol_log3_rise: $mol_log3_logger<{}>;
|
|
41
|
+
let $mol_log3_area: $mol_log3_logger<{}, () => void>;
|
|
42
|
+
function $mol_log3_area_lazy(this: $, event: $mol_log3_event<{}>): () => void;
|
|
43
|
+
let $mol_log3_stack: (() => void)[];
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
declare namespace $ {
|
|
47
|
+
const $mol_ambient_ref: unique symbol;
|
|
48
|
+
type $mol_ambient_context = $;
|
|
49
|
+
function $mol_ambient(this: $ | void, overrides: Partial<$>): $;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
declare namespace $ {
|
|
53
|
+
function $mol_delegate<Value extends object>(proto: Value, target: () => Value): Value;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
declare namespace $ {
|
|
57
|
+
const $mol_owning_map: WeakMap<any, any>;
|
|
58
|
+
function $mol_owning_allow<Having>(having: Having): having is Having & {
|
|
59
|
+
destructor(): void;
|
|
60
|
+
};
|
|
61
|
+
function $mol_owning_get<Having, Owner extends object>(having: Having, Owner?: {
|
|
62
|
+
new (): Owner;
|
|
63
|
+
}): Owner | null;
|
|
64
|
+
function $mol_owning_check<Owner, Having>(owner: Owner, having: Having): having is Having & {
|
|
65
|
+
destructor(): void;
|
|
66
|
+
};
|
|
67
|
+
function $mol_owning_catch<Owner, Having>(owner: Owner, having: Having): boolean;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
declare namespace $ {
|
|
71
|
+
function $mol_fail(error: any): never;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
declare namespace $ {
|
|
75
|
+
function $mol_fail_hidden(error: any): never;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
declare namespace $ {
|
|
79
|
+
type $mol_type_writable<T> = {
|
|
80
|
+
-readonly [P in keyof T]: T[P];
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
declare namespace $ {
|
|
85
|
+
class $mol_object2 {
|
|
86
|
+
static $: typeof $$;
|
|
87
|
+
[$mol_ambient_ref]: typeof $$;
|
|
88
|
+
get $(): $;
|
|
89
|
+
set $(next: $);
|
|
90
|
+
static create<Instance>(this: new (init?: (instance: any) => void) => Instance, init?: (instance: $mol_type_writable<Instance>) => void): Instance;
|
|
91
|
+
static [Symbol.toPrimitive](): any;
|
|
92
|
+
static toString(): any;
|
|
93
|
+
destructor(): void;
|
|
94
|
+
toString(): any;
|
|
95
|
+
toJSON(): any;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
declare namespace $ {
|
|
100
|
+
function $mol_deprecated(message: string): <Method extends (this: Host, ...args: readonly any[]) => any, Host extends { [key in Field]: Method; }, Field extends keyof Host>(host: Host, field: Field, descr: TypedPropertyDescriptor<Method>) => void;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
declare namespace $ {
|
|
104
|
+
const $mol_tree_convert: unique symbol;
|
|
105
|
+
type $mol_tree_path = Array<string | number | null>;
|
|
106
|
+
type $mol_tree_hack = (input: $mol_tree, context: $mol_tree_context) => readonly $mol_tree[];
|
|
107
|
+
type $mol_tree_context = Record<string, $mol_tree_hack>;
|
|
108
|
+
type $mol_tree_library = Record<string, $mol_tree_context>;
|
|
109
|
+
class $mol_tree extends $mol_object2 {
|
|
110
|
+
readonly type: string;
|
|
111
|
+
readonly data: string;
|
|
112
|
+
readonly sub: readonly $mol_tree[];
|
|
113
|
+
readonly baseUri: string;
|
|
114
|
+
readonly row: number;
|
|
115
|
+
readonly col: number;
|
|
116
|
+
readonly length: number;
|
|
117
|
+
constructor(config?: Partial<$mol_tree>);
|
|
118
|
+
static values(str: string, baseUri?: string): $mol_tree[];
|
|
119
|
+
clone(config?: Partial<$mol_tree>): $mol_tree;
|
|
120
|
+
make(config: Partial<$mol_tree>): $mol_tree;
|
|
121
|
+
make_data(value: string, sub?: readonly $mol_tree[]): $mol_tree;
|
|
122
|
+
make_struct(type: string, sub?: readonly $mol_tree[]): $mol_tree;
|
|
123
|
+
static fromString(str: string, baseUri?: string): $mol_tree;
|
|
124
|
+
static fromJSON(json: any, baseUri?: string): $mol_tree;
|
|
125
|
+
get uri(): string;
|
|
126
|
+
toString(prefix?: string): string;
|
|
127
|
+
toJSON(): any;
|
|
128
|
+
get value(): string;
|
|
129
|
+
insert(value: $mol_tree, ...path: $mol_tree_path): $mol_tree;
|
|
130
|
+
select(...path: $mol_tree_path): $mol_tree;
|
|
131
|
+
filter(path: string[], value?: string): $mol_tree;
|
|
132
|
+
transform(visit: (stack: $mol_tree[], sub: () => $mol_tree[]) => $mol_tree | null, stack?: $mol_tree[]): $mol_tree | null;
|
|
133
|
+
hack(context: $mol_tree_context): $mol_tree;
|
|
134
|
+
error(message: string): Error;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
declare namespace $ {
|
|
139
|
+
function $mol_log3_node_make(level: keyof Console, output: 'stdout' | 'stderr', type: string, color: keyof typeof $node.colorette): (this: $, event: $mol_log3_event<{}>) => () => void;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
declare namespace $ {
|
|
143
|
+
function $mol_env(): Record<string, string | undefined>;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
declare namespace $ {
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
/// <reference types="node" />
|
|
150
|
+
declare namespace $ {
|
|
151
|
+
function $mol_exec(this: $, dir: string, command: string, ...args: string[]): import("child_process").SpawnSyncReturns<Buffer>;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
declare namespace $ {
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
declare namespace $ {
|
|
158
|
+
function $mol_dom_render_children(el: Element | DocumentFragment, childNodes: NodeList | Array<Node | string | null>): void;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
declare namespace $ {
|
|
162
|
+
type $mol_type_partial_deep<Val> = {
|
|
163
|
+
[field in keyof Val]?: $mol_type_partial_deep<Val[field]>;
|
|
164
|
+
};
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
declare namespace $ {
|
|
168
|
+
let $mol_jsx_prefix: string;
|
|
169
|
+
let $mol_jsx_booked: Set<string> | null;
|
|
170
|
+
let $mol_jsx_document: $mol_jsx.JSX.ElementClass['ownerDocument'];
|
|
171
|
+
const $mol_jsx_frag = "";
|
|
172
|
+
function $mol_jsx<Props extends $mol_jsx.JSX.IntrinsicAttributes, Children extends Array<Node | string>>(Elem: string | ((props: Props, ...children: Children) => Element), props: Props, ...childNodes: Children): Element | DocumentFragment;
|
|
173
|
+
namespace $mol_jsx.JSX {
|
|
174
|
+
interface Element extends HTMLElement {
|
|
175
|
+
class?: string;
|
|
176
|
+
}
|
|
177
|
+
interface ElementClass {
|
|
178
|
+
attributes: {};
|
|
179
|
+
ownerDocument: Pick<Document, 'getElementById' | 'createElementNS' | 'createDocumentFragment'>;
|
|
180
|
+
childNodes: Array<Node | string>;
|
|
181
|
+
valueOf(): Element;
|
|
182
|
+
}
|
|
183
|
+
type OrString<Dict> = {
|
|
184
|
+
[key in keyof Dict]: Dict[key] | string;
|
|
185
|
+
};
|
|
186
|
+
type IntrinsicElements = {
|
|
187
|
+
[key in keyof ElementTagNameMap]?: $.$mol_type_partial_deep<OrString<Element & IntrinsicAttributes & ElementTagNameMap[key]>>;
|
|
188
|
+
};
|
|
189
|
+
interface IntrinsicAttributes {
|
|
190
|
+
id?: string;
|
|
191
|
+
xmlns?: string;
|
|
192
|
+
}
|
|
193
|
+
interface ElementAttributesProperty {
|
|
194
|
+
attributes: {};
|
|
195
|
+
}
|
|
196
|
+
interface ElementChildrenAttribute {
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
declare namespace $ {
|
|
202
|
+
function $mol_jsx_attach<Result>(next: typeof $mol_jsx_document, action: () => Result): Result;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
declare namespace $ {
|
|
206
|
+
enum $mol_wire_cursor {
|
|
207
|
+
stale = -1,
|
|
208
|
+
doubt = -2,
|
|
209
|
+
fresh = -3,
|
|
210
|
+
final = -4
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
declare namespace $ {
|
|
215
|
+
class $mol_wire_pub extends Object {
|
|
216
|
+
data: unknown[];
|
|
217
|
+
static get [Symbol.species](): ArrayConstructor;
|
|
218
|
+
protected sub_from: number;
|
|
219
|
+
get sub_list(): readonly $mol_wire_sub[];
|
|
220
|
+
get sub_empty(): boolean;
|
|
221
|
+
sub_on(sub: $mol_wire_pub, pub_pos: number): number;
|
|
222
|
+
sub_off(sub_pos: number): void;
|
|
223
|
+
reap(): void;
|
|
224
|
+
promote(): void;
|
|
225
|
+
refresh(): void;
|
|
226
|
+
complete(): void;
|
|
227
|
+
emit(quant?: $mol_wire_cursor): void;
|
|
228
|
+
peer_move(from_pos: number, to_pos: number): void;
|
|
229
|
+
peer_repos(peer_pos: number, self_pos: number): void;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
declare namespace $ {
|
|
234
|
+
interface $mol_wire_sub extends $mol_wire_pub {
|
|
235
|
+
track_on(): $mol_wire_sub | null;
|
|
236
|
+
track_next(pub?: $mol_wire_pub): $mol_wire_pub | null;
|
|
237
|
+
pub_off(pub_pos: number): void;
|
|
238
|
+
track_cut(sub: $mol_wire_pub | null): void;
|
|
239
|
+
track_off(sub: $mol_wire_pub | null): void;
|
|
240
|
+
absorb(quant: $mol_wire_cursor): void;
|
|
241
|
+
destructor(): void;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
declare namespace $ {
|
|
246
|
+
function $mol_wire_auto(next?: $mol_wire_sub | null): $mol_wire_sub | null;
|
|
247
|
+
const $mol_wire_affected: (number | $mol_wire_sub)[];
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
declare namespace $ {
|
|
251
|
+
function $mol_dev_format_register(config: {
|
|
252
|
+
header: (val: any, config: any) => any;
|
|
253
|
+
hasBody: (val: any, config: any) => false;
|
|
254
|
+
} | {
|
|
255
|
+
header: (val: any, config: any) => any;
|
|
256
|
+
hasBody: (val: any, config: any) => boolean;
|
|
257
|
+
body: (val: any, config: any) => any;
|
|
258
|
+
}): void;
|
|
259
|
+
let $mol_dev_format_head: symbol;
|
|
260
|
+
let $mol_dev_format_body: symbol;
|
|
261
|
+
function $mol_dev_format_native(obj: any): any;
|
|
262
|
+
function $mol_dev_format_auto(obj: any): any;
|
|
263
|
+
function $mol_dev_format_element(element: string, style: object, ...content: any[]): any[];
|
|
264
|
+
function $mol_dev_format_span(style: object, ...content: any[]): any[];
|
|
265
|
+
let $mol_dev_format_div: (style: object, ...content: any[]) => any[];
|
|
266
|
+
let $mol_dev_format_ol: (style: object, ...content: any[]) => any[];
|
|
267
|
+
let $mol_dev_format_li: (style: object, ...content: any[]) => any[];
|
|
268
|
+
let $mol_dev_format_table: (style: object, ...content: any[]) => any[];
|
|
269
|
+
let $mol_dev_format_tr: (style: object, ...content: any[]) => any[];
|
|
270
|
+
let $mol_dev_format_td: (style: object, ...content: any[]) => any[];
|
|
271
|
+
let $mol_dev_format_accent: (...args: any[]) => any[];
|
|
272
|
+
let $mol_dev_format_strong: (...args: any[]) => any[];
|
|
273
|
+
let $mol_dev_format_string: (...args: any[]) => any[];
|
|
274
|
+
let $mol_dev_format_shade: (...args: any[]) => any[];
|
|
275
|
+
let $mol_dev_format_indent: (...args: any[]) => any[];
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
declare namespace $ {
|
|
279
|
+
class $mol_wire_pub_sub extends $mol_wire_pub implements $mol_wire_sub {
|
|
280
|
+
protected pub_from: number;
|
|
281
|
+
protected cursor: $mol_wire_cursor;
|
|
282
|
+
get pub_list(): $mol_wire_pub[];
|
|
283
|
+
track_on(): $mol_wire_sub | null;
|
|
284
|
+
promote(): void;
|
|
285
|
+
track_next(pub?: $mol_wire_pub): $mol_wire_pub | null;
|
|
286
|
+
track_off(sub: $mol_wire_sub | null): void;
|
|
287
|
+
pub_off(sub_pos: number): void;
|
|
288
|
+
destructor(): void;
|
|
289
|
+
track_cut(): void;
|
|
290
|
+
complete(): void;
|
|
291
|
+
complete_pubs(): void;
|
|
292
|
+
absorb(quant?: $mol_wire_cursor): void;
|
|
293
|
+
get pub_empty(): boolean;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
declare namespace $ {
|
|
298
|
+
class $mol_after_timeout extends $mol_object2 {
|
|
299
|
+
delay: number;
|
|
300
|
+
task: () => void;
|
|
301
|
+
id: any;
|
|
302
|
+
constructor(delay: number, task: () => void);
|
|
303
|
+
destructor(): void;
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
declare namespace $ {
|
|
308
|
+
class $mol_after_frame extends $mol_after_timeout {
|
|
309
|
+
task: () => void;
|
|
310
|
+
constructor(task: () => void);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
declare namespace $ {
|
|
315
|
+
abstract class $mol_wire_fiber<Host, Args extends readonly unknown[], Result> extends $mol_wire_pub_sub {
|
|
316
|
+
readonly task: (this: Host, ...args: Args) => Result;
|
|
317
|
+
readonly host?: Host | undefined;
|
|
318
|
+
static warm: boolean;
|
|
319
|
+
static planning: Set<$mol_wire_fiber<any, any, any>>;
|
|
320
|
+
static reaping: Set<$mol_wire_fiber<any, any, any>>;
|
|
321
|
+
static plan_task: $mol_after_frame | null;
|
|
322
|
+
static plan(): void;
|
|
323
|
+
static sync(): void;
|
|
324
|
+
cache: Result | Error | Promise<Result | Error>;
|
|
325
|
+
get args(): Args;
|
|
326
|
+
result(): Result | undefined;
|
|
327
|
+
field(): string;
|
|
328
|
+
constructor(id: string, task: (this: Host, ...args: Args) => Result, host?: Host | undefined, ...args: Args);
|
|
329
|
+
plan(): void;
|
|
330
|
+
reap(): void;
|
|
331
|
+
toString(): any;
|
|
332
|
+
toJSON(): any;
|
|
333
|
+
get $(): any;
|
|
334
|
+
emit(quant?: $mol_wire_cursor): void;
|
|
335
|
+
refresh(): void;
|
|
336
|
+
abstract put(next: Result | Error | Promise<Result | Error>): Result | Error | Promise<Result | Error>;
|
|
337
|
+
sync(): Awaited<Result>;
|
|
338
|
+
async(): Promise<Result>;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
declare namespace $ {
|
|
343
|
+
function $mol_guid(length?: number, exists?: (id: string) => boolean): string;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
declare namespace $ {
|
|
347
|
+
const $mol_key_store: WeakMap<object, string>;
|
|
348
|
+
function $mol_key<Value>(value: Value): string;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
declare namespace $ {
|
|
352
|
+
let $mol_compare_deep_cache: WeakMap<any, WeakMap<any, boolean>>;
|
|
353
|
+
function $mol_compare_deep<Value>(left: Value, right: Value): boolean;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
declare namespace $ {
|
|
357
|
+
class $mol_wire_task<Host, Args extends readonly unknown[], Result> extends $mol_wire_fiber<Host, Args, Result> {
|
|
358
|
+
static getter<Host, Args extends readonly unknown[], Result>(task: (this: Host, ...args: Args) => Result): (host: Host, args: Args) => $mol_wire_task<Host, [...Args], Result>;
|
|
359
|
+
complete(): void;
|
|
360
|
+
put(next: Result | Error | Promise<Result | Error>): Error | Result | Promise<Error | Result>;
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
declare namespace $ {
|
|
365
|
+
function $mol_wire_method<Host extends object, Args extends readonly any[], Result>(host: Host, field: PropertyKey, descr?: TypedPropertyDescriptor<(...args: Args) => Result>): {
|
|
366
|
+
value: (this: Host, ...args: Args) => Result;
|
|
367
|
+
enumerable?: boolean | undefined;
|
|
368
|
+
configurable?: boolean | undefined;
|
|
369
|
+
writable?: boolean | undefined;
|
|
370
|
+
get?: (() => (...args: Args) => Result) | undefined;
|
|
371
|
+
set?: ((value: (...args: Args) => Result) => void) | undefined;
|
|
372
|
+
};
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
declare namespace $ {
|
|
376
|
+
class $mol_wire_atom<Host, Args extends readonly unknown[], Result> extends $mol_wire_fiber<Host, Args, Result> {
|
|
377
|
+
static getter<Host, Args extends readonly unknown[], Result>(task: (this: Host, ...args: Args) => Result, keys: number): (host: Host, args: Args) => $mol_wire_atom<Host, [...Args], Result>;
|
|
378
|
+
recall(...args: Args): Error | Result | Promise<Error | Result>;
|
|
379
|
+
once(): Awaited<Result>;
|
|
380
|
+
destructor(): void;
|
|
381
|
+
put(next: Result | Error | Promise<Result | Error>): Error | Result | Promise<Error | Result>;
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
declare namespace $ {
|
|
386
|
+
function $mol_wire_mem<Keys extends number>(keys: Keys): <Host extends object, Field extends keyof Host, Prop extends Extract<Host[Field], (...args: any[]) => any>>(host: Host, field: Field, descr?: TypedPropertyDescriptor<Prop> | undefined) => {
|
|
387
|
+
value: NonNullable<Prop>;
|
|
388
|
+
enumerable?: boolean | undefined;
|
|
389
|
+
configurable?: boolean | undefined;
|
|
390
|
+
writable?: boolean | undefined;
|
|
391
|
+
get?: (() => Prop) | undefined;
|
|
392
|
+
set?: ((value: Prop) => void) | undefined;
|
|
393
|
+
};
|
|
394
|
+
function $mol_wire_mem_func<Keys extends number>(keys: Keys): <Result, Host, Args extends unknown[], Func extends (this: Host, ...args: Args) => Result>(func: Func) => Func;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
declare namespace $ {
|
|
398
|
+
let $mol_mem: <Host extends object, Field extends keyof Host, Prop extends Extract<Host[Field], (...args: any[]) => any>>(host: Host, field: Field, descr?: TypedPropertyDescriptor<Prop> | undefined) => {
|
|
399
|
+
value: NonNullable<Prop>;
|
|
400
|
+
enumerable?: boolean | undefined;
|
|
401
|
+
configurable?: boolean | undefined;
|
|
402
|
+
writable?: boolean | undefined;
|
|
403
|
+
get?: (() => Prop) | undefined;
|
|
404
|
+
set?: ((value: Prop) => void) | undefined;
|
|
405
|
+
};
|
|
406
|
+
let $mol_mem_key: <Host extends object, Field extends keyof Host, Prop extends Extract<Host[Field], (...args: any[]) => any>>(host: Host, field: Field, descr?: TypedPropertyDescriptor<Prop> | undefined) => {
|
|
407
|
+
value: NonNullable<Prop>;
|
|
408
|
+
enumerable?: boolean | undefined;
|
|
409
|
+
configurable?: boolean | undefined;
|
|
410
|
+
writable?: boolean | undefined;
|
|
411
|
+
get?: (() => Prop) | undefined;
|
|
412
|
+
set?: ((value: Prop) => void) | undefined;
|
|
413
|
+
};
|
|
414
|
+
let $mol_mem_key2: <Host extends object, Field extends keyof Host, Prop extends Extract<Host[Field], (...args: any[]) => any>>(host: Host, field: Field, descr?: TypedPropertyDescriptor<Prop> | undefined) => {
|
|
415
|
+
value: NonNullable<Prop>;
|
|
416
|
+
enumerable?: boolean | undefined;
|
|
417
|
+
configurable?: boolean | undefined;
|
|
418
|
+
writable?: boolean | undefined;
|
|
419
|
+
get?: (() => Prop) | undefined;
|
|
420
|
+
set?: ((value: Prop) => void) | undefined;
|
|
421
|
+
};
|
|
422
|
+
let $mol_mem_key3: <Host extends object, Field extends keyof Host, Prop extends Extract<Host[Field], (...args: any[]) => any>>(host: Host, field: Field, descr?: TypedPropertyDescriptor<Prop> | undefined) => {
|
|
423
|
+
value: NonNullable<Prop>;
|
|
424
|
+
enumerable?: boolean | undefined;
|
|
425
|
+
configurable?: boolean | undefined;
|
|
426
|
+
writable?: boolean | undefined;
|
|
427
|
+
get?: (() => Prop) | undefined;
|
|
428
|
+
set?: ((value: Prop) => void) | undefined;
|
|
429
|
+
};
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
declare namespace $ {
|
|
433
|
+
class $mol_jsx_view extends $mol_object2 {
|
|
434
|
+
static of<This extends typeof $mol_jsx_view>(this: This, node: Element): InstanceType<This>;
|
|
435
|
+
attributes: Partial<Pick<this, Exclude<keyof this, 'valueOf'>>>;
|
|
436
|
+
ownerDocument: typeof $mol_jsx_document;
|
|
437
|
+
get childNodes(): Array<Node | string>;
|
|
438
|
+
set childNodes(next: Array<Node | string>);
|
|
439
|
+
_kids(next?: (string | Node)[]): (string | Node)[];
|
|
440
|
+
valueOf(): HTMLElement;
|
|
441
|
+
render(): HTMLElement;
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
export = $;
|
package/node.deps.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"files":["LICENSE","README.md","lang.lang.tree","mam.jam.js","mam.ts","package.json","sandbox.config.json","tsconfig.json","tsfmt.json","yarn.lock","mol/CNAME","mol/CODE_OF_CONDUCT.md","mol/CONTRIBUTING.md","mol/LICENSE","mol/index.html","mol/mol.meta.tree","mol/readme.md","mol/dom/context/context.ts","node/node.ts","node/node.node.ts","mol/log3/log3.ts","mol/ambient/ambient.ts","mol/ambient/readme.md","mol/delegate/delegate.ts","mol/owning/owning.ts","mol/fail/fail.ts","mol/fail/hidden/hidden.ts","mol/type/README.md","mol/type/writable/writable.ts","mol/object2/object2.ts","mol/deprecated/deprecated.ts","mol/tree/readme.md","mol/tree/tree.ts","mol/log3/log3.node.ts","mol/env/env.ts","mol/env/env.node.ts","mol/exec/exec.node.ts","mol/dom/context/context.node.ts","mol/dom/render/children/children.ts","mol/type/partial/deep/deep.ts","mol/jsx/jsx.ts","mol/jsx/readme.md","mol/jsx/attach/attach.ts","mol/jsx/attach/readme.md","mol/wire/cursor/cursor.ts","mol/wire/pub/pub.ts","mol/wire/sub/sub.ts","mol/wire/README.md","mol/wire/wire.ts","mol/dev/format/format.ts","mol/wire/pub/sub/README.md","mol/wire/pub/sub/sub.ts","mol/after/timeout/readme.md","mol/after/timeout/timeout.ts","mol/after/frame/frame.node.ts","mol/wire/fiber/fiber.ts","mol/wire/fiber/readme.md","mol/guid/guid.ts","mol/key/README.md","mol/key/key.ts","mol/compare/deep/README.md","mol/compare/deep/deep.ts","mol/wire/task/task.ts","mol/wire/method/README.md","mol/wire/method/method.ts","mol/wire/atom/atom.ts","mol/wire/mem/README.md","mol/wire/mem/mem.ts","mol/mem/mem.ts","mol/jsx/view/readme.md","mol/jsx/view/view.tsx","mol/jsx/lib/lib.meta.tree"],"mods":{},"deps_in":{"mol/jsx":{"mol/jsx/lib":-9000,"mol/jsx/attach":-1,"mol/jsx/view":0},"mol":{"mol/jsx":-9007199254740991,"mol/dom":-9007199254740991,"mol/exec":-9007199254740991,"mol/log3":-9007199254740991,"mol/tree":-9007199254740991,"mol/object2":-9007199254740991,"mol/ambient":-9007199254740991,"mol/owning":-9007199254740991,"mol/delegate":-9007199254740991,"mol/fail":-9007199254740991,"mol/type":-9007199254740991,"mol/deprecated":-9007199254740991,"mol/env":-9007199254740991,"mol/mem":-9007199254740991,"mol/wire":-9007199254740991,"mol/dev":-9007199254740991,"mol/after":-9007199254740991,"mol/key":-9007199254740991,"mol/guid":-9007199254740991,"mol/compare":-9007199254740991},"":{"mol":-9007199254740991,"node":-9007199254740991,"node_modules":-9007199254740991},"mol/dom/context":{"mol/jsx":-2,"mol/dom/render/children":-3},"mol/dom":{"mol/dom/context":-9007199254740991,"mol/dom/render":-9007199254740991},"mol/dom/context/context.ts":{"mol/dom/context":0},"node":{"mol/dom/context":-1,"mol/log3":-2,"mol/exec":-2},"node/node.ts":{"node":0},"node_modules":{"node":-2},"mol/exec":{"mol/dom/context":-4},"mol/log3":{"mol/exec":-2},"mol/log3/log3.ts":{"mol/log3":0},"mol/tree":{"mol/log3":-3},"mol/object2":{"mol/tree":-1,"mol/jsx/view":-1,"mol/after/timeout":-1},"mol/ambient":{"mol/object2":-2},"mol/owning":{"mol/object2":-3,"mol/wire/atom":-3},"mol/delegate":{"mol/owning":-3},"mol/fail/hidden":{"mol/object2":-3,"mol/wire/fiber":-4,"mol/wire/atom":-5},"mol/fail":{"mol/fail/hidden":-9007199254740991,"mol/tree":-4,"mol/exec":-2,"mol/jsx":-4,"mol/wire/pub":-4,"mol/wire/pub/sub":-3,"mol/jsx/view":-3},"mol/type/writable":{"mol/object2":-3},"mol/type":{"mol/type/writable":-9007199254740991,"mol/type/partial":-9007199254740991},"mol/deprecated":{"mol/tree":-2},"mol/env":{"mol/exec":-4},"mol/env/env.ts":{"mol/env":0},"mol/dom/render/children":{"mol/jsx":-2},"mol/dom/render":{"mol/dom/render/children":-9007199254740991},"mol/type/partial/deep":{"mol/jsx":-3},"mol/type/partial":{"mol/type/partial/deep":-9007199254740991},"mol/jsx/attach":{"mol/jsx/lib":-9000},"mol/jsx/view":{"mol/jsx/lib":-9000},"mol/mem":{"mol/jsx/view":-2},"mol/wire/mem":{"mol/mem":-1},"mol/wire":{"mol/wire/mem":-5,"mol/wire/atom":-9007199254740991,"mol/wire/fiber":-9007199254740991,"mol/wire/pub/sub":-3,"mol/wire/method":-9007199254740991,"mol/wire/task":-4},"mol/wire/sub":{"mol/wire":-1,"mol/wire/pub/sub":-1},"mol/wire/pub":{"mol/wire/sub":-1,"mol/wire/pub/sub":-1,"mol/wire/fiber":-5},"mol/wire/cursor":{"mol/wire/pub":-2,"mol/wire/sub":-2,"mol/wire/pub/sub":-2,"mol/wire/fiber":-2,"mol/wire/task":-3,"mol/wire/atom":-3},"mol/wire/atom":{"mol/wire/mem":-3},"mol/wire/fiber":{"mol/wire/atom":-1,"mol/wire/task":-1,"mol/wire/mem":-5},"mol/wire/pub/sub":{"mol/wire/fiber":-1},"mol/dev/format":{"mol/wire/pub/sub":-2,"mol/wire/fiber":-2},"mol/dev":{"mol/dev/format":-9007199254740991},"mol/after/frame":{"mol/wire/fiber":-2},"mol/after":{"mol/after/frame":-9007199254740991,"mol/after/timeout":-9007199254740991},"mol/after/timeout":{"mol/after/frame":-1},"mol/key":{"mol/wire/atom":-5},"mol/guid":{"mol/key":-3},"mol/wire/method":{"mol/wire/atom":-2},"mol/wire/task":{"mol/wire/method":-2,"mol/wire/mem":-5},"mol/compare/deep":{"mol/wire/task":-5,"mol/wire/atom":-5},"mol/compare":{"mol/compare/deep":-9007199254740991}},"deps_out":{"mol/jsx/lib":{"mol/jsx":-9000,"mol/jsx/attach":-9000,"mol/jsx/view":-9000},"mol/jsx":{"mol":-9007199254740991,"mol/dom/context":-2,"mol/fail":-4,"mol/dom/render/children":-2,"mol/type/partial/deep":-3},"mol":{"":-9007199254740991},"mol/dom/context":{"mol/dom":-9007199254740991,"mol/dom/context/context.ts":0,"node":-1,"mol/exec":-4},"mol/dom":{"mol":-9007199254740991},"mol/dom/context/context.ts":{},"node":{"":-9007199254740991,"node/node.ts":0,"node_modules":-2},"node_modules":{"":-9007199254740991},"mol/exec":{"mol":-9007199254740991,"mol/log3":-2,"node":-2,"mol/env":-4,"mol/fail":-2},"mol/log3":{"mol":-9007199254740991,"mol/log3/log3.ts":0,"node":-2,"mol/tree":-3},"mol/log3/log3.ts":{},"mol/tree":{"mol":-9007199254740991,"mol/object2":-1,"mol/fail":-4,"mol/deprecated":-2},"mol/object2":{"mol":-9007199254740991,"mol/ambient":-2,"mol/owning":-3,"mol/fail/hidden":-3,"mol/type/writable":-3},"mol/ambient":{"mol":-9007199254740991},"mol/owning":{"mol":-9007199254740991,"mol/delegate":-3},"mol/delegate":{"mol":-9007199254740991},"mol/fail/hidden":{"mol/fail":-9007199254740991},"mol/fail":{"mol":-9007199254740991},"mol/type/writable":{"mol/type":-9007199254740991},"mol/type":{"mol":-9007199254740991},"mol/deprecated":{"mol":-9007199254740991},"mol/env":{"mol":-9007199254740991,"mol/env/env.ts":0},"mol/env/env.ts":{},"mol/dom/render/children":{"mol/dom/render":-9007199254740991,"mol/dom/context":-3},"mol/dom/render":{"mol/dom":-9007199254740991},"mol/type/partial/deep":{"mol/type/partial":-9007199254740991},"mol/type/partial":{"mol/type":-9007199254740991},"mol/jsx/attach":{"mol/jsx":-1},"mol/jsx/view":{"mol/jsx":0,"mol/object2":-1,"mol/mem":-2,"mol/fail":-3},"mol/mem":{"mol":-9007199254740991,"mol/wire/mem":-1},"mol/wire/mem":{"mol/wire":-5,"mol/wire/atom":-3,"mol/wire/fiber":-5,"mol/wire/task":-5},"mol/wire":{"mol":-9007199254740991,"mol/wire/sub":-1},"mol/wire/sub":{"mol/wire/pub":-1,"mol/wire/cursor":-2},"mol/wire/pub":{"mol/fail":-4,"mol/wire/cursor":-2},"mol/wire/cursor":{},"mol/wire/atom":{"mol/wire":-9007199254740991,"mol/wire/fiber":-1,"mol/key":-5,"mol/wire/method":-2,"mol/wire/cursor":-3,"mol/fail/hidden":-5,"mol/owning":-3,"mol/compare/deep":-5},"mol/wire/fiber":{"mol/wire":-9007199254740991,"mol/wire/pub/sub":-1,"mol/after/frame":-2,"mol/dev/format":-2,"mol/wire/cursor":-2,"mol/wire/pub":-5,"mol/fail/hidden":-4},"mol/wire/pub/sub":{"mol/wire/pub":-1,"mol/wire/sub":-1,"mol/wire/cursor":-2,"mol/wire":-3,"mol/fail":-3,"mol/dev/format":-2},"mol/dev/format":{"mol/dev":-9007199254740991},"mol/dev":{"mol":-9007199254740991},"mol/after/frame":{"mol/after":-9007199254740991,"mol/after/timeout":-1},"mol/after":{"mol":-9007199254740991},"mol/after/timeout":{"mol/after":-9007199254740991,"mol/object2":-1},"mol/key":{"mol":-9007199254740991,"mol/guid":-3},"mol/guid":{"mol":-9007199254740991},"mol/wire/method":{"mol/wire":-9007199254740991,"mol/wire/task":-2},"mol/wire/task":{"mol/wire":-4,"mol/wire/fiber":-1,"mol/compare/deep":-5,"mol/wire/cursor":-3},"mol/compare/deep":{"mol/compare":-9007199254740991},"mol/compare":{"mol":-9007199254740991}},"sloc":{"LICENSE":113,"md":1137,"tree":34,"js":10,"ts":1838,"json":87,"lock":1040,"CNAME":1,"html":1,"tsx":37},"deps":{"mol/jsx/lib":{"..":-9007199254740991,"/mol/jsx":-9000,"/mol/jsx/attach":-9000,"/mol/jsx/view":-9000},"mol/jsx":{"..":-9007199254740991,"/mol/jsx/prefix":-1,"/mol/jsx/booked":-1,"/mol/jsx/document":-1,"/mol/jsx":-1,"/mol/dom/context/document/create/element":-2,"/mol/dom/context/document/create/document/fragment":-2,"/mol/jsx/frag":-1,"/mol/jsx/booked/has":-3,"/mol/fail":-4,"/mol/jsx/booked/add":-4,"/mol/jsx/document/get/element/by/id":-2,"/mol/jsx/document/create/element":-4,"/mol/jsx/document/create/document/fragment":-4,"/mol/dom/render/children":-2,"/mol/type/partial/deep":-3},"mol":{"..":-9007199254740991},"":{},"mol/dom/context":{"..":-9007199254740991,"./context.ts":0,"/mol/dom/context":-1,"/node/jsdom":-1},"mol/dom":{"..":-9007199254740991},"mol/dom/context/context.ts":{"/mol/dom/context":-1},"node":{"..":-9007199254740991,"./node.ts":0,"/node":0,"module":-2,"path":-2,"fs":-2,"/mol/exec":-4},"node/node.ts":{},"node_modules":{"..":-9007199254740991},"mol/exec":{"..":-9007199254740991,"./exec.ts":0,"/mol/exec":-1,"/mol/log3/come":-2,"/node/path/relative":-3,"/node/child_process":-2,"/node/path/resolve":-4,"/mol/env":-4,"/mol/fail":-2},"mol/log3":{"..":-9007199254740991,"./log3.ts":0,"/mol/log3/node/make":-1,"/node/colorette":-2,"/mol/log3/logger":-1,"/mol/log3/event":-1,"/mol/tree/from":-3,"/mol/log3/come":-1,"/mol/log3/done":-1,"/mol/log3/fail":-1,"/mol/log3/warn":-1,"/mol/log3/rise":-1,"/mol/log3/area":-1,"/mol/log3/area/lazy":-1,"/mol/log3/stack":-1,"/mol/log3/area/call":-3},"mol/log3/log3.ts":{"/mol/log3/event":-1,"/mol/log3/logger":-1,"/mol/log3/come":-1,"/mol/log3/done":-1,"/mol/log3/fail":-1,"/mol/log3/warn":-1,"/mol/log3/rise":-1,"/mol/log3/area":-1,"/mol/log3/area/lazy":-1,"/mol/log3/stack":-1,"/mol/log3/area/call":-3},"mol/tree":{"..":-9007199254740991,"/mol/tree/convert":-1,"/mol/tree/path":-1,"/mol/tree/hack":-1,"/mol/tree":-1,"/mol/tree/context":-1,"/mol/tree/library":-1,"/mol/object2":-1,"/mol/tree/values":-4,"/mol/fail":-4,"/mol/tree/json/from":-2.25,"/mol/tree/from":-6,"/mol/tree/json/to":-2.25,"/mol/deprecated":-2},"mol/object2":{"..":-9007199254740991,"/mol/object2":-1,"/mol/ambient/ref":-2,"/mol/owning/get":-3,"/mol/fail/hidden":-3,"/mol/type/writable":-3},"mol/ambient":{"..":-9007199254740991,"/mol/ambient/ref":-1,"/mol/ambient/context":-1,"/mol/ambient":-1},"mol/owning":{"..":-9007199254740991,"/mol/owning/map":-1,"/mol/owning/allow":-1,"/mol/delegate":-3,"/mol/owning/get":-1,"/mol/owning/map/get":-2,"/mol/owning/check":-1,"/mol/owning/catch":-1,"/mol/owning/map/set":-2},"mol/delegate":{"..":-9007199254740991,"/mol/delegate":-1},"mol/fail/hidden":{"..":-9007199254740991,"/mol/fail/hidden":-1},"mol/fail":{"..":-9007199254740991,"/mol/fail":-1},"mol/type/writable":{"..":-9007199254740991,"/mol/type/writable":-1},"mol/type":{"..":-9007199254740991},"mol/deprecated":{"..":-9007199254740991,"/mol/deprecated":-1,"/mol/deprecated/wrapper":-3,"/mol/log3/warn":-5},"mol/env":{"..":-9007199254740991,"./env.ts":0,"/mol/env":-1},"mol/env/env.ts":{"/mol/env":-1},"mol/dom/render/children":{"..":-9007199254740991,"/mol/dom/render/children":-1,"/mol/dom/context":-3,"/mol/dom/context/document/create/text/node":-5},"mol/dom/render":{"..":-9007199254740991},"mol/type/partial/deep":{"..":-9007199254740991,"/mol/type/partial/deep":-1},"mol/type/partial":{"..":-9007199254740991},"mol/jsx/attach":{"..":-9007199254740991,"/mol/jsx/attach":-1,"/mol/jsx/document":-1},"mol/jsx/view":{"..":-9007199254740991,"/mol/jsx":0,"/mol/jsx/view":-1,"/mol/object2":-1,"/mol/jsx/document":-2,"/mol/mem":-2,"/mol/jsx/prefix":-3,"/mol/jsx/booked":-3,"/mol/fail":-3},"mol/mem":{"..":-9007199254740991,"/mol/mem":-1,"/mol/wire/mem":-1,"/mol/mem/key":-1,"/mol/mem/key2":-1,"/mol/mem/key3":-1},"mol/wire/mem":{"..":-9007199254740991,"/mol/wire/mem":-1,"/mol/wire/mem/func":-1,"/mol/wire/atom/getter":-3,"/mol/wire/fiber/warm":-5,"/mol/wire/auto":-5,"/mol/wire/task":-5},"mol/wire":{"..":-9007199254740991,"/mol/wire/sub":-1,"/mol/wire/auto":-1,"/mol/wire/affected":-1},"mol/wire/sub":{"..":-9007199254740991,"/mol/wire/sub":-1,"/mol/wire/pub":-1,"/mol/wire/cursor":-2},"mol/wire/pub":{"..":-9007199254740991,"/mol/wire/pub":-1,"/mol/wire/sub":-3,"/mol/fail":-4,"/mol/wire/auto":-3,"/mol/wire/cursor/stale":-2},"mol/wire/cursor":{"..":-9007199254740991,"/mol/wire/cursor":-1},"mol/wire/atom":{"..":-9007199254740991,"/mol/wire/atom":-1,"/mol/wire/fiber":-1,"/mol/wire/atom/get":-4,"/mol/key":-5,"/mol/wire/method":-2,"/mol/wire/cursor/fresh":-3,"/mol/fail/hidden":-5,"/mol/owning/check":-3,"/mol/owning/catch":-4,"/mol/compare/deep":-5},"mol/wire/fiber":{"..":-9007199254740991,"/mol/wire/fiber":-1,"/mol/wire/pub/sub":-1,"/mol/after/frame":-2,"/mol/wire/fiber/plan/task":-5,"/mol/wire/fiber/planning/add":-3,"/mol/wire/fiber/plan":-3,"/mol/wire/fiber/reaping/add":-3,"/mol/dev/format/head":-2,"/mol/dev/format/div":-3,"/mol/dev/format/native":-4,"/mol/dev/format/shade":-4,"/mol/dev/format/auto":-4,"/mol/wire/cursor/stale":-2,"/mol/wire/cursor/fresh":-3,"/mol/wire/cursor/final":-3,"/mol/wire/cursor/doubt":-3,"/mol/wire/pub":-5,"/mol/wire/fiber/warm":-3,"/mol/fail/hidden":-4},"mol/wire/pub/sub":{"..":-9007199254740991,"/mol/wire/pub/sub":-1,"/mol/wire/pub":-1,"/mol/wire/sub":-1,"/mol/wire/cursor/stale":-2,"/mol/wire/auto":-3,"/mol/fail":-3,"/mol/wire/cursor/fresh":-3,"/mol/wire/cursor/final":-3,"/mol/wire/cursor/doubt":-3,"/mol/dev/format/head":-2,"/mol/dev/format/native":-3},"mol/dev/format":{"..":-9007199254740991,"/mol/dev/format/register":-1,"/mol/dev/format/head":-1,"/mol/dev/format/body":-1,"/mol/dev/format/native":-1,"/mol/dev/format/shade":-1,"/mol/dev/format/auto":-1,"/mol/dev/format/element":-1,"/mol/dev/format/span":-1,"/mol/dev/format/div":-1,"/mol/dev/format/element/bind":-1,"/mol/dev/format/ol":-1,"/mol/dev/format/li":-1,"/mol/dev/format/table":-1,"/mol/dev/format/tr":-1,"/mol/dev/format/td":-1,"/mol/dev/format/accent":-1,"/mol/dev/format/span/bind":-1,"/mol/dev/format/strong":-1,"/mol/dev/format/string":-1,"/mol/dev/format/indent":-1,"/mol/dev/format/div/bind":-1},"mol/dev":{"..":-9007199254740991},"mol/after/frame":{"..":-9007199254740991,"./frame.ts":0,"/mol/after/frame":-1,"/mol/after/timeout":-1},"mol/after":{"..":-9007199254740991},"mol/after/timeout":{"..":-9007199254740991,"/mol/after/timeout":-1,"/mol/object2":-1},"mol/key":{"..":-9007199254740991,"/mol/key/store":-1,"/mol/key":-1,"/mol/key/store/get":-3,"/mol/guid":-3,"/mol/key/store/set":-3},"mol/guid":{"..":-9007199254740991,"/mol/guid":-1},"mol/wire/method":{"..":-9007199254740991,"/mol/wire/method":-1,"/mol/wire/task/getter":-2},"mol/wire/task":{"..":-9007199254740991,"/mol/wire/task":-1,"/mol/wire/fiber":-1,"/mol/wire/task/get":-3,"/mol/wire/auto":-4,"/mol/compare/deep":-5,"/mol/wire/cursor/fresh":-4,"/mol/wire/cursor/final":-3},"mol/compare/deep":{"..":-9007199254740991,"/mol/compare/deep/cache":-1,"/mol/compare/deep":-1,"/mol/compare/deep/cache/get":-2,"/mol/compare/deep/cache/set":-3},"mol/compare":{"..":-9007199254740991}}}
|