mol_dump_lib 0.0.770 → 0.0.772

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.js CHANGED
@@ -6329,6 +6329,9 @@ var $;
6329
6329
  row_numb(id){
6330
6330
  return 0;
6331
6331
  }
6332
+ row_theme(id){
6333
+ return "";
6334
+ }
6332
6335
  row_text(id){
6333
6336
  return "";
6334
6337
  }
@@ -6345,6 +6348,7 @@ var $;
6345
6348
  const obj = new this.$.$mol_text_code_line();
6346
6349
  (obj.numb_showed) = () => ((this.sidebar_showed()));
6347
6350
  (obj.numb) = () => ((this.row_numb(id)));
6351
+ (obj.theme) = () => ((this.row_theme(id)));
6348
6352
  (obj.text) = () => ((this.row_text(id)));
6349
6353
  (obj.syntax) = () => ((this.syntax()));
6350
6354
  (obj.uri_resolve) = (id) => ((this.uri_resolve(id)));
@@ -6384,6 +6388,9 @@ var $;
6384
6388
  uri_base(){
6385
6389
  return "";
6386
6390
  }
6391
+ row_themes(){
6392
+ return [];
6393
+ }
6387
6394
  sub(){
6388
6395
  return [(this.Rows()), (this.Copy())];
6389
6396
  }
@@ -6456,6 +6463,9 @@ var $;
6456
6463
  text_export() {
6457
6464
  return this.text() + '\n';
6458
6465
  }
6466
+ row_theme(row) {
6467
+ return this.row_themes()[row - 1];
6468
+ }
6459
6469
  }
6460
6470
  __decorate([
6461
6471
  $mol_mem