mol_dump_lib 0.0.944 → 0.0.945
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 +9 -0
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +33 -3
- package/node.js.map +1 -1
- package/node.mjs +33 -3
- package/node.test.js +33 -3
- package/node.test.js.map +1 -1
- package/package.json +2 -1
- package/web.d.ts +9 -0
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +31 -3
- package/web.js.map +1 -1
- package/web.mjs +31 -3
package/node.js
CHANGED
|
@@ -3677,6 +3677,8 @@ var $;
|
|
|
3677
3677
|
if (this.$.$mol_fail_catch(error)) {
|
|
3678
3678
|
if (error.code === 'ENOENT')
|
|
3679
3679
|
return null;
|
|
3680
|
+
if (error.code === 'EPERM')
|
|
3681
|
+
return null;
|
|
3680
3682
|
error.message += '\n' + path;
|
|
3681
3683
|
this.$.$mol_fail_hidden(error);
|
|
3682
3684
|
}
|
|
@@ -7142,6 +7144,34 @@ var $;
|
|
|
7142
7144
|
($mol_mem(($.$mol_check.prototype), "Title"));
|
|
7143
7145
|
|
|
7144
7146
|
|
|
7147
|
+
;
|
|
7148
|
+
"use strict";
|
|
7149
|
+
var $;
|
|
7150
|
+
(function ($) {
|
|
7151
|
+
class $mol_dom_event extends $mol_object {
|
|
7152
|
+
native;
|
|
7153
|
+
constructor(native) {
|
|
7154
|
+
super();
|
|
7155
|
+
this.native = native;
|
|
7156
|
+
}
|
|
7157
|
+
prevented(next) {
|
|
7158
|
+
if (next)
|
|
7159
|
+
this.native.preventDefault();
|
|
7160
|
+
return this.native.defaultPrevented;
|
|
7161
|
+
}
|
|
7162
|
+
static wrap(event) {
|
|
7163
|
+
return new this.$.$mol_dom_event(event);
|
|
7164
|
+
}
|
|
7165
|
+
}
|
|
7166
|
+
__decorate([
|
|
7167
|
+
$mol_action
|
|
7168
|
+
], $mol_dom_event.prototype, "prevented", null);
|
|
7169
|
+
__decorate([
|
|
7170
|
+
$mol_action
|
|
7171
|
+
], $mol_dom_event, "wrap", null);
|
|
7172
|
+
$.$mol_dom_event = $mol_dom_event;
|
|
7173
|
+
})($ || ($ = {}));
|
|
7174
|
+
|
|
7145
7175
|
;
|
|
7146
7176
|
"use strict";
|
|
7147
7177
|
var $;
|
|
@@ -7160,11 +7190,11 @@ var $;
|
|
|
7160
7190
|
(function ($$) {
|
|
7161
7191
|
class $mol_check extends $.$mol_check {
|
|
7162
7192
|
click(next) {
|
|
7163
|
-
|
|
7193
|
+
const event = next ? $mol_dom_event.wrap(next) : null;
|
|
7194
|
+
if (event?.prevented())
|
|
7164
7195
|
return;
|
|
7196
|
+
event?.prevented(true);
|
|
7165
7197
|
this.checked(!this.checked());
|
|
7166
|
-
if (next)
|
|
7167
|
-
next.preventDefault();
|
|
7168
7198
|
}
|
|
7169
7199
|
sub() {
|
|
7170
7200
|
return [
|