DocSpace-buildtools/web/ASC.Web.Components/src/components/main-button
2020-12-04 11:41:56 +03:00
..
index.js Web: Common/Components: removed binding to id, added passing and binding className 2020-12-04 11:41:56 +03:00
main-button.stories.js Web: Components: Applied prettier style fix 2020-10-16 16:16:01 +03:00
main-button.test.js Web: Components: Applied prettier style fix 2020-10-16 16:16:01 +03:00
README.md web: Components: Added id, className and style property for MainButton component. Added tests. 2019-12-03 14:47:48 +03:00

MainButton

The main button is located at the top of the main menu. It may consist of 2 buttons, or on a click to show a pop-up window with other buttons

Usage

import { MainButton } from "asc-web-components";
<MainButton text="Button" isDisabled={false} isDropdown={true}>
  <div>Some button</div>
  <Button label="Some button" />
</MainButton>

or

<MainButton
  text="Button"
  isDropdown={false}
  clickAction={() => SomeFunction()}
  clickActionSecondary={() => SomeFunction()}
  moduleName="people"
/>

Properties

Props Type Required Values Default Description
className string - - - Accepts class
clickActionSecondary func - - - What the secondary button will trigger when clicked
clickAction func - - - What the main button will trigger when clicked
iconName string - - PeopleIcon Icon inside button
id string - - - Accepts id
isDisabled bool - - false Tells when the button should present a disabled state
isDropdown bool - - true Select a state between two separate buttons or one with a drop-down list
moduleName oneOf - people, mail, documents - The name of the module where the button is used
onClick func - - - DropDown component click action
opened bool - - - Open DropDown
style obj, array - - - Accepts css style
text string - - Button Button text