randmarcomps 1.545.0 → 1.547.0
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/randmarcomps.d.ts +11 -0
- package/dist/randmarcomps.js +3348 -3319
- package/dist/randmarcomps.umd.cjs +58 -58
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -807,6 +807,15 @@ export declare const RadioGroup: React_2.ForwardRefExoticComponent<Omit<RadioGro
|
|
|
807
807
|
|
|
808
808
|
export declare const RadioGroupItem: React_2.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
809
809
|
|
|
810
|
+
declare interface RandmarApiConfig {
|
|
811
|
+
swaggerJsonUrl: string;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
export declare function RandmarApiConfigProvider({ swaggerJsonUrl, children, }: {
|
|
815
|
+
swaggerJsonUrl?: string;
|
|
816
|
+
children: ReactNode;
|
|
817
|
+
}): JSX.Element;
|
|
818
|
+
|
|
810
819
|
export declare function ResellerBillingOverviewCard({ reseller, actions, loading }: ResellerBillingOverviewCardProps): JSX.Element;
|
|
811
820
|
|
|
812
821
|
declare interface ResellerBillingOverviewCardProps {
|
|
@@ -1228,6 +1237,8 @@ export declare const useGeminiApiKey: () => ApiKeyContextType;
|
|
|
1228
1237
|
|
|
1229
1238
|
export declare function useIsMobile(): boolean;
|
|
1230
1239
|
|
|
1240
|
+
export declare function useRandmarApiConfig(): RandmarApiConfig;
|
|
1241
|
+
|
|
1231
1242
|
export declare function useSidebar(): SidebarContextValue;
|
|
1232
1243
|
|
|
1233
1244
|
export declare function useToast(): {
|