@tetrascience-npm/tetrascience-react-ui 0.5.0-beta.49.1 → 0.5.0-beta.50.1

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/index.d.ts CHANGED
@@ -1286,6 +1286,18 @@ export declare function DropdownMenuSubTrigger({ className, inset, children, ...
1286
1286
 
1287
1287
  export declare function DropdownMenuTrigger({ ...props }: React_2.ComponentProps<typeof DropdownMenu_2.Trigger>): JSX.Element;
1288
1288
 
1289
+ export declare function EmptyState({ variant, title, description, icon, action, className, ...props }: EmptyStateProps): JSX.Element;
1290
+
1291
+ export declare interface EmptyStateProps extends React_2.ComponentProps<"div"> {
1292
+ variant?: EmptyStateVariant;
1293
+ title?: string;
1294
+ description?: string;
1295
+ icon?: LucideIcon | React_2.FC<React_2.SVGProps<SVGSVGElement>>;
1296
+ action?: React_2.ReactNode;
1297
+ }
1298
+
1299
+ export declare type EmptyStateVariant = "no-data" | "no-results" | "no-access" | "empty-folder" | "server-error";
1300
+
1289
1301
  export declare function Field({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): JSX.Element;
1290
1302
 
1291
1303
  export declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): JSX.Element;