@qodo/design-system 0.20.32 → 0.20.34

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
@@ -151,6 +151,7 @@ declare type BaseSelectProps = {
151
151
  variant?: (typeof SELECT_VARIANT)[keyof typeof SELECT_VARIANT];
152
152
  iconPosition?: "left" | "right";
153
153
  selectionIndicator?: "checkmark" | "checkbox" | "none";
154
+ optionVariant?: "default" | "stacked";
154
155
  onSearchChange?: (search: string) => void;
155
156
  renderValue?: (args: {
156
157
  displayValues: string[];
@@ -906,7 +907,7 @@ declare const SearchSize: {
906
907
  LARGE: string;
907
908
  };
908
909
 
909
- export declare function Select({ value, options, onSelect: propsOnSelect, disabled, readOnly, mode, placeholder, inputPlaceholder, emptyState, triggerClassName, triggerWrapperClassName, badgeClassName, badgeVariant, searchable, shouldFilter, toggleIcon, dir, variant, iconPosition, selectionIndicator, onSearchChange, renderValue, size, contentMaxWidth, contentAlign, contentSide, contentOffset, contentTopOffset, error, renderFooter, ...rest }: SelectProps): JSX_2.Element;
910
+ export declare function Select({ value, options, onSelect: propsOnSelect, disabled, readOnly, mode, placeholder, inputPlaceholder, emptyState, triggerClassName, triggerWrapperClassName, badgeClassName, badgeVariant, searchable, shouldFilter, toggleIcon, dir, variant, iconPosition, selectionIndicator, optionVariant, onSearchChange, renderValue, size, contentMaxWidth, contentAlign, contentSide, contentOffset, contentTopOffset, error, renderFooter, ...rest }: SelectProps): JSX_2.Element;
910
911
 
911
912
  declare const SELECT_MODE: {
912
913
  SINGLE: string;