@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reachfive/identity-ui",
3
- "version": "1.32.1",
3
+ "version": "1.32.2",
4
4
  "description": "ReachFive Identity Web UI SDK",
5
5
  "author": "ReachFive",
6
6
  "repository": {
@@ -1,6 +1,6 @@
1
1
  /**
2
- * @reachfive/identity-ui - v1.32.1
3
- * Compiled Thu, 06 Feb 2025 17:46:27 UTC
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
  *
@@ -1,6 +1,6 @@
1
1
  /**
2
- * @reachfive/identity-ui - v1.32.1
3
- * Compiled Thu, 06 Feb 2025 17:46:27 UTC
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
  }