mol_dump_lib 0.0.534 → 0.0.535

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
@@ -4008,7 +4008,7 @@ var $;
4008
4008
  })($ || ($ = {}));
4009
4009
 
4010
4010
  ;
4011
- ($.$mol_text_code_row) = class $mol_text_code_row extends ($.$mol_paragraph) {
4011
+ ($.$mol_text_code_line) = class $mol_text_code_line extends ($.$mol_paragraph) {
4012
4012
  numb(){
4013
4013
  return 0;
4014
4014
  }
@@ -4062,9 +4062,9 @@ var $;
4062
4062
  return null;
4063
4063
  }
4064
4064
  };
4065
- ($mol_mem(($.$mol_text_code_row.prototype), "Numb"));
4066
- ($mol_mem_key(($.$mol_text_code_row.prototype), "Token"));
4067
- ($mol_mem_key(($.$mol_text_code_row.prototype), "Token_link"));
4065
+ ($mol_mem(($.$mol_text_code_line.prototype), "Numb"));
4066
+ ($mol_mem_key(($.$mol_text_code_line.prototype), "Token"));
4067
+ ($mol_mem_key(($.$mol_text_code_line.prototype), "Token_link"));
4068
4068
 
4069
4069
 
4070
4070
  ;
@@ -4177,7 +4177,7 @@ var $;
4177
4177
  (function ($) {
4178
4178
  var $$;
4179
4179
  (function ($$) {
4180
- class $mol_text_code_row extends $.$mol_text_code_row {
4180
+ class $mol_text_code_line extends $.$mol_text_code_line {
4181
4181
  maximal_width() {
4182
4182
  return this.text().length * this.letter_width();
4183
4183
  }
@@ -4259,29 +4259,29 @@ var $;
4259
4259
  }
4260
4260
  __decorate([
4261
4261
  $mol_mem_key
4262
- ], $mol_text_code_row.prototype, "tokens", null);
4262
+ ], $mol_text_code_line.prototype, "tokens", null);
4263
4263
  __decorate([
4264
4264
  $mol_mem_key
4265
- ], $mol_text_code_row.prototype, "row_content", null);
4265
+ ], $mol_text_code_line.prototype, "row_content", null);
4266
4266
  __decorate([
4267
4267
  $mol_mem_key
4268
- ], $mol_text_code_row.prototype, "token_type", null);
4268
+ ], $mol_text_code_line.prototype, "token_type", null);
4269
4269
  __decorate([
4270
4270
  $mol_mem_key
4271
- ], $mol_text_code_row.prototype, "token_content", null);
4271
+ ], $mol_text_code_line.prototype, "token_content", null);
4272
4272
  __decorate([
4273
4273
  $mol_mem_key
4274
- ], $mol_text_code_row.prototype, "token_text", null);
4274
+ ], $mol_text_code_line.prototype, "token_text", null);
4275
4275
  __decorate([
4276
4276
  $mol_mem_key
4277
- ], $mol_text_code_row.prototype, "token_uri", null);
4277
+ ], $mol_text_code_line.prototype, "token_uri", null);
4278
4278
  __decorate([
4279
4279
  $mol_mem_key
4280
- ], $mol_text_code_row.prototype, "find_pos", null);
4280
+ ], $mol_text_code_line.prototype, "find_pos", null);
4281
4281
  __decorate([
4282
4282
  $mol_mem_key
4283
- ], $mol_text_code_row.prototype, "find_token_pos", null);
4284
- $$.$mol_text_code_row = $mol_text_code_row;
4283
+ ], $mol_text_code_line.prototype, "find_token_pos", null);
4284
+ $$.$mol_text_code_line = $mol_text_code_line;
4285
4285
  })($$ = $.$$ || ($.$$ = {}));
4286
4286
  })($ || ($ = {}));
4287
4287
 
@@ -4292,11 +4292,11 @@ var $;
4292
4292
  var $$;
4293
4293
  (function ($$) {
4294
4294
  const { rem } = $mol_style_unit;
4295
- $mol_style_define($mol_text_code_row, {
4295
+ $mol_style_define($mol_text_code_line, {
4296
4296
  display: 'block',
4297
4297
  position: 'relative',
4298
4298
  font: {
4299
- family: 'inherit',
4299
+ family: 'monospace',
4300
4300
  },
4301
4301
  Numb: {
4302
4302
  textAlign: 'right',
@@ -5833,7 +5833,7 @@ var $;
5833
5833
  return "";
5834
5834
  }
5835
5835
  Row(id){
5836
- const obj = new this.$.$mol_text_code_row();
5836
+ const obj = new this.$.$mol_text_code_line();
5837
5837
  (obj.numb_showed) = () => ((this.sidebar_showed()));
5838
5838
  (obj.numb) = () => ((this.row_numb(id)));
5839
5839
  (obj.text) = () => ((this.row_text(id)));
@@ -5985,6 +5985,11 @@ var $;
5985
5985
  Rows: {
5986
5986
  padding: $mol_gap.text,
5987
5987
  },
5988
+ Row: {
5989
+ font: {
5990
+ family: 'inherit',
5991
+ },
5992
+ },
5988
5993
  Copy: {
5989
5994
  alignSelf: 'flex-start',
5990
5995
  justifySelf: 'flex-start',
@@ -5992,7 +5997,7 @@ var $;
5992
5997
  '@': {
5993
5998
  'mol_text_code_sidebar_showed': {
5994
5999
  true: {
5995
- $mol_text_code_row: {
6000
+ $mol_text_code_line: {
5996
6001
  margin: {
5997
6002
  left: rem(1.75),
5998
6003
  },
package/node.test.js CHANGED
@@ -3999,7 +3999,7 @@ var $;
3999
3999
  })($ || ($ = {}));
4000
4000
 
4001
4001
  ;
4002
- ($.$mol_text_code_row) = class $mol_text_code_row extends ($.$mol_paragraph) {
4002
+ ($.$mol_text_code_line) = class $mol_text_code_line extends ($.$mol_paragraph) {
4003
4003
  numb(){
4004
4004
  return 0;
4005
4005
  }
@@ -4053,9 +4053,9 @@ var $;
4053
4053
  return null;
4054
4054
  }
4055
4055
  };
4056
- ($mol_mem(($.$mol_text_code_row.prototype), "Numb"));
4057
- ($mol_mem_key(($.$mol_text_code_row.prototype), "Token"));
4058
- ($mol_mem_key(($.$mol_text_code_row.prototype), "Token_link"));
4056
+ ($mol_mem(($.$mol_text_code_line.prototype), "Numb"));
4057
+ ($mol_mem_key(($.$mol_text_code_line.prototype), "Token"));
4058
+ ($mol_mem_key(($.$mol_text_code_line.prototype), "Token_link"));
4059
4059
 
4060
4060
 
4061
4061
  ;
@@ -4168,7 +4168,7 @@ var $;
4168
4168
  (function ($) {
4169
4169
  var $$;
4170
4170
  (function ($$) {
4171
- class $mol_text_code_row extends $.$mol_text_code_row {
4171
+ class $mol_text_code_line extends $.$mol_text_code_line {
4172
4172
  maximal_width() {
4173
4173
  return this.text().length * this.letter_width();
4174
4174
  }
@@ -4250,29 +4250,29 @@ var $;
4250
4250
  }
4251
4251
  __decorate([
4252
4252
  $mol_mem_key
4253
- ], $mol_text_code_row.prototype, "tokens", null);
4253
+ ], $mol_text_code_line.prototype, "tokens", null);
4254
4254
  __decorate([
4255
4255
  $mol_mem_key
4256
- ], $mol_text_code_row.prototype, "row_content", null);
4256
+ ], $mol_text_code_line.prototype, "row_content", null);
4257
4257
  __decorate([
4258
4258
  $mol_mem_key
4259
- ], $mol_text_code_row.prototype, "token_type", null);
4259
+ ], $mol_text_code_line.prototype, "token_type", null);
4260
4260
  __decorate([
4261
4261
  $mol_mem_key
4262
- ], $mol_text_code_row.prototype, "token_content", null);
4262
+ ], $mol_text_code_line.prototype, "token_content", null);
4263
4263
  __decorate([
4264
4264
  $mol_mem_key
4265
- ], $mol_text_code_row.prototype, "token_text", null);
4265
+ ], $mol_text_code_line.prototype, "token_text", null);
4266
4266
  __decorate([
4267
4267
  $mol_mem_key
4268
- ], $mol_text_code_row.prototype, "token_uri", null);
4268
+ ], $mol_text_code_line.prototype, "token_uri", null);
4269
4269
  __decorate([
4270
4270
  $mol_mem_key
4271
- ], $mol_text_code_row.prototype, "find_pos", null);
4271
+ ], $mol_text_code_line.prototype, "find_pos", null);
4272
4272
  __decorate([
4273
4273
  $mol_mem_key
4274
- ], $mol_text_code_row.prototype, "find_token_pos", null);
4275
- $$.$mol_text_code_row = $mol_text_code_row;
4274
+ ], $mol_text_code_line.prototype, "find_token_pos", null);
4275
+ $$.$mol_text_code_line = $mol_text_code_line;
4276
4276
  })($$ = $.$$ || ($.$$ = {}));
4277
4277
  })($ || ($ = {}));
4278
4278
 
@@ -4283,11 +4283,11 @@ var $;
4283
4283
  var $$;
4284
4284
  (function ($$) {
4285
4285
  const { rem } = $mol_style_unit;
4286
- $mol_style_define($mol_text_code_row, {
4286
+ $mol_style_define($mol_text_code_line, {
4287
4287
  display: 'block',
4288
4288
  position: 'relative',
4289
4289
  font: {
4290
- family: 'inherit',
4290
+ family: 'monospace',
4291
4291
  },
4292
4292
  Numb: {
4293
4293
  textAlign: 'right',
@@ -5824,7 +5824,7 @@ var $;
5824
5824
  return "";
5825
5825
  }
5826
5826
  Row(id){
5827
- const obj = new this.$.$mol_text_code_row();
5827
+ const obj = new this.$.$mol_text_code_line();
5828
5828
  (obj.numb_showed) = () => ((this.sidebar_showed()));
5829
5829
  (obj.numb) = () => ((this.row_numb(id)));
5830
5830
  (obj.text) = () => ((this.row_text(id)));
@@ -5976,6 +5976,11 @@ var $;
5976
5976
  Rows: {
5977
5977
  padding: $mol_gap.text,
5978
5978
  },
5979
+ Row: {
5980
+ font: {
5981
+ family: 'inherit',
5982
+ },
5983
+ },
5979
5984
  Copy: {
5980
5985
  alignSelf: 'flex-start',
5981
5986
  justifySelf: 'flex-start',
@@ -5983,7 +5988,7 @@ var $;
5983
5988
  '@': {
5984
5989
  'mol_text_code_sidebar_showed': {
5985
5990
  true: {
5986
- $mol_text_code_row: {
5991
+ $mol_text_code_line: {
5987
5992
  margin: {
5988
5993
  left: rem(1.75),
5989
5994
  },