lambda-ui-components 1.0.1 → 1.0.3

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/main.d.ts CHANGED
@@ -440,7 +440,7 @@ export declare const Button: ForwardRefExoticComponent<ButtonProps & RefAttribut
440
440
 
441
441
  declare const button: (props?: ({
442
442
  color?: "neutral" | "primary" | "secondary" | "danger" | "success" | "warning" | "info" | null | undefined;
443
- variant?: "soft" | "text" | "dashed" | "solid" | "outline" | "classic" | "subtle" | "unstyled" | null | undefined;
443
+ variant?: "soft" | "text" | "dashed" | "solid" | "outline" | "themed" | "classic" | "subtle" | "unstyled" | null | undefined;
444
444
  size?: "tiny" | "small" | "medium" | "large" | null | undefined;
445
445
  radius?: "default" | "none" | "tiny" | "small" | "medium" | "large" | "full" | null | undefined;
446
446
  block?: boolean | null | undefined;
@@ -2685,7 +2685,7 @@ export declare const Table: (<T>({ size, variant, highlightOnHover, children, da
2685
2685
  };
2686
2686
  } & HTMLAttributes<HTMLTableElement> & {
2687
2687
  size?: "tiny" | "small" | "medium" | "large";
2688
- variant?: "soft" | "underlined" | "bordered" | "striped" | null | undefined;
2688
+ variant?: "soft" | "underlined" | "bordered" | "striped" | "bordered-transparent" | null | undefined;
2689
2689
  }) => JSX.Element) & {
2690
2690
  Header: ({ children, ...props }: HTMLAttributes<HTMLTableSectionElement> & {
2691
2691
  children: ReactNode;
@@ -3216,9 +3216,10 @@ export declare const useNotification: () => NotificationContextType;
3216
3216
 
3217
3217
  export declare function usePathObserver(): string;
3218
3218
 
3219
- export declare const usePopover: <T extends HTMLElement, U extends HTMLElement>(offset?: {
3219
+ export declare const usePopover: <T extends HTMLElement, U extends HTMLElement>(config?: {
3220
3220
  x?: number;
3221
3221
  y?: number;
3222
+ disableListeners?: boolean;
3222
3223
  }, itemCallbacks?: Array<(() => void) | undefined>) => {
3223
3224
  isOpen: boolean;
3224
3225
  setIsOpen: Dispatch<SetStateAction<boolean>>;