@authing/react-ui-components 3.0.21 → 3.0.22
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/lib/index.d.ts +5 -4
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -2451,9 +2451,9 @@ declare module '@authing/react-ui-components/components/_utils/http' {
|
|
|
2451
2451
|
setTenantId(tenantId: string): void;
|
|
2452
2452
|
};
|
|
2453
2453
|
export interface AuthingResponse<T = any> {
|
|
2454
|
-
code?:
|
|
2455
|
-
statusCode?:
|
|
2456
|
-
apiCode?:
|
|
2454
|
+
code?: number;
|
|
2455
|
+
statusCode?: number;
|
|
2456
|
+
apiCode?: number;
|
|
2457
2457
|
data?: T;
|
|
2458
2458
|
messages?: string;
|
|
2459
2459
|
message?: string;
|
|
@@ -2523,6 +2523,7 @@ declare module '@authing/react-ui-components/components/_utils/index' {
|
|
|
2523
2523
|
export const tabSort: (defaultValue: RegisterMethods, tabList: RegisterMethods[]) => RegisterMethods[];
|
|
2524
2524
|
export const mailDesensitization: (mail: string) => string;
|
|
2525
2525
|
export const phoneDesensitization: (phone: string) => string;
|
|
2526
|
+
export const getHundreds: (num: number) => number;
|
|
2526
2527
|
|
|
2527
2528
|
}
|
|
2528
2529
|
declare module '@authing/react-ui-components/components/_utils/locales/en/index' {
|
|
@@ -2671,7 +2672,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2671
2672
|
|
|
2672
2673
|
}
|
|
2673
2674
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2674
|
-
const _default: "3.0.
|
|
2675
|
+
const _default: "3.0.22";
|
|
2675
2676
|
export default _default;
|
|
2676
2677
|
|
|
2677
2678
|
}
|