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/node.d.ts
CHANGED
|
@@ -826,33 +826,19 @@ declare namespace $ {
|
|
|
826
826
|
}
|
|
827
827
|
|
|
828
828
|
declare namespace $ {
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
hover: $mol_style_func<"var", string[] | "--mol_theme_hover">;
|
|
832
|
-
card: $mol_style_func<"var", string[] | "--mol_theme_card">;
|
|
833
|
-
current: $mol_style_func<"var", string[] | "--mol_theme_current">;
|
|
834
|
-
special: $mol_style_func<"var", string[] | "--mol_theme_special">;
|
|
835
|
-
text: $mol_style_func<"var", string[] | "--mol_theme_text">;
|
|
836
|
-
control: $mol_style_func<"var", string[] | "--mol_theme_control">;
|
|
837
|
-
shade: $mol_style_func<"var", string[] | "--mol_theme_shade">;
|
|
838
|
-
line: $mol_style_func<"var", string[] | "--mol_theme_line">;
|
|
839
|
-
focus: $mol_style_func<"var", string[] | "--mol_theme_focus">;
|
|
840
|
-
field: $mol_style_func<"var", string[] | "--mol_theme_field">;
|
|
841
|
-
image: $mol_style_func<"var", string[] | "--mol_theme_image">;
|
|
842
|
-
};
|
|
829
|
+
type $mol_style_prop_result = Record<string, $mol_style_func<'var'>>;
|
|
830
|
+
function $mol_style_prop(prefix: string, postfixes: Array<string>): $mol_style_prop_result;
|
|
843
831
|
}
|
|
844
832
|
|
|
845
833
|
declare namespace $ {
|
|
834
|
+
const $mol_theme: $mol_style_prop_result;
|
|
846
835
|
}
|
|
847
836
|
|
|
848
837
|
declare namespace $ {
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
readonly space: $mol_style_func<"var", string[] | "--mol_gap_space">;
|
|
854
|
-
readonly blur: $mol_style_func<"var", string[] | "--mol_gap_blur">;
|
|
855
|
-
};
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
declare namespace $ {
|
|
841
|
+
let $mol_gap: $mol_style_prop_result;
|
|
856
842
|
}
|
|
857
843
|
|
|
858
844
|
declare namespace $ {
|