@better-auth-ui/core 1.6.7 → 1.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5,11 +5,17 @@ export declare const passkeyLocalization: {
|
|
|
5
5
|
addPasskey: string;
|
|
6
6
|
/** @remarks `"Delete passkey {{name}}"` */
|
|
7
7
|
deletePasskey: string;
|
|
8
|
+
/** @remarks `"Delete passkey"` */
|
|
9
|
+
deletePasskeyTitle: string;
|
|
10
|
+
/** @remarks `"This action cannot be undone. You will need to add this passkey again before you can use it to sign in."` */
|
|
11
|
+
deletePasskeyWarning: string;
|
|
8
12
|
/** @remarks `"Passkeys"` */
|
|
9
13
|
passkeys: string;
|
|
10
|
-
/** @remarks `"
|
|
14
|
+
/** @remarks `"Create a passkey to securely access your account."` */
|
|
11
15
|
passkeysDescription: string;
|
|
12
|
-
/** @remarks `"
|
|
13
|
-
|
|
16
|
+
/** @remarks `"No passkeys"` */
|
|
17
|
+
noPasskeys: string;
|
|
18
|
+
/** @remarks `"Name"` */
|
|
19
|
+
name: string;
|
|
14
20
|
};
|
|
15
21
|
export type PasskeyLocalization = typeof passkeyLocalization;
|
|
@@ -3,9 +3,12 @@ var e = {
|
|
|
3
3
|
passkey: "Passkey",
|
|
4
4
|
addPasskey: "Add passkey",
|
|
5
5
|
deletePasskey: "Delete passkey {{name}}",
|
|
6
|
+
deletePasskeyTitle: "Delete passkey",
|
|
7
|
+
deletePasskeyWarning: "This action cannot be undone. You will need to add this passkey again before you can use it to sign in.",
|
|
6
8
|
passkeys: "Passkeys",
|
|
7
|
-
passkeysDescription: "
|
|
8
|
-
|
|
9
|
+
passkeysDescription: "Create a passkey to securely access your account.",
|
|
10
|
+
noPasskeys: "No passkeys",
|
|
11
|
+
name: "Name"
|
|
9
12
|
};
|
|
10
13
|
//#endregion
|
|
11
14
|
export { e as passkeyLocalization };
|
|
@@ -11,9 +11,12 @@ export declare const passkeyPlugin: ((options?: PasskeyPluginOptions | undefined
|
|
|
11
11
|
passkey: string;
|
|
12
12
|
addPasskey: string;
|
|
13
13
|
deletePasskey: string;
|
|
14
|
+
deletePasskeyTitle: string;
|
|
15
|
+
deletePasskeyWarning: string;
|
|
14
16
|
passkeys: string;
|
|
15
17
|
passkeysDescription: string;
|
|
16
|
-
|
|
18
|
+
noPasskeys: string;
|
|
19
|
+
name: string;
|
|
17
20
|
};
|
|
18
21
|
}, "id"> & {
|
|
19
22
|
id: "passkey";
|
package/package.json
CHANGED
|
@@ -5,12 +5,19 @@ export const passkeyLocalization = {
|
|
|
5
5
|
addPasskey: "Add passkey",
|
|
6
6
|
/** @remarks `"Delete passkey {{name}}"` */
|
|
7
7
|
deletePasskey: "Delete passkey {{name}}",
|
|
8
|
+
/** @remarks `"Delete passkey"` */
|
|
9
|
+
deletePasskeyTitle: "Delete passkey",
|
|
10
|
+
/** @remarks `"This action cannot be undone. You will need to add this passkey again before you can use it to sign in."` */
|
|
11
|
+
deletePasskeyWarning:
|
|
12
|
+
"This action cannot be undone. You will need to add this passkey again before you can use it to sign in.",
|
|
8
13
|
/** @remarks `"Passkeys"` */
|
|
9
14
|
passkeys: "Passkeys",
|
|
10
|
-
/** @remarks `"
|
|
11
|
-
passkeysDescription: "
|
|
12
|
-
/** @remarks `"
|
|
13
|
-
|
|
15
|
+
/** @remarks `"Create a passkey to securely access your account."` */
|
|
16
|
+
passkeysDescription: "Create a passkey to securely access your account.",
|
|
17
|
+
/** @remarks `"No passkeys"` */
|
|
18
|
+
noPasskeys: "No passkeys",
|
|
19
|
+
/** @remarks `"Name"` */
|
|
20
|
+
name: "Name"
|
|
14
21
|
}
|
|
15
22
|
|
|
16
23
|
export type PasskeyLocalization = typeof passkeyLocalization
|