Skip to content

Commit

Permalink
Release@main (#944)
Browse files Browse the repository at this point in the history
  • Loading branch information
primeinteger authored Jan 22, 2025
2 parents b8e4f46 + 7a66049 commit 43c4d52
Show file tree
Hide file tree
Showing 13 changed files with 241 additions and 185 deletions.
223 changes: 120 additions & 103 deletions examples/astrojs-ssr/package-lock.json

Large diffs are not rendered by default.

168 changes: 104 additions & 64 deletions examples/gatsby/gatsby-spa/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"npmClient": "npm",
"version": "1.28.2",
"version": "1.28.3-beta.0",
"command": {
"version": {
"allowBranch": ["main", "next", "development"],
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentful/experiences-components-react",
"version": "1.28.2",
"version": "1.28.3-beta.0",
"description": "A basic set of components to use with Studio Experiences",
"homepage": "https://github.com/contentful/experience-builder/tree/next/packages/components#readme",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/components/Image/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ImageComponentDefinition: ComponentDefinition = {
},
variables: {
alt: {
displayName: 'Alt',
displayName: 'Alt text',
type: 'Text',
description: 'Alternative text for the image',
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentful/experiences-core",
"version": "1.28.2",
"version": "1.28.3-beta.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/utils/styleUtils/styleTransformers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
export const transformVisibility = (value?: boolean): CSSProperties => {
if (value === false) {
return {
display: 'none',
display: 'none !important',
};
}
// Don't explicitly set anything when visible to not overwrite values like `grid` or `flex`.
Expand Down
2 changes: 1 addition & 1 deletion packages/create-contentful-studio-experiences/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-contentful-studio-experiences",
"version": "1.28.2",
"version": "1.28.3-beta.0",
"description": "A CLI tool to get up and running with Contentful Studio Experiences quickly",
"homepage": "https://github.com/contentful/experience-builder/tree/next/packages/create-contentful-studio-experiences#readme",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/experience-builder-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentful/experiences-sdk-react",
"version": "1.28.2",
"version": "1.28.3-beta.0",
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/src/index.d.ts",
Expand Down
5 changes: 2 additions & 3 deletions packages/experience-builder-sdk/src/ExperienceRoot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ export const ExperienceRoot = ({
experience,
visualEditorMode = VisualEditorMode.LazyLoad,
}: ExperienceRootProps) => {
// This component renders client side due to the 'use client' directive
const mode = useDetectCanvasMode({ isClientSide: true });
const mode = useDetectCanvasMode();

// If experience is passed in as a JSON string, recreate it to an experience object
//If experience is passed in as a JSON string, recreate it to an experience object
const experienceObject =
typeof experience === 'string' ? createExperience(experience) : experience;

Expand Down
2 changes: 1 addition & 1 deletion packages/validators/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentful/experiences-validators",
"version": "1.28.2",
"version": "1.28.3-beta.0",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
Loading

0 comments on commit 43c4d52

Please sign in to comment.