mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
* adds ember-flight-icons dependecy * adds inline-json-import babel plugin * adds flight icon styling * updates Icon component to support flight icons * updates Icon component usages to new api and updates name values to flight icon set when available * fixes tests * updates icon story with flight mappings and fixes issue with flight icons not rendering in storybook * adds changelog * fixes typo in sign action glyph name in transit-key model * adds comments to icon-map * updates Icon component to use only supported flight icon sizes * adds icon transform codemod * updates icon transform formatting to handle edge case * runs icon transform on templates * updates Icon usage in toolbar-filter md and story * updates tests
34 lines
758 B
JavaScript
34 lines
758 B
JavaScript
/**
|
|
* @module ToolbarSecretLink
|
|
* `ToolbarSecretLink` styles SecretLink for the Toolbar.
|
|
* It should only be used inside of `Toolbar`.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <Toolbar>
|
|
* <ToolbarActions>
|
|
* <ToolbarSecretLink @params={{array 'vault.cluster.policies.create'}} @type="add">
|
|
* Create policy
|
|
* </ToolbarSecretLink>
|
|
* </ToolbarActions>
|
|
* </Toolbar>
|
|
* ```
|
|
*
|
|
* @param type="" {String} - Use "add" to change icon
|
|
*/
|
|
|
|
import OuterHTML from './outer-html';
|
|
import { computed } from '@ember/object';
|
|
|
|
export default OuterHTML.extend({
|
|
glyph: computed('type', function() {
|
|
if (this.type == 'add') {
|
|
return 'plus';
|
|
} else {
|
|
return 'chevron-right';
|
|
}
|
|
}),
|
|
tagName: '',
|
|
supportsDataTestProperties: true,
|
|
});
|