@plaudit/gutenberg-api-extensions 2.94.1 → 2.94.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/CHANGELOG.md +4 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
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.94.2] - 2026-04-28
|
|
9
|
+
### Fixed
|
|
10
|
+
- The `useful-types` export being incorrectly forced to a type-only export
|
|
11
|
+
|
|
8
12
|
## [2.94.1] - 2026-04-27
|
|
9
13
|
### Fixed
|
|
10
14
|
- `groups` using the `toolsPanel` interface having all of their subfields active by default
|
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export * from "./lib/modified-fast-deep-equals";
|
|
|
9
9
|
export * from "./lib/plaudit-icons";
|
|
10
10
|
export * as SectionedCacheStore from "./lib/sectioned-cache-store";
|
|
11
11
|
export * from "./lib/suspense";
|
|
12
|
-
export
|
|
12
|
+
export * from "./lib/useful-types";
|
|
13
13
|
export { apiExtensionsStore, endpointsStore };
|
|
14
14
|
export declare function installGutenbergExtensions(): void;
|
|
15
15
|
export declare namespace installGutenbergExtensions {
|
package/dist/index.js
CHANGED
|
@@ -55,6 +55,7 @@ __exportStar(require("./lib/modified-fast-deep-equals"), exports);
|
|
|
55
55
|
__exportStar(require("./lib/plaudit-icons"), exports);
|
|
56
56
|
exports.SectionedCacheStore = __importStar(require("./lib/sectioned-cache-store"));
|
|
57
57
|
__exportStar(require("./lib/suspense"), exports);
|
|
58
|
+
__exportStar(require("./lib/useful-types"), exports);
|
|
58
59
|
function installGutenbergExtensions() {
|
|
59
60
|
if (!installGutenbergExtensions.called) {
|
|
60
61
|
installGutenbergExtensions.called = true;
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkBA,gEAQC;AA1BD,sFAA0F;AAC1F,oIAAyH;AACzH,8FAAoH;AAcxF,+FAdwB,uCAAc,OAcxB;AAb1C,yFAAgG;AAaxF,mGAbwB,sCAAkB,OAaxB;AAX1B,2CAAyB;AACzB,6CAA2B;AAC3B,0EAAwD;AACxD,kFAAgE;AAChE,yCAAqE;AAA7D,2GAAA,gBAAgB,OAAA;AAAE,+GAAA,oBAAoB,OAAA;AAC9C,kEAAgD;AAChD,sDAAoC;AACpC,mFAAmE;AACnE,iDAA+B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkBA,gEAQC;AA1BD,sFAA0F;AAC1F,oIAAyH;AACzH,8FAAoH;AAcxF,+FAdwB,uCAAc,OAcxB;AAb1C,yFAAgG;AAaxF,mGAbwB,sCAAkB,OAaxB;AAX1B,2CAAyB;AACzB,6CAA2B;AAC3B,0EAAwD;AACxD,kFAAgE;AAChE,yCAAqE;AAA7D,2GAAA,gBAAgB,OAAA;AAAE,+GAAA,oBAAoB,OAAA;AAC9C,kEAAgD;AAChD,sDAAoC;AACpC,mFAAmE;AACnE,iDAA+B;AAC/B,qDAAmC;AAInC,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,mEAAiC,GAAE,CAAC;QACpC,IAAA,iGAA4C,GAAE,CAAC;IAChD,CAAC;AACF,CAAC;AACD,WAAiB,0BAA0B;IAC/B,iCAAM,GAAY,KAAK,CAAC;AACpC,CAAC,EAFgB,0BAA0B,0CAA1B,0BAA0B,QAE1C"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -12,7 +12,7 @@ export * from "./lib/modified-fast-deep-equals";
|
|
|
12
12
|
export * from "./lib/plaudit-icons";
|
|
13
13
|
export * as SectionedCacheStore from "./lib/sectioned-cache-store";
|
|
14
14
|
export * from "./lib/suspense";
|
|
15
|
-
export
|
|
15
|
+
export * from "./lib/useful-types";
|
|
16
16
|
|
|
17
17
|
export {apiExtensionsStore, endpointsStore};
|
|
18
18
|
|