@contentful/experiences-visual-editor-react 1.33.2-dev-20250225T1809-99f6188.0 → 1.33.2-dev-20250226T1247-7e3b57f.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/renderApp.js CHANGED
@@ -42774,8 +42774,8 @@ const structureComponentIds = new Set([
42774
42774
  const patternTypes = new Set([ASSEMBLY_NODE_TYPE$1, ASSEMBLY_BLOCK_NODE_TYPE$1]);
42775
42775
  const allContentfulComponentIds = new Set(Object.values(CONTENTFUL_COMPONENTS$2).map((component) => component.id));
42776
42776
  const isPatternComponent = (type) => patternTypes.has(type ?? '');
42777
- const isContentfulStructureComponent = (componentId) => structureComponentIds.has(componentId ?? '');
42778
- const isContentfulComponent = (componentId) => allContentfulComponentIds.has(componentId ?? '');
42777
+ const isContentfulStructureComponent = (componentId) => structureComponentIds.has((componentId ?? ''));
42778
+ const isContentfulComponent = (componentId) => allContentfulComponentIds.has((componentId ?? ''));
42779
42779
  const isComponentAllowedOnRoot = ({ type, category, componentId }) => isPatternComponent(type) ||
42780
42780
  category === ASSEMBLY_DEFAULT_CATEGORY$1 ||
42781
42781
  isContentfulStructureComponent(componentId) ||