@plaudit/gutenberg-api-extensions 2.87.0 → 2.88.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 +4 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +12 -12
- package/src/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.88.0] - 2026-03-23
|
|
9
|
+
### Added
|
|
10
|
+
- The `TemporalLRUCache` class to the list of exports
|
|
11
|
+
|
|
8
12
|
## [2.87.0] - 2026-03-03
|
|
9
13
|
### Added
|
|
10
14
|
- The `message` CSNP "field"
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { type store as apiStore } from "./lib/gutenberg-api-extensions-state";
|
|
|
3
3
|
export * from "./blocks";
|
|
4
4
|
export * from "./controls";
|
|
5
5
|
export * from "./editor/simple-gutenberg-endpoints-api";
|
|
6
|
+
export { TemporalLRUCache } from "./lib/helpers";
|
|
6
7
|
export * from "./lib/plaudit-icons";
|
|
7
8
|
export * from "./lib/suspense";
|
|
8
9
|
export type * from "./lib/useful-types";
|
package/dist/index.js
CHANGED
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.TemporalLRUCache = void 0;
|
|
17
18
|
exports.installGutenbergExtensions = installGutenbergExtensions;
|
|
18
19
|
const simple_native_property_impl_1 = require("./blocks/simple-native-property-impl");
|
|
19
20
|
const post_featured_image_1 = require("./editor/post-featured-image");
|
|
@@ -22,6 +23,8 @@ const gutenberg_api_extensions_state_1 = require("./lib/gutenberg-api-extensions
|
|
|
22
23
|
__exportStar(require("./blocks"), exports);
|
|
23
24
|
__exportStar(require("./controls"), exports);
|
|
24
25
|
__exportStar(require("./editor/simple-gutenberg-endpoints-api"), exports);
|
|
26
|
+
var helpers_1 = require("./lib/helpers");
|
|
27
|
+
Object.defineProperty(exports, "TemporalLRUCache", { enumerable: true, get: function () { return helpers_1.TemporalLRUCache; } });
|
|
25
28
|
__exportStar(require("./lib/plaudit-icons"), exports);
|
|
26
29
|
__exportStar(require("./lib/suspense"), exports);
|
|
27
30
|
function installGutenbergExtensions() {
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAaA,gEAQC;AArBD,sFAA0F;AAC1F,sEAAwF;AACxF,8FAAwH;AACxH,yFAA2F;AAE3F,2CAAyB;AACzB,6CAA2B;AAC3B,0EAAwD;AACxD,yCAA+C;AAAvC,2GAAA,gBAAgB,OAAA;AACxB,sDAAoC;AACpC,iDAA+B;AAG/B,SAAgB,0BAA0B;IACzC,IAAI,CAAC,0BAA0B,CAAC,MAAM,EAAE,CAAC;QACxC,0BAA0B,CAAC,MAAM,GAAG,IAAI,CAAC;QACzC,IAAA,8CAAa,GAAE,CAAC;QAChB,IAAA,kEAAoC,GAAE,CAAC;QACvC,IAAA,gEAA0C,GAAE,CAAC;QAC7C,IAAA,mEAAiC,GAAE,CAAC;IACrC,CAAC;AACF,CAAC;AACD,WAAiB,0BAA0B;IAC/B,iCAAM,GAAY,KAAK,CAAC;AACpC,CAAC,EAFgB,0BAA0B,0CAA1B,0BAA0B,QAE1C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plaudit/gutenberg-api-extensions",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.88.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"files": [
|
|
6
6
|
"./dist",
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
"@types/react": "^18.3.28",
|
|
26
26
|
"@types/wordpress__block-editor": "^15.0.5",
|
|
27
27
|
"@types/wordpress__blocks": "^15.10.2",
|
|
28
|
-
"@wordpress/block-editor": "^15.
|
|
29
|
-
"@wordpress/blocks": "^15.
|
|
28
|
+
"@wordpress/block-editor": "^15.15.0",
|
|
29
|
+
"@wordpress/blocks": "^15.15.0",
|
|
30
30
|
"@wordpress/components": "^30.9.0",
|
|
31
|
-
"@wordpress/compose": "^7.
|
|
32
|
-
"@wordpress/core-data": "^7.
|
|
33
|
-
"@wordpress/data": "^10.
|
|
34
|
-
"@wordpress/editor": "^14.
|
|
35
|
-
"@wordpress/element": "^6.
|
|
36
|
-
"@wordpress/hooks": "^4.
|
|
37
|
-
"@wordpress/i18n": "^6.
|
|
38
|
-
"@wordpress/icons": "^11.
|
|
39
|
-
"framer-motion": "^12.
|
|
31
|
+
"@wordpress/compose": "^7.42.0",
|
|
32
|
+
"@wordpress/core-data": "^7.42.0",
|
|
33
|
+
"@wordpress/data": "^10.42.0",
|
|
34
|
+
"@wordpress/editor": "^14.42.0",
|
|
35
|
+
"@wordpress/element": "^6.42.0",
|
|
36
|
+
"@wordpress/hooks": "^4.42.0",
|
|
37
|
+
"@wordpress/i18n": "^6.15.0",
|
|
38
|
+
"@wordpress/icons": "^11.8.0",
|
|
39
|
+
"framer-motion": "^12.38.0",
|
|
40
40
|
"html-react-parser": "^5.2.17",
|
|
41
41
|
"immer": "^11.1.4",
|
|
42
42
|
"react": "^18.3.1",
|
package/src/index.ts
CHANGED
|
@@ -6,6 +6,7 @@ import {registerStore, type store as apiStore} from "./lib/gutenberg-api-extensi
|
|
|
6
6
|
export * from "./blocks";
|
|
7
7
|
export * from "./controls";
|
|
8
8
|
export * from "./editor/simple-gutenberg-endpoints-api";
|
|
9
|
+
export {TemporalLRUCache} from "./lib/helpers";
|
|
9
10
|
export * from "./lib/plaudit-icons";
|
|
10
11
|
export * from "./lib/suspense";
|
|
11
12
|
export type * from "./lib/useful-types";
|