mol_plot_all 1.2.861 → 1.2.863
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 +4 -2
- package/node.deps.json +1 -1
- package/node.js +3 -0
- package/node.js.map +1 -1
- package/node.mjs +3 -0
- package/node.test.js +3 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +4 -2
- package/web.deps.json +1 -1
- package/web.js +3 -0
- package/web.js.map +1 -1
- package/web.mjs +3 -0
package/node.mjs
CHANGED
|
@@ -2489,6 +2489,9 @@ var $;
|
|
|
2489
2489
|
}
|
|
2490
2490
|
prefix() { return this.name + '('; }
|
|
2491
2491
|
postfix() { return ')'; }
|
|
2492
|
+
static linear_gradient(value) {
|
|
2493
|
+
return new $mol_style_func('linear-gradient', value);
|
|
2494
|
+
}
|
|
2492
2495
|
static calc(value) {
|
|
2493
2496
|
return new $mol_style_func('calc', value);
|
|
2494
2497
|
}
|
package/node.test.js
CHANGED
|
@@ -2481,6 +2481,9 @@ var $;
|
|
|
2481
2481
|
}
|
|
2482
2482
|
prefix() { return this.name + '('; }
|
|
2483
2483
|
postfix() { return ')'; }
|
|
2484
|
+
static linear_gradient(value) {
|
|
2485
|
+
return new $mol_style_func('linear-gradient', value);
|
|
2486
|
+
}
|
|
2484
2487
|
static calc(value) {
|
|
2485
2488
|
return new $mol_style_func('calc', value);
|
|
2486
2489
|
}
|