mol_plot_all 1.2.740 → 1.2.742
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 +14 -12
- package/node.deps.json +1 -1
- package/node.js +71 -61
- package/node.js.map +1 -1
- package/node.mjs +71 -61
- package/node.test.js +71 -61
- package/node.test.js.map +1 -1
- package/package.json +3 -3
- package/web.d.ts +14 -12
- package/web.deps.json +1 -1
- package/web.js +71 -61
- package/web.js.map +1 -1
- package/web.mjs +71 -61
package/node.d.ts
CHANGED
|
@@ -532,10 +532,6 @@ declare namespace $ {
|
|
|
532
532
|
function $mol_wire_watch(): void;
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
-
declare namespace $ {
|
|
536
|
-
function $mol_wire_solid(): void;
|
|
537
|
-
}
|
|
538
|
-
|
|
539
535
|
declare namespace $ {
|
|
540
536
|
function $mol_const<Value>(value: Value): {
|
|
541
537
|
(): Value;
|
|
@@ -544,13 +540,13 @@ declare namespace $ {
|
|
|
544
540
|
}
|
|
545
541
|
|
|
546
542
|
declare namespace $ {
|
|
547
|
-
function $
|
|
548
|
-
[key: string]: string | number | boolean | null;
|
|
549
|
-
}): void;
|
|
543
|
+
function $mol_wire_solid(): void;
|
|
550
544
|
}
|
|
551
545
|
|
|
552
546
|
declare namespace $ {
|
|
553
|
-
function $
|
|
547
|
+
function $mol_dom_render_attributes(el: Element, attrs: {
|
|
548
|
+
[key: string]: string | number | boolean | null;
|
|
549
|
+
}): void;
|
|
554
550
|
}
|
|
555
551
|
|
|
556
552
|
declare namespace $ {
|
|
@@ -575,6 +571,10 @@ declare namespace $ {
|
|
|
575
571
|
}): void;
|
|
576
572
|
}
|
|
577
573
|
|
|
574
|
+
declare namespace $ {
|
|
575
|
+
function $mol_wire_async<Host extends object>(obj: Host): (Host extends (...args: infer Args) => infer Res ? Res extends Promise<any> ? Host : (...args: Args) => Promise<Res> : {}) & { [key in keyof Host]: Host[key] extends (...args: infer Args_1) => infer Res_1 ? Res_1 extends Promise<any> ? Host[key] : (...args: Args_1) => Promise<Res_1> : Host[key]; };
|
|
576
|
+
}
|
|
577
|
+
|
|
578
578
|
declare namespace $ {
|
|
579
579
|
type $mol_type_keys_extract<Input, Upper, Lower = never> = {
|
|
580
580
|
[Field in keyof Input]: unknown extends Input[Field] ? never : Input[Field] extends never ? never : Input[Field] extends Upper ? [
|
|
@@ -873,6 +873,7 @@ declare namespace $ {
|
|
|
873
873
|
bottom: number;
|
|
874
874
|
} | null;
|
|
875
875
|
dom_id(): string;
|
|
876
|
+
dom_node_external(next?: Element): Element;
|
|
876
877
|
dom_node(next?: Element): Element;
|
|
877
878
|
dom_final(): Element | undefined;
|
|
878
879
|
dom_tree(next?: Element): Element;
|
|
@@ -901,11 +902,15 @@ declare namespace $ {
|
|
|
901
902
|
event(): {
|
|
902
903
|
[key: string]: (event: Event) => void;
|
|
903
904
|
};
|
|
905
|
+
event_async(): {
|
|
906
|
+
[x: string]: (event: Event) => Promise<void>;
|
|
907
|
+
};
|
|
904
908
|
plugins(): readonly $mol_view[];
|
|
905
909
|
view_find(check: (path: $mol_view, text?: string) => boolean, path?: $mol_view[]): Generator<$mol_view[]>;
|
|
906
910
|
force_render(path: Set<$mol_view>): void;
|
|
907
911
|
ensure_visible(view: $mol_view, align?: ScrollLogicalPosition): void;
|
|
908
912
|
bring(): void;
|
|
913
|
+
destructor(): void;
|
|
909
914
|
}
|
|
910
915
|
type $mol_view_all = $mol_type_pick<$, typeof $mol_view>;
|
|
911
916
|
}
|
|
@@ -915,13 +920,10 @@ declare namespace $ {
|
|
|
915
920
|
|
|
916
921
|
declare namespace $ {
|
|
917
922
|
class $mol_plugin extends $mol_view {
|
|
918
|
-
|
|
923
|
+
dom_node_external(next?: Element): Element;
|
|
919
924
|
attr_static(): {
|
|
920
925
|
[key: string]: string | number | boolean;
|
|
921
926
|
};
|
|
922
|
-
event(): {
|
|
923
|
-
[key: string]: (event: Event) => void;
|
|
924
|
-
};
|
|
925
927
|
render(): void;
|
|
926
928
|
}
|
|
927
929
|
}
|