stratosphere-ui 3.1.4 → 3.1.6
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.
|
@@ -16,10 +16,11 @@ export interface SelectProps<DataItem extends GenericDataType, Values extends Fi
|
|
|
16
16
|
getItemText: (data: DataItem) => ReactNode;
|
|
17
17
|
hideDropdownIcon?: true;
|
|
18
18
|
menuClassName?: string;
|
|
19
|
+
menuItemClassName?: string;
|
|
19
20
|
menuSize?: MenuSize;
|
|
20
21
|
multi?: true;
|
|
21
22
|
options?: DataItem[];
|
|
22
23
|
portal?: boolean;
|
|
23
24
|
showDirty?: boolean;
|
|
24
25
|
}
|
|
25
|
-
export declare const Select: <DataItem extends GenericDataType, Values extends FieldValues>({ anchor, buttonColor, buttonProps: { children: buttonChildren, className: buttonClassName, color: buttonPropsColor, ...buttonProps }, className, disabled, dropdownIcon, formValueMode, getItemText, hideDropdownIcon, isRequired, labelText, menuClassName, menuSize, multi, name, options: optionsArray, portal, showDirty, }: SelectProps<DataItem, Values>) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
export declare const Select: <DataItem extends GenericDataType, Values extends FieldValues>({ anchor, buttonColor, buttonProps: { children: buttonChildren, className: buttonClassName, color: buttonPropsColor, ...buttonProps }, className, disabled, dropdownIcon, formValueMode, getItemText, hideDropdownIcon, isRequired, labelText, menuClassName, menuItemClassName, menuSize, multi, name, options: optionsArray, portal, showDirty, }: SelectProps<DataItem, Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -22,6 +22,7 @@ export interface TypeaheadSelectProps<DataItem extends GenericDataType, Values e
|
|
|
22
22
|
inputPlaceholder?: string;
|
|
23
23
|
isLoading?: boolean;
|
|
24
24
|
menuClassName?: string;
|
|
25
|
+
menuItemClassName?: string;
|
|
25
26
|
menuSize?: MenuSize;
|
|
26
27
|
multi?: true;
|
|
27
28
|
onKeyDown?: KeyboardEventHandler<HTMLInputElement>;
|
|
@@ -29,4 +30,4 @@ export interface TypeaheadSelectProps<DataItem extends GenericDataType, Values e
|
|
|
29
30
|
options?: DataItem[];
|
|
30
31
|
size?: InputSize;
|
|
31
32
|
}
|
|
32
|
-
export declare const TypeaheadSelect: <DataItem extends GenericDataType, Values extends FieldValues>({ badgeColor, bordered, className, color, controllerProps, debounceTime, defaultShowDropdown, disabled, disableSingleSelectBadge, dropdownInputClassName, formValueMode, getBadgeClassName, getBadgeText, getItemText, inputClassName, inputPlaceholder, isLoading, isRequired, labelText, menuClassName, menuSize, multi, name, onDebouncedChange, onKeyDown, onShowDropdown, options: optionsArray, placeholder, showDirty, size, }: TypeaheadSelectProps<DataItem, Values>) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
export declare const TypeaheadSelect: <DataItem extends GenericDataType, Values extends FieldValues>({ badgeColor, bordered, className, color, controllerProps, debounceTime, defaultShowDropdown, disabled, disableSingleSelectBadge, dropdownInputClassName, formValueMode, getBadgeClassName, getBadgeText, getItemText, inputClassName, inputPlaceholder, isLoading, isRequired, labelText, menuClassName, menuItemClassName, menuSize, multi, name, onDebouncedChange, onKeyDown, onShowDropdown, options: optionsArray, placeholder, showDirty, size, }: TypeaheadSelectProps<DataItem, Values>) => import("react/jsx-runtime").JSX.Element;
|