@commercetools-demo/puck-page-manager 0.5.1 → 0.6.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/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +363 -255
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +381 -236
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -16
package/dist/index.d.mts
CHANGED
|
@@ -8,6 +8,8 @@ interface PageManagerProps {
|
|
|
8
8
|
projectKey: string;
|
|
9
9
|
businessUnitKey: string;
|
|
10
10
|
jwtToken: string;
|
|
11
|
+
/** Content locale (e.g. "en-US") used for locale-aware calls like product search */
|
|
12
|
+
locale?: string;
|
|
11
13
|
/** Puck component config — passed to editor and preview. Defaults to defaultPuckConfig. */
|
|
12
14
|
config?: Config;
|
|
13
15
|
/** Optional element rendered before the breadcrumb in editor/preview headers */
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ interface PageManagerProps {
|
|
|
8
8
|
projectKey: string;
|
|
9
9
|
businessUnitKey: string;
|
|
10
10
|
jwtToken: string;
|
|
11
|
+
/** Content locale (e.g. "en-US") used for locale-aware calls like product search */
|
|
12
|
+
locale?: string;
|
|
11
13
|
/** Puck component config — passed to editor and preview. Defaults to defaultPuckConfig. */
|
|
12
14
|
config?: Config;
|
|
13
15
|
/** Optional element rendered before the breadcrumb in editor/preview headers */
|