@contentful/experiences-core 3.5.0-dev-20250902T1514-0e19e78.0 → 3.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/types.d.ts +10 -0
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -162,6 +162,14 @@ type ComponentRegistrationOptions = {
|
|
|
162
162
|
* @deprecated This is a temporary solution and will be removed in a future major version.
|
|
163
163
|
*/
|
|
164
164
|
__disableTextAlignmentTransform?: boolean;
|
|
165
|
+
/**
|
|
166
|
+
* If you need to adjust the built-in structural components (e.g. `container`),
|
|
167
|
+
* enable this flag. It is marked as *unsafe* since the logic of those components
|
|
168
|
+
* might evolve in future versions. By overwriting their implementation, you accept
|
|
169
|
+
* the risk of potential breaking changes and running out of sync with the original
|
|
170
|
+
* implementation.
|
|
171
|
+
*/
|
|
172
|
+
__unsafe__enableBuiltInStructureOverwrites?: boolean;
|
|
165
173
|
};
|
|
166
174
|
type Binding = {
|
|
167
175
|
spaceId: string;
|
|
@@ -192,6 +200,7 @@ type ExperienceTreeNode = {
|
|
|
192
200
|
unboundValues: ExperienceUnboundValues;
|
|
193
201
|
breakpoints: Breakpoint[];
|
|
194
202
|
parameters?: Record<string, Parameter>;
|
|
203
|
+
prebindingId?: string;
|
|
195
204
|
pattern?: {
|
|
196
205
|
id: string;
|
|
197
206
|
nodeId: string;
|
|
@@ -340,6 +349,7 @@ type DesignTokensDefinition = {
|
|
|
340
349
|
} & RecursiveDesignTokenDefinition;
|
|
341
350
|
type SdkOptions = {
|
|
342
351
|
__disableTextAlignmentTransform?: ComponentRegistrationOptions['__disableTextAlignmentTransform'];
|
|
352
|
+
__unsafe__enableBuiltInStructureOverwrites?: ComponentRegistrationOptions['__unsafe__enableBuiltInStructureOverwrites'];
|
|
343
353
|
};
|
|
344
354
|
/** Type of experience entry JSON data structure as returned by CPA/CDA */
|
|
345
355
|
type ExperienceEntry = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/experiences-core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"vitest": "^2.1.1"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@contentful/experiences-validators": "3.
|
|
73
|
+
"@contentful/experiences-validators": "3.6.0",
|
|
74
74
|
"@contentful/rich-text-types": "^17.0.0",
|
|
75
75
|
"lodash-es": "^4.17.21",
|
|
76
76
|
"zustand": "^4.4.7"
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"peerDependencies": {
|
|
79
79
|
"contentful": ">=10.6.0"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "836246fcc25ef7298ad4001374f3115d696320fa"
|
|
82
82
|
}
|