changelog-sidebar
v0.0.4-beta
Published
- [Why keep a changelog](https://changes.blue/guide/why/changelog) - [How to keep a good changelog](https://changes.blue/guide/howto/changelog) - [Using the sidebar](https://changes.blue/guide/client/bar) - [How to use Changes in React](https://changes.bl
Downloads
12
Readme
Useful Links
Installation
# npm
npm install changelog-sidebar
# yarn
yarn add changelog-sidebar
Usage
import Sidebar from 'changelog-sidebar';
// Instantiate the sidebar
let sdk = new Sidebar({
id: '5Web2XRF',
key: 'IK-X2zvTYjp-NCg-3q2Rj'
});
// Toggle the sidebar
sdk.toggle();
// Open the sidebar
sdk.open();
// Close the sidebar
sdk.close();
API
new SidebarSDK(options)
Create a new sidebar-instance.
options
Type:
{
id: string;
key: string;
element: string;
}
sdk.open()
Open the sidebar programmatically.
sdk.close()
Close the sidebar programmatically.
sdk.toggle()
Open or close the sidebar programmatically.