@wise/dynamic-flow-client-internal 3.34.1 → 4.0.0-exp-next-min-fb61ff2
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/build/main.js +49 -50
- package/build/main.min.js +1 -1
- package/build/main.mjs +49 -50
- package/build/types/index.d.ts +1 -1
- package/package.json +4 -4
package/build/main.js
CHANGED
|
@@ -1039,16 +1039,16 @@ var mapStatusToSentiment = (validation) => {
|
|
|
1039
1039
|
};
|
|
1040
1040
|
var FieldInput_default = FieldInput;
|
|
1041
1041
|
|
|
1042
|
-
// ../renderers/src/
|
|
1042
|
+
// ../renderers/src/CheckboxInputRenderer.tsx
|
|
1043
1043
|
var import_components4 = require("@transferwise/components");
|
|
1044
1044
|
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
1045
|
-
var
|
|
1046
|
-
canRenderType: "input-
|
|
1045
|
+
var CheckboxInputRenderer = {
|
|
1046
|
+
canRenderType: "input-checkbox",
|
|
1047
1047
|
render: (props) => {
|
|
1048
1048
|
const _a = props, {
|
|
1049
1049
|
id,
|
|
1050
1050
|
control,
|
|
1051
|
-
|
|
1051
|
+
title = "",
|
|
1052
1052
|
description,
|
|
1053
1053
|
help,
|
|
1054
1054
|
type,
|
|
@@ -1057,18 +1057,18 @@ var BooleanInputRenderer = {
|
|
|
1057
1057
|
} = _a, rest = __objRest(_a, [
|
|
1058
1058
|
"id",
|
|
1059
1059
|
"control",
|
|
1060
|
-
"
|
|
1060
|
+
"title",
|
|
1061
1061
|
"description",
|
|
1062
1062
|
"help",
|
|
1063
1063
|
"type",
|
|
1064
1064
|
"validationState",
|
|
1065
1065
|
"value"
|
|
1066
1066
|
]);
|
|
1067
|
-
const checkboxProps = __spreadProps(__spreadValues({}, rest), { label, secondary: description, checked: value });
|
|
1067
|
+
const checkboxProps = __spreadProps(__spreadValues({}, rest), { label: title, secondary: description, checked: value });
|
|
1068
1068
|
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(FieldInput_default, { id, label: "", description: "", validation: validationState, help, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_components4.Checkbox, __spreadValues({ id }, checkboxProps)) });
|
|
1069
1069
|
}
|
|
1070
1070
|
};
|
|
1071
|
-
var
|
|
1071
|
+
var CheckboxInputRenderer_default = CheckboxInputRenderer;
|
|
1072
1072
|
|
|
1073
1073
|
// ../renderers/src/BoxRenderer.tsx
|
|
1074
1074
|
var import_classnames = __toESM(require_classnames());
|
|
@@ -1289,19 +1289,19 @@ var DateInputRenderer = {
|
|
|
1289
1289
|
const _a = props, {
|
|
1290
1290
|
id,
|
|
1291
1291
|
control,
|
|
1292
|
-
label,
|
|
1293
1292
|
description,
|
|
1294
1293
|
type,
|
|
1295
1294
|
help,
|
|
1295
|
+
title,
|
|
1296
1296
|
validationState,
|
|
1297
1297
|
value: initialValue
|
|
1298
1298
|
} = _a, rest = __objRest(_a, [
|
|
1299
1299
|
"id",
|
|
1300
1300
|
"control",
|
|
1301
|
-
"label",
|
|
1302
1301
|
"description",
|
|
1303
1302
|
"type",
|
|
1304
1303
|
"help",
|
|
1304
|
+
"title",
|
|
1305
1305
|
"validationState",
|
|
1306
1306
|
"value"
|
|
1307
1307
|
]);
|
|
@@ -1311,7 +1311,7 @@ var DateInputRenderer = {
|
|
|
1311
1311
|
FieldInput_default,
|
|
1312
1312
|
{
|
|
1313
1313
|
id,
|
|
1314
|
-
label,
|
|
1314
|
+
label: title,
|
|
1315
1315
|
description,
|
|
1316
1316
|
validation: validationState,
|
|
1317
1317
|
help,
|
|
@@ -1444,10 +1444,9 @@ var FormRenderer_default = FormRenderer;
|
|
|
1444
1444
|
var import_components9 = require("@transferwise/components");
|
|
1445
1445
|
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
1446
1446
|
var FormSectionRenderer = {
|
|
1447
|
-
canRenderType: "
|
|
1447
|
+
canRenderType: "section",
|
|
1448
1448
|
render: ({ title, description, children }) => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("fieldset", { children: [
|
|
1449
|
-
title &&
|
|
1450
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1449
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1451
1450
|
import_components9.Header,
|
|
1452
1451
|
{
|
|
1453
1452
|
as: "h2",
|
|
@@ -1656,7 +1655,7 @@ var IntegerInputRenderer = {
|
|
|
1656
1655
|
render: (props) => {
|
|
1657
1656
|
const _a = props, {
|
|
1658
1657
|
id,
|
|
1659
|
-
|
|
1658
|
+
title,
|
|
1660
1659
|
description,
|
|
1661
1660
|
help,
|
|
1662
1661
|
icon,
|
|
@@ -1667,7 +1666,7 @@ var IntegerInputRenderer = {
|
|
|
1667
1666
|
onChange
|
|
1668
1667
|
} = _a, rest = __objRest(_a, [
|
|
1669
1668
|
"id",
|
|
1670
|
-
"
|
|
1669
|
+
"title",
|
|
1671
1670
|
"description",
|
|
1672
1671
|
"help",
|
|
1673
1672
|
"icon",
|
|
@@ -1681,7 +1680,7 @@ var IntegerInputRenderer = {
|
|
|
1681
1680
|
FieldInput_default,
|
|
1682
1681
|
{
|
|
1683
1682
|
id,
|
|
1684
|
-
label,
|
|
1683
|
+
label: title,
|
|
1685
1684
|
description,
|
|
1686
1685
|
validation: validationState,
|
|
1687
1686
|
help,
|
|
@@ -1807,11 +1806,11 @@ function MultiSelectInputRendererComponent(props) {
|
|
|
1807
1806
|
autoComplete,
|
|
1808
1807
|
description,
|
|
1809
1808
|
disabled,
|
|
1810
|
-
label,
|
|
1811
1809
|
help,
|
|
1812
1810
|
options,
|
|
1813
1811
|
placeholder,
|
|
1814
1812
|
selectedIndices,
|
|
1813
|
+
title,
|
|
1815
1814
|
validationState,
|
|
1816
1815
|
onSelect
|
|
1817
1816
|
} = props;
|
|
@@ -1848,7 +1847,7 @@ function MultiSelectInputRendererComponent(props) {
|
|
|
1848
1847
|
FieldInput_default,
|
|
1849
1848
|
{
|
|
1850
1849
|
id,
|
|
1851
|
-
label,
|
|
1850
|
+
label: title,
|
|
1852
1851
|
help,
|
|
1853
1852
|
description,
|
|
1854
1853
|
validation: validationState,
|
|
@@ -1944,9 +1943,6 @@ var getFileType = (base64Url) => {
|
|
|
1944
1943
|
return void 0;
|
|
1945
1944
|
};
|
|
1946
1945
|
|
|
1947
|
-
// ../renderers/src/utils/getRandomId.ts
|
|
1948
|
-
var getRandomId = () => Math.random().toString(36).substring(2);
|
|
1949
|
-
|
|
1950
1946
|
// ../renderers/src/MultiUploadInputRenderer.tsx
|
|
1951
1947
|
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
1952
1948
|
var MultiUploadInputRenderer = {
|
|
@@ -1956,30 +1952,28 @@ var MultiUploadInputRenderer = {
|
|
|
1956
1952
|
id,
|
|
1957
1953
|
accepts,
|
|
1958
1954
|
help,
|
|
1959
|
-
|
|
1955
|
+
title,
|
|
1960
1956
|
description,
|
|
1961
1957
|
disabled,
|
|
1962
1958
|
maxSize,
|
|
1963
1959
|
maxItems,
|
|
1964
1960
|
uploadLabel,
|
|
1965
1961
|
validationState,
|
|
1966
|
-
|
|
1967
|
-
|
|
1962
|
+
value,
|
|
1963
|
+
onInsertFile,
|
|
1964
|
+
onRemoveFile
|
|
1968
1965
|
} = props;
|
|
1969
1966
|
const onUploadFile = async (formData) => {
|
|
1970
1967
|
const file = formData.get("file");
|
|
1971
|
-
|
|
1972
|
-
return onUpload(file, fileId).then(() => ({
|
|
1973
|
-
id: fileId
|
|
1974
|
-
}));
|
|
1968
|
+
return onInsertFile(value.length, file).then((newId) => ({ id: newId }));
|
|
1975
1969
|
};
|
|
1976
|
-
const onDeleteFile = async (fileId) =>
|
|
1970
|
+
const onDeleteFile = async (fileId) => onRemoveFile(value.findIndex((file) => file.id === fileId));
|
|
1977
1971
|
const descriptionId = description ? `${id}-description` : void 0;
|
|
1978
1972
|
return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
1979
1973
|
UploadFieldInput_default,
|
|
1980
1974
|
{
|
|
1981
1975
|
id,
|
|
1982
|
-
label,
|
|
1976
|
+
label: title,
|
|
1983
1977
|
description,
|
|
1984
1978
|
validation: validationState,
|
|
1985
1979
|
help,
|
|
@@ -2013,7 +2007,7 @@ var NumberInputRenderer = {
|
|
|
2013
2007
|
render: (props) => {
|
|
2014
2008
|
const _a = props, {
|
|
2015
2009
|
id,
|
|
2016
|
-
|
|
2010
|
+
title,
|
|
2017
2011
|
description,
|
|
2018
2012
|
help,
|
|
2019
2013
|
icon,
|
|
@@ -2024,7 +2018,7 @@ var NumberInputRenderer = {
|
|
|
2024
2018
|
onChange
|
|
2025
2019
|
} = _a, rest = __objRest(_a, [
|
|
2026
2020
|
"id",
|
|
2027
|
-
"
|
|
2021
|
+
"title",
|
|
2028
2022
|
"description",
|
|
2029
2023
|
"help",
|
|
2030
2024
|
"icon",
|
|
@@ -2038,7 +2032,7 @@ var NumberInputRenderer = {
|
|
|
2038
2032
|
FieldInput_default,
|
|
2039
2033
|
{
|
|
2040
2034
|
id,
|
|
2041
|
-
label,
|
|
2035
|
+
label: title,
|
|
2042
2036
|
description,
|
|
2043
2037
|
validation: validationState,
|
|
2044
2038
|
help,
|
|
@@ -2507,7 +2501,7 @@ function RadioInputRendererComponent(props) {
|
|
|
2507
2501
|
description,
|
|
2508
2502
|
disabled,
|
|
2509
2503
|
help,
|
|
2510
|
-
|
|
2504
|
+
title,
|
|
2511
2505
|
options,
|
|
2512
2506
|
selectedIndex,
|
|
2513
2507
|
validationState,
|
|
@@ -2518,7 +2512,7 @@ function RadioInputRendererComponent(props) {
|
|
|
2518
2512
|
FieldInput_default,
|
|
2519
2513
|
{
|
|
2520
2514
|
id,
|
|
2521
|
-
label,
|
|
2515
|
+
label: title,
|
|
2522
2516
|
help,
|
|
2523
2517
|
description,
|
|
2524
2518
|
validation: validationState,
|
|
@@ -2555,7 +2549,7 @@ function TabInputRendererComponent(props) {
|
|
|
2555
2549
|
description,
|
|
2556
2550
|
disabled,
|
|
2557
2551
|
help,
|
|
2558
|
-
|
|
2552
|
+
title,
|
|
2559
2553
|
options,
|
|
2560
2554
|
selectedIndex,
|
|
2561
2555
|
validationState,
|
|
@@ -2571,7 +2565,7 @@ function TabInputRendererComponent(props) {
|
|
|
2571
2565
|
FieldInput_default,
|
|
2572
2566
|
{
|
|
2573
2567
|
id,
|
|
2574
|
-
label,
|
|
2568
|
+
label: title,
|
|
2575
2569
|
help,
|
|
2576
2570
|
description,
|
|
2577
2571
|
validation: validationState,
|
|
@@ -2608,7 +2602,7 @@ function SelectInputRendererComponent(props) {
|
|
|
2608
2602
|
description,
|
|
2609
2603
|
disabled,
|
|
2610
2604
|
help,
|
|
2611
|
-
|
|
2605
|
+
title,
|
|
2612
2606
|
options,
|
|
2613
2607
|
placeholder,
|
|
2614
2608
|
required,
|
|
@@ -2649,7 +2643,7 @@ function SelectInputRendererComponent(props) {
|
|
|
2649
2643
|
FieldInput_default,
|
|
2650
2644
|
{
|
|
2651
2645
|
id,
|
|
2652
|
-
label,
|
|
2646
|
+
label: title,
|
|
2653
2647
|
help,
|
|
2654
2648
|
description,
|
|
2655
2649
|
validation: validationState,
|
|
@@ -2683,7 +2677,7 @@ function SegmentedInputRendererComponent(props) {
|
|
|
2683
2677
|
children,
|
|
2684
2678
|
description,
|
|
2685
2679
|
help,
|
|
2686
|
-
|
|
2680
|
+
title,
|
|
2687
2681
|
options,
|
|
2688
2682
|
selectedIndex,
|
|
2689
2683
|
validationState,
|
|
@@ -2699,7 +2693,7 @@ function SegmentedInputRendererComponent(props) {
|
|
|
2699
2693
|
FieldInput_default,
|
|
2700
2694
|
{
|
|
2701
2695
|
id,
|
|
2702
|
-
label,
|
|
2696
|
+
label: title,
|
|
2703
2697
|
help,
|
|
2704
2698
|
description,
|
|
2705
2699
|
validation: validationState,
|
|
@@ -2872,7 +2866,7 @@ var TextInputRenderer = {
|
|
|
2872
2866
|
const _a = props, {
|
|
2873
2867
|
id,
|
|
2874
2868
|
control,
|
|
2875
|
-
|
|
2869
|
+
title,
|
|
2876
2870
|
description,
|
|
2877
2871
|
help,
|
|
2878
2872
|
error,
|
|
@@ -2887,7 +2881,7 @@ var TextInputRenderer = {
|
|
|
2887
2881
|
} = _a, rest = __objRest(_a, [
|
|
2888
2882
|
"id",
|
|
2889
2883
|
"control",
|
|
2890
|
-
"
|
|
2884
|
+
"title",
|
|
2891
2885
|
"description",
|
|
2892
2886
|
"help",
|
|
2893
2887
|
"error",
|
|
@@ -2914,7 +2908,7 @@ var TextInputRenderer = {
|
|
|
2914
2908
|
FieldInput_default,
|
|
2915
2909
|
{
|
|
2916
2910
|
id,
|
|
2917
|
-
label,
|
|
2911
|
+
label: title,
|
|
2918
2912
|
description,
|
|
2919
2913
|
validation: validationState,
|
|
2920
2914
|
help,
|
|
@@ -2927,11 +2921,16 @@ var TextInputRenderer_default = TextInputRenderer;
|
|
|
2927
2921
|
|
|
2928
2922
|
// ../renderers/src/UploadInputRenderer.tsx
|
|
2929
2923
|
var import_components36 = require("@transferwise/components");
|
|
2924
|
+
|
|
2925
|
+
// ../renderers/src/utils/getRandomId.ts
|
|
2926
|
+
var getRandomId = () => Math.random().toString(36).substring(2);
|
|
2927
|
+
|
|
2928
|
+
// ../renderers/src/UploadInputRenderer.tsx
|
|
2930
2929
|
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
2931
2930
|
var UploadInputRenderer = {
|
|
2932
2931
|
canRenderType: "input-upload",
|
|
2933
2932
|
render: (props) => {
|
|
2934
|
-
const { id, accepts,
|
|
2933
|
+
const { id, accepts, title, description, disabled, maxSize, validationState, onUpload } = props;
|
|
2935
2934
|
const onUploadFile = async (formData) => {
|
|
2936
2935
|
const file = formData.get("file");
|
|
2937
2936
|
return onUpload(file).then(() => ({
|
|
@@ -2958,7 +2957,7 @@ var UploadInputRenderer = {
|
|
|
2958
2957
|
disabled,
|
|
2959
2958
|
fileTypes: getAcceptsString(accepts),
|
|
2960
2959
|
sizeLimit: maxSize ? toKilobytes(maxSize) : void 0,
|
|
2961
|
-
uploadButtonTitle:
|
|
2960
|
+
uploadButtonTitle: title,
|
|
2962
2961
|
onDeleteFile,
|
|
2963
2962
|
onUploadFile
|
|
2964
2963
|
}
|
|
@@ -2976,7 +2975,7 @@ var LargeUploadRenderer = {
|
|
|
2976
2975
|
id,
|
|
2977
2976
|
accepts,
|
|
2978
2977
|
control,
|
|
2979
|
-
|
|
2978
|
+
title,
|
|
2980
2979
|
description,
|
|
2981
2980
|
disabled,
|
|
2982
2981
|
help,
|
|
@@ -2988,7 +2987,7 @@ var LargeUploadRenderer = {
|
|
|
2988
2987
|
"id",
|
|
2989
2988
|
"accepts",
|
|
2990
2989
|
"control",
|
|
2991
|
-
"
|
|
2990
|
+
"title",
|
|
2992
2991
|
"description",
|
|
2993
2992
|
"disabled",
|
|
2994
2993
|
"help",
|
|
@@ -3011,7 +3010,7 @@ var LargeUploadRenderer = {
|
|
|
3011
3010
|
FieldInput_default,
|
|
3012
3011
|
{
|
|
3013
3012
|
id,
|
|
3014
|
-
label,
|
|
3013
|
+
label: title,
|
|
3015
3014
|
description,
|
|
3016
3015
|
validation: validationState,
|
|
3017
3016
|
help,
|
|
@@ -3307,7 +3306,7 @@ var ListRenderer_default = ListRenderer;
|
|
|
3307
3306
|
// ../renderers/src/getWiseRenderers.ts
|
|
3308
3307
|
var getWiseRenderers = () => [
|
|
3309
3308
|
AlertRenderer_default,
|
|
3310
|
-
|
|
3309
|
+
CheckboxInputRenderer_default,
|
|
3311
3310
|
BoxRenderer_default,
|
|
3312
3311
|
ButtonRenderer_default,
|
|
3313
3312
|
ColumnsRenderer_default,
|
package/build/main.min.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";var Di=Object.create;var ye=Object.defineProperty,Mi=Object.defineProperties,Ni=Object.getOwnPropertyDescriptor,Ti=Object.getOwnPropertyDescriptors,zi=Object.getOwnPropertyNames,De=Object.getOwnPropertySymbols,Bi=Object.getPrototypeOf,wr=Object.prototype.hasOwnProperty,jr=Object.prototype.propertyIsEnumerable;var qr=(e,r,t)=>r in e?ye(e,r,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[r]=t,s=(e,r)=>{for(var t in r||(r={}))wr.call(r,t)&&qr(e,t,r[t]);if(De)for(var t of De(r))jr.call(r,t)&&qr(e,t,r[t]);return e},w=(e,r)=>Mi(e,Ti(r));var F=(e,r)=>{var t={};for(var n in e)wr.call(e,n)&&r.indexOf(n)<0&&(t[n]=e[n]);if(e!=null&&De)for(var n of De(e))r.indexOf(n)<0&&jr.call(e,n)&&(t[n]=e[n]);return t};var Zr=(e,r)=>()=>(e&&(r=e(e=0)),r);var Oi=(e,r)=>()=>(r||e((r={exports:{}}).exports,r),r.exports),Hi=(e,r)=>{for(var t in r)ye(e,t,{get:r[t],enumerable:!0})},Yr=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let i of zi(r))!wr.call(e,i)&&i!==t&&ye(e,i,{get:()=>r[i],enumerable:!(n=Ni(r,i))||n.enumerable});return e};var j=(e,r,t)=>(t=e!=null?Di(Bi(e)):{},Yr(r||!e||!e.__esModule?ye(t,"default",{value:e,enumerable:!0}):t,e)),Ui=e=>Yr(ye({},"__esModule",{value:!0}),e);var Y=Oi((Bs,Oe)=>{"use strict";(function(){"use strict";var e={}.hasOwnProperty;function r(){for(var i="",a=0;a<arguments.length;a++){var o=arguments[a];o&&(i=n(i,t(o)))}return i}function t(i){if(typeof i=="string"||typeof i=="number")return i;if(typeof i!="object")return"";if(Array.isArray(i))return r.apply(null,i);if(i.toString!==Object.prototype.toString&&!i.toString.toString().includes("[native code]"))return i.toString();var a="";for(var o in i)e.call(i,o)&&i[o]&&(a=n(a,o));return a}function n(i,a){return a?i?i+" "+a:i+a:i}typeof Oe!="undefined"&&Oe.exports?(r.default=r,Oe.exports=r):typeof define=="function"&&typeof define.amd=="object"&&define.amd?define("classnames",[],function(){return r}):window.classNames=r})()});function Bt(e){var r,t,n="";if(typeof e=="string"||typeof e=="number")n+=e;else if(typeof e=="object")if(Array.isArray(e)){var i=e.length;for(r=0;r<i;r++)e[r]&&(t=Bt(e[r]))&&(n&&(n+=" "),n+=t)}else for(t in e)e[t]&&(n&&(n+=" "),n+=t);return n}function Ot(){for(var e,r,t=0,n="",i=arguments.length;t<i;t++)(e=arguments[t])&&(r=Bt(e))&&(n&&(n+=" "),n+=r);return n}var Lr=Zr(()=>{"use strict"});var J,We,Ca,Dr,B,id,ad,Ar,Ht,Ut=Zr(()=>{"use strict";Lr();J=require("react"),We=require("react/jsx-runtime"),Ca="wise",Dr=({code:e,intrinsicSize:r=64,className:t=void 0,loading:n="lazy"})=>{let[i,a]=(0,J.useState)(null);(0,J.useEffect)(()=>{a(null)},[e]);let o=r>=150,d=i!=="unknown"?`${e.toLowerCase()}${i==null&&o?"-detailed":""}`:Ca;return(0,We.jsx)("img",{className:Ot(`wds-flag wds-flag-${d}`,t),src:`https://wise.com/web-art/assets/flags/${d}.svg`,loading:n,alt:"",width:r,height:r,onError:()=>{a(m=>m==null&&o?"simple":"unknown")}})};(function(e){e.SMALL="small",e.MEDIUM="medium",e.LARGE="large"})(B||(B={}));id={[B.SMALL]:200,[B.MEDIUM]:300,[B.LARGE]:500},ad={[B.SMALL]:200,[B.MEDIUM]:300,[B.LARGE]:500};(function(e){e.WALLET="wallet",e.TWO_INVITE_LETTERS_OPENED="two-invite-letters-opened",e.TOOL="tool",e.TARGET_PLATFORM="target-platform",e.STOPWATCH_PLATFORM="stopwatch-platform",e.SPEECH_BUBBLE="speech-bubble",e.SKIP_AUTHENTICATION="skip-authentication",e.SHOPPING_BAG="shopping-bag",e.SATELLITE_PLATFORM="satellite-platform",e.SAND_TIMER="sand-timer",e.REMINDER_LETTER="reminder-letter",e.RECEIVE="receive",e.QUESTION_MARK="question-mark",e.PUZZLE_PIECES="puzzle-pieces",e.PLANE_2="plane-2",e.PLANE="plane",e.PIE_CHART="pie-chart",e.PHONES="phones",e.PERSONAL_CARD="personal-card",e.PERCENTAGE="percentage",e.PALM_TREE="palm-tree",e.ONE_INVITE_LETTER_OPENED="one-invite-letter-opened",e.MULTI_CURRENCY="multi-currency",e.MEGAPHONE="megaphone",e.MARBLE_CARD_BUSINESS="marble-card-business",e.MARBLE_CARD="marble-card",e.MARBLE="marble",e.MAP="map",e.MAGNIFYING_GLASS="magnifying-glass",e.LOCK_PLATFORM="lock-platform",e.LOCK="lock",e.LIGHT_BULB="light-bulb",e.KEY="key",e.JARS="jars",e.INVITE_LETTER="invite-letter",e.INTEREST="interest",e.INFINITE="infinite",e.ID_CARD="id-card",e.HOUSE="house",e.HEART_5="heart-5",e.HEART_4="heart-4",e.HEART_3="heart-3",e.HEART_2="heart-2",e.HEART="heart",e.GRAPH="graph",e.GLOBE="globe",e.GEAR="gear",e.FLOWER="flower",e.FLAG="flag",e.EXCLAMATION_MARK="exclamation-mark",e.EMAIL_SUCCESS="email-success",e.EMAIL="email",e.ELECTRIC_PLUG="electric-plug",e.ECO_CARD="eco-card",e.DOOR="door",e.DOCUMENTS="documents",e.DIGITAL_CARD_2="digital-card-2",e.DIGITAL_CARD="digital-card",e.COOKIE="cookie",e.CONVERT="convert",e.CONSTRUCTION_FENCE="construction-fence",e.CONFETTI="confetti",e.COIN_PILE_UP="coin-pile-up",e.COIN_PILE_DOWN="coin-pile-down",e.CLOSED_WINDOW="closed-window",e.CHECK_MARK="check-mark",e.CALENDAR="calendar",e.BUSINESS_CARD="business-card",e.BRIEFCASE="briefcase",e.BELL="bell"})(Ar||(Ar={}));(function(e){e[e.INIT=0]="INIT",e[e.FALLBACK=1]="FALLBACK",e[e.ASSET_3D=2]="ASSET_3D"})(Ht||(Ht={}))});var Ho={};Hi(Ho,{DynamicFlow:()=>Kr,DynamicFlowLegacy:()=>Kr,DynamicFlowRevamp:()=>Fi,DynamicFragment:()=>Pi,JsonSchemaForm:()=>yr.JsonSchemaForm,isValidSchema:()=>yr.isValidSchema,makeCustomFetch:()=>Ai.makeHttpClient,translations:()=>ut});module.exports=Ui(Ho);var Ai=require("@wise/dynamic-flow-client"),yr=require("@wise/dynamic-flow-client");var br=require("@wise/dynamic-flow-client");var Jr={"df.wise.ArraySchema.addItem":"Speichern","df.wise.ArraySchema.addItemTitle":"Artikel hinzuf\xFCgen","df.wise.ArraySchema.editItem":"Speichern","df.wise.ArraySchema.maxItemsError":"Bitte f\xFCge {maxItems} oder weniger hinzu.","df.wise.ArraySchema.minItemsError":"Bitte f\xFCge mindestens {minItems} hinzu.","df.wise.ArraySchema.removeItem":"Entfernen","df.wise.ControlFeedback.maxLength":"Bitte gib nicht mehr als {maxLength} Zeichen ein.","df.wise.ControlFeedback.maximum":"Bitte gib eine Zahl ein, die {maximum} oder weniger betr\xE4gt.","df.wise.ControlFeedback.maximumDate":"Bitte gib ein Datum ein, das am oder vor dem {maximum} liegt.","df.wise.ControlFeedback.minLength":"Bitte gib mindestens {minLength} Zeichen ein.","df.wise.ControlFeedback.minimum":"Bitte gib eine Zahl ein, die {minimum} oder mehr betr\xE4gt.","df.wise.ControlFeedback.minimumDate":"Bitte gib ein Datum ein, das am oder nach dem {minimum} liegt.","df.wise.ControlFeedback.pattern":"Bitte gib die Angabe im richtigen Format ein.","df.wise.ControlFeedback.patternDate":"Bitte gib ein Datum im richtigen Format ein.","df.wise.ControlFeedback.required":"Bitte f\xFClle dieses Feld aus.","df.wise.ControlFeedback.type":"Falscher Typ","df.wise.DynamicParagraph.copied":"In Zwischenablage kopiert","df.wise.DynamicParagraph.copy":"Kopieren","df.wise.ErrorBoundary.errorAlert":"Da ist etwas schiefgegangen.","df.wise.ErrorBoundary.retry":"Erneut versuchen","df.wise.ExternalConfirmation.cancel":"Abbrechen","df.wise.ExternalConfirmation.description":"Bitte best\xE4tige, dass du **{origin}** in einem neuen Browser-Tab \xF6ffnen m\xF6chtest.","df.wise.ExternalConfirmation.open":"In neuem Tab \xF6ffnen","df.wise.ExternalConfirmation.title":"Bitte best\xE4tigen","df.wise.Help.ariaLabel":"Klicke hier f\xFCr mehr Informationen.","df.wise.MultiSelect.summary":"{first} und {count} weitere","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Diese Datei ist leider zu gro\xDF. Bitte lade eine kleinere Datei hoch.","df.wise.MultipleFileUploadSchema.maxItemsError":"Bitte lade {maxItems} oder weniger Dateien hoch.","df.wise.MultipleFileUploadSchema.minItemsError":"Bitte lade mindestens {minItems} Datei(en) hoch.","df.wise.PersistAsyncSchema.genericError":"Da ist etwas schiefgegangen. Versuche es bitte nochmal.","df.wise.SearchLayout.loading":"L\xE4dt..."};var Qr={"df.wise.ArraySchema.addItem":"Save","df.wise.ArraySchema.addItemTitle":"Add Item","df.wise.ArraySchema.editItem":"Save","df.wise.ArraySchema.maxItemsError":"Please add {maxItems} or fewer.","df.wise.ArraySchema.minItemsError":"Please add at least {minItems}.","df.wise.ArraySchema.removeItem":"Remove","df.wise.ControlFeedback.maxLength":"Please enter {maxLength} or fewer characters.","df.wise.ControlFeedback.maximum":"Please enter a number that's {maximum} or less.","df.wise.ControlFeedback.maximumDate":"Please enter a date that's on or before {maximum}.","df.wise.ControlFeedback.minLength":"Please enter at least {minLength} characters.","df.wise.ControlFeedback.minimum":"Please enter a number that's {minimum} or more.","df.wise.ControlFeedback.minimumDate":"Please enter a date that's on or after {minimum}.","df.wise.ControlFeedback.pattern":"Please enter this in the correct format.","df.wise.ControlFeedback.patternDate":"Please enter a date in the corrrect format.","df.wise.ControlFeedback.required":"Please fill out this field.","df.wise.ControlFeedback.type":"Incorrect type","df.wise.DynamicParagraph.copied":"Copied to clipboard","df.wise.DynamicParagraph.copy":"Copy","df.wise.ErrorBoundary.errorAlert":"Something went wrong.","df.wise.ErrorBoundary.retry":"Retry","df.wise.ExternalConfirmation.cancel":"Cancel","df.wise.ExternalConfirmation.description":"Please confirm you want to open **{origin}** in a new browser tab.","df.wise.ExternalConfirmation.open":"Open in new tab","df.wise.ExternalConfirmation.title":"Please confirm","df.wise.Help.ariaLabel":"Click here for more info.","df.wise.MultiSelect.summary":"{first} and {count} more","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Sorry, that file is too big. Please upload a smaller file.","df.wise.MultipleFileUploadSchema.maxItemsError":"Please upload {maxItems} or fewer files.","df.wise.MultipleFileUploadSchema.minItemsError":"Please upload at least {minItems} file(s).","df.wise.PersistAsyncSchema.genericError":"Something went wrong, please try again.","df.wise.SearchLayout.loading":"Loading..."};var Xr={"df.wise.ArraySchema.addItem":"Guardar","df.wise.ArraySchema.addItemTitle":"A\xF1adir elemento","df.wise.ArraySchema.editItem":"Guardar","df.wise.ArraySchema.maxItemsError":"A\xF1ade {maxItems} o menos.","df.wise.ArraySchema.minItemsError":"A\xF1ade al menos {minItems}.","df.wise.ArraySchema.removeItem":"Eliminar","df.wise.ControlFeedback.maxLength":"Introduce {maxLength} caracteres o menos.","df.wise.ControlFeedback.maximum":"Introduce una cifra igual o inferior a {maximum}.","df.wise.ControlFeedback.maximumDate":"Introduce una fecha que sea igual o anterior al {maximum}.","df.wise.ControlFeedback.minLength":"Introduce al menos {minLength} caracteres.","df.wise.ControlFeedback.minimum":"Introduce una cifra igual o inferior a {minimum}.","df.wise.ControlFeedback.minimumDate":"Introduce una fecha que sea igual o posterior al {minimum}.","df.wise.ControlFeedback.pattern":"Utiliza el formato correcto.","df.wise.ControlFeedback.patternDate":"Introduce la fecha en un formato correcto.","df.wise.ControlFeedback.required":"Completa este campo.","df.wise.ControlFeedback.type":"Tipo incorrecto","df.wise.DynamicParagraph.copied":"Copiado al portapapeles","df.wise.DynamicParagraph.copy":"Copiar","df.wise.ErrorBoundary.errorAlert":"Ha habido un error.","df.wise.ErrorBoundary.retry":"Reintentar","df.wise.ExternalConfirmation.cancel":"Cancelar","df.wise.ExternalConfirmation.description":"Confirma que quieres abrir **{origin}** en una nueva pesta\xF1a del navegador.","df.wise.ExternalConfirmation.open":"Abrir en nueva pesta\xF1a","df.wise.ExternalConfirmation.title":"Por favor, confirma","df.wise.Help.ariaLabel":"Haz clic aqu\xED para obtener m\xE1s informaci\xF3n.","df.wise.MultiSelect.summary":"{first} y {count} m\xE1s","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Lo sentimos, el archivo pesa demasiado. Sube uno m\xE1s peque\xF1o.","df.wise.MultipleFileUploadSchema.maxItemsError":"Sube {maxItems} o menos archivos.","df.wise.MultipleFileUploadSchema.minItemsError":"Sube al menos {minItems} archivo(s).","df.wise.PersistAsyncSchema.genericError":"Ha habido un error. Int\xE9ntalo de nuevo.","df.wise.SearchLayout.loading":"Cargando..."};var et={"df.wise.ArraySchema.addItem":"Enregistrer","df.wise.ArraySchema.addItemTitle":"Ajouter un \xE9l\xE9ment","df.wise.ArraySchema.editItem":"Enregistrer","df.wise.ArraySchema.maxItemsError":"Veuillez ajouter {maxItems} ou moins.","df.wise.ArraySchema.minItemsError":"Veuillez ajouter au moins {minItems}.","df.wise.ArraySchema.removeItem":"Supprimer","df.wise.ControlFeedback.maxLength":"Veuillez saisir {maxLength} caract\xE8res ou moins.","df.wise.ControlFeedback.maximum":"Veuillez saisir un nombre inf\xE9rieur ou \xE9gal \xE0 {maximum}.","df.wise.ControlFeedback.maximumDate":"Veuillez saisir une date \xE9gale ou ant\xE9rieure au {maximum}.","df.wise.ControlFeedback.minLength":"Veuillez saisir au moins {minLength} caract\xE8res.","df.wise.ControlFeedback.minimum":"Veuillez saisir un nombre sup\xE9rieur ou \xE9gal \xE0 {minimum}.","df.wise.ControlFeedback.minimumDate":"Veuillez saisir une date \xE9gale ou post\xE9rieure au {minimum}.","df.wise.ControlFeedback.pattern":"Veuillez saisir les informations dans le bon format.","df.wise.ControlFeedback.patternDate":"Veuillez saisir une date au format correct.","df.wise.ControlFeedback.required":"Champ obligatoire.","df.wise.ControlFeedback.type":"Type incorrect","df.wise.DynamicParagraph.copied":"Copi\xE9 dans le presse-papier","df.wise.DynamicParagraph.copy":"Copier","df.wise.ErrorBoundary.errorAlert":"Une erreur s'est produite.","df.wise.ErrorBoundary.retry":"R\xE9essayer","df.wise.ExternalConfirmation.cancel":"Annuler","df.wise.ExternalConfirmation.description":"Veuillez confirmer que vous souhaitez ouvrir **{origin}** dans un nouvel onglet.","df.wise.ExternalConfirmation.open":"Ouvrir dans un nouvel onglet","df.wise.ExternalConfirmation.title":"Veuillez confirmer","df.wise.Help.ariaLabel":"Cliquez ici pour plus d'informations.","df.wise.MultiSelect.summary":"{first} et {count} de plus","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Nous sommes d\xE9sol\xE9s, ce fichier est trop volumineux. Veuillez t\xE9l\xE9charger un fichier plus petit.","df.wise.MultipleFileUploadSchema.maxItemsError":"Veuillez t\xE9l\xE9charger {maxItems} fichiers ou moins.","df.wise.MultipleFileUploadSchema.minItemsError":"Veuillez t\xE9l\xE9charger au moins {minItems} fichier(s).","df.wise.PersistAsyncSchema.genericError":"Une erreur s'est produite, veuillez r\xE9essayer.","df.wise.SearchLayout.loading":"Chargement..."};var rt={"df.wise.ArraySchema.addItem":"Ment\xE9s","df.wise.ArraySchema.addItemTitle":"Elem hozz\xE1ad\xE1sa","df.wise.ArraySchema.editItem":"Ment\xE9s","df.wise.ArraySchema.maxItemsError":"K\xE9r\xFCnk, {maxItems} vagy ann\xE1l kevesebb t\xE9telt adj meg.","df.wise.ArraySchema.minItemsError":"K\xE9r\xFCnk, legal\xE1bb {minItems} t\xE9telt adj meg.","df.wise.ArraySchema.removeItem":"Elt\xE1vol\xEDt\xE1s","df.wise.ControlFeedback.maxLength":"K\xE9r\xFCnk, legfeljebb {maxLength} karaktert adj meg.","df.wise.ControlFeedback.maximum":"K\xE9r\xFCnk, add meg ezt vagy egy enn\xE9l kisebb sz\xE1mot: {maximum}.","df.wise.ControlFeedback.maximumDate":"K\xE9r\xFCnk, adj meg egy d\xE1tumot, ami megegyezik {maximum} napj\xE1val, vagy egy enn\xE9l kor\xE1bbit.","df.wise.ControlFeedback.minLength":"K\xE9r\xFCnk, legal\xE1bb {minLength} karaktert adj meg.","df.wise.ControlFeedback.minimum":"K\xE9r\xFCnk add meg ezt vagy egy enn\xE9l nagyobb sz\xE1mot: {minimum}.","df.wise.ControlFeedback.minimumDate":"K\xE9r\xFCnk, adj meg egy d\xE1tumot, ami megegyezik {minimum} napj\xE1val, vagy egy enn\xE9l k\xE9s\u0151bbit.","df.wise.ControlFeedback.pattern":"Helytelen form\xE1tum","df.wise.ControlFeedback.patternDate":"K\xE9r\xFCnk, hogy a d\xE1tumot helyes form\xE1tumban add meg.","df.wise.ControlFeedback.required":"K\xE9r\xFCnk, t\xF6ltsd ki ezt a mez\u0151t.","df.wise.ControlFeedback.type":"Helytelen t\xEDpus","df.wise.DynamicParagraph.copied":"V\xE1g\xF3lapra m\xE1solva","df.wise.DynamicParagraph.copy":"M\xE1sol\xE1s","df.wise.ErrorBoundary.errorAlert":"Valami hiba t\xF6rt\xE9nt.","df.wise.ErrorBoundary.retry":"\xDAjra","df.wise.ExternalConfirmation.cancel":"M\xE9gsem","df.wise.ExternalConfirmation.description":"K\xE9r\xFCnk, er\u0151s\xEDtsd meg, hogy a(z) **{origin}** alkalmaz\xE1st egy \xFAj b\xF6ng\xE9sz\u0151lapon szeretn\xE9d megnyitni.","df.wise.ExternalConfirmation.open":"Megnyit\xE1s \xFAj lapon","df.wise.ExternalConfirmation.title":"Meger\u0151s\xEDt\xE9s","df.wise.Help.ariaLabel":"Kattints ide tov\xE1bbi inform\xE1ci\xF3\xE9rt.","df.wise.MultiSelect.summary":"{first} \xE9s tov\xE1bbi {count}","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Sajnos ez a f\xE1jl t\xFAl nagy. K\xE9r\xFCnk, t\xF6lts fel egy kisebb f\xE1jlt.","df.wise.MultipleFileUploadSchema.maxItemsError":"K\xE9r\xFCnk, hogy legfeljebb {maxItems} f\xE1jlt t\xF6lts fel.","df.wise.MultipleFileUploadSchema.minItemsError":"K\xE9r\xFCnk, hogy legal\xE1bb {minItems} f\xE1jlt t\xF6lts fel.","df.wise.PersistAsyncSchema.genericError":"Valami hiba t\xF6rt\xE9nt. K\xE9r\xFCnk, pr\xF3b\xE1ld \xFAjra.","df.wise.SearchLayout.loading":"Bet\xF6lt\xE9s..."};var tt={"df.wise.ArraySchema.addItem":"Simpan","df.wise.ArraySchema.addItemTitle":"Tambahkan Item","df.wise.ArraySchema.editItem":"Simpan","df.wise.ArraySchema.maxItemsError":"Harap tambahkan {maxItems} atau kurang.","df.wise.ArraySchema.minItemsError":"Harap tambahkan setidaknya {minItems}.","df.wise.ArraySchema.removeItem":"Hapus","df.wise.ControlFeedback.maxLength":"Harap masukkan {maxLength} karakter atau kurang.","df.wise.ControlFeedback.maximum":"Harap masukkan angka paling besar {maximum} atau kurang dari itu.","df.wise.ControlFeedback.maximumDate":"Harap masukkan tanggal pada atau sebelum {maximum}.","df.wise.ControlFeedback.minLength":"Harap masukkan setidaknya {minLength} karakter.","df.wise.ControlFeedback.minimum":"Harap masukkan angka paling kecil {minimum} atau lebih dari itu.","df.wise.ControlFeedback.minimumDate":"Harap masukkan tanggal pada atau setelah {minimum}.","df.wise.ControlFeedback.pattern":"Mohon masukkan ini dalam format yang benar.","df.wise.ControlFeedback.patternDate":"Harap masukkan tanggal dalam format yang benar.","df.wise.ControlFeedback.required":"Harap isi kolom ini.","df.wise.ControlFeedback.type":"Tipe salah","df.wise.DynamicParagraph.copied":"Disalin ke clipboard","df.wise.DynamicParagraph.copy":"Salin","df.wise.ErrorBoundary.errorAlert":"Terjadi kesalahan.","df.wise.ErrorBoundary.retry":"Coba lagi","df.wise.ExternalConfirmation.cancel":"Batalkan","df.wise.ExternalConfirmation.description":"Harap konfirmasikan bahwa Anda ingin membuka **{origin}** di tab browser baru.","df.wise.ExternalConfirmation.open":"Buka di tab baru","df.wise.ExternalConfirmation.title":"Harap konfirmasi","df.wise.Help.ariaLabel":"Klik di sini untuk info selengkapnya.","df.wise.MultiSelect.summary":"{first} dan {count} lagi","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Maaf, file Anda terlalu besar. Silakan unggah file yang lebih kecil.","df.wise.MultipleFileUploadSchema.maxItemsError":"Harap unggah {maxItems} file atau kurang.","df.wise.MultipleFileUploadSchema.minItemsError":"Harap unggah sedikitnya {minItems} file.","df.wise.PersistAsyncSchema.genericError":"Terjadi kesalahan, mohon coba lagi.","df.wise.SearchLayout.loading":"Memuat ..."};var nt={"df.wise.ArraySchema.addItem":"Salva","df.wise.ArraySchema.addItemTitle":"Aggiungi elemento","df.wise.ArraySchema.editItem":"Salva","df.wise.ArraySchema.maxItemsError":"Aggiungi al massimo {maxItems}.","df.wise.ArraySchema.minItemsError":"Aggiungi almeno {minItems}.","df.wise.ArraySchema.removeItem":"Rimuovi","df.wise.ControlFeedback.maxLength":"Inserisci un massimo di {maxLength} caratteri.","df.wise.ControlFeedback.maximum":"Inserisci un numero uguale o inferiore a {maximum}.","df.wise.ControlFeedback.maximumDate":"Inserisci una data corrispondente o precedente al {maximum}.","df.wise.ControlFeedback.minLength":"Inserisci almeno {minLength} caratteri.","df.wise.ControlFeedback.minimum":"Inserisci un numero uguale o superiore a {minimum}.","df.wise.ControlFeedback.minimumDate":"Inserisci una data corrispondente o successiva al {minimum}.","df.wise.ControlFeedback.pattern":"Inseriscilo in un formato corretto.","df.wise.ControlFeedback.patternDate":"Inserisci la data in un formato corretto.","df.wise.ControlFeedback.required":"Compila questo campo.","df.wise.ControlFeedback.type":"Tipo errato","df.wise.DynamicParagraph.copied":"Copiato negli appunti","df.wise.DynamicParagraph.copy":"Copia","df.wise.ErrorBoundary.errorAlert":"Qualcosa non ha funzionato.","df.wise.ErrorBoundary.retry":"Riprova","df.wise.ExternalConfirmation.cancel":"Annulla","df.wise.ExternalConfirmation.description":"Conferma di voler aprire **{origin}** in una nuova scheda del browser.","df.wise.ExternalConfirmation.open":"Apri in una nuova scheda","df.wise.ExternalConfirmation.title":"Conferma","df.wise.Help.ariaLabel":"Clicca qui per maggiori informazioni.","df.wise.MultiSelect.summary":"{first} e altri {count}","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Spiacenti, il file \xE8 troppo grande. Carica un file di dimensioni inferiori.","df.wise.MultipleFileUploadSchema.maxItemsError":"Carica al massimo {maxItems} file.","df.wise.MultipleFileUploadSchema.minItemsError":"Carica almeno {minItems} file.","df.wise.PersistAsyncSchema.genericError":"Qualcosa \xE8 andato storto. Riprova.","df.wise.SearchLayout.loading":"Caricamento..."};var it={"df.wise.ArraySchema.addItem":"\u4FDD\u5B58\u3059\u308B","df.wise.ArraySchema.addItemTitle":"\u30A2\u30A4\u30C6\u30E0\u3092\u8FFD\u52A0\u3059\u308B","df.wise.ArraySchema.editItem":"\u4FDD\u5B58\u3059\u308B","df.wise.ArraySchema.maxItemsError":"{maxItems}\u30A2\u30A4\u30C6\u30E0\u4EE5\u4E0B\u3092\u8FFD\u52A0\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ArraySchema.minItemsError":"{minItems}\u30A2\u30A4\u30C6\u30E0\u4EE5\u4E0A\u3092\u8FFD\u52A0\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ArraySchema.removeItem":"\u524A\u9664\u3059\u308B","df.wise.ControlFeedback.maxLength":"{maxLength}\u6587\u5B57\u4EE5\u4E0B\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.maximum":"{maximum}\u4EE5\u4E0B\u306E\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.maximumDate":"{maximum}\u307E\u305F\u306F\u305D\u308C\u4EE5\u524D\u306E\u65E5\u4ED8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.minLength":"{minLength}\u6587\u5B57\u4EE5\u4E0A\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.minimum":"{minimum}\u4EE5\u4E0A\u306E\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.minimumDate":"{minimum}\u307E\u305F\u306F\u305D\u308C\u4EE5\u964D\u306E\u65E5\u4ED8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.pattern":"\u6B63\u3057\u3044\u5F62\u5F0F\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.patternDate":"\u6B63\u3057\u3044\u5F62\u5F0F\u3067\u65E5\u4ED8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.required":"\u3053\u306E\u9805\u76EE\u306F\u5165\u529B\u5FC5\u9808\u3067\u3059\u3002","df.wise.ControlFeedback.type":"\u4E0D\u6B63\u306A\u30BF\u30A4\u30D7","df.wise.DynamicParagraph.copied":"\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9\u3078\u30B3\u30D4\u30FC\u3057\u307E\u3057\u305F","df.wise.DynamicParagraph.copy":"\u30B3\u30D4\u30FC\u3059\u308B","df.wise.ErrorBoundary.errorAlert":"\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002","df.wise.ErrorBoundary.retry":"\u3084\u308A\u76F4\u3059","df.wise.ExternalConfirmation.cancel":"\u30AD\u30E3\u30F3\u30BB\u30EB\u3059\u308B","df.wise.ExternalConfirmation.description":"\u65B0\u3057\u3044\u30D6\u30E9\u30A6\u30B6\u30BF\u30D6\u3067**{origin}**\u3092\u958B\u304F\u3053\u3068\u3092\u627F\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ExternalConfirmation.open":"\u65B0\u3057\u3044\u30BF\u30D6\u3067\u958B\u304F","df.wise.ExternalConfirmation.title":"\u627F\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044","df.wise.Help.ariaLabel":"\u8A73\u7D30\u306F\u3053\u3061\u3089\u3092\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.MultiSelect.summary":"{first}\u3068\u305D\u306E\u4ED6{count}","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\u5927\u5909\u7533\u3057\u8A33\u3054\u3056\u3044\u307E\u305B\u3093\u304C\u3001\u30D5\u30A1\u30A4\u30EB\u304C\u5927\u304D\u3059\u304E\u307E\u3059\u3002\u3053\u308C\u3088\u308A\u5C0F\u3055\u3044\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.MultipleFileUploadSchema.maxItemsError":"{maxItems}\u500B\u4EE5\u4E0B\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.MultipleFileUploadSchema.minItemsError":"{minItems}\u500B\u4EE5\u4E0A\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.PersistAsyncSchema.genericError":"\u554F\u984C\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002\u518D\u5EA6\u304A\u8A66\u3057\u304F\u3060\u3055\u3044\u3002","df.wise.SearchLayout.loading":"\u8AAD\u307F\u8FBC\u307F\u4E2D\u2026"};var at={"df.wise.ArraySchema.addItem":"Zapisz","df.wise.ArraySchema.addItemTitle":"Dodaj pozycj\u0119","df.wise.ArraySchema.editItem":"Zapisz","df.wise.ArraySchema.maxItemsError":"Prosimy doda\u0107 maksymalnie {maxItems}.","df.wise.ArraySchema.minItemsError":"Prosimy doda\u0107 co najmniej {minItems}.","df.wise.ArraySchema.removeItem":"Usu\u0144","df.wise.ControlFeedback.maxLength":"Prosimy wprowadzi\u0107 do {maxLength} znak\xF3w.","df.wise.ControlFeedback.maximum":"Wprowad\u017A liczb\u0119 r\xF3wn\u0105 lub mniejsz\u0105 ni\u017C {maximum}.","df.wise.ControlFeedback.maximumDate":"Wprowad\u017A dat\u0119 nie p\xF3\u017Aniejsz\u0105 ni\u017C {maximum}.","df.wise.ControlFeedback.minLength":"Prosz\u0119 wpisa\u0107 co najmniej {minLength} znak\xF3w.","df.wise.ControlFeedback.minimum":"Wprowad\u017A liczb\u0119 r\xF3wn\u0105 lub wi\u0119ksz\u0105 ni\u017C {minimum}.","df.wise.ControlFeedback.minimumDate":"Wprowad\u017A dat\u0119 nie wcze\u015Bniejsz\u0105 ni\u017C {minimum}.","df.wise.ControlFeedback.pattern":"Wprowad\u017A t\u0119 warto\u015B\u0107 w prawid\u0142owym formacie.","df.wise.ControlFeedback.patternDate":"Wprowad\u017A dat\u0119 w prawid\u0142owym formacie.","df.wise.ControlFeedback.required":"Prosz\u0119 wype\u0142ni\u0107 to pole.","df.wise.ControlFeedback.type":"Nieprawid\u0142owy typ","df.wise.DynamicParagraph.copied":"Skopiowano do schowka","df.wise.DynamicParagraph.copy":"Kopiuj","df.wise.ErrorBoundary.errorAlert":"Co\u015B posz\u0142o nie tak.","df.wise.ErrorBoundary.retry":"Spr\xF3buj ponownie","df.wise.ExternalConfirmation.cancel":"Anuluj","df.wise.ExternalConfirmation.description":"Prosimy potwierdzi\u0107, \u017Ce chcesz otworzy\u0107 **{origin}** w nowej zak\u0142adce przegl\u0105darki.","df.wise.ExternalConfirmation.open":"Otw\xF3rz w nowej zak\u0142adce","df.wise.ExternalConfirmation.title":"Potwierd\u017A","df.wise.Help.ariaLabel":"Kliknij tutaj, \u017Ceby uzyska\u0107 wi\u0119cej informacji.","df.wise.MultiSelect.summary":"{first} oraz {count} wi\u0119cej","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Przepraszamy, ten plik jest zbyt du\u017Cy. Prze\u015Blij mniejszy plik.","df.wise.MultipleFileUploadSchema.maxItemsError":"Prze\u015Blij do {maxItems} plik\xF3w.","df.wise.MultipleFileUploadSchema.minItemsError":"Prze\u015Blij co najmniej nast\u0119puj\u0105c\u0105 liczb\u0119 plik\xF3w: {minItems}.","df.wise.PersistAsyncSchema.genericError":"Wyst\u0105pi\u0142 b\u0142\u0105d, prosimy spr\xF3bowa\u0107 ponownie.","df.wise.SearchLayout.loading":"\u0141adowanie..."};var ot={"df.wise.ArraySchema.addItem":"Salvar","df.wise.ArraySchema.addItemTitle":"Adicionar item","df.wise.ArraySchema.editItem":"Salvar","df.wise.ArraySchema.maxItemsError":"Adicione {maxItems} ou menos.","df.wise.ArraySchema.minItemsError":"Adicione pelo menos {minItems}.","df.wise.ArraySchema.removeItem":"Remover","df.wise.ControlFeedback.maxLength":"Por favor, insira {maxLength} caracteres ou menos.","df.wise.ControlFeedback.maximum":"Por favor, insira um n\xFAmero que seja {maximum} ou menos.","df.wise.ControlFeedback.maximumDate":"Por favor, insira uma data que seja em ou antes de {maximum}.","df.wise.ControlFeedback.minLength":"Por favor, insira pelo menos {minLength} caracteres.","df.wise.ControlFeedback.minimum":"Por favor, insira um n\xFAmero que seja {minimum} ou mais.","df.wise.ControlFeedback.minimumDate":"Por favor, insira uma data que seja em ou ap\xF3s {minimum}.","df.wise.ControlFeedback.pattern":"Por favor, insira essa informa\xE7\xE3o no formato correto.","df.wise.ControlFeedback.patternDate":"Por favor, insira a data no formato correto.","df.wise.ControlFeedback.required":"Por favor, preencha o campo.","df.wise.ControlFeedback.type":"Tipo incorreto","df.wise.DynamicParagraph.copied":"Copiado","df.wise.DynamicParagraph.copy":"Copiar","df.wise.ErrorBoundary.errorAlert":"Algo deu errado.","df.wise.ErrorBoundary.retry":"Tentar novamente","df.wise.ExternalConfirmation.cancel":"Cancelar","df.wise.ExternalConfirmation.description":"Por favor, confirme que deseja abrir * *{origin}* * em uma nova aba do navegador.","df.wise.ExternalConfirmation.open":"Abrir em uma nova aba","df.wise.ExternalConfirmation.title":"Por favor, confirme","df.wise.Help.ariaLabel":"Clique aqui para mais informa\xE7\xF5es.","df.wise.MultiSelect.summary":"{first} e mais {count} ","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Este arquivo \xE9 muito grande. Por favor, envie um arquivo menor.","df.wise.MultipleFileUploadSchema.maxItemsError":"Por favor, envie {maxItems} ou menos arquivos.","df.wise.MultipleFileUploadSchema.minItemsError":"Por favor, envie pelo menos {minItems} arquivo(s).","df.wise.PersistAsyncSchema.genericError":"Ocorreu um erro. Por favor, tente novamente.","df.wise.SearchLayout.loading":"Carregando..."};var st={"df.wise.ArraySchema.addItem":"Salvare","df.wise.ArraySchema.addItemTitle":"Adaug\u0103 produs","df.wise.ArraySchema.editItem":"Salvare","df.wise.ArraySchema.maxItemsError":"Te rug\u0103m s\u0103 adaugi {maxItems} sau mai pu\u021Bine.","df.wise.ArraySchema.minItemsError":"Te rug\u0103m s\u0103 adaugi cel pu\u021Bin {minItems}.","df.wise.ArraySchema.removeItem":"Elimin\u0103","df.wise.ControlFeedback.maxLength":"Te rug\u0103m s\u0103 introduci {maxLength} sau mai pu\u021Bine caractere.","df.wise.ControlFeedback.maximum":"Te rug\u0103m s\u0103 introduci un num\u0103r egal cu {maximum} sau mai mic.","df.wise.ControlFeedback.maximumDate":"Te rug\u0103m s\u0103 introduci o dat\u0103 de \xEEnainte de sau egal\u0103 cu {maximum}.","df.wise.ControlFeedback.minLength":"Te rug\u0103m s\u0103 introduci cel pu\u021Bin {minLength} caractere.","df.wise.ControlFeedback.minimum":"Te rug\u0103m s\u0103 introduci un num\u0103r egal cu {minimum} sau mai mare.","df.wise.ControlFeedback.minimumDate":"Te rug\u0103m s\u0103 introduci o dat\u0103 de dup\u0103 sau egal\u0103 cu {minimum}.","df.wise.ControlFeedback.pattern":"Te rug\u0103m s\u0103 introduci acest lucru \xEEn formatul corect.","df.wise.ControlFeedback.patternDate":"Te rug\u0103m s\u0103 introduci o dat\u0103 \xEEn formatul corect.","df.wise.ControlFeedback.required":"Te rug\u0103m s\u0103 completezi acest spa\u021Biu.","df.wise.ControlFeedback.type":"Tip incorect","df.wise.DynamicParagraph.copied":"Copiat \xEEn clipboard","df.wise.DynamicParagraph.copy":"Copiaz\u0103","df.wise.ErrorBoundary.errorAlert":"Ceva nu a mers bine.","df.wise.ErrorBoundary.retry":"\xCEncearc\u0103 din nou","df.wise.ExternalConfirmation.cancel":"Anuleaz\u0103","df.wise.ExternalConfirmation.description":"Te rug\u0103m s\u0103 confirmi c\u0103 vrei s\u0103 deschizi **{origin}** \xEEntr-o nou\u0103 fil\u0103 a browserului.","df.wise.ExternalConfirmation.open":"Deschide \xEEntr-o fil\u0103 nou\u0103","df.wise.ExternalConfirmation.title":"Te rug\u0103m s\u0103 confirmi","df.wise.Help.ariaLabel":"D\u0103 click aici pentru mai multe informa\u021Bii.","df.wise.MultiSelect.summary":"{first} \u0219i \xEEnc\u0103 {count}","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Ne pare r\u0103u, acel fi\u0219ier este prea mare. Te rug\u0103m s\u0103 \xEEncarci un fi\u0219ier mai mic.","df.wise.MultipleFileUploadSchema.maxItemsError":"Te rug\u0103m s\u0103 \xEEncarci {maxItems} fi\u0219iere sau mai pu\u021Bine.","df.wise.MultipleFileUploadSchema.minItemsError":"Te rug\u0103m s\u0103 \xEEncarci cel pu\u021Bin {minItems} fi\u0219ier(e).","df.wise.PersistAsyncSchema.genericError":"Ceva nu a mers bine, te rug\u0103m s\u0103 \xEEncerci din nou.","df.wise.SearchLayout.loading":"Se \xEEncarc\u0103..."};var dt={"df.wise.ArraySchema.addItem":"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C","df.wise.ArraySchema.addItemTitle":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u0443\u043D\u043A\u0442","df.wise.ArraySchema.editItem":"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C","df.wise.ArraySchema.maxItemsError":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0434\u043E\u0431\u0430\u0432\u044C\u0442\u0435 {maxItems} \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.","df.wise.ArraySchema.minItemsError":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0434\u043E\u0431\u0430\u0432\u044C\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minItems}.","df.wise.ArraySchema.removeItem":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C","df.wise.ControlFeedback.maxLength":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 {maxLength} \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.","df.wise.ControlFeedback.maximum":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0447\u0438\u0441\u043B\u043E, \u0440\u0430\u0432\u043D\u043E\u0435 {maximum} \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.","df.wise.ControlFeedback.maximumDate":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443, \u0440\u0430\u0432\u043D\u0443\u044E {maximum} \u0438\u043B\u0438 \u0431\u043E\u043B\u0435\u0435 \u0440\u0430\u043D\u043D\u044E\u044E.","df.wise.ControlFeedback.minLength":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minLength} \u0441\u0438\u043C\u0432\u043E\u043B\u0430(-\u043E\u0432).","df.wise.ControlFeedback.minimum":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0447\u0438\u0441\u043B\u043E, \u0440\u0430\u0432\u043D\u043E\u0435 {minimum} \u0438\u043B\u0438 \u0431\u043E\u043B\u044C\u0448\u0435.","df.wise.ControlFeedback.minimumDate":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443, \u0440\u0430\u0432\u043D\u0443\u044E {minimum} \u0438\u043B\u0438 \u0431\u043E\u043B\u0435\u0435 \u043F\u043E\u0437\u0434\u043D\u044E\u044E.","df.wise.ControlFeedback.pattern":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u044D\u0442\u043E \u0432 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0435.","df.wise.ControlFeedback.patternDate":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443 \u0432 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0435.","df.wise.ControlFeedback.required":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u043F\u043E\u043B\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u043E\u0435 \u043F\u043E\u043B\u0435.","df.wise.ControlFeedback.type":"\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u0442\u0438\u043F","df.wise.DynamicParagraph.copied":"\u0421\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u0432 \u0431\u0443\u0444\u0435\u0440 \u043E\u0431\u043C\u0435\u043D\u0430","df.wise.DynamicParagraph.copy":"\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C","df.wise.ErrorBoundary.errorAlert":"\u0427\u0442\u043E-\u0442\u043E \u043F\u043E\u0448\u043B\u043E \u043D\u0435 \u0442\u0430\u043A.","df.wise.ErrorBoundary.retry":"\u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u044C \u043F\u043E\u043F\u044B\u0442\u043A\u0443","df.wise.ExternalConfirmation.cancel":"\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C","df.wise.ExternalConfirmation.description":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043E \u0432\u044B \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043A\u0440\u044B\u0442\u044C **{origin}** \u0432 \u043D\u043E\u0432\u043E\u0439 \u0432\u043A\u043B\u0430\u0434\u043A\u0435 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430.","df.wise.ExternalConfirmation.open":"\u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u043D\u043E\u0432\u043E\u0439 \u0432\u043A\u043B\u0430\u0434\u043A\u0435","df.wise.ExternalConfirmation.title":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435","df.wise.Help.ariaLabel":"\u041D\u0430\u0436\u043C\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044C \u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438.","df.wise.MultiSelect.summary":"{first} \u0438 \u0435\u0449\u0435 {count} \u0434\u0440\u0443\u0433\u0438\u0445","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\u0418\u0437\u0432\u0438\u043D\u0438\u0442\u0435, \u0444\u0430\u0439\u043B \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u0431\u043E\u043B\u044C\u0448\u043E\u0439. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0444\u0430\u0439\u043B \u043C\u0435\u043D\u044C\u0448\u0435\u0433\u043E \u0440\u0430\u0437\u043C\u0435\u0440\u0430.","df.wise.MultipleFileUploadSchema.maxItemsError":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043D\u0435 \u0431\u043E\u043B\u0435\u0435 {maxItems} \u0444\u0430\u0439\u043B\u043E\u0432.","df.wise.MultipleFileUploadSchema.minItemsError":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minItems} \u0444\u0430\u0439\u043B(-\u0430/\u043E\u0432).","df.wise.PersistAsyncSchema.genericError":"\u0427\u0442\u043E-\u0442\u043E \u043F\u043E\u0448\u043B\u043E \u043D\u0435 \u0442\u0430\u043A, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437.","df.wise.SearchLayout.loading":"\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430..."};var mt={"df.wise.ArraySchema.addItem":"\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01","df.wise.ArraySchema.addItemTitle":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23","df.wise.ArraySchema.editItem":"\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01","df.wise.ArraySchema.maxItemsError":"\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E1E\u0E34\u0E48\u0E21 {maxItems} \u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32","df.wise.ArraySchema.minItemsError":"\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 {minItems}","df.wise.ArraySchema.removeItem":"\u0E25\u0E1A","df.wise.ControlFeedback.maxLength":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19 {maxLength} \u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32","df.wise.ControlFeedback.maximum":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02 {maximum} \u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32","df.wise.ControlFeedback.maximumDate":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48\u0E15\u0E23\u0E07\u0E1E\u0E2D\u0E14\u0E35\u0E2B\u0E23\u0E37\u0E2D\u0E01\u0E48\u0E2D\u0E19 {maximum}","df.wise.ControlFeedback.minLength":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 {minLength} \u0E15\u0E31\u0E27","df.wise.ControlFeedback.minimum":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02 {minimum} \u0E2B\u0E23\u0E37\u0E2D\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32","df.wise.ControlFeedback.minimumDate":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48\u0E15\u0E23\u0E07\u0E1E\u0E2D\u0E14\u0E35\u0E2B\u0E23\u0E37\u0E2D\u0E2B\u0E25\u0E31\u0E07 {minimum}","df.wise.ControlFeedback.pattern":"\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","df.wise.ControlFeedback.patternDate":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","df.wise.ControlFeedback.required":"\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19\u0E0A\u0E48\u0E2D\u0E07\u0E19\u0E35\u0E49","df.wise.ControlFeedback.type":"\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","df.wise.DynamicParagraph.copied":"\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14","df.wise.DynamicParagraph.copy":"\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01","df.wise.ErrorBoundary.errorAlert":"\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E1A\u0E32\u0E07\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E02\u0E36\u0E49\u0E19","df.wise.ErrorBoundary.retry":"\u0E25\u0E2D\u0E07\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07","df.wise.ExternalConfirmation.cancel":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01","df.wise.ExternalConfirmation.description":"\u0E42\u0E1B\u0E23\u0E14\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14 **{origin}** \u0E40\u0E1B\u0E47\u0E19\u0E41\u0E17\u0E47\u0E1A\u0E43\u0E2B\u0E21\u0E48\u0E43\u0E19\u0E40\u0E1A\u0E23\u0E32\u0E27\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C","df.wise.ExternalConfirmation.open":"\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E19\u0E41\u0E17\u0E47\u0E1A\u0E43\u0E2B\u0E21\u0E48","df.wise.ExternalConfirmation.title":"\u0E42\u0E1B\u0E23\u0E14\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19","df.wise.Help.ariaLabel":"\u0E04\u0E25\u0E34\u0E01\u0E17\u0E35\u0E48\u0E19\u0E35\u0E48\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E14\u0E39\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21","df.wise.MultiSelect.summary":"{first} \u0E41\u0E25\u0E30\u0E2D\u0E35\u0E01 {count}","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\u0E02\u0E2D\u0E2D\u0E20\u0E31\u0E22 \u0E44\u0E1F\u0E25\u0E4C\u0E19\u0E31\u0E49\u0E19\u0E43\u0E2B\u0E0D\u0E48\u0E40\u0E01\u0E34\u0E19\u0E44\u0E1B \u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14\u0E44\u0E1F\u0E25\u0E4C\u0E17\u0E35\u0E48\u0E21\u0E35\u0E02\u0E19\u0E32\u0E14\u0E40\u0E25\u0E47\u0E01\u0E25\u0E07","df.wise.MultipleFileUploadSchema.maxItemsError":"\u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14 {maxItems} \u0E44\u0E1F\u0E25\u0E4C\u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32","df.wise.MultipleFileUploadSchema.minItemsError":"\u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 {minItems} \u0E44\u0E1F\u0E25\u0E4C","df.wise.PersistAsyncSchema.genericError":"\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E1A\u0E32\u0E07\u0E2D\u0E22\u0E48\u0E32\u0E07 \u0E42\u0E1B\u0E23\u0E14\u0E25\u0E2D\u0E07\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07","df.wise.SearchLayout.loading":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E42\u0E2B\u0E25\u0E14..."};var lt={"df.wise.ArraySchema.addItem":"Kaydet","df.wise.ArraySchema.addItemTitle":"\xD6ge ekle","df.wise.ArraySchema.editItem":"Kaydet","df.wise.ArraySchema.maxItemsError":"L\xFCtfen {maxItems} veya daha az ekleme yap\u0131n","df.wise.ArraySchema.minItemsError":"L\xFCtfen en az {minItems} ekleme yap\u0131n.","df.wise.ArraySchema.removeItem":"Kald\u0131r","df.wise.ControlFeedback.maxLength":"L\xFCtfen {maxLength} veya daha az karakter girin.","df.wise.ControlFeedback.maximum":"L\xFCtfen {maximum} veya daha d\xFC\u015F\xFCk bir say\u0131 girin.","df.wise.ControlFeedback.maximumDate":"L\xFCtfen {maximum} veya daha erken bir tarih girin.","df.wise.ControlFeedback.minLength":"En az {minLength} karakter girebilirsiniz.","df.wise.ControlFeedback.minimum":"L\xFCtfen {minimum} veya daha y\xFCksek bir say\u0131 girin.","df.wise.ControlFeedback.minimumDate":"L\xFCtfen {minimum} veya daha ge\xE7 bir tarih girin.","df.wise.ControlFeedback.pattern":"Yanl\u0131\u015F bi\xE7im","df.wise.ControlFeedback.patternDate":"L\xFCtfen tarihi do\u011Fru bi\xE7imde girin.","df.wise.ControlFeedback.required":"L\xFCtfen bu alan\u0131 doldurun.","df.wise.ControlFeedback.type":"Ge\xE7ersiz se\xE7im","df.wise.DynamicParagraph.copied":"Panoya kopyaland\u0131","df.wise.DynamicParagraph.copy":"Kopyala","df.wise.ErrorBoundary.errorAlert":"Bir sorun olu\u015Ftu.","df.wise.ErrorBoundary.retry":"Tekrar dene","df.wise.ExternalConfirmation.cancel":"\u0130ptal edin","df.wise.ExternalConfirmation.description":"L\xFCtfen yeni bir taray\u0131c\u0131 sekmesinde **{origin}** a\xE7mak istedi\u011Finizi onaylay\u0131n.","df.wise.ExternalConfirmation.open":"Yeni sekmede a\xE7","df.wise.ExternalConfirmation.title":"L\xFCtfen onaylay\u0131n","df.wise.Help.ariaLabel":"Ayr\u0131nt\u0131lar i\xE7in t\u0131klay\u0131n.","df.wise.MultiSelect.summary":"{first} ve {count} daha","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\xDCzg\xFCn\xFCz, bu dosya \xE7ok b\xFCy\xFCk. L\xFCtfen daha k\xFC\xE7\xFCk bir dosya y\xFCkleyin.","df.wise.MultipleFileUploadSchema.maxItemsError":"L\xFCtfen {maxItems} veya daha az dosya y\xFCkleyin.","df.wise.MultipleFileUploadSchema.minItemsError":"L\xFCtfen en az {minItems} dosya y\xFCkleyin.","df.wise.PersistAsyncSchema.genericError":"Bir \u015Feyler ters gitti, l\xFCtfen tekrar deneyin.","df.wise.SearchLayout.loading":"Y\xFCkleniyor..."};var hr={"df.wise.ArraySchema.addItem":"\u4FDD\u5B58","df.wise.ArraySchema.addItemTitle":"\u6DFB\u52A0\u9879\u76EE","df.wise.ArraySchema.editItem":"\u4FDD\u5B58","df.wise.ArraySchema.maxItemsError":"\u8BF7\u6DFB\u52A0\u4E0D\u8D85\u8FC7 {maxItems} \u9879\u3002","df.wise.ArraySchema.minItemsError":"\u8BF7\u81F3\u5C11\u6DFB\u52A0 {minItems} \u9879\u3002","df.wise.ArraySchema.removeItem":"\u79FB\u9664","df.wise.ControlFeedback.maxLength":"\u8BF7\u8F93\u5165\u4E0D\u8D85\u8FC7 {maxLength} \u4E2A\u5B57\u7B26\u3002","df.wise.ControlFeedback.maximum":"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5C0F\u4E8E\u6216\u7B49\u4E8E {maximum} \u7684\u6570\u5B57\u3002","df.wise.ControlFeedback.maximumDate":"\u8BF7\u8F93\u5165 {maximum} \u6216\u4E4B\u524D\u7684\u65E5\u671F","df.wise.ControlFeedback.minLength":"\u8BF7\u81F3\u5C11\u8F93\u5165 {minLength} \u4E2A\u5B57\u7B26","df.wise.ControlFeedback.minimum":"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5927\u4E8E\u6216\u7B49\u4E8E {minimum} \u7684\u6570\u5B57","df.wise.ControlFeedback.minimumDate":"\u8BF7\u8F93\u5165 {minimum} \u6216\u4E4B\u540E\u7684\u65E5\u671F","df.wise.ControlFeedback.pattern":"\u8BF7\u4EE5\u6B63\u786E\u7684\u683C\u5F0F\u8F93\u5165","df.wise.ControlFeedback.patternDate":"\u8BF7\u4EE5\u6B63\u786E\u7684\u683C\u5F0F\u8F93\u5165\u65E5\u671F","df.wise.ControlFeedback.required":"\u8BF7\u586B\u5199\u6B64\u5B57\u6BB5\u3002","df.wise.ControlFeedback.type":"\u7C7B\u578B\u9519\u8BEF","df.wise.DynamicParagraph.copied":"\u5DF2\u590D\u5236\u5230\u526A\u8D34\u677F","df.wise.DynamicParagraph.copy":"\u590D\u5236","df.wise.ErrorBoundary.errorAlert":"\u51FA\u9519\u4E86\u3002","df.wise.ErrorBoundary.retry":"\u91CD\u8BD5","df.wise.ExternalConfirmation.cancel":"\u53D6\u6D88","df.wise.ExternalConfirmation.description":"\u8BF7\u786E\u8BA4\u60A8\u662F\u5426\u8981\u5728\u65B0\u6807\u7B7E\u9875\u4E2D\u6253\u5F00**{origin}**\u3002","df.wise.ExternalConfirmation.open":"\u5728\u65B0\u6807\u7B7E\u9875\u4E2D\u6253\u5F00","df.wise.ExternalConfirmation.title":"\u8BF7\u786E\u8BA4","df.wise.Help.ariaLabel":"\u70B9\u51FB\u6B64\u5904\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002","df.wise.MultiSelect.summary":"{first} \u548C\u5176\u4ED6 {count} \u4E2A","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\u62B1\u6B49\uFF0C\u8BE5\u6587\u4EF6\u592A\u5927\u3002\u8BF7\u4E0A\u4F20\u4E00\u4E2A\u66F4\u5C0F\u7684\u6587\u4EF6\u3002","df.wise.MultipleFileUploadSchema.maxItemsError":"\u8BF7\u4E0A\u4F20\u4E0D\u8D85\u8FC7 {maxItems} \u4E2A\u6587\u4EF6\u3002","df.wise.MultipleFileUploadSchema.minItemsError":"\u8BF7\u4E0A\u4F20\u81F3\u5C11 {minItems} \u4E2A\u6587\u4EF6\u3002","df.wise.PersistAsyncSchema.genericError":"\u51FA\u9519\u4E86\uFF0C\u8BF7\u91CD\u8BD5\u3002","df.wise.SearchLayout.loading":"\u6B63\u5728\u52A0\u8F7D\u2026"};var ct={"df.wise.ArraySchema.addItem":"\u5132\u5B58","df.wise.ArraySchema.addItemTitle":"\u6DFB\u52A0\u9805\u76EE","df.wise.ArraySchema.editItem":"\u5132\u5B58","df.wise.ArraySchema.maxItemsError":"\u8ACB\u6DFB\u52A0\u4E0D\u8D85\u904E{maxItems}\u9805\u3002","df.wise.ArraySchema.minItemsError":"\u8ACB\u81F3\u5C11\u6DFB\u52A0{minItems}\u9805\u3002","df.wise.ArraySchema.removeItem":"\u79FB\u9664","df.wise.ControlFeedback.maxLength":"\u8ACB\u8F38\u5165\u6700\u591A{maxLength}\u500B\u5B57\u5143\u3002","df.wise.ControlFeedback.maximum":"\u8ACB\u8F38\u5165\u4E00\u500B\u5C0F\u65BC\u6216\u7B49\u65BC{maximum}\u7684\u6578\u5B57\u3002","df.wise.ControlFeedback.maximumDate":"\u8ACB\u8F38\u5165{maximum}\u6216\u4E4B\u524D\u7684\u65E5\u671F\u3002","df.wise.ControlFeedback.minLength":"\u8ACB\u8F38\u5165\u81F3\u5C11{minLength}\u500B\u5B57\u5143\u3002","df.wise.ControlFeedback.minimum":"\u8ACB\u8F38\u5165\u4E00\u500B\u5927\u65BC\u6216\u7B49\u65BC{minimum}\u7684\u6578\u5B57\u3002","df.wise.ControlFeedback.minimumDate":"\u8ACB\u8F38\u5165{minimum}\u6216\u4E4B\u5F8C\u7684\u65E5\u671F\u3002","df.wise.ControlFeedback.pattern":"\u8ACB\u4EE5\u6B63\u78BA\u683C\u5F0F\u8F38\u5165\u5185\u5BB9\u3002","df.wise.ControlFeedback.patternDate":"\u8ACB\u4EE5\u6B63\u78BA\u683C\u5F0F\u8F38\u5165\u65E5\u671F\u3002","df.wise.ControlFeedback.required":"\u8ACB\u586B\u5BEB\u6B64\u6B04\u4F4D\u3002","df.wise.ControlFeedback.type":"\u932F\u8AA4\u7684\u985E\u578B","df.wise.DynamicParagraph.copied":"\u8907\u88FD\u5230\u526A\u8CBC\u677F","df.wise.DynamicParagraph.copy":"\u8907\u88FD","df.wise.ErrorBoundary.errorAlert":"\u51FA\u4E86\u4E9B\u554F\u984C\u3002","df.wise.ErrorBoundary.retry":"\u91CD\u8A66","df.wise.ExternalConfirmation.cancel":"\u53D6\u6D88","df.wise.ExternalConfirmation.description":"\u8ACB\u78BA\u8A8D\u4F60\u662F\u5426\u8981\u5728\u700F\u89BD\u5668\u7684\u65B0\u5206\u9801\u6253\u958B**{origin}**\u3002","df.wise.ExternalConfirmation.open":"\u5728\u65B0\u5206\u9801\u4E2D\u958B\u555F","df.wise.ExternalConfirmation.title":"\u8ACB\u78BA\u8A8D","df.wise.Help.ariaLabel":"\u6309\u6B64\u67E5\u770B\u8A73\u60C5\u3002","df.wise.MultiSelect.summary":"{first}\u548C\u5176\u4ED6{count}\u9805","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\u62B1\u6B49\uFF0C\u8A72\u6A94\u6848\u592A\u5927\u3002\u8ACB\u4E0A\u8F09\u4E00\u500B\u8F03\u5C0F\u7684\u6A94\u6848\u3002","df.wise.MultipleFileUploadSchema.maxItemsError":"\u8ACB\u4E0D\u8981\u4E0A\u8F09\u8D85\u904E{maxItems}\u500B\u6A94\u6848\u3002","df.wise.MultipleFileUploadSchema.minItemsError":"\u8ACB\u4E0A\u8F09\u81F3\u5C11{minItems}\u500B\u6A94\u6848\u3002","df.wise.PersistAsyncSchema.genericError":"\u51FA\u73FE\u4E86\u554F\u984C\uFF0C\u8ACB\u518D\u8A66\u4E00\u6B21\u3002","df.wise.SearchLayout.loading":"\u8F09\u5165\u4E2D\u2026"};var pt={en:Qr,de:Jr,es:Xr,fr:et,hu:rt,id:tt,it:nt,ja:it,pl:at,pt:ot,ro:st,ru:dt,th:mt,tr:lt,zh:hr,"zh-CN":hr,"zh-HK":ct},na=Array.from(new Set([...Object.keys(br.translations),...Object.keys(pt)])),ia=na.reduce((e,r)=>w(s({},e),{[r]:s(s({},br.translations[r]),pt[r])}),{}),ut=ia;var q=require("react"),xi=require("react-intl"),ge=require("@wise/dynamic-flow-client");var Me=require("react"),gt=require("react/jsx-runtime"),ft=(0,Me.createContext)(void 0);function Ne({httpClient:e,children:r}){return(0,gt.jsx)(ft.Provider,{value:e,children:r})}var Ir=()=>{let e=(0,Me.useContext)(ft);return e!=null?e:fetch};var yt=require("@transferwise/components");var u=e=>{switch(e){case"xs":return"m-b-0";case"sm":return"m-b-1";case"md":return"m-b-2";case"lg":return"m-b-3";case"xl":return"m-b-5";default:return""}},aa=e=>{switch(e){case"end":return"text-xs-right";case"center":return"text-xs-center";case"start":default:return""}},Z=e=>`${aa(e.align)} ${u(e.margin)}`;var ht=require("react/jsx-runtime"),oa={canRenderType:"alert",render:({context:e,markdown:r,margin:t,callToAction:n})=>(0,ht.jsx)(yt.Alert,{type:e,className:u(t),message:r,action:sa(n)})},sa=e=>{if(!e)return;let{accessibilityDescription:r,title:t}=e,n={"aria-label":r,text:t};if(e.type==="link"){let{href:i}=e;return w(s({},n),{href:i,target:"_blank"})}if(e.type==="action"){let{onClick:i}=e;return w(s({},n),{onClick:i})}},wt=oa;var Rt=require("@transferwise/components");var Te=require("@transferwise/components"),St=require("react-intl");var bt=require("react-intl"),It=(0,bt.defineMessages)({helpAria:{id:"df.wise.Help.ariaLabel",defaultMessage:"Click here for more info.",description:"Aria label for help."}});var Sr=require("react/jsx-runtime");function da({help:e}){let r=(0,St.useIntl)();return(0,Sr.jsx)(Te.Info,{className:"m-l-1",content:(0,Sr.jsx)(Te.Markdown,{config:{link:{target:"_blank"}},children:e}),presentation:"POPOVER",size:"sm","aria-label":r.formatMessage(It.helpAria)})}var we=da;var Be=require("react/jsx-runtime");function ze({text:e,help:r}){return(0,Be.jsxs)("div",{children:[e,(0,Be.jsx)(we,{help:r})]})}var Rr=require("react/jsx-runtime");function ma({id:e,children:r,label:t,validation:n,description:i,help:a}){return(0,Rr.jsx)(Rt.Field,{id:e,label:t&&a?(0,Rr.jsx)(ze,{text:t,help:a}):t,description:i,message:n==null?void 0:n.message,sentiment:la(n),children:r})}var la=e=>{if(e)return e.status==="valid"?"positive":"negative"},y=ma;var Ct=require("@transferwise/components");var Cr=require("react/jsx-runtime"),ca={canRenderType:"input-boolean",render:e=>{let p=e,{id:r,control:t,label:n="",description:i,help:a,type:o,validationState:d,value:m}=p,c=F(p,["id","control","label","description","help","type","validationState","value"]),l=w(s({},c),{label:n,secondary:i,checked:m});return(0,Cr.jsx)(y,{id:r,label:"",description:"",validation:d,help:a,children:(0,Cr.jsx)(Ct.Checkbox,s({id:r},l))})}},xt=ca;var xr=j(Y());var kr=require("react/jsx-runtime"),pa={canRenderType:"box",render:({border:e,children:r,control:t,margin:n,width:i})=>{let a=i!=="xl",d=(0,kr.jsx)("div",{className:(0,xr.default)({"df-box-renderer-border":t==="bordered"||t==="bordered-web"||e,[`df-box-renderer-width-${i}`]:a,[u(n)]:!a}),children:r});return a?(0,kr.jsx)("div",{className:(0,xr.default)("df-box-renderer-fixed-width",u(n)),children:d}):d}},kt=pa;var Pt=require("@transferwise/components");var he=require("react"),Fr=(0,he.createContext)({loadingState:"idle",trackEvent:()=>{}}),Ft=Fr.Provider,He=()=>{let{loadingState:e}=(0,he.useContext)(Fr);return{loadingState:e,isLoading:e!=="idle"}},be=()=>{let{trackEvent:e}=(0,he.useContext)(Fr);return e};var vt=require("react/jsx-runtime"),ua={canRenderType:"button",render:fa};function fa({control:e,context:r,disabled:t,margin:n,title:i,size:a,onClick:o}){let d=u(n),m=ya(e),c=m==="tertiary"?void 0:ga(r),{isLoading:l}=He();return(0,vt.jsx)(Pt.Button,{block:!0,className:d,disabled:l||t,priority:m,size:wa(a),type:c,onClick:o,children:i})}var ga=e=>{switch(e){case"neutral":case"warning":return"accent";default:return e}},ya=e=>{switch(e){case"primary":case"tertiary":return e;default:return"secondary"}},wa=e=>{if(e)switch(e){case"xs":case"sm":return"sm";case"lg":case"xl":return"lg";case"md":default:return"md"}},Et=ua;var Lt=j(Y());var Ie=require("react/jsx-runtime"),ha={canRenderType:"columns",render:({bias:e,margin:r,startChildren:t,endChildren:n})=>(0,Ie.jsxs)("div",{className:(0,Lt.default)("df-columns-renderer-container",u(r),{"df-columns-renderer-bias-start":e==="start","df-columns-renderer-bias-end":e==="end"}),children:[(0,Ie.jsx)("div",{className:"df-columns-renderer-column",children:t}),(0,Ie.jsx)("div",{className:"df-columns-renderer-column",children:n})]})},At=ha;var Ve=require("@transferwise/components");var Ue=e=>typeof e=="number"&&!Number.isNaN(e);var ba=e=>e===null,Ia=e=>typeof e=="undefined",Dt=e=>ba(e)||Ia(e);var Pr=e=>/^\d+$/.test(e)&&!Number.isNaN(Number.parseFloat(e))?e:null,_e=e=>{if(!e)return null;let[r,t,n]=e.split("-").map(i=>Number.parseInt(i,10));return!Ue(r)||!Ue(t)||!Ue(n)?null:new Date(r,t-1,n)},Mt=e=>{let r=new Date(e),t=String(r.getMonth()+1),n=String(r.getDate()),i=r.getFullYear(),a=t.length<2?`0${t}`:t,o=n.length<2?`0${n}`:n;return[i,a,o].join("-")};var Er=require("react/jsx-runtime");function Sa({control:e,inputProps:r}){let{autoComplete:t,minimumDate:n,maximumDate:i,placeholder:a,disabled:o,onBlur:d,onChange:m,onFocus:c}=r;return e==="date-lookup"?(0,Er.jsx)(Ve.DateLookup,{value:_e(r.value),min:_e(n),max:_e(i),placeholder:a,disabled:o,onChange:l=>{m(l!==null?Mt(l):null)},onBlur:d,onFocus:c}):(0,Er.jsx)(Ve.DateInput,w(s({},r),{dayAutoComplete:Nt(t,"day"),yearAutoComplete:Nt(t,"year")}))}var Nt=(e,r)=>{if(e==="bday")return`${e}-${r}`},Tt=Sa;var vr=require("react/jsx-runtime"),Ra={canRenderType:"input-date",render:e=>{let f=e,{id:r,control:t,label:n,description:i,type:a,help:o,validationState:d,value:m}=f,c=F(f,["id","control","label","description","type","help","validationState","value"]),l=m!=null?m:"",p=w(s({},c),{value:l,id:r});return(0,vr.jsx)(y,{id:r,label:n,description:i,validation:d,help:o,children:(0,vr.jsx)(Tt,{control:t,inputProps:p})})}},zt=Ra;var ne=require("@transferwise/components");Ut();Lr();var cd=require("react"),pd=require("react/jsx-runtime");var Vt=require("react/jsx-runtime"),Mr=e=>e.startsWith("flag-");function _t({name:e}){if(!Mr(e))return null;let r=e.substring(5);return(0,Vt.jsx)(Dr,{code:r})}var Wt=j(require("@transferwise/icons")),$t=require("react/jsx-runtime"),Nr=e=>{let r=Kt(e);return Object.keys(Wt).includes(r)};function Gt({name:e}){if(!Nr(e))return null;let r=Kt(e),t=Wt[r];return(0,$t.jsx)(t,{size:24})}var Kt=e=>e.split("-").map(xa).join(""),xa=e=>`${e[0].toUpperCase()}${e.slice(1)}`;var Tr=require("react/jsx-runtime");function ka({name:e}){return Mr(e)?(0,Tr.jsx)(_t,{name:e}):Nr(e)?(0,Tr.jsx)(Gt,{name:e}):null}var O=ka;var te=require("@transferwise/components"),re=require("react/jsx-runtime");function H({icon:e,image:r}){if(!Dt(e)){if("name"in e)return(0,re.jsx)(te.Avatar,{type:te.AvatarType.ICON,children:(0,re.jsx)(O,{name:e.name})});if(e.text)return(0,re.jsx)(te.Avatar,{type:te.AvatarType.INITIALS,children:e.text})}if(r){let{accessibilityDescription:t,uri:n,url:i}=r;if(n&&!n.startsWith("urn:"))return(0,re.jsx)("img",{src:n,alt:t});if(i)return(0,re.jsx)("img",{src:i,alt:t})}return null}var Q=require("react/jsx-runtime"),Fa={canRenderType:"decision",render:Pa},qt=Fa;function Pa({margin:e,options:r,title:t}){let{isLoading:n}=He();return(0,Q.jsxs)("div",{className:u(e),children:[t&&(0,Q.jsx)(ne.Header,{as:"h2",title:t}),(0,Q.jsx)(ne.NavigationOptionsList,{children:r.map(({description:i,disabled:a,icon:o,image:d,title:m,onClick:c})=>(0,Q.jsx)(ne.NavigationOption,{title:m,content:i,disabled:n||a,media:(0,Q.jsx)(H,{icon:o,image:d}),showMediaCircle:!1,showMediaAtAllSizes:!0,onClick:c},JSON.stringify(m)))})]})}var Zt=require("react/jsx-runtime"),Ea={canRenderType:"divider",render:({margin:e})=>(0,Zt.jsx)("hr",{className:`m-t-0 ${u(e)}`})},jt=Ea;var Jt=require("react/jsx-runtime"),va={canRenderType:"form",render:({children:e,margin:r})=>(0,Jt.jsx)("div",{className:u(r),children:e})},Yt=va;var Qt=require("@transferwise/components"),Se=require("react/jsx-runtime"),La={canRenderType:"form-section",render:({title:e,description:r,children:t})=>(0,Se.jsxs)("fieldset",{children:[e&&(0,Se.jsx)(Qt.Header,{as:"h2",title:e}),r&&(0,Se.jsx)("p",{children:r}),t]})},Xt=La;var en=require("@transferwise/components");var N=require("react/jsx-runtime"),Aa={canRenderType:"heading",render:e=>(0,N.jsx)(Da,s({},e))};function Da(e){let{text:r,size:t,align:n,margin:i,control:a}=e,o=Z({align:n,margin:i});return a==="display"?(0,N.jsx)(Ma,{size:t,text:r,className:o}):(0,N.jsx)(Na,{size:t,text:r,className:o})}function Ma({size:e,text:r,className:t}){return(0,N.jsx)(en.Display,{type:Ta(e),className:t,children:r})}function Na({size:e,text:r,className:t}){switch(e){case"xs":return(0,N.jsx)("h5",{className:t,children:r});case"sm":return(0,N.jsx)("h4",{className:t,children:r});case"lg":return(0,N.jsx)("h2",{className:t,children:r});case"xl":return(0,N.jsx)("h1",{className:t,children:r});case"md":default:return(0,N.jsx)("h3",{className:t,children:r})}}var Ta=e=>{switch(e){case"xs":case"sm":return"display-small";case"xl":case"lg":return"display-large";case"md":default:return"display-medium"}},rn=Aa;var an=require("@transferwise/components");var Ke=require("react");function tn(e=""){return!["https://","http://","data:"].some(r=>e.startsWith(r)&&e.length>r.length)}var Ge=require("react/jsx-runtime"),za={canRenderType:"image",render:e=>(0,Ge.jsx)(Ba,s({},e))},on=za;function Ba({accessibilityDescription:e,margin:r,size:t,uri:n,url:i}){let[a,o]=(0,Ke.useState)(""),d=Ir();return(0,Ke.useEffect)(()=>{if(!n){nn(d,i).then(o);return}if(!n.startsWith("urn:")){nn(d,n).then(o);return}},[n,i,d]),(0,Ge.jsx)("div",{className:`df-image ${t||"md"}`,children:(0,Ge.jsx)(an.Image,{className:`img-responsive ${u(r)}`,alt:e!=null?e:"",src:a,stretch:!0,shrink:!0})})}var Oa=async e=>new Promise((r,t)=>{let n=new FileReader;n.addEventListener("loadend",()=>r(n.result)),n.addEventListener("error",t),n.readAsDataURL(e)}),nn=async(e,r)=>{var t;try{return tn(r)||r!=null&&r.startsWith(`${(t=window==null?void 0:window.location)==null?void 0:t.origin}/`)?await e(r,{method:"GET",headers:{"Content-Type":"image/image"},credentials:"same-origin"}).then(async n=>{if(n.ok)return n.blob();throw new Error("Image fetching failed")}).then(Oa).catch(()=>r):r}catch(n){return r}};var $e=require("@transferwise/components");var Re=require("react/jsx-runtime"),Ha=["positive","neutral"],Ua=["warning","negative"],_a={canRenderType:"instructions",render:({items:e,margin:r,title:t})=>{let n=e.filter(a=>Ha.includes(a.context)).map(({text:a})=>a),i=e.filter(a=>Ua.includes(a.context)).map(({text:a})=>a);return(0,Re.jsxs)("div",{className:u(r),children:[t?(0,Re.jsx)($e.Header,{title:t}):null,(0,Re.jsx)($e.InstructionsList,{dos:n,donts:i})]})}},sn=_a;var Ye=require("@transferwise/components");var ie=e=>{e.target instanceof HTMLElement&&e.target.blur()};var oe=require("@transferwise/components");var ae=require("react/jsx-runtime"),qe=24;function je({icon:e,image:r}){return r!=null&&r.url?(0,ae.jsx)("img",{src:r.url,alt:r.accessibilityDescription,width:`${qe}px`,height:`${qe}px`}):Va(e)?(0,ae.jsx)(oe.Avatar,{type:oe.AvatarType.ICON,size:qe,children:(0,ae.jsx)(O,{name:e.name})}):dn(e)?(0,ae.jsx)(O,{name:e.name}):e&&"text"in e?(0,ae.jsx)(oe.Avatar,{type:oe.AvatarType.ICON,size:qe,children:e.text}):null}var dn=e=>e?"name"in e:!1,Va=e=>dn(e)&&e.name.startsWith("flag-");var se=({icon:e,image:r})=>{let t=je({icon:e,image:r});return t?{content:t}:void 0};var Ze=require("react/jsx-runtime"),Wa={canRenderType:"input-integer",render:e=>{let f=e,{id:r,label:t,description:n,help:i,icon:a,image:o,type:d,validationState:m,value:c,onChange:l}=f,p=F(f,["id","label","description","help","icon","image","type","validationState","value","onChange"]);return(0,Ze.jsx)(y,{id:r,label:t,description:n,validation:m,help:i,children:(0,Ze.jsx)(Ye.InputGroup,{addonStart:se({icon:a,image:o}),children:(0,Ze.jsx)(Ye.Input,s({id:r,name:r,type:"number",step:"1",pattern:"\\d+",value:c!=null?c:"",onChange:({target:{value:S}})=>{let h=Number.parseInt(S,10);l(Number.isNaN(h)?null:h)},onWheel:ie},p))})})}},mn=Wa;var ln=require("@transferwise/components");var pn=require("react/jsx-runtime"),Ga={canRenderType:"loading-indicator",render:({margin:e,size:r})=>(0,pn.jsx)(ln.Loader,{size:r,classNames:{"tw-loader":`tw-loader m-x-auto ${u(e)}`},"data-testid":"loading-indicator"})},cn=Ga;var un=require("@transferwise/components");var zr=require("react/jsx-runtime"),Ka={canRenderType:"markdown",render:({content:e,align:r,margin:t})=>(0,zr.jsx)("div",{className:Z({align:r,margin:t}),children:(0,zr.jsx)(un.Markdown,{config:{link:{target:"_blank"}},children:e})})},fn=Ka;var Je=require("@transferwise/components"),gn=require("react");var de=require("react/jsx-runtime"),$a={canRenderType:"modal",render:e=>(0,de.jsx)(qa,s({},e))},yn=$a;function qa({content:e,margin:r,trigger:t}){let[n,i]=(0,gn.useState)(!1),{components:a,title:o}=e;return(0,de.jsxs)("div",{className:u(r),children:[(0,de.jsx)(Je.Button,{priority:"tertiary",block:!0,onClick:()=>i(!0),children:t.title}),(0,de.jsx)(Je.Modal,{scroll:"content",open:n,size:"lg",title:o,body:a,onClose:()=>i(!1)})]})}var Qe=require("@transferwise/components");var me=require("@transferwise/components");var Ce=require("react/jsx-runtime");function le({icon:e,image:r}){return r!=null&&r.url?(0,Ce.jsx)("img",{src:r.url,alt:r.accessibilityDescription||"",width:"64px"}):e&&"name"in e?(0,Ce.jsx)(me.Avatar,{type:me.AvatarType.ICON,children:(0,Ce.jsx)(O,{name:e.name})}):e&&"text"in e?(0,Ce.jsx)(me.Avatar,{type:me.AvatarType.INITIALS,children:e.text}):null}var bn=require("react-intl");var wn=require("react-intl"),hn=(0,wn.defineMessages)({summary:{id:"df.wise.MultiSelect.summary",defaultMessage:"{first} and {count} more",description:"A summary of the multiple items selected. Showing the title of the first selected item, and the number of other items that have been selected."}});var In=require("react");var ce=require("react/jsx-runtime"),ja={canRenderType:"input-multi-select",render:e=>(0,ce.jsx)(Za,s({},e))};function Za(e){let{formatMessage:r}=(0,bn.useIntl)(),[t,n]=(0,In.useState)(),{id:i,autoComplete:a,description:o,disabled:d,label:m,help:c,options:l,placeholder:p,selectedIndices:f,validationState:S,onSelect:h}=e,R=t!=null?t:f,C=()=>{if(R.length>0)return R.length>1?r(hn.summary,{first:l[R[0]].title,count:R.length-1}):l[R[0]].title},x=(g,E)=>{let L=g>=0?l[g]:null;if(L===null)return null;if(E)return g===R[0]?C():void 0;let Ae={title:L.title,description:L.description,icon:(0,ce.jsx)(le,{icon:L.icon,image:L.image})};return(0,ce.jsx)(Qe.SelectInputOptionContent,s({},Ae))},k={autoComplete:a};return(0,ce.jsx)(y,{id:i,label:m,help:c,description:o,validation:S,children:(0,ce.jsx)(Qe.SelectInput,s({id:i,items:l.map((g,E)=>{var L,Ae,$r;return{type:"option",value:E,filterMatchers:[...(L=g.keywords)!=null?L:[],(Ae=g.title)!=null?Ae:"",($r=g.description)!=null?$r:""],disabled:g.disabled}}),disabled:d,placeholder:p,value:R,renderValue:x,multiple:!0,onChange:g=>{n(g)},onClose:()=>{t&&(h(t),n(void 0))}},k))})}var Sn=ja;var kn=require("@transferwise/components");var Rn=require("@transferwise/components"),Cn=j(Y());var pe=require("react/jsx-runtime");function Ya({id:e,children:r,label:t,description:n,help:i,validation:a}){let o=t&&i?(0,pe.jsx)(ze,{text:t,help:i}):t,d=n?`${e}-description`:void 0;return(0,pe.jsxs)("div",{className:(0,Cn.default)("form-group d-block",{"has-error":(a==null?void 0:a.status)==="invalid"}),children:[(0,pe.jsx)("label",{htmlFor:e,className:"control-label",children:o}),r,(a==null?void 0:a.status)==="invalid"&&(0,pe.jsx)(Rn.InlineAlert,{type:"negative",id:d,children:a.message})]})}var Xe=Ya;var xe=e=>Array.isArray(e)&&e.length>=1?e.join(","):"*",er=e=>Math.floor(e/1024),xn=async(e,r)=>{let t=Qa(e),n=await Ja(e);return new File([n],r,{type:t})},Ja=async e=>(await fetch(e)).blob(),Qa=e=>{let t=/^data:(.+);/.exec(e);if(t&&t.length>1)return t[1]};var rr=()=>Math.random().toString(36).substring(2);var Br=require("react/jsx-runtime"),Xa={canRenderType:"input-upload-multi",render:e=>{let{id:r,accepts:t,help:n,label:i,description:a,disabled:o,maxSize:d,maxItems:m,uploadLabel:c,validationState:l,onUpload:p,onDelete:f}=e,S=async C=>{let x=C.get("file"),k=rr();return p(x,k).then(()=>({id:k}))},h=async C=>f(String(C)),R=a?`${r}-description`:void 0;return(0,Br.jsx)(Xe,{id:r,label:i,description:a,validation:l,help:n,children:(0,Br.jsx)(kn.UploadInput,{id:r,"aria-describedby":R,description:a,disabled:o,fileTypes:xe(t),maxFiles:m,multiple:!0,sizeLimit:d?er(d):void 0,uploadButtonTitle:c,onDeleteFile:h,onUploadFile:S})})}},Fn=Xa;var nr=require("@transferwise/components");var tr=require("react/jsx-runtime"),eo={canRenderType:"input-number",render:e=>{let f=e,{id:r,label:t,description:n,help:i,icon:a,image:o,type:d,validationState:m,value:c,onChange:l}=f,p=F(f,["id","label","description","help","icon","image","type","validationState","value","onChange"]);return(0,tr.jsx)(y,{id:r,label:t,description:n,validation:m,help:i,children:(0,tr.jsx)(nr.InputGroup,{addonStart:se({icon:a,image:o}),children:(0,tr.jsx)(nr.Input,s({id:r,name:r,type:"number",value:c!=null?c:"",onChange:({target:{value:S}})=>{let h=Number.parseFloat(S);l(Number.isNaN(h)?null:h)},onWheel:ie},p))})})}},Pn=eo;var Dn=require("react-intl");var En=require("@transferwise/components"),vn=require("react");function Ln(){let e=(0,vn.useContext)(En.SnackbarContext);return e?e.createSnackbar:()=>{}}var ir=require("@transferwise/components"),Mn=j(Y());var An=require("react-intl"),Or=(0,An.defineMessages)({copy:{id:"df.wise.DynamicParagraph.copy",defaultMessage:"Copy",description:"Copy to clipboard button label."},copied:{id:"df.wise.DynamicParagraph.copied",defaultMessage:"Copied to clipboard",description:"Appears in a snackbar when the copy operation succeeds."}});var U=require("react/jsx-runtime"),ro={canRenderType:"paragraph",render:e=>(0,U.jsx)(to,s({},e))};function to({align:e,control:r,margin:t,text:n}){let i=Z({align:e,margin:t});return r==="copyable"?(0,U.jsx)(io,{className:i,align:e,text:n}):(0,U.jsx)(no,{className:i,text:n})}function no({text:e,className:r}){return(0,U.jsx)("p",{className:`np-text-body-large ${r}`,children:e})}function io({text:e,align:r,className:t}){let{formatMessage:n}=(0,Dn.useIntl)(),i=Ln(),a=()=>{navigator.clipboard.writeText(e).then(()=>i({text:n(Or.copied)})).catch(()=>{})},o=Z({align:r,margin:"sm"});return(0,U.jsxs)("div",{className:t,children:[(0,U.jsx)(ir.Input,{type:"text",value:e,readOnly:!0,className:(0,Mn.default)("text-ellipsis",o)}),(0,U.jsx)(ir.Button,{block:!0,onClick:a,children:n(Or.copy)})]})}var Nn=ro;var D=require("@transferwise/components"),zn=require("react"),Bn=require("@transferwise/icons"),On=require("react-intl");var Tn=require("react-intl"),ke=(0,Tn.defineMessages)({addItemTitle:{id:"df.wise.ArraySchema.addItemTitle",defaultMessage:"Add Item",description:"Label on the button used to open a form to add an item"},addItem:{id:"df.wise.ArraySchema.addItem",defaultMessage:"Save",description:"Label on the add button used to submit a form that adds an item"},editItem:{id:"df.wise.ArraySchema.editItem",defaultMessage:"Save",description:"Label on the edit button used to submit a form that edits an item"},removeItem:{id:"df.wise.ArraySchema.removeItem",defaultMessage:"Remove",description:"Label on the remove button used to confirm deletion of an item"}});var Hn=j(Y());var b=require("react/jsx-runtime"),ao={canRenderType:"repeatable",render:e=>(0,b.jsx)(oo,s({},e))};function oo(e){let{addItemTitle:r,description:t,editableItem:n,editItemTitle:i,items:a,title:o,validationState:d,onEdit:m,onAdd:c,onSave:l,onRemove:p}=e,{formatMessage:f}=(0,On.useIntl)(),[S,h]=(0,zn.useState)(null),R=()=>{c(),h("add")},C=E=>{m(E),h("edit")},x=()=>{l()&&h(null)},k=()=>{p(),h(null)},g=()=>{h(null)};return(0,b.jsxs)(b.Fragment,{children:[o&&(0,b.jsx)(D.Header,{title:o}),t&&(0,b.jsx)("p",{children:t}),(0,b.jsxs)("div",{className:(0,Hn.default)("form-group",{"has-error":(d==null?void 0:d.status)==="invalid"}),children:[a==null?void 0:a.map((E,L)=>(0,b.jsx)(so,{item:E,onClick:()=>C(L)},E.id)),(0,b.jsx)(D.NavigationOption,{media:(0,b.jsx)(Bn.Plus,{}),title:r||f(ke.addItemTitle),showMediaAtAllSizes:!0,onClick:()=>R()}),(d==null?void 0:d.status)==="invalid"&&(0,b.jsx)(D.InlineAlert,{type:"negative",children:d.message})]}),(0,b.jsx)(D.Modal,{open:S!==null,title:(S==="add"?r:i)||f(ke.addItemTitle),body:(0,b.jsxs)(b.Fragment,{children:[(0,b.jsx)("div",{className:"m-b-2",children:n}),(0,b.jsxs)("div",{children:[(0,b.jsx)(D.Button,{priority:"primary",block:!0,className:"m-b-2",onClick:()=>x(),children:f(ke.addItem)}),(0,b.jsx)(D.Button,{priority:"secondary",type:"negative",block:!0,onClick:()=>k(),children:f(ke.removeItem)})]})]}),onClose:()=>g()})]})}function so({item:e,onClick:r}){return(0,b.jsx)(D.NavigationOption,{media:(0,b.jsx)(H,s({},e)),title:e.title,content:e.description,showMediaAtAllSizes:!0,onClick:r})}var Un=ao;var K=require("@transferwise/components");var Vn=require("react-intl");var _n=require("react-intl"),Hr=(0,_n.defineMessages)({genericErrorRetryHint:{id:"df.wise.PersistAsyncSchema.genericError",defaultMessage:"Something went wrong, please try again.",description:"Generic error message for persist async schema"},genericError:{id:"df.wise.ErrorBoundary.errorAlert",defaultMessage:"Something went wrong.",description:"Generic error message for when something has gone wrong."},retry:{id:"df.wise.ErrorBoundary.retry",defaultMessage:"Retry",description:"Usually this follows the generic error and contains a link."}});var Wn=require("@transferwise/components");var or=require("react/jsx-runtime");function ar({state:e}){let r=(0,Vn.useIntl)(),t={priority:"tertiary",size:"sm",style:{marginTop:"-2px",padding:"0",width:"auto",display:"inline"}};return(0,or.jsxs)("p",{className:"m-t-2",children:[r.formatMessage(Hr.genericError),"\xA0",(0,or.jsx)(Wn.Button,w(s({},t),{onClick:()=>{e.onRetry()},children:r.formatMessage(Hr.retry)}))]})}var Kn=require("react");var Gn=require("react-intl"),sr=(0,Gn.defineMessages)({loading:{id:"df.wise.SearchLayout.loading",defaultMessage:"Loading...",description:"A message shown to the user while their search is being processed, before results appear."}});var $n=require("react-intl");var P=require("react/jsx-runtime");function mo({id:e,isLoading:r,margin:t,onChange:n,query:i,state:a,title:o}){let[d,m]=(0,Kn.useState)(!1),c=be(),{formatMessage:l}=(0,$n.useIntl)();return(0,P.jsxs)("div",{className:u(t),children:[(0,P.jsx)(y,{id:e,description:"",validation:void 0,help:"",label:o,children:(0,P.jsx)(K.Input,{id:e,name:e,type:"text",value:i,className:"m-t-1",onChange:({currentTarget:{value:p}})=>{d||(m(!0),c("Search Started")),n(p)}})}),r?(0,P.jsx)(P.Fragment,{children:l(sr.loading)}):(0,P.jsx)(lo,{state:a,onChange:n})]})}function lo({state:e,onChange:r}){switch(e.type){case"error":return(0,P.jsx)(ar,{state:e});case"results":return(0,P.jsx)(po,{state:e,onChange:r});case"noResults":return(0,P.jsx)(co,{state:e});case"pending":default:return null}}function co({state:e}){return(0,P.jsx)(K.Markdown,{className:"m-t-2",config:{link:{target:"_blank"}},children:e.message})}function po({state:e}){let r=be();return(0,P.jsx)(K.NavigationOptionsList,{children:e.results.map(t=>{let{icon:n,image:i}=t;return(0,P.jsx)(K.NavigationOption,{title:t.title,content:t.description,media:H({icon:n,image:i}),showMediaCircle:!1,showMediaAtAllSizes:!0,onClick:()=>{r("Search Result Selected",s({type:t.type},t.type==="action"?{actionId:t.id}:{})),t.onClick()}},JSON.stringify(t))})})}var qn=mo;var dr=require("@transferwise/components"),jn=require("@transferwise/icons"),Zn=require("react");var Ur=require("react-intl");var T=require("react/jsx-runtime");function uo({id:e,isLoading:r,margin:t,onChange:n,state:i,title:a}){let[o,d]=(0,Zn.useState)(!1),m=be(),c=(0,Ur.useIntl)();return(0,T.jsx)("div",{className:u(t),children:(0,T.jsx)(y,{id:e,description:"",validation:void 0,help:"",label:a,children:(0,T.jsx)(dr.Typeahead,{id:"typeahead-input-id",intl:c,name:"typeahead-input-name",size:"md",maxHeight:100,footer:(0,T.jsx)(go,{state:i,isLoading:r}),multiple:!1,clearable:!1,addon:(0,T.jsx)(jn.Search,{size:24}),options:i.type==="results"?i.results.map(fo):[],minQueryLength:1,onChange:l=>{if(l.length>0){let[p]=l,{value:f}=p;f&&(m("Search Result Selected",s({type:f.type},f.type==="action"?{actionId:f.id}:{})),f.onClick())}},onInputChange:l=>{o||(d(!0),m("Search Started")),n(l)}})})})}function fo(e){return{label:e.title,secondary:e.description,value:e,clearQueryOnSelect:e.type==="action",keepFocusOnSelect:e.type==="search"}}function go({state:e,isLoading:r}){let{formatMessage:t}=(0,Ur.useIntl)();return e.type==="noResults"?(0,T.jsx)(dr.Markdown,{className:"m-t-2 m-x-2",config:{link:{target:"_blank"}},children:e.message}):e.type==="error"?(0,T.jsx)("div",{className:"m-t-2 m-x-2",children:(0,T.jsx)(ar,{state:e})}):e.type==="pending"||r?(0,T.jsx)("p",{className:"m-t-2 m-x-2",children:t(sr.loading)}):null}var Yn=uo;var _r=require("react/jsx-runtime"),yo={canRenderType:"search",render:e=>e.control==="inline"?(0,_r.jsx)(Yn,s({},e)):(0,_r.jsx)(qn,s({},e))},Jn=yo;var Qn=require("@transferwise/components");var _=require("react/jsx-runtime");function Xn(e){let{id:r,children:t,description:n,disabled:i,help:a,label:o,options:d,selectedIndex:m,validationState:c,onSelect:l}=e;return(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)(y,{id:r,label:o,help:a,description:n,validation:c,children:(0,_.jsx)("span",{children:(0,_.jsx)(Qn.RadioGroup,{name:r,radios:d.map((p,f)=>({label:p.title,value:f,secondary:p.description,disabled:p.disabled||i,avatar:(0,_.jsx)(le,{icon:p.icon,image:p.image})})),selectedValue:m!=null?m:void 0,onChange:l},`${r}-${m}`)})}),t]})}var ei=require("@transferwise/components"),ri=require("react");var V=require("react/jsx-runtime");function ti(e){let{id:r,children:t,description:n,disabled:i,help:a,label:o,options:d,selectedIndex:m,validationState:c,onSelect:l}=e;return(0,ri.useEffect)(()=>{wo(m,d.length)||l(0)},[m,l,d.length]),(0,V.jsxs)(V.Fragment,{children:[(0,V.jsx)(y,{id:r,label:o,help:a,description:n,validation:c,children:(0,V.jsx)(ei.Tabs,{name:r,selected:m!=null?m:0,tabs:d.map(p=>({title:p.title,content:(0,V.jsx)(V.Fragment,{}),disabled:p.disabled||i})),onTabSelect:l})}),t]})}var wo=(e,r)=>e!==null&&e>=0&&e<r;var mr=require("@transferwise/components");var W=require("react/jsx-runtime");function lr(e){let{id:r,autoComplete:t,children:n,description:i,disabled:a,help:o,label:d,options:m,placeholder:c,required:l,selectedIndex:p,validationState:f,onSelect:S}=e,h=m.map((x,k)=>{var g,E,L;return{type:"option",value:k,filterMatchers:[...(g=x.keywords)!=null?g:[],(E=x.title)!=null?E:"",(L=x.description)!=null?L:""],disabled:x.disabled}}),R=(x,k)=>{let g=x>=0?m[x]:null;if(g===null)return null;let E=k?{title:g.title,note:g.description,icon:je(g)}:{title:g.title,description:g.description,icon:(0,W.jsx)(le,{icon:g.icon,image:g.image})};return(0,W.jsx)(mr.SelectInputOptionContent,s({},E))},C={autoComplete:t};return(0,W.jsxs)(W.Fragment,{children:[(0,W.jsx)(y,{id:r,label:d,help:o,description:i,validation:f,children:(0,W.jsx)(mr.SelectInput,s({name:r,placeholder:c,items:h,disabled:a,value:p,renderValue:R,filterable:h.length>=8,onChange:S,onClear:l?void 0:()=>S(null)},C))}),n]})}var ni=require("react");var ii=require("@transferwise/components"),$=require("react/jsx-runtime");function ai(e){let{id:r,children:t,description:n,help:i,label:a,options:o,selectedIndex:d,validationState:m,onSelect:c}=e;return(0,ni.useEffect)(()=>{ho(d,o.length)||c(0)},[d,c,o.length]),(0,$.jsxs)($.Fragment,{children:[(0,$.jsx)(y,{id:r,label:a,help:i,description:n,validation:m,children:(0,$.jsx)(ii.SegmentedControl,{name:`${r}-segmented-control`,value:String(d),mode:"view",segments:o.map((l,p)=>({id:String(p),value:String(p),label:l.title,controls:`${r}-children`})),onChange:l=>c(Number(l))})}),(0,$.jsx)("div",{id:`${r}-children`,children:t})]})}var ho=(e,r)=>e!==null&&e>=0&&e<r;var X=require("react/jsx-runtime"),bo={canRenderType:"input-select",render:e=>{switch(e.control){case"radio":return(0,X.jsx)(Xn,s({},e));case"tab":return e.options.length>3?(0,X.jsx)(lr,s({},e)):(0,X.jsx)(ti,s({},e));case"segmented":return e.options.length>3?(0,X.jsx)(lr,s({},e)):(0,X.jsx)(ai,s({},e));case"select":default:return(0,X.jsx)(lr,s({},e))}}},oi=bo;var cr=require("@transferwise/components");var ue=require("react/jsx-runtime"),Io={canRenderType:"status-list",render:({margin:e,items:r,title:t})=>(0,ue.jsxs)("div",{className:u(e),children:[t?(0,ue.jsx)(cr.Header,{title:t,className:"m-b-2"}):null,r.map(({callToAction:n,description:i,icon:a,status:o,title:d})=>(0,ue.jsx)(cr.Summary,{title:d,description:i,icon:a&&"name"in a?(0,ue.jsx)(O,{name:a.name}):null,status:Ro(o),action:So(n)},`${d}/${i||""}`))]})},si=Io,So=e=>{if(!e)return;let{accessibilityDescription:r,href:t,title:n,onClick:i}=e;return t?{"aria-label":r,href:t,target:"_blank",text:n}:{"aria-label":r,text:n,onClick:i}},Ro=e=>e==="not-done"?"notDone":e;var mi=require("@transferwise/components");var M=require("@transferwise/components");var v=require("react/jsx-runtime");function Co({control:e,inputProps:r}){switch(e){case"password":return(0,v.jsx)(Vr,s({type:"password"},r));case"email":return(0,v.jsx)(Vr,s({type:"email"},r));case"textarea":return(0,v.jsx)(xo,s({},r));case"numeric":return(0,v.jsx)(ko,s({type:"number"},r));case"phone-number":return(0,v.jsx)(Fo,s({},r));default:return(0,v.jsx)(Vr,s({type:"text"},r))}}function Vr(i){var a=i,{id:e,displayFormat:r,onChange:t}=a,n=F(a,["id","displayFormat","onChange"]);if(typeof r=="string"){let o=s({id:e,name:e,className:"form-control"},n);return(0,v.jsx)(M.InputWithDisplayFormat,s({displayPattern:r,onChange:d=>t(d)},o))}return(0,v.jsx)(M.Input,s({id:e,name:e,onChange:o=>t(o.target.value)},n))}function xo(i){var a=i,{id:e,displayFormat:r,onChange:t}=a,n=F(a,["id","displayFormat","onChange"]);let o=s({id:e,name:e},n);return typeof r=="string"?(0,v.jsx)(M.TextareaWithDisplayFormat,s({displayPattern:r,onChange:d=>t(d)},o)):(0,v.jsx)(M.TextArea,s({onChange:d=>t(d.target.value)},o))}function ko(i){var a=i,{id:e,displayFormat:r,onChange:t}=a,n=F(a,["id","displayFormat","onChange"]);let o=s({id:e,name:e,onWheel:ie},n);return typeof r=="string"?(0,v.jsx)(M.InputWithDisplayFormat,s({displayPattern:r,onChange:d=>t(Pr(d))},o)):(0,v.jsx)(M.Input,s({onChange:({target:{value:d}})=>t(Pr(d))},o))}function Fo(t){var n=t,{value:e}=n,r=F(n,["value"]);return(0,v.jsx)(M.PhoneNumberInput,s({initialValue:e},r))}var di=Co;var pr=require("react/jsx-runtime"),Po={canRenderType:"input-text",render:e=>{let k=e,{id:r,control:t,label:n,description:i,help:a,error:o,icon:d,image:m,maxLength:c,minLength:l,type:p,validationState:f,value:S,onChange:h}=k,R=F(k,["id","control","label","description","help","error","icon","image","maxLength","minLength","type","validationState","value","onChange"]),C=S!=null?S:"",x=w(s({},R),{value:C,id:r,onChange:g=>{(C!=null?C:"")!==(g!=null?g:"")&&h(g)}});return(0,pr.jsx)(y,{id:r,label:n,description:i,validation:f,help:a,children:(0,pr.jsx)(mi.InputGroup,{addonStart:se({icon:d,image:m}),children:(0,pr.jsx)(di,{control:t,inputProps:x})})})}},li=Po;var ur=require("@transferwise/components");var Fe=require("react/jsx-runtime"),ci={canRenderType:"input-upload",render:e=>{let{id:r,accepts:t,label:n,description:i,disabled:a,maxSize:o,validationState:d,onUpload:m}=e,c=async p=>{let f=p.get("file");return m(f).then(()=>({id:rr()}))},l=async()=>{await m(null)};return(0,Fe.jsx)(Xe,{id:r,label:void 0,description:void 0,validation:d,children:(0,Fe.jsx)(ur.UploadInput,{id:r,description:i,disabled:a,fileTypes:xe(t),sizeLimit:o?er(o):void 0,uploadButtonTitle:n,onDeleteFile:l,onUploadFile:c})})}},pi={canRenderType:"input-upload",canRender:e=>e.control==="upload-large",render:e=>{let R=e,{id:r,accepts:t,control:n,label:i,description:a,disabled:o,help:d,maxSize:m,type:c,validationState:l,onUpload:p}=R,f=F(R,["id","accepts","control","label","description","disabled","help","maxSize","type","validationState","onUpload"]),S=w(s({},f),{id:r,name:r}),h=async(C,x)=>{try{let k=C?await xn(C,x):null;await p(k)}catch(k){throw await p(null),k}};return(0,Fe.jsx)(y,{id:r,label:i,description:a,validation:l,help:d,children:(0,Fe.jsx)(ur.Upload,w(s({},S),{usAccept:xe(t),usDisabled:o,onSuccess:h,onFailure:async()=>p(null),onCancel:async()=>p(null)}))})}};var fr=require("@transferwise/components");var A=require("react/jsx-runtime"),Eo={canRenderType:"review",render:({callToAction:e,control:r,fields:t,margin:n,title:i})=>{let a=vo(r);return(0,A.jsxs)("div",{className:u(n),children:[(i||e)&&(0,A.jsx)(fr.Header,{title:i!=null?i:"",action:Ao(e)}),(0,A.jsx)("div",{className:n,children:(0,A.jsx)(fr.DefinitionList,{layout:a,definitions:t.map(({label:o,value:d,help:m},c)=>({key:String(c),title:o,value:Lo(d,m,a)}))})})]})}},ui=Eo,vo=e=>{switch(e){case"horizontal":case"horizontal-end-aligned":return"HORIZONTAL_RIGHT_ALIGNED";case"horizontal-start-aligned":return"HORIZONTAL_LEFT_ALIGNED";case"vertical-two-column":return"VERTICAL_TWO_COLUMN";case"vertical":case"vertical-one-column":default:return"VERTICAL_ONE_COLUMN"}},Lo=(e,r,t)=>r?t==="HORIZONTAL_RIGHT_ALIGNED"?(0,A.jsxs)(A.Fragment,{children:[(0,A.jsx)(we,{help:r})," ",e]}):(0,A.jsxs)(A.Fragment,{children:[e," ",(0,A.jsx)(we,{help:r})]}):e,Ao=e=>{if(!e)return;let{accessibilityDescription:r,href:t,title:n,onClick:i}=e;return t?{"aria-label":r,href:t,target:"_blank",text:n}:{"aria-label":r,text:n,onClick:a=>{a.preventDefault(),i()}}};var Si=require("react");var gi=require("react-intl");var fi=require("react-intl"),Pe=(0,fi.defineMessages)({title:{id:"df.wise.ExternalConfirmation.title",defaultMessage:"Please confirm",description:"Heading for the confirmation screen."},description:{id:"df.wise.ExternalConfirmation.description",defaultMessage:"Please confirm you want to open **{origin}** in a new browser tab.",description:"Description for the confirmation screen."},open:{id:"df.wise.ExternalConfirmation.open",defaultMessage:"Open in new tab",description:"Button text confirming opening a new browser tab."},cancel:{id:"df.wise.ExternalConfirmation.cancel",defaultMessage:"Cancel",description:"Button text rejecting opening a new browser tab."}});var Ee=require("@transferwise/components"),z=require("react/jsx-runtime");function yi({external:e,onClose:r}){let{formatMessage:t}=(0,gi.useIntl)();return(0,z.jsx)("div",{className:"df-box-renderer-fixed-width",children:(0,z.jsxs)("div",{className:"df-box-renderer-width-lg",children:[(0,z.jsx)("h2",{className:"text-xs-center m-b-5",children:t(Pe.title)}),(0,z.jsx)(Ee.Markdown,{config:{link:{target:"_blank"}},className:"text-xs-center m-b-5",children:t(Pe.description,{origin:Do(e.url)})}),(0,z.jsx)("div",{className:"df-box-renderer-fixed-width",children:(0,z.jsxs)("div",{className:"df-box-renderer-width-lg",children:[(0,z.jsx)(Ee.Button,{block:!0,className:"m-b-2",priority:"primary",size:"md",onClick:()=>{window.open(e.url),r()},children:t(Pe.open)}),(0,z.jsx)(Ee.Button,{block:!0,className:"m-b-2",priority:"tertiary",size:"md",onClick:r,children:t(Pe.cancel)})]})})]})})}function Do(e){try{return new URL(e).origin}catch(r){return e}}var ve=require("react");function wi(e){let[r,t]=(0,ve.useState)(null),[n,i]=(0,ve.useState)(!1),a=()=>i(!0);return(0,ve.useEffect)(()=>{e&&(i(!1),t(window.open(e,"_blank")))},[e]),{requiresUserConfirmation:!!(e&&!r&&!n),dismissConfirmation:a}}var hi=require("@transferwise/components"),bi=require("@transferwise/icons"),ee=require("react/jsx-runtime");function Mo({title:e,onClick:r}){return(0,ee.jsx)("div",{className:"m-b-2",children:(0,ee.jsxs)("button",{type:"button",className:"df-back-btn",title:e,"aria-label":e,onClick:r,children:[(0,ee.jsx)("span",{className:"sr-only",children:e}),(0,ee.jsx)(hi.Avatar,{type:"icon",children:(0,ee.jsx)(bi.ArrowLeft,{size:"24"})})]})})}var Ii=Mo;var gr=require("@transferwise/components");var G=require("react/jsx-runtime"),Wr={canRenderType:"step",render:No};function No(e){let{back:r,description:t,error:n,external:i,loadingState:a,title:o,trackEvent:d,children:m}=e,c=(0,Si.useMemo)(()=>({loadingState:a,trackEvent:d}),[a,d]),{requiresUserConfirmation:l,dismissConfirmation:p}=wi(i==null?void 0:i.url);return i!=null&&i.url&&l?(0,G.jsx)(yi,{external:i,onClose:p}):(0,G.jsxs)(Ft,{value:c,children:[r?(0,G.jsx)(Ii,s({},r)):null,o||t?(0,G.jsxs)("div",{className:"m-b-4",children:[o?(0,G.jsx)(gr.Title,{as:"h1",type:"title-section",className:"text-xs-center m-b-2",children:o}):void 0,t?(0,G.jsx)("p",{className:"text-xs-center np-text-body-large",children:t}):void 0]}):void 0,n?(0,G.jsx)(gr.Alert,{type:"negative",className:"m-b-2",message:n}):void 0,m]})}var Le=require("@transferwise/components"),Ri=j(Y());var I=require("react/jsx-runtime"),To={canRenderType:"list",render:({callToAction:e,margin:r,items:t,title:n})=>(0,I.jsxs)("div",{className:u(r),children:[(n||e)&&(0,I.jsx)(Le.Header,{as:"h2",title:n!=null?n:"",action:Oo(e)}),t.map(i=>(0,I.jsx)(zo,s({},i),i.title))]})},zo=({title:e,subtitle:r,value:t,subvalue:n,icon:i,image:a})=>(0,I.jsx)("label",{className:(0,Ri.default)("np-option p-a-2",{"np-option__sm-media":!0,"np-option__container-aligned":!0}),children:(0,I.jsxs)("div",{className:"media",children:[i||a?(0,I.jsx)("div",{className:"media-left",children:(0,I.jsx)(Bo,{image:a,icon:i})}):null,(0,I.jsxs)("div",{className:"media-body",children:[(0,I.jsxs)("div",{className:"d-flex justify-content-between",children:[(0,I.jsx)("h4",{className:"np-text-body-large-bold text-primary np-option__title",children:e}),(0,I.jsx)("h4",{className:"np-text-body-large-bold text-primary np-option__title",children:t})]}),(0,I.jsxs)("div",{className:"d-flex justify-content-between",children:[(0,I.jsx)(Le.Body,{className:"d-block np-option__body",children:r}),(0,I.jsx)(Le.Body,{className:"d-block np-option__body",children:n})]})]})]})},e),Bo=({icon:e,image:r})=>{if(e)return(0,I.jsx)("div",{className:"circle circle-sm text-primary",children:(0,I.jsx)(H,{icon:e,image:r})});if(r)return(0,I.jsx)("div",{className:"np-option__no-media-circle",children:(0,I.jsx)(H,{icon:e,image:r})})},Oo=e=>{if(!e)return;let{accessibilityDescription:r,title:t,onClick:n}=e;return e.type==="action"?{"aria-label":r,text:t,onClick:i=>{i.preventDefault(),n()}}:{"aria-label":r,href:e.href,target:"_blank",text:t}},Ci=To;var Gr=()=>[wt,xt,kt,Et,At,zt,qt,jt,Yt,Xt,rn,on,sn,mn,pi,Ci,cn,fn,yn,Sn,Fn,Pn,Nn,Un,ui,Jn,oi,si,li,ci,Wr];var fe=require("react/jsx-runtime"),ki=Gr();function Kr(e){let{customFetch:r=globalThis.fetch}=e,t=w(s({},e),{httpClient:r});return(0,fe.jsx)(ge.DynamicFlow,s({},t))}function Fi(e){let{customFetch:r=globalThis.fetch,renderers:t,onLog:n,onLink:i=vi}=e,a=Ei(r),o=(0,q.useMemo)(()=>[...t!=null?t:[],...ki],[t]),d=Li(n),m=w(s({},e),{httpClient:a,renderers:o,onLink:i,onLog:d});return(0,fe.jsx)(Ne,{httpClient:a,children:(0,fe.jsx)(ge.DynamicFlowCoreRevamp,s({},m))})}var Pi=(0,q.forwardRef)(function(r,t){let{customFetch:n=globalThis.fetch,renderers:i,onLog:a,onLink:o=vi}=r,d=Ei(n),m=(0,q.useMemo)(()=>[...i!=null?i:[],...ki],[i]),c=Li(a),l=w(s({},r),{httpClient:d,renderers:m,onLink:o,onLog:c});return(0,fe.jsx)(Ne,{httpClient:d,children:(0,fe.jsx)(ge.DynamicFragmentCore,w(s({},l),{ref:t}))})}),Ei=e=>{let{locale:r}=(0,xi.useIntl)();return(0,q.useCallback)(async(t,n={})=>{let i=new Headers(n.headers);return i.set("accept-language",r),e(t,w(s({},n),{credentials:"include",headers:i}))},[e,r])},vi=e=>{var r;try{return!!((r=window==null?void 0:window.open)==null?void 0:r.call(window,e,"_blank"))}catch(t){return!1}},Li=e=>(0,q.useMemo)(()=>(r,t,n)=>{r!=="info"&&(e==null||e(r,t,n))},[e]);
|
|
1
|
+
"use strict";var Di=Object.create;var ye=Object.defineProperty,Mi=Object.defineProperties,Ni=Object.getOwnPropertyDescriptor,Ti=Object.getOwnPropertyDescriptors,zi=Object.getOwnPropertyNames,De=Object.getOwnPropertySymbols,Bi=Object.getPrototypeOf,yr=Object.prototype.hasOwnProperty,$r=Object.prototype.propertyIsEnumerable;var Kr=(e,r,t)=>r in e?ye(e,r,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[r]=t,s=(e,r)=>{for(var t in r||(r={}))yr.call(r,t)&&Kr(e,t,r[t]);if(De)for(var t of De(r))$r.call(r,t)&&Kr(e,t,r[t]);return e},w=(e,r)=>Mi(e,Ti(r));var k=(e,r)=>{var t={};for(var n in e)yr.call(e,n)&&r.indexOf(n)<0&&(t[n]=e[n]);if(e!=null&&De)for(var n of De(e))r.indexOf(n)<0&&$r.call(e,n)&&(t[n]=e[n]);return t};var qr=(e,r)=>()=>(e&&(r=e(e=0)),r);var Oi=(e,r)=>()=>(r||e((r={exports:{}}).exports,r),r.exports),Hi=(e,r)=>{for(var t in r)ye(e,t,{get:r[t],enumerable:!0})},jr=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let i of zi(r))!yr.call(e,i)&&i!==t&&ye(e,i,{get:()=>r[i],enumerable:!(n=Ni(r,i))||n.enumerable});return e};var j=(e,r,t)=>(t=e!=null?Di(Bi(e)):{},jr(r||!e||!e.__esModule?ye(t,"default",{value:e,enumerable:!0}):t,e)),Ui=e=>jr(ye({},"__esModule",{value:!0}),e);var Y=Oi((Bs,Oe)=>{"use strict";(function(){"use strict";var e={}.hasOwnProperty;function r(){for(var i="",a=0;a<arguments.length;a++){var o=arguments[a];o&&(i=n(i,t(o)))}return i}function t(i){if(typeof i=="string"||typeof i=="number")return i;if(typeof i!="object")return"";if(Array.isArray(i))return r.apply(null,i);if(i.toString!==Object.prototype.toString&&!i.toString.toString().includes("[native code]"))return i.toString();var a="";for(var o in i)e.call(i,o)&&i[o]&&(a=n(a,o));return a}function n(i,a){return a?i?i+" "+a:i+a:i}typeof Oe!="undefined"&&Oe.exports?(r.default=r,Oe.exports=r):typeof define=="function"&&typeof define.amd=="object"&&define.amd?define("classnames",[],function(){return r}):window.classNames=r})()});function Tt(e){var r,t,n="";if(typeof e=="string"||typeof e=="number")n+=e;else if(typeof e=="object")if(Array.isArray(e)){var i=e.length;for(r=0;r<i;r++)e[r]&&(t=Tt(e[r]))&&(n&&(n+=" "),n+=t)}else for(t in e)e[t]&&(n&&(n+=" "),n+=t);return n}function zt(){for(var e,r,t=0,n="",i=arguments.length;t<i;t++)(e=arguments[t])&&(r=Tt(e))&&(n&&(n+=" "),n+=r);return n}var Pr=qr(()=>{"use strict"});var J,We,Ra,Ar,B,id,ad,Lr,Bt,Ot=qr(()=>{"use strict";Pr();J=require("react"),We=require("react/jsx-runtime"),Ra="wise",Ar=({code:e,intrinsicSize:r=64,className:t=void 0,loading:n="lazy"})=>{let[i,a]=(0,J.useState)(null);(0,J.useEffect)(()=>{a(null)},[e]);let o=r>=150,d=i!=="unknown"?`${e.toLowerCase()}${i==null&&o?"-detailed":""}`:Ra;return(0,We.jsx)("img",{className:zt(`wds-flag wds-flag-${d}`,t),src:`https://wise.com/web-art/assets/flags/${d}.svg`,loading:n,alt:"",width:r,height:r,onError:()=>{a(m=>m==null&&o?"simple":"unknown")}})};(function(e){e.SMALL="small",e.MEDIUM="medium",e.LARGE="large"})(B||(B={}));id={[B.SMALL]:200,[B.MEDIUM]:300,[B.LARGE]:500},ad={[B.SMALL]:200,[B.MEDIUM]:300,[B.LARGE]:500};(function(e){e.WALLET="wallet",e.TWO_INVITE_LETTERS_OPENED="two-invite-letters-opened",e.TOOL="tool",e.TARGET_PLATFORM="target-platform",e.STOPWATCH_PLATFORM="stopwatch-platform",e.SPEECH_BUBBLE="speech-bubble",e.SKIP_AUTHENTICATION="skip-authentication",e.SHOPPING_BAG="shopping-bag",e.SATELLITE_PLATFORM="satellite-platform",e.SAND_TIMER="sand-timer",e.REMINDER_LETTER="reminder-letter",e.RECEIVE="receive",e.QUESTION_MARK="question-mark",e.PUZZLE_PIECES="puzzle-pieces",e.PLANE_2="plane-2",e.PLANE="plane",e.PIE_CHART="pie-chart",e.PHONES="phones",e.PERSONAL_CARD="personal-card",e.PERCENTAGE="percentage",e.PALM_TREE="palm-tree",e.ONE_INVITE_LETTER_OPENED="one-invite-letter-opened",e.MULTI_CURRENCY="multi-currency",e.MEGAPHONE="megaphone",e.MARBLE_CARD_BUSINESS="marble-card-business",e.MARBLE_CARD="marble-card",e.MARBLE="marble",e.MAP="map",e.MAGNIFYING_GLASS="magnifying-glass",e.LOCK_PLATFORM="lock-platform",e.LOCK="lock",e.LIGHT_BULB="light-bulb",e.KEY="key",e.JARS="jars",e.INVITE_LETTER="invite-letter",e.INTEREST="interest",e.INFINITE="infinite",e.ID_CARD="id-card",e.HOUSE="house",e.HEART_5="heart-5",e.HEART_4="heart-4",e.HEART_3="heart-3",e.HEART_2="heart-2",e.HEART="heart",e.GRAPH="graph",e.GLOBE="globe",e.GEAR="gear",e.FLOWER="flower",e.FLAG="flag",e.EXCLAMATION_MARK="exclamation-mark",e.EMAIL_SUCCESS="email-success",e.EMAIL="email",e.ELECTRIC_PLUG="electric-plug",e.ECO_CARD="eco-card",e.DOOR="door",e.DOCUMENTS="documents",e.DIGITAL_CARD_2="digital-card-2",e.DIGITAL_CARD="digital-card",e.COOKIE="cookie",e.CONVERT="convert",e.CONSTRUCTION_FENCE="construction-fence",e.CONFETTI="confetti",e.COIN_PILE_UP="coin-pile-up",e.COIN_PILE_DOWN="coin-pile-down",e.CLOSED_WINDOW="closed-window",e.CHECK_MARK="check-mark",e.CALENDAR="calendar",e.BUSINESS_CARD="business-card",e.BRIEFCASE="briefcase",e.BELL="bell"})(Lr||(Lr={}));(function(e){e[e.INIT=0]="INIT",e[e.FALLBACK=1]="FALLBACK",e[e.ASSET_3D=2]="ASSET_3D"})(Bt||(Bt={}))});var Ho={};Hi(Ho,{DynamicFlow:()=>Wr,DynamicFlowLegacy:()=>Wr,DynamicFlowRevamp:()=>Fi,DynamicFragment:()=>Ei,JsonSchemaForm:()=>gr.JsonSchemaForm,isValidSchema:()=>gr.isValidSchema,makeCustomFetch:()=>Ai.makeHttpClient,translations:()=>ct});module.exports=Ui(Ho);var Ai=require("@wise/dynamic-flow-client"),gr=require("@wise/dynamic-flow-client");var hr=require("@wise/dynamic-flow-client");var Zr={"df.wise.ArraySchema.addItem":"Speichern","df.wise.ArraySchema.addItemTitle":"Artikel hinzuf\xFCgen","df.wise.ArraySchema.editItem":"Speichern","df.wise.ArraySchema.maxItemsError":"Bitte f\xFCge {maxItems} oder weniger hinzu.","df.wise.ArraySchema.minItemsError":"Bitte f\xFCge mindestens {minItems} hinzu.","df.wise.ArraySchema.removeItem":"Entfernen","df.wise.ControlFeedback.maxLength":"Bitte gib nicht mehr als {maxLength} Zeichen ein.","df.wise.ControlFeedback.maximum":"Bitte gib eine Zahl ein, die {maximum} oder weniger betr\xE4gt.","df.wise.ControlFeedback.maximumDate":"Bitte gib ein Datum ein, das am oder vor dem {maximum} liegt.","df.wise.ControlFeedback.minLength":"Bitte gib mindestens {minLength} Zeichen ein.","df.wise.ControlFeedback.minimum":"Bitte gib eine Zahl ein, die {minimum} oder mehr betr\xE4gt.","df.wise.ControlFeedback.minimumDate":"Bitte gib ein Datum ein, das am oder nach dem {minimum} liegt.","df.wise.ControlFeedback.pattern":"Bitte gib die Angabe im richtigen Format ein.","df.wise.ControlFeedback.patternDate":"Bitte gib ein Datum im richtigen Format ein.","df.wise.ControlFeedback.required":"Bitte f\xFClle dieses Feld aus.","df.wise.ControlFeedback.type":"Falscher Typ","df.wise.DynamicParagraph.copied":"In Zwischenablage kopiert","df.wise.DynamicParagraph.copy":"Kopieren","df.wise.ErrorBoundary.errorAlert":"Da ist etwas schiefgegangen.","df.wise.ErrorBoundary.retry":"Erneut versuchen","df.wise.ExternalConfirmation.cancel":"Abbrechen","df.wise.ExternalConfirmation.description":"Bitte best\xE4tige, dass du **{origin}** in einem neuen Browser-Tab \xF6ffnen m\xF6chtest.","df.wise.ExternalConfirmation.open":"In neuem Tab \xF6ffnen","df.wise.ExternalConfirmation.title":"Bitte best\xE4tigen","df.wise.Help.ariaLabel":"Klicke hier f\xFCr mehr Informationen.","df.wise.MultiSelect.summary":"{first} und {count} weitere","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Diese Datei ist leider zu gro\xDF. Bitte lade eine kleinere Datei hoch.","df.wise.MultipleFileUploadSchema.maxItemsError":"Bitte lade {maxItems} oder weniger Dateien hoch.","df.wise.MultipleFileUploadSchema.minItemsError":"Bitte lade mindestens {minItems} Datei(en) hoch.","df.wise.PersistAsyncSchema.genericError":"Da ist etwas schiefgegangen. Versuche es bitte nochmal.","df.wise.SearchLayout.loading":"L\xE4dt..."};var Yr={"df.wise.ArraySchema.addItem":"Save","df.wise.ArraySchema.addItemTitle":"Add Item","df.wise.ArraySchema.editItem":"Save","df.wise.ArraySchema.maxItemsError":"Please add {maxItems} or fewer.","df.wise.ArraySchema.minItemsError":"Please add at least {minItems}.","df.wise.ArraySchema.removeItem":"Remove","df.wise.ControlFeedback.maxLength":"Please enter {maxLength} or fewer characters.","df.wise.ControlFeedback.maximum":"Please enter a number that's {maximum} or less.","df.wise.ControlFeedback.maximumDate":"Please enter a date that's on or before {maximum}.","df.wise.ControlFeedback.minLength":"Please enter at least {minLength} characters.","df.wise.ControlFeedback.minimum":"Please enter a number that's {minimum} or more.","df.wise.ControlFeedback.minimumDate":"Please enter a date that's on or after {minimum}.","df.wise.ControlFeedback.pattern":"Please enter this in the correct format.","df.wise.ControlFeedback.patternDate":"Please enter a date in the corrrect format.","df.wise.ControlFeedback.required":"Please fill out this field.","df.wise.ControlFeedback.type":"Incorrect type","df.wise.DynamicParagraph.copied":"Copied to clipboard","df.wise.DynamicParagraph.copy":"Copy","df.wise.ErrorBoundary.errorAlert":"Something went wrong.","df.wise.ErrorBoundary.retry":"Retry","df.wise.ExternalConfirmation.cancel":"Cancel","df.wise.ExternalConfirmation.description":"Please confirm you want to open **{origin}** in a new browser tab.","df.wise.ExternalConfirmation.open":"Open in new tab","df.wise.ExternalConfirmation.title":"Please confirm","df.wise.Help.ariaLabel":"Click here for more info.","df.wise.MultiSelect.summary":"{first} and {count} more","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Sorry, that file is too big. Please upload a smaller file.","df.wise.MultipleFileUploadSchema.maxItemsError":"Please upload {maxItems} or fewer files.","df.wise.MultipleFileUploadSchema.minItemsError":"Please upload at least {minItems} file(s).","df.wise.PersistAsyncSchema.genericError":"Something went wrong, please try again.","df.wise.SearchLayout.loading":"Loading..."};var Jr={"df.wise.ArraySchema.addItem":"Guardar","df.wise.ArraySchema.addItemTitle":"A\xF1adir elemento","df.wise.ArraySchema.editItem":"Guardar","df.wise.ArraySchema.maxItemsError":"A\xF1ade {maxItems} o menos.","df.wise.ArraySchema.minItemsError":"A\xF1ade al menos {minItems}.","df.wise.ArraySchema.removeItem":"Eliminar","df.wise.ControlFeedback.maxLength":"Introduce {maxLength} caracteres o menos.","df.wise.ControlFeedback.maximum":"Introduce una cifra igual o inferior a {maximum}.","df.wise.ControlFeedback.maximumDate":"Introduce una fecha que sea igual o anterior al {maximum}.","df.wise.ControlFeedback.minLength":"Introduce al menos {minLength} caracteres.","df.wise.ControlFeedback.minimum":"Introduce una cifra igual o inferior a {minimum}.","df.wise.ControlFeedback.minimumDate":"Introduce una fecha que sea igual o posterior al {minimum}.","df.wise.ControlFeedback.pattern":"Utiliza el formato correcto.","df.wise.ControlFeedback.patternDate":"Introduce la fecha en un formato correcto.","df.wise.ControlFeedback.required":"Completa este campo.","df.wise.ControlFeedback.type":"Tipo incorrecto","df.wise.DynamicParagraph.copied":"Copiado al portapapeles","df.wise.DynamicParagraph.copy":"Copiar","df.wise.ErrorBoundary.errorAlert":"Ha habido un error.","df.wise.ErrorBoundary.retry":"Reintentar","df.wise.ExternalConfirmation.cancel":"Cancelar","df.wise.ExternalConfirmation.description":"Confirma que quieres abrir **{origin}** en una nueva pesta\xF1a del navegador.","df.wise.ExternalConfirmation.open":"Abrir en nueva pesta\xF1a","df.wise.ExternalConfirmation.title":"Por favor, confirma","df.wise.Help.ariaLabel":"Haz clic aqu\xED para obtener m\xE1s informaci\xF3n.","df.wise.MultiSelect.summary":"{first} y {count} m\xE1s","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Lo sentimos, el archivo pesa demasiado. Sube uno m\xE1s peque\xF1o.","df.wise.MultipleFileUploadSchema.maxItemsError":"Sube {maxItems} o menos archivos.","df.wise.MultipleFileUploadSchema.minItemsError":"Sube al menos {minItems} archivo(s).","df.wise.PersistAsyncSchema.genericError":"Ha habido un error. Int\xE9ntalo de nuevo.","df.wise.SearchLayout.loading":"Cargando..."};var Qr={"df.wise.ArraySchema.addItem":"Enregistrer","df.wise.ArraySchema.addItemTitle":"Ajouter un \xE9l\xE9ment","df.wise.ArraySchema.editItem":"Enregistrer","df.wise.ArraySchema.maxItemsError":"Veuillez ajouter {maxItems} ou moins.","df.wise.ArraySchema.minItemsError":"Veuillez ajouter au moins {minItems}.","df.wise.ArraySchema.removeItem":"Supprimer","df.wise.ControlFeedback.maxLength":"Veuillez saisir {maxLength} caract\xE8res ou moins.","df.wise.ControlFeedback.maximum":"Veuillez saisir un nombre inf\xE9rieur ou \xE9gal \xE0 {maximum}.","df.wise.ControlFeedback.maximumDate":"Veuillez saisir une date \xE9gale ou ant\xE9rieure au {maximum}.","df.wise.ControlFeedback.minLength":"Veuillez saisir au moins {minLength} caract\xE8res.","df.wise.ControlFeedback.minimum":"Veuillez saisir un nombre sup\xE9rieur ou \xE9gal \xE0 {minimum}.","df.wise.ControlFeedback.minimumDate":"Veuillez saisir une date \xE9gale ou post\xE9rieure au {minimum}.","df.wise.ControlFeedback.pattern":"Veuillez saisir les informations dans le bon format.","df.wise.ControlFeedback.patternDate":"Veuillez saisir une date au format correct.","df.wise.ControlFeedback.required":"Champ obligatoire.","df.wise.ControlFeedback.type":"Type incorrect","df.wise.DynamicParagraph.copied":"Copi\xE9 dans le presse-papier","df.wise.DynamicParagraph.copy":"Copier","df.wise.ErrorBoundary.errorAlert":"Une erreur s'est produite.","df.wise.ErrorBoundary.retry":"R\xE9essayer","df.wise.ExternalConfirmation.cancel":"Annuler","df.wise.ExternalConfirmation.description":"Veuillez confirmer que vous souhaitez ouvrir **{origin}** dans un nouvel onglet.","df.wise.ExternalConfirmation.open":"Ouvrir dans un nouvel onglet","df.wise.ExternalConfirmation.title":"Veuillez confirmer","df.wise.Help.ariaLabel":"Cliquez ici pour plus d'informations.","df.wise.MultiSelect.summary":"{first} et {count} de plus","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Nous sommes d\xE9sol\xE9s, ce fichier est trop volumineux. Veuillez t\xE9l\xE9charger un fichier plus petit.","df.wise.MultipleFileUploadSchema.maxItemsError":"Veuillez t\xE9l\xE9charger {maxItems} fichiers ou moins.","df.wise.MultipleFileUploadSchema.minItemsError":"Veuillez t\xE9l\xE9charger au moins {minItems} fichier(s).","df.wise.PersistAsyncSchema.genericError":"Une erreur s'est produite, veuillez r\xE9essayer.","df.wise.SearchLayout.loading":"Chargement..."};var Xr={"df.wise.ArraySchema.addItem":"Ment\xE9s","df.wise.ArraySchema.addItemTitle":"Elem hozz\xE1ad\xE1sa","df.wise.ArraySchema.editItem":"Ment\xE9s","df.wise.ArraySchema.maxItemsError":"K\xE9r\xFCnk, {maxItems} vagy ann\xE1l kevesebb t\xE9telt adj meg.","df.wise.ArraySchema.minItemsError":"K\xE9r\xFCnk, legal\xE1bb {minItems} t\xE9telt adj meg.","df.wise.ArraySchema.removeItem":"Elt\xE1vol\xEDt\xE1s","df.wise.ControlFeedback.maxLength":"K\xE9r\xFCnk, legfeljebb {maxLength} karaktert adj meg.","df.wise.ControlFeedback.maximum":"K\xE9r\xFCnk, add meg ezt vagy egy enn\xE9l kisebb sz\xE1mot: {maximum}.","df.wise.ControlFeedback.maximumDate":"K\xE9r\xFCnk, adj meg egy d\xE1tumot, ami megegyezik {maximum} napj\xE1val, vagy egy enn\xE9l kor\xE1bbit.","df.wise.ControlFeedback.minLength":"K\xE9r\xFCnk, legal\xE1bb {minLength} karaktert adj meg.","df.wise.ControlFeedback.minimum":"K\xE9r\xFCnk add meg ezt vagy egy enn\xE9l nagyobb sz\xE1mot: {minimum}.","df.wise.ControlFeedback.minimumDate":"K\xE9r\xFCnk, adj meg egy d\xE1tumot, ami megegyezik {minimum} napj\xE1val, vagy egy enn\xE9l k\xE9s\u0151bbit.","df.wise.ControlFeedback.pattern":"Helytelen form\xE1tum","df.wise.ControlFeedback.patternDate":"K\xE9r\xFCnk, hogy a d\xE1tumot helyes form\xE1tumban add meg.","df.wise.ControlFeedback.required":"K\xE9r\xFCnk, t\xF6ltsd ki ezt a mez\u0151t.","df.wise.ControlFeedback.type":"Helytelen t\xEDpus","df.wise.DynamicParagraph.copied":"V\xE1g\xF3lapra m\xE1solva","df.wise.DynamicParagraph.copy":"M\xE1sol\xE1s","df.wise.ErrorBoundary.errorAlert":"Valami hiba t\xF6rt\xE9nt.","df.wise.ErrorBoundary.retry":"\xDAjra","df.wise.ExternalConfirmation.cancel":"M\xE9gsem","df.wise.ExternalConfirmation.description":"K\xE9r\xFCnk, er\u0151s\xEDtsd meg, hogy a(z) **{origin}** alkalmaz\xE1st egy \xFAj b\xF6ng\xE9sz\u0151lapon szeretn\xE9d megnyitni.","df.wise.ExternalConfirmation.open":"Megnyit\xE1s \xFAj lapon","df.wise.ExternalConfirmation.title":"Meger\u0151s\xEDt\xE9s","df.wise.Help.ariaLabel":"Kattints ide tov\xE1bbi inform\xE1ci\xF3\xE9rt.","df.wise.MultiSelect.summary":"{first} \xE9s tov\xE1bbi {count}","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Sajnos ez a f\xE1jl t\xFAl nagy. K\xE9r\xFCnk, t\xF6lts fel egy kisebb f\xE1jlt.","df.wise.MultipleFileUploadSchema.maxItemsError":"K\xE9r\xFCnk, hogy legfeljebb {maxItems} f\xE1jlt t\xF6lts fel.","df.wise.MultipleFileUploadSchema.minItemsError":"K\xE9r\xFCnk, hogy legal\xE1bb {minItems} f\xE1jlt t\xF6lts fel.","df.wise.PersistAsyncSchema.genericError":"Valami hiba t\xF6rt\xE9nt. K\xE9r\xFCnk, pr\xF3b\xE1ld \xFAjra.","df.wise.SearchLayout.loading":"Bet\xF6lt\xE9s..."};var et={"df.wise.ArraySchema.addItem":"Simpan","df.wise.ArraySchema.addItemTitle":"Tambahkan Item","df.wise.ArraySchema.editItem":"Simpan","df.wise.ArraySchema.maxItemsError":"Harap tambahkan {maxItems} atau kurang.","df.wise.ArraySchema.minItemsError":"Harap tambahkan setidaknya {minItems}.","df.wise.ArraySchema.removeItem":"Hapus","df.wise.ControlFeedback.maxLength":"Harap masukkan {maxLength} karakter atau kurang.","df.wise.ControlFeedback.maximum":"Harap masukkan angka paling besar {maximum} atau kurang dari itu.","df.wise.ControlFeedback.maximumDate":"Harap masukkan tanggal pada atau sebelum {maximum}.","df.wise.ControlFeedback.minLength":"Harap masukkan setidaknya {minLength} karakter.","df.wise.ControlFeedback.minimum":"Harap masukkan angka paling kecil {minimum} atau lebih dari itu.","df.wise.ControlFeedback.minimumDate":"Harap masukkan tanggal pada atau setelah {minimum}.","df.wise.ControlFeedback.pattern":"Mohon masukkan ini dalam format yang benar.","df.wise.ControlFeedback.patternDate":"Harap masukkan tanggal dalam format yang benar.","df.wise.ControlFeedback.required":"Harap isi kolom ini.","df.wise.ControlFeedback.type":"Tipe salah","df.wise.DynamicParagraph.copied":"Disalin ke clipboard","df.wise.DynamicParagraph.copy":"Salin","df.wise.ErrorBoundary.errorAlert":"Terjadi kesalahan.","df.wise.ErrorBoundary.retry":"Coba lagi","df.wise.ExternalConfirmation.cancel":"Batalkan","df.wise.ExternalConfirmation.description":"Harap konfirmasikan bahwa Anda ingin membuka **{origin}** di tab browser baru.","df.wise.ExternalConfirmation.open":"Buka di tab baru","df.wise.ExternalConfirmation.title":"Harap konfirmasi","df.wise.Help.ariaLabel":"Klik di sini untuk info selengkapnya.","df.wise.MultiSelect.summary":"{first} dan {count} lagi","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Maaf, file Anda terlalu besar. Silakan unggah file yang lebih kecil.","df.wise.MultipleFileUploadSchema.maxItemsError":"Harap unggah {maxItems} file atau kurang.","df.wise.MultipleFileUploadSchema.minItemsError":"Harap unggah sedikitnya {minItems} file.","df.wise.PersistAsyncSchema.genericError":"Terjadi kesalahan, mohon coba lagi.","df.wise.SearchLayout.loading":"Memuat ..."};var rt={"df.wise.ArraySchema.addItem":"Salva","df.wise.ArraySchema.addItemTitle":"Aggiungi elemento","df.wise.ArraySchema.editItem":"Salva","df.wise.ArraySchema.maxItemsError":"Aggiungi al massimo {maxItems}.","df.wise.ArraySchema.minItemsError":"Aggiungi almeno {minItems}.","df.wise.ArraySchema.removeItem":"Rimuovi","df.wise.ControlFeedback.maxLength":"Inserisci un massimo di {maxLength} caratteri.","df.wise.ControlFeedback.maximum":"Inserisci un numero uguale o inferiore a {maximum}.","df.wise.ControlFeedback.maximumDate":"Inserisci una data corrispondente o precedente al {maximum}.","df.wise.ControlFeedback.minLength":"Inserisci almeno {minLength} caratteri.","df.wise.ControlFeedback.minimum":"Inserisci un numero uguale o superiore a {minimum}.","df.wise.ControlFeedback.minimumDate":"Inserisci una data corrispondente o successiva al {minimum}.","df.wise.ControlFeedback.pattern":"Inseriscilo in un formato corretto.","df.wise.ControlFeedback.patternDate":"Inserisci la data in un formato corretto.","df.wise.ControlFeedback.required":"Compila questo campo.","df.wise.ControlFeedback.type":"Tipo errato","df.wise.DynamicParagraph.copied":"Copiato negli appunti","df.wise.DynamicParagraph.copy":"Copia","df.wise.ErrorBoundary.errorAlert":"Qualcosa non ha funzionato.","df.wise.ErrorBoundary.retry":"Riprova","df.wise.ExternalConfirmation.cancel":"Annulla","df.wise.ExternalConfirmation.description":"Conferma di voler aprire **{origin}** in una nuova scheda del browser.","df.wise.ExternalConfirmation.open":"Apri in una nuova scheda","df.wise.ExternalConfirmation.title":"Conferma","df.wise.Help.ariaLabel":"Clicca qui per maggiori informazioni.","df.wise.MultiSelect.summary":"{first} e altri {count}","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Spiacenti, il file \xE8 troppo grande. Carica un file di dimensioni inferiori.","df.wise.MultipleFileUploadSchema.maxItemsError":"Carica al massimo {maxItems} file.","df.wise.MultipleFileUploadSchema.minItemsError":"Carica almeno {minItems} file.","df.wise.PersistAsyncSchema.genericError":"Qualcosa \xE8 andato storto. Riprova.","df.wise.SearchLayout.loading":"Caricamento..."};var tt={"df.wise.ArraySchema.addItem":"\u4FDD\u5B58\u3059\u308B","df.wise.ArraySchema.addItemTitle":"\u30A2\u30A4\u30C6\u30E0\u3092\u8FFD\u52A0\u3059\u308B","df.wise.ArraySchema.editItem":"\u4FDD\u5B58\u3059\u308B","df.wise.ArraySchema.maxItemsError":"{maxItems}\u30A2\u30A4\u30C6\u30E0\u4EE5\u4E0B\u3092\u8FFD\u52A0\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ArraySchema.minItemsError":"{minItems}\u30A2\u30A4\u30C6\u30E0\u4EE5\u4E0A\u3092\u8FFD\u52A0\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ArraySchema.removeItem":"\u524A\u9664\u3059\u308B","df.wise.ControlFeedback.maxLength":"{maxLength}\u6587\u5B57\u4EE5\u4E0B\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.maximum":"{maximum}\u4EE5\u4E0B\u306E\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.maximumDate":"{maximum}\u307E\u305F\u306F\u305D\u308C\u4EE5\u524D\u306E\u65E5\u4ED8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.minLength":"{minLength}\u6587\u5B57\u4EE5\u4E0A\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.minimum":"{minimum}\u4EE5\u4E0A\u306E\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.minimumDate":"{minimum}\u307E\u305F\u306F\u305D\u308C\u4EE5\u964D\u306E\u65E5\u4ED8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.pattern":"\u6B63\u3057\u3044\u5F62\u5F0F\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.patternDate":"\u6B63\u3057\u3044\u5F62\u5F0F\u3067\u65E5\u4ED8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ControlFeedback.required":"\u3053\u306E\u9805\u76EE\u306F\u5165\u529B\u5FC5\u9808\u3067\u3059\u3002","df.wise.ControlFeedback.type":"\u4E0D\u6B63\u306A\u30BF\u30A4\u30D7","df.wise.DynamicParagraph.copied":"\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9\u3078\u30B3\u30D4\u30FC\u3057\u307E\u3057\u305F","df.wise.DynamicParagraph.copy":"\u30B3\u30D4\u30FC\u3059\u308B","df.wise.ErrorBoundary.errorAlert":"\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002","df.wise.ErrorBoundary.retry":"\u3084\u308A\u76F4\u3059","df.wise.ExternalConfirmation.cancel":"\u30AD\u30E3\u30F3\u30BB\u30EB\u3059\u308B","df.wise.ExternalConfirmation.description":"\u65B0\u3057\u3044\u30D6\u30E9\u30A6\u30B6\u30BF\u30D6\u3067**{origin}**\u3092\u958B\u304F\u3053\u3068\u3092\u627F\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.ExternalConfirmation.open":"\u65B0\u3057\u3044\u30BF\u30D6\u3067\u958B\u304F","df.wise.ExternalConfirmation.title":"\u627F\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044","df.wise.Help.ariaLabel":"\u8A73\u7D30\u306F\u3053\u3061\u3089\u3092\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.MultiSelect.summary":"{first}\u3068\u305D\u306E\u4ED6{count}","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\u5927\u5909\u7533\u3057\u8A33\u3054\u3056\u3044\u307E\u305B\u3093\u304C\u3001\u30D5\u30A1\u30A4\u30EB\u304C\u5927\u304D\u3059\u304E\u307E\u3059\u3002\u3053\u308C\u3088\u308A\u5C0F\u3055\u3044\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.MultipleFileUploadSchema.maxItemsError":"{maxItems}\u500B\u4EE5\u4E0B\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.MultipleFileUploadSchema.minItemsError":"{minItems}\u500B\u4EE5\u4E0A\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002","df.wise.PersistAsyncSchema.genericError":"\u554F\u984C\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002\u518D\u5EA6\u304A\u8A66\u3057\u304F\u3060\u3055\u3044\u3002","df.wise.SearchLayout.loading":"\u8AAD\u307F\u8FBC\u307F\u4E2D\u2026"};var nt={"df.wise.ArraySchema.addItem":"Zapisz","df.wise.ArraySchema.addItemTitle":"Dodaj pozycj\u0119","df.wise.ArraySchema.editItem":"Zapisz","df.wise.ArraySchema.maxItemsError":"Prosimy doda\u0107 maksymalnie {maxItems}.","df.wise.ArraySchema.minItemsError":"Prosimy doda\u0107 co najmniej {minItems}.","df.wise.ArraySchema.removeItem":"Usu\u0144","df.wise.ControlFeedback.maxLength":"Prosimy wprowadzi\u0107 do {maxLength} znak\xF3w.","df.wise.ControlFeedback.maximum":"Wprowad\u017A liczb\u0119 r\xF3wn\u0105 lub mniejsz\u0105 ni\u017C {maximum}.","df.wise.ControlFeedback.maximumDate":"Wprowad\u017A dat\u0119 nie p\xF3\u017Aniejsz\u0105 ni\u017C {maximum}.","df.wise.ControlFeedback.minLength":"Prosz\u0119 wpisa\u0107 co najmniej {minLength} znak\xF3w.","df.wise.ControlFeedback.minimum":"Wprowad\u017A liczb\u0119 r\xF3wn\u0105 lub wi\u0119ksz\u0105 ni\u017C {minimum}.","df.wise.ControlFeedback.minimumDate":"Wprowad\u017A dat\u0119 nie wcze\u015Bniejsz\u0105 ni\u017C {minimum}.","df.wise.ControlFeedback.pattern":"Wprowad\u017A t\u0119 warto\u015B\u0107 w prawid\u0142owym formacie.","df.wise.ControlFeedback.patternDate":"Wprowad\u017A dat\u0119 w prawid\u0142owym formacie.","df.wise.ControlFeedback.required":"Prosz\u0119 wype\u0142ni\u0107 to pole.","df.wise.ControlFeedback.type":"Nieprawid\u0142owy typ","df.wise.DynamicParagraph.copied":"Skopiowano do schowka","df.wise.DynamicParagraph.copy":"Kopiuj","df.wise.ErrorBoundary.errorAlert":"Co\u015B posz\u0142o nie tak.","df.wise.ErrorBoundary.retry":"Spr\xF3buj ponownie","df.wise.ExternalConfirmation.cancel":"Anuluj","df.wise.ExternalConfirmation.description":"Prosimy potwierdzi\u0107, \u017Ce chcesz otworzy\u0107 **{origin}** w nowej zak\u0142adce przegl\u0105darki.","df.wise.ExternalConfirmation.open":"Otw\xF3rz w nowej zak\u0142adce","df.wise.ExternalConfirmation.title":"Potwierd\u017A","df.wise.Help.ariaLabel":"Kliknij tutaj, \u017Ceby uzyska\u0107 wi\u0119cej informacji.","df.wise.MultiSelect.summary":"{first} oraz {count} wi\u0119cej","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Przepraszamy, ten plik jest zbyt du\u017Cy. Prze\u015Blij mniejszy plik.","df.wise.MultipleFileUploadSchema.maxItemsError":"Prze\u015Blij do {maxItems} plik\xF3w.","df.wise.MultipleFileUploadSchema.minItemsError":"Prze\u015Blij co najmniej nast\u0119puj\u0105c\u0105 liczb\u0119 plik\xF3w: {minItems}.","df.wise.PersistAsyncSchema.genericError":"Wyst\u0105pi\u0142 b\u0142\u0105d, prosimy spr\xF3bowa\u0107 ponownie.","df.wise.SearchLayout.loading":"\u0141adowanie..."};var it={"df.wise.ArraySchema.addItem":"Salvar","df.wise.ArraySchema.addItemTitle":"Adicionar item","df.wise.ArraySchema.editItem":"Salvar","df.wise.ArraySchema.maxItemsError":"Adicione {maxItems} ou menos.","df.wise.ArraySchema.minItemsError":"Adicione pelo menos {minItems}.","df.wise.ArraySchema.removeItem":"Remover","df.wise.ControlFeedback.maxLength":"Por favor, insira {maxLength} caracteres ou menos.","df.wise.ControlFeedback.maximum":"Por favor, insira um n\xFAmero que seja {maximum} ou menos.","df.wise.ControlFeedback.maximumDate":"Por favor, insira uma data que seja em ou antes de {maximum}.","df.wise.ControlFeedback.minLength":"Por favor, insira pelo menos {minLength} caracteres.","df.wise.ControlFeedback.minimum":"Por favor, insira um n\xFAmero que seja {minimum} ou mais.","df.wise.ControlFeedback.minimumDate":"Por favor, insira uma data que seja em ou ap\xF3s {minimum}.","df.wise.ControlFeedback.pattern":"Por favor, insira essa informa\xE7\xE3o no formato correto.","df.wise.ControlFeedback.patternDate":"Por favor, insira a data no formato correto.","df.wise.ControlFeedback.required":"Por favor, preencha o campo.","df.wise.ControlFeedback.type":"Tipo incorreto","df.wise.DynamicParagraph.copied":"Copiado","df.wise.DynamicParagraph.copy":"Copiar","df.wise.ErrorBoundary.errorAlert":"Algo deu errado.","df.wise.ErrorBoundary.retry":"Tentar novamente","df.wise.ExternalConfirmation.cancel":"Cancelar","df.wise.ExternalConfirmation.description":"Por favor, confirme que deseja abrir * *{origin}* * em uma nova aba do navegador.","df.wise.ExternalConfirmation.open":"Abrir em uma nova aba","df.wise.ExternalConfirmation.title":"Por favor, confirme","df.wise.Help.ariaLabel":"Clique aqui para mais informa\xE7\xF5es.","df.wise.MultiSelect.summary":"{first} e mais {count} ","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Este arquivo \xE9 muito grande. Por favor, envie um arquivo menor.","df.wise.MultipleFileUploadSchema.maxItemsError":"Por favor, envie {maxItems} ou menos arquivos.","df.wise.MultipleFileUploadSchema.minItemsError":"Por favor, envie pelo menos {minItems} arquivo(s).","df.wise.PersistAsyncSchema.genericError":"Ocorreu um erro. Por favor, tente novamente.","df.wise.SearchLayout.loading":"Carregando..."};var at={"df.wise.ArraySchema.addItem":"Salvare","df.wise.ArraySchema.addItemTitle":"Adaug\u0103 produs","df.wise.ArraySchema.editItem":"Salvare","df.wise.ArraySchema.maxItemsError":"Te rug\u0103m s\u0103 adaugi {maxItems} sau mai pu\u021Bine.","df.wise.ArraySchema.minItemsError":"Te rug\u0103m s\u0103 adaugi cel pu\u021Bin {minItems}.","df.wise.ArraySchema.removeItem":"Elimin\u0103","df.wise.ControlFeedback.maxLength":"Te rug\u0103m s\u0103 introduci {maxLength} sau mai pu\u021Bine caractere.","df.wise.ControlFeedback.maximum":"Te rug\u0103m s\u0103 introduci un num\u0103r egal cu {maximum} sau mai mic.","df.wise.ControlFeedback.maximumDate":"Te rug\u0103m s\u0103 introduci o dat\u0103 de \xEEnainte de sau egal\u0103 cu {maximum}.","df.wise.ControlFeedback.minLength":"Te rug\u0103m s\u0103 introduci cel pu\u021Bin {minLength} caractere.","df.wise.ControlFeedback.minimum":"Te rug\u0103m s\u0103 introduci un num\u0103r egal cu {minimum} sau mai mare.","df.wise.ControlFeedback.minimumDate":"Te rug\u0103m s\u0103 introduci o dat\u0103 de dup\u0103 sau egal\u0103 cu {minimum}.","df.wise.ControlFeedback.pattern":"Te rug\u0103m s\u0103 introduci acest lucru \xEEn formatul corect.","df.wise.ControlFeedback.patternDate":"Te rug\u0103m s\u0103 introduci o dat\u0103 \xEEn formatul corect.","df.wise.ControlFeedback.required":"Te rug\u0103m s\u0103 completezi acest spa\u021Biu.","df.wise.ControlFeedback.type":"Tip incorect","df.wise.DynamicParagraph.copied":"Copiat \xEEn clipboard","df.wise.DynamicParagraph.copy":"Copiaz\u0103","df.wise.ErrorBoundary.errorAlert":"Ceva nu a mers bine.","df.wise.ErrorBoundary.retry":"\xCEncearc\u0103 din nou","df.wise.ExternalConfirmation.cancel":"Anuleaz\u0103","df.wise.ExternalConfirmation.description":"Te rug\u0103m s\u0103 confirmi c\u0103 vrei s\u0103 deschizi **{origin}** \xEEntr-o nou\u0103 fil\u0103 a browserului.","df.wise.ExternalConfirmation.open":"Deschide \xEEntr-o fil\u0103 nou\u0103","df.wise.ExternalConfirmation.title":"Te rug\u0103m s\u0103 confirmi","df.wise.Help.ariaLabel":"D\u0103 click aici pentru mai multe informa\u021Bii.","df.wise.MultiSelect.summary":"{first} \u0219i \xEEnc\u0103 {count}","df.wise.MultipleFileUploadSchema.maxFileSizeError":"Ne pare r\u0103u, acel fi\u0219ier este prea mare. Te rug\u0103m s\u0103 \xEEncarci un fi\u0219ier mai mic.","df.wise.MultipleFileUploadSchema.maxItemsError":"Te rug\u0103m s\u0103 \xEEncarci {maxItems} fi\u0219iere sau mai pu\u021Bine.","df.wise.MultipleFileUploadSchema.minItemsError":"Te rug\u0103m s\u0103 \xEEncarci cel pu\u021Bin {minItems} fi\u0219ier(e).","df.wise.PersistAsyncSchema.genericError":"Ceva nu a mers bine, te rug\u0103m s\u0103 \xEEncerci din nou.","df.wise.SearchLayout.loading":"Se \xEEncarc\u0103..."};var ot={"df.wise.ArraySchema.addItem":"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C","df.wise.ArraySchema.addItemTitle":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u0443\u043D\u043A\u0442","df.wise.ArraySchema.editItem":"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C","df.wise.ArraySchema.maxItemsError":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0434\u043E\u0431\u0430\u0432\u044C\u0442\u0435 {maxItems} \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.","df.wise.ArraySchema.minItemsError":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0434\u043E\u0431\u0430\u0432\u044C\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minItems}.","df.wise.ArraySchema.removeItem":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C","df.wise.ControlFeedback.maxLength":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 {maxLength} \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.","df.wise.ControlFeedback.maximum":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0447\u0438\u0441\u043B\u043E, \u0440\u0430\u0432\u043D\u043E\u0435 {maximum} \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.","df.wise.ControlFeedback.maximumDate":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443, \u0440\u0430\u0432\u043D\u0443\u044E {maximum} \u0438\u043B\u0438 \u0431\u043E\u043B\u0435\u0435 \u0440\u0430\u043D\u043D\u044E\u044E.","df.wise.ControlFeedback.minLength":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minLength} \u0441\u0438\u043C\u0432\u043E\u043B\u0430(-\u043E\u0432).","df.wise.ControlFeedback.minimum":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0447\u0438\u0441\u043B\u043E, \u0440\u0430\u0432\u043D\u043E\u0435 {minimum} \u0438\u043B\u0438 \u0431\u043E\u043B\u044C\u0448\u0435.","df.wise.ControlFeedback.minimumDate":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443, \u0440\u0430\u0432\u043D\u0443\u044E {minimum} \u0438\u043B\u0438 \u0431\u043E\u043B\u0435\u0435 \u043F\u043E\u0437\u0434\u043D\u044E\u044E.","df.wise.ControlFeedback.pattern":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u044D\u0442\u043E \u0432 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0435.","df.wise.ControlFeedback.patternDate":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443 \u0432 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0435.","df.wise.ControlFeedback.required":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u043F\u043E\u043B\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u043E\u0435 \u043F\u043E\u043B\u0435.","df.wise.ControlFeedback.type":"\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u0442\u0438\u043F","df.wise.DynamicParagraph.copied":"\u0421\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u0432 \u0431\u0443\u0444\u0435\u0440 \u043E\u0431\u043C\u0435\u043D\u0430","df.wise.DynamicParagraph.copy":"\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C","df.wise.ErrorBoundary.errorAlert":"\u0427\u0442\u043E-\u0442\u043E \u043F\u043E\u0448\u043B\u043E \u043D\u0435 \u0442\u0430\u043A.","df.wise.ErrorBoundary.retry":"\u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u044C \u043F\u043E\u043F\u044B\u0442\u043A\u0443","df.wise.ExternalConfirmation.cancel":"\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C","df.wise.ExternalConfirmation.description":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043E \u0432\u044B \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043A\u0440\u044B\u0442\u044C **{origin}** \u0432 \u043D\u043E\u0432\u043E\u0439 \u0432\u043A\u043B\u0430\u0434\u043A\u0435 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430.","df.wise.ExternalConfirmation.open":"\u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u043D\u043E\u0432\u043E\u0439 \u0432\u043A\u043B\u0430\u0434\u043A\u0435","df.wise.ExternalConfirmation.title":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435","df.wise.Help.ariaLabel":"\u041D\u0430\u0436\u043C\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044C \u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438.","df.wise.MultiSelect.summary":"{first} \u0438 \u0435\u0449\u0435 {count} \u0434\u0440\u0443\u0433\u0438\u0445","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\u0418\u0437\u0432\u0438\u043D\u0438\u0442\u0435, \u0444\u0430\u0439\u043B \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u0431\u043E\u043B\u044C\u0448\u043E\u0439. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0444\u0430\u0439\u043B \u043C\u0435\u043D\u044C\u0448\u0435\u0433\u043E \u0440\u0430\u0437\u043C\u0435\u0440\u0430.","df.wise.MultipleFileUploadSchema.maxItemsError":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043D\u0435 \u0431\u043E\u043B\u0435\u0435 {maxItems} \u0444\u0430\u0439\u043B\u043E\u0432.","df.wise.MultipleFileUploadSchema.minItemsError":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minItems} \u0444\u0430\u0439\u043B(-\u0430/\u043E\u0432).","df.wise.PersistAsyncSchema.genericError":"\u0427\u0442\u043E-\u0442\u043E \u043F\u043E\u0448\u043B\u043E \u043D\u0435 \u0442\u0430\u043A, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437.","df.wise.SearchLayout.loading":"\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430..."};var st={"df.wise.ArraySchema.addItem":"\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01","df.wise.ArraySchema.addItemTitle":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23","df.wise.ArraySchema.editItem":"\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01","df.wise.ArraySchema.maxItemsError":"\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E1E\u0E34\u0E48\u0E21 {maxItems} \u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32","df.wise.ArraySchema.minItemsError":"\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 {minItems}","df.wise.ArraySchema.removeItem":"\u0E25\u0E1A","df.wise.ControlFeedback.maxLength":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19 {maxLength} \u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32","df.wise.ControlFeedback.maximum":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02 {maximum} \u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32","df.wise.ControlFeedback.maximumDate":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48\u0E15\u0E23\u0E07\u0E1E\u0E2D\u0E14\u0E35\u0E2B\u0E23\u0E37\u0E2D\u0E01\u0E48\u0E2D\u0E19 {maximum}","df.wise.ControlFeedback.minLength":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 {minLength} \u0E15\u0E31\u0E27","df.wise.ControlFeedback.minimum":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02 {minimum} \u0E2B\u0E23\u0E37\u0E2D\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32","df.wise.ControlFeedback.minimumDate":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48\u0E15\u0E23\u0E07\u0E1E\u0E2D\u0E14\u0E35\u0E2B\u0E23\u0E37\u0E2D\u0E2B\u0E25\u0E31\u0E07 {minimum}","df.wise.ControlFeedback.pattern":"\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","df.wise.ControlFeedback.patternDate":"\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","df.wise.ControlFeedback.required":"\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19\u0E0A\u0E48\u0E2D\u0E07\u0E19\u0E35\u0E49","df.wise.ControlFeedback.type":"\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","df.wise.DynamicParagraph.copied":"\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14","df.wise.DynamicParagraph.copy":"\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01","df.wise.ErrorBoundary.errorAlert":"\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E1A\u0E32\u0E07\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E02\u0E36\u0E49\u0E19","df.wise.ErrorBoundary.retry":"\u0E25\u0E2D\u0E07\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07","df.wise.ExternalConfirmation.cancel":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01","df.wise.ExternalConfirmation.description":"\u0E42\u0E1B\u0E23\u0E14\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14 **{origin}** \u0E40\u0E1B\u0E47\u0E19\u0E41\u0E17\u0E47\u0E1A\u0E43\u0E2B\u0E21\u0E48\u0E43\u0E19\u0E40\u0E1A\u0E23\u0E32\u0E27\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C","df.wise.ExternalConfirmation.open":"\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E19\u0E41\u0E17\u0E47\u0E1A\u0E43\u0E2B\u0E21\u0E48","df.wise.ExternalConfirmation.title":"\u0E42\u0E1B\u0E23\u0E14\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19","df.wise.Help.ariaLabel":"\u0E04\u0E25\u0E34\u0E01\u0E17\u0E35\u0E48\u0E19\u0E35\u0E48\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E14\u0E39\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21","df.wise.MultiSelect.summary":"{first} \u0E41\u0E25\u0E30\u0E2D\u0E35\u0E01 {count}","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\u0E02\u0E2D\u0E2D\u0E20\u0E31\u0E22 \u0E44\u0E1F\u0E25\u0E4C\u0E19\u0E31\u0E49\u0E19\u0E43\u0E2B\u0E0D\u0E48\u0E40\u0E01\u0E34\u0E19\u0E44\u0E1B \u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14\u0E44\u0E1F\u0E25\u0E4C\u0E17\u0E35\u0E48\u0E21\u0E35\u0E02\u0E19\u0E32\u0E14\u0E40\u0E25\u0E47\u0E01\u0E25\u0E07","df.wise.MultipleFileUploadSchema.maxItemsError":"\u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14 {maxItems} \u0E44\u0E1F\u0E25\u0E4C\u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32","df.wise.MultipleFileUploadSchema.minItemsError":"\u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 {minItems} \u0E44\u0E1F\u0E25\u0E4C","df.wise.PersistAsyncSchema.genericError":"\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E1A\u0E32\u0E07\u0E2D\u0E22\u0E48\u0E32\u0E07 \u0E42\u0E1B\u0E23\u0E14\u0E25\u0E2D\u0E07\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07","df.wise.SearchLayout.loading":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E42\u0E2B\u0E25\u0E14..."};var dt={"df.wise.ArraySchema.addItem":"Kaydet","df.wise.ArraySchema.addItemTitle":"\xD6ge ekle","df.wise.ArraySchema.editItem":"Kaydet","df.wise.ArraySchema.maxItemsError":"L\xFCtfen {maxItems} veya daha az ekleme yap\u0131n","df.wise.ArraySchema.minItemsError":"L\xFCtfen en az {minItems} ekleme yap\u0131n.","df.wise.ArraySchema.removeItem":"Kald\u0131r","df.wise.ControlFeedback.maxLength":"L\xFCtfen {maxLength} veya daha az karakter girin.","df.wise.ControlFeedback.maximum":"L\xFCtfen {maximum} veya daha d\xFC\u015F\xFCk bir say\u0131 girin.","df.wise.ControlFeedback.maximumDate":"L\xFCtfen {maximum} veya daha erken bir tarih girin.","df.wise.ControlFeedback.minLength":"En az {minLength} karakter girebilirsiniz.","df.wise.ControlFeedback.minimum":"L\xFCtfen {minimum} veya daha y\xFCksek bir say\u0131 girin.","df.wise.ControlFeedback.minimumDate":"L\xFCtfen {minimum} veya daha ge\xE7 bir tarih girin.","df.wise.ControlFeedback.pattern":"Yanl\u0131\u015F bi\xE7im","df.wise.ControlFeedback.patternDate":"L\xFCtfen tarihi do\u011Fru bi\xE7imde girin.","df.wise.ControlFeedback.required":"L\xFCtfen bu alan\u0131 doldurun.","df.wise.ControlFeedback.type":"Ge\xE7ersiz se\xE7im","df.wise.DynamicParagraph.copied":"Panoya kopyaland\u0131","df.wise.DynamicParagraph.copy":"Kopyala","df.wise.ErrorBoundary.errorAlert":"Bir sorun olu\u015Ftu.","df.wise.ErrorBoundary.retry":"Tekrar dene","df.wise.ExternalConfirmation.cancel":"\u0130ptal edin","df.wise.ExternalConfirmation.description":"L\xFCtfen yeni bir taray\u0131c\u0131 sekmesinde **{origin}** a\xE7mak istedi\u011Finizi onaylay\u0131n.","df.wise.ExternalConfirmation.open":"Yeni sekmede a\xE7","df.wise.ExternalConfirmation.title":"L\xFCtfen onaylay\u0131n","df.wise.Help.ariaLabel":"Ayr\u0131nt\u0131lar i\xE7in t\u0131klay\u0131n.","df.wise.MultiSelect.summary":"{first} ve {count} daha","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\xDCzg\xFCn\xFCz, bu dosya \xE7ok b\xFCy\xFCk. L\xFCtfen daha k\xFC\xE7\xFCk bir dosya y\xFCkleyin.","df.wise.MultipleFileUploadSchema.maxItemsError":"L\xFCtfen {maxItems} veya daha az dosya y\xFCkleyin.","df.wise.MultipleFileUploadSchema.minItemsError":"L\xFCtfen en az {minItems} dosya y\xFCkleyin.","df.wise.PersistAsyncSchema.genericError":"Bir \u015Feyler ters gitti, l\xFCtfen tekrar deneyin.","df.wise.SearchLayout.loading":"Y\xFCkleniyor..."};var wr={"df.wise.ArraySchema.addItem":"\u4FDD\u5B58","df.wise.ArraySchema.addItemTitle":"\u6DFB\u52A0\u9879\u76EE","df.wise.ArraySchema.editItem":"\u4FDD\u5B58","df.wise.ArraySchema.maxItemsError":"\u8BF7\u6DFB\u52A0\u4E0D\u8D85\u8FC7 {maxItems} \u9879\u3002","df.wise.ArraySchema.minItemsError":"\u8BF7\u81F3\u5C11\u6DFB\u52A0 {minItems} \u9879\u3002","df.wise.ArraySchema.removeItem":"\u79FB\u9664","df.wise.ControlFeedback.maxLength":"\u8BF7\u8F93\u5165\u4E0D\u8D85\u8FC7 {maxLength} \u4E2A\u5B57\u7B26\u3002","df.wise.ControlFeedback.maximum":"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5C0F\u4E8E\u6216\u7B49\u4E8E {maximum} \u7684\u6570\u5B57\u3002","df.wise.ControlFeedback.maximumDate":"\u8BF7\u8F93\u5165 {maximum} \u6216\u4E4B\u524D\u7684\u65E5\u671F","df.wise.ControlFeedback.minLength":"\u8BF7\u81F3\u5C11\u8F93\u5165 {minLength} \u4E2A\u5B57\u7B26","df.wise.ControlFeedback.minimum":"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5927\u4E8E\u6216\u7B49\u4E8E {minimum} \u7684\u6570\u5B57","df.wise.ControlFeedback.minimumDate":"\u8BF7\u8F93\u5165 {minimum} \u6216\u4E4B\u540E\u7684\u65E5\u671F","df.wise.ControlFeedback.pattern":"\u8BF7\u4EE5\u6B63\u786E\u7684\u683C\u5F0F\u8F93\u5165","df.wise.ControlFeedback.patternDate":"\u8BF7\u4EE5\u6B63\u786E\u7684\u683C\u5F0F\u8F93\u5165\u65E5\u671F","df.wise.ControlFeedback.required":"\u8BF7\u586B\u5199\u6B64\u5B57\u6BB5\u3002","df.wise.ControlFeedback.type":"\u7C7B\u578B\u9519\u8BEF","df.wise.DynamicParagraph.copied":"\u5DF2\u590D\u5236\u5230\u526A\u8D34\u677F","df.wise.DynamicParagraph.copy":"\u590D\u5236","df.wise.ErrorBoundary.errorAlert":"\u51FA\u9519\u4E86\u3002","df.wise.ErrorBoundary.retry":"\u91CD\u8BD5","df.wise.ExternalConfirmation.cancel":"\u53D6\u6D88","df.wise.ExternalConfirmation.description":"\u8BF7\u786E\u8BA4\u60A8\u662F\u5426\u8981\u5728\u65B0\u6807\u7B7E\u9875\u4E2D\u6253\u5F00**{origin}**\u3002","df.wise.ExternalConfirmation.open":"\u5728\u65B0\u6807\u7B7E\u9875\u4E2D\u6253\u5F00","df.wise.ExternalConfirmation.title":"\u8BF7\u786E\u8BA4","df.wise.Help.ariaLabel":"\u70B9\u51FB\u6B64\u5904\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002","df.wise.MultiSelect.summary":"{first} \u548C\u5176\u4ED6 {count} \u4E2A","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\u62B1\u6B49\uFF0C\u8BE5\u6587\u4EF6\u592A\u5927\u3002\u8BF7\u4E0A\u4F20\u4E00\u4E2A\u66F4\u5C0F\u7684\u6587\u4EF6\u3002","df.wise.MultipleFileUploadSchema.maxItemsError":"\u8BF7\u4E0A\u4F20\u4E0D\u8D85\u8FC7 {maxItems} \u4E2A\u6587\u4EF6\u3002","df.wise.MultipleFileUploadSchema.minItemsError":"\u8BF7\u4E0A\u4F20\u81F3\u5C11 {minItems} \u4E2A\u6587\u4EF6\u3002","df.wise.PersistAsyncSchema.genericError":"\u51FA\u9519\u4E86\uFF0C\u8BF7\u91CD\u8BD5\u3002","df.wise.SearchLayout.loading":"\u6B63\u5728\u52A0\u8F7D\u2026"};var mt={"df.wise.ArraySchema.addItem":"\u5132\u5B58","df.wise.ArraySchema.addItemTitle":"\u6DFB\u52A0\u9805\u76EE","df.wise.ArraySchema.editItem":"\u5132\u5B58","df.wise.ArraySchema.maxItemsError":"\u8ACB\u6DFB\u52A0\u4E0D\u8D85\u904E{maxItems}\u9805\u3002","df.wise.ArraySchema.minItemsError":"\u8ACB\u81F3\u5C11\u6DFB\u52A0{minItems}\u9805\u3002","df.wise.ArraySchema.removeItem":"\u79FB\u9664","df.wise.ControlFeedback.maxLength":"\u8ACB\u8F38\u5165\u6700\u591A{maxLength}\u500B\u5B57\u5143\u3002","df.wise.ControlFeedback.maximum":"\u8ACB\u8F38\u5165\u4E00\u500B\u5C0F\u65BC\u6216\u7B49\u65BC{maximum}\u7684\u6578\u5B57\u3002","df.wise.ControlFeedback.maximumDate":"\u8ACB\u8F38\u5165{maximum}\u6216\u4E4B\u524D\u7684\u65E5\u671F\u3002","df.wise.ControlFeedback.minLength":"\u8ACB\u8F38\u5165\u81F3\u5C11{minLength}\u500B\u5B57\u5143\u3002","df.wise.ControlFeedback.minimum":"\u8ACB\u8F38\u5165\u4E00\u500B\u5927\u65BC\u6216\u7B49\u65BC{minimum}\u7684\u6578\u5B57\u3002","df.wise.ControlFeedback.minimumDate":"\u8ACB\u8F38\u5165{minimum}\u6216\u4E4B\u5F8C\u7684\u65E5\u671F\u3002","df.wise.ControlFeedback.pattern":"\u8ACB\u4EE5\u6B63\u78BA\u683C\u5F0F\u8F38\u5165\u5185\u5BB9\u3002","df.wise.ControlFeedback.patternDate":"\u8ACB\u4EE5\u6B63\u78BA\u683C\u5F0F\u8F38\u5165\u65E5\u671F\u3002","df.wise.ControlFeedback.required":"\u8ACB\u586B\u5BEB\u6B64\u6B04\u4F4D\u3002","df.wise.ControlFeedback.type":"\u932F\u8AA4\u7684\u985E\u578B","df.wise.DynamicParagraph.copied":"\u8907\u88FD\u5230\u526A\u8CBC\u677F","df.wise.DynamicParagraph.copy":"\u8907\u88FD","df.wise.ErrorBoundary.errorAlert":"\u51FA\u4E86\u4E9B\u554F\u984C\u3002","df.wise.ErrorBoundary.retry":"\u91CD\u8A66","df.wise.ExternalConfirmation.cancel":"\u53D6\u6D88","df.wise.ExternalConfirmation.description":"\u8ACB\u78BA\u8A8D\u4F60\u662F\u5426\u8981\u5728\u700F\u89BD\u5668\u7684\u65B0\u5206\u9801\u6253\u958B**{origin}**\u3002","df.wise.ExternalConfirmation.open":"\u5728\u65B0\u5206\u9801\u4E2D\u958B\u555F","df.wise.ExternalConfirmation.title":"\u8ACB\u78BA\u8A8D","df.wise.Help.ariaLabel":"\u6309\u6B64\u67E5\u770B\u8A73\u60C5\u3002","df.wise.MultiSelect.summary":"{first}\u548C\u5176\u4ED6{count}\u9805","df.wise.MultipleFileUploadSchema.maxFileSizeError":"\u62B1\u6B49\uFF0C\u8A72\u6A94\u6848\u592A\u5927\u3002\u8ACB\u4E0A\u8F09\u4E00\u500B\u8F03\u5C0F\u7684\u6A94\u6848\u3002","df.wise.MultipleFileUploadSchema.maxItemsError":"\u8ACB\u4E0D\u8981\u4E0A\u8F09\u8D85\u904E{maxItems}\u500B\u6A94\u6848\u3002","df.wise.MultipleFileUploadSchema.minItemsError":"\u8ACB\u4E0A\u8F09\u81F3\u5C11{minItems}\u500B\u6A94\u6848\u3002","df.wise.PersistAsyncSchema.genericError":"\u51FA\u73FE\u4E86\u554F\u984C\uFF0C\u8ACB\u518D\u8A66\u4E00\u6B21\u3002","df.wise.SearchLayout.loading":"\u8F09\u5165\u4E2D\u2026"};var lt={en:Yr,de:Zr,es:Jr,fr:Qr,hu:Xr,id:et,it:rt,ja:tt,pl:nt,pt:it,ro:at,ru:ot,th:st,tr:dt,zh:wr,"zh-CN":wr,"zh-HK":mt},na=Array.from(new Set([...Object.keys(hr.translations),...Object.keys(lt)])),ia=na.reduce((e,r)=>w(s({},e),{[r]:s(s({},hr.translations[r]),lt[r])}),{}),ct=ia;var q=require("react"),xi=require("react-intl"),ge=require("@wise/dynamic-flow-client");var Me=require("react"),ut=require("react/jsx-runtime"),pt=(0,Me.createContext)(void 0);function Ne({httpClient:e,children:r}){return(0,ut.jsx)(pt.Provider,{value:e,children:r})}var br=()=>{let e=(0,Me.useContext)(pt);return e!=null?e:fetch};var ft=require("@transferwise/components");var u=e=>{switch(e){case"xs":return"m-b-0";case"sm":return"m-b-1";case"md":return"m-b-2";case"lg":return"m-b-3";case"xl":return"m-b-5";default:return""}},aa=e=>{switch(e){case"end":return"text-xs-right";case"center":return"text-xs-center";case"start":default:return""}},Z=e=>`${aa(e.align)} ${u(e.margin)}`;var yt=require("react/jsx-runtime"),oa={canRenderType:"alert",render:({context:e,markdown:r,margin:t,callToAction:n})=>(0,yt.jsx)(ft.Alert,{type:e,className:u(t),message:r,action:sa(n)})},sa=e=>{if(!e)return;let{accessibilityDescription:r,title:t}=e,n={"aria-label":r,text:t};if(e.type==="link"){let{href:i}=e;return w(s({},n),{href:i,target:"_blank"})}if(e.type==="action"){let{onClick:i}=e;return w(s({},n),{onClick:i})}},gt=oa;var It=require("@transferwise/components");var Te=require("@transferwise/components"),bt=require("react-intl");var wt=require("react-intl"),ht=(0,wt.defineMessages)({helpAria:{id:"df.wise.Help.ariaLabel",defaultMessage:"Click here for more info.",description:"Aria label for help."}});var Ir=require("react/jsx-runtime");function da({help:e}){let r=(0,bt.useIntl)();return(0,Ir.jsx)(Te.Info,{className:"m-l-1",content:(0,Ir.jsx)(Te.Markdown,{config:{link:{target:"_blank"}},children:e}),presentation:"POPOVER",size:"sm","aria-label":r.formatMessage(ht.helpAria)})}var we=da;var Be=require("react/jsx-runtime");function ze({text:e,help:r}){return(0,Be.jsxs)("div",{children:[e,(0,Be.jsx)(we,{help:r})]})}var Sr=require("react/jsx-runtime");function ma({id:e,children:r,label:t,validation:n,description:i,help:a}){return(0,Sr.jsx)(It.Field,{id:e,label:t&&a?(0,Sr.jsx)(ze,{text:t,help:a}):t,description:i,message:n==null?void 0:n.message,sentiment:la(n),children:r})}var la=e=>{if(e)return e.status==="valid"?"positive":"negative"},y=ma;var St=require("@transferwise/components");var Cr=require("react/jsx-runtime"),ca={canRenderType:"input-checkbox",render:e=>{let p=e,{id:r,control:t,title:n="",description:i,help:a,type:o,validationState:d,value:m}=p,l=k(p,["id","control","title","description","help","type","validationState","value"]),c=w(s({},l),{label:n,secondary:i,checked:m});return(0,Cr.jsx)(y,{id:r,label:"",description:"",validation:d,help:a,children:(0,Cr.jsx)(St.Checkbox,s({id:r},c))})}},Ct=ca;var Rr=j(Y());var xr=require("react/jsx-runtime"),pa={canRenderType:"box",render:({border:e,children:r,control:t,margin:n,width:i})=>{let a=i!=="xl",d=(0,xr.jsx)("div",{className:(0,Rr.default)({"df-box-renderer-border":t==="bordered"||t==="bordered-web"||e,[`df-box-renderer-width-${i}`]:a,[u(n)]:!a}),children:r});return a?(0,xr.jsx)("div",{className:(0,Rr.default)("df-box-renderer-fixed-width",u(n)),children:d}):d}},Rt=pa;var kt=require("@transferwise/components");var he=require("react"),kr=(0,he.createContext)({loadingState:"idle",trackEvent:()=>{}}),xt=kr.Provider,He=()=>{let{loadingState:e}=(0,he.useContext)(kr);return{loadingState:e,isLoading:e!=="idle"}},be=()=>{let{trackEvent:e}=(0,he.useContext)(kr);return e};var Et=require("react/jsx-runtime"),ua={canRenderType:"button",render:fa};function fa({control:e,context:r,disabled:t,margin:n,title:i,size:a,onClick:o}){let d=u(n),m=ya(e),l=m==="tertiary"?void 0:ga(r),{isLoading:c}=He();return(0,Et.jsx)(kt.Button,{block:!0,className:d,disabled:c||t,priority:m,size:wa(a),type:l,onClick:o,children:i})}var ga=e=>{switch(e){case"neutral":case"warning":return"accent";default:return e}},ya=e=>{switch(e){case"primary":case"tertiary":return e;default:return"secondary"}},wa=e=>{if(e)switch(e){case"xs":case"sm":return"sm";case"lg":case"xl":return"lg";case"md":default:return"md"}},Ft=ua;var vt=j(Y());var Ie=require("react/jsx-runtime"),ha={canRenderType:"columns",render:({bias:e,margin:r,startChildren:t,endChildren:n})=>(0,Ie.jsxs)("div",{className:(0,vt.default)("df-columns-renderer-container",u(r),{"df-columns-renderer-bias-start":e==="start","df-columns-renderer-bias-end":e==="end"}),children:[(0,Ie.jsx)("div",{className:"df-columns-renderer-column",children:t}),(0,Ie.jsx)("div",{className:"df-columns-renderer-column",children:n})]})},Pt=ha;var Ve=require("@transferwise/components");var Ue=e=>typeof e=="number"&&!Number.isNaN(e);var ba=e=>e===null,Ia=e=>typeof e=="undefined",Lt=e=>ba(e)||Ia(e);var Fr=e=>/^\d+$/.test(e)&&!Number.isNaN(Number.parseFloat(e))?e:null,_e=e=>{if(!e)return null;let[r,t,n]=e.split("-").map(i=>Number.parseInt(i,10));return!Ue(r)||!Ue(t)||!Ue(n)?null:new Date(r,t-1,n)},At=e=>{let r=new Date(e),t=String(r.getMonth()+1),n=String(r.getDate()),i=r.getFullYear(),a=t.length<2?`0${t}`:t,o=n.length<2?`0${n}`:n;return[i,a,o].join("-")};var Er=require("react/jsx-runtime");function Sa({control:e,inputProps:r}){let{autoComplete:t,minimumDate:n,maximumDate:i,placeholder:a,disabled:o,onBlur:d,onChange:m,onFocus:l}=r;return e==="date-lookup"?(0,Er.jsx)(Ve.DateLookup,{value:_e(r.value),min:_e(n),max:_e(i),placeholder:a,disabled:o,onChange:c=>{m(c!==null?At(c):null)},onBlur:d,onFocus:l}):(0,Er.jsx)(Ve.DateInput,w(s({},r),{dayAutoComplete:Dt(t,"day"),yearAutoComplete:Dt(t,"year")}))}var Dt=(e,r)=>{if(e==="bday")return`${e}-${r}`},Mt=Sa;var vr=require("react/jsx-runtime"),Ca={canRenderType:"input-date",render:e=>{let f=e,{id:r,control:t,description:n,type:i,help:a,title:o,validationState:d,value:m}=f,l=k(f,["id","control","description","type","help","title","validationState","value"]),c=m!=null?m:"",p=w(s({},l),{value:c,id:r});return(0,vr.jsx)(y,{id:r,label:o,description:n,validation:d,help:a,children:(0,vr.jsx)(Mt,{control:t,inputProps:p})})}},Nt=Ca;var ne=require("@transferwise/components");Ot();Pr();var cd=require("react"),pd=require("react/jsx-runtime");var Ut=require("react/jsx-runtime"),Dr=e=>e.startsWith("flag-");function Ht({name:e}){if(!Dr(e))return null;let r=e.substring(5);return(0,Ut.jsx)(Ar,{code:r})}var _t=j(require("@transferwise/icons")),Gt=require("react/jsx-runtime"),Mr=e=>{let r=Wt(e);return Object.keys(_t).includes(r)};function Vt({name:e}){if(!Mr(e))return null;let r=Wt(e),t=_t[r];return(0,Gt.jsx)(t,{size:24})}var Wt=e=>e.split("-").map(xa).join(""),xa=e=>`${e[0].toUpperCase()}${e.slice(1)}`;var Nr=require("react/jsx-runtime");function ka({name:e}){return Dr(e)?(0,Nr.jsx)(Ht,{name:e}):Mr(e)?(0,Nr.jsx)(Vt,{name:e}):null}var O=ka;var te=require("@transferwise/components"),re=require("react/jsx-runtime");function H({icon:e,image:r}){if(!Lt(e)){if("name"in e)return(0,re.jsx)(te.Avatar,{type:te.AvatarType.ICON,children:(0,re.jsx)(O,{name:e.name})});if(e.text)return(0,re.jsx)(te.Avatar,{type:te.AvatarType.INITIALS,children:e.text})}if(r){let{accessibilityDescription:t,uri:n,url:i}=r;if(n&&!n.startsWith("urn:"))return(0,re.jsx)("img",{src:n,alt:t});if(i)return(0,re.jsx)("img",{src:i,alt:t})}return null}var Q=require("react/jsx-runtime"),Fa={canRenderType:"decision",render:Ea},Kt=Fa;function Ea({margin:e,options:r,title:t}){let{isLoading:n}=He();return(0,Q.jsxs)("div",{className:u(e),children:[t&&(0,Q.jsx)(ne.Header,{as:"h2",title:t}),(0,Q.jsx)(ne.NavigationOptionsList,{children:r.map(({description:i,disabled:a,icon:o,image:d,title:m,onClick:l})=>(0,Q.jsx)(ne.NavigationOption,{title:m,content:i,disabled:n||a,media:(0,Q.jsx)(H,{icon:o,image:d}),showMediaCircle:!1,showMediaAtAllSizes:!0,onClick:l},JSON.stringify(m)))})]})}var qt=require("react/jsx-runtime"),va={canRenderType:"divider",render:({margin:e})=>(0,qt.jsx)("hr",{className:`m-t-0 ${u(e)}`})},$t=va;var Zt=require("react/jsx-runtime"),Pa={canRenderType:"form",render:({children:e,margin:r})=>(0,Zt.jsx)("div",{className:u(r),children:e})},jt=Pa;var Yt=require("@transferwise/components"),Se=require("react/jsx-runtime"),La={canRenderType:"section",render:({title:e,description:r,children:t})=>(0,Se.jsxs)("fieldset",{children:[e&&(0,Se.jsx)(Yt.Header,{as:"h2",title:e}),r&&(0,Se.jsx)("p",{children:r}),t]})},Jt=La;var Qt=require("@transferwise/components");var N=require("react/jsx-runtime"),Aa={canRenderType:"heading",render:e=>(0,N.jsx)(Da,s({},e))};function Da(e){let{text:r,size:t,align:n,margin:i,control:a}=e,o=Z({align:n,margin:i});return a==="display"?(0,N.jsx)(Ma,{size:t,text:r,className:o}):(0,N.jsx)(Na,{size:t,text:r,className:o})}function Ma({size:e,text:r,className:t}){return(0,N.jsx)(Qt.Display,{type:Ta(e),className:t,children:r})}function Na({size:e,text:r,className:t}){switch(e){case"xs":return(0,N.jsx)("h5",{className:t,children:r});case"sm":return(0,N.jsx)("h4",{className:t,children:r});case"lg":return(0,N.jsx)("h2",{className:t,children:r});case"xl":return(0,N.jsx)("h1",{className:t,children:r});case"md":default:return(0,N.jsx)("h3",{className:t,children:r})}}var Ta=e=>{switch(e){case"xs":case"sm":return"display-small";case"xl":case"lg":return"display-large";case"md":default:return"display-medium"}},Xt=Aa;var tn=require("@transferwise/components");var Ke=require("react");function en(e=""){return!["https://","http://","data:"].some(r=>e.startsWith(r)&&e.length>r.length)}var Ge=require("react/jsx-runtime"),za={canRenderType:"image",render:e=>(0,Ge.jsx)(Ba,s({},e))},nn=za;function Ba({accessibilityDescription:e,margin:r,size:t,uri:n,url:i}){let[a,o]=(0,Ke.useState)(""),d=br();return(0,Ke.useEffect)(()=>{if(!n){rn(d,i).then(o);return}if(!n.startsWith("urn:")){rn(d,n).then(o);return}},[n,i,d]),(0,Ge.jsx)("div",{className:`df-image ${t||"md"}`,children:(0,Ge.jsx)(tn.Image,{className:`img-responsive ${u(r)}`,alt:e!=null?e:"",src:a,stretch:!0,shrink:!0})})}var Oa=async e=>new Promise((r,t)=>{let n=new FileReader;n.addEventListener("loadend",()=>r(n.result)),n.addEventListener("error",t),n.readAsDataURL(e)}),rn=async(e,r)=>{var t;try{return en(r)||r!=null&&r.startsWith(`${(t=window==null?void 0:window.location)==null?void 0:t.origin}/`)?await e(r,{method:"GET",headers:{"Content-Type":"image/image"},credentials:"same-origin"}).then(async n=>{if(n.ok)return n.blob();throw new Error("Image fetching failed")}).then(Oa).catch(()=>r):r}catch(n){return r}};var $e=require("@transferwise/components");var Ce=require("react/jsx-runtime"),Ha=["positive","neutral"],Ua=["warning","negative"],_a={canRenderType:"instructions",render:({items:e,margin:r,title:t})=>{let n=e.filter(a=>Ha.includes(a.context)).map(({text:a})=>a),i=e.filter(a=>Ua.includes(a.context)).map(({text:a})=>a);return(0,Ce.jsxs)("div",{className:u(r),children:[t?(0,Ce.jsx)($e.Header,{title:t}):null,(0,Ce.jsx)($e.InstructionsList,{dos:n,donts:i})]})}},an=_a;var Ye=require("@transferwise/components");var ie=e=>{e.target instanceof HTMLElement&&e.target.blur()};var oe=require("@transferwise/components");var ae=require("react/jsx-runtime"),qe=24;function je({icon:e,image:r}){return r!=null&&r.url?(0,ae.jsx)("img",{src:r.url,alt:r.accessibilityDescription,width:`${qe}px`,height:`${qe}px`}):Va(e)?(0,ae.jsx)(oe.Avatar,{type:oe.AvatarType.ICON,size:qe,children:(0,ae.jsx)(O,{name:e.name})}):on(e)?(0,ae.jsx)(O,{name:e.name}):e&&"text"in e?(0,ae.jsx)(oe.Avatar,{type:oe.AvatarType.ICON,size:qe,children:e.text}):null}var on=e=>e?"name"in e:!1,Va=e=>on(e)&&e.name.startsWith("flag-");var se=({icon:e,image:r})=>{let t=je({icon:e,image:r});return t?{content:t}:void 0};var Ze=require("react/jsx-runtime"),Wa={canRenderType:"input-integer",render:e=>{let f=e,{id:r,title:t,description:n,help:i,icon:a,image:o,type:d,validationState:m,value:l,onChange:c}=f,p=k(f,["id","title","description","help","icon","image","type","validationState","value","onChange"]);return(0,Ze.jsx)(y,{id:r,label:t,description:n,validation:m,help:i,children:(0,Ze.jsx)(Ye.InputGroup,{addonStart:se({icon:a,image:o}),children:(0,Ze.jsx)(Ye.Input,s({id:r,name:r,type:"number",step:"1",pattern:"\\d+",value:l!=null?l:"",onChange:({target:{value:S}})=>{let h=Number.parseInt(S,10);c(Number.isNaN(h)?null:h)},onWheel:ie},p))})})}},sn=Wa;var dn=require("@transferwise/components");var ln=require("react/jsx-runtime"),Ga={canRenderType:"loading-indicator",render:({margin:e,size:r})=>(0,ln.jsx)(dn.Loader,{size:r,classNames:{"tw-loader":`tw-loader m-x-auto ${u(e)}`},"data-testid":"loading-indicator"})},mn=Ga;var cn=require("@transferwise/components");var Tr=require("react/jsx-runtime"),Ka={canRenderType:"markdown",render:({content:e,align:r,margin:t})=>(0,Tr.jsx)("div",{className:Z({align:r,margin:t}),children:(0,Tr.jsx)(cn.Markdown,{config:{link:{target:"_blank"}},children:e})})},pn=Ka;var Je=require("@transferwise/components"),un=require("react");var de=require("react/jsx-runtime"),$a={canRenderType:"modal",render:e=>(0,de.jsx)(qa,s({},e))},fn=$a;function qa({content:e,margin:r,trigger:t}){let[n,i]=(0,un.useState)(!1),{components:a,title:o}=e;return(0,de.jsxs)("div",{className:u(r),children:[(0,de.jsx)(Je.Button,{priority:"tertiary",block:!0,onClick:()=>i(!0),children:t.title}),(0,de.jsx)(Je.Modal,{scroll:"content",open:n,size:"lg",title:o,body:a,onClose:()=>i(!1)})]})}var Qe=require("@transferwise/components");var me=require("@transferwise/components");var Re=require("react/jsx-runtime");function le({icon:e,image:r}){return r!=null&&r.url?(0,Re.jsx)("img",{src:r.url,alt:r.accessibilityDescription||"",width:"64px"}):e&&"name"in e?(0,Re.jsx)(me.Avatar,{type:me.AvatarType.ICON,children:(0,Re.jsx)(O,{name:e.name})}):e&&"text"in e?(0,Re.jsx)(me.Avatar,{type:me.AvatarType.INITIALS,children:e.text}):null}var wn=require("react-intl");var gn=require("react-intl"),yn=(0,gn.defineMessages)({summary:{id:"df.wise.MultiSelect.summary",defaultMessage:"{first} and {count} more",description:"A summary of the multiple items selected. Showing the title of the first selected item, and the number of other items that have been selected."}});var hn=require("react");var ce=require("react/jsx-runtime"),ja={canRenderType:"input-multi-select",render:e=>(0,ce.jsx)(Za,s({},e))};function Za(e){let{formatMessage:r}=(0,wn.useIntl)(),[t,n]=(0,hn.useState)(),{id:i,autoComplete:a,description:o,disabled:d,help:m,options:l,placeholder:c,selectedIndices:p,title:f,validationState:S,onSelect:h}=e,R=t!=null?t:p,F=()=>{if(R.length>0)return R.length>1?r(yn.summary,{first:l[R[0]].title,count:R.length-1}):l[R[0]].title},C=(g,v)=>{let L=g>=0?l[g]:null;if(L===null)return null;if(v)return g===R[0]?F():void 0;let Ae={title:L.title,description:L.description,icon:(0,ce.jsx)(le,{icon:L.icon,image:L.image})};return(0,ce.jsx)(Qe.SelectInputOptionContent,s({},Ae))},x={autoComplete:a};return(0,ce.jsx)(y,{id:i,label:f,help:m,description:o,validation:S,children:(0,ce.jsx)(Qe.SelectInput,s({id:i,items:l.map((g,v)=>{var L,Ae,Gr;return{type:"option",value:v,filterMatchers:[...(L=g.keywords)!=null?L:[],(Ae=g.title)!=null?Ae:"",(Gr=g.description)!=null?Gr:""],disabled:g.disabled}}),disabled:d,placeholder:c,value:R,renderValue:C,multiple:!0,onChange:g=>{n(g)},onClose:()=>{t&&(h(t),n(void 0))}},x))})}var bn=ja;var Rn=require("@transferwise/components");var In=require("@transferwise/components"),Sn=j(Y());var pe=require("react/jsx-runtime");function Ya({id:e,children:r,label:t,description:n,help:i,validation:a}){let o=t&&i?(0,pe.jsx)(ze,{text:t,help:i}):t,d=n?`${e}-description`:void 0;return(0,pe.jsxs)("div",{className:(0,Sn.default)("form-group d-block",{"has-error":(a==null?void 0:a.status)==="invalid"}),children:[(0,pe.jsx)("label",{htmlFor:e,className:"control-label",children:o}),r,(a==null?void 0:a.status)==="invalid"&&(0,pe.jsx)(In.InlineAlert,{type:"negative",id:d,children:a.message})]})}var Xe=Ya;var xe=e=>Array.isArray(e)&&e.length>=1?e.join(","):"*",er=e=>Math.floor(e/1024),Cn=async(e,r)=>{let t=Qa(e),n=await Ja(e);return new File([n],r,{type:t})},Ja=async e=>(await fetch(e)).blob(),Qa=e=>{let t=/^data:(.+);/.exec(e);if(t&&t.length>1)return t[1]};var zr=require("react/jsx-runtime"),Xa={canRenderType:"input-upload-multi",render:e=>{let{id:r,accepts:t,help:n,title:i,description:a,disabled:o,maxSize:d,maxItems:m,uploadLabel:l,validationState:c,value:p,onInsertFile:f,onRemoveFile:S}=e,h=async C=>{let x=C.get("file");return f(p.length,x).then(g=>({id:g}))},R=async C=>S(p.findIndex(x=>x.id===C)),F=a?`${r}-description`:void 0;return(0,zr.jsx)(Xe,{id:r,label:i,description:a,validation:c,help:n,children:(0,zr.jsx)(Rn.UploadInput,{id:r,"aria-describedby":F,description:a,disabled:o,fileTypes:xe(t),maxFiles:m,multiple:!0,sizeLimit:d?er(d):void 0,uploadButtonTitle:l,onDeleteFile:R,onUploadFile:h})})}},xn=Xa;var tr=require("@transferwise/components");var rr=require("react/jsx-runtime"),eo={canRenderType:"input-number",render:e=>{let f=e,{id:r,title:t,description:n,help:i,icon:a,image:o,type:d,validationState:m,value:l,onChange:c}=f,p=k(f,["id","title","description","help","icon","image","type","validationState","value","onChange"]);return(0,rr.jsx)(y,{id:r,label:t,description:n,validation:m,help:i,children:(0,rr.jsx)(tr.InputGroup,{addonStart:se({icon:a,image:o}),children:(0,rr.jsx)(tr.Input,s({id:r,name:r,type:"number",value:l!=null?l:"",onChange:({target:{value:S}})=>{let h=Number.parseFloat(S);c(Number.isNaN(h)?null:h)},onWheel:ie},p))})})}},kn=eo;var Ln=require("react-intl");var Fn=require("@transferwise/components"),En=require("react");function vn(){let e=(0,En.useContext)(Fn.SnackbarContext);return e?e.createSnackbar:()=>{}}var nr=require("@transferwise/components"),An=j(Y());var Pn=require("react-intl"),Br=(0,Pn.defineMessages)({copy:{id:"df.wise.DynamicParagraph.copy",defaultMessage:"Copy",description:"Copy to clipboard button label."},copied:{id:"df.wise.DynamicParagraph.copied",defaultMessage:"Copied to clipboard",description:"Appears in a snackbar when the copy operation succeeds."}});var U=require("react/jsx-runtime"),ro={canRenderType:"paragraph",render:e=>(0,U.jsx)(to,s({},e))};function to({align:e,control:r,margin:t,text:n}){let i=Z({align:e,margin:t});return r==="copyable"?(0,U.jsx)(io,{className:i,align:e,text:n}):(0,U.jsx)(no,{className:i,text:n})}function no({text:e,className:r}){return(0,U.jsx)("p",{className:`np-text-body-large ${r}`,children:e})}function io({text:e,align:r,className:t}){let{formatMessage:n}=(0,Ln.useIntl)(),i=vn(),a=()=>{navigator.clipboard.writeText(e).then(()=>i({text:n(Br.copied)})).catch(()=>{})},o=Z({align:r,margin:"sm"});return(0,U.jsxs)("div",{className:t,children:[(0,U.jsx)(nr.Input,{type:"text",value:e,readOnly:!0,className:(0,An.default)("text-ellipsis",o)}),(0,U.jsx)(nr.Button,{block:!0,onClick:a,children:n(Br.copy)})]})}var Dn=ro;var D=require("@transferwise/components"),Nn=require("react"),Tn=require("@transferwise/icons"),zn=require("react-intl");var Mn=require("react-intl"),ke=(0,Mn.defineMessages)({addItemTitle:{id:"df.wise.ArraySchema.addItemTitle",defaultMessage:"Add Item",description:"Label on the button used to open a form to add an item"},addItem:{id:"df.wise.ArraySchema.addItem",defaultMessage:"Save",description:"Label on the add button used to submit a form that adds an item"},editItem:{id:"df.wise.ArraySchema.editItem",defaultMessage:"Save",description:"Label on the edit button used to submit a form that edits an item"},removeItem:{id:"df.wise.ArraySchema.removeItem",defaultMessage:"Remove",description:"Label on the remove button used to confirm deletion of an item"}});var Bn=j(Y());var b=require("react/jsx-runtime"),ao={canRenderType:"repeatable",render:e=>(0,b.jsx)(oo,s({},e))};function oo(e){let{addItemTitle:r,description:t,editableItem:n,editItemTitle:i,items:a,title:o,validationState:d,onEdit:m,onAdd:l,onSave:c,onRemove:p}=e,{formatMessage:f}=(0,zn.useIntl)(),[S,h]=(0,Nn.useState)(null),R=()=>{l(),h("add")},F=v=>{m(v),h("edit")},C=()=>{c()&&h(null)},x=()=>{p(),h(null)},g=()=>{h(null)};return(0,b.jsxs)(b.Fragment,{children:[o&&(0,b.jsx)(D.Header,{title:o}),t&&(0,b.jsx)("p",{children:t}),(0,b.jsxs)("div",{className:(0,Bn.default)("form-group",{"has-error":(d==null?void 0:d.status)==="invalid"}),children:[a==null?void 0:a.map((v,L)=>(0,b.jsx)(so,{item:v,onClick:()=>F(L)},v.id)),(0,b.jsx)(D.NavigationOption,{media:(0,b.jsx)(Tn.Plus,{}),title:r||f(ke.addItemTitle),showMediaAtAllSizes:!0,onClick:()=>R()}),(d==null?void 0:d.status)==="invalid"&&(0,b.jsx)(D.InlineAlert,{type:"negative",children:d.message})]}),(0,b.jsx)(D.Modal,{open:S!==null,title:(S==="add"?r:i)||f(ke.addItemTitle),body:(0,b.jsxs)(b.Fragment,{children:[(0,b.jsx)("div",{className:"m-b-2",children:n}),(0,b.jsxs)("div",{children:[(0,b.jsx)(D.Button,{priority:"primary",block:!0,className:"m-b-2",onClick:()=>C(),children:f(ke.addItem)}),(0,b.jsx)(D.Button,{priority:"secondary",type:"negative",block:!0,onClick:()=>x(),children:f(ke.removeItem)})]})]}),onClose:()=>g()})]})}function so({item:e,onClick:r}){return(0,b.jsx)(D.NavigationOption,{media:(0,b.jsx)(H,s({},e)),title:e.title,content:e.description,showMediaAtAllSizes:!0,onClick:r})}var On=ao;var K=require("@transferwise/components");var Un=require("react-intl");var Hn=require("react-intl"),Or=(0,Hn.defineMessages)({genericErrorRetryHint:{id:"df.wise.PersistAsyncSchema.genericError",defaultMessage:"Something went wrong, please try again.",description:"Generic error message for persist async schema"},genericError:{id:"df.wise.ErrorBoundary.errorAlert",defaultMessage:"Something went wrong.",description:"Generic error message for when something has gone wrong."},retry:{id:"df.wise.ErrorBoundary.retry",defaultMessage:"Retry",description:"Usually this follows the generic error and contains a link."}});var _n=require("@transferwise/components");var ar=require("react/jsx-runtime");function ir({state:e}){let r=(0,Un.useIntl)(),t={priority:"tertiary",size:"sm",style:{marginTop:"-2px",padding:"0",width:"auto",display:"inline"}};return(0,ar.jsxs)("p",{className:"m-t-2",children:[r.formatMessage(Or.genericError),"\xA0",(0,ar.jsx)(_n.Button,w(s({},t),{onClick:()=>{e.onRetry()},children:r.formatMessage(Or.retry)}))]})}var Wn=require("react");var Vn=require("react-intl"),or=(0,Vn.defineMessages)({loading:{id:"df.wise.SearchLayout.loading",defaultMessage:"Loading...",description:"A message shown to the user while their search is being processed, before results appear."}});var Gn=require("react-intl");var E=require("react/jsx-runtime");function mo({id:e,isLoading:r,margin:t,onChange:n,query:i,state:a,title:o}){let[d,m]=(0,Wn.useState)(!1),l=be(),{formatMessage:c}=(0,Gn.useIntl)();return(0,E.jsxs)("div",{className:u(t),children:[(0,E.jsx)(y,{id:e,description:"",validation:void 0,help:"",label:o,children:(0,E.jsx)(K.Input,{id:e,name:e,type:"text",value:i,className:"m-t-1",onChange:({currentTarget:{value:p}})=>{d||(m(!0),l("Search Started")),n(p)}})}),r?(0,E.jsx)(E.Fragment,{children:c(or.loading)}):(0,E.jsx)(lo,{state:a,onChange:n})]})}function lo({state:e,onChange:r}){switch(e.type){case"error":return(0,E.jsx)(ir,{state:e});case"results":return(0,E.jsx)(po,{state:e,onChange:r});case"noResults":return(0,E.jsx)(co,{state:e});case"pending":default:return null}}function co({state:e}){return(0,E.jsx)(K.Markdown,{className:"m-t-2",config:{link:{target:"_blank"}},children:e.message})}function po({state:e}){let r=be();return(0,E.jsx)(K.NavigationOptionsList,{children:e.results.map(t=>{let{icon:n,image:i}=t;return(0,E.jsx)(K.NavigationOption,{title:t.title,content:t.description,media:H({icon:n,image:i}),showMediaCircle:!1,showMediaAtAllSizes:!0,onClick:()=>{r("Search Result Selected",s({type:t.type},t.type==="action"?{actionId:t.id}:{})),t.onClick()}},JSON.stringify(t))})})}var Kn=mo;var sr=require("@transferwise/components"),$n=require("@transferwise/icons"),qn=require("react");var Hr=require("react-intl");var T=require("react/jsx-runtime");function uo({id:e,isLoading:r,margin:t,onChange:n,state:i,title:a}){let[o,d]=(0,qn.useState)(!1),m=be(),l=(0,Hr.useIntl)();return(0,T.jsx)("div",{className:u(t),children:(0,T.jsx)(y,{id:e,description:"",validation:void 0,help:"",label:a,children:(0,T.jsx)(sr.Typeahead,{id:"typeahead-input-id",intl:l,name:"typeahead-input-name",size:"md",maxHeight:100,footer:(0,T.jsx)(go,{state:i,isLoading:r}),multiple:!1,clearable:!1,addon:(0,T.jsx)($n.Search,{size:24}),options:i.type==="results"?i.results.map(fo):[],minQueryLength:1,onChange:c=>{if(c.length>0){let[p]=c,{value:f}=p;f&&(m("Search Result Selected",s({type:f.type},f.type==="action"?{actionId:f.id}:{})),f.onClick())}},onInputChange:c=>{o||(d(!0),m("Search Started")),n(c)}})})})}function fo(e){return{label:e.title,secondary:e.description,value:e,clearQueryOnSelect:e.type==="action",keepFocusOnSelect:e.type==="search"}}function go({state:e,isLoading:r}){let{formatMessage:t}=(0,Hr.useIntl)();return e.type==="noResults"?(0,T.jsx)(sr.Markdown,{className:"m-t-2 m-x-2",config:{link:{target:"_blank"}},children:e.message}):e.type==="error"?(0,T.jsx)("div",{className:"m-t-2 m-x-2",children:(0,T.jsx)(ir,{state:e})}):e.type==="pending"||r?(0,T.jsx)("p",{className:"m-t-2 m-x-2",children:t(or.loading)}):null}var jn=uo;var Ur=require("react/jsx-runtime"),yo={canRenderType:"search",render:e=>e.control==="inline"?(0,Ur.jsx)(jn,s({},e)):(0,Ur.jsx)(Kn,s({},e))},Zn=yo;var Yn=require("@transferwise/components");var _=require("react/jsx-runtime");function Jn(e){let{id:r,children:t,description:n,disabled:i,help:a,title:o,options:d,selectedIndex:m,validationState:l,onSelect:c}=e;return(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)(y,{id:r,label:o,help:a,description:n,validation:l,children:(0,_.jsx)("span",{children:(0,_.jsx)(Yn.RadioGroup,{name:r,radios:d.map((p,f)=>({label:p.title,value:f,secondary:p.description,disabled:p.disabled||i,avatar:(0,_.jsx)(le,{icon:p.icon,image:p.image})})),selectedValue:m!=null?m:void 0,onChange:c},`${r}-${m}`)})}),t]})}var Qn=require("@transferwise/components"),Xn=require("react");var V=require("react/jsx-runtime");function ei(e){let{id:r,children:t,description:n,disabled:i,help:a,title:o,options:d,selectedIndex:m,validationState:l,onSelect:c}=e;return(0,Xn.useEffect)(()=>{wo(m,d.length)||c(0)},[m,c,d.length]),(0,V.jsxs)(V.Fragment,{children:[(0,V.jsx)(y,{id:r,label:o,help:a,description:n,validation:l,children:(0,V.jsx)(Qn.Tabs,{name:r,selected:m!=null?m:0,tabs:d.map(p=>({title:p.title,content:(0,V.jsx)(V.Fragment,{}),disabled:p.disabled||i})),onTabSelect:c})}),t]})}var wo=(e,r)=>e!==null&&e>=0&&e<r;var dr=require("@transferwise/components");var W=require("react/jsx-runtime");function mr(e){let{id:r,autoComplete:t,children:n,description:i,disabled:a,help:o,title:d,options:m,placeholder:l,required:c,selectedIndex:p,validationState:f,onSelect:S}=e,h=m.map((C,x)=>{var g,v,L;return{type:"option",value:x,filterMatchers:[...(g=C.keywords)!=null?g:[],(v=C.title)!=null?v:"",(L=C.description)!=null?L:""],disabled:C.disabled}}),R=(C,x)=>{let g=C>=0?m[C]:null;if(g===null)return null;let v=x?{title:g.title,note:g.description,icon:je(g)}:{title:g.title,description:g.description,icon:(0,W.jsx)(le,{icon:g.icon,image:g.image})};return(0,W.jsx)(dr.SelectInputOptionContent,s({},v))},F={autoComplete:t};return(0,W.jsxs)(W.Fragment,{children:[(0,W.jsx)(y,{id:r,label:d,help:o,description:i,validation:f,children:(0,W.jsx)(dr.SelectInput,s({name:r,placeholder:l,items:h,disabled:a,value:p,renderValue:R,filterable:h.length>=8,onChange:S,onClear:c?void 0:()=>S(null)},F))}),n]})}var ri=require("react");var ti=require("@transferwise/components"),$=require("react/jsx-runtime");function ni(e){let{id:r,children:t,description:n,help:i,title:a,options:o,selectedIndex:d,validationState:m,onSelect:l}=e;return(0,ri.useEffect)(()=>{ho(d,o.length)||l(0)},[d,l,o.length]),(0,$.jsxs)($.Fragment,{children:[(0,$.jsx)(y,{id:r,label:a,help:i,description:n,validation:m,children:(0,$.jsx)(ti.SegmentedControl,{name:`${r}-segmented-control`,value:String(d),mode:"view",segments:o.map((c,p)=>({id:String(p),value:String(p),label:c.title,controls:`${r}-children`})),onChange:c=>l(Number(c))})}),(0,$.jsx)("div",{id:`${r}-children`,children:t})]})}var ho=(e,r)=>e!==null&&e>=0&&e<r;var X=require("react/jsx-runtime"),bo={canRenderType:"input-select",render:e=>{switch(e.control){case"radio":return(0,X.jsx)(Jn,s({},e));case"tab":return e.options.length>3?(0,X.jsx)(mr,s({},e)):(0,X.jsx)(ei,s({},e));case"segmented":return e.options.length>3?(0,X.jsx)(mr,s({},e)):(0,X.jsx)(ni,s({},e));case"select":default:return(0,X.jsx)(mr,s({},e))}}},ii=bo;var lr=require("@transferwise/components");var ue=require("react/jsx-runtime"),Io={canRenderType:"status-list",render:({margin:e,items:r,title:t})=>(0,ue.jsxs)("div",{className:u(e),children:[t?(0,ue.jsx)(lr.Header,{title:t,className:"m-b-2"}):null,r.map(({callToAction:n,description:i,icon:a,status:o,title:d})=>(0,ue.jsx)(lr.Summary,{title:d,description:i,icon:a&&"name"in a?(0,ue.jsx)(O,{name:a.name}):null,status:Co(o),action:So(n)},`${d}/${i||""}`))]})},ai=Io,So=e=>{if(!e)return;let{accessibilityDescription:r,href:t,title:n,onClick:i}=e;return t?{"aria-label":r,href:t,target:"_blank",text:n}:{"aria-label":r,text:n,onClick:i}},Co=e=>e==="not-done"?"notDone":e;var si=require("@transferwise/components");var M=require("@transferwise/components");var P=require("react/jsx-runtime");function Ro({control:e,inputProps:r}){switch(e){case"password":return(0,P.jsx)(_r,s({type:"password"},r));case"email":return(0,P.jsx)(_r,s({type:"email"},r));case"textarea":return(0,P.jsx)(xo,s({},r));case"numeric":return(0,P.jsx)(ko,s({type:"number"},r));case"phone-number":return(0,P.jsx)(Fo,s({},r));default:return(0,P.jsx)(_r,s({type:"text"},r))}}function _r(i){var a=i,{id:e,displayFormat:r,onChange:t}=a,n=k(a,["id","displayFormat","onChange"]);if(typeof r=="string"){let o=s({id:e,name:e,className:"form-control"},n);return(0,P.jsx)(M.InputWithDisplayFormat,s({displayPattern:r,onChange:d=>t(d)},o))}return(0,P.jsx)(M.Input,s({id:e,name:e,onChange:o=>t(o.target.value)},n))}function xo(i){var a=i,{id:e,displayFormat:r,onChange:t}=a,n=k(a,["id","displayFormat","onChange"]);let o=s({id:e,name:e},n);return typeof r=="string"?(0,P.jsx)(M.TextareaWithDisplayFormat,s({displayPattern:r,onChange:d=>t(d)},o)):(0,P.jsx)(M.TextArea,s({onChange:d=>t(d.target.value)},o))}function ko(i){var a=i,{id:e,displayFormat:r,onChange:t}=a,n=k(a,["id","displayFormat","onChange"]);let o=s({id:e,name:e,onWheel:ie},n);return typeof r=="string"?(0,P.jsx)(M.InputWithDisplayFormat,s({displayPattern:r,onChange:d=>t(Fr(d))},o)):(0,P.jsx)(M.Input,s({onChange:({target:{value:d}})=>t(Fr(d))},o))}function Fo(t){var n=t,{value:e}=n,r=k(n,["value"]);return(0,P.jsx)(M.PhoneNumberInput,s({initialValue:e},r))}var oi=Ro;var cr=require("react/jsx-runtime"),Eo={canRenderType:"input-text",render:e=>{let x=e,{id:r,control:t,title:n,description:i,help:a,error:o,icon:d,image:m,maxLength:l,minLength:c,type:p,validationState:f,value:S,onChange:h}=x,R=k(x,["id","control","title","description","help","error","icon","image","maxLength","minLength","type","validationState","value","onChange"]),F=S!=null?S:"",C=w(s({},R),{value:F,id:r,onChange:g=>{(F!=null?F:"")!==(g!=null?g:"")&&h(g)}});return(0,cr.jsx)(y,{id:r,label:n,description:i,validation:f,help:a,children:(0,cr.jsx)(si.InputGroup,{addonStart:se({icon:d,image:m}),children:(0,cr.jsx)(oi,{control:t,inputProps:C})})})}},di=Eo;var pr=require("@transferwise/components");var mi=()=>Math.random().toString(36).substring(2);var Fe=require("react/jsx-runtime"),li={canRenderType:"input-upload",render:e=>{let{id:r,accepts:t,title:n,description:i,disabled:a,maxSize:o,validationState:d,onUpload:m}=e,l=async p=>{let f=p.get("file");return m(f).then(()=>({id:mi()}))},c=async()=>{await m(null)};return(0,Fe.jsx)(Xe,{id:r,label:void 0,description:void 0,validation:d,children:(0,Fe.jsx)(pr.UploadInput,{id:r,description:i,disabled:a,fileTypes:xe(t),sizeLimit:o?er(o):void 0,uploadButtonTitle:n,onDeleteFile:c,onUploadFile:l})})}},ci={canRenderType:"input-upload",canRender:e=>e.control==="upload-large",render:e=>{let R=e,{id:r,accepts:t,control:n,title:i,description:a,disabled:o,help:d,maxSize:m,type:l,validationState:c,onUpload:p}=R,f=k(R,["id","accepts","control","title","description","disabled","help","maxSize","type","validationState","onUpload"]),S=w(s({},f),{id:r,name:r}),h=async(F,C)=>{try{let x=F?await Cn(F,C):null;await p(x)}catch(x){throw await p(null),x}};return(0,Fe.jsx)(y,{id:r,label:i,description:a,validation:c,help:d,children:(0,Fe.jsx)(pr.Upload,w(s({},S),{usAccept:xe(t),usDisabled:o,onSuccess:h,onFailure:async()=>p(null),onCancel:async()=>p(null)}))})}};var ur=require("@transferwise/components");var A=require("react/jsx-runtime"),vo={canRenderType:"review",render:({callToAction:e,control:r,fields:t,margin:n,title:i})=>{let a=Po(r);return(0,A.jsxs)("div",{className:u(n),children:[(i||e)&&(0,A.jsx)(ur.Header,{title:i!=null?i:"",action:Ao(e)}),(0,A.jsx)("div",{className:n,children:(0,A.jsx)(ur.DefinitionList,{layout:a,definitions:t.map(({label:o,value:d,help:m},l)=>({key:String(l),title:o,value:Lo(d,m,a)}))})})]})}},pi=vo,Po=e=>{switch(e){case"horizontal":case"horizontal-end-aligned":return"HORIZONTAL_RIGHT_ALIGNED";case"horizontal-start-aligned":return"HORIZONTAL_LEFT_ALIGNED";case"vertical-two-column":return"VERTICAL_TWO_COLUMN";case"vertical":case"vertical-one-column":default:return"VERTICAL_ONE_COLUMN"}},Lo=(e,r,t)=>r?t==="HORIZONTAL_RIGHT_ALIGNED"?(0,A.jsxs)(A.Fragment,{children:[(0,A.jsx)(we,{help:r})," ",e]}):(0,A.jsxs)(A.Fragment,{children:[e," ",(0,A.jsx)(we,{help:r})]}):e,Ao=e=>{if(!e)return;let{accessibilityDescription:r,href:t,title:n,onClick:i}=e;return t?{"aria-label":r,href:t,target:"_blank",text:n}:{"aria-label":r,text:n,onClick:a=>{a.preventDefault(),i()}}};var Ii=require("react");var fi=require("react-intl");var ui=require("react-intl"),Ee=(0,ui.defineMessages)({title:{id:"df.wise.ExternalConfirmation.title",defaultMessage:"Please confirm",description:"Heading for the confirmation screen."},description:{id:"df.wise.ExternalConfirmation.description",defaultMessage:"Please confirm you want to open **{origin}** in a new browser tab.",description:"Description for the confirmation screen."},open:{id:"df.wise.ExternalConfirmation.open",defaultMessage:"Open in new tab",description:"Button text confirming opening a new browser tab."},cancel:{id:"df.wise.ExternalConfirmation.cancel",defaultMessage:"Cancel",description:"Button text rejecting opening a new browser tab."}});var ve=require("@transferwise/components"),z=require("react/jsx-runtime");function gi({external:e,onClose:r}){let{formatMessage:t}=(0,fi.useIntl)();return(0,z.jsx)("div",{className:"df-box-renderer-fixed-width",children:(0,z.jsxs)("div",{className:"df-box-renderer-width-lg",children:[(0,z.jsx)("h2",{className:"text-xs-center m-b-5",children:t(Ee.title)}),(0,z.jsx)(ve.Markdown,{config:{link:{target:"_blank"}},className:"text-xs-center m-b-5",children:t(Ee.description,{origin:Do(e.url)})}),(0,z.jsx)("div",{className:"df-box-renderer-fixed-width",children:(0,z.jsxs)("div",{className:"df-box-renderer-width-lg",children:[(0,z.jsx)(ve.Button,{block:!0,className:"m-b-2",priority:"primary",size:"md",onClick:()=>{window.open(e.url),r()},children:t(Ee.open)}),(0,z.jsx)(ve.Button,{block:!0,className:"m-b-2",priority:"tertiary",size:"md",onClick:r,children:t(Ee.cancel)})]})})]})})}function Do(e){try{return new URL(e).origin}catch(r){return e}}var Pe=require("react");function yi(e){let[r,t]=(0,Pe.useState)(null),[n,i]=(0,Pe.useState)(!1),a=()=>i(!0);return(0,Pe.useEffect)(()=>{e&&(i(!1),t(window.open(e,"_blank")))},[e]),{requiresUserConfirmation:!!(e&&!r&&!n),dismissConfirmation:a}}var wi=require("@transferwise/components"),hi=require("@transferwise/icons"),ee=require("react/jsx-runtime");function Mo({title:e,onClick:r}){return(0,ee.jsx)("div",{className:"m-b-2",children:(0,ee.jsxs)("button",{type:"button",className:"df-back-btn",title:e,"aria-label":e,onClick:r,children:[(0,ee.jsx)("span",{className:"sr-only",children:e}),(0,ee.jsx)(wi.Avatar,{type:"icon",children:(0,ee.jsx)(hi.ArrowLeft,{size:"24"})})]})})}var bi=Mo;var fr=require("@transferwise/components");var G=require("react/jsx-runtime"),Si={canRenderType:"step",render:No};function No(e){let{back:r,description:t,error:n,external:i,loadingState:a,title:o,trackEvent:d,children:m}=e,l=(0,Ii.useMemo)(()=>({loadingState:a,trackEvent:d}),[a,d]),{requiresUserConfirmation:c,dismissConfirmation:p}=yi(i==null?void 0:i.url);return i!=null&&i.url&&c?(0,G.jsx)(gi,{external:i,onClose:p}):(0,G.jsxs)(xt,{value:l,children:[r?(0,G.jsx)(bi,s({},r)):null,o||t?(0,G.jsxs)("div",{className:"m-b-4",children:[o?(0,G.jsx)(fr.Title,{as:"h1",type:"title-section",className:"text-xs-center m-b-2",children:o}):void 0,t?(0,G.jsx)("p",{className:"text-xs-center np-text-body-large",children:t}):void 0]}):void 0,n?(0,G.jsx)(fr.Alert,{type:"negative",className:"m-b-2",message:n}):void 0,m]})}var Le=require("@transferwise/components"),Ci=j(Y());var I=require("react/jsx-runtime"),To={canRenderType:"list",render:({callToAction:e,margin:r,items:t,title:n})=>(0,I.jsxs)("div",{className:u(r),children:[(n||e)&&(0,I.jsx)(Le.Header,{as:"h2",title:n!=null?n:"",action:Oo(e)}),t.map(i=>(0,I.jsx)(zo,s({},i),i.title))]})},zo=({title:e,subtitle:r,value:t,subvalue:n,icon:i,image:a})=>(0,I.jsx)("label",{className:(0,Ci.default)("np-option p-a-2",{"np-option__sm-media":!0,"np-option__container-aligned":!0}),children:(0,I.jsxs)("div",{className:"media",children:[i||a?(0,I.jsx)("div",{className:"media-left",children:(0,I.jsx)(Bo,{image:a,icon:i})}):null,(0,I.jsxs)("div",{className:"media-body",children:[(0,I.jsxs)("div",{className:"d-flex justify-content-between",children:[(0,I.jsx)("h4",{className:"np-text-body-large-bold text-primary np-option__title",children:e}),(0,I.jsx)("h4",{className:"np-text-body-large-bold text-primary np-option__title",children:t})]}),(0,I.jsxs)("div",{className:"d-flex justify-content-between",children:[(0,I.jsx)(Le.Body,{className:"d-block np-option__body",children:r}),(0,I.jsx)(Le.Body,{className:"d-block np-option__body",children:n})]})]})]})},e),Bo=({icon:e,image:r})=>{if(e)return(0,I.jsx)("div",{className:"circle circle-sm text-primary",children:(0,I.jsx)(H,{icon:e,image:r})});if(r)return(0,I.jsx)("div",{className:"np-option__no-media-circle",children:(0,I.jsx)(H,{icon:e,image:r})})},Oo=e=>{if(!e)return;let{accessibilityDescription:r,title:t,onClick:n}=e;return e.type==="action"?{"aria-label":r,text:t,onClick:i=>{i.preventDefault(),n()}}:{"aria-label":r,href:e.href,target:"_blank",text:t}},Ri=To;var Vr=()=>[gt,Ct,Rt,Ft,Pt,Nt,Kt,$t,jt,Jt,Xt,nn,an,sn,ci,Ri,mn,pn,fn,bn,xn,kn,Dn,On,pi,Zn,ii,ai,di,li,Si];var fe=require("react/jsx-runtime"),ki=Vr();function Wr(e){let{customFetch:r=globalThis.fetch}=e,t=w(s({},e),{httpClient:r});return(0,fe.jsx)(ge.DynamicFlow,s({},t))}function Fi(e){let{customFetch:r=globalThis.fetch,renderers:t,onLog:n,onLink:i=Pi}=e,a=vi(r),o=(0,q.useMemo)(()=>[...t!=null?t:[],...ki],[t]),d=Li(n),m=w(s({},e),{httpClient:a,renderers:o,onLink:i,onLog:d});return(0,fe.jsx)(Ne,{httpClient:a,children:(0,fe.jsx)(ge.DynamicFlowCoreRevamp,s({},m))})}var Ei=(0,q.forwardRef)(function(r,t){let{customFetch:n=globalThis.fetch,renderers:i,onLog:a,onLink:o=Pi}=r,d=vi(n),m=(0,q.useMemo)(()=>[...i!=null?i:[],...ki],[i]),l=Li(a),c=w(s({},r),{httpClient:d,renderers:m,onLink:o,onLog:l});return(0,fe.jsx)(Ne,{httpClient:d,children:(0,fe.jsx)(ge.DynamicFragmentCore,w(s({},c),{ref:t}))})}),vi=e=>{let{locale:r}=(0,xi.useIntl)();return(0,q.useCallback)(async(t,n={})=>{let i=new Headers(n.headers);return i.set("accept-language",r),e(t,w(s({},n),{credentials:"include",headers:i}))},[e,r])},Pi=e=>{var r;try{return!!((r=window==null?void 0:window.open)==null?void 0:r.call(window,e,"_blank"))}catch(t){return!1}},Li=e=>(0,q.useMemo)(()=>(r,t,n)=>{r!=="info"&&(e==null||e(r,t,n))},[e]);
|
|
2
2
|
/*! Bundled license information:
|
|
3
3
|
|
|
4
4
|
classnames/index.js:
|
package/build/main.mjs
CHANGED
|
@@ -1025,16 +1025,16 @@ var mapStatusToSentiment = (validation) => {
|
|
|
1025
1025
|
};
|
|
1026
1026
|
var FieldInput_default = FieldInput;
|
|
1027
1027
|
|
|
1028
|
-
// ../renderers/src/
|
|
1028
|
+
// ../renderers/src/CheckboxInputRenderer.tsx
|
|
1029
1029
|
import { Checkbox } from "@transferwise/components";
|
|
1030
1030
|
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
1031
|
-
var
|
|
1032
|
-
canRenderType: "input-
|
|
1031
|
+
var CheckboxInputRenderer = {
|
|
1032
|
+
canRenderType: "input-checkbox",
|
|
1033
1033
|
render: (props) => {
|
|
1034
1034
|
const _a = props, {
|
|
1035
1035
|
id,
|
|
1036
1036
|
control,
|
|
1037
|
-
|
|
1037
|
+
title = "",
|
|
1038
1038
|
description,
|
|
1039
1039
|
help,
|
|
1040
1040
|
type,
|
|
@@ -1043,18 +1043,18 @@ var BooleanInputRenderer = {
|
|
|
1043
1043
|
} = _a, rest = __objRest(_a, [
|
|
1044
1044
|
"id",
|
|
1045
1045
|
"control",
|
|
1046
|
-
"
|
|
1046
|
+
"title",
|
|
1047
1047
|
"description",
|
|
1048
1048
|
"help",
|
|
1049
1049
|
"type",
|
|
1050
1050
|
"validationState",
|
|
1051
1051
|
"value"
|
|
1052
1052
|
]);
|
|
1053
|
-
const checkboxProps = __spreadProps(__spreadValues({}, rest), { label, secondary: description, checked: value });
|
|
1053
|
+
const checkboxProps = __spreadProps(__spreadValues({}, rest), { label: title, secondary: description, checked: value });
|
|
1054
1054
|
return /* @__PURE__ */ jsx6(FieldInput_default, { id, label: "", description: "", validation: validationState, help, children: /* @__PURE__ */ jsx6(Checkbox, __spreadValues({ id }, checkboxProps)) });
|
|
1055
1055
|
}
|
|
1056
1056
|
};
|
|
1057
|
-
var
|
|
1057
|
+
var CheckboxInputRenderer_default = CheckboxInputRenderer;
|
|
1058
1058
|
|
|
1059
1059
|
// ../renderers/src/BoxRenderer.tsx
|
|
1060
1060
|
var import_classnames = __toESM(require_classnames());
|
|
@@ -1275,19 +1275,19 @@ var DateInputRenderer = {
|
|
|
1275
1275
|
const _a = props, {
|
|
1276
1276
|
id,
|
|
1277
1277
|
control,
|
|
1278
|
-
label,
|
|
1279
1278
|
description,
|
|
1280
1279
|
type,
|
|
1281
1280
|
help,
|
|
1281
|
+
title,
|
|
1282
1282
|
validationState,
|
|
1283
1283
|
value: initialValue
|
|
1284
1284
|
} = _a, rest = __objRest(_a, [
|
|
1285
1285
|
"id",
|
|
1286
1286
|
"control",
|
|
1287
|
-
"label",
|
|
1288
1287
|
"description",
|
|
1289
1288
|
"type",
|
|
1290
1289
|
"help",
|
|
1290
|
+
"title",
|
|
1291
1291
|
"validationState",
|
|
1292
1292
|
"value"
|
|
1293
1293
|
]);
|
|
@@ -1297,7 +1297,7 @@ var DateInputRenderer = {
|
|
|
1297
1297
|
FieldInput_default,
|
|
1298
1298
|
{
|
|
1299
1299
|
id,
|
|
1300
|
-
label,
|
|
1300
|
+
label: title,
|
|
1301
1301
|
description,
|
|
1302
1302
|
validation: validationState,
|
|
1303
1303
|
help,
|
|
@@ -1430,10 +1430,9 @@ var FormRenderer_default = FormRenderer;
|
|
|
1430
1430
|
import { Header as Header2 } from "@transferwise/components";
|
|
1431
1431
|
import { jsx as jsx20, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
1432
1432
|
var FormSectionRenderer = {
|
|
1433
|
-
canRenderType: "
|
|
1433
|
+
canRenderType: "section",
|
|
1434
1434
|
render: ({ title, description, children }) => /* @__PURE__ */ jsxs5("fieldset", { children: [
|
|
1435
|
-
title &&
|
|
1436
|
-
/* @__PURE__ */ jsx20(
|
|
1435
|
+
title && /* @__PURE__ */ jsx20(
|
|
1437
1436
|
Header2,
|
|
1438
1437
|
{
|
|
1439
1438
|
as: "h2",
|
|
@@ -1642,7 +1641,7 @@ var IntegerInputRenderer = {
|
|
|
1642
1641
|
render: (props) => {
|
|
1643
1642
|
const _a = props, {
|
|
1644
1643
|
id,
|
|
1645
|
-
|
|
1644
|
+
title,
|
|
1646
1645
|
description,
|
|
1647
1646
|
help,
|
|
1648
1647
|
icon,
|
|
@@ -1653,7 +1652,7 @@ var IntegerInputRenderer = {
|
|
|
1653
1652
|
onChange
|
|
1654
1653
|
} = _a, rest = __objRest(_a, [
|
|
1655
1654
|
"id",
|
|
1656
|
-
"
|
|
1655
|
+
"title",
|
|
1657
1656
|
"description",
|
|
1658
1657
|
"help",
|
|
1659
1658
|
"icon",
|
|
@@ -1667,7 +1666,7 @@ var IntegerInputRenderer = {
|
|
|
1667
1666
|
FieldInput_default,
|
|
1668
1667
|
{
|
|
1669
1668
|
id,
|
|
1670
|
-
label,
|
|
1669
|
+
label: title,
|
|
1671
1670
|
description,
|
|
1672
1671
|
validation: validationState,
|
|
1673
1672
|
help,
|
|
@@ -1793,11 +1792,11 @@ function MultiSelectInputRendererComponent(props) {
|
|
|
1793
1792
|
autoComplete,
|
|
1794
1793
|
description,
|
|
1795
1794
|
disabled,
|
|
1796
|
-
label,
|
|
1797
1795
|
help,
|
|
1798
1796
|
options,
|
|
1799
1797
|
placeholder,
|
|
1800
1798
|
selectedIndices,
|
|
1799
|
+
title,
|
|
1801
1800
|
validationState,
|
|
1802
1801
|
onSelect
|
|
1803
1802
|
} = props;
|
|
@@ -1834,7 +1833,7 @@ function MultiSelectInputRendererComponent(props) {
|
|
|
1834
1833
|
FieldInput_default,
|
|
1835
1834
|
{
|
|
1836
1835
|
id,
|
|
1837
|
-
label,
|
|
1836
|
+
label: title,
|
|
1838
1837
|
help,
|
|
1839
1838
|
description,
|
|
1840
1839
|
validation: validationState,
|
|
@@ -1930,9 +1929,6 @@ var getFileType = (base64Url) => {
|
|
|
1930
1929
|
return void 0;
|
|
1931
1930
|
};
|
|
1932
1931
|
|
|
1933
|
-
// ../renderers/src/utils/getRandomId.ts
|
|
1934
|
-
var getRandomId = () => Math.random().toString(36).substring(2);
|
|
1935
|
-
|
|
1936
1932
|
// ../renderers/src/MultiUploadInputRenderer.tsx
|
|
1937
1933
|
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
1938
1934
|
var MultiUploadInputRenderer = {
|
|
@@ -1942,30 +1938,28 @@ var MultiUploadInputRenderer = {
|
|
|
1942
1938
|
id,
|
|
1943
1939
|
accepts,
|
|
1944
1940
|
help,
|
|
1945
|
-
|
|
1941
|
+
title,
|
|
1946
1942
|
description,
|
|
1947
1943
|
disabled,
|
|
1948
1944
|
maxSize,
|
|
1949
1945
|
maxItems,
|
|
1950
1946
|
uploadLabel,
|
|
1951
1947
|
validationState,
|
|
1952
|
-
|
|
1953
|
-
|
|
1948
|
+
value,
|
|
1949
|
+
onInsertFile,
|
|
1950
|
+
onRemoveFile
|
|
1954
1951
|
} = props;
|
|
1955
1952
|
const onUploadFile = async (formData) => {
|
|
1956
1953
|
const file = formData.get("file");
|
|
1957
|
-
|
|
1958
|
-
return onUpload(file, fileId).then(() => ({
|
|
1959
|
-
id: fileId
|
|
1960
|
-
}));
|
|
1954
|
+
return onInsertFile(value.length, file).then((newId) => ({ id: newId }));
|
|
1961
1955
|
};
|
|
1962
|
-
const onDeleteFile = async (fileId) =>
|
|
1956
|
+
const onDeleteFile = async (fileId) => onRemoveFile(value.findIndex((file) => file.id === fileId));
|
|
1963
1957
|
const descriptionId = description ? `${id}-description` : void 0;
|
|
1964
1958
|
return /* @__PURE__ */ jsx32(
|
|
1965
1959
|
UploadFieldInput_default,
|
|
1966
1960
|
{
|
|
1967
1961
|
id,
|
|
1968
|
-
label,
|
|
1962
|
+
label: title,
|
|
1969
1963
|
description,
|
|
1970
1964
|
validation: validationState,
|
|
1971
1965
|
help,
|
|
@@ -1999,7 +1993,7 @@ var NumberInputRenderer = {
|
|
|
1999
1993
|
render: (props) => {
|
|
2000
1994
|
const _a = props, {
|
|
2001
1995
|
id,
|
|
2002
|
-
|
|
1996
|
+
title,
|
|
2003
1997
|
description,
|
|
2004
1998
|
help,
|
|
2005
1999
|
icon,
|
|
@@ -2010,7 +2004,7 @@ var NumberInputRenderer = {
|
|
|
2010
2004
|
onChange
|
|
2011
2005
|
} = _a, rest = __objRest(_a, [
|
|
2012
2006
|
"id",
|
|
2013
|
-
"
|
|
2007
|
+
"title",
|
|
2014
2008
|
"description",
|
|
2015
2009
|
"help",
|
|
2016
2010
|
"icon",
|
|
@@ -2024,7 +2018,7 @@ var NumberInputRenderer = {
|
|
|
2024
2018
|
FieldInput_default,
|
|
2025
2019
|
{
|
|
2026
2020
|
id,
|
|
2027
|
-
label,
|
|
2021
|
+
label: title,
|
|
2028
2022
|
description,
|
|
2029
2023
|
validation: validationState,
|
|
2030
2024
|
help,
|
|
@@ -2493,7 +2487,7 @@ function RadioInputRendererComponent(props) {
|
|
|
2493
2487
|
description,
|
|
2494
2488
|
disabled,
|
|
2495
2489
|
help,
|
|
2496
|
-
|
|
2490
|
+
title,
|
|
2497
2491
|
options,
|
|
2498
2492
|
selectedIndex,
|
|
2499
2493
|
validationState,
|
|
@@ -2504,7 +2498,7 @@ function RadioInputRendererComponent(props) {
|
|
|
2504
2498
|
FieldInput_default,
|
|
2505
2499
|
{
|
|
2506
2500
|
id,
|
|
2507
|
-
label,
|
|
2501
|
+
label: title,
|
|
2508
2502
|
help,
|
|
2509
2503
|
description,
|
|
2510
2504
|
validation: validationState,
|
|
@@ -2541,7 +2535,7 @@ function TabInputRendererComponent(props) {
|
|
|
2541
2535
|
description,
|
|
2542
2536
|
disabled,
|
|
2543
2537
|
help,
|
|
2544
|
-
|
|
2538
|
+
title,
|
|
2545
2539
|
options,
|
|
2546
2540
|
selectedIndex,
|
|
2547
2541
|
validationState,
|
|
@@ -2557,7 +2551,7 @@ function TabInputRendererComponent(props) {
|
|
|
2557
2551
|
FieldInput_default,
|
|
2558
2552
|
{
|
|
2559
2553
|
id,
|
|
2560
|
-
label,
|
|
2554
|
+
label: title,
|
|
2561
2555
|
help,
|
|
2562
2556
|
description,
|
|
2563
2557
|
validation: validationState,
|
|
@@ -2594,7 +2588,7 @@ function SelectInputRendererComponent(props) {
|
|
|
2594
2588
|
description,
|
|
2595
2589
|
disabled,
|
|
2596
2590
|
help,
|
|
2597
|
-
|
|
2591
|
+
title,
|
|
2598
2592
|
options,
|
|
2599
2593
|
placeholder,
|
|
2600
2594
|
required,
|
|
@@ -2635,7 +2629,7 @@ function SelectInputRendererComponent(props) {
|
|
|
2635
2629
|
FieldInput_default,
|
|
2636
2630
|
{
|
|
2637
2631
|
id,
|
|
2638
|
-
label,
|
|
2632
|
+
label: title,
|
|
2639
2633
|
help,
|
|
2640
2634
|
description,
|
|
2641
2635
|
validation: validationState,
|
|
@@ -2669,7 +2663,7 @@ function SegmentedInputRendererComponent(props) {
|
|
|
2669
2663
|
children,
|
|
2670
2664
|
description,
|
|
2671
2665
|
help,
|
|
2672
|
-
|
|
2666
|
+
title,
|
|
2673
2667
|
options,
|
|
2674
2668
|
selectedIndex,
|
|
2675
2669
|
validationState,
|
|
@@ -2685,7 +2679,7 @@ function SegmentedInputRendererComponent(props) {
|
|
|
2685
2679
|
FieldInput_default,
|
|
2686
2680
|
{
|
|
2687
2681
|
id,
|
|
2688
|
-
label,
|
|
2682
|
+
label: title,
|
|
2689
2683
|
help,
|
|
2690
2684
|
description,
|
|
2691
2685
|
validation: validationState,
|
|
@@ -2864,7 +2858,7 @@ var TextInputRenderer = {
|
|
|
2864
2858
|
const _a = props, {
|
|
2865
2859
|
id,
|
|
2866
2860
|
control,
|
|
2867
|
-
|
|
2861
|
+
title,
|
|
2868
2862
|
description,
|
|
2869
2863
|
help,
|
|
2870
2864
|
error,
|
|
@@ -2879,7 +2873,7 @@ var TextInputRenderer = {
|
|
|
2879
2873
|
} = _a, rest = __objRest(_a, [
|
|
2880
2874
|
"id",
|
|
2881
2875
|
"control",
|
|
2882
|
-
"
|
|
2876
|
+
"title",
|
|
2883
2877
|
"description",
|
|
2884
2878
|
"help",
|
|
2885
2879
|
"error",
|
|
@@ -2906,7 +2900,7 @@ var TextInputRenderer = {
|
|
|
2906
2900
|
FieldInput_default,
|
|
2907
2901
|
{
|
|
2908
2902
|
id,
|
|
2909
|
-
label,
|
|
2903
|
+
label: title,
|
|
2910
2904
|
description,
|
|
2911
2905
|
validation: validationState,
|
|
2912
2906
|
help,
|
|
@@ -2919,11 +2913,16 @@ var TextInputRenderer_default = TextInputRenderer;
|
|
|
2919
2913
|
|
|
2920
2914
|
// ../renderers/src/UploadInputRenderer.tsx
|
|
2921
2915
|
import { Upload, UploadInput as UploadInput2 } from "@transferwise/components";
|
|
2916
|
+
|
|
2917
|
+
// ../renderers/src/utils/getRandomId.ts
|
|
2918
|
+
var getRandomId = () => Math.random().toString(36).substring(2);
|
|
2919
|
+
|
|
2920
|
+
// ../renderers/src/UploadInputRenderer.tsx
|
|
2922
2921
|
import { jsx as jsx48 } from "react/jsx-runtime";
|
|
2923
2922
|
var UploadInputRenderer = {
|
|
2924
2923
|
canRenderType: "input-upload",
|
|
2925
2924
|
render: (props) => {
|
|
2926
|
-
const { id, accepts,
|
|
2925
|
+
const { id, accepts, title, description, disabled, maxSize, validationState, onUpload } = props;
|
|
2927
2926
|
const onUploadFile = async (formData) => {
|
|
2928
2927
|
const file = formData.get("file");
|
|
2929
2928
|
return onUpload(file).then(() => ({
|
|
@@ -2950,7 +2949,7 @@ var UploadInputRenderer = {
|
|
|
2950
2949
|
disabled,
|
|
2951
2950
|
fileTypes: getAcceptsString(accepts),
|
|
2952
2951
|
sizeLimit: maxSize ? toKilobytes(maxSize) : void 0,
|
|
2953
|
-
uploadButtonTitle:
|
|
2952
|
+
uploadButtonTitle: title,
|
|
2954
2953
|
onDeleteFile,
|
|
2955
2954
|
onUploadFile
|
|
2956
2955
|
}
|
|
@@ -2968,7 +2967,7 @@ var LargeUploadRenderer = {
|
|
|
2968
2967
|
id,
|
|
2969
2968
|
accepts,
|
|
2970
2969
|
control,
|
|
2971
|
-
|
|
2970
|
+
title,
|
|
2972
2971
|
description,
|
|
2973
2972
|
disabled,
|
|
2974
2973
|
help,
|
|
@@ -2980,7 +2979,7 @@ var LargeUploadRenderer = {
|
|
|
2980
2979
|
"id",
|
|
2981
2980
|
"accepts",
|
|
2982
2981
|
"control",
|
|
2983
|
-
"
|
|
2982
|
+
"title",
|
|
2984
2983
|
"description",
|
|
2985
2984
|
"disabled",
|
|
2986
2985
|
"help",
|
|
@@ -3003,7 +3002,7 @@ var LargeUploadRenderer = {
|
|
|
3003
3002
|
FieldInput_default,
|
|
3004
3003
|
{
|
|
3005
3004
|
id,
|
|
3006
|
-
label,
|
|
3005
|
+
label: title,
|
|
3007
3006
|
description,
|
|
3008
3007
|
validation: validationState,
|
|
3009
3008
|
help,
|
|
@@ -3299,7 +3298,7 @@ var ListRenderer_default = ListRenderer;
|
|
|
3299
3298
|
// ../renderers/src/getWiseRenderers.ts
|
|
3300
3299
|
var getWiseRenderers = () => [
|
|
3301
3300
|
AlertRenderer_default,
|
|
3302
|
-
|
|
3301
|
+
CheckboxInputRenderer_default,
|
|
3303
3302
|
BoxRenderer_default,
|
|
3304
3303
|
ButtonRenderer_default,
|
|
3305
3304
|
ColumnsRenderer_default,
|
package/build/types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { makeHttpClient as makeCustomFetch } from '@wise/dynamic-flow-client';
|
|
2
2
|
export type { DynamicFlowProps, DynamicFragmentController, Step, InitialAction, } from '@wise/dynamic-flow-client';
|
|
3
|
-
export type { Renderer, Renderers, AlertRendererProps,
|
|
3
|
+
export type { Renderer, Renderers, AlertRendererProps, CheckboxInputRendererProps, BoxRendererProps, ButtonRendererProps, ColumnsRendererProps, DateInputRendererProps, DecisionRendererProps, DividerRendererProps, FormRendererProps, SectionRendererProps, HeadingRendererProps, HiddenRendererProps, ImageRendererProps, InstructionsRendererProps, IntegerInputRendererProps, LoadingIndicatorRendererProps, MarkdownRendererProps, ModalRendererProps, MultiSelectInputRendererProps, MultiUploadInputRendererProps, NumberInputRendererProps, ParagraphRendererProps, RepeatableRendererProps, ReviewRendererProps, SearchRendererProps, SelectInputRendererProps, StatusListRendererProps, StepRendererProps, TextInputRendererProps, UploadInputRendererProps, } from '@wise/dynamic-flow-types/build/renderers';
|
|
4
4
|
export { JsonSchemaForm, isValidSchema } from '@wise/dynamic-flow-client';
|
|
5
5
|
export { default as translations } from './i18n';
|
|
6
6
|
export type { DynamicFlowLegacyProps as WiseDynamicFlowProps, DynamicFlowLegacyProps, DynamicFlowRevampProps, } from './dynamicFlow/DynamicFlow';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/dynamic-flow-client-internal",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-exp-next-min-fb61ff2",
|
|
4
4
|
"description": "Dynamic Flow web client for Wise",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./build/main.min.js",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"webpack": "5.97.1",
|
|
85
85
|
"@wise/dynamic-flow-fixtures": "0.0.1",
|
|
86
86
|
"@wise/dynamic-flow-renderers": "0.0.0",
|
|
87
|
-
"@wise/dynamic-flow-types": "
|
|
87
|
+
"@wise/dynamic-flow-types": "3.0.0-exp-next-min-fb61ff2"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
90
|
"@transferwise/components": "^46.31",
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
100
|
"classnames": "2.5.1",
|
|
101
|
-
"@wise/dynamic-flow-
|
|
102
|
-
"@wise/dynamic-flow-
|
|
101
|
+
"@wise/dynamic-flow-client": "4.0.0-exp-next-min-fb61ff2",
|
|
102
|
+
"@wise/dynamic-flow-types": "3.0.0-exp-next-min-fb61ff2"
|
|
103
103
|
},
|
|
104
104
|
"scripts": {
|
|
105
105
|
"dev": "pnpm build:visual-tests && storybook dev -p 3005",
|