@wordpress/date 5.36.1-next.8fd3f8831.0 → 5.36.2-next.76cff8c98.0
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/CHANGELOG.md +5 -1
- package/LICENSE.md +1 -1
- package/build/index.cjs +2 -2
- package/build-module/{index.js → index.mjs} +1 -1
- package/build-module/types.mjs +1 -0
- package/package.json +5 -6
- package/build-module/types.js +0 -1
- /package/build-module/{index.js.map → index.mjs.map} +0 -0
- /package/build-module/{types.js.map → types.mjs.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## 5.36.1-next.0 (2026-01-07)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
6
8
|
|
|
7
9
|
- Fixed incorrect spacing for the time format. It was `g: i` (`14: 30`), and it's now `g:i` (`14:30`). ([#73924](https://github.com/WordPress/gutenberg/pull/73924))
|
|
8
10
|
- Fixed `timezone` argument handling to properly treat `0` numeric timezone values as a valid UTC offset (UTC+0). Previously, these were treated as if the `timezone` argument was not passed. ([#73887](https://github.com/WordPress/gutenberg/pull/73887))
|
|
9
11
|
|
|
12
|
+
## 5.37.0 (2025-12-23)
|
|
13
|
+
|
|
10
14
|
## 5.36.0 (2025-11-26)
|
|
11
15
|
|
|
12
16
|
### Bug Fixes
|
package/LICENSE.md
CHANGED
package/build/index.cjs
CHANGED
|
@@ -43,10 +43,10 @@ __export(index_exports, {
|
|
|
43
43
|
setSettings: () => setSettings
|
|
44
44
|
});
|
|
45
45
|
module.exports = __toCommonJS(index_exports);
|
|
46
|
-
var import_moment = __toESM(require("moment")
|
|
46
|
+
var import_moment = __toESM(require("moment"));
|
|
47
47
|
var import_moment_timezone = require("moment-timezone/moment-timezone");
|
|
48
48
|
var import_moment_timezone_utils = require("moment-timezone/moment-timezone-utils");
|
|
49
|
-
var import_deprecated = __toESM(require("@wordpress/deprecated")
|
|
49
|
+
var import_deprecated = __toESM(require("@wordpress/deprecated"));
|
|
50
50
|
var WP_ZONE = "WP";
|
|
51
51
|
var VALID_UTC_OFFSET = /^[+-][0-1][0-9](:?[0-9][0-9])?$/;
|
|
52
52
|
var settings = {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=types.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/date",
|
|
3
|
-
"version": "5.36.
|
|
3
|
+
"version": "5.36.2-next.76cff8c98.0",
|
|
4
4
|
"description": "Date module for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -29,13 +29,12 @@
|
|
|
29
29
|
"build-types",
|
|
30
30
|
"*.md"
|
|
31
31
|
],
|
|
32
|
-
"type": "module",
|
|
33
32
|
"main": "build/index.cjs",
|
|
34
|
-
"module": "build-module/index.
|
|
33
|
+
"module": "build-module/index.mjs",
|
|
35
34
|
"exports": {
|
|
36
35
|
".": {
|
|
37
36
|
"types": "./build-types/index.d.ts",
|
|
38
|
-
"import": "./build-module/index.
|
|
37
|
+
"import": "./build-module/index.mjs",
|
|
39
38
|
"require": "./build/index.cjs"
|
|
40
39
|
},
|
|
41
40
|
"./package.json": "./package.json"
|
|
@@ -44,12 +43,12 @@
|
|
|
44
43
|
"wpScript": true,
|
|
45
44
|
"types": "build-types",
|
|
46
45
|
"dependencies": {
|
|
47
|
-
"@wordpress/deprecated": "^4.36.1-next.
|
|
46
|
+
"@wordpress/deprecated": "^4.36.1-next.76cff8c98.0",
|
|
48
47
|
"moment": "^2.29.4",
|
|
49
48
|
"moment-timezone": "^0.5.40"
|
|
50
49
|
},
|
|
51
50
|
"publishConfig": {
|
|
52
51
|
"access": "public"
|
|
53
52
|
},
|
|
54
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "368727f14b858e75179e140967c2d9ec965c8790"
|
|
55
54
|
}
|
package/build-module/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=types.js.map
|
|
File without changes
|
|
File without changes
|