@contentful/experiences-core 1.6.1-prerelease-20240605T1751-661cb0e.0 → 1.7.0-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.
@@ -13,7 +13,7 @@ declare const getBreakpointRegistration: (id: string) => {
13
13
  displayName: string;
14
14
  query: string;
15
15
  previewSize: string;
16
- displayIconUrl?: string | undefined;
16
+ displayIcon?: "desktop" | "tablet" | "mobile" | undefined;
17
17
  } | undefined;
18
18
  declare const resetBreakpointsRegistry: () => void;
19
19
 
package/dist/types.d.ts CHANGED
@@ -164,9 +164,9 @@ type DesignTokensDefinition = {
164
164
  sizing?: Record<string, string>;
165
165
  color?: Record<string, string>;
166
166
  border?: Record<string, {
167
- width: string;
168
- style: 'solid' | 'dashed' | 'dotted';
169
- color: string;
167
+ width?: string;
168
+ style?: 'solid' | 'dashed' | 'dotted';
169
+ color?: string;
170
170
  }>;
171
171
  borderRadius?: Record<string, string>;
172
172
  fontSize?: Record<string, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/experiences-core",
3
- "version": "1.6.1-prerelease-20240605T1751-661cb0e.0",
3
+ "version": "1.7.0-beta.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -65,11 +65,11 @@
65
65
  "vitest": "^1.0.4"
66
66
  },
67
67
  "dependencies": {
68
- "@contentful/experiences-validators": "1.6.1-prerelease-20240605T1751-661cb0e.0",
68
+ "@contentful/experiences-validators": "1.7.0-beta.0",
69
69
  "@contentful/rich-text-types": "^16.3.0"
70
70
  },
71
71
  "peerDependencies": {
72
72
  "contentful": ">=10.6.0"
73
73
  },
74
- "gitHead": "c77907e9cb9d9fab9b769e60e180505f1c6b6f5b"
74
+ "gitHead": "f84ac77a71fcfb0e83f91acb8ffec3473f6b98f2"
75
75
  }