mol_dump_lib 0.0.3 → 0.0.5

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.view.tree CHANGED
@@ -214,8 +214,8 @@ $mol_expander $mol_list
214
214
  rows <= content /
215
215
 
216
216
  $mol_dump_value $mol_view
217
- value null
218
- preview_show true
217
+ value? null
218
+ preview_show? true
219
219
  sub /
220
220
  <= Simple $mol_text_code
221
221
  text <= simple \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_dump_lib",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.d.ts CHANGED
@@ -438,6 +438,7 @@ declare namespace $ {
438
438
  }
439
439
 
440
440
  declare namespace $ {
441
+ function $mol_style_attach_force(): HTMLStyleElement;
441
442
  function $mol_style_attach(id: string, text: string): HTMLStyleElement | null;
442
443
  }
443
444
 
@@ -1828,8 +1829,8 @@ declare namespace $ {
1828
1829
 
1829
1830
  declare namespace $ {
1830
1831
  class $mol_dump_value extends $mol_view {
1831
- value(): any;
1832
- preview_show(): boolean;
1832
+ value(next?: any): any;
1833
+ preview_show(next?: any): boolean;
1833
1834
  sub(): readonly any[];
1834
1835
  simple(): string;
1835
1836
  Simple(): $$.$mol_text_code;