Skip to content

Commit 73396ca

Browse files
build: update version (#2965)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6d508bb commit 73396ca

File tree

6 files changed

+41
-47
lines changed

6 files changed

+41
-47
lines changed

.changeset/lemon-experts-brake.md

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

.changeset/odd-humans-do.md

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

packages/blade-mcp/CHANGELOG.md

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

3+
## 1.12.0
4+
5+
### Minor Changes
6+
7+
- 6d508bbc8: feat(blade-mcp): add donut chart knowledge base
8+
39
## 1.11.0
410

511
### 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.11.0",
3+
"version": "1.12.0",
44
"description": "Model Context Protocol server for Blade",
55
"main": "dist/server.js",
66
"type": "module",

packages/blade/CHANGELOG.md

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

3+
## 12.58.0
4+
5+
### Minor Changes
6+
7+
- 6d508bbc8: ## feat(blade): add donut charts 🍩
8+
9+
[Docs Link](https://blade.razorpay.com/?path=/docs/components-charts-donutchart--docs)
10+
11+
### Deprecation of `colorTheme='default'`
12+
13+
The `default` option for the `colorTheme` prop has been deprecated to improve clarity and provide a more descriptive API. The new default theme is `'categorical'`. This change makes the theme's purpose—applying a set of distinct colors for different categories—more explicit.
14+
15+
**Impact**
16+
17+
Implementation that explicitly sets `colorTheme='default'` will use `'categorical'` as default. Implementations that did not specify a `colorTheme` will automatically use the new `'categorical'` default and should see no change in behavior.
18+
19+
**How to Upgrade**
20+
21+
You need to update your code where `colorTheme='default'` is used. You can either remove the prop entirely or change the value to `'categorical'`.
22+
23+
```diff
24+
- <YourComponent colorTheme='default' />
25+
+ <YourComponent colorTheme='categorical' />
26+
27+
// Or, since it's the new default, simply remove the prop:
28+
+ <YourComponent />
29+
30+
```
31+
32+
### Updation of color mapping tokens for charts
33+
34+
We have update color mapping of few token related to charts. you might need to update your snaps.
35+
336
## 12.57.0
437

538
### 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.57.0",
4+
"version": "12.58.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18.12.1"

0 commit comments

Comments
 (0)