@knocklabs/react-core 0.1.4 → 0.1.5

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 +49 -0
  2. package/package.json +3 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,49 @@
1
+ # Changelog
2
+
3
+ ## 0.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Re-releasing packages
8
+ - Updated dependencies
9
+ - @knocklabs/client@0.8.20
10
+
11
+ ## 0.1.4
12
+
13
+ ### Patch Changes
14
+
15
+ - 7786ec5: chore: upgrade to yarn modern and update local package references
16
+ - 9dd0d15: feat: add onUserTokenExpiring callback option to client
17
+ - Updated dependencies [7786ec5]
18
+ - Updated dependencies [9dd0d15]
19
+ - @knocklabs/client@0.8.19
20
+
21
+ ## 0.1.3
22
+
23
+ ### Patch Changes
24
+
25
+ - 1050660: feat: switch timestamp formatting to date-fns intlFormatDistance
26
+ - Updated dependencies [e53c200]
27
+ - Updated dependencies [d4ba1f2]
28
+ - @knocklabs/client@0.8.18
29
+
30
+ ## 0.1.2
31
+
32
+ ### Patch Changes
33
+
34
+ - 8988230: Fix esm exports and date-fns/locale imports
35
+ - 8315372: Fix cjs build output for React components
36
+
37
+ ## 0.1.1
38
+
39
+ ### Patch Changes
40
+
41
+ - d8a216e: fix: react-core build process
42
+ fix: remove headless prop from KnockFeedProvider
43
+ fix: move KnockFeedContainer from react-core to react and rename to NotificationFeedContainer
44
+
45
+ ## 0.1.0
46
+
47
+ ### Patch Changes
48
+
49
+ - bcdbc86: Initialize monorepo
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@knocklabs/react-core",
3
3
  "description": "A set of React components to build notification experiences powered by Knock",
4
4
  "author": "@knocklabs",
5
- "version": "0.1.4",
5
+ "version": "0.1.5",
6
6
  "license": "MIT",
7
7
  "main": "dist/cjs/index.js",
8
8
  "module": "dist/esm/index.js",
@@ -44,7 +44,7 @@
44
44
  "react": ">=16.8.0"
45
45
  },
46
46
  "dependencies": {
47
- "@knocklabs/client": "workspace:^",
47
+ "@knocklabs/client": "^0.8.20",
48
48
  "date-fns": "^3.3.1",
49
49
  "zustand": "^3.7.2"
50
50
  },
@@ -67,4 +67,4 @@
67
67
  "vite-plugin-no-bundle": "^3.0.0",
68
68
  "vitest": "^1.2.2"
69
69
  }
70
- }
70
+ }