Skip to content

Commit 0e9df9c

Browse files
build: update version (#2953)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ac1d4fb commit 0e9df9c

File tree

5 files changed

+42
-27
lines changed

5 files changed

+42
-27
lines changed

.changeset/late-pumas-sell.md

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

packages/blade-mcp/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# @razorpay/blade-mcp
22

3+
## 1.9.0
4+
5+
### Minor Changes
6+
7+
- ac1d4fb54: feat(blade): add support for non-dismissible modals & bottomsheet
8+
9+
Introduces a new prop `isDismissible` in `Modal` and `BottomSheet` which can be used to prevent users from accidentally dismissing modals and bottomSheet by clicking outside or pressing the escape key. When `isDismissible={false}`, the close button is automatically hidden and the modal and bottomSheet can only be closed through explicit user actions.
10+
11+
```jsx
12+
<Modal isOpen={isOpen} isDismissible={false}>
13+
// .... modal content ....
14+
</Modal>
15+
```
16+
17+
```jsx
18+
<BottomSheet isOpen={isOpen} isDismissible={false}>
19+
// .... bottomsheet component ....
20+
</BottomSheet>
21+
```
22+
323
## 1.8.0
424

525
### Minor Changes

packages/blade-mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@razorpay/blade-mcp",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"description": "Model Context Protocol server for Blade",
55
"main": "dist/server.js",
66
"type": "module",

packages/blade/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# @razorpay/blade
22

3+
## 12.55.0
4+
5+
### Minor Changes
6+
7+
- ac1d4fb54: feat(blade): add support for non-dismissible modals & bottomsheet
8+
9+
Introduces a new prop `isDismissible` in `Modal` and `BottomSheet` which can be used to prevent users from accidentally dismissing modals and bottomSheet by clicking outside or pressing the escape key. When `isDismissible={false}`, the close button is automatically hidden and the modal and bottomSheet can only be closed through explicit user actions.
10+
11+
```jsx
12+
<Modal isOpen={isOpen} isDismissible={false}>
13+
// .... modal content ....
14+
</Modal>
15+
```
16+
17+
```jsx
18+
<BottomSheet isOpen={isOpen} isDismissible={false}>
19+
// .... bottomsheet component ....
20+
</BottomSheet>
21+
```
22+
323
## 12.54.0
424

525
### Minor Changes

packages/blade/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@razorpay/blade",
33
"description": "The Design System that powers Razorpay",
4-
"version": "12.54.0",
4+
"version": "12.55.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18.12.1"

0 commit comments

Comments
 (0)