@contentful/experiences-core 1.15.0-beta.0 → 1.15.0-dev-20240911T0845-c2631a9.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.js +4 -10
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +0 -1
- package/dist/utils/breakpoints.d.ts +1 -1
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -405,7 +405,6 @@ type ComponentDraggingChangedPayload = {
|
|
|
405
405
|
type IncomingComponentDragCanceledPayload = undefined;
|
|
406
406
|
type ComponentDragStartedPayload = {
|
|
407
407
|
id: string;
|
|
408
|
-
isAssembly: boolean;
|
|
409
408
|
};
|
|
410
409
|
type ComponentDragEndedPayload = undefined;
|
|
411
410
|
type IncomingComponentMoveEndedPayload = {
|
|
@@ -7,6 +7,6 @@ declare const mediaQueryMatcher: (breakpoints: Breakpoint[]) => [{
|
|
|
7
7
|
}[], Record<string, boolean>];
|
|
8
8
|
declare const getActiveBreakpointIndex: (breakpoints: Breakpoint[], mediaQueryMatches: Record<string, boolean>, fallbackBreakpointIndex: number) => number;
|
|
9
9
|
declare const getFallbackBreakpointIndex: (breakpoints: Breakpoint[]) => number;
|
|
10
|
-
declare const getValueForBreakpoint: (valuesByBreakpoint: ValuesByBreakpoint, breakpoints: Breakpoint[], activeBreakpointIndex: number, variableName: string
|
|
10
|
+
declare const getValueForBreakpoint: (valuesByBreakpoint: ValuesByBreakpoint, breakpoints: Breakpoint[], activeBreakpointIndex: number, variableName: string) => string | number | boolean | Record<any, any> | undefined;
|
|
11
11
|
|
|
12
12
|
export { MEDIA_QUERY_REGEXP, getActiveBreakpointIndex, getFallbackBreakpointIndex, getValueForBreakpoint, mediaQueryMatcher };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/experiences-core",
|
|
3
|
-
"version": "1.15.0-
|
|
3
|
+
"version": "1.15.0-dev-20240911T0845-c2631a9.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -69,11 +69,11 @@
|
|
|
69
69
|
"vitest": "^1.0.4"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@contentful/experiences-validators": "1.15.0-
|
|
72
|
+
"@contentful/experiences-validators": "1.15.0-dev-20240911T0845-c2631a9.0",
|
|
73
73
|
"@contentful/rich-text-types": "^16.3.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
76
|
"contentful": ">=10.6.0"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "abcfdd33d672a74978624d7d3f0cefff1e2afd12"
|
|
79
79
|
}
|