@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
33 lines • 893 B
TypeScript
import * as React from 'react';
import { IConcreteTermActionProps } from './ITermsActions';
export default class ButtonTermAction extends React.Component<IConcreteTermActionProps> {
/**
* componentWillMount lifecycle hook
*/
UNSAFE_componentWillMount(): void;
/**
* Prepares the command bar button
*/
private prepareCommandBarButton;
/**
* Gets the action button styling
*/
private getTermActionActionButtonStyle;
/**
* Check if there are action to immediatly invoke
*/
private checkForImmediateInvocations;
/**
* On action execution
*/
private onActionExecute;
/**
* Render all the term actions
*/
private renderTermActions;
/**
* Default React render method
*/
render(): React.ReactElement<IConcreteTermActionProps>;
}
//# sourceMappingURL=ButtonTermAction.d.ts.map