mol_plot_all 1.2.555 → 1.2.557
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/node.mjs
CHANGED
|
@@ -2425,6 +2425,9 @@ var $;
|
|
|
2425
2425
|
static scale(zoom) {
|
|
2426
2426
|
return new $mol_style_func('scale', [zoom]);
|
|
2427
2427
|
}
|
|
2428
|
+
static cubic_bezier(x1, y1, x2, y2) {
|
|
2429
|
+
return new $mol_style_func('cubic-bezier', [x1, y1, x2, y2]);
|
|
2430
|
+
}
|
|
2428
2431
|
}
|
|
2429
2432
|
$.$mol_style_func = $mol_style_func;
|
|
2430
2433
|
})($ || ($ = {}));
|