@uxf/localize 11.88.2 → 11.92.1

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": "@uxf/localize",
3
- "version": "11.88.2",
3
+ "version": "11.92.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -23,7 +23,7 @@
23
23
  "react": ">=18.2.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@types/react": "18.3.26",
26
+ "@types/react": "18.3.27",
27
27
  "react": "18.3.1"
28
28
  }
29
29
  }
package/src/date/index.js CHANGED
@@ -41,7 +41,9 @@ exports.resolveDateValue = resolveDateValue;
41
41
  exports.dayjsTz = dayjsTz;
42
42
  const dayjs_1 = __importStar(require("dayjs"));
43
43
  const timezone_1 = __importDefault(require("dayjs/plugin/timezone"));
44
+ const utc_1 = __importDefault(require("dayjs/plugin/utc"));
44
45
  (0, dayjs_1.extend)(timezone_1.default);
46
+ (0, dayjs_1.extend)(utc_1.default);
45
47
  /*
46
48
  - If `value` is already a JS Date, keep it (it represents a concrete instant).
47
49
  - Else if it's a date-only string (length 10, e.g. "YYYY-MM-DD"), parse it as midnight in actualTimezone `tz` (avoids unintended shifts).