@wise/dynamic-flow-client-internal 4.0.0-experimental-0afa26a → 4.0.0-experimental-ffcedb9
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 +2 -4
- package/build/main.mjs +2 -4
- package/package.json +5 -5
package/build/main.js
CHANGED
|
@@ -1062,9 +1062,9 @@ var import_classnames = __toESM(require_classnames());
|
|
|
1062
1062
|
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
1063
1063
|
var BoxRenderer = {
|
|
1064
1064
|
canRenderType: "box",
|
|
1065
|
-
render: ({
|
|
1065
|
+
render: ({ children, control, margin, width }) => {
|
|
1066
1066
|
const hasFixedWidth = width !== "xl";
|
|
1067
|
-
const hasBorder = control === "bordered" || control === "bordered-web"
|
|
1067
|
+
const hasBorder = control === "bordered" || control === "bordered-web";
|
|
1068
1068
|
const contents = /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1069
1069
|
"div",
|
|
1070
1070
|
{
|
|
@@ -2804,7 +2804,6 @@ var TextInputRenderer = {
|
|
|
2804
2804
|
title,
|
|
2805
2805
|
description,
|
|
2806
2806
|
help,
|
|
2807
|
-
error,
|
|
2808
2807
|
icon,
|
|
2809
2808
|
image,
|
|
2810
2809
|
validationState,
|
|
@@ -2815,7 +2814,6 @@ var TextInputRenderer = {
|
|
|
2815
2814
|
"title",
|
|
2816
2815
|
"description",
|
|
2817
2816
|
"help",
|
|
2818
|
-
"error",
|
|
2819
2817
|
"icon",
|
|
2820
2818
|
"image",
|
|
2821
2819
|
"validationState",
|
package/build/main.mjs
CHANGED
|
@@ -1049,9 +1049,9 @@ var import_classnames = __toESM(require_classnames());
|
|
|
1049
1049
|
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
1050
1050
|
var BoxRenderer = {
|
|
1051
1051
|
canRenderType: "box",
|
|
1052
|
-
render: ({
|
|
1052
|
+
render: ({ children, control, margin, width }) => {
|
|
1053
1053
|
const hasFixedWidth = width !== "xl";
|
|
1054
|
-
const hasBorder = control === "bordered" || control === "bordered-web"
|
|
1054
|
+
const hasBorder = control === "bordered" || control === "bordered-web";
|
|
1055
1055
|
const contents = /* @__PURE__ */ jsx6(
|
|
1056
1056
|
"div",
|
|
1057
1057
|
{
|
|
@@ -2797,7 +2797,6 @@ var TextInputRenderer = {
|
|
|
2797
2797
|
title,
|
|
2798
2798
|
description,
|
|
2799
2799
|
help,
|
|
2800
|
-
error,
|
|
2801
2800
|
icon,
|
|
2802
2801
|
image,
|
|
2803
2802
|
validationState,
|
|
@@ -2808,7 +2807,6 @@ var TextInputRenderer = {
|
|
|
2808
2807
|
"title",
|
|
2809
2808
|
"description",
|
|
2810
2809
|
"help",
|
|
2811
|
-
"error",
|
|
2812
2810
|
"icon",
|
|
2813
2811
|
"image",
|
|
2814
2812
|
"validationState",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/dynamic-flow-client-internal",
|
|
3
|
-
"version": "4.0.0-experimental-
|
|
3
|
+
"version": "4.0.0-experimental-ffcedb9",
|
|
4
4
|
"description": "Dynamic Flow web client for Wise",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./build/main.js",
|
|
@@ -82,9 +82,9 @@
|
|
|
82
82
|
"tsx": "4.19.2",
|
|
83
83
|
"typescript": "5.7.3",
|
|
84
84
|
"webpack": "5.97.1",
|
|
85
|
-
"@wise/dynamic-flow-fixtures": "0.0.1",
|
|
86
85
|
"@wise/dynamic-flow-renderers": "0.0.0",
|
|
87
|
-
"@wise/dynamic-flow-types": "3.0.0-experimental-
|
|
86
|
+
"@wise/dynamic-flow-types": "3.0.0-experimental-ffcedb9",
|
|
87
|
+
"@wise/dynamic-flow-fixtures": "0.0.1"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
90
|
"@transferwise/components": "^46.92.0",
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
100
|
"classnames": "2.5.1",
|
|
101
|
-
"@wise/dynamic-flow-client": "4.0.0-experimental-
|
|
102
|
-
"@wise/dynamic-flow-types": "3.0.0-experimental-
|
|
101
|
+
"@wise/dynamic-flow-client": "4.0.0-experimental-ffcedb9",
|
|
102
|
+
"@wise/dynamic-flow-types": "3.0.0-experimental-ffcedb9"
|
|
103
103
|
},
|
|
104
104
|
"scripts": {
|
|
105
105
|
"dev": "pnpm build:visual-tests && storybook dev -p 3005",
|