Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
onDismiss={this.props.toggleDropdown}
/>
);
}
return (
<div>
<button title="{AlloyEditor.Strings.column}" tabindex="{this.props.tabIndex}" role="listbox" aria-owns="{buttonCommandsListId}" aria-label="{AlloyEditor.Strings.column}" aria-expanded="{this.props.expanded}">
<svg>
</svg>
</button>
{buttonCommandsList}
</div>
);
}
}
render() {
const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();
if (this.props.renderExclusive) {
const props = this.mergeButtonCfgProps();
return ;
}
return (
<button title="{AlloyEditor.Strings.link}" tabindex="{this.props.tabIndex}" data-type="button-link" aria-label="{AlloyEditor.Strings.link}">
<svg>
</svg>
</button>
);
}
}
<div>
<span>{separatorLabel}</span>
</div>
<div>
<label>{linkToLabel}</label>
<input value="{this.state.linkHref}" type="text" placeholder="{blockPlaceholderText}">
<button title="{AlloyEditor.Strings.clear}" aria-label="{AlloyEditor.Strings.clearInput}">
</button></div>
);
}
render() {
const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();
return (
<button title="{AlloyEditor.Strings.strike}" tabindex="{this.props.tabIndex}" data-type="button-strike" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.strike}">
<svg>
</svg>
</button>
);
}
}
render() {
const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();
return (
<button title="{AlloyEditor.Strings.bold}" tabindex="{this.props.tabIndex}" data-type="button-bold" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.bold}">
<svg>
</svg>
</button>
);
}
}
render() {
const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();
return (
<button title="{AlloyEditor.Strings.strike}" tabindex="{this.props.tabIndex}" data-type="button-strike" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.strike}">
<svg>
</svg>
</button>
);
}
}
render() {
const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();
return (
<button title="{AlloyEditor.Strings.underline}" tabindex="{this.props.tabIndex}" data-type="button-underline" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.underline}">
<svg>
</svg>
</button>
);
}
}
render() {
const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();
return (
<button title="{AlloyEditor.Strings.underline}" tabindex="{this.props.tabIndex}" data-type="button-underline" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.underline}">
<svg>
</svg>
</button>
);
}
}
render() {
return (
<button data-type="button-table-remove" aria-label="{AlloyEditor.Strings.deleteTable}"> {
this._removeTable();
this.fireCustomUpdateEvent();
}}
tabIndex={this.props.tabIndex}
title={AlloyEditor.Strings.deleteTable}>
<svg>
</svg>
</button>
);
}
render() {
const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();
return (
<button title="{AlloyEditor.Strings.italic}" tabindex="{this.props.tabIndex}" data-type="button-italic" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.italic}">
<svg>
</svg>
</button>
);
}
}