mol_plot_all 1.2.647 → 1.2.649
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 +28 -28
- package/node.js +86 -86
- package/node.js.map +1 -1
- package/node.mjs +86 -86
- package/node.test.js +94 -94
- package/node.test.js.map +1 -1
- package/node.view.tree +29 -29
- package/package.json +1 -1
- package/web.d.ts +28 -28
- package/web.js +86 -86
- package/web.js.map +1 -1
- package/web.mjs +86 -86
- package/web.test.js +8 -8
- package/web.test.js.map +1 -1
- package/web.view.tree +29 -29
package/node.mjs
CHANGED
|
@@ -3548,19 +3548,19 @@ var $;
|
|
|
3548
3548
|
var $;
|
|
3549
3549
|
(function ($) {
|
|
3550
3550
|
class $mol_touch extends $mol_plugin {
|
|
3551
|
-
start_zoom(
|
|
3552
|
-
if (
|
|
3553
|
-
return
|
|
3551
|
+
start_zoom(next) {
|
|
3552
|
+
if (next !== undefined)
|
|
3553
|
+
return next;
|
|
3554
3554
|
return 0;
|
|
3555
3555
|
}
|
|
3556
|
-
start_distance(
|
|
3557
|
-
if (
|
|
3558
|
-
return
|
|
3556
|
+
start_distance(next) {
|
|
3557
|
+
if (next !== undefined)
|
|
3558
|
+
return next;
|
|
3559
3559
|
return 0;
|
|
3560
3560
|
}
|
|
3561
|
-
zoom(
|
|
3562
|
-
if (
|
|
3563
|
-
return
|
|
3561
|
+
zoom(next) {
|
|
3562
|
+
if (next !== undefined)
|
|
3563
|
+
return next;
|
|
3564
3564
|
return 1;
|
|
3565
3565
|
}
|
|
3566
3566
|
allow_draw() {
|
|
@@ -3572,28 +3572,28 @@ var $;
|
|
|
3572
3572
|
allow_zoom() {
|
|
3573
3573
|
return true;
|
|
3574
3574
|
}
|
|
3575
|
-
action_type(
|
|
3576
|
-
if (
|
|
3577
|
-
return
|
|
3575
|
+
action_type(next) {
|
|
3576
|
+
if (next !== undefined)
|
|
3577
|
+
return next;
|
|
3578
3578
|
return "";
|
|
3579
3579
|
}
|
|
3580
|
-
action_point(
|
|
3581
|
-
if (
|
|
3582
|
-
return
|
|
3580
|
+
action_point(next) {
|
|
3581
|
+
if (next !== undefined)
|
|
3582
|
+
return next;
|
|
3583
3583
|
const obj = new this.$.$mol_vector_2d(NaN, NaN);
|
|
3584
3584
|
return obj;
|
|
3585
3585
|
}
|
|
3586
|
-
start_pan(
|
|
3587
|
-
if (
|
|
3588
|
-
return
|
|
3586
|
+
start_pan(next) {
|
|
3587
|
+
if (next !== undefined)
|
|
3588
|
+
return next;
|
|
3589
3589
|
return [
|
|
3590
3590
|
0,
|
|
3591
3591
|
0
|
|
3592
3592
|
];
|
|
3593
3593
|
}
|
|
3594
|
-
pan(
|
|
3595
|
-
if (
|
|
3596
|
-
return
|
|
3594
|
+
pan(next) {
|
|
3595
|
+
if (next !== undefined)
|
|
3596
|
+
return next;
|
|
3597
3597
|
const obj = new this.$.$mol_vector_2d(0, 0);
|
|
3598
3598
|
return obj;
|
|
3599
3599
|
}
|
|
@@ -3601,72 +3601,72 @@ var $;
|
|
|
3601
3601
|
const obj = new this.$.$mol_vector_2d(NaN, NaN);
|
|
3602
3602
|
return obj;
|
|
3603
3603
|
}
|
|
3604
|
-
start_pos(
|
|
3605
|
-
if (
|
|
3606
|
-
return
|
|
3604
|
+
start_pos(next) {
|
|
3605
|
+
if (next !== undefined)
|
|
3606
|
+
return next;
|
|
3607
3607
|
return null;
|
|
3608
3608
|
}
|
|
3609
3609
|
swipe_precision() {
|
|
3610
3610
|
return 16;
|
|
3611
3611
|
}
|
|
3612
|
-
swipe_right(
|
|
3613
|
-
if (
|
|
3614
|
-
return
|
|
3612
|
+
swipe_right(next) {
|
|
3613
|
+
if (next !== undefined)
|
|
3614
|
+
return next;
|
|
3615
3615
|
return null;
|
|
3616
3616
|
}
|
|
3617
|
-
swipe_bottom(
|
|
3618
|
-
if (
|
|
3619
|
-
return
|
|
3617
|
+
swipe_bottom(next) {
|
|
3618
|
+
if (next !== undefined)
|
|
3619
|
+
return next;
|
|
3620
3620
|
return null;
|
|
3621
3621
|
}
|
|
3622
|
-
swipe_left(
|
|
3623
|
-
if (
|
|
3624
|
-
return
|
|
3622
|
+
swipe_left(next) {
|
|
3623
|
+
if (next !== undefined)
|
|
3624
|
+
return next;
|
|
3625
3625
|
return null;
|
|
3626
3626
|
}
|
|
3627
|
-
swipe_top(
|
|
3628
|
-
if (
|
|
3629
|
-
return
|
|
3627
|
+
swipe_top(next) {
|
|
3628
|
+
if (next !== undefined)
|
|
3629
|
+
return next;
|
|
3630
3630
|
return null;
|
|
3631
3631
|
}
|
|
3632
|
-
swipe_from_right(
|
|
3633
|
-
if (
|
|
3634
|
-
return
|
|
3632
|
+
swipe_from_right(next) {
|
|
3633
|
+
if (next !== undefined)
|
|
3634
|
+
return next;
|
|
3635
3635
|
return null;
|
|
3636
3636
|
}
|
|
3637
|
-
swipe_from_bottom(
|
|
3638
|
-
if (
|
|
3639
|
-
return
|
|
3637
|
+
swipe_from_bottom(next) {
|
|
3638
|
+
if (next !== undefined)
|
|
3639
|
+
return next;
|
|
3640
3640
|
return null;
|
|
3641
3641
|
}
|
|
3642
|
-
swipe_from_left(
|
|
3643
|
-
if (
|
|
3644
|
-
return
|
|
3642
|
+
swipe_from_left(next) {
|
|
3643
|
+
if (next !== undefined)
|
|
3644
|
+
return next;
|
|
3645
3645
|
return null;
|
|
3646
3646
|
}
|
|
3647
|
-
swipe_from_top(
|
|
3648
|
-
if (
|
|
3649
|
-
return
|
|
3647
|
+
swipe_from_top(next) {
|
|
3648
|
+
if (next !== undefined)
|
|
3649
|
+
return next;
|
|
3650
3650
|
return null;
|
|
3651
3651
|
}
|
|
3652
|
-
swipe_to_right(
|
|
3653
|
-
if (
|
|
3654
|
-
return
|
|
3652
|
+
swipe_to_right(next) {
|
|
3653
|
+
if (next !== undefined)
|
|
3654
|
+
return next;
|
|
3655
3655
|
return null;
|
|
3656
3656
|
}
|
|
3657
|
-
swipe_to_bottom(
|
|
3658
|
-
if (
|
|
3659
|
-
return
|
|
3657
|
+
swipe_to_bottom(next) {
|
|
3658
|
+
if (next !== undefined)
|
|
3659
|
+
return next;
|
|
3660
3660
|
return null;
|
|
3661
3661
|
}
|
|
3662
|
-
swipe_to_left(
|
|
3663
|
-
if (
|
|
3664
|
-
return
|
|
3662
|
+
swipe_to_left(next) {
|
|
3663
|
+
if (next !== undefined)
|
|
3664
|
+
return next;
|
|
3665
3665
|
return null;
|
|
3666
3666
|
}
|
|
3667
|
-
swipe_to_top(
|
|
3668
|
-
if (
|
|
3669
|
-
return
|
|
3667
|
+
swipe_to_top(next) {
|
|
3668
|
+
if (next !== undefined)
|
|
3669
|
+
return next;
|
|
3670
3670
|
return null;
|
|
3671
3671
|
}
|
|
3672
3672
|
draw_start(event) {
|
|
@@ -4071,14 +4071,14 @@ var $;
|
|
|
4071
4071
|
aspect() {
|
|
4072
4072
|
return "none";
|
|
4073
4073
|
}
|
|
4074
|
-
hue_base(
|
|
4075
|
-
if (
|
|
4076
|
-
return
|
|
4074
|
+
hue_base(next) {
|
|
4075
|
+
if (next !== undefined)
|
|
4076
|
+
return next;
|
|
4077
4077
|
return +NaN;
|
|
4078
4078
|
}
|
|
4079
|
-
hue_shift(
|
|
4080
|
-
if (
|
|
4081
|
-
return
|
|
4079
|
+
hue_shift(next) {
|
|
4080
|
+
if (next !== undefined)
|
|
4081
|
+
return next;
|
|
4082
4082
|
return 111;
|
|
4083
4083
|
}
|
|
4084
4084
|
gap_hor() {
|
|
@@ -4111,9 +4111,9 @@ var $;
|
|
|
4111
4111
|
const obj = new this.$.$mol_vector_2d(0, 0);
|
|
4112
4112
|
return obj;
|
|
4113
4113
|
}
|
|
4114
|
-
shift(
|
|
4115
|
-
if (
|
|
4116
|
-
return
|
|
4114
|
+
shift(next) {
|
|
4115
|
+
if (next !== undefined)
|
|
4116
|
+
return next;
|
|
4117
4117
|
const obj = new this.$.$mol_vector_2d(0, 0);
|
|
4118
4118
|
return obj;
|
|
4119
4119
|
}
|
|
@@ -4125,20 +4125,20 @@ var $;
|
|
|
4125
4125
|
const obj = new this.$.$mol_vector_2d(0, 0);
|
|
4126
4126
|
return obj;
|
|
4127
4127
|
}
|
|
4128
|
-
scale(
|
|
4129
|
-
if (
|
|
4130
|
-
return
|
|
4128
|
+
scale(next) {
|
|
4129
|
+
if (next !== undefined)
|
|
4130
|
+
return next;
|
|
4131
4131
|
const obj = new this.$.$mol_vector_2d(1, -1);
|
|
4132
4132
|
return obj;
|
|
4133
4133
|
}
|
|
4134
|
-
scale_x(
|
|
4135
|
-
if (
|
|
4136
|
-
return
|
|
4134
|
+
scale_x(next) {
|
|
4135
|
+
if (next !== undefined)
|
|
4136
|
+
return next;
|
|
4137
4137
|
return 1;
|
|
4138
4138
|
}
|
|
4139
|
-
scale_y(
|
|
4140
|
-
if (
|
|
4141
|
-
return
|
|
4139
|
+
scale_y(next) {
|
|
4140
|
+
if (next !== undefined)
|
|
4141
|
+
return next;
|
|
4142
4142
|
return -1;
|
|
4143
4143
|
}
|
|
4144
4144
|
size() {
|
|
@@ -4221,9 +4221,9 @@ var $;
|
|
|
4221
4221
|
graphs_visible() {
|
|
4222
4222
|
return this.graphs_positioned();
|
|
4223
4223
|
}
|
|
4224
|
-
zoom(
|
|
4225
|
-
if (
|
|
4226
|
-
return
|
|
4224
|
+
zoom(next) {
|
|
4225
|
+
if (next !== undefined)
|
|
4226
|
+
return next;
|
|
4227
4227
|
return 1;
|
|
4228
4228
|
}
|
|
4229
4229
|
allow_draw() {
|
|
@@ -4261,8 +4261,8 @@ var $;
|
|
|
4261
4261
|
}
|
|
4262
4262
|
Touch() {
|
|
4263
4263
|
const obj = new this.$.$mol_touch();
|
|
4264
|
-
obj.zoom = (
|
|
4265
|
-
obj.pan = (
|
|
4264
|
+
obj.zoom = (next) => this.zoom(next);
|
|
4265
|
+
obj.pan = (next) => this.shift(next);
|
|
4266
4266
|
obj.allow_draw = () => this.allow_draw();
|
|
4267
4267
|
obj.allow_pan = () => this.allow_pan();
|
|
4268
4268
|
obj.allow_zoom = () => this.allow_zoom();
|
|
@@ -5425,9 +5425,9 @@ var $;
|
|
|
5425
5425
|
axis_points() {
|
|
5426
5426
|
return [];
|
|
5427
5427
|
}
|
|
5428
|
-
normalize(
|
|
5429
|
-
if (
|
|
5430
|
-
return
|
|
5428
|
+
normalize(next) {
|
|
5429
|
+
if (next !== undefined)
|
|
5430
|
+
return next;
|
|
5431
5431
|
return 0;
|
|
5432
5432
|
}
|
|
5433
5433
|
precision() {
|
package/node.test.js
CHANGED
|
@@ -3540,19 +3540,19 @@ var $;
|
|
|
3540
3540
|
var $;
|
|
3541
3541
|
(function ($) {
|
|
3542
3542
|
class $mol_touch extends $mol_plugin {
|
|
3543
|
-
start_zoom(
|
|
3544
|
-
if (
|
|
3545
|
-
return
|
|
3543
|
+
start_zoom(next) {
|
|
3544
|
+
if (next !== undefined)
|
|
3545
|
+
return next;
|
|
3546
3546
|
return 0;
|
|
3547
3547
|
}
|
|
3548
|
-
start_distance(
|
|
3549
|
-
if (
|
|
3550
|
-
return
|
|
3548
|
+
start_distance(next) {
|
|
3549
|
+
if (next !== undefined)
|
|
3550
|
+
return next;
|
|
3551
3551
|
return 0;
|
|
3552
3552
|
}
|
|
3553
|
-
zoom(
|
|
3554
|
-
if (
|
|
3555
|
-
return
|
|
3553
|
+
zoom(next) {
|
|
3554
|
+
if (next !== undefined)
|
|
3555
|
+
return next;
|
|
3556
3556
|
return 1;
|
|
3557
3557
|
}
|
|
3558
3558
|
allow_draw() {
|
|
@@ -3564,28 +3564,28 @@ var $;
|
|
|
3564
3564
|
allow_zoom() {
|
|
3565
3565
|
return true;
|
|
3566
3566
|
}
|
|
3567
|
-
action_type(
|
|
3568
|
-
if (
|
|
3569
|
-
return
|
|
3567
|
+
action_type(next) {
|
|
3568
|
+
if (next !== undefined)
|
|
3569
|
+
return next;
|
|
3570
3570
|
return "";
|
|
3571
3571
|
}
|
|
3572
|
-
action_point(
|
|
3573
|
-
if (
|
|
3574
|
-
return
|
|
3572
|
+
action_point(next) {
|
|
3573
|
+
if (next !== undefined)
|
|
3574
|
+
return next;
|
|
3575
3575
|
const obj = new this.$.$mol_vector_2d(NaN, NaN);
|
|
3576
3576
|
return obj;
|
|
3577
3577
|
}
|
|
3578
|
-
start_pan(
|
|
3579
|
-
if (
|
|
3580
|
-
return
|
|
3578
|
+
start_pan(next) {
|
|
3579
|
+
if (next !== undefined)
|
|
3580
|
+
return next;
|
|
3581
3581
|
return [
|
|
3582
3582
|
0,
|
|
3583
3583
|
0
|
|
3584
3584
|
];
|
|
3585
3585
|
}
|
|
3586
|
-
pan(
|
|
3587
|
-
if (
|
|
3588
|
-
return
|
|
3586
|
+
pan(next) {
|
|
3587
|
+
if (next !== undefined)
|
|
3588
|
+
return next;
|
|
3589
3589
|
const obj = new this.$.$mol_vector_2d(0, 0);
|
|
3590
3590
|
return obj;
|
|
3591
3591
|
}
|
|
@@ -3593,72 +3593,72 @@ var $;
|
|
|
3593
3593
|
const obj = new this.$.$mol_vector_2d(NaN, NaN);
|
|
3594
3594
|
return obj;
|
|
3595
3595
|
}
|
|
3596
|
-
start_pos(
|
|
3597
|
-
if (
|
|
3598
|
-
return
|
|
3596
|
+
start_pos(next) {
|
|
3597
|
+
if (next !== undefined)
|
|
3598
|
+
return next;
|
|
3599
3599
|
return null;
|
|
3600
3600
|
}
|
|
3601
3601
|
swipe_precision() {
|
|
3602
3602
|
return 16;
|
|
3603
3603
|
}
|
|
3604
|
-
swipe_right(
|
|
3605
|
-
if (
|
|
3606
|
-
return
|
|
3604
|
+
swipe_right(next) {
|
|
3605
|
+
if (next !== undefined)
|
|
3606
|
+
return next;
|
|
3607
3607
|
return null;
|
|
3608
3608
|
}
|
|
3609
|
-
swipe_bottom(
|
|
3610
|
-
if (
|
|
3611
|
-
return
|
|
3609
|
+
swipe_bottom(next) {
|
|
3610
|
+
if (next !== undefined)
|
|
3611
|
+
return next;
|
|
3612
3612
|
return null;
|
|
3613
3613
|
}
|
|
3614
|
-
swipe_left(
|
|
3615
|
-
if (
|
|
3616
|
-
return
|
|
3614
|
+
swipe_left(next) {
|
|
3615
|
+
if (next !== undefined)
|
|
3616
|
+
return next;
|
|
3617
3617
|
return null;
|
|
3618
3618
|
}
|
|
3619
|
-
swipe_top(
|
|
3620
|
-
if (
|
|
3621
|
-
return
|
|
3619
|
+
swipe_top(next) {
|
|
3620
|
+
if (next !== undefined)
|
|
3621
|
+
return next;
|
|
3622
3622
|
return null;
|
|
3623
3623
|
}
|
|
3624
|
-
swipe_from_right(
|
|
3625
|
-
if (
|
|
3626
|
-
return
|
|
3624
|
+
swipe_from_right(next) {
|
|
3625
|
+
if (next !== undefined)
|
|
3626
|
+
return next;
|
|
3627
3627
|
return null;
|
|
3628
3628
|
}
|
|
3629
|
-
swipe_from_bottom(
|
|
3630
|
-
if (
|
|
3631
|
-
return
|
|
3629
|
+
swipe_from_bottom(next) {
|
|
3630
|
+
if (next !== undefined)
|
|
3631
|
+
return next;
|
|
3632
3632
|
return null;
|
|
3633
3633
|
}
|
|
3634
|
-
swipe_from_left(
|
|
3635
|
-
if (
|
|
3636
|
-
return
|
|
3634
|
+
swipe_from_left(next) {
|
|
3635
|
+
if (next !== undefined)
|
|
3636
|
+
return next;
|
|
3637
3637
|
return null;
|
|
3638
3638
|
}
|
|
3639
|
-
swipe_from_top(
|
|
3640
|
-
if (
|
|
3641
|
-
return
|
|
3639
|
+
swipe_from_top(next) {
|
|
3640
|
+
if (next !== undefined)
|
|
3641
|
+
return next;
|
|
3642
3642
|
return null;
|
|
3643
3643
|
}
|
|
3644
|
-
swipe_to_right(
|
|
3645
|
-
if (
|
|
3646
|
-
return
|
|
3644
|
+
swipe_to_right(next) {
|
|
3645
|
+
if (next !== undefined)
|
|
3646
|
+
return next;
|
|
3647
3647
|
return null;
|
|
3648
3648
|
}
|
|
3649
|
-
swipe_to_bottom(
|
|
3650
|
-
if (
|
|
3651
|
-
return
|
|
3649
|
+
swipe_to_bottom(next) {
|
|
3650
|
+
if (next !== undefined)
|
|
3651
|
+
return next;
|
|
3652
3652
|
return null;
|
|
3653
3653
|
}
|
|
3654
|
-
swipe_to_left(
|
|
3655
|
-
if (
|
|
3656
|
-
return
|
|
3654
|
+
swipe_to_left(next) {
|
|
3655
|
+
if (next !== undefined)
|
|
3656
|
+
return next;
|
|
3657
3657
|
return null;
|
|
3658
3658
|
}
|
|
3659
|
-
swipe_to_top(
|
|
3660
|
-
if (
|
|
3661
|
-
return
|
|
3659
|
+
swipe_to_top(next) {
|
|
3660
|
+
if (next !== undefined)
|
|
3661
|
+
return next;
|
|
3662
3662
|
return null;
|
|
3663
3663
|
}
|
|
3664
3664
|
draw_start(event) {
|
|
@@ -4063,14 +4063,14 @@ var $;
|
|
|
4063
4063
|
aspect() {
|
|
4064
4064
|
return "none";
|
|
4065
4065
|
}
|
|
4066
|
-
hue_base(
|
|
4067
|
-
if (
|
|
4068
|
-
return
|
|
4066
|
+
hue_base(next) {
|
|
4067
|
+
if (next !== undefined)
|
|
4068
|
+
return next;
|
|
4069
4069
|
return +NaN;
|
|
4070
4070
|
}
|
|
4071
|
-
hue_shift(
|
|
4072
|
-
if (
|
|
4073
|
-
return
|
|
4071
|
+
hue_shift(next) {
|
|
4072
|
+
if (next !== undefined)
|
|
4073
|
+
return next;
|
|
4074
4074
|
return 111;
|
|
4075
4075
|
}
|
|
4076
4076
|
gap_hor() {
|
|
@@ -4103,9 +4103,9 @@ var $;
|
|
|
4103
4103
|
const obj = new this.$.$mol_vector_2d(0, 0);
|
|
4104
4104
|
return obj;
|
|
4105
4105
|
}
|
|
4106
|
-
shift(
|
|
4107
|
-
if (
|
|
4108
|
-
return
|
|
4106
|
+
shift(next) {
|
|
4107
|
+
if (next !== undefined)
|
|
4108
|
+
return next;
|
|
4109
4109
|
const obj = new this.$.$mol_vector_2d(0, 0);
|
|
4110
4110
|
return obj;
|
|
4111
4111
|
}
|
|
@@ -4117,20 +4117,20 @@ var $;
|
|
|
4117
4117
|
const obj = new this.$.$mol_vector_2d(0, 0);
|
|
4118
4118
|
return obj;
|
|
4119
4119
|
}
|
|
4120
|
-
scale(
|
|
4121
|
-
if (
|
|
4122
|
-
return
|
|
4120
|
+
scale(next) {
|
|
4121
|
+
if (next !== undefined)
|
|
4122
|
+
return next;
|
|
4123
4123
|
const obj = new this.$.$mol_vector_2d(1, -1);
|
|
4124
4124
|
return obj;
|
|
4125
4125
|
}
|
|
4126
|
-
scale_x(
|
|
4127
|
-
if (
|
|
4128
|
-
return
|
|
4126
|
+
scale_x(next) {
|
|
4127
|
+
if (next !== undefined)
|
|
4128
|
+
return next;
|
|
4129
4129
|
return 1;
|
|
4130
4130
|
}
|
|
4131
|
-
scale_y(
|
|
4132
|
-
if (
|
|
4133
|
-
return
|
|
4131
|
+
scale_y(next) {
|
|
4132
|
+
if (next !== undefined)
|
|
4133
|
+
return next;
|
|
4134
4134
|
return -1;
|
|
4135
4135
|
}
|
|
4136
4136
|
size() {
|
|
@@ -4213,9 +4213,9 @@ var $;
|
|
|
4213
4213
|
graphs_visible() {
|
|
4214
4214
|
return this.graphs_positioned();
|
|
4215
4215
|
}
|
|
4216
|
-
zoom(
|
|
4217
|
-
if (
|
|
4218
|
-
return
|
|
4216
|
+
zoom(next) {
|
|
4217
|
+
if (next !== undefined)
|
|
4218
|
+
return next;
|
|
4219
4219
|
return 1;
|
|
4220
4220
|
}
|
|
4221
4221
|
allow_draw() {
|
|
@@ -4253,8 +4253,8 @@ var $;
|
|
|
4253
4253
|
}
|
|
4254
4254
|
Touch() {
|
|
4255
4255
|
const obj = new this.$.$mol_touch();
|
|
4256
|
-
obj.zoom = (
|
|
4257
|
-
obj.pan = (
|
|
4256
|
+
obj.zoom = (next) => this.zoom(next);
|
|
4257
|
+
obj.pan = (next) => this.shift(next);
|
|
4258
4258
|
obj.allow_draw = () => this.allow_draw();
|
|
4259
4259
|
obj.allow_pan = () => this.allow_pan();
|
|
4260
4260
|
obj.allow_zoom = () => this.allow_zoom();
|
|
@@ -5417,9 +5417,9 @@ var $;
|
|
|
5417
5417
|
axis_points() {
|
|
5418
5418
|
return [];
|
|
5419
5419
|
}
|
|
5420
|
-
normalize(
|
|
5421
|
-
if (
|
|
5422
|
-
return
|
|
5420
|
+
normalize(next) {
|
|
5421
|
+
if (next !== undefined)
|
|
5422
|
+
return next;
|
|
5423
5423
|
return 0;
|
|
5424
5424
|
}
|
|
5425
5425
|
precision() {
|
|
@@ -8256,15 +8256,15 @@ var $;
|
|
|
8256
8256
|
var $;
|
|
8257
8257
|
(function ($) {
|
|
8258
8258
|
class $mol_view_tree_test_binding extends $mol_view {
|
|
8259
|
-
value(
|
|
8260
|
-
return this.task_title_new(
|
|
8259
|
+
value(next) {
|
|
8260
|
+
return this.task_title_new(next);
|
|
8261
8261
|
}
|
|
8262
8262
|
enabled() {
|
|
8263
8263
|
return this.head_complete_enabled();
|
|
8264
8264
|
}
|
|
8265
|
-
task_title_new(
|
|
8266
|
-
if (
|
|
8267
|
-
return
|
|
8265
|
+
task_title_new(next) {
|
|
8266
|
+
if (next !== undefined)
|
|
8267
|
+
return next;
|
|
8268
8268
|
return "123";
|
|
8269
8269
|
}
|
|
8270
8270
|
head_complete_enabled() {
|
|
@@ -8345,9 +8345,9 @@ var $;
|
|
|
8345
8345
|
], $mol_view_tree_test_binding_right.prototype, "Test", null);
|
|
8346
8346
|
$.$mol_view_tree_test_binding_right = $mol_view_tree_test_binding_right;
|
|
8347
8347
|
class $mol_view_tree_test_binding_right_test extends $mol_view {
|
|
8348
|
-
width(
|
|
8349
|
-
if (
|
|
8350
|
-
return
|
|
8348
|
+
width(next) {
|
|
8349
|
+
if (next !== undefined)
|
|
8350
|
+
return next;
|
|
8351
8351
|
return 0;
|
|
8352
8352
|
}
|
|
8353
8353
|
}
|