@nocobase/plugin-theme-editor 0.17.0-alpha.3 → 0.17.0-alpha.5

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,5 +1,8 @@
1
1
  import React from 'react';
2
- export declare const useCurrentThemeId: () => number;
2
+ export declare const useThemeId: () => {
3
+ currentThemeId: number;
4
+ defaultThemeId: number;
5
+ };
3
6
  /**
4
7
  * 用于在页面加载时初始化主题
5
8
  */
@@ -1,4 +1,3 @@
1
1
  export declare function useUpdateThemeSettings(): {
2
2
  updateUserThemeSettings: (themeId: number | null) => Promise<void>;
3
- updateSystemThemeSettings: (themeId: number | null) => Promise<void>;
4
3
  };