@qodo/design-system 0.20.24 → 0.20.25

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
@@ -153,6 +153,9 @@ declare type BaseSelectProps = {
153
153
  size?: "xs" | "default";
154
154
  contentMaxWidth?: string;
155
155
  error?: boolean;
156
+ renderFooter?: (props: {
157
+ onClose: () => void;
158
+ }) => ReactNode;
156
159
  } & Omit<default_3.HTMLAttributes<HTMLDivElement>, "onSelect">;
157
160
 
158
161
  export declare const borderRadius: {
@@ -712,7 +715,7 @@ declare const SearchSize: {
712
715
  LARGE: string;
713
716
  };
714
717
 
715
- export declare function Select({ value, options, onSelect: propsOnSelect, disabled, readOnly, mode, placeholder, inputPlaceholder, emptyState, triggerClassName, triggerWrapperClassName, badgeClassName, badgeVariant, searchable, toggleIcon, dir, variant, iconPosition, selectionIndicator, onSearchChange, renderValue, size, contentMaxWidth, error, ...rest }: SelectProps): JSX_2.Element;
718
+ export declare function Select({ value, options, onSelect: propsOnSelect, disabled, readOnly, mode, placeholder, inputPlaceholder, emptyState, triggerClassName, triggerWrapperClassName, badgeClassName, badgeVariant, searchable, toggleIcon, dir, variant, iconPosition, selectionIndicator, onSearchChange, renderValue, size, contentMaxWidth, error, renderFooter, ...rest }: SelectProps): JSX_2.Element;
716
719
 
717
720
  declare const SELECT_MODE: {
718
721
  SINGLE: string;