@nocobase/plugin-verification 0.11.0-alpha.1 → 0.11.1-alpha.2

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.
@@ -132,7 +132,20 @@ declare const _default: {
132
132
  'x-component': string;
133
133
  'x-decorator': string;
134
134
  'x-decorator-props': {
135
- useValues(options: any): any;
135
+ useValues(options: any): {
136
+ state: {};
137
+ setState: import("ahooks/lib/useSetState").SetState<{}>;
138
+ loading: boolean;
139
+ data?: unknown;
140
+ error?: Error;
141
+ params: any;
142
+ cancel: () => void;
143
+ refresh: () => void;
144
+ refreshAsync: () => Promise<unknown>;
145
+ run: (...params: any) => void;
146
+ runAsync: (...params: any) => Promise<unknown>;
147
+ mutate: (data?: unknown) => void;
148
+ };
136
149
  };
137
150
  title: string;
138
151
  properties: {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "displayName.zh-CN": "验证码",
5
5
  "description": "verification setting.",
6
6
  "description.zh-CN": "验证码配置。",
7
- "version": "0.11.0-alpha.1",
7
+ "version": "0.11.1-alpha.2",
8
8
  "license": "AGPL-3.0",
9
9
  "main": "./lib/server/index.js",
10
10
  "files": [
@@ -29,16 +29,16 @@
29
29
  "@formily/core": "2.2.26",
30
30
  "@formily/react": "2.2.26",
31
31
  "@formily/shared": "2.2.26",
32
- "@nocobase/actions": "0.11.0-alpha.1",
33
- "@nocobase/client": "0.11.0-alpha.1",
34
- "@nocobase/database": "0.11.0-alpha.1",
35
- "@nocobase/resourcer": "0.11.0-alpha.1",
36
- "@nocobase/server": "0.11.0-alpha.1",
37
- "@nocobase/test": "0.11.0-alpha.1",
38
- "@nocobase/utils": "0.11.0-alpha.1",
32
+ "@nocobase/actions": "0.11.1-alpha.2",
33
+ "@nocobase/client": "0.11.1-alpha.2",
34
+ "@nocobase/database": "0.11.1-alpha.2",
35
+ "@nocobase/resourcer": "0.11.1-alpha.2",
36
+ "@nocobase/server": "0.11.1-alpha.2",
37
+ "@nocobase/test": "0.11.1-alpha.2",
38
+ "@nocobase/utils": "0.11.1-alpha.2",
39
39
  "antd": "^5.6.4",
40
40
  "react": "18.x",
41
41
  "react-i18next": "^11.15.1"
42
42
  },
43
- "gitHead": "7581b6d3a3a54f09f06a9effb7e3e65328281b2b"
43
+ "gitHead": "8482aa720ea1c3abbbb9fe1208e73778bd63f1cf"
44
44
  }