Skip to content

Commit 989e1d0

Browse files
committed
chore(release): v3.0.6
1 parent 546e005 commit 989e1d0

4 files changed

Lines changed: 28 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# v3.0.6
2+
3+
`2025-03-28`
4+
5+
- :sparkles: feat(skeleton): v15 (#3086)
6+
- :sparkles: feat(Tabbar): v15 样式适配;增加 icon/value/title 的function类型,支持根据active状态渲染不同数据;增加 onDoubleClick 事件 (#3110)
7+
- :sparkles: feat(indicator): 增加 UI 变体的类型 (#3114)
8+
- :sparkles: feat(switch): 异步切换支持受控loading态 (#3122)
9+
- :sparkles: feat(notify): v15 (#3082)
10+
- :sparkles: feat(lottie): 支持京东小程序 (#3080)
11+
- :sparkles: feat(demoblock): code block scrolling behavior, CodesandBox function and copyCode styles (#3106)
12+
- :bug: fix(searchbar): 支付宝小程序设置 enableInPageRenderInput 后无法触发 onChange (#3130)
13+
- :bug: fix: doc css (#3126)
14+
- :bug: fix(overlay): 扩大点击范围 (#3117)
15+
- :bug: fix(pickerview): 解决小程序获取高度计算错误 (#3120)
16+
- :bug: fix(badge): 修正css变量定义 (#3123)
17+
- :bug: fix: update pkgjson title (#3119)
18+
- 🪵 refactor(badge): 支持禁用模式 (#3118)
19+
- 🏡 chore: support ui review (#3121)
20+
121
# v3.0.5
222

323
`2025-03-21`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nutui/nutui-react-taro",
3-
"version": "3.0.5",
3+
"version": "3.0.6",
44
"style": "dist/style.css",
55
"main": "dist/nutui.react.umd.js",
66
"module": "dist/es/packages/nutui.react.build.js",

scripts/generate-local-changelog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ shell.exec(
1010
{ silent: true },
1111
(code, stdout, stderr) => {
1212
shell.exec(
13-
`git log --since="${stdout.replace('\n', '')}" --pretty=format:"%s" next`,
13+
`git log --since="${stdout.replace('\n', '')}" --pretty=format:"%s" feat_v3.x`,
1414
{ silent: true },
1515
(code, stdout, stderr) => {
1616
const logs = stdout.split('\n')

src/packages/configprovider/types.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,7 @@ export type NutCSSVariables =
535535
| 'nutuiTagMarkBorderRadius'
536536
| 'nutuiBadgeHeight'
537537
| 'nutuiBadgeBackgroundColor'
538+
| 'nutuiBadgeBackgroundDisabledColor'
538539
| 'nutuiBadgeColor'
539540
| 'nutuiBadgeFontSize'
540541
| 'nutuiBadgeBorder'
@@ -546,6 +547,8 @@ export type NutCSSVariables =
546547
| 'nutuiBadgeContentTransform'
547548
| 'nutuiBadgeZIndex'
548549
| 'nutuiBadgeDotWidth'
550+
| 'nutuiBadgeDotSmallWidth'
551+
| 'nutuiBadgeDotLargeWidth'
549552
| 'nutuiBadgeDotBorder'
550553
| 'nutuiBadgeOutlineColor'
551554
| 'nutuiBadgeOutlineBorder'
@@ -713,7 +716,9 @@ export type NutCSSVariables =
713716
| 'nutuiFormItemTipTextAlign'
714717
| 'nutuiSkeletonBackground'
715718
| 'nutuiSkeletonLineWidth'
716-
| 'nutuiSkeletonLineHeight'
719+
| 'nutuiSkeletonLineSmallHeight'
720+
| 'nutuiSkeletonLineNormalHeight'
721+
| 'nutuiSkeletonLineLargeHeight'
717722
| 'nutuiSkeletonLineBorderRadius'
718723
| 'nutuiCardBorderRadius'
719724
| 'nutuiGridBorderWidth'

0 commit comments

Comments
 (0)