diff --git a/CHANGELOG.md b/CHANGELOG.md index 08d7e1c2a9..bab9783ad4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +# v2.3.7 +`2024-01-19` + +* :sparkles: feat(checkbox): 增加至少选择项数量的设置功能 (#1859) @oasis +* :sparkles: feat(dialog): 增加关闭按钮 (#1872) @songsong +* :sparkles: feat(imagepreview): 新增 closeIcon & closeIconPosition (#1873) @Eiinu +* :sparkles: feat(numberkeyboard): add title right actions (#1881) @xiaoyatong +* :sparkles: feat: support debugging RTL in the H5 development environment (#1865) @oasis +* :bug: fix(space): 主/交叉轴的 demo 与国际化改进 (#1867) @Alex.huxiyang +* :bug: fix(animatingnumbers): 修复单元测试问题 (#1878) @Eiinu +* :bug: fix(button): demo和doc一致化、文档代码优化、属性补充 (#1875) @Alex.huxiyang +* :bug: fix(cell): doc、demo一致化改进 (#1877) @Alex.huxiyang +* :bug: fix(popover): 置于滚动容器中,popover 需要跟随滚动,修复选中项的样式 (#1869) @oasis +* :bug: fix(table): fixed sticky css (#1866) @xiaoyatong +* :bug: fix(tabs): 纵向图标未对齐问题 (#1868) @songsong +* :bug: fix(Textarea): 文档demo中props拼写错误修改 (#1874) @songsong +* :bug: fix(uploader): fix the styles when custom progress (#1863) @xiaoyatong +* :bug: fix: 增加 CSS 变量配置颜色的例子,完善 color 属性的使用场景描述 (#1857) @oasis +* 📖 docs(avatar): add list display mode (#1862) @oasis +* 📖 docs(icon): 更新文档 (#1879) @Eiinu +* 📖 docs(shortpassword): 增加onComplete的demo及文档 (#1860) @xiaoyatong +* 🛠 refactor(circleprogress): optimize animation duration (#1861) @oasis + + # v2.3.6 `2024-01-12` diff --git a/package.json b/package.json index e849b83cd4..d593be5434 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nutui/nutui-react-taro", - "version": "2.3.6", + "version": "2.3.7", "style": "dist/style.css", "main": "dist/nutui.react.umd.js", "module": "dist/esm/nutui-react.es.js", diff --git a/src/packages/configprovider/types.ts b/src/packages/configprovider/types.ts index 58ef1e2a82..007b5224be 100644 --- a/src/packages/configprovider/types.ts +++ b/src/packages/configprovider/types.ts @@ -413,6 +413,12 @@ export type NutCSSVariables = | 'nutuiDialogHeaderFontSize' | 'nutuiDialogHeaderFontWeight' | 'nutuiDialogVerticalFooterOkMarginTop' + | 'nutuiDialogCloseColor' + | 'nutuiDialogCloseWidth' + | 'nutuiDialogCloseHeight' + | 'nutuiDialogCloseTop' + | 'nutuiDialogCloseLeft' + | 'nutuiDialogCloseRight' | 'nutuiCheckboxLabelDisableColor' | 'nutuiCheckboxIconDisableColor' | 'nutuiCheckboxLabelMarginLeft'