mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 07:01:09 +02:00
15 lines
378 B
TypeScript
15 lines
378 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
export const SHAMIR_FORM = {
|
|
input: '[data-test-shamir-key-input]',
|
|
inputLabel: '[data-test-shamir-key-label]',
|
|
submitButton: '[data-test-shamir-submit]',
|
|
otpInfo: '[data-test-otp-info]',
|
|
otpCode: '[data-test-otp]',
|
|
progress: '.shamir-progress',
|
|
error: '[data-test-message-error]',
|
|
};
|