mol_plot_all 1.2.1022 → 1.2.1023
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 +90 -90
- package/node.js +118 -118
- package/node.js.map +1 -1
- package/node.mjs +118 -118
- package/node.test.js +118 -118
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +90 -90
- package/web.js +118 -118
- package/web.js.map +1 -1
- package/web.mjs +118 -118
package/node.js
CHANGED
|
@@ -3195,8 +3195,8 @@ var $;
|
|
|
3195
3195
|
attr(){
|
|
3196
3196
|
return {
|
|
3197
3197
|
...(super.attr()),
|
|
3198
|
-
"viewBox": (this
|
|
3199
|
-
"preserveAspectRatio": (this
|
|
3198
|
+
"viewBox": (this?.view_box()),
|
|
3199
|
+
"preserveAspectRatio": (this?.aspect())
|
|
3200
3200
|
};
|
|
3201
3201
|
}
|
|
3202
3202
|
};
|
|
@@ -3470,11 +3470,11 @@ var $;
|
|
|
3470
3470
|
event(){
|
|
3471
3471
|
return {
|
|
3472
3472
|
...(super.event()),
|
|
3473
|
-
"pointerdown": (next) => (this
|
|
3474
|
-
"pointermove": (next) => (this
|
|
3475
|
-
"pointerup": (next) => (this
|
|
3476
|
-
"pointerleave": (next) => (this
|
|
3477
|
-
"wheel": (next) => (this
|
|
3473
|
+
"pointerdown": (next) => (this?.event_start(next)),
|
|
3474
|
+
"pointermove": (next) => (this?.event_move(next)),
|
|
3475
|
+
"pointerup": (next) => (this?.event_end(next)),
|
|
3476
|
+
"pointerleave": (next) => (this?.event_leave(next)),
|
|
3477
|
+
"wheel": (next) => (this?.event_wheel(next))
|
|
3478
3478
|
};
|
|
3479
3479
|
}
|
|
3480
3480
|
};
|
|
@@ -3764,11 +3764,11 @@ var $;
|
|
|
3764
3764
|
;
|
|
3765
3765
|
($.$mol_plot_pane) = class $mol_plot_pane extends ($.$mol_svg_root) {
|
|
3766
3766
|
gap_x(){
|
|
3767
|
-
const obj = new this.$.$mol_vector_range((this
|
|
3767
|
+
const obj = new this.$.$mol_vector_range((this?.gap_left()), (this?.gap_right()));
|
|
3768
3768
|
return obj;
|
|
3769
3769
|
}
|
|
3770
3770
|
gap_y(){
|
|
3771
|
-
const obj = new this.$.$mol_vector_range((this
|
|
3771
|
+
const obj = new this.$.$mol_vector_range((this?.gap_bottom()), (this?.gap_top()));
|
|
3772
3772
|
return obj;
|
|
3773
3773
|
}
|
|
3774
3774
|
shift_limit_x(){
|
|
@@ -3810,17 +3810,17 @@ var $;
|
|
|
3810
3810
|
return [];
|
|
3811
3811
|
}
|
|
3812
3812
|
graphs_positioned(){
|
|
3813
|
-
return (this
|
|
3813
|
+
return (this?.graphs());
|
|
3814
3814
|
}
|
|
3815
3815
|
graphs_visible(){
|
|
3816
|
-
return (this
|
|
3816
|
+
return (this?.graphs_positioned());
|
|
3817
3817
|
}
|
|
3818
3818
|
zoom(next){
|
|
3819
3819
|
if(next !== undefined) return next;
|
|
3820
3820
|
return 1;
|
|
3821
3821
|
}
|
|
3822
3822
|
cursor_position(){
|
|
3823
|
-
return (this
|
|
3823
|
+
return (this?.Touch()?.pointer_center());
|
|
3824
3824
|
}
|
|
3825
3825
|
allow_draw(){
|
|
3826
3826
|
return true;
|
|
@@ -3832,10 +3832,10 @@ var $;
|
|
|
3832
3832
|
return true;
|
|
3833
3833
|
}
|
|
3834
3834
|
action_type(){
|
|
3835
|
-
return (this
|
|
3835
|
+
return (this?.Touch()?.action_type());
|
|
3836
3836
|
}
|
|
3837
3837
|
action_point(){
|
|
3838
|
-
return (this
|
|
3838
|
+
return (this?.Touch()?.action_point());
|
|
3839
3839
|
}
|
|
3840
3840
|
draw_start(next){
|
|
3841
3841
|
if(next !== undefined) return next;
|
|
@@ -3851,14 +3851,14 @@ var $;
|
|
|
3851
3851
|
}
|
|
3852
3852
|
Touch(){
|
|
3853
3853
|
const obj = new this.$.$mol_touch();
|
|
3854
|
-
(obj.zoom) = (next) => ((this
|
|
3855
|
-
(obj.pan) = (next) => ((this
|
|
3856
|
-
(obj.allow_draw) = () => ((this
|
|
3857
|
-
(obj.allow_pan) = () => ((this
|
|
3858
|
-
(obj.allow_zoom) = () => ((this
|
|
3859
|
-
(obj.draw_start) = (next) => ((this
|
|
3860
|
-
(obj.draw) = (next) => ((this
|
|
3861
|
-
(obj.draw_end) = (next) => ((this
|
|
3854
|
+
(obj.zoom) = (next) => ((this?.zoom(next)));
|
|
3855
|
+
(obj.pan) = (next) => ((this?.shift(next)));
|
|
3856
|
+
(obj.allow_draw) = () => ((this?.allow_draw()));
|
|
3857
|
+
(obj.allow_pan) = () => ((this?.allow_pan()));
|
|
3858
|
+
(obj.allow_zoom) = () => ((this?.allow_zoom()));
|
|
3859
|
+
(obj.draw_start) = (next) => ((this?.draw_start(next)));
|
|
3860
|
+
(obj.draw) = (next) => ((this?.draw(next)));
|
|
3861
|
+
(obj.draw_end) = (next) => ((this?.draw_end(next)));
|
|
3862
3862
|
return obj;
|
|
3863
3863
|
}
|
|
3864
3864
|
aspect(){
|
|
@@ -3879,23 +3879,23 @@ var $;
|
|
|
3879
3879
|
return 24;
|
|
3880
3880
|
}
|
|
3881
3881
|
gap_left(){
|
|
3882
|
-
return (this
|
|
3882
|
+
return (this?.gap_hor());
|
|
3883
3883
|
}
|
|
3884
3884
|
gap_right(){
|
|
3885
|
-
return (this
|
|
3885
|
+
return (this?.gap_hor());
|
|
3886
3886
|
}
|
|
3887
3887
|
gap_top(){
|
|
3888
|
-
return (this
|
|
3888
|
+
return (this?.gap_vert());
|
|
3889
3889
|
}
|
|
3890
3890
|
gap_bottom(){
|
|
3891
|
-
return (this
|
|
3891
|
+
return (this?.gap_vert());
|
|
3892
3892
|
}
|
|
3893
3893
|
gap(){
|
|
3894
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
3894
|
+
const obj = new this.$.$mol_vector_2d((this?.gap_x()), (this?.gap_y()));
|
|
3895
3895
|
return obj;
|
|
3896
3896
|
}
|
|
3897
3897
|
shift_limit(){
|
|
3898
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
3898
|
+
const obj = new this.$.$mol_vector_2d((this?.shift_limit_x()), (this?.shift_limit_y()));
|
|
3899
3899
|
return obj;
|
|
3900
3900
|
}
|
|
3901
3901
|
shift_default(){
|
|
@@ -3908,7 +3908,7 @@ var $;
|
|
|
3908
3908
|
return obj;
|
|
3909
3909
|
}
|
|
3910
3910
|
scale_limit(){
|
|
3911
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
3911
|
+
const obj = new this.$.$mol_vector_2d((this?.scale_limit_x()), (this?.scale_limit_y()));
|
|
3912
3912
|
return obj;
|
|
3913
3913
|
}
|
|
3914
3914
|
scale_default(){
|
|
@@ -3937,21 +3937,21 @@ var $;
|
|
|
3937
3937
|
return obj;
|
|
3938
3938
|
}
|
|
3939
3939
|
dimensions(){
|
|
3940
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
3940
|
+
const obj = new this.$.$mol_vector_2d((this?.dimensions_x()), (this?.dimensions_y()));
|
|
3941
3941
|
return obj;
|
|
3942
3942
|
}
|
|
3943
3943
|
dimensions_viewport(){
|
|
3944
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
3944
|
+
const obj = new this.$.$mol_vector_2d((this?.dimensions_viewport_x()), (this?.dimensions_viewport_y()));
|
|
3945
3945
|
return obj;
|
|
3946
3946
|
}
|
|
3947
3947
|
sub(){
|
|
3948
|
-
return (this
|
|
3948
|
+
return (this?.graphs_sorted());
|
|
3949
3949
|
}
|
|
3950
3950
|
graphs_colored(){
|
|
3951
|
-
return (this
|
|
3951
|
+
return (this?.graphs_visible());
|
|
3952
3952
|
}
|
|
3953
3953
|
plugins(){
|
|
3954
|
-
return [...(super.plugins()), (this
|
|
3954
|
+
return [...(super.plugins()), (this?.Touch())];
|
|
3955
3955
|
}
|
|
3956
3956
|
};
|
|
3957
3957
|
($mol_mem(($.$mol_plot_pane.prototype), "gap_x"));
|
|
@@ -4010,7 +4010,7 @@ var $;
|
|
|
4010
4010
|
return "title";
|
|
4011
4011
|
}
|
|
4012
4012
|
sub(){
|
|
4013
|
-
return [(this
|
|
4013
|
+
return [(this?.title())];
|
|
4014
4014
|
}
|
|
4015
4015
|
};
|
|
4016
4016
|
|
|
@@ -4062,7 +4062,7 @@ var $;
|
|
|
4062
4062
|
return "";
|
|
4063
4063
|
}
|
|
4064
4064
|
hint(){
|
|
4065
|
-
return (this
|
|
4065
|
+
return (this?.title());
|
|
4066
4066
|
}
|
|
4067
4067
|
series_x(){
|
|
4068
4068
|
return [];
|
|
@@ -4071,13 +4071,13 @@ var $;
|
|
|
4071
4071
|
return [];
|
|
4072
4072
|
}
|
|
4073
4073
|
attr(){
|
|
4074
|
-
return {...(super.attr()), "mol_plot_graph_type": (this
|
|
4074
|
+
return {...(super.attr()), "mol_plot_graph_type": (this?.type())};
|
|
4075
4075
|
}
|
|
4076
4076
|
style(){
|
|
4077
|
-
return {...(super.style()), "color": (this
|
|
4077
|
+
return {...(super.style()), "color": (this?.color())};
|
|
4078
4078
|
}
|
|
4079
4079
|
viewport(){
|
|
4080
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4080
|
+
const obj = new this.$.$mol_vector_2d((this?.viewport_x()), (this?.viewport_y()));
|
|
4081
4081
|
return obj;
|
|
4082
4082
|
}
|
|
4083
4083
|
shift(){
|
|
@@ -4091,11 +4091,11 @@ var $;
|
|
|
4091
4091
|
return obj;
|
|
4092
4092
|
}
|
|
4093
4093
|
dimensions_pane(){
|
|
4094
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4094
|
+
const obj = new this.$.$mol_vector_2d((this?.dimensions_pane_x()), (this?.dimensions_pane_y()));
|
|
4095
4095
|
return obj;
|
|
4096
4096
|
}
|
|
4097
4097
|
dimensions(){
|
|
4098
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4098
|
+
const obj = new this.$.$mol_vector_2d((this?.dimensions_x()), (this?.dimensions_y()));
|
|
4099
4099
|
return obj;
|
|
4100
4100
|
}
|
|
4101
4101
|
size_real(){
|
|
@@ -4103,7 +4103,7 @@ var $;
|
|
|
4103
4103
|
return obj;
|
|
4104
4104
|
}
|
|
4105
4105
|
gap(){
|
|
4106
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4106
|
+
const obj = new this.$.$mol_vector_2d((this?.gap_x()), (this?.gap_y()));
|
|
4107
4107
|
return obj;
|
|
4108
4108
|
}
|
|
4109
4109
|
repos_x(id){
|
|
@@ -4126,7 +4126,7 @@ var $;
|
|
|
4126
4126
|
}
|
|
4127
4127
|
Hint(){
|
|
4128
4128
|
const obj = new this.$.$mol_svg_title();
|
|
4129
|
-
(obj.title) = () => ((this
|
|
4129
|
+
(obj.title) = () => ((this?.hint()));
|
|
4130
4130
|
return obj;
|
|
4131
4131
|
}
|
|
4132
4132
|
hue(){
|
|
@@ -4159,10 +4159,10 @@ var $;
|
|
|
4159
4159
|
return "black";
|
|
4160
4160
|
}
|
|
4161
4161
|
attr(){
|
|
4162
|
-
return {...(super.attr()), "mol_plot_graph_type": (this
|
|
4162
|
+
return {...(super.attr()), "mol_plot_graph_type": (this?.type())};
|
|
4163
4163
|
}
|
|
4164
4164
|
style(){
|
|
4165
|
-
return {...(super.style()), "color": (this
|
|
4165
|
+
return {...(super.style()), "color": (this?.color())};
|
|
4166
4166
|
}
|
|
4167
4167
|
};
|
|
4168
4168
|
|
|
@@ -4484,15 +4484,15 @@ var $;
|
|
|
4484
4484
|
return "path";
|
|
4485
4485
|
}
|
|
4486
4486
|
attr(){
|
|
4487
|
-
return {...(super.attr()), "d": (this
|
|
4487
|
+
return {...(super.attr()), "d": (this?.curve())};
|
|
4488
4488
|
}
|
|
4489
4489
|
sub(){
|
|
4490
|
-
return [(this
|
|
4490
|
+
return [(this?.Hint())];
|
|
4491
4491
|
}
|
|
4492
4492
|
Sample(){
|
|
4493
4493
|
const obj = new this.$.$mol_plot_graph_sample();
|
|
4494
|
-
(obj.color) = () => ((this
|
|
4495
|
-
(obj.type) = () => ((this
|
|
4494
|
+
(obj.color) = () => ((this?.color()));
|
|
4495
|
+
(obj.type) = () => ((this?.type()));
|
|
4496
4496
|
return obj;
|
|
4497
4497
|
}
|
|
4498
4498
|
};
|
|
@@ -4574,17 +4574,17 @@ var $;
|
|
|
4574
4574
|
return [];
|
|
4575
4575
|
}
|
|
4576
4576
|
graphs_enriched(){
|
|
4577
|
-
return (this
|
|
4577
|
+
return (this?.graphs());
|
|
4578
4578
|
}
|
|
4579
4579
|
graph_samples(){
|
|
4580
4580
|
return [];
|
|
4581
4581
|
}
|
|
4582
4582
|
sub(){
|
|
4583
|
-
return (this
|
|
4583
|
+
return (this?.graphs_enriched());
|
|
4584
4584
|
}
|
|
4585
4585
|
Sample(){
|
|
4586
4586
|
const obj = new this.$.$mol_plot_graph_sample();
|
|
4587
|
-
(obj.sub) = () => ((this
|
|
4587
|
+
(obj.sub) = () => ((this?.graph_samples()));
|
|
4588
4588
|
return obj;
|
|
4589
4589
|
}
|
|
4590
4590
|
};
|
|
@@ -4668,7 +4668,7 @@ var $;
|
|
|
4668
4668
|
return "path";
|
|
4669
4669
|
}
|
|
4670
4670
|
attr(){
|
|
4671
|
-
return {...(super.attr()), "d": (this
|
|
4671
|
+
return {...(super.attr()), "d": (this?.geometry())};
|
|
4672
4672
|
}
|
|
4673
4673
|
};
|
|
4674
4674
|
|
|
@@ -4686,7 +4686,7 @@ var $;
|
|
|
4686
4686
|
}
|
|
4687
4687
|
Curve(){
|
|
4688
4688
|
const obj = new this.$.$mol_svg_path();
|
|
4689
|
-
(obj.geometry) = () => ((this
|
|
4689
|
+
(obj.geometry) = () => ((this?.curve()));
|
|
4690
4690
|
return obj;
|
|
4691
4691
|
}
|
|
4692
4692
|
points_max(){
|
|
@@ -4696,14 +4696,14 @@ var $;
|
|
|
4696
4696
|
return 1;
|
|
4697
4697
|
}
|
|
4698
4698
|
style(){
|
|
4699
|
-
return {...(super.style()), "stroke-width": (this
|
|
4699
|
+
return {...(super.style()), "stroke-width": (this?.diameter())};
|
|
4700
4700
|
}
|
|
4701
4701
|
sub(){
|
|
4702
|
-
return [(this
|
|
4702
|
+
return [(this?.Hint()), (this?.Curve())];
|
|
4703
4703
|
}
|
|
4704
4704
|
Sample(){
|
|
4705
4705
|
const obj = new this.$.$mol_plot_graph_sample();
|
|
4706
|
-
(obj.color) = () => ((this
|
|
4706
|
+
(obj.color) = () => ((this?.color()));
|
|
4707
4707
|
return obj;
|
|
4708
4708
|
}
|
|
4709
4709
|
};
|
|
@@ -4849,20 +4849,20 @@ var $;
|
|
|
4849
4849
|
return [];
|
|
4850
4850
|
}
|
|
4851
4851
|
graphs(){
|
|
4852
|
-
return (this
|
|
4852
|
+
return (this?.level_graphs());
|
|
4853
4853
|
}
|
|
4854
4854
|
Level(id){
|
|
4855
4855
|
const obj = new this.$.$mol_plot_map_heat_level();
|
|
4856
|
-
(obj.hint) = () => ((this
|
|
4857
|
-
(obj.points) = () => ((this
|
|
4858
|
-
(obj.opacity) = () => ((this
|
|
4859
|
-
(obj.diameter) = () => ((this
|
|
4860
|
-
(obj.aspect) = () => ((this
|
|
4856
|
+
(obj.hint) = () => ((this?.level_hint(id)));
|
|
4857
|
+
(obj.points) = () => ((this?.level_points(id)));
|
|
4858
|
+
(obj.opacity) = () => ((this?.level_opacity(id)));
|
|
4859
|
+
(obj.diameter) = () => ((this?.level_diameter()));
|
|
4860
|
+
(obj.aspect) = () => ((this?.level_aspect()));
|
|
4861
4861
|
return obj;
|
|
4862
4862
|
}
|
|
4863
4863
|
Sample(){
|
|
4864
4864
|
const obj = new this.$.$mol_plot_graph_sample();
|
|
4865
|
-
(obj.color) = () => ((this
|
|
4865
|
+
(obj.color) = () => ((this?.color()));
|
|
4866
4866
|
return obj;
|
|
4867
4867
|
}
|
|
4868
4868
|
};
|
|
@@ -4873,7 +4873,7 @@ var $;
|
|
|
4873
4873
|
return "1";
|
|
4874
4874
|
}
|
|
4875
4875
|
style(){
|
|
4876
|
-
return {...(super.style()), "opacity": (this
|
|
4876
|
+
return {...(super.style()), "opacity": (this?.opacity())};
|
|
4877
4877
|
}
|
|
4878
4878
|
};
|
|
4879
4879
|
|
|
@@ -4961,18 +4961,18 @@ var $;
|
|
|
4961
4961
|
}
|
|
4962
4962
|
Curve(){
|
|
4963
4963
|
const obj = new this.$.$mol_svg_path();
|
|
4964
|
-
(obj.geometry) = () => ((this
|
|
4964
|
+
(obj.geometry) = () => ((this?.curve()));
|
|
4965
4965
|
return obj;
|
|
4966
4966
|
}
|
|
4967
4967
|
style(){
|
|
4968
|
-
return {...(super.style()), "stroke-width": (this
|
|
4968
|
+
return {...(super.style()), "stroke-width": (this?.stroke_width())};
|
|
4969
4969
|
}
|
|
4970
4970
|
sub(){
|
|
4971
|
-
return [(this
|
|
4971
|
+
return [(this?.Hint()), (this?.Curve())];
|
|
4972
4972
|
}
|
|
4973
4973
|
Sample(){
|
|
4974
4974
|
const obj = new this.$.$mol_plot_graph_sample();
|
|
4975
|
-
(obj.color) = () => ((this
|
|
4975
|
+
(obj.color) = () => ((this?.color()));
|
|
4976
4976
|
return obj;
|
|
4977
4977
|
}
|
|
4978
4978
|
};
|
|
@@ -5139,10 +5139,10 @@ var $;
|
|
|
5139
5139
|
attr(){
|
|
5140
5140
|
return {
|
|
5141
5141
|
...(super.attr()),
|
|
5142
|
-
"width": (this
|
|
5143
|
-
"height": (this
|
|
5144
|
-
"x": (this
|
|
5145
|
-
"y": (this
|
|
5142
|
+
"width": (this?.width()),
|
|
5143
|
+
"height": (this?.height()),
|
|
5144
|
+
"x": (this?.pos_x()),
|
|
5145
|
+
"y": (this?.pos_y())
|
|
5146
5146
|
};
|
|
5147
5147
|
}
|
|
5148
5148
|
};
|
|
@@ -5181,7 +5181,7 @@ var $;
|
|
|
5181
5181
|
return "middle";
|
|
5182
5182
|
}
|
|
5183
5183
|
align_hor(){
|
|
5184
|
-
return (this
|
|
5184
|
+
return (this?.align());
|
|
5185
5185
|
}
|
|
5186
5186
|
align_vert(){
|
|
5187
5187
|
return "baseline";
|
|
@@ -5198,14 +5198,14 @@ var $;
|
|
|
5198
5198
|
attr(){
|
|
5199
5199
|
return {
|
|
5200
5200
|
...(super.attr()),
|
|
5201
|
-
"x": (this
|
|
5202
|
-
"y": (this
|
|
5203
|
-
"text-anchor": (this
|
|
5204
|
-
"alignment-baseline": (this
|
|
5201
|
+
"x": (this?.pos_x()),
|
|
5202
|
+
"y": (this?.pos_y()),
|
|
5203
|
+
"text-anchor": (this?.align_hor()),
|
|
5204
|
+
"alignment-baseline": (this?.align_vert())
|
|
5205
5205
|
};
|
|
5206
5206
|
}
|
|
5207
5207
|
sub(){
|
|
5208
|
-
return [(this
|
|
5208
|
+
return [(this?.text())];
|
|
5209
5209
|
}
|
|
5210
5210
|
};
|
|
5211
5211
|
|
|
@@ -5254,10 +5254,10 @@ var $;
|
|
|
5254
5254
|
}
|
|
5255
5255
|
Background(){
|
|
5256
5256
|
const obj = new this.$.$mol_svg_rect();
|
|
5257
|
-
(obj.pos_x) = () => ((this
|
|
5258
|
-
(obj.pos_y) = () => ((this
|
|
5259
|
-
(obj.width) = () => ((this
|
|
5260
|
-
(obj.height) = () => ((this
|
|
5257
|
+
(obj.pos_x) = () => ((this?.background_x()));
|
|
5258
|
+
(obj.pos_y) = () => ((this?.background_y()));
|
|
5259
|
+
(obj.width) = () => ((this?.background_width()));
|
|
5260
|
+
(obj.height) = () => ((this?.background_height()));
|
|
5261
5261
|
return obj;
|
|
5262
5262
|
}
|
|
5263
5263
|
curve(){
|
|
@@ -5265,7 +5265,7 @@ var $;
|
|
|
5265
5265
|
}
|
|
5266
5266
|
Curve(){
|
|
5267
5267
|
const obj = new this.$.$mol_svg_path();
|
|
5268
|
-
(obj.geometry) = () => ((this
|
|
5268
|
+
(obj.geometry) = () => ((this?.curve()));
|
|
5269
5269
|
return obj;
|
|
5270
5270
|
}
|
|
5271
5271
|
labels_formatted(){
|
|
@@ -5282,10 +5282,10 @@ var $;
|
|
|
5282
5282
|
}
|
|
5283
5283
|
Title(){
|
|
5284
5284
|
const obj = new this.$.$mol_svg_text();
|
|
5285
|
-
(obj.pos_x) = () => ((this
|
|
5286
|
-
(obj.pos_y) = () => ((this
|
|
5287
|
-
(obj.align) = () => ((this
|
|
5288
|
-
(obj.text) = () => ((this
|
|
5285
|
+
(obj.pos_x) = () => ((this?.title_pos_x()));
|
|
5286
|
+
(obj.pos_y) = () => ((this?.title_pos_y()));
|
|
5287
|
+
(obj.align) = () => ((this?.title_align()));
|
|
5288
|
+
(obj.text) = () => ((this?.title()));
|
|
5289
5289
|
return obj;
|
|
5290
5290
|
}
|
|
5291
5291
|
label_pos_x(id){
|
|
@@ -5295,7 +5295,7 @@ var $;
|
|
|
5295
5295
|
return "";
|
|
5296
5296
|
}
|
|
5297
5297
|
label_pos(id){
|
|
5298
|
-
return [(this
|
|
5298
|
+
return [(this?.label_pos_x(id)), (this?.label_pos_y(id))];
|
|
5299
5299
|
}
|
|
5300
5300
|
label_text(id){
|
|
5301
5301
|
return "";
|
|
@@ -5335,17 +5335,17 @@ var $;
|
|
|
5335
5335
|
}
|
|
5336
5336
|
sub(){
|
|
5337
5337
|
return [
|
|
5338
|
-
(this
|
|
5339
|
-
(this
|
|
5340
|
-
(this
|
|
5341
|
-
(this
|
|
5338
|
+
(this?.Background()),
|
|
5339
|
+
(this?.Curve()),
|
|
5340
|
+
(this?.labels_formatted()),
|
|
5341
|
+
(this?.Title())
|
|
5342
5342
|
];
|
|
5343
5343
|
}
|
|
5344
5344
|
Label(id){
|
|
5345
5345
|
const obj = new this.$.$mol_svg_text();
|
|
5346
|
-
(obj.pos) = () => ((this
|
|
5347
|
-
(obj.text) = () => ((this
|
|
5348
|
-
(obj.align) = () => ((this
|
|
5346
|
+
(obj.pos) = () => ((this?.label_pos(id)));
|
|
5347
|
+
(obj.text) = () => ((this?.label_text(id)));
|
|
5348
|
+
(obj.align) = () => ((this?.label_align()));
|
|
5349
5349
|
return obj;
|
|
5350
5350
|
}
|
|
5351
5351
|
};
|
|
@@ -5484,13 +5484,13 @@ var $;
|
|
|
5484
5484
|
return "14";
|
|
5485
5485
|
}
|
|
5486
5486
|
label_pos_x(id){
|
|
5487
|
-
return (this
|
|
5487
|
+
return (this?.title_pos_x());
|
|
5488
5488
|
}
|
|
5489
5489
|
background_height(){
|
|
5490
5490
|
return "100%";
|
|
5491
5491
|
}
|
|
5492
5492
|
background_width(){
|
|
5493
|
-
return (this
|
|
5493
|
+
return (this?.title_pos_x());
|
|
5494
5494
|
}
|
|
5495
5495
|
};
|
|
5496
5496
|
|
|
@@ -5562,7 +5562,7 @@ var $;
|
|
|
5562
5562
|
return "100%";
|
|
5563
5563
|
}
|
|
5564
5564
|
label_pos_y(id){
|
|
5565
|
-
return (this
|
|
5565
|
+
return (this?.title_pos_y());
|
|
5566
5566
|
}
|
|
5567
5567
|
background_width(){
|
|
5568
5568
|
return "100%";
|
|
@@ -5637,16 +5637,16 @@ var $;
|
|
|
5637
5637
|
return "1rem";
|
|
5638
5638
|
}
|
|
5639
5639
|
box_pos_x(){
|
|
5640
|
-
return (this
|
|
5640
|
+
return (this?.pos_x());
|
|
5641
5641
|
}
|
|
5642
5642
|
box_pos_y(){
|
|
5643
5643
|
return "0";
|
|
5644
5644
|
}
|
|
5645
5645
|
Back(){
|
|
5646
5646
|
const obj = new this.$.$mol_svg_rect();
|
|
5647
|
-
(obj.width) = () => ((this
|
|
5648
|
-
(obj.height) = () => ((this
|
|
5649
|
-
(obj.pos) = () => ([(this
|
|
5647
|
+
(obj.width) = () => ((this?.box_width()));
|
|
5648
|
+
(obj.height) = () => ((this?.box_height()));
|
|
5649
|
+
(obj.pos) = () => ([(this?.box_pos_x()), (this?.box_pos_y())]);
|
|
5650
5650
|
return obj;
|
|
5651
5651
|
}
|
|
5652
5652
|
pos_x(){
|
|
@@ -5663,9 +5663,9 @@ var $;
|
|
|
5663
5663
|
}
|
|
5664
5664
|
Text(){
|
|
5665
5665
|
const obj = new this.$.$mol_svg_text();
|
|
5666
|
-
(obj.pos) = () => ([(this
|
|
5667
|
-
(obj.align) = () => ((this
|
|
5668
|
-
(obj.sub) = () => ([(this
|
|
5666
|
+
(obj.pos) = () => ([(this?.pos_x()), (this?.pos_y())]);
|
|
5667
|
+
(obj.align) = () => ((this?.align()));
|
|
5668
|
+
(obj.sub) = () => ([(this?.text())]);
|
|
5669
5669
|
return obj;
|
|
5670
5670
|
}
|
|
5671
5671
|
font_size(){
|
|
@@ -5675,7 +5675,7 @@ var $;
|
|
|
5675
5675
|
return 0;
|
|
5676
5676
|
}
|
|
5677
5677
|
sub(){
|
|
5678
|
-
return [(this
|
|
5678
|
+
return [(this?.Back()), (this?.Text())];
|
|
5679
5679
|
}
|
|
5680
5680
|
};
|
|
5681
5681
|
($mol_mem(($.$mol_svg_text_box.prototype), "Back"));
|
|
@@ -5764,7 +5764,7 @@ var $;
|
|
|
5764
5764
|
}
|
|
5765
5765
|
Curve(){
|
|
5766
5766
|
const obj = new this.$.$mol_svg_path();
|
|
5767
|
-
(obj.geometry) = () => ((this
|
|
5767
|
+
(obj.geometry) = () => ((this?.curve()));
|
|
5768
5768
|
return obj;
|
|
5769
5769
|
}
|
|
5770
5770
|
title_x_pos_x(){
|
|
@@ -5778,9 +5778,9 @@ var $;
|
|
|
5778
5778
|
}
|
|
5779
5779
|
Label_x(){
|
|
5780
5780
|
const obj = new this.$.$mol_svg_text_box();
|
|
5781
|
-
(obj.pos_x) = () => ((this
|
|
5782
|
-
(obj.pos_y) = () => ((this
|
|
5783
|
-
(obj.text) = () => ((this
|
|
5781
|
+
(obj.pos_x) = () => ((this?.title_x_pos_x()));
|
|
5782
|
+
(obj.pos_y) = () => ((this?.title_x_pos_y()));
|
|
5783
|
+
(obj.text) = () => ((this?.title_x()));
|
|
5784
5784
|
return obj;
|
|
5785
5785
|
}
|
|
5786
5786
|
title_y_pos_x(){
|
|
@@ -5794,9 +5794,9 @@ var $;
|
|
|
5794
5794
|
}
|
|
5795
5795
|
Label_y(){
|
|
5796
5796
|
const obj = new this.$.$mol_svg_text_box();
|
|
5797
|
-
(obj.pos_x) = () => ((this
|
|
5798
|
-
(obj.pos_y) = () => ((this
|
|
5799
|
-
(obj.text) = () => ((this
|
|
5797
|
+
(obj.pos_x) = () => ((this?.title_y_pos_x()));
|
|
5798
|
+
(obj.pos_y) = () => ((this?.title_y_pos_y()));
|
|
5799
|
+
(obj.text) = () => ((this?.title_y()));
|
|
5800
5800
|
return obj;
|
|
5801
5801
|
}
|
|
5802
5802
|
labels(){
|
|
@@ -5815,14 +5815,14 @@ var $;
|
|
|
5815
5815
|
return [];
|
|
5816
5816
|
}
|
|
5817
5817
|
dimensions(){
|
|
5818
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
5818
|
+
const obj = new this.$.$mol_vector_2d((this?.dimensions_x()), (this?.dimensions_y()));
|
|
5819
5819
|
return obj;
|
|
5820
5820
|
}
|
|
5821
5821
|
sub(){
|
|
5822
5822
|
return [
|
|
5823
|
-
(this
|
|
5824
|
-
(this
|
|
5825
|
-
(this
|
|
5823
|
+
(this?.Curve()),
|
|
5824
|
+
(this?.Label_x()),
|
|
5825
|
+
(this?.Label_y())
|
|
5826
5826
|
];
|
|
5827
5827
|
}
|
|
5828
5828
|
};
|