@clicktap/ui 0.8.1 → 0.10.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.
@@ -14,8 +14,10 @@ export interface SelectProps<T extends object> extends Omit<AriaComboBoxProps<T>
14
14
  isLoading?: boolean;
15
15
  children: ReactNode | ((item: T) => ReactNode);
16
16
  slots?: CustomSelectSlots;
17
+ popoverOffset?: number;
18
+ popoverPortalContainer?: Element;
17
19
  }
18
- export declare function Select<T extends object>({ label, description, errorMessage, children, placeholder, key, isLoading, slots, ...props }: SelectProps<T>): import("react/jsx-runtime").JSX.Element;
20
+ export declare function Select<T extends object>({ label, description, errorMessage, children, placeholder, key, isLoading, slots, popoverPortalContainer, popoverOffset, selectedKey, ...props }: SelectProps<T>): import("react/jsx-runtime").JSX.Element;
19
21
  export declare namespace Select {
20
22
  var defaultProps: {
21
23
  label: undefined;
@@ -28,6 +30,8 @@ export declare namespace Select {
28
30
  loadingIcon: undefined;
29
31
  buttonIcon: undefined;
30
32
  };
33
+ popoverOffset: undefined;
34
+ popoverPortalContainer: undefined;
31
35
  };
32
36
  }
33
37
  export default Select;