mol_plot_all 1.2.702 → 1.2.704
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 +7 -21
- package/node.deps.json +1 -1
- package/node.js +35 -23
- package/node.js.map +1 -1
- package/node.mjs +35 -23
- package/node.test.js +35 -23
- package/node.test.js.map +1 -1
- package/package.json +2 -1
- package/web.d.ts +7 -21
- package/web.deps.json +1 -1
- package/web.js +35 -23
- package/web.js.map +1 -1
- package/web.mjs +35 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mol_plot_all",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.704",
|
|
4
4
|
"exports": {
|
|
5
5
|
"node": {
|
|
6
6
|
"import": "./node.mjs",
|
|
@@ -103,6 +103,7 @@
|
|
|
103
103
|
"$mol_style_attach",
|
|
104
104
|
"$mol_style",
|
|
105
105
|
"$mol_theme",
|
|
106
|
+
"$mol_style_prop",
|
|
106
107
|
"$mol_style_func",
|
|
107
108
|
"$mol_style_unit",
|
|
108
109
|
"$mol_decor",
|
package/web.d.ts
CHANGED
|
@@ -678,33 +678,19 @@ declare namespace $ {
|
|
|
678
678
|
}
|
|
679
679
|
|
|
680
680
|
declare namespace $ {
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
hover: $mol_style_func<"var", string[] | "--mol_theme_hover">;
|
|
684
|
-
card: $mol_style_func<"var", string[] | "--mol_theme_card">;
|
|
685
|
-
current: $mol_style_func<"var", string[] | "--mol_theme_current">;
|
|
686
|
-
special: $mol_style_func<"var", string[] | "--mol_theme_special">;
|
|
687
|
-
text: $mol_style_func<"var", string[] | "--mol_theme_text">;
|
|
688
|
-
control: $mol_style_func<"var", string[] | "--mol_theme_control">;
|
|
689
|
-
shade: $mol_style_func<"var", string[] | "--mol_theme_shade">;
|
|
690
|
-
line: $mol_style_func<"var", string[] | "--mol_theme_line">;
|
|
691
|
-
focus: $mol_style_func<"var", string[] | "--mol_theme_focus">;
|
|
692
|
-
field: $mol_style_func<"var", string[] | "--mol_theme_field">;
|
|
693
|
-
image: $mol_style_func<"var", string[] | "--mol_theme_image">;
|
|
694
|
-
};
|
|
681
|
+
type $mol_style_prop_result = Record<string, $mol_style_func<'var'>>;
|
|
682
|
+
function $mol_style_prop(prefix: string, postfixes: Array<string>): $mol_style_prop_result;
|
|
695
683
|
}
|
|
696
684
|
|
|
697
685
|
declare namespace $ {
|
|
686
|
+
const $mol_theme: $mol_style_prop_result;
|
|
698
687
|
}
|
|
699
688
|
|
|
700
689
|
declare namespace $ {
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
readonly space: $mol_style_func<"var", string[] | "--mol_gap_space">;
|
|
706
|
-
readonly blur: $mol_style_func<"var", string[] | "--mol_gap_blur">;
|
|
707
|
-
};
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
declare namespace $ {
|
|
693
|
+
let $mol_gap: $mol_style_prop_result;
|
|
708
694
|
}
|
|
709
695
|
|
|
710
696
|
declare namespace $ {
|