Matterway
    Preparing search index...

    Variable groupConst

    group: GroupT = ...

    Group component containing other UI elements.

    Either the content to display or the options object

    Content to display when first parameter is options object

    Basic usage with content

    group([
    inputField({
    name: 'firstName',
    label: 'First name',
    defaultValue: 'John',
    }),
    inputField({
    name: 'lastName',
    label: 'Last name',
    defaultValue: 'Doe',
    }),
    ]);

    Usage with options and content

    group(
    {
    className: 'custom-group',
    title: 'Personal Information',
    description: 'Please fill in your details',
    collapsible: true,
    initialCollapsed: false
    },
    [
    inputField({
    name: 'email',
    label: 'Email',
    type: 'email',
    }),
    ]
    );

    Do NOT use the following components as direct children of group:

    • bubble, modal, shield, splitView - These are container components and should be used as the root element in showUI, not inside group
    • headerBar, navigationBar - These should be direct children of container components (bubble, modal, etc.), not of group