hplx-react-elements-dev 1.1.80 → 1.1.82
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/esm/types.d.ts
CHANGED
|
@@ -276,6 +276,8 @@ export interface DropdownFieldProps<IsMulti extends boolean> {
|
|
|
276
276
|
errorMsg?: string;
|
|
277
277
|
value?: DropdownValue<IsMulti>;
|
|
278
278
|
isMulti?: IsMulti;
|
|
279
|
+
dropdownWrapperClassName?: string;
|
|
280
|
+
dropdownInputTextClassName?: string;
|
|
279
281
|
onChange?: (newValue: DropdownValue<IsMulti>) => void;
|
|
280
282
|
placeholder?: string;
|
|
281
283
|
empty_text?: string;
|
|
@@ -421,6 +423,7 @@ export interface AddSuggestionProps {
|
|
|
421
423
|
height?: string;
|
|
422
424
|
labelSize?: typographyTextType;
|
|
423
425
|
labelColor?: string;
|
|
426
|
+
closeDropdownAfterSelect?: boolean;
|
|
424
427
|
prefix?: ReactNode;
|
|
425
428
|
suffixButton?: ReactNode;
|
|
426
429
|
suffixDropdown?: any;
|