How to use the @talend/react-components.ActionBar.DISPLAY_MODES function in @talend/react-components

To help you get started, we’ve selected a few @talend/react-components examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Talend / ui / packages / data-mapper / src / Mapper.container.js View on Github external
function layoutActions(actions) {
	return {
		left: [
			{
				displayMode: ActionBar.DISPLAY_MODES.BTN_GROUP,
				actions: [actions.undo, actions.redo],
			},
			{
				displayMode: ActionBar.DISPLAY_MODES.BTN_GROUP,
				actions: [actions.showAll, actions.clear, actions.clearAll],
			},
		],
	};
}
github Talend / ui / packages / data-mapper / src / Mapper.container.js View on Github external
function layoutActions(actions) {
	return {
		left: [
			{
				displayMode: ActionBar.DISPLAY_MODES.BTN_GROUP,
				actions: [actions.undo, actions.redo],
			},
			{
				displayMode: ActionBar.DISPLAY_MODES.BTN_GROUP,
				actions: [actions.showAll, actions.clear, actions.clearAll],
			},
		],
	};
}