@blocklet/ui-react 2.10.88 → 2.10.89

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.
@@ -5,8 +5,8 @@ declare function useComponentInstalled({ did, onInstalled, onError }: {
5
5
  onError: any;
6
6
  }): {
7
7
  optComponents: any;
8
- installed: any;
8
+ installed: boolean | import("@blocklet/sdk/lib/config").MountPoint | undefined;
9
9
  installStatus: {};
10
10
  setInstallStatus: import("react").Dispatch<import("react").SetStateAction<{}>>;
11
- definedInBlockletYML: any;
11
+ definedInBlockletYML: boolean | import("@blocklet/sdk/lib/config").MountPoint | undefined;
12
12
  };
@@ -6,4 +6,4 @@ export default function Settings({ user, settings, onSave, ...rest }: {
6
6
  settings: {
7
7
  userCenterTabs: UserCenterTab[];
8
8
  };
9
- } & BoxProps): any;
9
+ } & BoxProps): false | import("react").JSX.Element | undefined;
@@ -1,4 +1,4 @@
1
- export const publicPath: any;
1
+ export const publicPath: string;
2
2
  export function formatTheme(theme: any): any;
3
3
  export function getLocalizedNavigation(navigation: any, locale?: string): any;
4
4
  export function formatNavigation(navigation: any): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/ui-react",
3
- "version": "2.10.88",
3
+ "version": "2.10.89",
4
4
  "description": "Some useful front-end web components that can be used in Blocklets.",
5
5
  "keywords": [
6
6
  "react",
@@ -32,8 +32,8 @@
32
32
  "url": "https://github.com/ArcBlock/ux/issues"
33
33
  },
34
34
  "dependencies": {
35
- "@arcblock/bridge": "^2.10.88",
36
- "@arcblock/react-hooks": "^2.10.88",
35
+ "@arcblock/bridge": "^2.10.89",
36
+ "@arcblock/react-hooks": "^2.10.89",
37
37
  "@blocklet/did-space-react": "^0.5.78",
38
38
  "@iconify-icons/logos": "^1.2.36",
39
39
  "@iconify-icons/material-symbols": "^1.2.58",
@@ -80,5 +80,5 @@
80
80
  "jest": "^29.7.0",
81
81
  "unbuild": "^2.0.0"
82
82
  },
83
- "gitHead": "6b9b83e1dc7720b29ed4144cd44e3e9219cf1f0c"
83
+ "gitHead": "aa90dbfc69badbe65e24fc9c23940ebbc6e0b346"
84
84
  }