@wise/dynamic-flow-client-internal 0.2.0-beta-88e7d3.4 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +24 -24
package/README.md CHANGED
@@ -24,15 +24,15 @@ pnpm install @wise/dynamic-flow-client-internal
24
24
  ```
25
25
  # yarn
26
26
  yarn add prop-types react react-dom react-intl
27
- yarn add @transferwise/components @transferwise/formatting @transferwise/icons @transferwise/neptune-css @transferwise/neptune-validation
27
+ yarn add @transferwise/components @transferwise/formatting @transferwise/icons @transferwise/neptune-css
28
28
 
29
29
  # npm
30
30
  npm install prop-types react react-dom react-intl
31
- npm install @transferwise/components @transferwise/formatting @transferwise/icons @transferwise/neptune-css @transferwise/neptune-validation
31
+ npm install @transferwise/components @transferwise/formatting @transferwise/icons @transferwise/neptune-css
32
32
 
33
33
  # pnpm
34
34
  pnpm install prop-types react react-dom react-intl
35
- pnpm install @transferwise/components @transferwise/formatting @transferwise/icons @transferwise/neptune-css @transferwise/neptune-validation
35
+ pnpm install @transferwise/components @transferwise/formatting @transferwise/icons @transferwise/neptune-css
36
36
  ```
37
37
 
38
38
  **Note:** Keep in mind that some of these dependencies have their own peer dependencies. Don't forget to install those, for instance: `@transferwise/components` needs `@wise/art` and `@wise/components-theming`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-client-internal",
3
- "version": "0.2.0-beta-88e7d3.4",
3
+ "version": "0.2.0",
4
4
  "description": "Dynamic Flow web client for Wise",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -16,20 +16,6 @@
16
16
  "fullname": "transferwise/dynamic-flow",
17
17
  "url": "git+https://github.com/transferwise/dynamic-flow.git"
18
18
  },
19
- "scripts": {
20
- "dev": "storybook dev -p 3005",
21
- "build": "npm-run-all build:*",
22
- "build:ts": "tsc --build ./tsconfig.build.json",
23
- "build:css": "postcss src/main.css -o build/main.css",
24
- "test": "pnpm test:once",
25
- "test:once": "jest --config jest.config.js --env=jsdom",
26
- "test:coverage": "jest --config jest.config.js --env=jsdom --coverage",
27
- "test:watch": "pnpm test:once --watch",
28
- "lint": "npm-run-all lint:ts lint:css",
29
- "lint:ts": "eslint 'src/**/*.{js,jsx,ts,tsx}' --quiet",
30
- "lint:css": "stylelint --allow-empty-input './src/**/*.css'",
31
- "build-storybook": "storybook build -c .storybook"
32
- },
33
19
  "devDependencies": {
34
20
  "@babel/core": "7.20.12",
35
21
  "@babel/plugin-syntax-flow": "7.18.6",
@@ -51,18 +37,18 @@
51
37
  "@testing-library/react": "14.0.0",
52
38
  "@testing-library/react-hooks": "8.0.1",
53
39
  "@testing-library/user-event": "13.2.1",
54
- "@transferwise/components": "43.13.49",
40
+ "@transferwise/components": "45.3.0",
55
41
  "@transferwise/eslint-config": "8.0.1",
56
42
  "@transferwise/formatting": "^2.10.0",
57
- "@transferwise/icons": "3.2.3",
58
- "@transferwise/neptune-css": "14.3.45",
59
- "@transferwise/neptune-tokens": "8.4.0",
43
+ "@transferwise/icons": "3.6.0",
44
+ "@transferwise/neptune-css": "14.3.49",
45
+ "@transferwise/neptune-tokens": "8.5.0",
60
46
  "@types/jest": "29.4.0",
61
47
  "@types/react": "18",
62
48
  "@types/react-dom": "18",
63
49
  "@types/testing-library__jest-dom": "5.9.5",
64
- "@wise/art": "2.0.1",
65
- "@wise/components-theming": "^0.7.4",
50
+ "@wise/art": "2.3.3",
51
+ "@wise/components-theming": "^0.7.5",
66
52
  "babel-jest": "29.5.0",
67
53
  "currency-flags": "4.0.7",
68
54
  "eslint": "8.36.0",
@@ -93,7 +79,21 @@
93
79
  "react-intl": "^6"
94
80
  },
95
81
  "dependencies": {
96
- "@wise/dynamic-flow-client": "^0.2.0"
82
+ "@wise/dynamic-flow-client": "^0.3.0"
97
83
  },
98
- "prettier": "@transferwise/eslint-config/.prettierrc.js"
99
- }
84
+ "prettier": "@transferwise/eslint-config/.prettierrc.js",
85
+ "scripts": {
86
+ "dev": "storybook dev -p 3005",
87
+ "build": "npm-run-all build:*",
88
+ "build:ts": "tsc --build ./tsconfig.build.json",
89
+ "build:css": "postcss src/main.css -o build/main.css",
90
+ "test": "pnpm test:once",
91
+ "test:once": "jest --config jest.config.js --env=jsdom",
92
+ "test:coverage": "jest --config jest.config.js --env=jsdom --coverage",
93
+ "test:watch": "pnpm test:once --watch",
94
+ "lint": "npm-run-all lint:ts lint:css",
95
+ "lint:ts": "eslint 'src/**/*.{js,jsx,ts,tsx}' --quiet",
96
+ "lint:css": "stylelint --allow-empty-input './src/**/*.css'",
97
+ "build-storybook": "storybook build -c .storybook"
98
+ }
99
+ }