@wise/dynamic-flow-client-internal 4.35.0 → 4.35.1
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/i18n/it.json +1 -1
- package/build/main.css +3 -2
- package/build/main.js +10 -4
- package/build/main.mjs +10 -4
- package/package.json +6 -5
package/build/i18n/it.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"df.wise.filter.noResults": "Nessun risultato",
|
|
37
37
|
"df.wise.filter.placeholder": "Inizia a digitare per cercare",
|
|
38
38
|
"df.wise.filter.results": "Risultati della ricerca",
|
|
39
|
-
"df.wise.group.all": "
|
|
39
|
+
"df.wise.group.all": "Tutti",
|
|
40
40
|
"df.wise.group.currencies-with-account-details": "Valute con estremi del conto",
|
|
41
41
|
"df.wise.group.popular": "Popolari",
|
|
42
42
|
"df.wise.group.recent": "Recenti"
|
package/build/main.css
CHANGED
|
@@ -248,7 +248,7 @@ button.df-back-btn {
|
|
|
248
248
|
}
|
|
249
249
|
.df-columns-renderer-container {
|
|
250
250
|
display: flex;
|
|
251
|
-
gap: var(--size-
|
|
251
|
+
gap: var(--size-4);
|
|
252
252
|
flex-direction: column;
|
|
253
253
|
}
|
|
254
254
|
.df-columns-renderer-column,
|
|
@@ -260,9 +260,10 @@ button.df-back-btn {
|
|
|
260
260
|
.df-columns-renderer-bias-end .df-columns-renderer-column:nth-child(2) {
|
|
261
261
|
flex: 2;
|
|
262
262
|
}
|
|
263
|
-
@media (width >=
|
|
263
|
+
@media (width >=768px) {
|
|
264
264
|
.df-columns-renderer-container {
|
|
265
265
|
flex-direction: row;
|
|
266
|
+
gap: var(--size-16);
|
|
266
267
|
}
|
|
267
268
|
}
|
|
268
269
|
.df-image .df-illustration {
|
package/build/main.js
CHANGED
|
@@ -1602,7 +1602,7 @@ var MarkdownRenderer = {
|
|
|
1602
1602
|
render: ({ content, align, margin, size }) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("div", { className: getTextAlignmentAndMargin({ align, margin }), children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
1603
1603
|
import_components23.Markdown,
|
|
1604
1604
|
{
|
|
1605
|
-
className:
|
|
1605
|
+
className: ["xs", "sm"].includes(size) ? "np-text-body-default" : "np-text-body-large",
|
|
1606
1606
|
config: { link: { target: "_blank" } },
|
|
1607
1607
|
children: content
|
|
1608
1608
|
}
|
|
@@ -2060,7 +2060,13 @@ var ParagraphRenderer = {
|
|
|
2060
2060
|
};
|
|
2061
2061
|
function Paragraph({ align, control, margin, size, text }) {
|
|
2062
2062
|
const className = getTextAlignmentAndMargin({ align, margin });
|
|
2063
|
-
return control === "copyable" ? /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(CopyableParagraph, { className, align, text }) : /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2063
|
+
return control === "copyable" ? /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(CopyableParagraph, { className, align, text }) : /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2064
|
+
"p",
|
|
2065
|
+
{
|
|
2066
|
+
className: `${["xs", "sm"].includes(size) ? "np-text-body-default" : "np-text-body-large"} ${className}`,
|
|
2067
|
+
children: text
|
|
2068
|
+
}
|
|
2069
|
+
);
|
|
2064
2070
|
}
|
|
2065
2071
|
function CopyableParagraph({
|
|
2066
2072
|
text,
|
|
@@ -4063,7 +4069,7 @@ var it_default = {
|
|
|
4063
4069
|
"df.wise.filter.noResults": "Nessun risultato",
|
|
4064
4070
|
"df.wise.filter.placeholder": "Inizia a digitare per cercare",
|
|
4065
4071
|
"df.wise.filter.results": "Risultati della ricerca",
|
|
4066
|
-
"df.wise.group.all": "
|
|
4072
|
+
"df.wise.group.all": "Tutti",
|
|
4067
4073
|
"df.wise.group.currencies-with-account-details": "Valute con estremi del conto",
|
|
4068
4074
|
"df.wise.group.popular": "Popolari",
|
|
4069
4075
|
"df.wise.group.recent": "Recenti"
|
|
@@ -4558,7 +4564,7 @@ var import_dynamic_flow_client2 = require("@wise/dynamic-flow-client");
|
|
|
4558
4564
|
// src/dynamicFlow/telemetry/app-version.ts
|
|
4559
4565
|
var appVersion = (
|
|
4560
4566
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
|
4561
|
-
typeof process !== "undefined" ? "4.35.
|
|
4567
|
+
typeof process !== "undefined" ? "4.35.1" : "0.0.0"
|
|
4562
4568
|
);
|
|
4563
4569
|
|
|
4564
4570
|
// src/dynamicFlow/telemetry/getLogEvent.ts
|
package/build/main.mjs
CHANGED
|
@@ -1562,7 +1562,7 @@ var MarkdownRenderer = {
|
|
|
1562
1562
|
render: ({ content, align, margin, size }) => /* @__PURE__ */ jsx42("div", { className: getTextAlignmentAndMargin({ align, margin }), children: /* @__PURE__ */ jsx42(
|
|
1563
1563
|
Markdown3,
|
|
1564
1564
|
{
|
|
1565
|
-
className:
|
|
1565
|
+
className: ["xs", "sm"].includes(size) ? "np-text-body-default" : "np-text-body-large",
|
|
1566
1566
|
config: { link: { target: "_blank" } },
|
|
1567
1567
|
children: content
|
|
1568
1568
|
}
|
|
@@ -2020,7 +2020,13 @@ var ParagraphRenderer = {
|
|
|
2020
2020
|
};
|
|
2021
2021
|
function Paragraph({ align, control, margin, size, text }) {
|
|
2022
2022
|
const className = getTextAlignmentAndMargin({ align, margin });
|
|
2023
|
-
return control === "copyable" ? /* @__PURE__ */ jsx50(CopyableParagraph, { className, align, text }) : /* @__PURE__ */ jsx50(
|
|
2023
|
+
return control === "copyable" ? /* @__PURE__ */ jsx50(CopyableParagraph, { className, align, text }) : /* @__PURE__ */ jsx50(
|
|
2024
|
+
"p",
|
|
2025
|
+
{
|
|
2026
|
+
className: `${["xs", "sm"].includes(size) ? "np-text-body-default" : "np-text-body-large"} ${className}`,
|
|
2027
|
+
children: text
|
|
2028
|
+
}
|
|
2029
|
+
);
|
|
2024
2030
|
}
|
|
2025
2031
|
function CopyableParagraph({
|
|
2026
2032
|
text,
|
|
@@ -4029,7 +4035,7 @@ var it_default = {
|
|
|
4029
4035
|
"df.wise.filter.noResults": "Nessun risultato",
|
|
4030
4036
|
"df.wise.filter.placeholder": "Inizia a digitare per cercare",
|
|
4031
4037
|
"df.wise.filter.results": "Risultati della ricerca",
|
|
4032
|
-
"df.wise.group.all": "
|
|
4038
|
+
"df.wise.group.all": "Tutti",
|
|
4033
4039
|
"df.wise.group.currencies-with-account-details": "Valute con estremi del conto",
|
|
4034
4040
|
"df.wise.group.popular": "Popolari",
|
|
4035
4041
|
"df.wise.group.recent": "Recenti"
|
|
@@ -4528,7 +4534,7 @@ import {
|
|
|
4528
4534
|
// src/dynamicFlow/telemetry/app-version.ts
|
|
4529
4535
|
var appVersion = (
|
|
4530
4536
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
|
4531
|
-
typeof process !== "undefined" ? "4.35.
|
|
4537
|
+
typeof process !== "undefined" ? "4.35.1" : "0.0.0"
|
|
4532
4538
|
);
|
|
4533
4539
|
|
|
4534
4540
|
// src/dynamicFlow/telemetry/getLogEvent.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/dynamic-flow-client-internal",
|
|
3
|
-
"version": "4.35.
|
|
3
|
+
"version": "4.35.1",
|
|
4
4
|
"description": "Dynamic Flow web client for Wise",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./build/main.js",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@testing-library/jest-dom": "6.9.1",
|
|
44
44
|
"@testing-library/react": "16.3.0",
|
|
45
45
|
"@testing-library/user-event": "14.6.1",
|
|
46
|
-
"@transferwise/components": "46.
|
|
46
|
+
"@transferwise/components": "46.113.1",
|
|
47
47
|
"@transferwise/formatting": "^2.13.4",
|
|
48
|
-
"@transferwise/icons": "
|
|
48
|
+
"@transferwise/icons": "4.0.0",
|
|
49
49
|
"@transferwise/neptune-css": "14.25.1",
|
|
50
50
|
"@types/jest": "30.0.0",
|
|
51
51
|
"@types/react": "18.3.26",
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"currency-flags": "4.0.7",
|
|
57
57
|
"esbuild": "0.25.9",
|
|
58
58
|
"eslint-plugin-storybook": "9.1.15",
|
|
59
|
+
"framer-motion": "^12.23.22",
|
|
59
60
|
"jest": "30.2.0",
|
|
60
61
|
"jest-environment-jsdom": "30.2.0",
|
|
61
62
|
"jest-fetch-mock": "^3.0.3",
|
|
@@ -81,7 +82,7 @@
|
|
|
81
82
|
"peerDependencies": {
|
|
82
83
|
"@transferwise/components": "^46.104.0",
|
|
83
84
|
"@transferwise/formatting": "^2",
|
|
84
|
-
"@transferwise/icons": "^3
|
|
85
|
+
"@transferwise/icons": "^3 || ^4",
|
|
85
86
|
"@transferwise/neptune-css": "^14.22.0",
|
|
86
87
|
"@wise/art": "^2.19.0",
|
|
87
88
|
"@wise/components-theming": "^0.7.1 || ^1",
|
|
@@ -91,7 +92,7 @@
|
|
|
91
92
|
},
|
|
92
93
|
"dependencies": {
|
|
93
94
|
"classnames": "2.5.1",
|
|
94
|
-
"@wise/dynamic-flow-client": "4.20.
|
|
95
|
+
"@wise/dynamic-flow-client": "4.20.1",
|
|
95
96
|
"@wise/dynamic-flow-types": "3.18.0"
|
|
96
97
|
},
|
|
97
98
|
"scripts": {
|