iglooform 2.5.32 → 2.5.33
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/es/utils/form-utils.js
CHANGED
|
@@ -222,7 +222,7 @@ export var calcFormItemProps = function calcFormItemProps(config, extraProps, fo
|
|
|
222
222
|
|
|
223
223
|
if (dateLimitationType) {
|
|
224
224
|
if (['DatePicker', 'BuddhistDatePicker'].includes(type)) {
|
|
225
|
-
var rangeStart =
|
|
225
|
+
var rangeStart = Number.MIN_SAFE_INTEGER;
|
|
226
226
|
var rangeEnd = Number.MAX_SAFE_INTEGER;
|
|
227
227
|
|
|
228
228
|
if (dateLimitationType === 'absolute' && absoluteRangeStart) {
|
package/lib/utils/form-utils.js
CHANGED
|
@@ -241,7 +241,7 @@ var calcFormItemProps = function calcFormItemProps(config, extraProps, form, par
|
|
|
241
241
|
|
|
242
242
|
if (dateLimitationType) {
|
|
243
243
|
if (['DatePicker', 'BuddhistDatePicker'].includes(type)) {
|
|
244
|
-
var rangeStart =
|
|
244
|
+
var rangeStart = Number.MIN_SAFE_INTEGER;
|
|
245
245
|
var rangeEnd = Number.MAX_SAFE_INTEGER;
|
|
246
246
|
|
|
247
247
|
if (dateLimitationType === 'absolute' && absoluteRangeStart) {
|