@contentful/experiences-core 2.0.0-dev-20250704T1052-fad2ef4.0 → 2.0.0-prerelease-20250703T1150-c529c88.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/entity/EntityStore.d.ts +7 -1
- package/dist/index.js +10 -7
- package/dist/index.js.map +1 -1
- package/dist/utils/breakpoints.d.ts +3 -3
- package/package.json +3 -3
|
@@ -9,8 +9,8 @@ declare const getActiveBreakpointIndex: (breakpoints: Breakpoint[], mediaQueryMa
|
|
|
9
9
|
declare const getFallbackBreakpointIndex: (breakpoints: Breakpoint[]) => number;
|
|
10
10
|
declare const isValidBreakpointValue: (value: PrimitiveValue) => value is Exclude<PrimitiveValue, undefined>;
|
|
11
11
|
declare const getValueForBreakpoint: (valuesByBreakpoint: ValuesByBreakpoint | undefined, breakpoints: Breakpoint[], activeBreakpointIndex: number, fallbackBreakpointIndex: number, propertyName?: string, resolveDesignTokens?: boolean) => string | number | boolean | Record<any, any> | undefined;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
declare
|
|
12
|
+
/** Overwrites the default value breakpoint by breakpoint. If a breakpoint
|
|
13
|
+
* is not overwritten, it will fall back to the default. */
|
|
14
|
+
declare const mergeDesignValuesByBreakpoint: (defaultValue: DesignValue, overwriteValue: DesignValue) => DesignValue;
|
|
15
15
|
|
|
16
16
|
export { MEDIA_QUERY_REGEXP, getActiveBreakpointIndex, getFallbackBreakpointIndex, getValueForBreakpoint, isValidBreakpointValue, mediaQueryMatcher, mergeDesignValuesByBreakpoint };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/experiences-core",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-prerelease-20250703T1150-c529c88.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -70,11 +70,11 @@
|
|
|
70
70
|
"vitest": "^2.1.1"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@contentful/experiences-validators": "2.0.0-
|
|
73
|
+
"@contentful/experiences-validators": "2.0.0-prerelease-20250703T1150-c529c88.0",
|
|
74
74
|
"@contentful/rich-text-types": "^17.0.0"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
77
|
"contentful": ">=10.6.0"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "289f4dfe00da087732b443431fe67764fdbe9718"
|
|
80
80
|
}
|