Skip to content

Commit 6ec5187

Browse files
chore: version packages (#54)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @magicbell/magicbell-react@10.4.0 ### Minor Changes - [`4347cf3`](4347cf3) Thanks [@smeijer](https://github.com/smeijer)! - feat: category labels in the preferences pane are now translatable. ```typescript jsx const customLocale = { name: 'en', translations: { preferences: { categories: { // mapping from slug > label billing: 'My Billing', }, }, }, }; function MyComponent() { return ( <MagicBell locale={customLocale} apiKey={MAGICBELL_API_KEY} userEmail="john@example.com" /> {(props) => <FloatingNotificationInbox height={450} {...props} />} </MagicBell> ); } ``` ## @magicbell/embeddable@3.2.8 ### Patch Changes - Updated dependencies \[[`4347cf3`](4347cf3)]: - @magicbell/magicbell-react@10.4.0 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 4347cf3 commit 6ec5187

File tree

6 files changed

+39
-31
lines changed

6 files changed

+39
-31
lines changed

.changeset/strong-dolphins-own.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

packages/embeddable/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @magicbell/embeddable
22

3+
## 3.2.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`4347cf3`](https://github.com/magicbell-io/magicbell-js/commit/4347cf322d7b057769771fd3f06dad60b98d18aa)]:
8+
- @magicbell/magicbell-react@10.4.0
9+
310
## 3.2.7
411

512
### Patch Changes

packages/embeddable/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@magicbell/embeddable",
3-
"version": "3.2.7",
3+
"version": "3.2.8",
44
"source": "./src/index.tsx",
55
"main": "dist/magicbell.min.js",
66
"esmodule": "dist/magicbell.esm.js",
@@ -32,7 +32,7 @@
3232
"dependencies": {
3333
"@emotion/cache": "^11.4.0",
3434
"@emotion/react": "^11.4.1",
35-
"@magicbell/magicbell-react": "10.3.5",
35+
"@magicbell/magicbell-react": "10.4.0",
3636
"@tippyjs/react": "^4.2.5",
3737
"error-stack-parser": "^2.0.7",
3838
"idb": "^6.1.5",

packages/playground/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
},
2424
"devDependencies": {
2525
"@angular/core": "^13.1.1",
26-
"@magicbell/embeddable": "3.2.7",
27-
"@magicbell/magicbell-react": "10.3.5",
26+
"@magicbell/embeddable": "3.2.8",
27+
"@magicbell/magicbell-react": "10.4.0",
2828
"@magicbell/react-headless": "4.2.4",
2929
"@types/react": "^18.0.25",
3030
"eslint-config-next": "12.0.7",

packages/react/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# @magicbell/magicbell-react
22

3+
## 10.4.0
4+
5+
### Minor Changes
6+
7+
- [`4347cf3`](https://github.com/magicbell-io/magicbell-js/commit/4347cf322d7b057769771fd3f06dad60b98d18aa) Thanks [@smeijer](https://github.com/smeijer)! - feat: category labels in the preferences pane are now translatable.
8+
9+
```typescript jsx
10+
const customLocale = {
11+
name: 'en',
12+
translations: {
13+
preferences: {
14+
categories: { // mapping from slug > label
15+
billing: 'My Billing',
16+
},
17+
},
18+
},
19+
};
20+
21+
function MyComponent() {
22+
return (
23+
<MagicBell locale={customLocale} apiKey={MAGICBELL_API_KEY} userEmail="john@example.com" />
24+
{(props) => <FloatingNotificationInbox height={450} {...props} />}
25+
</MagicBell>
26+
);
27+
}
28+
```
29+
330
## 10.3.5
431

532
### Patch Changes

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@magicbell/magicbell-react",
3-
"version": "10.3.5",
3+
"version": "10.4.0",
44
"description": "React components for building a notification inbox for your app",
55
"author": "MagicBell <bot@magicbell.io> (https://magicbell.com/)",
66
"contributors": [

0 commit comments

Comments
 (0)