mol_plot_all 1.2.556 → 1.2.558
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 -1
- package/node.deps.json +1 -1
- package/node.js +3 -0
- package/node.js.map +1 -1
- package/node.mjs +3 -0
- package/node.mjs.map +1 -1
- package/node.test.js +4 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +2 -1
- package/web.deps.json +1 -1
- package/web.js +3 -0
- package/web.js.map +1 -1
- package/web.mjs +3 -0
- package/web.mjs.map +1 -1
- package/web.test.js +1 -1
- package/web.test.js.map +1 -1
package/web.mjs
CHANGED
|
@@ -1858,6 +1858,9 @@ var $;
|
|
|
1858
1858
|
static scale(zoom) {
|
|
1859
1859
|
return new $mol_style_func('scale', [zoom]);
|
|
1860
1860
|
}
|
|
1861
|
+
static cubic_bezier(x1, y1, x2, y2) {
|
|
1862
|
+
return new $mol_style_func('cubic-bezier', [x1, y1, x2, y2]);
|
|
1863
|
+
}
|
|
1861
1864
|
}
|
|
1862
1865
|
$.$mol_style_func = $mol_style_func;
|
|
1863
1866
|
})($ || ($ = {}));
|