@wise/dynamic-flow-client-internal 4.21.0-experimental-a003e45 → 4.21.0

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 CHANGED
@@ -862,7 +862,7 @@ function AddressValidationButtonComponent(props) {
862
862
  {
863
863
  v2: true,
864
864
  block: true,
865
- disabled: stepLoadingState !== "idle" || disabled,
865
+ disabled,
866
866
  priority: "primary",
867
867
  size: "md",
868
868
  loading: spinny,
@@ -951,7 +951,7 @@ function ButtonComponent(props) {
951
951
  {
952
952
  block: true,
953
953
  className: getMargin(margin),
954
- disabled: stepLoadingState !== "idle" || disabled,
954
+ disabled,
955
955
  priority,
956
956
  size: mapSize(size),
957
957
  loading: spinny,
@@ -3595,7 +3595,7 @@ var getWiseRenderers = () => [
3595
3595
  // src/dynamicFlow/telemetry/app-version.ts
3596
3596
  var appVersion = (
3597
3597
  // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
3598
- typeof process !== "undefined" ? "4.20.3" : "0.0.0"
3598
+ typeof process !== "undefined" ? "4.21.0" : "0.0.0"
3599
3599
  );
3600
3600
 
3601
3601
  // src/dynamicFlow/telemetry/getLogEvent.ts
package/build/main.mjs CHANGED
@@ -828,7 +828,7 @@ function AddressValidationButtonComponent(props) {
828
828
  {
829
829
  v2: true,
830
830
  block: true,
831
- disabled: stepLoadingState !== "idle" || disabled,
831
+ disabled,
832
832
  priority: "primary",
833
833
  size: "md",
834
834
  loading: spinny,
@@ -917,7 +917,7 @@ function ButtonComponent(props) {
917
917
  {
918
918
  block: true,
919
919
  className: getMargin(margin),
920
- disabled: stepLoadingState !== "idle" || disabled,
920
+ disabled,
921
921
  priority,
922
922
  size: mapSize(size),
923
923
  loading: spinny,
@@ -3571,7 +3571,7 @@ var getWiseRenderers = () => [
3571
3571
  // src/dynamicFlow/telemetry/app-version.ts
3572
3572
  var appVersion = (
3573
3573
  // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
3574
- typeof process !== "undefined" ? "4.20.3" : "0.0.0"
3574
+ typeof process !== "undefined" ? "4.21.0" : "0.0.0"
3575
3575
  );
3576
3576
 
3577
3577
  // 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.21.0-experimental-a003e45",
3
+ "version": "4.21.0",
4
4
  "description": "Dynamic Flow web client for Wise",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./build/main.js",
@@ -74,9 +74,9 @@
74
74
  "stylelint-value-no-unknown-custom-properties": "6.0.1",
75
75
  "tsx": "4.20.3",
76
76
  "typescript": "5.9.2",
77
- "@wise/dynamic-flow-fixtures": "0.0.1",
78
77
  "@wise/dynamic-flow-renderers": "0.0.0",
79
- "@wise/dynamic-flow-types": "3.10.0-experimental-a003e45"
78
+ "@wise/dynamic-flow-fixtures": "0.0.1",
79
+ "@wise/dynamic-flow-types": "3.10.0"
80
80
  },
81
81
  "peerDependencies": {
82
82
  "@transferwise/components": "^46.92.0",
@@ -91,8 +91,8 @@
91
91
  },
92
92
  "dependencies": {
93
93
  "classnames": "2.5.1",
94
- "@wise/dynamic-flow-client": "4.12.0-experimental-a003e45",
95
- "@wise/dynamic-flow-types": "3.10.0-experimental-a003e45"
94
+ "@wise/dynamic-flow-client": "4.12.0",
95
+ "@wise/dynamic-flow-types": "3.10.0"
96
96
  },
97
97
  "scripts": {
98
98
  "dev": "pnpm build:visual-tests && storybook dev -p 3005",