@maxtropy/v-components 0.1.16-beta.17 → 0.1.16-beta.18

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.
@@ -1,13 +1,15 @@
1
+ import { themeClass } from './utils';
1
2
  import './common/css-vars.scss';
2
3
  import './dark/css-vars.scss';
3
4
  import './light/css-vars.scss';
4
5
  import './yellow-light/css-vars.scss';
5
- export declare enum Themes {
6
+ declare enum Themes {
6
7
  DARK = "dark",
7
8
  LIGHT = "light",
8
9
  YELLOWLIGHT = "yellow-light",
9
10
  SAPPHIRE = "sapphire",
10
11
  JUNTONG = "juntong"
11
12
  }
12
- export declare const THEME_STORE_KEY = "mxTheme";
13
- export declare const useTheme: (targetTheme: Themes) => void;
13
+ declare const THEME_STORE_KEY = "mxTheme";
14
+ declare const useTheme: (targetTheme: Themes) => void;
15
+ export { themeClass, Themes, THEME_STORE_KEY, useTheme };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxtropy/v-components",
3
- "version": "0.1.16-beta.17",
3
+ "version": "0.1.16-beta.18",
4
4
  "files": [
5
5
  "dist"
6
6
  ],
@@ -77,4 +77,4 @@
77
77
  "vue": ">=3.2.0",
78
78
  "vue-router": ">=4"
79
79
  }
80
- }
80
+ }