@qodo/design-system 0.20.33 → 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/design-system.css +1 -1
- package/dist/index.cjs.js +35 -35
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +2088 -2070
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
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;
|