@npm_leadtech/legal-lib-components 4.1.21 → 4.1.23

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.
@@ -67,13 +67,6 @@ const DatePickerCustom = ({ class: className, dateFormat = 'MM/dd/yyyy', isStart
67
67
  changeMonth(Number(value));
68
68
  }, children: months.map(({ monthName }, value) => (_jsx("option", { value: value, defaultValue: date.getMonth(), children: monthName }, monthName))) }), _jsx("button", { className: 'DayPickerNavigation_rightButton', onClick: increaseMonth, disabled: nextMonthButtonDisabled, children: '>' })] })), selected: date, minDate: minDate, maxDate: maxDate, onChange: (date) => {
69
69
  handleChange(date);
70
- }, popperPlacement: 'bottom', popperModifiers: [
71
- {
72
- name: 'flip',
73
- options: {
74
- fallbackPlacements: ['bottom']
75
- }
76
- }
77
- ] }), _jsx("div", { className: 'e-datepicker__inner', children: _jsx("label", { className: 'e-datepicker__label', children: label }) })] }));
70
+ }, popperPlacement: 'bottom' }), _jsx("div", { className: 'e-datepicker__inner', children: _jsx("label", { className: 'e-datepicker__label', children: label }) })] }));
78
71
  };
79
72
  export default DatePickerCustom;
@@ -159,14 +159,6 @@ const DatePickerCustom: FC<DatePickerCustomProps> = ({
159
159
  handleChange(date)
160
160
  }}
161
161
  popperPlacement='bottom'
162
- popperModifiers={[
163
- {
164
- name: 'flip',
165
- options: {
166
- fallbackPlacements: ['bottom']
167
- }
168
- }
169
- ]}
170
162
  />
171
163
  <div className={'e-datepicker__inner'}>
172
164
  <label className={'e-datepicker__label'}>{label}</label>