mol_dump_lib 0.0.249 → 0.0.251
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 +617 -239
- package/node.d.ts.map +1 -0
- package/node.deps.json +1 -1
- package/node.js +995 -1202
- package/node.js.map +1 -1
- package/node.mjs +995 -1202
- package/node.test.js +1528 -2606
- package/node.test.js.map +1 -1
- package/node.view.tree +9 -9
- package/package.json +2 -1
- package/web.d.ts +613 -239
- package/web.d.ts.map +1 -0
- package/web.deps.json +1 -1
- package/web.js +972 -1180
- package/web.js.map +1 -1
- package/web.mjs +972 -1180
- package/web.test.js +283 -1154
- package/web.test.js.map +1 -1
- package/web.view.tree +9 -9
package/web.d.ts
CHANGED
|
@@ -491,7 +491,7 @@ declare namespace $ {
|
|
|
491
491
|
type $mol_style_unit_angle = 'deg' | 'rad' | 'grad' | 'turn';
|
|
492
492
|
type $mol_style_unit_time = 's' | 'ms';
|
|
493
493
|
type $mol_style_unit_any = $mol_style_unit_length | $mol_style_unit_angle | $mol_style_unit_time;
|
|
494
|
-
type $mol_style_unit_str<Quanity extends $mol_style_unit_any> = `${number}${Quanity}`;
|
|
494
|
+
type $mol_style_unit_str<Quanity extends $mol_style_unit_any = $mol_style_unit_any> = `${number}${Quanity}`;
|
|
495
495
|
class $mol_style_unit<Literal extends $mol_style_unit_any> extends $mol_decor<number> {
|
|
496
496
|
readonly literal: Literal;
|
|
497
497
|
constructor(value: number, literal: Literal);
|
|
@@ -616,9 +616,9 @@ declare namespace $ {
|
|
|
616
616
|
all?: Common;
|
|
617
617
|
animation?: {
|
|
618
618
|
composition?: Single_animation_composition | Single_animation_composition[][] | Common;
|
|
619
|
-
delay?: $
|
|
619
|
+
delay?: $mol_style_unit_str<$mol_style_unit_time> | $mol_style_unit_str<$mol_style_unit_time>[][] | Common;
|
|
620
620
|
direction?: Single_animation_direction | Single_animation_direction[][] | Common;
|
|
621
|
-
duration?: $
|
|
621
|
+
duration?: $mol_style_unit_str<$mol_style_unit_time> | $mol_style_unit_str<$mol_style_unit_time>[][] | Common;
|
|
622
622
|
fillMode?: Single_animation_fill_mode | Single_animation_fill_mode[][] | Common;
|
|
623
623
|
iterationCount?: Single_animation_iteration_count | Single_animation_iteration_count[][] | Common;
|
|
624
624
|
name?: 'none' | string & {} | ('none' | string & {})[][] | Common;
|
|
@@ -1155,23 +1155,29 @@ declare namespace $ {
|
|
|
1155
1155
|
}
|
|
1156
1156
|
|
|
1157
1157
|
declare namespace $ {
|
|
1158
|
-
|
|
1159
|
-
|
|
1158
|
+
|
|
1159
|
+
export class $mol_stack extends $mol_view {
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1160
1162
|
}
|
|
1161
1163
|
|
|
1164
|
+
//# sourceMappingURL=stack.view.tree.d.ts.map
|
|
1162
1165
|
declare namespace $ {
|
|
1163
1166
|
}
|
|
1164
1167
|
|
|
1165
1168
|
declare namespace $ {
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1169
|
+
|
|
1170
|
+
export class $mol_paragraph extends $mol_view {
|
|
1171
|
+
line_height( ): number
|
|
1172
|
+
letter_width( ): number
|
|
1173
|
+
width_limit( ): number
|
|
1174
|
+
row_width( ): number
|
|
1175
|
+
sub( ): readonly(any)[]
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1173
1178
|
}
|
|
1174
1179
|
|
|
1180
|
+
//# sourceMappingURL=paragraph.view.tree.d.ts.map
|
|
1175
1181
|
declare namespace $.$$ {
|
|
1176
1182
|
class $mol_paragraph extends $.$mol_paragraph {
|
|
1177
1183
|
maximal_width(): number;
|
|
@@ -1186,17 +1192,34 @@ declare namespace $ {
|
|
|
1186
1192
|
}
|
|
1187
1193
|
|
|
1188
1194
|
declare namespace $ {
|
|
1189
|
-
|
|
1190
|
-
haystack(): string;
|
|
1191
|
-
needle(): string;
|
|
1192
|
-
sub(): readonly $mol_view_content[];
|
|
1193
|
-
Low(id: any): $$.$mol_paragraph;
|
|
1194
|
-
High(id: any): $$.$mol_paragraph;
|
|
1195
|
-
parts(): readonly $mol_view_content[];
|
|
1196
|
-
string(id: any): string;
|
|
1197
|
-
}
|
|
1195
|
+
type $mol_type_enforce<Actual extends Expected, Expected> = Actual;
|
|
1198
1196
|
}
|
|
1199
1197
|
|
|
1198
|
+
declare namespace $ {
|
|
1199
|
+
|
|
1200
|
+
type $mol_paragraph__sub__B3YTO318 = $mol_type_enforce<
|
|
1201
|
+
readonly(any)[]
|
|
1202
|
+
,
|
|
1203
|
+
ReturnType< $mol_paragraph['sub'] >
|
|
1204
|
+
>
|
|
1205
|
+
type $mol_paragraph__sub__HXMMCGEZ = $mol_type_enforce<
|
|
1206
|
+
readonly(any)[]
|
|
1207
|
+
,
|
|
1208
|
+
ReturnType< $mol_paragraph['sub'] >
|
|
1209
|
+
>
|
|
1210
|
+
export class $mol_dimmer extends $mol_paragraph {
|
|
1211
|
+
haystack( ): string
|
|
1212
|
+
needle( ): string
|
|
1213
|
+
sub( ): ReturnType< $mol_dimmer['parts'] >
|
|
1214
|
+
Low( id: any): $mol_paragraph
|
|
1215
|
+
High( id: any): $mol_paragraph
|
|
1216
|
+
parts( ): readonly($mol_view_content)[]
|
|
1217
|
+
string( id: any): string
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
//# sourceMappingURL=dimmer.view.tree.d.ts.map
|
|
1200
1223
|
declare namespace $ {
|
|
1201
1224
|
type $mol_type_equals<A, B> = (<X>() => X extends A ? 1 : 2) extends (<X>() => X extends B ? 1 : 2) ? unknown : never;
|
|
1202
1225
|
}
|
|
@@ -1309,18 +1332,27 @@ declare namespace $ {
|
|
|
1309
1332
|
}
|
|
1310
1333
|
|
|
1311
1334
|
declare namespace $ {
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1335
|
+
|
|
1336
|
+
export class $mol_text_code_token extends $mol_dimmer {
|
|
1337
|
+
attr( ): ({
|
|
1338
|
+
'mol_text_code_token_type': ReturnType< $mol_text_code_token['type'] >,
|
|
1339
|
+
}) & ReturnType< $mol_dimmer['attr'] >
|
|
1340
|
+
type( ): string
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
export class $mol_text_code_token_link extends $mol_text_code_token {
|
|
1344
|
+
dom_name( ): string
|
|
1345
|
+
type( ): string
|
|
1346
|
+
attr( ): ({
|
|
1347
|
+
'href': ReturnType< $mol_text_code_token_link['uri'] >,
|
|
1348
|
+
'target': string,
|
|
1349
|
+
}) & ReturnType< $mol_text_code_token['attr'] >
|
|
1350
|
+
uri( ): string
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1322
1353
|
}
|
|
1323
1354
|
|
|
1355
|
+
//# sourceMappingURL=token.view.tree.d.ts.map
|
|
1324
1356
|
declare namespace $ {
|
|
1325
1357
|
type $mol_style_pseudo_class = ':active' | ':any' | ':any-link' | ':checked' | ':default' | ':defined' | ':dir(rtl)' | ':dir(ltr)' | ':disabled' | ':empty' | ':enabled' | ':first' | ':first-child' | ':first-of-type' | ':fullscreen' | ':focus' | ':focus-visible' | ':focus-within' | ':hover' | ':indeterminate' | ':in-range' | ':invalid' | ':last-child' | ':last-of-type' | ':left' | ':link' | ':not()' | ':nth-child(even)' | ':nth-child(odd)' | ':nth-last-child(even)' | ':nth-last-child(odd)' | ':nth-of-type(even)' | ':nth-of-type(odd)' | ':nth-last-of-type(even)' | ':nth-last-of-type(odd)' | ':only-child' | ':only-of-type' | ':optional' | ':out-of-range' | ':placeholder-shown' | ':read-only' | ':read-write' | ':required' | ':right' | ':root' | ':scope' | ':target' | ':valid' | ':visited';
|
|
1326
1358
|
}
|
|
@@ -1369,24 +1401,62 @@ declare namespace $.$$ {
|
|
|
1369
1401
|
}
|
|
1370
1402
|
|
|
1371
1403
|
declare namespace $ {
|
|
1372
|
-
class $mol_text_code_row extends $mol_paragraph {
|
|
1373
|
-
text(): string;
|
|
1374
|
-
minimal_height(): number;
|
|
1375
|
-
numb_showed(): boolean;
|
|
1376
|
-
syntax(): any;
|
|
1377
|
-
uri_resolve(id: any): string;
|
|
1378
|
-
Numb(): $mol_view;
|
|
1379
|
-
Token(id: any): $mol_text_code_token;
|
|
1380
|
-
Token_link(id: any): $mol_text_code_token_link;
|
|
1381
|
-
find_pos(id: any): any;
|
|
1382
|
-
numb(): number;
|
|
1383
|
-
token_type(id: any): string;
|
|
1384
|
-
token_text(id: any): string;
|
|
1385
|
-
highlight(): string;
|
|
1386
|
-
token_uri(id: any): string;
|
|
1387
|
-
}
|
|
1388
|
-
}
|
|
1389
1404
|
|
|
1405
|
+
type $mol_view__sub__XFXHAFFB = $mol_type_enforce<
|
|
1406
|
+
readonly(any)[]
|
|
1407
|
+
,
|
|
1408
|
+
ReturnType< $mol_view['sub'] >
|
|
1409
|
+
>
|
|
1410
|
+
type $mol_text_code_token__type__XM5UO9OB = $mol_type_enforce<
|
|
1411
|
+
ReturnType< $mol_text_code_row['token_type'] >
|
|
1412
|
+
,
|
|
1413
|
+
ReturnType< $mol_text_code_token['type'] >
|
|
1414
|
+
>
|
|
1415
|
+
type $mol_text_code_token__haystack__KOPTAD57 = $mol_type_enforce<
|
|
1416
|
+
ReturnType< $mol_text_code_row['token_text'] >
|
|
1417
|
+
,
|
|
1418
|
+
ReturnType< $mol_text_code_token['haystack'] >
|
|
1419
|
+
>
|
|
1420
|
+
type $mol_text_code_token__needle__4ANGXPBE = $mol_type_enforce<
|
|
1421
|
+
ReturnType< $mol_text_code_row['highlight'] >
|
|
1422
|
+
,
|
|
1423
|
+
ReturnType< $mol_text_code_token['needle'] >
|
|
1424
|
+
>
|
|
1425
|
+
type $mol_text_code_token_link__haystack__3Y5ZQ09F = $mol_type_enforce<
|
|
1426
|
+
ReturnType< $mol_text_code_row['token_text'] >
|
|
1427
|
+
,
|
|
1428
|
+
ReturnType< $mol_text_code_token_link['haystack'] >
|
|
1429
|
+
>
|
|
1430
|
+
type $mol_text_code_token_link__needle__B5FO90DK = $mol_type_enforce<
|
|
1431
|
+
ReturnType< $mol_text_code_row['highlight'] >
|
|
1432
|
+
,
|
|
1433
|
+
ReturnType< $mol_text_code_token_link['needle'] >
|
|
1434
|
+
>
|
|
1435
|
+
type $mol_text_code_token_link__uri__4M0KCYSF = $mol_type_enforce<
|
|
1436
|
+
ReturnType< $mol_text_code_row['token_uri'] >
|
|
1437
|
+
,
|
|
1438
|
+
ReturnType< $mol_text_code_token_link['uri'] >
|
|
1439
|
+
>
|
|
1440
|
+
export class $mol_text_code_row extends $mol_paragraph {
|
|
1441
|
+
text( ): string
|
|
1442
|
+
minimal_height( ): number
|
|
1443
|
+
numb_showed( ): boolean
|
|
1444
|
+
syntax( ): any
|
|
1445
|
+
uri_resolve( id: any): string
|
|
1446
|
+
Numb( ): $mol_view
|
|
1447
|
+
Token( id: any): $mol_text_code_token
|
|
1448
|
+
Token_link( id: any): $mol_text_code_token_link
|
|
1449
|
+
find_pos( id: any): any
|
|
1450
|
+
numb( ): number
|
|
1451
|
+
token_type( id: any): string
|
|
1452
|
+
token_text( id: any): string
|
|
1453
|
+
highlight( ): string
|
|
1454
|
+
token_uri( id: any): string
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
//# sourceMappingURL=row.view.tree.d.ts.map
|
|
1390
1460
|
declare namespace $ {
|
|
1391
1461
|
class $mol_syntax2<Lexems extends {
|
|
1392
1462
|
[name: string]: RegExp;
|
|
@@ -1499,20 +1569,37 @@ declare namespace $.$$ {
|
|
|
1499
1569
|
}
|
|
1500
1570
|
|
|
1501
1571
|
declare namespace $ {
|
|
1502
|
-
class $mol_list extends $mol_view {
|
|
1503
|
-
render_visible_only(): boolean;
|
|
1504
|
-
render_over(): number;
|
|
1505
|
-
sub(): readonly $mol_view[];
|
|
1506
|
-
Empty(): $mol_view;
|
|
1507
|
-
Gap_before(): $mol_view;
|
|
1508
|
-
Gap_after(): $mol_view;
|
|
1509
|
-
view_window(): readonly any[];
|
|
1510
|
-
rows(): readonly $mol_view[];
|
|
1511
|
-
gap_before(): number;
|
|
1512
|
-
gap_after(): number;
|
|
1513
|
-
}
|
|
1514
|
-
}
|
|
1515
1572
|
|
|
1573
|
+
type $mol_view__style__3J6LXUPO = $mol_type_enforce<
|
|
1574
|
+
({
|
|
1575
|
+
'paddingTop': ReturnType< $mol_list['gap_before'] >,
|
|
1576
|
+
})
|
|
1577
|
+
,
|
|
1578
|
+
ReturnType< $mol_view['style'] >
|
|
1579
|
+
>
|
|
1580
|
+
type $mol_view__style__81A1Q01B = $mol_type_enforce<
|
|
1581
|
+
({
|
|
1582
|
+
'paddingTop': ReturnType< $mol_list['gap_after'] >,
|
|
1583
|
+
})
|
|
1584
|
+
,
|
|
1585
|
+
ReturnType< $mol_view['style'] >
|
|
1586
|
+
>
|
|
1587
|
+
export class $mol_list extends $mol_view {
|
|
1588
|
+
render_visible_only( ): boolean
|
|
1589
|
+
render_over( ): number
|
|
1590
|
+
sub( ): ReturnType< $mol_list['rows'] >
|
|
1591
|
+
Empty( ): $mol_view
|
|
1592
|
+
Gap_before( ): $mol_view
|
|
1593
|
+
Gap_after( ): $mol_view
|
|
1594
|
+
view_window( ): readonly(any)[]
|
|
1595
|
+
rows( ): readonly($mol_view)[]
|
|
1596
|
+
gap_before( ): number
|
|
1597
|
+
gap_after( ): number
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
//# sourceMappingURL=list.view.tree.d.ts.map
|
|
1516
1603
|
declare namespace $ {
|
|
1517
1604
|
function $mol_support_css_overflow_anchor(this: $): boolean;
|
|
1518
1605
|
}
|
|
@@ -1561,15 +1648,22 @@ declare namespace $ {
|
|
|
1561
1648
|
}
|
|
1562
1649
|
|
|
1563
1650
|
declare namespace $ {
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1651
|
+
|
|
1652
|
+
export class $mol_speck extends $mol_view {
|
|
1653
|
+
attr( ): ({
|
|
1654
|
+
'mol_theme': ReturnType< $mol_speck['theme'] >,
|
|
1655
|
+
}) & ReturnType< $mol_view['attr'] >
|
|
1656
|
+
style( ): ({
|
|
1657
|
+
'minHeight': string,
|
|
1658
|
+
}) & ReturnType< $mol_view['style'] >
|
|
1659
|
+
sub( ): readonly(any)[]
|
|
1660
|
+
theme( ): string
|
|
1661
|
+
value( ): any
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1571
1664
|
}
|
|
1572
1665
|
|
|
1666
|
+
//# sourceMappingURL=speck.view.tree.d.ts.map
|
|
1573
1667
|
declare namespace $ {
|
|
1574
1668
|
let $mol_layer: $mol_style_prop_result;
|
|
1575
1669
|
}
|
|
@@ -1581,25 +1675,42 @@ declare namespace $ {
|
|
|
1581
1675
|
}
|
|
1582
1676
|
|
|
1583
1677
|
declare namespace $ {
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1678
|
+
|
|
1679
|
+
type $mol_speck__value__GJHMURXN = $mol_type_enforce<
|
|
1680
|
+
ReturnType< $mol_button['error'] >
|
|
1681
|
+
,
|
|
1682
|
+
ReturnType< $mol_speck['value'] >
|
|
1683
|
+
>
|
|
1684
|
+
export class $mol_button extends $mol_view {
|
|
1685
|
+
enabled( ): boolean
|
|
1686
|
+
click( next?: any ): any
|
|
1687
|
+
event_click( next?: any ): any
|
|
1688
|
+
event( ): ({
|
|
1689
|
+
click( next?: ReturnType< $mol_button['event_activate'] > ): ReturnType< $mol_button['event_activate'] >,
|
|
1690
|
+
dblclick( next?: ReturnType< $mol_button['clicks'] > ): ReturnType< $mol_button['clicks'] >,
|
|
1691
|
+
keydown( next?: ReturnType< $mol_button['event_key_press'] > ): ReturnType< $mol_button['event_key_press'] >,
|
|
1692
|
+
}) & ReturnType< $mol_view['event'] >
|
|
1693
|
+
attr( ): ({
|
|
1694
|
+
'disabled': ReturnType< $mol_button['disabled'] >,
|
|
1695
|
+
'role': string,
|
|
1696
|
+
'tabindex': ReturnType< $mol_button['tab_index'] >,
|
|
1697
|
+
'title': ReturnType< $mol_button['hint_safe'] >,
|
|
1698
|
+
}) & ReturnType< $mol_view['attr'] >
|
|
1699
|
+
sub( ): readonly($mol_view_content)[]
|
|
1700
|
+
Speck( ): $mol_speck
|
|
1701
|
+
event_activate( next?: any ): any
|
|
1702
|
+
clicks( next?: any ): any
|
|
1703
|
+
event_key_press( next?: any ): any
|
|
1704
|
+
disabled( ): boolean
|
|
1705
|
+
tab_index( ): number
|
|
1706
|
+
hint( ): string
|
|
1707
|
+
hint_safe( ): ReturnType< $mol_button['hint'] >
|
|
1708
|
+
error( ): string
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1601
1711
|
}
|
|
1602
1712
|
|
|
1713
|
+
//# sourceMappingURL=button.view.tree.d.ts.map
|
|
1603
1714
|
declare namespace $ {
|
|
1604
1715
|
enum $mol_keyboard_code {
|
|
1605
1716
|
backspace = 8,
|
|
@@ -1722,20 +1833,26 @@ declare namespace $ {
|
|
|
1722
1833
|
}
|
|
1723
1834
|
|
|
1724
1835
|
declare namespace $ {
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1836
|
+
|
|
1837
|
+
export class $mol_button_typed extends $mol_button {
|
|
1838
|
+
minimal_height( ): number
|
|
1839
|
+
minimal_width( ): number
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1729
1842
|
}
|
|
1730
1843
|
|
|
1844
|
+
//# sourceMappingURL=typed.view.tree.d.ts.map
|
|
1731
1845
|
declare namespace $ {
|
|
1732
1846
|
}
|
|
1733
1847
|
|
|
1734
1848
|
declare namespace $ {
|
|
1735
|
-
|
|
1736
|
-
|
|
1849
|
+
|
|
1850
|
+
export class $mol_button_minor extends $mol_button_typed {
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1737
1853
|
}
|
|
1738
1854
|
|
|
1855
|
+
//# sourceMappingURL=minor.view.tree.d.ts.map
|
|
1739
1856
|
declare namespace $ {
|
|
1740
1857
|
}
|
|
1741
1858
|
|
|
@@ -1750,15 +1867,18 @@ declare namespace $ {
|
|
|
1750
1867
|
}
|
|
1751
1868
|
|
|
1752
1869
|
declare namespace $ {
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1870
|
+
|
|
1871
|
+
export class $mol_svg extends $mol_view {
|
|
1872
|
+
dom_name( ): string
|
|
1873
|
+
dom_name_space( ): string
|
|
1874
|
+
font_size( ): number
|
|
1875
|
+
font_family( ): string
|
|
1876
|
+
style_size( ): Record<string, any>
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1760
1879
|
}
|
|
1761
1880
|
|
|
1881
|
+
//# sourceMappingURL=svg.view.tree.d.ts.map
|
|
1762
1882
|
declare namespace $ {
|
|
1763
1883
|
class $mol_after_timeout extends $mol_object2 {
|
|
1764
1884
|
delay: number;
|
|
@@ -1785,65 +1905,107 @@ declare namespace $.$$ {
|
|
|
1785
1905
|
}
|
|
1786
1906
|
|
|
1787
1907
|
declare namespace $ {
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1908
|
+
|
|
1909
|
+
export class $mol_svg_root extends $mol_svg {
|
|
1910
|
+
dom_name( ): string
|
|
1911
|
+
attr( ): ({
|
|
1912
|
+
'viewBox': ReturnType< $mol_svg_root['view_box'] >,
|
|
1913
|
+
'preserveAspectRatio': ReturnType< $mol_svg_root['aspect'] >,
|
|
1914
|
+
}) & ReturnType< $mol_svg['attr'] >
|
|
1915
|
+
view_box( ): string
|
|
1916
|
+
aspect( ): string
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1794
1919
|
}
|
|
1795
1920
|
|
|
1921
|
+
//# sourceMappingURL=root.view.tree.d.ts.map
|
|
1796
1922
|
declare namespace $ {
|
|
1797
1923
|
}
|
|
1798
1924
|
|
|
1799
1925
|
declare namespace $ {
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1926
|
+
|
|
1927
|
+
export class $mol_svg_path extends $mol_svg {
|
|
1928
|
+
dom_name( ): string
|
|
1929
|
+
attr( ): ({
|
|
1930
|
+
'd': ReturnType< $mol_svg_path['geometry'] >,
|
|
1931
|
+
}) & ReturnType< $mol_svg['attr'] >
|
|
1932
|
+
geometry( ): string
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1805
1935
|
}
|
|
1806
1936
|
|
|
1937
|
+
//# sourceMappingURL=path.view.tree.d.ts.map
|
|
1807
1938
|
declare namespace $ {
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1939
|
+
|
|
1940
|
+
type $mol_svg_path__geometry__LL7VOLPF = $mol_type_enforce<
|
|
1941
|
+
ReturnType< $mol_icon['path'] >
|
|
1942
|
+
,
|
|
1943
|
+
ReturnType< $mol_svg_path['geometry'] >
|
|
1944
|
+
>
|
|
1945
|
+
export class $mol_icon extends $mol_svg_root {
|
|
1946
|
+
view_box( ): string
|
|
1947
|
+
minimal_width( ): number
|
|
1948
|
+
minimal_height( ): number
|
|
1949
|
+
sub( ): readonly(any)[]
|
|
1950
|
+
path( ): string
|
|
1951
|
+
Path( ): $mol_svg_path
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1816
1954
|
}
|
|
1817
1955
|
|
|
1956
|
+
//# sourceMappingURL=icon.view.tree.d.ts.map
|
|
1818
1957
|
declare namespace $ {
|
|
1819
1958
|
}
|
|
1820
1959
|
|
|
1821
1960
|
declare namespace $ {
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1961
|
+
|
|
1962
|
+
export class $mol_icon_clipboard extends $mol_icon {
|
|
1963
|
+
path( ): string
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1825
1966
|
}
|
|
1826
1967
|
|
|
1968
|
+
//# sourceMappingURL=clipboard.view.tree.d.ts.map
|
|
1827
1969
|
declare namespace $ {
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1970
|
+
|
|
1971
|
+
export class $mol_icon_clipboard_outline extends $mol_icon {
|
|
1972
|
+
path( ): string
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1831
1975
|
}
|
|
1832
1976
|
|
|
1977
|
+
//# sourceMappingURL=outline.view.tree.d.ts.map
|
|
1833
1978
|
declare namespace $ {
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1979
|
+
|
|
1980
|
+
type $mol_blob__KUNAZEPP = $mol_type_enforce<
|
|
1981
|
+
[ readonly(BlobPart)[], ({
|
|
1982
|
+
'type': string,
|
|
1983
|
+
}) ]
|
|
1984
|
+
,
|
|
1985
|
+
ConstructorParameters< typeof $mol_blob >
|
|
1986
|
+
>
|
|
1987
|
+
type $mol_blob__X9FQ6FX2 = $mol_type_enforce<
|
|
1988
|
+
[ readonly(BlobPart)[], ({
|
|
1989
|
+
'type': string,
|
|
1990
|
+
}) ]
|
|
1991
|
+
,
|
|
1992
|
+
ConstructorParameters< typeof $mol_blob >
|
|
1993
|
+
>
|
|
1994
|
+
export class $mol_button_copy extends $mol_button_minor {
|
|
1995
|
+
blobs( ): readonly($mol_blob)[]
|
|
1996
|
+
data( ): Record<string, any>
|
|
1997
|
+
sub( ): readonly(any)[]
|
|
1998
|
+
text( ): ReturnType< $mol_button_copy['title'] >
|
|
1999
|
+
text_blob( next?: $mol_blob ): $mol_blob
|
|
2000
|
+
html( ): string
|
|
2001
|
+
html_blob( next?: $mol_blob ): $mol_blob
|
|
2002
|
+
Icon( ): $mol_icon_clipboard_outline
|
|
2003
|
+
title( ): string
|
|
2004
|
+
}
|
|
2005
|
+
|
|
1845
2006
|
}
|
|
1846
2007
|
|
|
2008
|
+
//# sourceMappingURL=copy.view.tree.d.ts.map
|
|
1847
2009
|
declare namespace $ {
|
|
1848
2010
|
function $mol_html_encode(text: string): string;
|
|
1849
2011
|
}
|
|
@@ -2022,40 +2184,92 @@ declare namespace $ {
|
|
|
2022
2184
|
}
|
|
2023
2185
|
|
|
2024
2186
|
declare namespace $ {
|
|
2025
|
-
class $mol_text_code extends $mol_stack {
|
|
2026
|
-
attr(): Record<string, any>;
|
|
2027
|
-
text(): string;
|
|
2028
|
-
text_lines(): readonly string[];
|
|
2029
|
-
find_pos(id: any): any;
|
|
2030
|
-
uri_base(): string;
|
|
2031
|
-
sub(): readonly any[];
|
|
2032
|
-
sidebar_showed(): boolean;
|
|
2033
|
-
render_visible_only(): boolean;
|
|
2034
|
-
row_numb(id: any): number;
|
|
2035
|
-
row_text(id: any): string;
|
|
2036
|
-
syntax(): any;
|
|
2037
|
-
uri_resolve(id: any): string;
|
|
2038
|
-
highlight(): string;
|
|
2039
|
-
Row(id: any): $$.$mol_text_code_row;
|
|
2040
|
-
rows(): readonly any[];
|
|
2041
|
-
Rows(): $$.$mol_list;
|
|
2042
|
-
text_export(): string;
|
|
2043
|
-
Copy(): $$.$mol_button_copy;
|
|
2044
|
-
}
|
|
2045
|
-
}
|
|
2046
2187
|
|
|
2188
|
+
type $mol_text_code_row__numb_showed__JPV5UKP7 = $mol_type_enforce<
|
|
2189
|
+
ReturnType< $mol_text_code['sidebar_showed'] >
|
|
2190
|
+
,
|
|
2191
|
+
ReturnType< $mol_text_code_row['numb_showed'] >
|
|
2192
|
+
>
|
|
2193
|
+
type $mol_text_code_row__numb__1OD1APDU = $mol_type_enforce<
|
|
2194
|
+
ReturnType< $mol_text_code['row_numb'] >
|
|
2195
|
+
,
|
|
2196
|
+
ReturnType< $mol_text_code_row['numb'] >
|
|
2197
|
+
>
|
|
2198
|
+
type $mol_text_code_row__text__RXJXHWNT = $mol_type_enforce<
|
|
2199
|
+
ReturnType< $mol_text_code['row_text'] >
|
|
2200
|
+
,
|
|
2201
|
+
ReturnType< $mol_text_code_row['text'] >
|
|
2202
|
+
>
|
|
2203
|
+
type $mol_text_code_row__syntax__G9V0X4DN = $mol_type_enforce<
|
|
2204
|
+
ReturnType< $mol_text_code['syntax'] >
|
|
2205
|
+
,
|
|
2206
|
+
ReturnType< $mol_text_code_row['syntax'] >
|
|
2207
|
+
>
|
|
2208
|
+
type $mol_text_code_row__uri_resolve__6AJWA16D = $mol_type_enforce<
|
|
2209
|
+
ReturnType< $mol_text_code['uri_resolve'] >
|
|
2210
|
+
,
|
|
2211
|
+
ReturnType< $mol_text_code_row['uri_resolve'] >
|
|
2212
|
+
>
|
|
2213
|
+
type $mol_text_code_row__highlight__XNADB84I = $mol_type_enforce<
|
|
2214
|
+
ReturnType< $mol_text_code['highlight'] >
|
|
2215
|
+
,
|
|
2216
|
+
ReturnType< $mol_text_code_row['highlight'] >
|
|
2217
|
+
>
|
|
2218
|
+
type $mol_list__render_visible_only__IZMC4CTB = $mol_type_enforce<
|
|
2219
|
+
ReturnType< $mol_text_code['render_visible_only'] >
|
|
2220
|
+
,
|
|
2221
|
+
ReturnType< $mol_list['render_visible_only'] >
|
|
2222
|
+
>
|
|
2223
|
+
type $mol_list__rows__JV09XCF4 = $mol_type_enforce<
|
|
2224
|
+
ReturnType< $mol_text_code['rows'] >
|
|
2225
|
+
,
|
|
2226
|
+
ReturnType< $mol_list['rows'] >
|
|
2227
|
+
>
|
|
2228
|
+
type $mol_button_copy__hint__1PH6O1O4 = $mol_type_enforce<
|
|
2229
|
+
string
|
|
2230
|
+
,
|
|
2231
|
+
ReturnType< $mol_button_copy['hint'] >
|
|
2232
|
+
>
|
|
2233
|
+
type $mol_button_copy__text__QB4UP657 = $mol_type_enforce<
|
|
2234
|
+
ReturnType< $mol_text_code['text_export'] >
|
|
2235
|
+
,
|
|
2236
|
+
ReturnType< $mol_button_copy['text'] >
|
|
2237
|
+
>
|
|
2238
|
+
export class $mol_text_code extends $mol_stack {
|
|
2239
|
+
attr( ): ({
|
|
2240
|
+
'mol_text_code_sidebar_showed': ReturnType< $mol_text_code['sidebar_showed'] >,
|
|
2241
|
+
}) & ReturnType< $mol_stack['attr'] >
|
|
2242
|
+
text( ): string
|
|
2243
|
+
text_lines( ): readonly(string)[]
|
|
2244
|
+
find_pos( id: any): any
|
|
2245
|
+
uri_base( ): string
|
|
2246
|
+
sub( ): readonly(any)[]
|
|
2247
|
+
sidebar_showed( ): boolean
|
|
2248
|
+
render_visible_only( ): boolean
|
|
2249
|
+
row_numb( id: any): number
|
|
2250
|
+
row_text( id: any): string
|
|
2251
|
+
syntax( ): any
|
|
2252
|
+
uri_resolve( id: any): string
|
|
2253
|
+
highlight( ): string
|
|
2254
|
+
Row( id: any): $mol_text_code_row
|
|
2255
|
+
rows( ): readonly(any)[]
|
|
2256
|
+
Rows( ): $mol_list
|
|
2257
|
+
text_export( ): string
|
|
2258
|
+
Copy( ): $mol_button_copy
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
}
|
|
2262
|
+
|
|
2263
|
+
//# sourceMappingURL=code.view.tree.d.ts.map
|
|
2047
2264
|
declare namespace $.$$ {
|
|
2048
2265
|
class $mol_text_code extends $.$mol_text_code {
|
|
2049
2266
|
render_visible_only(): boolean;
|
|
2050
2267
|
text_lines(): readonly string[];
|
|
2051
|
-
rows():
|
|
2268
|
+
rows(): $.$mol_text_code_row[];
|
|
2052
2269
|
row_text(index: number): string;
|
|
2053
2270
|
row_numb(index: number): number;
|
|
2054
|
-
find_pos(offset: number):
|
|
2055
|
-
|
|
2056
|
-
offset: number;
|
|
2057
|
-
} | null;
|
|
2058
|
-
sub(): ($mol_list | $mol_button_copy)[];
|
|
2271
|
+
find_pos(offset: number): any;
|
|
2272
|
+
sub(): ($.$mol_list | $.$mol_button_copy)[];
|
|
2059
2273
|
syntax(): $mol_syntax2<{
|
|
2060
2274
|
'code-indent': RegExp;
|
|
2061
2275
|
'code-docs': RegExp;
|
|
@@ -2084,19 +2298,31 @@ declare namespace $.$$ {
|
|
|
2084
2298
|
}
|
|
2085
2299
|
|
|
2086
2300
|
declare namespace $ {
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2301
|
+
|
|
2302
|
+
type $mol_view__sub__P0YA0QSM = $mol_type_enforce<
|
|
2303
|
+
readonly(any)[]
|
|
2304
|
+
,
|
|
2305
|
+
ReturnType< $mol_view['sub'] >
|
|
2306
|
+
>
|
|
2307
|
+
export class $mol_check extends $mol_button_minor {
|
|
2308
|
+
attr( ): ({
|
|
2309
|
+
'mol_check_checked': ReturnType< $mol_check['checked'] >,
|
|
2310
|
+
'aria-checked': ReturnType< $mol_check['aria_checked'] >,
|
|
2311
|
+
'role': ReturnType< $mol_check['aria_role'] >,
|
|
2312
|
+
}) & ReturnType< $mol_button_minor['attr'] >
|
|
2313
|
+
sub( ): readonly($mol_view_content)[]
|
|
2314
|
+
checked( next?: boolean ): boolean
|
|
2315
|
+
aria_checked( ): string
|
|
2316
|
+
aria_role( ): string
|
|
2317
|
+
Icon( ): any
|
|
2318
|
+
title( ): string
|
|
2319
|
+
Title( ): $mol_view
|
|
2320
|
+
label( ): readonly(any)[]
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2098
2323
|
}
|
|
2099
2324
|
|
|
2325
|
+
//# sourceMappingURL=check.view.tree.d.ts.map
|
|
2100
2326
|
declare namespace $ {
|
|
2101
2327
|
}
|
|
2102
2328
|
|
|
@@ -2110,24 +2336,32 @@ declare namespace $.$$ {
|
|
|
2110
2336
|
}
|
|
2111
2337
|
|
|
2112
2338
|
declare namespace $ {
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2339
|
+
|
|
2340
|
+
export class $mol_icon_chevron extends $mol_icon {
|
|
2341
|
+
path( ): string
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2116
2344
|
}
|
|
2117
2345
|
|
|
2346
|
+
//# sourceMappingURL=chevron.view.tree.d.ts.map
|
|
2118
2347
|
declare namespace $ {
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2348
|
+
|
|
2349
|
+
export class $mol_check_expand extends $mol_check {
|
|
2350
|
+
Icon( ): $mol_icon_chevron
|
|
2351
|
+
level( ): number
|
|
2352
|
+
style( ): ({
|
|
2353
|
+
'paddingLeft': ReturnType< $mol_check_expand['level_style'] >,
|
|
2354
|
+
}) & ReturnType< $mol_check['style'] >
|
|
2355
|
+
checked( next?: ReturnType< $mol_check_expand['expanded'] > ): ReturnType< $mol_check_expand['expanded'] >
|
|
2356
|
+
enabled( ): ReturnType< $mol_check_expand['expandable'] >
|
|
2357
|
+
level_style( ): string
|
|
2358
|
+
expanded( next?: boolean ): boolean
|
|
2359
|
+
expandable( ): boolean
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2129
2362
|
}
|
|
2130
2363
|
|
|
2364
|
+
//# sourceMappingURL=expand.view.tree.d.ts.map
|
|
2131
2365
|
declare namespace $.$$ {
|
|
2132
2366
|
class $mol_check_expand extends $.$mol_check_expand {
|
|
2133
2367
|
level_style(): string;
|
|
@@ -2139,22 +2373,51 @@ declare namespace $ {
|
|
|
2139
2373
|
}
|
|
2140
2374
|
|
|
2141
2375
|
declare namespace $ {
|
|
2142
|
-
class $mol_dump_list extends $mol_view {
|
|
2143
|
-
values(): readonly any[];
|
|
2144
|
-
sub(): readonly any[];
|
|
2145
|
-
dump_value(id: any): any;
|
|
2146
|
-
dump_expanded(id: any, next?: any): boolean;
|
|
2147
|
-
prototypes(): boolean;
|
|
2148
|
-
preview_show(): boolean;
|
|
2149
|
-
Dump(id: any): $$.$mol_dump_value;
|
|
2150
|
-
}
|
|
2151
|
-
}
|
|
2152
2376
|
|
|
2377
|
+
type $mol_check_expand__checked__FN4KGRTD = $mol_type_enforce<
|
|
2378
|
+
ReturnType< $mol_expander['expanded'] >
|
|
2379
|
+
,
|
|
2380
|
+
ReturnType< $mol_check_expand['checked'] >
|
|
2381
|
+
>
|
|
2382
|
+
type $mol_check_expand__expandable__R9ZQRYX3 = $mol_type_enforce<
|
|
2383
|
+
ReturnType< $mol_expander['expandable'] >
|
|
2384
|
+
,
|
|
2385
|
+
ReturnType< $mol_check_expand['expandable'] >
|
|
2386
|
+
>
|
|
2387
|
+
type $mol_check_expand__label__MTV4COS5 = $mol_type_enforce<
|
|
2388
|
+
ReturnType< $mol_expander['label'] >
|
|
2389
|
+
,
|
|
2390
|
+
ReturnType< $mol_check_expand['label'] >
|
|
2391
|
+
>
|
|
2392
|
+
type $mol_view__sub__G93MVDCC = $mol_type_enforce<
|
|
2393
|
+
readonly(any)[]
|
|
2394
|
+
,
|
|
2395
|
+
ReturnType< $mol_view['sub'] >
|
|
2396
|
+
>
|
|
2397
|
+
type $mol_list__rows__XOJDUMBP = $mol_type_enforce<
|
|
2398
|
+
ReturnType< $mol_expander['content'] >
|
|
2399
|
+
,
|
|
2400
|
+
ReturnType< $mol_list['rows'] >
|
|
2401
|
+
>
|
|
2402
|
+
export class $mol_expander extends $mol_list {
|
|
2403
|
+
rows( ): readonly(any)[]
|
|
2404
|
+
expanded( next?: boolean ): boolean
|
|
2405
|
+
expandable( ): boolean
|
|
2406
|
+
label( ): readonly(any)[]
|
|
2407
|
+
Trigger( ): $mol_check_expand
|
|
2408
|
+
Tools( ): any
|
|
2409
|
+
Label( ): $mol_view
|
|
2410
|
+
content( ): readonly(any)[]
|
|
2411
|
+
Content( ): $mol_list
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
//# sourceMappingURL=expander.view.tree.d.ts.map
|
|
2153
2417
|
declare namespace $.$$ {
|
|
2154
|
-
class $
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
expand_all(event?: Event): void;
|
|
2418
|
+
class $mol_expander extends $.$mol_expander {
|
|
2419
|
+
rows(): $mol_view[];
|
|
2420
|
+
expandable(): boolean;
|
|
2158
2421
|
}
|
|
2159
2422
|
}
|
|
2160
2423
|
|
|
@@ -2162,23 +2425,45 @@ declare namespace $ {
|
|
|
2162
2425
|
}
|
|
2163
2426
|
|
|
2164
2427
|
declare namespace $ {
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2428
|
+
|
|
2429
|
+
type $mol_dump_value__value__U6JVFY6R = $mol_type_enforce<
|
|
2430
|
+
ReturnType< $mol_dump_list['dump_value'] >
|
|
2431
|
+
,
|
|
2432
|
+
ReturnType< $mol_dump_value['value'] >
|
|
2433
|
+
>
|
|
2434
|
+
type $mol_dump_value__expanded__MFJG75U9 = $mol_type_enforce<
|
|
2435
|
+
ReturnType< $mol_dump_list['dump_expanded'] >
|
|
2436
|
+
,
|
|
2437
|
+
ReturnType< $mol_dump_value['expanded'] >
|
|
2438
|
+
>
|
|
2439
|
+
type $mol_dump_value__prototypes__Q9257L29 = $mol_type_enforce<
|
|
2440
|
+
ReturnType< $mol_dump_list['prototypes'] >
|
|
2441
|
+
,
|
|
2442
|
+
ReturnType< $mol_dump_value['prototypes'] >
|
|
2443
|
+
>
|
|
2444
|
+
type $mol_dump_value__preview_show__GSI5OOEX = $mol_type_enforce<
|
|
2445
|
+
ReturnType< $mol_dump_list['preview_show'] >
|
|
2446
|
+
,
|
|
2447
|
+
ReturnType< $mol_dump_value['preview_show'] >
|
|
2448
|
+
>
|
|
2449
|
+
export class $mol_dump_list extends $mol_view {
|
|
2450
|
+
values( ): readonly(any)[]
|
|
2451
|
+
sub( ): readonly(any)[]
|
|
2452
|
+
dump_value( id: any): any
|
|
2453
|
+
dump_expanded( id: any, next?: boolean ): boolean
|
|
2454
|
+
prototypes( ): boolean
|
|
2455
|
+
preview_show( ): boolean
|
|
2456
|
+
Dump( id: any): $mol_dump_value
|
|
2457
|
+
}
|
|
2458
|
+
|
|
2176
2459
|
}
|
|
2177
2460
|
|
|
2461
|
+
//# sourceMappingURL=list.view.tree.d.ts.map
|
|
2178
2462
|
declare namespace $.$$ {
|
|
2179
|
-
class $
|
|
2180
|
-
|
|
2181
|
-
|
|
2463
|
+
class $mol_dump_list extends $.$mol_dump_list {
|
|
2464
|
+
sub(): $.$mol_dump_value[];
|
|
2465
|
+
dump_value(index: number): any;
|
|
2466
|
+
expand_all(event?: Event): void;
|
|
2182
2467
|
}
|
|
2183
2468
|
}
|
|
2184
2469
|
|
|
@@ -2186,42 +2471,130 @@ declare namespace $ {
|
|
|
2186
2471
|
}
|
|
2187
2472
|
|
|
2188
2473
|
declare namespace $ {
|
|
2189
|
-
class $mol_dump_value extends $mol_view {
|
|
2190
|
-
value(next?: any): any;
|
|
2191
|
-
preview_show(next?: any): boolean;
|
|
2192
|
-
sub(): readonly any[];
|
|
2193
|
-
simple(): string;
|
|
2194
|
-
Simple(): $$.$mol_text_code;
|
|
2195
|
-
expanded(next?: any): boolean;
|
|
2196
|
-
expandable(): boolean;
|
|
2197
|
-
expand_all(next?: any): any;
|
|
2198
|
-
expand_title(): string;
|
|
2199
|
-
Expand_title(): $$.$mol_text_code;
|
|
2200
|
-
Expand_head(): $$.$mol_check_expand;
|
|
2201
|
-
preview_dom(): any;
|
|
2202
|
-
preview(): any;
|
|
2203
|
-
Preview_dom(): $mol_view;
|
|
2204
|
-
Preview(): $mol_view;
|
|
2205
|
-
row_values(id: any): readonly any[];
|
|
2206
|
-
prototypes(): boolean;
|
|
2207
|
-
Row(id: any): $$.$mol_dump_list;
|
|
2208
|
-
expand_content(): readonly any[];
|
|
2209
|
-
Expand(): $$.$mol_expander;
|
|
2210
|
-
}
|
|
2211
|
-
}
|
|
2212
2474
|
|
|
2475
|
+
type $mol_text_code__text__6EIC57PT = $mol_type_enforce<
|
|
2476
|
+
ReturnType< $mol_dump_value['simple'] >
|
|
2477
|
+
,
|
|
2478
|
+
ReturnType< $mol_text_code['text'] >
|
|
2479
|
+
>
|
|
2480
|
+
type $mol_text_code__text__ML4GAGUW = $mol_type_enforce<
|
|
2481
|
+
ReturnType< $mol_dump_value['expand_title'] >
|
|
2482
|
+
,
|
|
2483
|
+
ReturnType< $mol_text_code['text'] >
|
|
2484
|
+
>
|
|
2485
|
+
type $mol_check_expand__minimal_height__KWC0XEP4 = $mol_type_enforce<
|
|
2486
|
+
number
|
|
2487
|
+
,
|
|
2488
|
+
ReturnType< $mol_check_expand['minimal_height'] >
|
|
2489
|
+
>
|
|
2490
|
+
type $mol_check_expand__minimal_width__WWH75P0D = $mol_type_enforce<
|
|
2491
|
+
number
|
|
2492
|
+
,
|
|
2493
|
+
ReturnType< $mol_check_expand['minimal_width'] >
|
|
2494
|
+
>
|
|
2495
|
+
type $mol_check_expand__expanded__V1XOFZZ5 = $mol_type_enforce<
|
|
2496
|
+
ReturnType< $mol_dump_value['expanded'] >
|
|
2497
|
+
,
|
|
2498
|
+
ReturnType< $mol_check_expand['expanded'] >
|
|
2499
|
+
>
|
|
2500
|
+
type $mol_check_expand__expandable__9CU4UVP1 = $mol_type_enforce<
|
|
2501
|
+
ReturnType< $mol_dump_value['expandable'] >
|
|
2502
|
+
,
|
|
2503
|
+
ReturnType< $mol_check_expand['expandable'] >
|
|
2504
|
+
>
|
|
2505
|
+
type $mol_check_expand__clicks__VCS17V36 = $mol_type_enforce<
|
|
2506
|
+
ReturnType< $mol_dump_value['expand_all'] >
|
|
2507
|
+
,
|
|
2508
|
+
ReturnType< $mol_check_expand['clicks'] >
|
|
2509
|
+
>
|
|
2510
|
+
type $mol_check_expand__label__NPTNP6ZH = $mol_type_enforce<
|
|
2511
|
+
readonly(any)[]
|
|
2512
|
+
,
|
|
2513
|
+
ReturnType< $mol_check_expand['label'] >
|
|
2514
|
+
>
|
|
2515
|
+
type $mol_view__dom_node__FO7CBZ2O = $mol_type_enforce<
|
|
2516
|
+
ReturnType< $mol_dump_value['preview_dom'] >
|
|
2517
|
+
,
|
|
2518
|
+
ReturnType< $mol_view['dom_node'] >
|
|
2519
|
+
>
|
|
2520
|
+
type $mol_view__render__KH2WH8UV = $mol_type_enforce<
|
|
2521
|
+
ReturnType< $mol_dump_value['preview'] >
|
|
2522
|
+
,
|
|
2523
|
+
ReturnType< $mol_view['render'] >
|
|
2524
|
+
>
|
|
2525
|
+
type $mol_view__sub__F8X8AH0H = $mol_type_enforce<
|
|
2526
|
+
readonly(any)[]
|
|
2527
|
+
,
|
|
2528
|
+
ReturnType< $mol_view['sub'] >
|
|
2529
|
+
>
|
|
2530
|
+
type $mol_dump_list__values__JPJC8MK5 = $mol_type_enforce<
|
|
2531
|
+
ReturnType< $mol_dump_value['row_values'] >
|
|
2532
|
+
,
|
|
2533
|
+
ReturnType< $mol_dump_list['values'] >
|
|
2534
|
+
>
|
|
2535
|
+
type $mol_dump_list__prototypes__B4JNTRDE = $mol_type_enforce<
|
|
2536
|
+
ReturnType< $mol_dump_value['prototypes'] >
|
|
2537
|
+
,
|
|
2538
|
+
ReturnType< $mol_dump_list['prototypes'] >
|
|
2539
|
+
>
|
|
2540
|
+
type $mol_dump_list__preview_show__F0IIF1FR = $mol_type_enforce<
|
|
2541
|
+
ReturnType< $mol_dump_value['preview_show'] >
|
|
2542
|
+
,
|
|
2543
|
+
ReturnType< $mol_dump_list['preview_show'] >
|
|
2544
|
+
>
|
|
2545
|
+
type $mol_expander__expanded__ADHYFRZE = $mol_type_enforce<
|
|
2546
|
+
ReturnType< $mol_dump_value['expanded'] >
|
|
2547
|
+
,
|
|
2548
|
+
ReturnType< $mol_expander['expanded'] >
|
|
2549
|
+
>
|
|
2550
|
+
type $mol_expander__Trigger__B141CSVW = $mol_type_enforce<
|
|
2551
|
+
ReturnType< $mol_dump_value['Expand_head'] >
|
|
2552
|
+
,
|
|
2553
|
+
ReturnType< $mol_expander['Trigger'] >
|
|
2554
|
+
>
|
|
2555
|
+
type $mol_expander__content__U11XKK5Q = $mol_type_enforce<
|
|
2556
|
+
ReturnType< $mol_dump_value['expand_content'] >
|
|
2557
|
+
,
|
|
2558
|
+
ReturnType< $mol_expander['content'] >
|
|
2559
|
+
>
|
|
2560
|
+
export class $mol_dump_value extends $mol_view {
|
|
2561
|
+
value( next?: any ): any
|
|
2562
|
+
preview_show( next?: boolean ): boolean
|
|
2563
|
+
sub( ): readonly(any)[]
|
|
2564
|
+
simple( ): string
|
|
2565
|
+
Simple( ): $mol_text_code
|
|
2566
|
+
expanded( next?: boolean ): boolean
|
|
2567
|
+
expandable( ): boolean
|
|
2568
|
+
expand_all( next?: any ): any
|
|
2569
|
+
expand_title( ): string
|
|
2570
|
+
Expand_title( ): $mol_text_code
|
|
2571
|
+
Expand_head( ): $mol_check_expand
|
|
2572
|
+
preview_dom( ): any
|
|
2573
|
+
preview( ): any
|
|
2574
|
+
Preview_dom( ): $mol_view
|
|
2575
|
+
Preview( ): $mol_view
|
|
2576
|
+
row_values( id: any): readonly(any)[]
|
|
2577
|
+
prototypes( ): boolean
|
|
2578
|
+
Row( id: any): $mol_dump_list
|
|
2579
|
+
expand_content( ): readonly(any)[]
|
|
2580
|
+
Expand( ): $mol_expander
|
|
2581
|
+
}
|
|
2582
|
+
|
|
2583
|
+
}
|
|
2584
|
+
|
|
2585
|
+
//# sourceMappingURL=value.view.tree.d.ts.map
|
|
2213
2586
|
declare namespace $ {
|
|
2214
2587
|
function $mol_try<Result>(handler2: () => Result): Result | Error;
|
|
2215
2588
|
}
|
|
2216
2589
|
|
|
2217
2590
|
declare namespace $.$$ {
|
|
2218
2591
|
class $mol_dump_value extends $.$mol_dump_value {
|
|
2219
|
-
sub():
|
|
2592
|
+
sub(): $.$mol_text_code[] | $.$mol_expander[];
|
|
2220
2593
|
simple(): string;
|
|
2221
2594
|
expand_title(): any;
|
|
2222
2595
|
rows_values(): any[][];
|
|
2223
2596
|
preview_dom(): Element | null;
|
|
2224
|
-
expand_content(): ($mol_view |
|
|
2597
|
+
expand_content(): ($mol_view | $.$mol_dump_list)[];
|
|
2225
2598
|
expandable(): boolean;
|
|
2226
2599
|
row_values(index: number): any[];
|
|
2227
2600
|
expand_all(event?: Event): void;
|
|
@@ -2231,4 +2604,5 @@ declare namespace $.$$ {
|
|
|
2231
2604
|
declare namespace $ {
|
|
2232
2605
|
}
|
|
2233
2606
|
|
|
2234
|
-
export = $;
|
|
2607
|
+
export = $;
|
|
2608
|
+
//# sourceMappingURL=web.d.ts.map
|