react-luminus-components 1.3.214 → 1.3.216

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 CustomSelectInput: ({ InputContainer, value, options, onChange, label, withoutLabel, isNumber, size, hidden, disabled, noSortOptions, className, suffixIdToName, noEmptyOption, appendCurrentSelectionWithName, dropdownWidth, hint, addNewOptionPath, refreshOptions, MiniDetailComponent, }: FormSelectInputProps) => import("react").JSX.Element;
3
+ declare const CustomSelectInput: ({ InputContainer, value, options, onChange, label, withoutLabel, isNumber, size, hidden, disabled, noSortOptions, className, suffixIdToName, noEmptyOption, appendCurrentSelectionWithName, dropdownWidth, hint, addNewOptionPath, refreshOptions, MiniDetailComponent, miniDetailPlacement, }: FormSelectInputProps) => import("react").JSX.Element;
4
4
  export default CustomSelectInput;
@@ -1,6 +1,6 @@
1
1
  import { DropdownPickerProps, DropdownPickerOption, FormSelectOption } from '../../../models/index';
2
2
 
3
- declare const DropdownPicker: ({ InputContainer, items, selectedItemNavigateTo, onSearchQueryChange, texts, isLoading, value, onSelect, label, withoutLabel, size, dropdownItemsNameWidth, additionalColumns, hidden, disabled, displayIdAsName, CustomOnChangeComponent, className, archiveColumn, icon, hint, addNewOptionPath, refreshOptions, MiniDetailComponent, }: DropdownPickerProps & {
3
+ declare const DropdownPicker: ({ InputContainer, items, selectedItemNavigateTo, onSearchQueryChange, texts, isLoading, value, onSelect, label, withoutLabel, size, dropdownItemsNameWidth, additionalColumns, hidden, disabled, displayIdAsName, CustomOnChangeComponent, className, archiveColumn, icon, hint, addNewOptionPath, refreshOptions, MiniDetailComponent, miniDetailPlacement, }: DropdownPickerProps & {
4
4
  value: FormSelectOption | null;
5
5
  onSelect: (item: DropdownPickerOption | null) => void;
6
6
  }) => import("react").JSX.Element;
@@ -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, appendCurrentSelectionWithName, hint, addNewOptionPath, refreshOptions, MiniDetailComponent, }: 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, hint, addNewOptionPath, refreshOptions, MiniDetailComponent, miniDetailPlacement, }: HookFormSelectInputProps) => import("react").JSX.Element;
4
4
  export default CustomSelectInput;
@@ -1,4 +1,4 @@
1
1
  import { default as HookFormDropdownPickerProps } from '../../../models/prop-types/HookFormInputProps/HookFormDropdownPickerProps';
2
2
 
3
- declare const HookFormDropdownPicker: ({ InputContainer, formField, label, size, defaultSelection, resetsFields, isNumber, required, hidden, disabled, items, onSearchQueryChange, selectedItemNavigateTo, texts, dropdownItemsNameWidth, isLoading, withoutLabel, additionalColumns, CustomOnChangeComponent, icon, displayIdAsName, onSelect, className, archiveColumn, hint, addNewOptionPath, refreshOptions, MiniDetailComponent, }: HookFormDropdownPickerProps) => import("react").JSX.Element;
3
+ declare const HookFormDropdownPicker: ({ InputContainer, formField, label, size, defaultSelection, resetsFields, isNumber, required, hidden, disabled, items, onSearchQueryChange, selectedItemNavigateTo, texts, dropdownItemsNameWidth, isLoading, withoutLabel, additionalColumns, CustomOnChangeComponent, icon, displayIdAsName, onSelect, className, archiveColumn, hint, addNewOptionPath, refreshOptions, MiniDetailComponent, miniDetailPlacement, }: HookFormDropdownPickerProps) => import("react").JSX.Element;
4
4
  export default HookFormDropdownPicker;
@@ -4,6 +4,7 @@ type Props = {
4
4
  value: string | number | null;
5
5
  MiniDetailComponent?: React.FC<MiniDetailComponentProps>;
6
6
  children: React.ReactNode;
7
+ miniDetailPlacement?: 'top' | 'bottom' | 'left' | 'right';
7
8
  };
8
- declare const MiniDetailWrapper: ({ value, MiniDetailComponent, children }: Props) => string | number | boolean | Iterable<import('react').ReactNode> | import("react").JSX.Element | null | undefined;
9
+ declare const MiniDetailWrapper: ({ value, MiniDetailComponent, children, miniDetailPlacement, }: Props) => string | number | boolean | Iterable<import('react').ReactNode> | import("react").JSX.Element | null | undefined;
9
10
  export default MiniDetailWrapper;
@@ -6,6 +6,9 @@ type Props = {
6
6
  locale?: Locale;
7
7
  yearMin?: number;
8
8
  yearMax?: number;
9
+ className?: string;
10
+ monthClassName?: string;
11
+ yearClassName?: string;
9
12
  };
10
- declare const MonthPicker: ({ month, onChangeMonth, locale, yearMin, yearMax }: Props) => import("react").JSX.Element;
13
+ declare const MonthPicker: ({ month, onChangeMonth, locale, yearMin, yearMax, className, monthClassName, yearClassName, }: Props) => import("react").JSX.Element;
11
14
  export default MonthPicker;