@contentful/experiences-core 1.17.2-dev-20241009T1956-d3170ca.0 → 1.18.0-dev-20241009T2308-bb904e1.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/types.d.ts CHANGED
@@ -121,6 +121,7 @@ type StyleProps = {
121
121
  cfHeight: string;
122
122
  cfFlexDirection: 'row' | 'column';
123
123
  cfFlexWrap: 'nowrap' | 'wrap';
124
+ cfFlexReverse: boolean;
124
125
  cfBorder: string;
125
126
  cfBorderRadius: string;
126
127
  cfGap: string;
@@ -6,7 +6,7 @@ declare const buildStyleTag: ({ styles, nodeId }: {
6
6
  styles: CSSProperties;
7
7
  nodeId?: string;
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, cfVisibility, }: Partial<StyleProps>) => CSSProperties;
9
+ declare const buildCfStyles: ({ cfHorizontalAlignment, cfVerticalAlignment, cfFlexDirection, cfFlexReverse, cfFlexWrap, cfMargin, cfPadding, cfBackgroundColor, cfWidth, cfHeight, cfMaxWidth, cfBorder, cfBorderRadius, cfGap, cfBackgroundImageUrl, cfBackgroundImageOptions, cfFontSize, cfFontWeight, cfImageOptions, cfLineHeight, cfLetterSpacing, cfTextColor, cfTextAlign, cfTextTransform, cfTextBold, cfTextItalic, cfTextUnderline, cfColumnSpan, cfVisibility, }: 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.17.2-dev-20241009T1956-d3170ca.0",
3
+ "version": "1.18.0-dev-20241009T2308-bb904e1.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -69,11 +69,11 @@
69
69
  "vitest": "^2.1.1"
70
70
  },
71
71
  "dependencies": {
72
- "@contentful/experiences-validators": "1.17.2-dev-20241009T1956-d3170ca.0",
72
+ "@contentful/experiences-validators": "1.18.0-dev-20241009T2308-bb904e1.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": "0e91759f05fabe41c9d2ba188c71bbfda5caa649"
78
+ "gitHead": "24eaaf73b915dfcbbd122e1060ffd3cfccfad00c"
79
79
  }