@contentful/experiences-core 3.8.5 → 3.8.6-beta.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/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -3
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import * as contentful from 'contentful';
|
|
|
4
4
|
import { UnresolvedLink, Asset, Entry, ChainModifiers, AssetFile, ContentfulClientApi } from 'contentful';
|
|
5
5
|
import { Document } from '@contentful/rich-text-types';
|
|
6
6
|
import * as react from 'react';
|
|
7
|
-
import { Entry as Entry$1, Asset as Asset$1 } from 'contentful/dist/types/types';
|
|
8
7
|
import * as zustand from 'zustand';
|
|
9
8
|
|
|
10
9
|
declare const structureComponentIds: Set<"contentful-section" | "contentful-container" | "contentful-columns" | "contentful-single-column">;
|
|
@@ -1194,7 +1193,7 @@ declare const isCfStyleAttribute: (variableName: string) => variableName is keyo
|
|
|
1194
1193
|
declare const maybePopulateDesignTokenValue: (variableName: string, variableValue: unknown, mapOfDesignVariableKeys: FlattenedDesignTokens) => unknown;
|
|
1195
1194
|
declare const resolveBackgroundImageBinding: ({ variableData, getBoundEntityById, dataSource, unboundValues, componentVariablesOverwrites, componentSettings, options, width, }: {
|
|
1196
1195
|
variableData: ComponentPropertyValue;
|
|
1197
|
-
getBoundEntityById: (id: string) => Entry
|
|
1196
|
+
getBoundEntityById: (id: string) => Entry | Asset | undefined;
|
|
1198
1197
|
unboundValues?: ExperienceUnboundValues;
|
|
1199
1198
|
dataSource?: ExperienceDataSource;
|
|
1200
1199
|
componentSettings?: ExperienceComponentSettings;
|
|
@@ -1240,7 +1239,7 @@ declare const resolveBackgroundImageBinding: ({ variableData, getBoundEntityById
|
|
|
1240
1239
|
declare const indexByBreakpoint: ({ variables, breakpointIds, getBoundEntityById, unboundValues, dataSource, componentVariablesOverwrites, componentSettings, }: {
|
|
1241
1240
|
variables: Record<string, ComponentPropertyValue>;
|
|
1242
1241
|
breakpointIds: string[];
|
|
1243
|
-
getBoundEntityById: (id: string) => Entry
|
|
1242
|
+
getBoundEntityById: (id: string) => Entry | Asset | undefined;
|
|
1244
1243
|
unboundValues?: ExperienceUnboundValues;
|
|
1245
1244
|
dataSource?: ExperienceDataSource;
|
|
1246
1245
|
componentVariablesOverwrites?: Record<string, ComponentPropertyValue>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/experiences-core",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.6-beta.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@rollup/plugin-typescript": "^11.1.5",
|
|
68
68
|
"@types/lodash.clonedeep": "^4.5.9",
|
|
69
69
|
"@vitest/coverage-v8": "^2.1.1",
|
|
70
|
-
"contentful": "^10.
|
|
70
|
+
"contentful": "^11.10.2",
|
|
71
71
|
"happy-dom": "^13.3.8",
|
|
72
72
|
"rimraf": "^5.0.5",
|
|
73
73
|
"rollup-plugin-dts": "^6.1.0",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"vitest": "^2.1.1"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@contentful/experiences-validators": "3.8.
|
|
79
|
+
"@contentful/experiences-validators": "3.8.6-beta.0",
|
|
80
80
|
"@contentful/rich-text-types": "^17.0.0",
|
|
81
81
|
"lodash.clonedeep": "^4.5.0",
|
|
82
82
|
"zustand": "^4.4.7"
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"peerDependencies": {
|
|
85
85
|
"contentful": ">=10.6.0"
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "4bcbe88f421005391c820dd7d4eda8c98926cf9d"
|
|
88
88
|
}
|