@contentful/experiences-core 1.6.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.
- package/dist/deep-binding/DeepReference.d.ts +0 -1
- package/dist/entity/EntityStore.d.ts +1 -1
- package/dist/index.js +37 -49
- package/dist/index.js.map +1 -1
- package/dist/registries/breakpointsRegistry.d.ts +1 -1
- package/dist/types.d.ts +3 -3
- package/dist/utils/styleUtils/stylesUtils.d.ts +1 -1
- package/package.json +3 -3
|
@@ -13,7 +13,7 @@ declare const getBreakpointRegistration: (id: string) => {
|
|
|
13
13
|
displayName: string;
|
|
14
14
|
query: string;
|
|
15
15
|
previewSize: string;
|
|
16
|
-
|
|
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
|
|
168
|
-
style
|
|
169
|
-
color
|
|
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>;
|
|
@@ -6,7 +6,7 @@ declare const buildStyleTag: ({ styles, nodeId }: {
|
|
|
6
6
|
styles: CSSProperties;
|
|
7
7
|
nodeId?: string | undefined;
|
|
8
8
|
}) => string[];
|
|
9
|
-
declare const buildCfStyles: ({ cfHorizontalAlignment, cfVerticalAlignment, cfFlexDirection, cfFlexWrap, cfMargin, cfPadding, cfBackgroundColor, cfWidth, cfHeight, cfMaxWidth, cfBorder, cfBorderRadius, cfGap, cfBackgroundImageUrl, cfBackgroundImageOptions, cfFontSize, cfFontWeight, cfImageOptions, cfLineHeight, cfLetterSpacing, cfTextColor, cfTextAlign, cfTextTransform, cfTextBold, cfTextItalic, cfTextUnderline, cfColumnSpan, }: Partial<StyleProps
|
|
9
|
+
declare const buildCfStyles: ({ cfHorizontalAlignment, cfVerticalAlignment, cfFlexDirection, cfFlexWrap, cfMargin, cfPadding, cfBackgroundColor, cfWidth, cfHeight, cfMaxWidth, cfBorder, cfBorderRadius, cfGap, cfBackgroundImageUrl, cfBackgroundImageOptions, cfFontSize, cfFontWeight, cfImageOptions, cfLineHeight, cfLetterSpacing, cfTextColor, cfTextAlign, cfTextTransform, cfTextBold, cfTextItalic, cfTextUnderline, cfColumnSpan, }: Partial<StyleProps>) => CSSProperties;
|
|
10
10
|
/**
|
|
11
11
|
* Container/section default behavior:
|
|
12
12
|
* Default height => height: EMPTY_CONTAINER_HEIGHT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/experiences-core",
|
|
3
|
-
"version": "1.
|
|
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.
|
|
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": "
|
|
74
|
+
"gitHead": "f84ac77a71fcfb0e83f91acb8ffec3473f6b98f2"
|
|
75
75
|
}
|