@contentful/experiences-core 3.5.1-dev-20250903T1122-7dbe32b.0 → 3.6.0-dev-20250903T1122-3b9f862.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 +9 -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;
|
|
@@ -341,6 +349,7 @@ type DesignTokensDefinition = {
|
|
|
341
349
|
} & RecursiveDesignTokenDefinition;
|
|
342
350
|
type SdkOptions = {
|
|
343
351
|
__disableTextAlignmentTransform?: ComponentRegistrationOptions['__disableTextAlignmentTransform'];
|
|
352
|
+
__unsafe__enableBuiltInStructureOverwrites?: ComponentRegistrationOptions['__unsafe__enableBuiltInStructureOverwrites'];
|
|
344
353
|
};
|
|
345
354
|
/** Type of experience entry JSON data structure as returned by CPA/CDA */
|
|
346
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-dev-20250903T1122-3b9f862.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-dev-20250903T1122-3b9f862.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": "79566d5f731632ba3d24e3b22477eb5e6cb34c97"
|
|
82
82
|
}
|