@veevarts/design-system 1.10.0-alpha.7 → 1.10.0-alpha.9

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.
@@ -0,0 +1,11 @@
1
+ import { SelectProps as HeroUISelectProps } from '@heroui/react';
2
+ type HeroSelectProps<T extends object = object> = HeroUISelectProps<T>;
3
+ export type SelectPopoverProps = NonNullable<HeroSelectProps['popoverProps']> & {
4
+ disableDialogFocus?: boolean;
5
+ portalContainer?: Element;
6
+ };
7
+ export type SelectProps<T extends object = object> = Omit<HeroSelectProps<T>, 'popoverProps'> & {
8
+ popoverProps?: SelectPopoverProps;
9
+ };
10
+ export declare const Select: import('react').ForwardRefExoticComponent<Omit<SelectProps<object>, "ref"> & import('react').RefAttributes<HTMLSelectElement>>;
11
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ export { Select } from './Select';
2
+ export type { SelectProps } from './Select';
@@ -13,3 +13,5 @@ export * from '@heroui/react';
13
13
  export type * from '@heroui/react';
14
14
  export { Button } from './Button';
15
15
  export type { ButtonProps } from './Button';
16
+ export { Select } from './Select';
17
+ export type { SelectProps } from './Select';