@qodo/design-system 0.20.16 → 0.20.17

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
@@ -146,6 +146,7 @@ declare type BaseSelectProps = {
146
146
  displayValues: string[];
147
147
  }) => ReactNode;
148
148
  size?: "xs" | "default";
149
+ contentMaxWidth?: string;
149
150
  } & Omit<default_3.HTMLAttributes<HTMLDivElement>, "onSelect">;
150
151
 
151
152
  export declare const borderRadius: {
@@ -703,7 +704,7 @@ declare const SearchSize: {
703
704
  LARGE: string;
704
705
  };
705
706
 
706
- 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, ...rest }: SelectProps): JSX_2.Element;
707
+ 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, ...rest }: SelectProps): JSX_2.Element;
707
708
 
708
709
  declare const SELECT_MODE: {
709
710
  SINGLE: string;