mol_dump_lib 0.0.836 → 0.0.837

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.mjs CHANGED
@@ -6123,6 +6123,9 @@ var $;
6123
6123
  if(next !== undefined) return next;
6124
6124
  return null;
6125
6125
  }
6126
+ activate(next){
6127
+ return (this.event_activate(next));
6128
+ }
6126
6129
  clicks(next){
6127
6130
  if(next !== undefined) return next;
6128
6131
  return null;
@@ -6131,6 +6134,9 @@ var $;
6131
6134
  if(next !== undefined) return next;
6132
6135
  return null;
6133
6136
  }
6137
+ key_press(next){
6138
+ return (this.event_key_press(next));
6139
+ }
6134
6140
  disabled(){
6135
6141
  return false;
6136
6142
  }
@@ -6160,9 +6166,9 @@ var $;
6160
6166
  event(){
6161
6167
  return {
6162
6168
  ...(super.event()),
6163
- "click": (next) => (this.event_activate(next)),
6169
+ "click": (next) => (this.activate(next)),
6164
6170
  "dblclick": (next) => (this.clicks(next)),
6165
- "keydown": (next) => (this.event_key_press(next))
6171
+ "keydown": (next) => (this.key_press(next))
6166
6172
  };
6167
6173
  }
6168
6174
  attr(){
@@ -6331,7 +6337,7 @@ var $;
6331
6337
  }
6332
6338
  event_key_press(event) {
6333
6339
  if (event.keyCode === $mol_keyboard_code.enter) {
6334
- return this.event_activate(event);
6340
+ return this.activate(event);
6335
6341
  }
6336
6342
  }
6337
6343
  tab_index() {
package/node.test.js CHANGED
@@ -6114,6 +6114,9 @@ var $;
6114
6114
  if(next !== undefined) return next;
6115
6115
  return null;
6116
6116
  }
6117
+ activate(next){
6118
+ return (this.event_activate(next));
6119
+ }
6117
6120
  clicks(next){
6118
6121
  if(next !== undefined) return next;
6119
6122
  return null;
@@ -6122,6 +6125,9 @@ var $;
6122
6125
  if(next !== undefined) return next;
6123
6126
  return null;
6124
6127
  }
6128
+ key_press(next){
6129
+ return (this.event_key_press(next));
6130
+ }
6125
6131
  disabled(){
6126
6132
  return false;
6127
6133
  }
@@ -6151,9 +6157,9 @@ var $;
6151
6157
  event(){
6152
6158
  return {
6153
6159
  ...(super.event()),
6154
- "click": (next) => (this.event_activate(next)),
6160
+ "click": (next) => (this.activate(next)),
6155
6161
  "dblclick": (next) => (this.clicks(next)),
6156
- "keydown": (next) => (this.event_key_press(next))
6162
+ "keydown": (next) => (this.key_press(next))
6157
6163
  };
6158
6164
  }
6159
6165
  attr(){
@@ -6322,7 +6328,7 @@ var $;
6322
6328
  }
6323
6329
  event_key_press(event) {
6324
6330
  if (event.keyCode === $mol_keyboard_code.enter) {
6325
- return this.event_activate(event);
6331
+ return this.activate(event);
6326
6332
  }
6327
6333
  }
6328
6334
  tab_index() {