@ory/elements-react 0.0.0-pr.2c76cc9 → 0.0.0-pr.2e82b68
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.
- package/CHANGELOG.md +67 -0
- package/README.md +253 -4
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +311 -235
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +311 -235
- package/dist/index.mjs.map +1 -1
- package/dist/theme/default/index.css +3 -0
- package/dist/theme/default/index.css.map +1 -1
- package/dist/theme/default/index.d.mts +1 -1
- package/dist/theme/default/index.d.ts +1 -1
- package/dist/theme/default/index.js +219 -223
- package/dist/theme/default/index.js.map +1 -1
- package/dist/theme/default/index.mjs +239 -240
- package/dist/theme/default/index.mjs.map +1 -1
- package/package.json +5 -4
- package/tsconfig.json +2 -1
|
@@ -605,7 +605,7 @@ import { useFormContext } from "react-hook-form";
|
|
|
605
605
|
import { jsx as jsx7, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
606
606
|
function DefaultCurrentIdentifierButton() {
|
|
607
607
|
const { flow, flowType, config, formState } = useOryFlow2();
|
|
608
|
-
const { setValue
|
|
608
|
+
const { setValue } = useFormContext();
|
|
609
609
|
const ui = flow.ui;
|
|
610
610
|
if (formState.current === "provide_identifier") {
|
|
611
611
|
return null;
|
|
@@ -613,7 +613,7 @@ function DefaultCurrentIdentifierButton() {
|
|
|
613
613
|
if (flowType === FlowType3.Login && flow.requested_aal === "aal2") {
|
|
614
614
|
return null;
|
|
615
615
|
}
|
|
616
|
-
const nodeBackButton =
|
|
616
|
+
const nodeBackButton = getBackButtonNodeAttributes(flowType, ui.nodes);
|
|
617
617
|
if (!nodeBackButton) {
|
|
618
618
|
return null;
|
|
619
619
|
}
|
|
@@ -662,7 +662,7 @@ function DefaultCurrentIdentifierButton() {
|
|
|
662
662
|
name: screenSelectionNode.attributes.name,
|
|
663
663
|
value: screenSelectionNode.attributes.value,
|
|
664
664
|
title: `Adjust ${nodeBackButton == null ? void 0 : nodeBackButton.value}`,
|
|
665
|
-
"data-testid":
|
|
665
|
+
"data-testid": `ory/screen/${flowType}/action/restart`,
|
|
666
666
|
children: /* @__PURE__ */ jsxs5("span", { className: "inline-flex min-h-5 items-center gap-2 overflow-hidden text-ellipsis", children: [
|
|
667
667
|
/* @__PURE__ */ jsx7(
|
|
668
668
|
arrow_left_default,
|
|
@@ -685,7 +685,7 @@ function DefaultCurrentIdentifierButton() {
|
|
|
685
685
|
...attributes,
|
|
686
686
|
href: initFlowUrl2,
|
|
687
687
|
title: `Adjust ${nodeBackButton == null ? void 0 : nodeBackButton.value}`,
|
|
688
|
-
"data-testid":
|
|
688
|
+
"data-testid": `ory/screen/${flowType}/action/restart`,
|
|
689
689
|
children: /* @__PURE__ */ jsxs5("span", { className: "inline-flex min-h-5 items-center gap-2 overflow-hidden text-ellipsis", children: [
|
|
690
690
|
/* @__PURE__ */ jsx7(
|
|
691
691
|
arrow_left_default,
|
|
@@ -700,13 +700,13 @@ function DefaultCurrentIdentifierButton() {
|
|
|
700
700
|
}
|
|
701
701
|
);
|
|
702
702
|
}
|
|
703
|
-
function
|
|
703
|
+
function getBackButtonNodeAttributes(flowType, nodes) {
|
|
704
704
|
var _a, _b;
|
|
705
705
|
let nodeBackButtonAttributes;
|
|
706
706
|
switch (flowType) {
|
|
707
707
|
case FlowType3.Login:
|
|
708
708
|
nodeBackButtonAttributes = (_a = nodes.find(
|
|
709
|
-
(node) =>
|
|
709
|
+
(node) => isUiNodeInputAttributes4(node.attributes) && node.attributes.name === "identifier" && ["default", "identifier_first"].includes(node.group)
|
|
710
710
|
)) == null ? void 0 : _a.attributes;
|
|
711
711
|
break;
|
|
712
712
|
case FlowType3.Registration:
|
|
@@ -719,7 +719,7 @@ function getBackButtonNode(flowType, nodes) {
|
|
|
719
719
|
)) == null ? void 0 : _b.attributes;
|
|
720
720
|
break;
|
|
721
721
|
}
|
|
722
|
-
if ((nodeBackButtonAttributes == null ? void 0 : nodeBackButtonAttributes.node_type) !== "input" || !nodeBackButtonAttributes.value) {
|
|
722
|
+
if ((nodeBackButtonAttributes == null ? void 0 : nodeBackButtonAttributes.node_type) !== "input" || !(nodeBackButtonAttributes == null ? void 0 : nodeBackButtonAttributes.value)) {
|
|
723
723
|
return void 0;
|
|
724
724
|
}
|
|
725
725
|
return nodeBackButtonAttributes;
|
|
@@ -1036,6 +1036,24 @@ function Spinner({ className }) {
|
|
|
1036
1036
|
|
|
1037
1037
|
// src/theme/default/components/form/social.tsx
|
|
1038
1038
|
import { UiNodeGroupEnum as UiNodeGroupEnum3 } from "@ory/client-fetch";
|
|
1039
|
+
|
|
1040
|
+
// src/util/omitAttributes.ts
|
|
1041
|
+
function omitInputAttributes({
|
|
1042
|
+
...attrs
|
|
1043
|
+
}) {
|
|
1044
|
+
return omit(attrs, [
|
|
1045
|
+
"autocomplete",
|
|
1046
|
+
"label",
|
|
1047
|
+
"node_type",
|
|
1048
|
+
"maxlength",
|
|
1049
|
+
"onclick",
|
|
1050
|
+
"onclickTrigger",
|
|
1051
|
+
"onload",
|
|
1052
|
+
"onloadTrigger"
|
|
1053
|
+
]);
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
// src/theme/default/components/form/social.tsx
|
|
1039
1057
|
import { Fragment as Fragment2, jsx as jsx27, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1040
1058
|
function extractProvider(context) {
|
|
1041
1059
|
if (context && typeof context === "object" && "provider" in context && typeof context.provider === "string") {
|
|
@@ -1052,12 +1070,7 @@ function DefaultButtonSocial({
|
|
|
1052
1070
|
}) {
|
|
1053
1071
|
var _a, _b, _c;
|
|
1054
1072
|
const logos2 = { ...provider_logos_default, ...providedLogos };
|
|
1055
|
-
const {
|
|
1056
|
-
node_type: _ignoredNodeType,
|
|
1057
|
-
type: _ignoredType,
|
|
1058
|
-
name: _ignoredName,
|
|
1059
|
-
...props
|
|
1060
|
-
} = attributes;
|
|
1073
|
+
const { type: _ignoredType, name: _ignoredName, ...rest } = attributes;
|
|
1061
1074
|
const {
|
|
1062
1075
|
flow: { ui }
|
|
1063
1076
|
} = useOryFlow5();
|
|
@@ -1090,11 +1103,11 @@ function DefaultButtonSocial({
|
|
|
1090
1103
|
type: "submit",
|
|
1091
1104
|
name: "provider",
|
|
1092
1105
|
"data-testid": `ory/form/node/input/${attributes.name}`,
|
|
1093
|
-
...props,
|
|
1094
1106
|
onClick: localOnClick,
|
|
1095
1107
|
"data-loading": clicked,
|
|
1096
1108
|
disabled: isSubmitting,
|
|
1097
1109
|
"aria-label": label,
|
|
1110
|
+
...omitInputAttributes(rest),
|
|
1098
1111
|
children: [
|
|
1099
1112
|
/* @__PURE__ */ jsx27("span", { className: "size-5 relative", children: !clicked ? Logo ? /* @__PURE__ */ jsx27(Logo, { size: 20 }) : /* @__PURE__ */ jsx27("span", { className: "flex aspect-square items-center justify-center rounded-[999px] border text-xs", children: provider.slice(0, 2) }) : /* @__PURE__ */ jsx27(Spinner, { className: "size-5" }) }),
|
|
1100
1113
|
showLabel && node.meta.label ? /* @__PURE__ */ jsxs19(Fragment2, { children: [
|
|
@@ -1130,11 +1143,13 @@ function DefaultFormContainer({
|
|
|
1130
1143
|
children,
|
|
1131
1144
|
onSubmit,
|
|
1132
1145
|
action,
|
|
1133
|
-
method
|
|
1146
|
+
method,
|
|
1147
|
+
"data-testid": dataTestId
|
|
1134
1148
|
}) {
|
|
1135
1149
|
return /* @__PURE__ */ jsx28(
|
|
1136
1150
|
"form",
|
|
1137
1151
|
{
|
|
1152
|
+
"data-testid": dataTestId,
|
|
1138
1153
|
onSubmit,
|
|
1139
1154
|
noValidate: true,
|
|
1140
1155
|
action,
|
|
@@ -1357,18 +1372,7 @@ var DefaultButton = ({
|
|
|
1357
1372
|
onClick
|
|
1358
1373
|
}) => {
|
|
1359
1374
|
var _a;
|
|
1360
|
-
const {
|
|
1361
|
-
type,
|
|
1362
|
-
name,
|
|
1363
|
-
value,
|
|
1364
|
-
// Button does not support these attributes, so we skip them
|
|
1365
|
-
autocomplete: _ignoredAutocomplete,
|
|
1366
|
-
label: _ignoredLabel,
|
|
1367
|
-
node_type: _ignoredNodeType,
|
|
1368
|
-
maxlength: _ignoredMaxLength,
|
|
1369
|
-
// End of skipped attributes
|
|
1370
|
-
...rest
|
|
1371
|
-
} = attributes;
|
|
1375
|
+
const { type, name, value, ...rest } = attributes;
|
|
1372
1376
|
const [clicked, setClicked] = useState(false);
|
|
1373
1377
|
const intl = useIntl6();
|
|
1374
1378
|
const label = getNodeLabel(node);
|
|
@@ -1385,7 +1389,7 @@ var DefaultButton = ({
|
|
|
1385
1389
|
return /* @__PURE__ */ jsxs21(
|
|
1386
1390
|
"button",
|
|
1387
1391
|
{
|
|
1388
|
-
...rest,
|
|
1392
|
+
...omitInputAttributes(rest),
|
|
1389
1393
|
value,
|
|
1390
1394
|
name,
|
|
1391
1395
|
type: type === "button" ? "button" : "submit",
|
|
@@ -1550,16 +1554,7 @@ var DefaultCheckbox = ({
|
|
|
1550
1554
|
attributes: initialAttributes,
|
|
1551
1555
|
node
|
|
1552
1556
|
}) => {
|
|
1553
|
-
const {
|
|
1554
|
-
value,
|
|
1555
|
-
name,
|
|
1556
|
-
// Button does not support these attributes, so we skip them
|
|
1557
|
-
autocomplete: _autocomplete,
|
|
1558
|
-
onclick: _onclick,
|
|
1559
|
-
maxlength: _max,
|
|
1560
|
-
// End of skipped attributes
|
|
1561
|
-
...attributes
|
|
1562
|
-
} = initialAttributes;
|
|
1557
|
+
const { value, name, ...attributes } = initialAttributes;
|
|
1563
1558
|
const intl = useIntl8();
|
|
1564
1559
|
const label = getNodeLabel2(node);
|
|
1565
1560
|
const { register } = useFormContext4();
|
|
@@ -1569,7 +1564,7 @@ var DefaultCheckbox = ({
|
|
|
1569
1564
|
/* @__PURE__ */ jsx39(
|
|
1570
1565
|
"input",
|
|
1571
1566
|
{
|
|
1572
|
-
...attributes,
|
|
1567
|
+
...omitInputAttributes(attributes),
|
|
1573
1568
|
defaultChecked: Boolean(value),
|
|
1574
1569
|
type: "checkbox",
|
|
1575
1570
|
className: cn(
|
|
@@ -1644,7 +1639,13 @@ function DefaultHorizontalDivider() {
|
|
|
1644
1639
|
import { jsx as jsx42 } from "react/jsx-runtime";
|
|
1645
1640
|
function DefaultImage({ attributes, node }) {
|
|
1646
1641
|
var _a;
|
|
1647
|
-
return /* @__PURE__ */ jsx42("figure", { children: /* @__PURE__ */ jsx42(
|
|
1642
|
+
return /* @__PURE__ */ jsx42("figure", { children: /* @__PURE__ */ jsx42(
|
|
1643
|
+
"img",
|
|
1644
|
+
{
|
|
1645
|
+
...omitInputAttributes(attributes),
|
|
1646
|
+
alt: ((_a = node.meta.label) == null ? void 0 : _a.text) || ""
|
|
1647
|
+
}
|
|
1648
|
+
) });
|
|
1648
1649
|
}
|
|
1649
1650
|
|
|
1650
1651
|
// src/theme/default/components/form/input.tsx
|
|
@@ -1662,7 +1663,7 @@ import * as React24 from "react";
|
|
|
1662
1663
|
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
1663
1664
|
var SvgEyeOff = (props) => {
|
|
1664
1665
|
var _a, _b;
|
|
1665
|
-
return /* @__PURE__ */ jsx43("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: (props == null ? void 0 : props.width) ? props.width : (_a = props == null ? void 0 : props.size) != null ? _a : 20, height: (props == null ? void 0 : props.height) ? props.height : (_b = props == null ? void 0 : props.size) != null ? _b : 20, ...props, children: /* @__PURE__ */ jsx43("path", { stroke: "
|
|
1666
|
+
return /* @__PURE__ */ jsx43("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: (props == null ? void 0 : props.width) ? props.width : (_a = props == null ? void 0 : props.size) != null ? _a : 20, height: (props == null ? void 0 : props.height) ? props.height : (_b = props == null ? void 0 : props.size) != null ? _b : 20, ...props, children: /* @__PURE__ */ jsx43("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M10.585 10.587a2 2 0 0 0 2.829 2.828m3.267 3.258A8.7 8.7 0 0 1 12 18q-5.4 0-9-6 1.908-3.18 4.32-4.674m2.86-1.146A9 9 0 0 1 12 6q5.4 0 9 6-1 1.665-2.138 2.87M3 3l18 18" }) });
|
|
1666
1667
|
};
|
|
1667
1668
|
var eye_off_default = SvgEyeOff;
|
|
1668
1669
|
|
|
@@ -1671,9 +1672,9 @@ import * as React25 from "react";
|
|
|
1671
1672
|
import { jsx as jsx44, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1672
1673
|
var SvgEye = (props) => {
|
|
1673
1674
|
var _a, _b;
|
|
1674
|
-
return /* @__PURE__ */ jsx44("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: (props == null ? void 0 : props.width) ? props.width : (_a = props == null ? void 0 : props.size) != null ? _a : 20, height: (props == null ? void 0 : props.height) ? props.height : (_b = props == null ? void 0 : props.size) != null ? _b : 20, ...props, children: /* @__PURE__ */ jsxs23("g", { strokeLinecap: "round", strokeLinejoin: "round", children: [
|
|
1675
|
-
/* @__PURE__ */ jsx44("path", {
|
|
1676
|
-
/* @__PURE__ */ jsx44("path", {
|
|
1675
|
+
return /* @__PURE__ */ jsx44("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: (props == null ? void 0 : props.width) ? props.width : (_a = props == null ? void 0 : props.size) != null ? _a : 20, height: (props == null ? void 0 : props.height) ? props.height : (_b = props == null ? void 0 : props.size) != null ? _b : 20, ...props, children: /* @__PURE__ */ jsxs23("g", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", children: [
|
|
1676
|
+
/* @__PURE__ */ jsx44("path", { d: "M10 12a2 2 0 1 0 4 0 2 2 0 0 0-4 0" }),
|
|
1677
|
+
/* @__PURE__ */ jsx44("path", { d: "M21 12q-3.6 6-9 6t-9-6q3.6-6 9-6t9 6" })
|
|
1677
1678
|
] }) });
|
|
1678
1679
|
};
|
|
1679
1680
|
var eye_default = SvgEye;
|
|
@@ -1687,14 +1688,7 @@ var DefaultInput = ({
|
|
|
1687
1688
|
}) => {
|
|
1688
1689
|
const label = getNodeLabel3(node);
|
|
1689
1690
|
const { register } = useFormContext5();
|
|
1690
|
-
const {
|
|
1691
|
-
value,
|
|
1692
|
-
autocomplete,
|
|
1693
|
-
name,
|
|
1694
|
-
maxlength,
|
|
1695
|
-
node_type: _,
|
|
1696
|
-
...rest
|
|
1697
|
-
} = attributes;
|
|
1691
|
+
const { value, autocomplete, name, maxlength, ...rest } = attributes;
|
|
1698
1692
|
const intl = useIntl9();
|
|
1699
1693
|
const { flowType } = useOryFlow8();
|
|
1700
1694
|
const inputRef = useRef(null);
|
|
@@ -1734,7 +1728,7 @@ var DefaultInput = ({
|
|
|
1734
1728
|
/* @__PURE__ */ jsx45(
|
|
1735
1729
|
"input",
|
|
1736
1730
|
{
|
|
1737
|
-
...rest,
|
|
1731
|
+
...omitInputAttributes(rest),
|
|
1738
1732
|
onClick,
|
|
1739
1733
|
maxLength: maxlength,
|
|
1740
1734
|
autoComplete: autocomplete,
|
|
@@ -1878,7 +1872,7 @@ var DefaultLinkButton = forwardRef(({ attributes, node }, ref) => {
|
|
|
1878
1872
|
return /* @__PURE__ */ jsx47(
|
|
1879
1873
|
"a",
|
|
1880
1874
|
{
|
|
1881
|
-
...attributes,
|
|
1875
|
+
...omitInputAttributes(attributes),
|
|
1882
1876
|
ref,
|
|
1883
1877
|
title: label ? uiTextToFormattedMessage8(label, intl) : "",
|
|
1884
1878
|
"data-testid": `ory/form/node/link/${attributes.id}`,
|
|
@@ -2898,6 +2892,7 @@ function DefaultConsentScopeCheckbox({
|
|
|
2898
2892
|
defaultMessage: []
|
|
2899
2893
|
}),
|
|
2900
2894
|
className: "col-span-2",
|
|
2895
|
+
"data-testid": "ory/screen/consent/scope-checkbox-label",
|
|
2901
2896
|
children: /* @__PURE__ */ jsx74(
|
|
2902
2897
|
Switch.Root,
|
|
2903
2898
|
{
|
|
@@ -3023,7 +3018,7 @@ import { jsx as jsx81 } from "react/jsx-runtime";
|
|
|
3023
3018
|
import {
|
|
3024
3019
|
isUiNodeInputAttributes as isUiNodeInputAttributes10,
|
|
3025
3020
|
isUiNodeScriptAttributes as isUiNodeScriptAttributes4,
|
|
3026
|
-
UiNodeGroupEnum as
|
|
3021
|
+
UiNodeGroupEnum as UiNodeGroupEnum12,
|
|
3027
3022
|
UiNodeInputAttributesTypeEnum as UiNodeInputAttributesTypeEnum2
|
|
3028
3023
|
} from "@ory/client-fetch";
|
|
3029
3024
|
import { useFormContext as useFormContext18 } from "react-hook-form";
|
|
@@ -3088,14 +3083,14 @@ import {
|
|
|
3088
3083
|
} from "@ory/client-fetch";
|
|
3089
3084
|
|
|
3090
3085
|
// src/components/form/form.tsx
|
|
3091
|
-
import {
|
|
3086
|
+
import { jsx as jsx82 } from "react/jsx-runtime";
|
|
3092
3087
|
|
|
3093
3088
|
// src/components/form/messages.tsx
|
|
3094
3089
|
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
3095
3090
|
|
|
3096
3091
|
// src/components/form/nodes/input.tsx
|
|
3097
3092
|
import {
|
|
3098
|
-
UiNodeGroupEnum as
|
|
3093
|
+
UiNodeGroupEnum as UiNodeGroupEnum9,
|
|
3099
3094
|
UiNodeInputAttributesTypeEnum
|
|
3100
3095
|
} from "@ory/client-fetch";
|
|
3101
3096
|
import { useEffect as useEffect5, useRef as useRef3 } from "react";
|
|
@@ -3109,19 +3104,20 @@ import {
|
|
|
3109
3104
|
isUiNodeInputAttributes as isUiNodeInputAttributes9,
|
|
3110
3105
|
isUiNodeScriptAttributes as isUiNodeScriptAttributes3,
|
|
3111
3106
|
isUiNodeTextAttributes,
|
|
3112
|
-
UiNodeGroupEnum as
|
|
3107
|
+
UiNodeGroupEnum as UiNodeGroupEnum10
|
|
3113
3108
|
} from "@ory/client-fetch";
|
|
3114
3109
|
import { jsx as jsx85 } from "react/jsx-runtime";
|
|
3115
3110
|
|
|
3116
3111
|
// src/components/form/social.tsx
|
|
3117
3112
|
import {
|
|
3118
|
-
UiNodeGroupEnum as
|
|
3113
|
+
UiNodeGroupEnum as UiNodeGroupEnum11
|
|
3119
3114
|
} from "@ory/client-fetch";
|
|
3120
3115
|
import { useFormContext as useFormContext17 } from "react-hook-form";
|
|
3121
3116
|
import { jsx as jsx86 } from "react/jsx-runtime";
|
|
3122
3117
|
|
|
3123
3118
|
// src/components/card/card-two-step.tsx
|
|
3124
|
-
import {
|
|
3119
|
+
import { useIntl as useIntl15 } from "react-intl";
|
|
3120
|
+
import { Fragment as Fragment6, jsx as jsx87, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
3125
3121
|
|
|
3126
3122
|
// src/components/form/groups.tsx
|
|
3127
3123
|
import { jsx as jsx88 } from "react/jsx-runtime";
|
|
@@ -3131,46 +3127,49 @@ import { useFormContext as useFormContext19 } from "react-hook-form";
|
|
|
3131
3127
|
import { jsx as jsx89 } from "react/jsx-runtime";
|
|
3132
3128
|
|
|
3133
3129
|
// src/components/card/card-consent.tsx
|
|
3134
|
-
import { jsx as jsx90, jsxs as
|
|
3130
|
+
import { jsx as jsx90, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
3135
3131
|
|
|
3136
3132
|
// src/components/generic/divider.tsx
|
|
3137
|
-
import { UiNodeGroupEnum as
|
|
3133
|
+
import { UiNodeGroupEnum as UiNodeGroupEnum13 } from "@ory/client-fetch";
|
|
3138
3134
|
import { jsx as jsx91 } from "react/jsx-runtime";
|
|
3139
3135
|
|
|
3140
3136
|
// src/components/generic/page-header.tsx
|
|
3141
3137
|
import { jsx as jsx92 } from "react/jsx-runtime";
|
|
3142
3138
|
|
|
3143
3139
|
// src/components/settings/settings-card.tsx
|
|
3144
|
-
import {
|
|
3145
|
-
|
|
3140
|
+
import {
|
|
3141
|
+
isUiNodeScriptAttributes as isUiNodeScriptAttributes5,
|
|
3142
|
+
UiNodeGroupEnum as UiNodeGroupEnum14
|
|
3143
|
+
} from "@ory/client-fetch";
|
|
3144
|
+
import { useIntl as useIntl21 } from "react-intl";
|
|
3146
3145
|
|
|
3147
3146
|
// src/components/settings/oidc-settings.tsx
|
|
3148
|
-
import { useIntl as
|
|
3147
|
+
import { useIntl as useIntl16 } from "react-intl";
|
|
3149
3148
|
import { useFormContext as useFormContext20 } from "react-hook-form";
|
|
3150
|
-
import { Fragment as Fragment7, jsx as jsx93, jsxs as
|
|
3149
|
+
import { Fragment as Fragment7, jsx as jsx93, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
3151
3150
|
|
|
3152
3151
|
// src/components/settings/passkey-settings.tsx
|
|
3153
3152
|
import { useFormContext as useFormContext21 } from "react-hook-form";
|
|
3154
|
-
import { useIntl as
|
|
3155
|
-
import { Fragment as Fragment8, jsx as jsx94, jsxs as
|
|
3153
|
+
import { useIntl as useIntl17 } from "react-intl";
|
|
3154
|
+
import { Fragment as Fragment8, jsx as jsx94, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
3156
3155
|
|
|
3157
3156
|
// src/components/settings/recovery-codes-settings.tsx
|
|
3158
|
-
import { useIntl as
|
|
3157
|
+
import { useIntl as useIntl18 } from "react-intl";
|
|
3159
3158
|
import { useFormContext as useFormContext22 } from "react-hook-form";
|
|
3160
|
-
import { Fragment as Fragment9, jsx as jsx95, jsxs as
|
|
3159
|
+
import { Fragment as Fragment9, jsx as jsx95, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
3161
3160
|
|
|
3162
3161
|
// src/components/settings/totp-settings.tsx
|
|
3163
3162
|
import { useFormContext as useFormContext23 } from "react-hook-form";
|
|
3164
|
-
import { useIntl as
|
|
3165
|
-
import { Fragment as Fragment10, jsx as jsx96, jsxs as
|
|
3163
|
+
import { useIntl as useIntl19 } from "react-intl";
|
|
3164
|
+
import { Fragment as Fragment10, jsx as jsx96, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
3166
3165
|
|
|
3167
3166
|
// src/components/settings/webauthn-settings.tsx
|
|
3168
3167
|
import { useFormContext as useFormContext24 } from "react-hook-form";
|
|
3169
|
-
import { useIntl as
|
|
3170
|
-
import { Fragment as Fragment11, jsx as jsx97, jsxs as
|
|
3168
|
+
import { useIntl as useIntl20 } from "react-intl";
|
|
3169
|
+
import { Fragment as Fragment11, jsx as jsx97, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
3171
3170
|
|
|
3172
3171
|
// src/components/settings/settings-card.tsx
|
|
3173
|
-
import { Fragment as Fragment12, jsx as jsx98, jsxs as
|
|
3172
|
+
import { Fragment as Fragment12, jsx as jsx98, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
3174
3173
|
|
|
3175
3174
|
// src/locales/en.json
|
|
3176
3175
|
var en_default = {
|
|
@@ -3641,20 +3640,20 @@ var de_default = {
|
|
|
3641
3640
|
"login.cancel-label": "Nicht das richtige Konto?",
|
|
3642
3641
|
"identities.messages.1010023": "Code an {address} senden",
|
|
3643
3642
|
"identities.messages.1010016": "Sie haben versucht, sich mit \u201E{duplicateIdentifier}\u201C anzumelden, aber diese E-Mail-Adresse wird bereits von einem anderen Konto verwendet. \nMelden Sie sich mit einer der folgenden Optionen bei Ihrem Konto an, um Ihr Konto \u201E{duplicateIdentifier}\u201C bei \u201E{provider}\u201C als weitere Anmeldem\xF6glichkeit hinzuzuf\xFCgen.",
|
|
3644
|
-
"identities.messages.1010017": "",
|
|
3645
|
-
"identities.messages.1010018": "",
|
|
3646
|
-
"identities.messages.1010019": "",
|
|
3643
|
+
"identities.messages.1010017": "Anmelden und verbinden",
|
|
3644
|
+
"identities.messages.1010018": "Mit {provider} best\xE4tigen",
|
|
3645
|
+
"identities.messages.1010019": "Code senden um fortzufahren",
|
|
3647
3646
|
"identities.messages.1010020": "",
|
|
3648
|
-
"identities.messages.1010021": "",
|
|
3649
|
-
"identities.messages.1010022": "",
|
|
3650
|
-
"identities.messages.1040007": "",
|
|
3651
|
-
"identities.messages.1040008": "",
|
|
3652
|
-
"identities.messages.1040009": "",
|
|
3647
|
+
"identities.messages.1010021": "Mit Paskey anmelden",
|
|
3648
|
+
"identities.messages.1010022": "Mit Passwort anmelden",
|
|
3649
|
+
"identities.messages.1040007": "Mit Passkey registrieren",
|
|
3650
|
+
"identities.messages.1040008": "Zur\xFCck",
|
|
3651
|
+
"identities.messages.1040009": "Bitte w\xE4hlen Sie eine Authentifizierungsmethode, um fortzufahren.",
|
|
3653
3652
|
"identities.messages.1050019": "Passkey hinzuf\xFCgen",
|
|
3654
|
-
"identities.messages.1050020": "",
|
|
3655
|
-
"identities.messages.4000037": "",
|
|
3656
|
-
"identities.messages.4010009": "",
|
|
3657
|
-
"identities.messages.4010010": "",
|
|
3653
|
+
"identities.messages.1050020": 'Passkey "{display_name}" entfernen',
|
|
3654
|
+
"identities.messages.4000037": "F\xFCr die eingegebenen Daten existiert kein Account",
|
|
3655
|
+
"identities.messages.4010009": "Die Authentifizierungsmethode stimmt nicht mit der vorherigen Authentifizierungsmethode \xFCberein. Bitte versuchen Sie es erneut.",
|
|
3656
|
+
"identities.messages.4010010": "Die eingegebene Adresse stimmt nicht mit der Adresse \xFCberein, die Sie bei der Registrierung angegeben haben. Bitte versuchen Sie es erneut.",
|
|
3658
3657
|
"input.placeholder": "{placeholder} eingeben",
|
|
3659
3658
|
"card.header.parts.code": "einem Code per E-Mail",
|
|
3660
3659
|
"card.header.parts.identifier-first": "Ihr {identifierLabel}",
|
|
@@ -3755,7 +3754,6 @@ var es_default = {
|
|
|
3755
3754
|
"error.back-button": "Regresar",
|
|
3756
3755
|
"error.description": "Ocurri\xF3 un error con el siguiente mensaje:",
|
|
3757
3756
|
"error.support-email-link": "Si el problema persiste, por favor contacte a <a>{contactSupportEmail}</a>",
|
|
3758
|
-
"error.title": "",
|
|
3759
3757
|
"error.title-internal-server-error": "Error Interno del Servidor",
|
|
3760
3758
|
"error.title-not-found": "404 - P\xE1gina no encontrada",
|
|
3761
3759
|
"identities.messages.1010001": "Iniciar sesi\xF3n",
|
|
@@ -3930,45 +3928,6 @@ var es_default = {
|
|
|
3930
3928
|
"two-step.totp.description": "Utilice un c\xF3digo de un solo uso de 6 d\xEDgitos de su aplicaci\xF3n de autenticaci\xF3n",
|
|
3931
3929
|
"two-step.lookup_secret.title": "C\xF3digo de recuperaci\xF3n de respaldo",
|
|
3932
3930
|
"two-step.lookup_secret.description": "Utilice uno de sus c\xF3digos de respaldo de 8 d\xEDgitos para autenticarse",
|
|
3933
|
-
"identities.messages.1010016": "",
|
|
3934
|
-
"identities.messages.1010017": "",
|
|
3935
|
-
"identities.messages.1010018": "",
|
|
3936
|
-
"identities.messages.1010019": "",
|
|
3937
|
-
"identities.messages.1010020": "",
|
|
3938
|
-
"identities.messages.1010021": "",
|
|
3939
|
-
"identities.messages.1010022": "",
|
|
3940
|
-
"identities.messages.1010023": "",
|
|
3941
|
-
"identities.messages.1040007": "",
|
|
3942
|
-
"identities.messages.1040008": "",
|
|
3943
|
-
"identities.messages.1040009": "",
|
|
3944
|
-
"identities.messages.1050019": "",
|
|
3945
|
-
"identities.messages.1050020": "",
|
|
3946
|
-
"identities.messages.1070014": "",
|
|
3947
|
-
"identities.messages.1070015": "",
|
|
3948
|
-
"identities.messages.4000037": "",
|
|
3949
|
-
"identities.messages.4000038": "",
|
|
3950
|
-
"identities.messages.4010009": "",
|
|
3951
|
-
"identities.messages.4010010": "",
|
|
3952
|
-
"login.cancel-button": "",
|
|
3953
|
-
"login.cancel-label": "",
|
|
3954
|
-
"input.placeholder": "",
|
|
3955
|
-
"card.header.description.login": "",
|
|
3956
|
-
"card.header.description.registration": "",
|
|
3957
|
-
"card.header.parts.code": "",
|
|
3958
|
-
"card.header.parts.identifier-first": "",
|
|
3959
|
-
"card.header.parts.oidc": "",
|
|
3960
|
-
"card.header.parts.passkey": "",
|
|
3961
|
-
"card.header.parts.password.login": "",
|
|
3962
|
-
"card.header.parts.password.registration": "",
|
|
3963
|
-
"card.header.parts.webauthn": "",
|
|
3964
|
-
"forms.label.forgot-password": "",
|
|
3965
|
-
"login.subtitle": "",
|
|
3966
|
-
"login.subtitle-refresh": "",
|
|
3967
|
-
"misc.or": "",
|
|
3968
|
-
"recovery.subtitle": "",
|
|
3969
|
-
"registration.subtitle": "",
|
|
3970
|
-
"settings.subtitle": "",
|
|
3971
|
-
"verification.subtitle": "",
|
|
3972
3931
|
"settings.totp.info.linked": "Actualmente tienes una aplicaci\xF3n de autenticaci\xF3n conectada.",
|
|
3973
3932
|
"settings.totp.info.not-linked": "Para habilitar, escanea el c\xF3digo QR con tu autenticador e ingresa el c\xF3digo.",
|
|
3974
3933
|
"settings.totp.title": "Aplicaci\xF3n Autenticadora",
|
|
@@ -3986,25 +3945,6 @@ var es_default = {
|
|
|
3986
3945
|
"settings.profile.title": "Configuraci\xF3n de Perfil",
|
|
3987
3946
|
"settings.webauthn.description": "Administra la configuraci\xF3n de tu token de hardware",
|
|
3988
3947
|
"settings.webauthn.title": "Gestionar Tokens de Hardware",
|
|
3989
|
-
"settings.oidc.info": "",
|
|
3990
|
-
"settings.passkey.info": "",
|
|
3991
|
-
"settings.title-lookup-secret": "",
|
|
3992
|
-
"settings.title-navigation": "",
|
|
3993
|
-
"settings.title-oidc": "",
|
|
3994
|
-
"settings.title-passkey": "",
|
|
3995
|
-
"settings.title-password": "",
|
|
3996
|
-
"settings.title-profile": "",
|
|
3997
|
-
"settings.title-totp": "",
|
|
3998
|
-
"settings.title-webauthn": "",
|
|
3999
|
-
"settings.webauthn.info": "",
|
|
4000
|
-
"card.footer.select-another-method": "",
|
|
4001
|
-
"account-linking.title": "",
|
|
4002
|
-
"property.code": "",
|
|
4003
|
-
"property.email": "",
|
|
4004
|
-
"property.identifier": "",
|
|
4005
|
-
"property.password": "",
|
|
4006
|
-
"property.phone": "",
|
|
4007
|
-
"property.username": "",
|
|
4008
3948
|
"consent.title": "Autorizar {party}",
|
|
4009
3949
|
"consent.subtitle": "Una aplicaci\xF3n de terceros quiere acceder a la informaci\xF3n asociada a su cuenta {identifier}.",
|
|
4010
3950
|
"consent.scope.openid.title": "Identidad",
|
|
@@ -4019,12 +3959,71 @@ var es_default = {
|
|
|
4019
3959
|
"consent.scope.address.description": "Acceda a su direcci\xF3n postal.",
|
|
4020
3960
|
"consent.scope.phone.title": "N\xFAmero de tel\xE9fono",
|
|
4021
3961
|
"consent.scope.phone.description": "Recupere su n\xFAmero de tel\xE9fono y su estado de verificaci\xF3n.",
|
|
4022
|
-
"error.
|
|
4023
|
-
"
|
|
4024
|
-
"
|
|
4025
|
-
"
|
|
4026
|
-
"
|
|
4027
|
-
"
|
|
3962
|
+
"error.title": "Ocurri\xF3 un error",
|
|
3963
|
+
"identities.messages.1010016": 'Intentaste iniciar sesi\xF3n con "{duplicateIdentifier}", pero ese correo electr\xF3nico ya est\xE1 en uso por otra cuenta. Inicia sesi\xF3n en tu cuenta con una de las opciones a continuaci\xF3n para agregar tu cuenta "{duplicateIdentifier}" en "{provider}" como otra forma de iniciar sesi\xF3n.',
|
|
3964
|
+
"identities.messages.1010017": "Iniciar sesi\xF3n y vincular",
|
|
3965
|
+
"identities.messages.1010018": "Confirmar con {provider}",
|
|
3966
|
+
"identities.messages.1010019": "Solicitar c\xF3digo para continuar",
|
|
3967
|
+
"identities.messages.1010021": "Iniciar sesi\xF3n con clave de acceso",
|
|
3968
|
+
"identities.messages.1010022": "Iniciar sesi\xF3n con contrase\xF1a",
|
|
3969
|
+
"identities.messages.1010023": "Enviar c\xF3digo a {address}",
|
|
3970
|
+
"identities.messages.1040007": "Registrarse con clave de acceso",
|
|
3971
|
+
"identities.messages.1040008": "Atr\xE1s",
|
|
3972
|
+
"identities.messages.1040009": "Por favor, elige una credencial para autenticarte.",
|
|
3973
|
+
"identities.messages.1050019": "Agregar clave de acceso",
|
|
3974
|
+
"identities.messages.1070014": "Iniciar sesi\xF3n y vincular credencial",
|
|
3975
|
+
"identities.messages.1070015": "Por favor, completa el desaf\xEDo captcha para continuar.",
|
|
3976
|
+
"identities.messages.4000037": "Esta cuenta no existe o no tiene ning\xFAn m\xE9todo de inicio de sesi\xF3n configurado.",
|
|
3977
|
+
"identities.messages.4000038": "Fall\xF3 la verificaci\xF3n de Captcha, por favor intenta de nuevo.",
|
|
3978
|
+
"identities.messages.4010009": "Las credenciales vinculadas no coinciden.",
|
|
3979
|
+
"identities.messages.4010010": "La direcci\xF3n que ingresaste no coincide con ninguna direcci\xF3n conocida en la cuenta actual.",
|
|
3980
|
+
"login.cancel-button": "Cancelar",
|
|
3981
|
+
"login.cancel-label": "\xBFNo es la cuenta correcta?",
|
|
3982
|
+
"login.subtitle": "Iniciar sesi\xF3n con {parts}",
|
|
3983
|
+
"login.subtitle-refresh": "Confirma tu identidad con {parts}",
|
|
3984
|
+
"recovery.subtitle": "Ingresa la direcci\xF3n de correo electr\xF3nico asociada con tu cuenta para recibir un c\xF3digo de acceso \xFAnico",
|
|
3985
|
+
"registration.subtitle": "Registrarse con {parts}",
|
|
3986
|
+
"settings.subtitle": "Actualiza la configuraci\xF3n de tu cuenta",
|
|
3987
|
+
"settings.title-lookup-secret": "Administrar c\xF3digos de recuperaci\xF3n de respaldo 2FA",
|
|
3988
|
+
"settings.title-navigation": "Configuraci\xF3n de la cuenta",
|
|
3989
|
+
"settings.title-oidc": "Inicio de sesi\xF3n social",
|
|
3990
|
+
"settings.title-password": "Cambiar contrase\xF1a",
|
|
3991
|
+
"settings.title-profile": "Configuraci\xF3n del perfil",
|
|
3992
|
+
"settings.title-totp": "Administrar la aplicaci\xF3n de autenticaci\xF3n 2FA TOTP",
|
|
3993
|
+
"settings.title-webauthn": "Administrar tokens de hardware",
|
|
3994
|
+
"settings.title-passkey": "Administrar claves de acceso",
|
|
3995
|
+
"verification.subtitle": "Ingresa la direcci\xF3n de correo electr\xF3nico asociada con tu cuenta para verificarla",
|
|
3996
|
+
"input.placeholder": "Ingresa tu {placeholder}",
|
|
3997
|
+
"card.header.parts.oidc": "un proveedor social",
|
|
3998
|
+
"card.header.parts.password.registration": "tu {identifierLabel} y una contrase\xF1a",
|
|
3999
|
+
"card.header.parts.password.login": "tu {identifierLabel} y contrase\xF1a",
|
|
4000
|
+
"card.header.parts.code": "un c\xF3digo enviado a tu correo electr\xF3nico",
|
|
4001
|
+
"card.header.parts.passkey": "una clave de acceso",
|
|
4002
|
+
"card.header.parts.webauthn": "una clave de seguridad",
|
|
4003
|
+
"card.header.parts.identifier-first": "tu {identifierLabel}",
|
|
4004
|
+
"card.header.description.login": "Iniciar sesi\xF3n con {identifierLabel}",
|
|
4005
|
+
"card.header.description.registration": "Registrarse con {identifierLabel}",
|
|
4006
|
+
"misc.or": "o",
|
|
4007
|
+
"forms.label.forgot-password": "\xBFOlvidaste tu contrase\xF1a?",
|
|
4008
|
+
"settings.oidc.info": "Las cuentas conectadas de estos proveedores se pueden utilizar para iniciar sesi\xF3n en tu cuenta",
|
|
4009
|
+
"settings.webauthn.info": "Los tokens de hardware se utilizan para la autenticaci\xF3n de segundo factor o como primer factor con las claves de acceso",
|
|
4010
|
+
"settings.passkey.info": "Administra la configuraci\xF3n de tus claves de acceso",
|
|
4011
|
+
"card.footer.select-another-method": "Seleccionar otro m\xE9todo",
|
|
4012
|
+
"account-linking.title": "Vincular cuenta",
|
|
4013
|
+
"property.password": "contrase\xF1a",
|
|
4014
|
+
"property.email": "correo electr\xF3nico",
|
|
4015
|
+
"property.phone": "tel\xE9fono",
|
|
4016
|
+
"property.username": "nombre de usuario",
|
|
4017
|
+
"property.identifier": "identificador",
|
|
4018
|
+
"property.code": "c\xF3digo",
|
|
4019
|
+
"error.title.what-happened": "\xBFQu\xE9 pas\xF3?",
|
|
4020
|
+
"error.title.what-can-i-do": "\xBFQu\xE9 puedo hacer?",
|
|
4021
|
+
"error.instructions": "Por favor, int\xE9ntalo de nuevo en unos minutos o contacta al operador del sitio web.",
|
|
4022
|
+
"error.footer.text": "Al informar este error, incluye la siguiente informaci\xF3n:",
|
|
4023
|
+
"error.footer.copy": "Copiar",
|
|
4024
|
+
"error.action.go-back": "Regresar",
|
|
4025
|
+
"identities.messages.1010020": "",
|
|
4026
|
+
"identities.messages.1050020": 'Eliminar passkey "{display_name}"'
|
|
4028
4027
|
};
|
|
4029
4028
|
|
|
4030
4029
|
// src/locales/fr.json
|
|
@@ -4215,81 +4214,10 @@ var fr_default = {
|
|
|
4215
4214
|
"two-step.totp.description": "Utilisez un code \xE0 usage unique \xE0 6 chiffres provenant de votre application d'authentification",
|
|
4216
4215
|
"two-step.lookup_secret.title": "Code de r\xE9cup\xE9ration de secours",
|
|
4217
4216
|
"two-step.lookup_secret.description": "Utilisez l'un de vos codes de secours \xE0 8 chiffres pour vous authentifier",
|
|
4218
|
-
"identities.messages.1010023": "",
|
|
4219
|
-
"identities.messages.1070015": "",
|
|
4220
|
-
"identities.messages.4000038": "",
|
|
4221
|
-
"login.cancel-button": "",
|
|
4222
|
-
"login.cancel-label": "",
|
|
4223
|
-
"identities.messages.1010016": "",
|
|
4224
|
-
"identities.messages.1010017": "",
|
|
4225
|
-
"identities.messages.1010018": "",
|
|
4226
|
-
"identities.messages.1010019": "",
|
|
4227
|
-
"identities.messages.1010020": "",
|
|
4228
|
-
"identities.messages.1010021": "",
|
|
4229
|
-
"identities.messages.1010022": "",
|
|
4230
|
-
"identities.messages.1040007": "",
|
|
4231
|
-
"identities.messages.1040008": "",
|
|
4232
|
-
"identities.messages.1040009": "",
|
|
4233
|
-
"identities.messages.1050019": "",
|
|
4234
|
-
"identities.messages.1050020": "",
|
|
4235
|
-
"identities.messages.1070014": "",
|
|
4236
|
-
"identities.messages.4000037": "",
|
|
4237
|
-
"identities.messages.4010009": "",
|
|
4238
|
-
"identities.messages.4010010": "",
|
|
4239
|
-
"input.placeholder": "",
|
|
4240
|
-
"card.header.description.login": "",
|
|
4241
|
-
"card.header.description.registration": "",
|
|
4242
|
-
"card.header.parts.code": "",
|
|
4243
|
-
"card.header.parts.identifier-first": "",
|
|
4244
|
-
"card.header.parts.oidc": "",
|
|
4245
|
-
"card.header.parts.passkey": "",
|
|
4246
|
-
"card.header.parts.password.login": "",
|
|
4247
|
-
"card.header.parts.password.registration": "",
|
|
4248
|
-
"card.header.parts.webauthn": "",
|
|
4249
|
-
"forms.label.forgot-password": "",
|
|
4250
|
-
"login.subtitle": "",
|
|
4251
|
-
"login.subtitle-refresh": "",
|
|
4252
|
-
"misc.or": "",
|
|
4253
|
-
"recovery.subtitle": "",
|
|
4254
|
-
"registration.subtitle": "",
|
|
4255
|
-
"settings.subtitle": "",
|
|
4256
|
-
"verification.subtitle": "",
|
|
4257
4217
|
"settings.totp.info.linked": "Vous avez actuellement une application d'authentification connect\xE9e.",
|
|
4258
4218
|
"settings.totp.info.not-linked": "Pour activer, scannez le QR code avec votre authentificateur et entrez le code.",
|
|
4259
4219
|
"settings.totp.title": "Application d'authentification",
|
|
4260
4220
|
"settings.totp.description": "Ajoutez une application d'authentification TOTP \xE0 votre compte pour am\xE9liorer la s\xE9curit\xE9 de votre compte. Les applications d'authentification populaires sont LastPass et Google Authenticator.",
|
|
4261
|
-
"settings.lookup_secret.description": "",
|
|
4262
|
-
"settings.lookup_secret.title": "",
|
|
4263
|
-
"settings.navigation.title": "",
|
|
4264
|
-
"settings.oidc.description": "",
|
|
4265
|
-
"settings.oidc.info": "",
|
|
4266
|
-
"settings.oidc.title": "",
|
|
4267
|
-
"settings.passkey.description": "",
|
|
4268
|
-
"settings.passkey.info": "",
|
|
4269
|
-
"settings.passkey.title": "",
|
|
4270
|
-
"settings.password.description": "",
|
|
4271
|
-
"settings.password.title": "",
|
|
4272
|
-
"settings.profile.description": "",
|
|
4273
|
-
"settings.profile.title": "",
|
|
4274
|
-
"settings.title-lookup-secret": "",
|
|
4275
|
-
"settings.title-navigation": "",
|
|
4276
|
-
"settings.title-oidc": "",
|
|
4277
|
-
"settings.title-passkey": "",
|
|
4278
|
-
"settings.title-password": "",
|
|
4279
|
-
"settings.title-profile": "",
|
|
4280
|
-
"settings.title-totp": "",
|
|
4281
|
-
"settings.title-webauthn": "",
|
|
4282
|
-
"settings.webauthn.description": "",
|
|
4283
|
-
"settings.webauthn.info": "",
|
|
4284
|
-
"settings.webauthn.title": "",
|
|
4285
|
-
"card.footer.select-another-method": "",
|
|
4286
|
-
"account-linking.title": "",
|
|
4287
|
-
"property.code": "",
|
|
4288
|
-
"property.email": "",
|
|
4289
|
-
"property.identifier": "",
|
|
4290
|
-
"property.password": "",
|
|
4291
|
-
"property.phone": "",
|
|
4292
|
-
"property.username": "",
|
|
4293
4221
|
"consent.title": "Autoriser {party}",
|
|
4294
4222
|
"consent.subtitle": "Une application tierce souhaite acc\xE9der aux informations associ\xE9es \xE0 votre compte {identifier}.",
|
|
4295
4223
|
"consent.scope.openid.title": "Identit\xE9",
|
|
@@ -4304,12 +4232,83 @@ var fr_default = {
|
|
|
4304
4232
|
"consent.scope.address.description": "Acc\xE8de \xE0 votre adresse postale.",
|
|
4305
4233
|
"consent.scope.phone.title": "Num\xE9ro de t\xE9l\xE9phone",
|
|
4306
4234
|
"consent.scope.phone.description": "R\xE9cup\xE8re votre num\xE9ro de t\xE9l\xE9phone et son statut de v\xE9rification.",
|
|
4307
|
-
"
|
|
4308
|
-
"
|
|
4309
|
-
"
|
|
4310
|
-
"
|
|
4311
|
-
"
|
|
4312
|
-
"
|
|
4235
|
+
"identities.messages.1010016": "Vous avez essay\xE9 de vous connecter avec \xAB {duplicateIdentifier} \xBB, mais cet e-mail est d\xE9j\xE0 utilis\xE9 par un autre compte. Connectez-vous \xE0 votre compte avec l'une des options ci-dessous pour ajouter votre compte \xAB {duplicateIdentifier} \xBB sur \xAB {provider} \xBB comme autre moyen de vous connecter.",
|
|
4236
|
+
"identities.messages.1010017": "Se connecter et lier",
|
|
4237
|
+
"identities.messages.1010018": "Confirmer avec {provider}",
|
|
4238
|
+
"identities.messages.1010019": "Demander un code pour continuer",
|
|
4239
|
+
"identities.messages.1010021": "Se connecter avec une cl\xE9 d'acc\xE8s",
|
|
4240
|
+
"identities.messages.1010022": "Se connecter avec un mot de passe",
|
|
4241
|
+
"identities.messages.1010023": "Envoyer le code \xE0 {address}",
|
|
4242
|
+
"identities.messages.1040007": "S'inscrire avec une cl\xE9 d'acc\xE8s",
|
|
4243
|
+
"identities.messages.1040008": "Retour",
|
|
4244
|
+
"identities.messages.1040009": "Veuillez choisir une identification pour vous authentifier.",
|
|
4245
|
+
"identities.messages.1050019": "Ajouter une cl\xE9 d'acc\xE8s",
|
|
4246
|
+
"identities.messages.1050020": "Supprimer la cl\xE9 d'acc\xE8s \xAB {display_name} \xBB",
|
|
4247
|
+
"identities.messages.1070014": "Se connecter et lier l'identification",
|
|
4248
|
+
"identities.messages.1070015": "Veuillez compl\xE9ter le d\xE9fi captcha pour continuer.",
|
|
4249
|
+
"identities.messages.4000037": "Ce compte n'existe pas ou n'a aucune m\xE9thode de connexion configur\xE9e.",
|
|
4250
|
+
"identities.messages.4000038": "La v\xE9rification Captcha a \xE9chou\xE9, veuillez r\xE9essayer.",
|
|
4251
|
+
"identities.messages.4010009": "Les identifications li\xE9es ne correspondent pas.",
|
|
4252
|
+
"identities.messages.4010010": "L'adresse que vous avez saisie ne correspond \xE0 aucune adresse connue dans le compte actuel.",
|
|
4253
|
+
"login.cancel-button": "Annuler",
|
|
4254
|
+
"login.cancel-label": "Ce n'est pas le bon compte\xA0?",
|
|
4255
|
+
"login.subtitle": "Se connecter avec {parts}",
|
|
4256
|
+
"login.subtitle-refresh": "Confirmez votre identit\xE9 avec {parts}",
|
|
4257
|
+
"recovery.subtitle": "Saisissez l'adresse e-mail associ\xE9e \xE0 votre compte pour recevoir un code d'acc\xE8s unique",
|
|
4258
|
+
"registration.subtitle": "S'inscrire avec {parts}",
|
|
4259
|
+
"settings.subtitle": "Mettre \xE0 jour les param\xE8tres de votre compte",
|
|
4260
|
+
"settings.title-lookup-secret": "G\xE9rer les codes de r\xE9cup\xE9ration de sauvegarde 2FA",
|
|
4261
|
+
"settings.title-navigation": "Param\xE8tres du compte",
|
|
4262
|
+
"settings.title-oidc": "Connexion via les r\xE9seaux sociaux",
|
|
4263
|
+
"settings.title-password": "Changer le mot de passe",
|
|
4264
|
+
"settings.title-profile": "Param\xE8tres du profil",
|
|
4265
|
+
"settings.title-totp": "G\xE9rer l'application d'authentification 2FA TOTP",
|
|
4266
|
+
"settings.title-webauthn": "G\xE9rer les jetons mat\xE9riels",
|
|
4267
|
+
"settings.title-passkey": "G\xE9rer les cl\xE9s d'acc\xE8s",
|
|
4268
|
+
"settings.navigation.title": "Param\xE8tres du compte",
|
|
4269
|
+
"settings.password.title": "Changer le mot de passe",
|
|
4270
|
+
"settings.password.description": "Modifier votre mot de passe",
|
|
4271
|
+
"settings.profile.title": "Param\xE8tres du profil",
|
|
4272
|
+
"settings.profile.description": "Mettre \xE0 jour les informations de votre profil",
|
|
4273
|
+
"settings.webauthn.title": "G\xE9rer les jetons mat\xE9riels",
|
|
4274
|
+
"settings.webauthn.description": "G\xE9rer les param\xE8tres de votre jeton mat\xE9riel",
|
|
4275
|
+
"verification.subtitle": "Saisissez l'adresse e-mail associ\xE9e \xE0 votre compte pour la v\xE9rifier",
|
|
4276
|
+
"input.placeholder": "Saisissez votre {placeholder}",
|
|
4277
|
+
"card.header.parts.oidc": "un fournisseur de r\xE9seaux sociaux",
|
|
4278
|
+
"card.header.parts.password.registration": "votre {identifierLabel} et un mot de passe",
|
|
4279
|
+
"card.header.parts.password.login": "votre {identifierLabel} et votre mot de passe",
|
|
4280
|
+
"card.header.parts.code": "un code envoy\xE9 \xE0 votre adresse e-mail",
|
|
4281
|
+
"card.header.parts.passkey": "une cl\xE9 d'acc\xE8s",
|
|
4282
|
+
"card.header.parts.webauthn": "une cl\xE9 de s\xE9curit\xE9",
|
|
4283
|
+
"card.header.parts.identifier-first": "votre {identifierLabel}",
|
|
4284
|
+
"card.header.description.login": "Se connecter avec {identifierLabel}",
|
|
4285
|
+
"card.header.description.registration": "S'inscrire avec {identifierLabel}",
|
|
4286
|
+
"misc.or": "ou",
|
|
4287
|
+
"forms.label.forgot-password": "Mot de passe oubli\xE9?",
|
|
4288
|
+
"settings.lookup_secret.title": "Codes de r\xE9cup\xE9ration de sauvegarde (second facteur)",
|
|
4289
|
+
"settings.lookup_secret.description": "Les codes de r\xE9cup\xE9ration sont une sauvegarde s\xE9curis\xE9e pour l'authentification \xE0 deux facteurs (2FA), vous permettant de retrouver l'acc\xE8s \xE0 votre compte si vous perdez votre appareil 2FA.",
|
|
4290
|
+
"settings.oidc.title": "Comptes connect\xE9s",
|
|
4291
|
+
"settings.oidc.description": "Connectez un fournisseur de connexion sociale \xE0 votre compte.",
|
|
4292
|
+
"settings.oidc.info": "Les comptes connect\xE9s de ces fournisseurs peuvent \xEAtre utilis\xE9s pour vous connecter \xE0 votre compte",
|
|
4293
|
+
"settings.webauthn.info": "Les jetons mat\xE9riels sont utilis\xE9s pour l'authentification \xE0 deux facteurs ou comme premier facteur avec les cl\xE9s d'acc\xE8s",
|
|
4294
|
+
"settings.passkey.title": "G\xE9rer les cl\xE9s d'acc\xE8s",
|
|
4295
|
+
"settings.passkey.description": "G\xE9rer les param\xE8tres de vos cl\xE9s d'acc\xE8s",
|
|
4296
|
+
"settings.passkey.info": "G\xE9rer les param\xE8tres de vos cl\xE9s d'acc\xE8s",
|
|
4297
|
+
"card.footer.select-another-method": "S\xE9lectionner une autre m\xE9thode",
|
|
4298
|
+
"account-linking.title": "Lier le compte",
|
|
4299
|
+
"property.password": "mot de passe",
|
|
4300
|
+
"property.email": "e-mail",
|
|
4301
|
+
"property.phone": "t\xE9l\xE9phone",
|
|
4302
|
+
"property.username": "nom d'utilisateur",
|
|
4303
|
+
"property.identifier": "identifiant",
|
|
4304
|
+
"property.code": "code",
|
|
4305
|
+
"error.title.what-happened": "Que s'est-il pass\xE9?",
|
|
4306
|
+
"error.title.what-can-i-do": "Que puis-je faire?",
|
|
4307
|
+
"error.instructions": "Veuillez r\xE9essayer dans quelques minutes ou contacter l'op\xE9rateur du site Web.",
|
|
4308
|
+
"error.footer.text": "Lorsque vous signalez cette erreur, veuillez inclure les informations suivantes:",
|
|
4309
|
+
"error.footer.copy": "Copier",
|
|
4310
|
+
"error.action.go-back": "Retour",
|
|
4311
|
+
"identities.messages.1010020": ""
|
|
4313
4312
|
};
|
|
4314
4313
|
|
|
4315
4314
|
// src/locales/nl.json
|
|
@@ -5495,7 +5494,7 @@ var IntlProvider = ({
|
|
|
5495
5494
|
|
|
5496
5495
|
// src/theme/default/flows/error.tsx
|
|
5497
5496
|
import { FormattedMessage } from "react-intl";
|
|
5498
|
-
import { jsx as jsx100, jsxs as
|
|
5497
|
+
import { jsx as jsx100, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
5499
5498
|
function isOAuth2Error(error) {
|
|
5500
5499
|
return !!error && typeof error === "object" && "error" in error && "error_description" in error;
|
|
5501
5500
|
}
|
|
@@ -5553,38 +5552,38 @@ function Error2({
|
|
|
5553
5552
|
{
|
|
5554
5553
|
locale: (_f = (_e = config.intl) == null ? void 0 : _e.locale) != null ? _f : "en",
|
|
5555
5554
|
customTranslations: (_g = config.intl) == null ? void 0 : _g.customTranslations,
|
|
5556
|
-
children: /* @__PURE__ */ jsx100(Card, { children: /* @__PURE__ */
|
|
5555
|
+
children: /* @__PURE__ */ jsx100(Card, { children: /* @__PURE__ */ jsxs45(
|
|
5557
5556
|
"div",
|
|
5558
5557
|
{
|
|
5559
5558
|
className: "flex flex-col gap-6 antialiased",
|
|
5560
5559
|
"data-testid": "ory/screen/error",
|
|
5561
5560
|
children: [
|
|
5562
|
-
/* @__PURE__ */
|
|
5561
|
+
/* @__PURE__ */ jsxs45("header", { className: "flex flex-col gap-8 antialiased", children: [
|
|
5563
5562
|
/* @__PURE__ */ jsx100(ErrorLogo, { config }),
|
|
5564
|
-
/* @__PURE__ */
|
|
5563
|
+
/* @__PURE__ */ jsxs45("div", { className: "flex flex-col gap-2", children: [
|
|
5565
5564
|
/* @__PURE__ */ jsx100("h2", { className: "text-lg font-semibold leading-normal text-interface-foreground-default-primary", children: /* @__PURE__ */ jsx100(FormattedMessage, { id: "error.title.what-happened" }) }),
|
|
5566
5565
|
/* @__PURE__ */ jsx100("p", { className: "leading-normal text-interface-foreground-default-secondary", children: (_h = parsed.message) != null ? _h : description }),
|
|
5567
5566
|
parsed.reason && /* @__PURE__ */ jsx100("p", { className: "leading-normal text-interface-foreground-default-secondary", children: parsed.reason })
|
|
5568
5567
|
] })
|
|
5569
5568
|
] }),
|
|
5570
5569
|
/* @__PURE__ */ jsx100(Divider, {}),
|
|
5571
|
-
/* @__PURE__ */
|
|
5570
|
+
/* @__PURE__ */ jsxs45("div", { className: "flex flex-col gap-2", children: [
|
|
5572
5571
|
/* @__PURE__ */ jsx100("h2", { className: "text-lg font-semibold leading-normal text-interface-foreground-default-primary", children: /* @__PURE__ */ jsx100(FormattedMessage, { id: "error.title.what-can-i-do" }) }),
|
|
5573
5572
|
/* @__PURE__ */ jsx100("p", { className: "leading-normal text-interface-foreground-default-secondary", children: /* @__PURE__ */ jsx100(FormattedMessage, { id: "error.instructions" }) }),
|
|
5574
5573
|
/* @__PURE__ */ jsx100("div", { children: session ? /* @__PURE__ */ jsx100(LoggedInActions, { config }) : /* @__PURE__ */ jsx100(GoBackButton, { config }) })
|
|
5575
5574
|
] }),
|
|
5576
5575
|
/* @__PURE__ */ jsx100(Divider, {}),
|
|
5577
|
-
/* @__PURE__ */
|
|
5576
|
+
/* @__PURE__ */ jsxs45("div", { className: "font-normal leading-normal antialiased gap-2 flex flex-col", children: [
|
|
5578
5577
|
/* @__PURE__ */ jsx100("span", { className: "text-interface-foreground-default-primary text-sm", children: /* @__PURE__ */ jsx100(FormattedMessage, { id: "error.footer.text" }) }),
|
|
5579
|
-
parsed.id && /* @__PURE__ */
|
|
5578
|
+
parsed.id && /* @__PURE__ */ jsxs45("p", { className: "text-interface-foreground-default-secondary text-sm", children: [
|
|
5580
5579
|
"ID: ",
|
|
5581
5580
|
/* @__PURE__ */ jsx100("code", { children: parsed.id })
|
|
5582
5581
|
] }),
|
|
5583
|
-
/* @__PURE__ */
|
|
5582
|
+
/* @__PURE__ */ jsxs45("p", { className: "text-interface-foreground-default-secondary text-sm", children: [
|
|
5584
5583
|
"Time: ",
|
|
5585
5584
|
/* @__PURE__ */ jsx100("code", { children: (_i = parsed.timestamp) == null ? void 0 : _i.toUTCString() })
|
|
5586
5585
|
] }),
|
|
5587
|
-
/* @__PURE__ */
|
|
5586
|
+
/* @__PURE__ */ jsxs45("p", { className: "text-interface-foreground-default-secondary text-sm", children: [
|
|
5588
5587
|
"Message: ",
|
|
5589
5588
|
/* @__PURE__ */ jsx100("code", { children: parsed.reason })
|
|
5590
5589
|
] }),
|
|
@@ -5726,7 +5725,7 @@ import {
|
|
|
5726
5725
|
OryProvider as OryProvider4,
|
|
5727
5726
|
OrySettingsCard
|
|
5728
5727
|
} from "@ory/elements-react";
|
|
5729
|
-
import { Fragment as Fragment13, jsx as jsx104, jsxs as
|
|
5728
|
+
import { Fragment as Fragment13, jsx as jsx104, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
5730
5729
|
function Settings({
|
|
5731
5730
|
flow,
|
|
5732
5731
|
config,
|
|
@@ -5741,7 +5740,7 @@ function Settings({
|
|
|
5741
5740
|
flow,
|
|
5742
5741
|
flowType: FlowType21.Settings,
|
|
5743
5742
|
components,
|
|
5744
|
-
children: children != null ? children : /* @__PURE__ */
|
|
5743
|
+
children: children != null ? children : /* @__PURE__ */ jsxs46(Fragment13, { children: [
|
|
5745
5744
|
/* @__PURE__ */ jsx104(HeadlessPageHeader, {}),
|
|
5746
5745
|
/* @__PURE__ */ jsx104(OrySettingsCard, {})
|
|
5747
5746
|
] })
|