@authing/react-ui-components 3.0.25 → 3.0.28
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.css +1 -1
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -2524,9 +2524,9 @@ declare module '@authing/react-ui-components/components/_utils/http' {
|
|
|
2524
2524
|
setTenantId(tenantId: string): void;
|
|
2525
2525
|
};
|
|
2526
2526
|
export interface AuthingResponse<T = any> {
|
|
2527
|
-
code?:
|
|
2528
|
-
statusCode?:
|
|
2529
|
-
apiCode?:
|
|
2527
|
+
code?: number;
|
|
2528
|
+
statusCode?: number;
|
|
2529
|
+
apiCode?: number;
|
|
2530
2530
|
data?: T;
|
|
2531
2531
|
messages?: string;
|
|
2532
2532
|
message?: string;
|
|
@@ -2596,6 +2596,7 @@ declare module '@authing/react-ui-components/components/_utils/index' {
|
|
|
2596
2596
|
export const tabSort: (defaultValue: RegisterMethods, tabList: RegisterMethods[]) => RegisterMethods[];
|
|
2597
2597
|
export const mailDesensitization: (mail: string) => string;
|
|
2598
2598
|
export const phoneDesensitization: (phone: string) => string;
|
|
2599
|
+
export const getHundreds: (num: number) => number;
|
|
2599
2600
|
|
|
2600
2601
|
}
|
|
2601
2602
|
declare module '@authing/react-ui-components/components/_utils/locales/en/index' {
|
|
@@ -2744,7 +2745,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2744
2745
|
|
|
2745
2746
|
}
|
|
2746
2747
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2747
|
-
const _default: "3.0.
|
|
2748
|
+
const _default: "3.0.28";
|
|
2748
2749
|
export default _default;
|
|
2749
2750
|
|
|
2750
2751
|
}
|