randmarcomps 1.606.0 → 1.607.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.
@@ -834,6 +834,22 @@ export declare function RandmarApiConfigProvider({ swaggerJsonUrl, children, }:
834
834
  children: ReactNode;
835
835
  }): JSX.Element;
836
836
 
837
+ export declare function RefreshCluster({ lastRefreshAt, onRefresh, onProgressiveRefresh, onAssistantClick, isRefreshing, refreshLabel, assistantLabel, className, disabled, }: RefreshClusterProps): JSX.Element;
838
+
839
+ export declare interface RefreshClusterProps {
840
+ lastRefreshAt?: RefreshDateValue;
841
+ onRefresh?: () => Promise<void> | void;
842
+ onProgressiveRefresh?: (withSpecification: boolean) => Promise<void> | void;
843
+ onAssistantClick: () => void;
844
+ isRefreshing?: boolean;
845
+ refreshLabel?: string;
846
+ assistantLabel?: string;
847
+ className?: string;
848
+ disabled?: boolean;
849
+ }
850
+
851
+ declare type RefreshDateValue = Date | string | number | null | undefined;
852
+
837
853
  export declare function ResellerBillingOverviewCard({ reseller, actions, loading }: ResellerBillingOverviewCardProps): JSX.Element;
838
854
 
839
855
  declare interface ResellerBillingOverviewCardProps {
@@ -1125,6 +1141,8 @@ export declare const SidebarMenuSubItem: React_2.ForwardRefExoticComponent<Omit<
1125
1141
 
1126
1142
  export declare const SidebarProvider: React_2.ForwardRefExoticComponent<Omit<React_2.ClassAttributes<HTMLDivElement> & React_2.HTMLAttributes<HTMLDivElement> & {
1127
1143
  defaultOpen?: boolean;
1144
+ defaultOpenMobile?: boolean;
1145
+ isMobileOverride?: boolean;
1128
1146
  open?: boolean;
1129
1147
  onOpenChange?: (open: boolean) => void;
1130
1148
  }, "ref"> & React_2.RefAttributes<HTMLDivElement>>;