mol_tree2 1.0.654 → 1.0.656
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.test.js +9 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +2 -2
- package/web.test.js.map +1 -1
package/package.json
CHANGED
package/web.test.js
CHANGED
|
@@ -2446,7 +2446,7 @@ var $;
|
|
|
2446
2446
|
destructor: result['destructor'] ?? (() => { })
|
|
2447
2447
|
});
|
|
2448
2448
|
handled.add(result);
|
|
2449
|
-
const error = new Error();
|
|
2449
|
+
const error = new Error(`Promise in ${this}`);
|
|
2450
2450
|
Object.defineProperty(result, 'stack', { get: () => error.stack });
|
|
2451
2451
|
}
|
|
2452
2452
|
if (!$mol_promise_like(result)) {
|
|
@@ -6121,7 +6121,7 @@ var $;
|
|
|
6121
6121
|
"use strict";
|
|
6122
6122
|
var $;
|
|
6123
6123
|
(function ($) {
|
|
6124
|
-
$mol_style_attach("mol/button/button.view.css", "[mol_button] {\n\tborder: none;\n\tfont: inherit;\n\tdisplay: inline-flex;\n\tflex-shrink: 0;\n\ttext-decoration: inherit;\n\tcursor: inherit;\n\tposition: relative;\n\tbox-sizing: border-box;\n\tword-break: normal;\n\tcursor: default;\n\tuser-select: none;\n\tborder-radius: var(--mol_gap_round);\n}\n\n[mol_button]:where(:not(:disabled)):hover {\n\tz-index: var(--mol_layer_hover);\n}\n\n[mol_button]:focus-visible {\n\toutline: none;\n\tz-index: var(--mol_layer_focus);\n}\n");
|
|
6124
|
+
$mol_style_attach("mol/button/button.view.css", "[mol_button] {\n\tborder: none;\n\tfont: inherit;\n\tdisplay: inline-flex;\n\tflex-shrink: 0;\n\ttext-decoration: inherit;\n\tcursor: inherit;\n\tposition: relative;\n\tbox-sizing: border-box;\n\tword-break: normal;\n\tcursor: default;\n\tuser-select: none;\n\tborder-radius: var(--mol_gap_round);\n\tbackground: transparent;\n\tcolor: inherit;\n}\n\n[mol_button]:where(:not(:disabled)):hover {\n\tz-index: var(--mol_layer_hover);\n}\n\n[mol_button]:focus-visible {\n\toutline: none;\n\tz-index: var(--mol_layer_focus);\n}\n");
|
|
6125
6125
|
})($ || ($ = {}));
|
|
6126
6126
|
|
|
6127
6127
|
;
|