sccoreui 3.6.6 → 3.6.7
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.
|
@@ -106,6 +106,9 @@ const DatePicker = (props) => {
|
|
|
106
106
|
case 'placeholder':
|
|
107
107
|
datePickerProps['placeholder'] = props.placeholder;
|
|
108
108
|
break;
|
|
109
|
+
case 'maxDate':
|
|
110
|
+
datePickerProps['maxDate'] = props.maxDate;
|
|
111
|
+
break;
|
|
109
112
|
case 'className':
|
|
110
113
|
datePickerProps['className'] = props.className;
|
|
111
114
|
break;
|
|
@@ -138,7 +141,7 @@ const DatePicker = (props) => {
|
|
|
138
141
|
};
|
|
139
142
|
return ((0, jsx_runtime_1.jsx)("div", Object.assign({ onClick: onClear, className: "flex align-items-center absolute right-20 clear_icon_sec cursor-pointer" }, { children: (0, jsx_runtime_1.jsx)(svg_component_1.default, { className: "icon_right right_section_item absolute z-5 ", icon: props.clear, size: 20 }, Math.floor(Math.random() * 1000)) })));
|
|
140
143
|
};
|
|
141
|
-
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: `flex justify-content-center w-full relative align-items-center custom_date_picker_sec` }, { children: [(0, jsx_runtime_1.jsx)(calendar_1.Calendar, Object.assign({ ref: dateRef,
|
|
144
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: `flex justify-content-center w-full relative align-items-center custom_date_picker_sec` }, { children: [(0, jsx_runtime_1.jsx)(calendar_1.Calendar, Object.assign({ ref: dateRef, value: fromDate, onChange: (e) => onChangeDate(e), footerTemplate: template, className: `custom_date_picker ${(!JSON.stringify(fromDate).includes('null') && JSON.stringify(fromDate).includes(',')) ? 'multiple' : ''}` }, propsState, { iconPos: props.iconPos })), (props.clear && JSON.stringify(fromDate).split(',').length > 1) &&
|
|
142
145
|
clearIcon()] })));
|
|
143
146
|
};
|
|
144
147
|
exports.DatePicker = DatePicker;
|