@overmap-ai/blocks 1.0.1 → 1.0.2

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.
@@ -8,7 +8,7 @@ export interface Shortcut {
8
8
  }
9
9
  export type RadixButtonProps = React.ComponentProps<typeof RadixButton>;
10
10
  export type ButtonHoverEffect = "spin90Clockwise" | "spin180Clockwise" | "spin360Clockwise";
11
- export interface ButtonProps extends Omit<RadixButtonProps, "size" | "variant" | keyof MarginProps> {
11
+ export interface ButtonProps extends Omit<RadixButtonProps, "size" | "variant" | "loading" | keyof MarginProps> {
12
12
  children: RadixButtonProps["children"];
13
13
  /** @default false */
14
14
  fluid?: boolean;
@@ -19,4 +19,5 @@ export interface ButtonProps extends Omit<RadixButtonProps, "size" | "variant" |
19
19
  size?: Responsive<Size>;
20
20
  hoverEffects?: ButtonHoverEffect[];
21
21
  shortcut?: Shortcut;
22
+ loading?: boolean;
22
23
  }
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const Spinner: import("react").MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
@@ -1,3 +1,2 @@
1
1
  export * from "./Table";
2
2
  export * from "./typings.ts";
3
- export * from "./constants.tsx";
@@ -56,6 +56,7 @@ export interface TableProps {
56
56
  */
57
57
  showTopBar?: boolean;
58
58
  showBottomBar?: boolean;
59
+ emptyMessage?: string;
59
60
  className?: string;
60
61
  columnClassName?: string;
61
62
  rowClassName?: string;