mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-10 13:21:10 +01:00
* add NavHeader component * use NavHeader in SplashPage component and application.hbs * let download button take a block * add RadialProgress component * use RadialProgress in ShamirFlow component * style up the RadialProgress component * update ember-basic-dropdown, ember-basic-dropdown-hover * rework operation token generation workflow * directly depend on ember-maybe-in-element
10 lines
419 B
JavaScript
10 lines
419 B
JavaScript
import { attribute, isVisible, triggerable, focusable, text } from 'ember-cli-page-object';
|
|
|
|
export default {
|
|
focusContainer: focusable('.has-copy-button'),
|
|
mouseEnter: triggerable('mouseenter', '[data-test-tooltip-trigger]'),
|
|
tooltipText: text('[data-test-hover-copy-tooltip-text]'),
|
|
wrapperClass: attribute('class', '[data-test-hover-copy]'),
|
|
buttonIsVisible: isVisible('[data-test-hover-copy-button]'),
|
|
};
|