mol_plot_all 1.2.1200 → 1.2.1201
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 +3 -3
- package/node.js.map +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +3 -3
- package/web.js.map +1 -1
package/package.json
CHANGED
package/web.d.ts
CHANGED
|
@@ -738,7 +738,7 @@ declare namespace $ {
|
|
|
738
738
|
}
|
|
739
739
|
|
|
740
740
|
declare namespace $ {
|
|
741
|
-
type $mol_view_content = $mol_view | Node | string | number | boolean;
|
|
741
|
+
type $mol_view_content = $mol_view | Node | string | number | boolean | null;
|
|
742
742
|
function $mol_view_visible_width(): number;
|
|
743
743
|
function $mol_view_visible_height(): number;
|
|
744
744
|
function $mol_view_state_key(suffix: string): string;
|
|
@@ -752,8 +752,8 @@ declare namespace $ {
|
|
|
752
752
|
state_key(suffix?: string): string;
|
|
753
753
|
dom_name(): string;
|
|
754
754
|
dom_name_space(): string;
|
|
755
|
-
sub(): readonly
|
|
756
|
-
sub_visible(): readonly
|
|
755
|
+
sub(): readonly $mol_view_content[];
|
|
756
|
+
sub_visible(): readonly $mol_view_content[];
|
|
757
757
|
minimal_width(): number;
|
|
758
758
|
maximal_width(): number;
|
|
759
759
|
minimal_height(): number;
|