mol_dump_lib 0.0.382 → 0.0.384
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 +117 -116
- package/node.d.ts.map +1 -1
- package/node.js +1 -1
- package/node.js.map +1 -1
- package/node.mjs +1 -1
- package/node.test.js +2 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +117 -114
- package/web.d.ts.map +1 -1
- package/web.js +1 -1
- package/web.js.map +1 -1
- package/web.mjs +1 -1
- package/web.test.js +1 -1
- package/web.test.js.map +1 -1
package/package.json
CHANGED
package/web.d.ts
CHANGED
|
@@ -58,9 +58,9 @@ declare namespace $ {
|
|
|
58
58
|
|
|
59
59
|
declare namespace $ {
|
|
60
60
|
class $mol_object2 {
|
|
61
|
-
static $:
|
|
61
|
+
static $: $;
|
|
62
62
|
[Symbol.toStringTag]: string;
|
|
63
|
-
[$mol_ambient_ref]:
|
|
63
|
+
[$mol_ambient_ref]: $;
|
|
64
64
|
get $(): $;
|
|
65
65
|
set $(next: $);
|
|
66
66
|
static create<Instance>(this: new (init?: (instance: any) => void) => Instance, init?: (instance: $mol_type_writable<Instance>) => void): Instance;
|
|
@@ -126,7 +126,7 @@ declare namespace $ {
|
|
|
126
126
|
declare namespace $ {
|
|
127
127
|
let $mol_wire_auto_sub: $mol_wire_sub | null;
|
|
128
128
|
function $mol_wire_auto(next?: $mol_wire_sub | null): $mol_wire_sub | null;
|
|
129
|
-
const $mol_wire_affected: (
|
|
129
|
+
const $mol_wire_affected: ($mol_wire_sub | number)[];
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
declare namespace $ {
|
|
@@ -294,9 +294,9 @@ declare namespace $ {
|
|
|
294
294
|
declare namespace $ {
|
|
295
295
|
function $mol_wire_method<Host extends object, Args extends readonly any[]>(host: Host, field: PropertyKey, descr?: TypedPropertyDescriptor<(...args: Args) => any>): {
|
|
296
296
|
value: (this: Host, ...args: Args) => any;
|
|
297
|
-
enumerable?: boolean
|
|
298
|
-
configurable?: boolean
|
|
299
|
-
writable?: boolean
|
|
297
|
+
enumerable?: boolean;
|
|
298
|
+
configurable?: boolean;
|
|
299
|
+
writable?: boolean;
|
|
300
300
|
get?: (() => (...args: Args) => any) | undefined;
|
|
301
301
|
set?: ((value: (...args: Args) => any) => void) | undefined;
|
|
302
302
|
};
|
|
@@ -345,9 +345,9 @@ declare namespace $ {
|
|
|
345
345
|
declare namespace $ {
|
|
346
346
|
function $mol_wire_plex<Args extends [any, ...any[]]>(host: object, field: string, descr?: TypedPropertyDescriptor<(...args: Args) => any>): {
|
|
347
347
|
value: (this: typeof host, ...args: Args) => any;
|
|
348
|
-
enumerable?: boolean
|
|
349
|
-
configurable?: boolean
|
|
350
|
-
writable?: boolean
|
|
348
|
+
enumerable?: boolean;
|
|
349
|
+
configurable?: boolean;
|
|
350
|
+
writable?: boolean;
|
|
351
351
|
get?: (() => (...args: Args) => any) | undefined;
|
|
352
352
|
set?: ((value: (...args: Args) => any) => void) | undefined;
|
|
353
353
|
};
|
|
@@ -759,7 +759,7 @@ declare namespace $ {
|
|
|
759
759
|
state_key(suffix?: string): string;
|
|
760
760
|
dom_name(): string;
|
|
761
761
|
dom_name_space(): string;
|
|
762
|
-
sub(): readonly (
|
|
762
|
+
sub(): readonly ($mol_view | Node | string | number | boolean)[];
|
|
763
763
|
sub_visible(): readonly (string | number | boolean | $mol_view | Node)[];
|
|
764
764
|
minimal_width(): number;
|
|
765
765
|
maximal_width(): number;
|
|
@@ -786,7 +786,7 @@ declare namespace $ {
|
|
|
786
786
|
static view_names(suffix: string): string[];
|
|
787
787
|
view_names_owned(): string[];
|
|
788
788
|
view_names(): Set<string>;
|
|
789
|
-
theme(next?:
|
|
789
|
+
theme(next?: null | string): string | null;
|
|
790
790
|
attr_static(): {
|
|
791
791
|
[key: string]: string | number | boolean | null;
|
|
792
792
|
};
|
|
@@ -836,7 +836,7 @@ declare namespace $ {
|
|
|
836
836
|
function $mol_view_component(View: typeof $mol_view): {
|
|
837
837
|
new (): {
|
|
838
838
|
view: $mol_view;
|
|
839
|
-
root?: $mol_wire_sub | null
|
|
839
|
+
root?: $mol_wire_sub | null;
|
|
840
840
|
connectedCallback(): void;
|
|
841
841
|
disconnectedCallback(): void;
|
|
842
842
|
attributeChangedCallback(name: keyof any, prev: string, next: string): void;
|
|
@@ -864,11 +864,11 @@ declare namespace $ {
|
|
|
864
864
|
click(): void;
|
|
865
865
|
hidePopover(): void;
|
|
866
866
|
showPopover(): void;
|
|
867
|
-
togglePopover(force?: boolean
|
|
868
|
-
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions
|
|
869
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions
|
|
870
|
-
removeEventListener<
|
|
871
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions
|
|
867
|
+
togglePopover(force?: boolean): boolean;
|
|
868
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
869
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
870
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
871
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
872
872
|
readonly attributes: NamedNodeMap;
|
|
873
873
|
readonly classList: DOMTokenList;
|
|
874
874
|
className: string;
|
|
@@ -893,10 +893,10 @@ declare namespace $ {
|
|
|
893
893
|
slot: string;
|
|
894
894
|
readonly tagName: string;
|
|
895
895
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
896
|
-
checkVisibility(options?: CheckVisibilityOptions
|
|
897
|
-
closest<
|
|
898
|
-
closest<
|
|
899
|
-
closest<
|
|
896
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
897
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
898
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
899
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
900
900
|
closest<E extends Element = Element>(selectors: string): E | null;
|
|
901
901
|
computedStyleMap(): StylePropertyMapReadOnly;
|
|
902
902
|
getAttribute(qualifiedName: string): string | null;
|
|
@@ -907,10 +907,10 @@ declare namespace $ {
|
|
|
907
907
|
getBoundingClientRect(): DOMRect;
|
|
908
908
|
getClientRects(): DOMRectList;
|
|
909
909
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
910
|
-
getElementsByTagName<
|
|
911
|
-
getElementsByTagName<
|
|
912
|
-
getElementsByTagName<
|
|
913
|
-
getElementsByTagName<
|
|
910
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
911
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
912
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
913
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
914
914
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
915
915
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
916
916
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
@@ -928,21 +928,22 @@ declare namespace $ {
|
|
|
928
928
|
removeAttribute(qualifiedName: string): void;
|
|
929
929
|
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
930
930
|
removeAttributeNode(attr: Attr): Attr;
|
|
931
|
-
requestFullscreen(options?: FullscreenOptions
|
|
931
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
932
932
|
requestPointerLock(): void;
|
|
933
|
-
scroll(options?: ScrollToOptions
|
|
933
|
+
scroll(options?: ScrollToOptions): void;
|
|
934
934
|
scroll(x: number, y: number): void;
|
|
935
|
-
scrollBy(options?: ScrollToOptions
|
|
935
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
936
936
|
scrollBy(x: number, y: number): void;
|
|
937
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions
|
|
938
|
-
scrollTo(options?: ScrollToOptions
|
|
937
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
938
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
939
939
|
scrollTo(x: number, y: number): void;
|
|
940
940
|
setAttribute(qualifiedName: string, value: string): void;
|
|
941
941
|
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
942
942
|
setAttributeNode(attr: Attr): Attr | null;
|
|
943
943
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
944
|
+
setHTMLUnsafe(html: string): void;
|
|
944
945
|
setPointerCapture(pointerId: number): void;
|
|
945
|
-
toggleAttribute(qualifiedName: string, force?: boolean
|
|
946
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
946
947
|
webkitMatchesSelector(selectors: string): boolean;
|
|
947
948
|
readonly baseURI: string;
|
|
948
949
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
@@ -958,20 +959,20 @@ declare namespace $ {
|
|
|
958
959
|
readonly previousSibling: ChildNode | null;
|
|
959
960
|
textContent: string | null;
|
|
960
961
|
appendChild<T extends Node>(node: T): T;
|
|
961
|
-
cloneNode(deep?: boolean
|
|
962
|
+
cloneNode(deep?: boolean): Node;
|
|
962
963
|
compareDocumentPosition(other: Node): number;
|
|
963
964
|
contains(other: Node | null): boolean;
|
|
964
|
-
getRootNode(options?: GetRootNodeOptions
|
|
965
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
965
966
|
hasChildNodes(): boolean;
|
|
966
|
-
insertBefore<
|
|
967
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
967
968
|
isDefaultNamespace(namespace: string | null): boolean;
|
|
968
969
|
isEqualNode(otherNode: Node | null): boolean;
|
|
969
970
|
isSameNode(otherNode: Node | null): boolean;
|
|
970
971
|
lookupNamespaceURI(prefix: string | null): string | null;
|
|
971
972
|
lookupPrefix(namespace: string | null): string | null;
|
|
972
973
|
normalize(): void;
|
|
973
|
-
removeChild<
|
|
974
|
-
replaceChild<
|
|
974
|
+
removeChild<T extends Node>(child: T): T;
|
|
975
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
975
976
|
readonly ELEMENT_NODE: 1;
|
|
976
977
|
readonly ATTRIBUTE_NODE: 2;
|
|
977
978
|
readonly TEXT_NODE: 3;
|
|
@@ -993,6 +994,8 @@ declare namespace $ {
|
|
|
993
994
|
dispatchEvent(event: Event): boolean;
|
|
994
995
|
ariaAtomic: string | null;
|
|
995
996
|
ariaAutoComplete: string | null;
|
|
997
|
+
ariaBrailleLabel: string | null;
|
|
998
|
+
ariaBrailleRoleDescription: string | null;
|
|
996
999
|
ariaBusy: string | null;
|
|
997
1000
|
ariaChecked: string | null;
|
|
998
1001
|
ariaColCount: string | null;
|
|
@@ -1030,12 +1033,12 @@ declare namespace $ {
|
|
|
1030
1033
|
ariaValueNow: string | null;
|
|
1031
1034
|
ariaValueText: string | null;
|
|
1032
1035
|
role: string | null;
|
|
1033
|
-
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions
|
|
1034
|
-
getAnimations(options?: GetAnimationsOptions
|
|
1035
|
-
after(...nodes: (
|
|
1036
|
-
before(...nodes: (
|
|
1036
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
1037
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
1038
|
+
after(...nodes: (Node | string)[]): void;
|
|
1039
|
+
before(...nodes: (Node | string)[]): void;
|
|
1037
1040
|
remove(): void;
|
|
1038
|
-
replaceWith(...nodes: (
|
|
1041
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
1039
1042
|
innerHTML: string;
|
|
1040
1043
|
readonly nextElementSibling: Element | null;
|
|
1041
1044
|
readonly previousElementSibling: Element | null;
|
|
@@ -1043,19 +1046,19 @@ declare namespace $ {
|
|
|
1043
1046
|
readonly children: HTMLCollection;
|
|
1044
1047
|
readonly firstElementChild: Element | null;
|
|
1045
1048
|
readonly lastElementChild: Element | null;
|
|
1046
|
-
append(...nodes: (
|
|
1047
|
-
prepend(...nodes: (
|
|
1048
|
-
querySelector<
|
|
1049
|
-
querySelector<
|
|
1050
|
-
querySelector<
|
|
1051
|
-
querySelector<
|
|
1052
|
-
querySelector<
|
|
1053
|
-
querySelectorAll<
|
|
1054
|
-
querySelectorAll<
|
|
1055
|
-
querySelectorAll<
|
|
1056
|
-
querySelectorAll<
|
|
1057
|
-
querySelectorAll<
|
|
1058
|
-
replaceChildren(...nodes: (
|
|
1049
|
+
append(...nodes: (Node | string)[]): void;
|
|
1050
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
1051
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
1052
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
1053
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
1054
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
1055
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
1056
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
1057
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
1058
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
1059
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
1060
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
1061
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
1059
1062
|
readonly assignedSlot: HTMLSlotElement | null;
|
|
1060
1063
|
readonly attributeStyleMap: StylePropertyMap;
|
|
1061
1064
|
readonly style: CSSStyleDeclaration;
|
|
@@ -1126,7 +1129,7 @@ declare namespace $ {
|
|
|
1126
1129
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1127
1130
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1128
1131
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1129
|
-
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent
|
|
1132
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
1130
1133
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1131
1134
|
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1132
1135
|
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
@@ -1161,10 +1164,10 @@ declare namespace $ {
|
|
|
1161
1164
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
1162
1165
|
autofocus: boolean;
|
|
1163
1166
|
readonly dataset: DOMStringMap;
|
|
1164
|
-
nonce?: string
|
|
1167
|
+
nonce?: string;
|
|
1165
1168
|
tabIndex: number;
|
|
1166
1169
|
blur(): void;
|
|
1167
|
-
focus(options?: FocusOptions
|
|
1170
|
+
focus(options?: FocusOptions): void;
|
|
1168
1171
|
};
|
|
1169
1172
|
tag: string;
|
|
1170
1173
|
observedAttributes: Set<unknown>;
|
|
@@ -1315,12 +1318,12 @@ declare namespace $ {
|
|
|
1315
1318
|
|
|
1316
1319
|
declare namespace $ {
|
|
1317
1320
|
|
|
1318
|
-
type $
|
|
1321
|
+
type $mol_paragraph__sub__K3PAX2EI = $mol_type_enforce<
|
|
1319
1322
|
readonly(any)[]
|
|
1320
1323
|
,
|
|
1321
1324
|
ReturnType< $mol_paragraph['sub'] >
|
|
1322
1325
|
>
|
|
1323
|
-
type $
|
|
1326
|
+
type $mol_paragraph__sub__YSZ475FK = $mol_type_enforce<
|
|
1324
1327
|
readonly(any)[]
|
|
1325
1328
|
,
|
|
1326
1329
|
ReturnType< $mol_paragraph['sub'] >
|
|
@@ -1425,11 +1428,11 @@ declare namespace $ {
|
|
|
1425
1428
|
}> {
|
|
1426
1429
|
lexems: Lexems;
|
|
1427
1430
|
constructor(lexems: Lexems);
|
|
1428
|
-
rules: {
|
|
1431
|
+
rules: Array<{
|
|
1429
1432
|
regExp: RegExp;
|
|
1430
1433
|
name: string;
|
|
1431
1434
|
size: number;
|
|
1432
|
-
}
|
|
1435
|
+
}>;
|
|
1433
1436
|
regexp: RegExp;
|
|
1434
1437
|
tokenize(text: string, handle: (name: string, found: string, chunks: string[], offset: number) => void): void;
|
|
1435
1438
|
parse(text: string, handlers: {
|
|
@@ -1484,37 +1487,37 @@ declare namespace $ {
|
|
|
1484
1487
|
|
|
1485
1488
|
declare namespace $ {
|
|
1486
1489
|
|
|
1487
|
-
type $
|
|
1490
|
+
type $mol_view__sub__MWIDHMTY = $mol_type_enforce<
|
|
1488
1491
|
readonly(any)[]
|
|
1489
1492
|
,
|
|
1490
1493
|
ReturnType< $mol_view['sub'] >
|
|
1491
1494
|
>
|
|
1492
|
-
type $
|
|
1495
|
+
type $mol_text_code_token__type__LUGXCUP0 = $mol_type_enforce<
|
|
1493
1496
|
ReturnType< $mol_text_code_row['token_type'] >
|
|
1494
1497
|
,
|
|
1495
1498
|
ReturnType< $mol_text_code_token['type'] >
|
|
1496
1499
|
>
|
|
1497
|
-
type $
|
|
1500
|
+
type $mol_text_code_token__haystack__GVDYWBDD = $mol_type_enforce<
|
|
1498
1501
|
ReturnType< $mol_text_code_row['token_text'] >
|
|
1499
1502
|
,
|
|
1500
1503
|
ReturnType< $mol_text_code_token['haystack'] >
|
|
1501
1504
|
>
|
|
1502
|
-
type $
|
|
1505
|
+
type $mol_text_code_token__needle__OR7AKGTS = $mol_type_enforce<
|
|
1503
1506
|
ReturnType< $mol_text_code_row['highlight'] >
|
|
1504
1507
|
,
|
|
1505
1508
|
ReturnType< $mol_text_code_token['needle'] >
|
|
1506
1509
|
>
|
|
1507
|
-
type $
|
|
1510
|
+
type $mol_text_code_token_link__haystack__JS6398SR = $mol_type_enforce<
|
|
1508
1511
|
ReturnType< $mol_text_code_row['token_text'] >
|
|
1509
1512
|
,
|
|
1510
1513
|
ReturnType< $mol_text_code_token_link['haystack'] >
|
|
1511
1514
|
>
|
|
1512
|
-
type $
|
|
1515
|
+
type $mol_text_code_token_link__needle__S75H2F8L = $mol_type_enforce<
|
|
1513
1516
|
ReturnType< $mol_text_code_row['highlight'] >
|
|
1514
1517
|
,
|
|
1515
1518
|
ReturnType< $mol_text_code_token_link['needle'] >
|
|
1516
1519
|
>
|
|
1517
|
-
type $
|
|
1520
|
+
type $mol_text_code_token_link__uri__18FASPEH = $mol_type_enforce<
|
|
1518
1521
|
ReturnType< $mol_text_code_row['token_uri'] >
|
|
1519
1522
|
,
|
|
1520
1523
|
ReturnType< $mol_text_code_token_link['uri'] >
|
|
@@ -1560,11 +1563,11 @@ declare namespace $.$$ {
|
|
|
1560
1563
|
'code-tag': RegExp;
|
|
1561
1564
|
'code-punctuation': RegExp;
|
|
1562
1565
|
}>;
|
|
1563
|
-
tokens(path: number[]):
|
|
1566
|
+
tokens(path: number[]): Readonly<{
|
|
1564
1567
|
name: string;
|
|
1565
1568
|
found: string;
|
|
1566
1569
|
chunks: string[];
|
|
1567
|
-
}[]
|
|
1570
|
+
}[]>;
|
|
1568
1571
|
sub(): $mol_view[];
|
|
1569
1572
|
row_content(path: number[]): $mol_text_code_token[];
|
|
1570
1573
|
Token(path: number[]): $mol_text_code_token;
|
|
@@ -1620,14 +1623,14 @@ declare namespace $ {
|
|
|
1620
1623
|
|
|
1621
1624
|
declare namespace $ {
|
|
1622
1625
|
|
|
1623
|
-
type $
|
|
1626
|
+
type $mol_view__style__CUMX9XN7 = $mol_type_enforce<
|
|
1624
1627
|
({
|
|
1625
1628
|
'paddingTop': ReturnType< $mol_list['gap_before'] >,
|
|
1626
1629
|
})
|
|
1627
1630
|
,
|
|
1628
1631
|
ReturnType< $mol_view['style'] >
|
|
1629
1632
|
>
|
|
1630
|
-
type $
|
|
1633
|
+
type $mol_view__style__9I29L8WP = $mol_type_enforce<
|
|
1631
1634
|
({
|
|
1632
1635
|
'paddingTop': ReturnType< $mol_list['gap_after'] >,
|
|
1633
1636
|
})
|
|
@@ -1800,7 +1803,7 @@ declare namespace $ {
|
|
|
1800
1803
|
|
|
1801
1804
|
declare namespace $ {
|
|
1802
1805
|
|
|
1803
|
-
type $
|
|
1806
|
+
type $mol_speck__value__TMRPNIB6 = $mol_type_enforce<
|
|
1804
1807
|
ReturnType< $mol_button['error'] >
|
|
1805
1808
|
,
|
|
1806
1809
|
ReturnType< $mol_speck['value'] >
|
|
@@ -1880,8 +1883,8 @@ declare var $node: any;
|
|
|
1880
1883
|
declare namespace $ {
|
|
1881
1884
|
type $mol_blob = Blob;
|
|
1882
1885
|
let $mol_blob: {
|
|
1883
|
-
new (blobParts?: readonly BlobPart[], options?: BlobPropertyBag): Blob;
|
|
1884
1886
|
prototype: Blob;
|
|
1887
|
+
new (blobParts?: readonly BlobPart[], options?: BlobPropertyBag): Blob;
|
|
1885
1888
|
};
|
|
1886
1889
|
}
|
|
1887
1890
|
|
|
@@ -1949,7 +1952,7 @@ declare namespace $ {
|
|
|
1949
1952
|
|
|
1950
1953
|
declare namespace $ {
|
|
1951
1954
|
|
|
1952
|
-
type $
|
|
1955
|
+
type $mol_svg_path__geometry__V7YH6EQS = $mol_type_enforce<
|
|
1953
1956
|
ReturnType< $mol_icon['path'] >
|
|
1954
1957
|
,
|
|
1955
1958
|
ReturnType< $mol_svg_path['geometry'] >
|
|
@@ -2000,14 +2003,14 @@ declare namespace $ {
|
|
|
2000
2003
|
|
|
2001
2004
|
declare namespace $ {
|
|
2002
2005
|
|
|
2003
|
-
type $
|
|
2006
|
+
type $mol_blob__7RTLNT7Q = $mol_type_enforce<
|
|
2004
2007
|
[ readonly(BlobPart)[], ({
|
|
2005
2008
|
'type': string,
|
|
2006
2009
|
}) ]
|
|
2007
2010
|
,
|
|
2008
2011
|
ConstructorParameters< typeof $mol_blob >
|
|
2009
2012
|
>
|
|
2010
|
-
type $
|
|
2013
|
+
type $mol_blob__9SA5DN5M = $mol_type_enforce<
|
|
2011
2014
|
[ readonly(BlobPart)[], ({
|
|
2012
2015
|
'type': string,
|
|
2013
2016
|
}) ]
|
|
@@ -2198,52 +2201,52 @@ declare namespace $ {
|
|
|
2198
2201
|
|
|
2199
2202
|
declare namespace $ {
|
|
2200
2203
|
|
|
2201
|
-
type $
|
|
2204
|
+
type $mol_text_code_row__numb_showed__EUH24800 = $mol_type_enforce<
|
|
2202
2205
|
ReturnType< $mol_text_code['sidebar_showed'] >
|
|
2203
2206
|
,
|
|
2204
2207
|
ReturnType< $mol_text_code_row['numb_showed'] >
|
|
2205
2208
|
>
|
|
2206
|
-
type $
|
|
2209
|
+
type $mol_text_code_row__numb__27Q5CIM7 = $mol_type_enforce<
|
|
2207
2210
|
ReturnType< $mol_text_code['row_numb'] >
|
|
2208
2211
|
,
|
|
2209
2212
|
ReturnType< $mol_text_code_row['numb'] >
|
|
2210
2213
|
>
|
|
2211
|
-
type $
|
|
2214
|
+
type $mol_text_code_row__text__4H4S878V = $mol_type_enforce<
|
|
2212
2215
|
ReturnType< $mol_text_code['row_text'] >
|
|
2213
2216
|
,
|
|
2214
2217
|
ReturnType< $mol_text_code_row['text'] >
|
|
2215
2218
|
>
|
|
2216
|
-
type $
|
|
2219
|
+
type $mol_text_code_row__syntax__8OH2L6CU = $mol_type_enforce<
|
|
2217
2220
|
ReturnType< $mol_text_code['syntax'] >
|
|
2218
2221
|
,
|
|
2219
2222
|
ReturnType< $mol_text_code_row['syntax'] >
|
|
2220
2223
|
>
|
|
2221
|
-
type $
|
|
2224
|
+
type $mol_text_code_row__uri_resolve__JBT0TA2Z = $mol_type_enforce<
|
|
2222
2225
|
ReturnType< $mol_text_code['uri_resolve'] >
|
|
2223
2226
|
,
|
|
2224
2227
|
ReturnType< $mol_text_code_row['uri_resolve'] >
|
|
2225
2228
|
>
|
|
2226
|
-
type $
|
|
2229
|
+
type $mol_text_code_row__highlight__4BP44C51 = $mol_type_enforce<
|
|
2227
2230
|
ReturnType< $mol_text_code['highlight'] >
|
|
2228
2231
|
,
|
|
2229
2232
|
ReturnType< $mol_text_code_row['highlight'] >
|
|
2230
2233
|
>
|
|
2231
|
-
type $
|
|
2234
|
+
type $mol_list__render_visible_only__GDI0O16G = $mol_type_enforce<
|
|
2232
2235
|
ReturnType< $mol_text_code['render_visible_only'] >
|
|
2233
2236
|
,
|
|
2234
2237
|
ReturnType< $mol_list['render_visible_only'] >
|
|
2235
2238
|
>
|
|
2236
|
-
type $
|
|
2239
|
+
type $mol_list__rows__ISW5F51L = $mol_type_enforce<
|
|
2237
2240
|
ReturnType< $mol_text_code['rows'] >
|
|
2238
2241
|
,
|
|
2239
2242
|
ReturnType< $mol_list['rows'] >
|
|
2240
2243
|
>
|
|
2241
|
-
type $
|
|
2244
|
+
type $mol_button_copy__hint__8UZN8L3R = $mol_type_enforce<
|
|
2242
2245
|
string
|
|
2243
2246
|
,
|
|
2244
2247
|
ReturnType< $mol_button_copy['hint'] >
|
|
2245
2248
|
>
|
|
2246
|
-
type $
|
|
2249
|
+
type $mol_button_copy__text__YVNVOVF1 = $mol_type_enforce<
|
|
2247
2250
|
ReturnType< $mol_text_code['text_export'] >
|
|
2248
2251
|
,
|
|
2249
2252
|
ReturnType< $mol_button_copy['text'] >
|
|
@@ -2315,7 +2318,7 @@ declare namespace $ {
|
|
|
2315
2318
|
|
|
2316
2319
|
declare namespace $ {
|
|
2317
2320
|
|
|
2318
|
-
type $
|
|
2321
|
+
type $mol_view__sub__BZGYKABO = $mol_type_enforce<
|
|
2319
2322
|
readonly(any)[]
|
|
2320
2323
|
,
|
|
2321
2324
|
ReturnType< $mol_view['sub'] >
|
|
@@ -2387,22 +2390,22 @@ declare namespace $ {
|
|
|
2387
2390
|
|
|
2388
2391
|
declare namespace $ {
|
|
2389
2392
|
|
|
2390
|
-
type $
|
|
2393
|
+
type $mol_dump_value__value__TZSM8NYS = $mol_type_enforce<
|
|
2391
2394
|
ReturnType< $mol_dump_list['dump_value'] >
|
|
2392
2395
|
,
|
|
2393
2396
|
ReturnType< $mol_dump_value['value'] >
|
|
2394
2397
|
>
|
|
2395
|
-
type $
|
|
2398
|
+
type $mol_dump_value__expanded__P0CQWTVW = $mol_type_enforce<
|
|
2396
2399
|
ReturnType< $mol_dump_list['dump_expanded'] >
|
|
2397
2400
|
,
|
|
2398
2401
|
ReturnType< $mol_dump_value['expanded'] >
|
|
2399
2402
|
>
|
|
2400
|
-
type $
|
|
2403
|
+
type $mol_dump_value__prototypes__I54AV204 = $mol_type_enforce<
|
|
2401
2404
|
ReturnType< $mol_dump_list['prototypes'] >
|
|
2402
2405
|
,
|
|
2403
2406
|
ReturnType< $mol_dump_value['prototypes'] >
|
|
2404
2407
|
>
|
|
2405
|
-
type $
|
|
2408
|
+
type $mol_dump_value__preview_show__XN40HOA6 = $mol_type_enforce<
|
|
2406
2409
|
ReturnType< $mol_dump_list['preview_show'] >
|
|
2407
2410
|
,
|
|
2408
2411
|
ReturnType< $mol_dump_value['preview_show'] >
|
|
@@ -2433,27 +2436,27 @@ declare namespace $ {
|
|
|
2433
2436
|
|
|
2434
2437
|
declare namespace $ {
|
|
2435
2438
|
|
|
2436
|
-
type $
|
|
2439
|
+
type $mol_check_expand__checked__YF0RMSUO = $mol_type_enforce<
|
|
2437
2440
|
ReturnType< $mol_expander['expanded'] >
|
|
2438
2441
|
,
|
|
2439
2442
|
ReturnType< $mol_check_expand['checked'] >
|
|
2440
2443
|
>
|
|
2441
|
-
type $
|
|
2444
|
+
type $mol_check_expand__expandable__B11RN80F = $mol_type_enforce<
|
|
2442
2445
|
ReturnType< $mol_expander['expandable'] >
|
|
2443
2446
|
,
|
|
2444
2447
|
ReturnType< $mol_check_expand['expandable'] >
|
|
2445
2448
|
>
|
|
2446
|
-
type $
|
|
2449
|
+
type $mol_check_expand__label__J0GK5590 = $mol_type_enforce<
|
|
2447
2450
|
ReturnType< $mol_expander['label'] >
|
|
2448
2451
|
,
|
|
2449
2452
|
ReturnType< $mol_check_expand['label'] >
|
|
2450
2453
|
>
|
|
2451
|
-
type $
|
|
2454
|
+
type $mol_view__sub__UHRR21B1 = $mol_type_enforce<
|
|
2452
2455
|
readonly(any)[]
|
|
2453
2456
|
,
|
|
2454
2457
|
ReturnType< $mol_view['sub'] >
|
|
2455
2458
|
>
|
|
2456
|
-
type $
|
|
2459
|
+
type $mol_list__rows__YVS0C5J3 = $mol_type_enforce<
|
|
2457
2460
|
ReturnType< $mol_expander['content'] >
|
|
2458
2461
|
,
|
|
2459
2462
|
ReturnType< $mol_list['rows'] >
|
|
@@ -2489,87 +2492,87 @@ declare namespace $ {
|
|
|
2489
2492
|
|
|
2490
2493
|
declare namespace $ {
|
|
2491
2494
|
|
|
2492
|
-
type $
|
|
2495
|
+
type $mol_text_code__text__VJ204M2N = $mol_type_enforce<
|
|
2493
2496
|
ReturnType< $mol_dump_value['simple'] >
|
|
2494
2497
|
,
|
|
2495
2498
|
ReturnType< $mol_text_code['text'] >
|
|
2496
2499
|
>
|
|
2497
|
-
type $
|
|
2500
|
+
type $mol_text_code__text__3FNXEOA1 = $mol_type_enforce<
|
|
2498
2501
|
ReturnType< $mol_dump_value['expand_title'] >
|
|
2499
2502
|
,
|
|
2500
2503
|
ReturnType< $mol_text_code['text'] >
|
|
2501
2504
|
>
|
|
2502
|
-
type $
|
|
2505
|
+
type $mol_check_expand__minimal_height__PV4YJ6H0 = $mol_type_enforce<
|
|
2503
2506
|
number
|
|
2504
2507
|
,
|
|
2505
2508
|
ReturnType< $mol_check_expand['minimal_height'] >
|
|
2506
2509
|
>
|
|
2507
|
-
type $
|
|
2510
|
+
type $mol_check_expand__minimal_width__E0MARXRO = $mol_type_enforce<
|
|
2508
2511
|
number
|
|
2509
2512
|
,
|
|
2510
2513
|
ReturnType< $mol_check_expand['minimal_width'] >
|
|
2511
2514
|
>
|
|
2512
|
-
type $
|
|
2515
|
+
type $mol_check_expand__expanded__T1RE8MD9 = $mol_type_enforce<
|
|
2513
2516
|
ReturnType< $mol_dump_value['expanded'] >
|
|
2514
2517
|
,
|
|
2515
2518
|
ReturnType< $mol_check_expand['expanded'] >
|
|
2516
2519
|
>
|
|
2517
|
-
type $
|
|
2520
|
+
type $mol_check_expand__expandable__VMX0UJPO = $mol_type_enforce<
|
|
2518
2521
|
ReturnType< $mol_dump_value['expandable'] >
|
|
2519
2522
|
,
|
|
2520
2523
|
ReturnType< $mol_check_expand['expandable'] >
|
|
2521
2524
|
>
|
|
2522
|
-
type $
|
|
2525
|
+
type $mol_check_expand__clicks__ENLJ9D9P = $mol_type_enforce<
|
|
2523
2526
|
ReturnType< $mol_dump_value['expand_all'] >
|
|
2524
2527
|
,
|
|
2525
2528
|
ReturnType< $mol_check_expand['clicks'] >
|
|
2526
2529
|
>
|
|
2527
|
-
type $
|
|
2530
|
+
type $mol_check_expand__label__8TXH9P9E = $mol_type_enforce<
|
|
2528
2531
|
readonly(any)[]
|
|
2529
2532
|
,
|
|
2530
2533
|
ReturnType< $mol_check_expand['label'] >
|
|
2531
2534
|
>
|
|
2532
|
-
type $
|
|
2535
|
+
type $mol_view__dom_node__L8EIP79J = $mol_type_enforce<
|
|
2533
2536
|
ReturnType< $mol_dump_value['preview_dom'] >
|
|
2534
2537
|
,
|
|
2535
2538
|
ReturnType< $mol_view['dom_node'] >
|
|
2536
2539
|
>
|
|
2537
|
-
type $
|
|
2540
|
+
type $mol_view__render__L2QMX4DP = $mol_type_enforce<
|
|
2538
2541
|
ReturnType< $mol_dump_value['preview'] >
|
|
2539
2542
|
,
|
|
2540
2543
|
ReturnType< $mol_view['render'] >
|
|
2541
2544
|
>
|
|
2542
|
-
type $
|
|
2545
|
+
type $mol_view__sub__2IHSOXWR = $mol_type_enforce<
|
|
2543
2546
|
readonly(any)[]
|
|
2544
2547
|
,
|
|
2545
2548
|
ReturnType< $mol_view['sub'] >
|
|
2546
2549
|
>
|
|
2547
|
-
type $
|
|
2550
|
+
type $mol_dump_list__values__QASFECR0 = $mol_type_enforce<
|
|
2548
2551
|
ReturnType< $mol_dump_value['row_values'] >
|
|
2549
2552
|
,
|
|
2550
2553
|
ReturnType< $mol_dump_list['values'] >
|
|
2551
2554
|
>
|
|
2552
|
-
type $
|
|
2555
|
+
type $mol_dump_list__prototypes__C494HC3G = $mol_type_enforce<
|
|
2553
2556
|
ReturnType< $mol_dump_value['prototypes'] >
|
|
2554
2557
|
,
|
|
2555
2558
|
ReturnType< $mol_dump_list['prototypes'] >
|
|
2556
2559
|
>
|
|
2557
|
-
type $
|
|
2560
|
+
type $mol_dump_list__preview_show__FGLGHQTY = $mol_type_enforce<
|
|
2558
2561
|
ReturnType< $mol_dump_value['preview_show'] >
|
|
2559
2562
|
,
|
|
2560
2563
|
ReturnType< $mol_dump_list['preview_show'] >
|
|
2561
2564
|
>
|
|
2562
|
-
type $
|
|
2565
|
+
type $mol_expander__expanded__4ZCUSGO5 = $mol_type_enforce<
|
|
2563
2566
|
ReturnType< $mol_dump_value['expanded'] >
|
|
2564
2567
|
,
|
|
2565
2568
|
ReturnType< $mol_expander['expanded'] >
|
|
2566
2569
|
>
|
|
2567
|
-
type $
|
|
2570
|
+
type $mol_expander__Trigger__AVNKHUH0 = $mol_type_enforce<
|
|
2568
2571
|
ReturnType< $mol_dump_value['Expand_head'] >
|
|
2569
2572
|
,
|
|
2570
2573
|
ReturnType< $mol_expander['Trigger'] >
|
|
2571
2574
|
>
|
|
2572
|
-
type $
|
|
2575
|
+
type $mol_expander__content__EXVC0UKJ = $mol_type_enforce<
|
|
2573
2576
|
ReturnType< $mol_dump_value['expand_content'] >
|
|
2574
2577
|
,
|
|
2575
2578
|
ReturnType< $mol_expander['content'] >
|