@abdellatifui/react 3.2.132 → 3.2.135
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/dist/nextgen.d.ts +2 -1
- package/dist/nextgen.js +2934 -2928
- package/package.json +2 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export declare type AbuiContextType = {
|
|
|
35
35
|
authorization: boolean;
|
|
36
36
|
onReady: (event: any) => void;
|
|
37
37
|
onInit: (event: any) => void;
|
|
38
|
+
beforeReady: (event: any) => void;
|
|
38
39
|
restApi: UseApiProps;
|
|
39
40
|
contentActivityMode: "hidden" | "visible";
|
|
40
41
|
awaitRestApi: boolean;
|
|
@@ -1463,7 +1464,7 @@ export declare interface TooltipProps {
|
|
|
1463
1464
|
variant?: 'primary' | 'secondary' | 'outline';
|
|
1464
1465
|
}
|
|
1465
1466
|
|
|
1466
|
-
export declare const useAbuiContext: () =>
|
|
1467
|
+
export declare const useAbuiContext: (keyword: string) => any;
|
|
1467
1468
|
|
|
1468
1469
|
export declare const useApi: (props: UseApiProps) => ExtendedAxiosInstance;
|
|
1469
1470
|
|