Versions

Added Notifications Panel and Tool Wireframes

We have just added Notifications Panel and Notifications Tool wireframes.

Deprecated Notification History Panel

We have deprecated the Notification History Panel. It will now load the Notification Panel Component.

Added Option to Open Sidebar From Left

Previously, the sidebar would only open from right by default. Now, we have added the option to open the sidebar from left as well.

<VeltCommentsSidebar position="left | right"/>

Added More Props Within Notifications Tool Component

We have added variant, panelVariant and panelOpenMode props in Notification Tool Component.

<VeltNotificationsTool panelOpenMode='sidebar | popover' variant="tool1" panelVariant='panel1'/>

Added Tab Configuration Support for Notification Tool

You can now customize your tabs for Notifications Tool Component.

<VeltNotificationsTool tabConfig={{
    "forYou": {
        name: 'Custom For You',
        enable: true,
    },
    "documents": {
        name: 'Custom Document',
        enable: false,
    },
    "people": {
        name: 'Custom People',
        enable: false,
    },
    "all": {
        name: "Custom All",
        enable: true,
    },
}
} />

Was this page helpful?