@reachfive/identity-ui 1.32.1 → 1.32.2
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/cjs/identity-ui.js +3 -12
- package/cjs/identity-ui.js.map +1 -1
- package/es/identity-ui.js +3 -12
- package/es/identity-ui.js.map +1 -1
- package/es/identity-ui.min.js +4 -4
- package/es/identity-ui.min.js.map +1 -1
- package/package.json +1 -1
- package/types/identity-ui.d.ts +2 -2
- package/umd/identity-ui.js +3 -12
- package/umd/identity-ui.js.map +1 -1
- package/umd/identity-ui.min.js +4 -4
- package/umd/identity-ui.min.js.map +1 -1
package/package.json
CHANGED
package/types/identity-ui.d.ts
CHANGED
package/umd/identity-ui.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @reachfive/identity-ui - v1.32.
|
|
3
|
-
* Compiled
|
|
2
|
+
* @reachfive/identity-ui - v1.32.2
|
|
3
|
+
* Compiled Mon, 10 Feb 2025 15:46:55 UTC
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) ReachFive.
|
|
6
6
|
*
|
|
@@ -40727,7 +40727,7 @@
|
|
|
40727
40727
|
return dt && isValid(dt) ? { raw: dt } : void 0;
|
|
40728
40728
|
},
|
|
40729
40729
|
unbind: (value) => {
|
|
40730
|
-
return isRichFormValue(value, "raw") ? formatISO(value.raw) : value ? formatISO(value) : null;
|
|
40730
|
+
return isRichFormValue(value, "raw") ? formatISO(value.raw, { representation: "date" }) : value ? formatISO(value, { representation: "date" }) : null;
|
|
40731
40731
|
}
|
|
40732
40732
|
},
|
|
40733
40733
|
validator: validator ? datetimeValidator(config.language).and(validator) : datetimeValidator(config.language),
|
|
@@ -40751,15 +40751,6 @@
|
|
|
40751
40751
|
return dateField({
|
|
40752
40752
|
...props,
|
|
40753
40753
|
label,
|
|
40754
|
-
format: {
|
|
40755
|
-
bind: (value) => {
|
|
40756
|
-
const dt = value ? parseISO(value) : void 0;
|
|
40757
|
-
return dt && isValid(dt) ? { raw: dt } : void 0;
|
|
40758
|
-
},
|
|
40759
|
-
unbind: (value) => {
|
|
40760
|
-
return isRichFormValue(value, "raw") ? formatISO(value.raw, { representation: "date" }) : value ? formatISO(value, { representation: "date" }) : null;
|
|
40761
|
-
}
|
|
40762
|
-
},
|
|
40763
40754
|
validator: ageLimitValidator(min, max)
|
|
40764
40755
|
}, config);
|
|
40765
40756
|
}
|