react-luminus-components 1.3.123 → 1.3.124

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.
@@ -1,4 +1,4 @@
1
1
  import { FormSelectInputProps } from '../../../models/index';
2
2
 
3
- declare const SelectInput: ({ InputContainer, value, options, onChange, label, withoutLabel, isNumber, size, hidden, disabled, showClearIcon, clearValue, noSortOptions, className, noEmptyOption, }: FormSelectInputProps) => import("react").JSX.Element;
3
+ declare const SelectInput: ({ InputContainer, value, options, onChange, label, withoutLabel, isNumber, size, hidden, disabled, showClearIcon, clearValue, noSortOptions, className, noEmptyOption, appendCurrentSelectionWithName, }: FormSelectInputProps) => import("react").JSX.Element;
4
4
  export default SelectInput;
@@ -1,4 +1,4 @@
1
1
  import { HookFormSelectInputProps } from '../../../models/index';
2
2
 
3
- declare const CustomSelectInput: ({ InputContainer, options, formField, label, size, resetsFields, isNumber, required, hidden, disabled, withoutLabel, noSortOptions, suffixIdToName, onSelect, className, }: HookFormSelectInputProps) => import("react").JSX.Element;
3
+ declare const CustomSelectInput: ({ InputContainer, options, formField, label, size, resetsFields, isNumber, required, hidden, disabled, withoutLabel, noSortOptions, suffixIdToName, onSelect, className, appendCurrentSelectionWithName, }: HookFormSelectInputProps) => import("react").JSX.Element;
4
4
  export default CustomSelectInput;