@methodfi/opal-react 1.4.3 → 1.4.4

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/CHANGELOG.md +31 -0
  2. package/package.json +3 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,31 @@
1
+ # @methodfi/opal-react
2
+
3
+ ## 1.4.4
4
+
5
+ - Version bump (no source changes)
6
+
7
+ ## 1.4.3
8
+
9
+ - Add dark mode / appearance support (`light`, `dark`, `system`)
10
+ - Add `appearance` option to `open()` for setting initial appearance
11
+ - Send `OPAL_SET_APPEARANCE` postMessage to iframe on load
12
+ - Simplify DM API and improve backwards SDK compatibility
13
+
14
+ ## 1.4.2
15
+
16
+ - Rename `identity` mode to `identity_verification` in `OpalMode`
17
+
18
+ ## 1.4.1
19
+
20
+ - Version bump (no source changes)
21
+
22
+ ## 1.4.0
23
+
24
+ - Redesign event system with flow-specific event types (IDV, CXN, AVF, TXN)
25
+ - Namespace session events under `opal.session.*` (breaking: `opal.started` → `opal.session.started`, etc.)
26
+ - Namespace generic flow/step events under `opal.flow.*` and `opal.step.*`
27
+ - Add `OPAL` and `TRANSACTIONS` modes to `OpalMode`
28
+
29
+ ## 1.3.0
30
+
31
+ - Version bump (no source changes)
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@methodfi/opal-react",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "React SDK for Opal integration",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "files": [
8
- "dist"
8
+ "dist",
9
+ "CHANGELOG.md"
9
10
  ],
10
11
  "type": "module",
11
12
  "scripts": {