mol_dump_lib 0.0.843 → 0.0.845
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 +2 -5
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +5 -9
- package/node.js.map +1 -1
- package/node.mjs +5 -9
- package/node.test.js +5 -9
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +2 -5
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +5 -9
- package/web.js.map +1 -1
- package/web.mjs +5 -9
package/web.js
CHANGED
|
@@ -1229,6 +1229,7 @@ var $;
|
|
|
1229
1229
|
}
|
|
1230
1230
|
destructor() {
|
|
1231
1231
|
super.destructor();
|
|
1232
|
+
$mol_wire_fiber.planning.delete(this);
|
|
1232
1233
|
if (!$mol_owning_check(this, this.cache))
|
|
1233
1234
|
return;
|
|
1234
1235
|
try {
|
|
@@ -3276,7 +3277,6 @@ var $;
|
|
|
3276
3277
|
}
|
|
3277
3278
|
dom_node_actual() {
|
|
3278
3279
|
const node = this.dom_node();
|
|
3279
|
-
$mol_dom_render_styles(node, this.style_size());
|
|
3280
3280
|
const attr = this.attr();
|
|
3281
3281
|
const style = this.style();
|
|
3282
3282
|
$mol_dom_render_attributes(node, attr);
|
|
@@ -3377,12 +3377,6 @@ var $;
|
|
|
3377
3377
|
mol_theme: this.theme() ?? undefined,
|
|
3378
3378
|
};
|
|
3379
3379
|
}
|
|
3380
|
-
style_size() {
|
|
3381
|
-
return {
|
|
3382
|
-
minHeight: this.minimal_height(),
|
|
3383
|
-
minWidth: this.minimal_width(),
|
|
3384
|
-
};
|
|
3385
|
-
}
|
|
3386
3380
|
style() {
|
|
3387
3381
|
return {};
|
|
3388
3382
|
}
|
|
@@ -4510,7 +4504,8 @@ var $;
|
|
|
4510
4504
|
];
|
|
4511
4505
|
}
|
|
4512
4506
|
row_content(path) {
|
|
4513
|
-
|
|
4507
|
+
const content = this.tokens(path).map((t, i) => this.Token([...path, i]));
|
|
4508
|
+
return content.length ? content : ['\n'];
|
|
4514
4509
|
}
|
|
4515
4510
|
Token(path) {
|
|
4516
4511
|
return this.token_type(path) === 'code-link' ? this.Token_link(path) : super.Token(path);
|
|
@@ -5132,7 +5127,7 @@ var $;
|
|
|
5132
5127
|
"use strict";
|
|
5133
5128
|
var $;
|
|
5134
5129
|
(function ($) {
|
|
5135
|
-
$mol_style_attach("mol/button/typed/typed.view.css", "[mol_button_typed] {\n\talign-content: center;\n\talign-items: center;\n\tpadding: var(--mol_gap_text);\n\tborder-radius: var(--mol_gap_round);\n\tgap: var(--mol_gap_space);\n\tuser-select: none;\n\tcursor: pointer;\n}\n\n[mol_button_typed][disabled] {\n\tpointer-events: none;\n}\n\n[mol_button_typed]:hover ,\n[mol_button_typed]:focus-visible {\n\tbox-shadow: inset 0 0 0 100vmax var(--mol_theme_hover);\n}\n\n[mol_button_typed]:active {\n\tcolor: var(--mol_theme_focus);\n}\n\n");
|
|
5130
|
+
$mol_style_attach("mol/button/typed/typed.view.css", "[mol_button_typed] {\n\talign-content: center;\n\talign-items: center;\n\tpadding: var(--mol_gap_text);\n\tborder-radius: var(--mol_gap_round);\n\tgap: var(--mol_gap_space);\n\tuser-select: none;\n\tcursor: pointer;\n}\n\n[mol_button_typed][disabled] {\n\tpointer-events: none;\n}\n\n[mol_button_typed]:hover ,\n[mol_button_typed]:focus-visible {\n\tbox-shadow: inset 0 0 0 100vmax var(--mol_theme_hover);\n}\n\n[mol_button_typed]:active {\n\tcolor: var(--mol_theme_focus);\n}\n\n[mol_button_typed]:empty::after {\n\tcontent: \"\\u00A0\";\n}\n");
|
|
5136
5131
|
})($ || ($ = {}));
|
|
5137
5132
|
|
|
5138
5133
|
;
|
|
@@ -6497,6 +6492,7 @@ var $;
|
|
|
6497
6492
|
},
|
|
6498
6493
|
Rows: {
|
|
6499
6494
|
padding: $mol_gap.text,
|
|
6495
|
+
minWidth: 0,
|
|
6500
6496
|
},
|
|
6501
6497
|
Row: {
|
|
6502
6498
|
font: {
|