@qodo/design-system 0.20.8 → 0.20.10

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
@@ -144,6 +144,7 @@ declare type BaseSelectProps = {
144
144
  renderValue?: (args: {
145
145
  displayValues: string[];
146
146
  }) => ReactNode;
147
+ size?: "xs" | "default";
147
148
  } & Omit<default_3.HTMLAttributes<HTMLDivElement>, "onSelect">;
148
149
 
149
150
  export declare const borderRadius: {
@@ -694,7 +695,7 @@ declare const SearchSize: {
694
695
  LARGE: string;
695
696
  };
696
697
 
697
- 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, ...rest }: SelectProps): JSX_2.Element;
698
+ 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;
698
699
 
699
700
  declare const SELECT_MODE: {
700
701
  SINGLE: string;