mol_plot_all 1.2.352 → 1.2.354
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 +2 -2
- package/node.esm.js +8 -3
- package/node.esm.js.map +1 -1
- package/node.js +8 -3
- package/node.js.map +1 -1
- package/node.test.js +8 -3
- package/node.test.js.map +1 -1
- package/node.view.tree +1 -1
- package/package.json +1 -1
- package/web.d.ts +2 -2
- package/web.esm.js +8 -3
- package/web.esm.js.map +1 -1
- package/web.js +8 -3
- package/web.js.map +1 -1
- package/web.view.tree +1 -1
package/node.d.ts
CHANGED
|
@@ -843,7 +843,7 @@ declare namespace $ {
|
|
|
843
843
|
front(): readonly $mol_svg[];
|
|
844
844
|
back(): readonly $mol_svg[];
|
|
845
845
|
Hint(): $mol_svg_title;
|
|
846
|
-
hue():
|
|
846
|
+
hue(): any;
|
|
847
847
|
Sample(): any;
|
|
848
848
|
type(): string;
|
|
849
849
|
color(): string;
|
|
@@ -960,7 +960,7 @@ declare namespace $.$$ {
|
|
|
960
960
|
declare namespace $ {
|
|
961
961
|
class $mol_plot_pane extends $mol_svg_root {
|
|
962
962
|
aspect(): string;
|
|
963
|
-
hue_base(val?: any):
|
|
963
|
+
hue_base(val?: any): any;
|
|
964
964
|
hue_shift(val?: any): number;
|
|
965
965
|
gap_hor(): number;
|
|
966
966
|
gap_vert(): number;
|
package/node.esm.js
CHANGED
|
@@ -3076,7 +3076,8 @@ var $;
|
|
|
3076
3076
|
return obj;
|
|
3077
3077
|
}
|
|
3078
3078
|
hue() {
|
|
3079
|
-
|
|
3079
|
+
const obj = new this.$.NaN();
|
|
3080
|
+
return obj;
|
|
3080
3081
|
}
|
|
3081
3082
|
Sample() {
|
|
3082
3083
|
return null;
|
|
@@ -3147,6 +3148,9 @@ var $;
|
|
|
3147
3148
|
__decorate([
|
|
3148
3149
|
$mol_mem
|
|
3149
3150
|
], $mol_plot_graph.prototype, "Hint", null);
|
|
3151
|
+
__decorate([
|
|
3152
|
+
$mol_mem
|
|
3153
|
+
], $mol_plot_graph.prototype, "hue", null);
|
|
3150
3154
|
__decorate([
|
|
3151
3155
|
$mol_mem
|
|
3152
3156
|
], $mol_plot_graph.prototype, "viewport_x", null);
|
|
@@ -3804,7 +3808,8 @@ var $;
|
|
|
3804
3808
|
hue_base(val) {
|
|
3805
3809
|
if (val !== undefined)
|
|
3806
3810
|
return val;
|
|
3807
|
-
|
|
3811
|
+
const obj = new this.$.NaN();
|
|
3812
|
+
return obj;
|
|
3808
3813
|
}
|
|
3809
3814
|
hue_shift(val) {
|
|
3810
3815
|
if (val !== undefined)
|
|
@@ -4542,7 +4547,7 @@ var $;
|
|
|
4542
4547
|
(function ($) {
|
|
4543
4548
|
class $mol_plot_dot extends $mol_plot_graph {
|
|
4544
4549
|
points_max() {
|
|
4545
|
-
return Infinity;
|
|
4550
|
+
return +Infinity;
|
|
4546
4551
|
}
|
|
4547
4552
|
aspect() {
|
|
4548
4553
|
return 1;
|