Skip to content

Latest commit

 

History

History
232 lines (131 loc) · 13.1 KB

CHANGELOG.md

File metadata and controls

232 lines (131 loc) · 13.1 KB

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

1.5.0 (2024-05-16)

Note: Version bump only for package @contentful/experience

1.5.0-beta.0 (2024-05-16)

Bug Fixes

  • add maxWidth to list with design tokens (876c927)
  • cleanup code (53f68e0)

Features

  • resolve css variables in experiences (9180d23)

1.4.0 (2024-05-15)

Note: Version bump only for package @contentful/experience

1.4.0-beta.0 (2024-05-15)

Bug Fixes

  • not generate styles on csr if generated on ssr [SPA-2049] (#600) (149a569)

Features

  • validators: add optional slotId to component tree node (6abf9b3)

1.3.0 (2024-05-06)

Note: Version bump only for package @contentful/experience

1.3.0-beta.0 (2024-05-06)

Bug Fixes

  • remove check if no margin (aa1421e)

Features

  • experiences: implement layer renaming (#597) (6cde60e)

1.2.0 (2024-04-30)

Note: Version bump only for package @contentful/experience

1.2.0-beta.0 (2024-04-30)

Features

  • add detachExperienceStyles function [SPA-2049] (#579) (8404b16)

1.1.0 (2024-04-29)

Note: Version bump only for package @contentful/experience

1.1.0-beta.0 (2024-04-29)

Bug Fixes

  • visual-editor: show canvas hover state in layers tab [ALT-787] (#587) (8541e97)

Features

  • validators: add optional displayName to ComponentTreeNode [ALT-780] (#590) (44f51b0)

1.0.9-beta.0 (2024-04-26)

Bug Fixes

  • visual-editor: show hovered component outlines when hovering the layers tab [ALT-673] (#584) (34f0dee)

1.0.8 (2024-04-26)

Note: Version bump only for package @contentful/experience

1.0.8-beta.0 (2024-04-26)

Bug Fixes

  • fix for preview/delivery mode (30e0746)
  • use default values for componentValue properties (53d9f79)

1.0.7 (2024-04-25)

Note: Version bump only for package @contentful/experience

1.0.7-beta.0 (2024-04-25)

Bug Fixes

  • activate original dropzone when moving root-level components [ALT-746] (#572) (7d0a2d8)
  • visual-editor: extra dropzone padding when dragging [ALT-746] (#575) (2bbc88c)

Features

  • components: add loading attribute to image component (#577) (8115c53)
  • update definitions of fill to use 100% for components (e29c08e)

1.0.6 (2024-04-18)

Note: Version bump only for package @contentful/experience

1.0.6-beta.0 (2024-04-18)

Bug Fixes

  • don't track errors thrown from imported components (070360f)
  • visual-editor: allow first and last root dropzones to activate when moving components [ALT-746] (#571) (090181e)

1.0.5 (2024-04-16)

Note: Version bump only for package @contentful/experience

1.0.5-beta.0 (2024-04-16)

Bug Fixes

Features

1.0.4 (2024-04-12)

Note: Version bump only for package @contentful/experience

1.0.4-beta.0 (2024-04-12)

Bug Fixes

1.0.3 (2024-04-12)

Note: Version bump only for package @contentful/experience

1.0.3-beta.0 (2024-04-12)

Bug Fixes

  • allow root-level structure components to be reparented into siblings [ALT-561] (#555) (43cc1cb)
  • test (f9f80e9)

Features

  • add hyperlink to component definition (6ced4ba)

1.0.2 (2024-04-04)

Note: Version bump only for package @contentful/experience

1.0.2-beta.1 (2024-04-04)

Bug Fixes

  • components: rich text formatting [ALT-585] (#533) (865608d)
  • visual-editor: select component when image loads [ALT-646] (#537) (95a9c92)

Features

  • [SPA-1774] add hyperlink value to schema (#540) (5ce6203)

1.0.2-beta.0 (2024-04-04)

Note: Version bump only for package @contentful/experience

1.0.1 (2024-03-29)

Note: Version bump only for package @contentful/experience

1.0.1-beta.0 (2024-03-29)

Bug Fixes

  • storybook-plugin: working with the latest SDK on storybook v7 (#531) (8bbe30f)

Features

  • adds divider structure component (be2ae10)

1.0.0 (2024-03-26)

Note: Version bump only for package @contentful/experience

0.0.1-beta.1 (2024-03-26)

  • fix(components)!: removing styles.css file from components (#526) (5113a1a), closes #526

BREAKING CHANGES

  • If you were previously importing styles.css from '@contentful/experiences-components-react' you no longer need to do so. This file is no longer built and can be removed safely from any apps that were importing it.

0.0.1-beta.0 (2024-03-26)

BREAKING CHANGES

  • Any existing experiences using the basic components will need to be updated. To do so, import and run the maintainBasicComponentIdsWithoutPrefix method and run it early on in your application (before the first ExperienceRoot is rendered) like so:
import { maintainBasicComponentIdsWithoutPrefix } from '@contentful/experiences-sdk-react';
maintainBasicComponentIdsWithoutPrefix();

This will register a set of the basic components with the older ids and allow your experiences to continue to work. To migrate to the new components, replace any of the components marked with "[OLD]" in the editor with their newer counterparts (without the '[OLD]').

The maintainBasicComponentIdsWithoutPrefix is meant to help older experiences built on a early alpha release to migrate and will be removed in the next major release.