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/node.js
CHANGED
|
@@ -1156,6 +1156,7 @@ var $;
|
|
|
1156
1156
|
}
|
|
1157
1157
|
destructor() {
|
|
1158
1158
|
super.destructor();
|
|
1159
|
+
$mol_wire_fiber.planning.delete(this);
|
|
1159
1160
|
if (!$mol_owning_check(this, this.cache))
|
|
1160
1161
|
return;
|
|
1161
1162
|
try {
|
|
@@ -4443,7 +4444,6 @@ var $;
|
|
|
4443
4444
|
}
|
|
4444
4445
|
dom_node_actual() {
|
|
4445
4446
|
const node = this.dom_node();
|
|
4446
|
-
$mol_dom_render_styles(node, this.style_size());
|
|
4447
4447
|
const attr = this.attr();
|
|
4448
4448
|
const style = this.style();
|
|
4449
4449
|
$mol_dom_render_attributes(node, attr);
|
|
@@ -4544,12 +4544,6 @@ var $;
|
|
|
4544
4544
|
mol_theme: this.theme() ?? undefined,
|
|
4545
4545
|
};
|
|
4546
4546
|
}
|
|
4547
|
-
style_size() {
|
|
4548
|
-
return {
|
|
4549
|
-
minHeight: this.minimal_height(),
|
|
4550
|
-
minWidth: this.minimal_width(),
|
|
4551
|
-
};
|
|
4552
|
-
}
|
|
4553
4547
|
style() {
|
|
4554
4548
|
return {};
|
|
4555
4549
|
}
|
|
@@ -5670,7 +5664,8 @@ var $;
|
|
|
5670
5664
|
];
|
|
5671
5665
|
}
|
|
5672
5666
|
row_content(path) {
|
|
5673
|
-
|
|
5667
|
+
const content = this.tokens(path).map((t, i) => this.Token([...path, i]));
|
|
5668
|
+
return content.length ? content : ['\n'];
|
|
5674
5669
|
}
|
|
5675
5670
|
Token(path) {
|
|
5676
5671
|
return this.token_type(path) === 'code-link' ? this.Token_link(path) : super.Token(path);
|
|
@@ -6401,7 +6396,7 @@ var $;
|
|
|
6401
6396
|
"use strict";
|
|
6402
6397
|
var $;
|
|
6403
6398
|
(function ($) {
|
|
6404
|
-
$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");
|
|
6399
|
+
$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");
|
|
6405
6400
|
})($ || ($ = {}));
|
|
6406
6401
|
|
|
6407
6402
|
;
|
|
@@ -6963,6 +6958,7 @@ var $;
|
|
|
6963
6958
|
},
|
|
6964
6959
|
Rows: {
|
|
6965
6960
|
padding: $mol_gap.text,
|
|
6961
|
+
minWidth: 0,
|
|
6966
6962
|
},
|
|
6967
6963
|
Row: {
|
|
6968
6964
|
font: {
|