mol_plot_all 1.2.569 → 1.2.571
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 +29 -29
- package/node.js +29 -29
- package/node.js.map +1 -1
- package/node.mjs +29 -29
- package/node.mjs.map +1 -1
- package/node.test.js +60 -356
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +29 -29
- package/web.js +29 -29
- package/web.js.map +1 -1
- package/web.mjs +29 -29
- package/web.mjs.map +1 -1
- package/web.test.js +30 -326
- package/web.test.js.map +1 -1
package/package.json
CHANGED
package/web.d.ts
CHANGED
|
@@ -455,34 +455,34 @@ declare namespace $ {
|
|
|
455
455
|
readonly literal: Literal;
|
|
456
456
|
constructor(value: number, literal: Literal);
|
|
457
457
|
postfix(): Literal;
|
|
458
|
-
static per(value: number):
|
|
459
|
-
static px(value: number):
|
|
460
|
-
static mm(value: number):
|
|
461
|
-
static cm(value: number):
|
|
462
|
-
static Q(value: number):
|
|
463
|
-
static in(value: number):
|
|
464
|
-
static pc(value: number):
|
|
465
|
-
static pt(value: number):
|
|
466
|
-
static cap(value: number):
|
|
467
|
-
static ch(value: number):
|
|
468
|
-
static em(value: number):
|
|
469
|
-
static rem(value: number):
|
|
470
|
-
static ex(value: number):
|
|
471
|
-
static ic(value: number):
|
|
472
|
-
static lh(value: number):
|
|
473
|
-
static rlh(value: number):
|
|
474
|
-
static vh(value: number):
|
|
475
|
-
static vw(value: number):
|
|
476
|
-
static vi(value: number):
|
|
477
|
-
static vb(value: number):
|
|
478
|
-
static vmin(value: number):
|
|
479
|
-
static vmax(value: number):
|
|
480
|
-
static deg(value: number):
|
|
481
|
-
static rad(value: number):
|
|
482
|
-
static grad(value: number):
|
|
483
|
-
static turn(value: number):
|
|
484
|
-
static s(value: number):
|
|
485
|
-
static ms(value: number):
|
|
458
|
+
static per(value: number): `${number}%`;
|
|
459
|
+
static px(value: number): `${number}px`;
|
|
460
|
+
static mm(value: number): `${number}mm`;
|
|
461
|
+
static cm(value: number): `${number}cm`;
|
|
462
|
+
static Q(value: number): `${number}Q`;
|
|
463
|
+
static in(value: number): `${number}in`;
|
|
464
|
+
static pc(value: number): `${number}pc`;
|
|
465
|
+
static pt(value: number): `${number}pt`;
|
|
466
|
+
static cap(value: number): `${number}cap`;
|
|
467
|
+
static ch(value: number): `${number}ch`;
|
|
468
|
+
static em(value: number): `${number}em`;
|
|
469
|
+
static rem(value: number): `${number}rem`;
|
|
470
|
+
static ex(value: number): `${number}ex`;
|
|
471
|
+
static ic(value: number): `${number}ic`;
|
|
472
|
+
static lh(value: number): `${number}lh`;
|
|
473
|
+
static rlh(value: number): `${number}rlh`;
|
|
474
|
+
static vh(value: number): `${number}vh`;
|
|
475
|
+
static vw(value: number): `${number}vw`;
|
|
476
|
+
static vi(value: number): `${number}vi`;
|
|
477
|
+
static vb(value: number): `${number}vb`;
|
|
478
|
+
static vmin(value: number): `${number}vmin`;
|
|
479
|
+
static vmax(value: number): `${number}vmax`;
|
|
480
|
+
static deg(value: number): `${number}deg`;
|
|
481
|
+
static rad(value: number): `${number}rad`;
|
|
482
|
+
static grad(value: number): `${number}grad`;
|
|
483
|
+
static turn(value: number): `${number}turn`;
|
|
484
|
+
static s(value: number): `${number}s`;
|
|
485
|
+
static ms(value: number): `${number}ms`;
|
|
486
486
|
}
|
|
487
487
|
}
|
|
488
488
|
|
|
@@ -496,7 +496,7 @@ declare namespace $ {
|
|
|
496
496
|
static calc<Value>(value: Value): $mol_style_func<"calc", Value>;
|
|
497
497
|
static vary<Name extends string>(name: Name): $mol_style_func<"var", Name>;
|
|
498
498
|
static url<Href extends string>(href: Href): $mol_style_func<"url", string>;
|
|
499
|
-
static hsla(hue: number, saturation: number, lightness: number, alpha: number): $mol_style_func<"hsla", (number |
|
|
499
|
+
static hsla(hue: number, saturation: number, lightness: number, alpha: number): $mol_style_func<"hsla", (number | `${number}%`)[]>;
|
|
500
500
|
static clamp(min: $mol_style_unit<any>, mid: $mol_style_unit<any>, max: $mol_style_unit<any>): $mol_style_func<"clamp", $mol_style_unit<any>[]>;
|
|
501
501
|
static rgba(red: number, green: number, blue: number, alpha: number): $mol_style_func<"rgba", number[]>;
|
|
502
502
|
static scale(zoom: number): $mol_style_func<"scale", number[]>;
|
package/web.js
CHANGED
|
@@ -1803,34 +1803,34 @@ var $;
|
|
|
1803
1803
|
postfix() {
|
|
1804
1804
|
return this.literal;
|
|
1805
1805
|
}
|
|
1806
|
-
static per(value) { return
|
|
1807
|
-
static px(value) { return
|
|
1808
|
-
static mm(value) { return
|
|
1809
|
-
static cm(value) { return
|
|
1810
|
-
static Q(value) { return
|
|
1811
|
-
static in(value) { return
|
|
1812
|
-
static pc(value) { return
|
|
1813
|
-
static pt(value) { return
|
|
1814
|
-
static cap(value) { return
|
|
1815
|
-
static ch(value) { return
|
|
1816
|
-
static em(value) { return
|
|
1817
|
-
static rem(value) { return
|
|
1818
|
-
static ex(value) { return
|
|
1819
|
-
static ic(value) { return
|
|
1820
|
-
static lh(value) { return
|
|
1821
|
-
static rlh(value) { return
|
|
1822
|
-
static vh(value) { return
|
|
1823
|
-
static vw(value) { return
|
|
1824
|
-
static vi(value) { return
|
|
1825
|
-
static vb(value) { return
|
|
1826
|
-
static vmin(value) { return
|
|
1827
|
-
static vmax(value) { return
|
|
1828
|
-
static deg(value) { return
|
|
1829
|
-
static rad(value) { return
|
|
1830
|
-
static grad(value) { return
|
|
1831
|
-
static turn(value) { return
|
|
1832
|
-
static s(value) { return
|
|
1833
|
-
static ms(value) { return
|
|
1806
|
+
static per(value) { return `${value}%`; }
|
|
1807
|
+
static px(value) { return `${value}px`; }
|
|
1808
|
+
static mm(value) { return `${value}mm`; }
|
|
1809
|
+
static cm(value) { return `${value}cm`; }
|
|
1810
|
+
static Q(value) { return `${value}Q`; }
|
|
1811
|
+
static in(value) { return `${value}in`; }
|
|
1812
|
+
static pc(value) { return `${value}pc`; }
|
|
1813
|
+
static pt(value) { return `${value}pt`; }
|
|
1814
|
+
static cap(value) { return `${value}cap`; }
|
|
1815
|
+
static ch(value) { return `${value}ch`; }
|
|
1816
|
+
static em(value) { return `${value}em`; }
|
|
1817
|
+
static rem(value) { return `${value}rem`; }
|
|
1818
|
+
static ex(value) { return `${value}ex`; }
|
|
1819
|
+
static ic(value) { return `${value}ic`; }
|
|
1820
|
+
static lh(value) { return `${value}lh`; }
|
|
1821
|
+
static rlh(value) { return `${value}rlh`; }
|
|
1822
|
+
static vh(value) { return `${value}vh`; }
|
|
1823
|
+
static vw(value) { return `${value}vw`; }
|
|
1824
|
+
static vi(value) { return `${value}vi`; }
|
|
1825
|
+
static vb(value) { return `${value}vb`; }
|
|
1826
|
+
static vmin(value) { return `${value}vmin`; }
|
|
1827
|
+
static vmax(value) { return `${value}vmax`; }
|
|
1828
|
+
static deg(value) { return `${value}deg`; }
|
|
1829
|
+
static rad(value) { return `${value}rad`; }
|
|
1830
|
+
static grad(value) { return `${value}grad`; }
|
|
1831
|
+
static turn(value) { return `${value}turn`; }
|
|
1832
|
+
static s(value) { return `${value}s`; }
|
|
1833
|
+
static ms(value) { return `${value}ms`; }
|
|
1834
1834
|
}
|
|
1835
1835
|
$.$mol_style_unit = $mol_style_unit;
|
|
1836
1836
|
})($ || ($ = {}));
|
|
@@ -2324,7 +2324,7 @@ var $;
|
|
|
2324
2324
|
"use strict";
|
|
2325
2325
|
var $;
|
|
2326
2326
|
(function ($) {
|
|
2327
|
-
$mol_style_attach("mol/view/view/view.css", "[mol_view] {\n\ttransition-property: height, width, min-height, min-width, max-width, max-height, transform;\n\ttransition-duration: .2s;\n\ttransition-timing-function: ease-out;\n\t-webkit-appearance: none;\n\tbox-sizing: border-box;\n\tdisplay: flex;\n\tflex-shrink: 0;\n\tcontain: style;\n\tscrollbar-color: var(--mol_theme_line) transparent;\n\tscrollbar-width: thin;\n}\t\n\n[mol_view]::selection {\n\tbackground: var(--mol_theme_line);\n}\t\n\n[mol_view]::-webkit-scrollbar {\n\twidth: .25rem;\n\theight: .25rem;\n}\n\n[mol_view]::-webkit-scrollbar-corner {\n\tbackground-color: var(--mol_theme_line);\n}\n\n[mol_view]::-webkit-scrollbar-track {\n\tbackground-color: transparent;\n}\n\n[mol_view]::-webkit-scrollbar-thumb {\n\tbackground-color: var(--mol_theme_line);\n\tborder-radius: var(--mol_gap_round);\n}\n\n[mol_view] > * {\n\tword-break: inherit;\n}\n\n[mol_view_root] {\n\tmargin: 0;\n\tpadding: 0;\n\twidth: 100%;\n\theight: 100%;\n\tbox-sizing: border-box;\n\tfont-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n\tfont-size: 1rem;\n\tline-height: 1.5rem;\n\tbackground: var(--mol_theme_back);\n\tcolor: var(--mol_theme_text);\n\tcontain: unset; /** Fixes bg ignoring when applied to body on Chrome */\n\ttab-size: 4;\n}\n\n@media print {\n\t[mol_view_root] {\n\t\theight: auto;\n\t}\n}\n\n[mol_view][mol_view_error]:not([mol_view_error=\"Promise\"]) {\n\tbackground-image: repeating-linear-gradient(\n\t\t-45deg,\n\t\t#f92323,\n\t\t#f92323 .5rem,\n\t\t#ff3d3d .5rem,\n\t\t#ff3d3d 1.5rem\n\t);\n\tcolor: black;\n\talign-items: center;\n\tjustify-content: center;\n}\n\n@keyframes mol_view_wait {\n\tfrom {\n\t\topacity: .
|
|
2327
|
+
$mol_style_attach("mol/view/view/view.css", "[mol_view] {\n\ttransition-property: height, width, min-height, min-width, max-width, max-height, transform;\n\ttransition-duration: .2s;\n\ttransition-timing-function: ease-out;\n\t-webkit-appearance: none;\n\tbox-sizing: border-box;\n\tdisplay: flex;\n\tflex-shrink: 0;\n\tcontain: style;\n\tscrollbar-color: var(--mol_theme_line) transparent;\n\tscrollbar-width: thin;\n}\t\n\n[mol_view]::selection {\n\tbackground: var(--mol_theme_line);\n}\t\n\n[mol_view]::-webkit-scrollbar {\n\twidth: .25rem;\n\theight: .25rem;\n}\n\n[mol_view]::-webkit-scrollbar-corner {\n\tbackground-color: var(--mol_theme_line);\n}\n\n[mol_view]::-webkit-scrollbar-track {\n\tbackground-color: transparent;\n}\n\n[mol_view]::-webkit-scrollbar-thumb {\n\tbackground-color: var(--mol_theme_line);\n\tborder-radius: var(--mol_gap_round);\n}\n\n[mol_view] > * {\n\tword-break: inherit;\n}\n\n[mol_view_root] {\n\tmargin: 0;\n\tpadding: 0;\n\twidth: 100%;\n\theight: 100%;\n\tbox-sizing: border-box;\n\tfont-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n\tfont-size: 1rem;\n\tline-height: 1.5rem;\n\tbackground: var(--mol_theme_back);\n\tcolor: var(--mol_theme_text);\n\tcontain: unset; /** Fixes bg ignoring when applied to body on Chrome */\n\ttab-size: 4;\n}\n\n@media print {\n\t[mol_view_root] {\n\t\theight: auto;\n\t}\n}\n\n[mol_view][mol_view_error]:not([mol_view_error=\"Promise\"]) {\n\tbackground-image: repeating-linear-gradient(\n\t\t-45deg,\n\t\t#f92323,\n\t\t#f92323 .5rem,\n\t\t#ff3d3d .5rem,\n\t\t#ff3d3d 1.5rem\n\t);\n\tcolor: black;\n\talign-items: center;\n\tjustify-content: center;\n}\n\n@keyframes mol_view_wait {\n\tfrom {\n\t\topacity: .25;\n\t}\n\t20% {\n\t\topacity: .75;\n\t}\n\tto {\n\t\topacity: .25;\n\t}\n}\n\n:where([mol_view][mol_view_error=\"Promise\"]) {\n\tbackground: var(--mol_theme_hover);\n}\n\n[mol_view][mol_view_error=\"Promise\"] {\n\tanimation: mol_view_wait 1s steps( 20, end ) infinite;\n}\n");
|
|
2328
2328
|
})($ || ($ = {}));
|
|
2329
2329
|
//mol/view/view/-css/view.css.ts
|
|
2330
2330
|
;
|