Can the Page Builder visual editor be used to work with Fragments? I'm using the Flex Component Skill for assistance and wanted to confirm it's finding before following it down a rabbit hole:
**Page Fragments and Custom Flex Components:**
- Custom Basic architecture flex components CANNOT be fully used in Miva Page Builder Fragments
- Fragments require components to implement `ComponentModule_Initialize_Fragment` — a module-level API only available to Miva-built (managed) components
- The Page Builder settings UI is not accessible for custom components assigned to fragments
- For global template injection (Navigation Bar, Global Header, etc.), use a regular blank Page Builder page instead of a Fragment
- A regular page can be called inline from any template using `<mvt:item name="{page-code}" param="instance" />`
- The Fragment `<mvt:fragment code="xxx" />` syntax is only reliable for Miva-native components
**Page Fragments and Custom Flex Components:**
- Custom Basic architecture flex components CANNOT be fully used in Miva Page Builder Fragments
- Fragments require components to implement `ComponentModule_Initialize_Fragment` — a module-level API only available to Miva-built (managed) components
- The Page Builder settings UI is not accessible for custom components assigned to fragments
- For global template injection (Navigation Bar, Global Header, etc.), use a regular blank Page Builder page instead of a Fragment
- A regular page can be called inline from any template using `<mvt:item name="{page-code}" param="instance" />`
- The Fragment `<mvt:fragment code="xxx" />` syntax is only reliable for Miva-native components
Comment