From 35e58700a4a80de1e615b37ad4cf799856379714 Mon Sep 17 00:00:00 2001 From: pointhalo <88709023+pointhalo@users.noreply.github.com> Date: Wed, 16 Oct 2024 14:31:11 +0800 Subject: [PATCH 1/4] style: disabled select in focus status background color in some theme can't work perfect, add design token to custom (#2532) * fix: disabled select in focus status background color in some theme can't work perfect, add design token to custom --- lerna.json | 2 +- packages/semi-foundation/select/select.scss | 4 +++- packages/semi-foundation/select/variables.scss | 3 +++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lerna.json b/lerna.json index e7c5ce2566..7ebabf97ed 100644 --- a/lerna.json +++ b/lerna.json @@ -2,4 +2,4 @@ "useWorkspaces": true, "npmClient": "yarn", "version": "2.67.1" -} \ No newline at end of file +} diff --git a/packages/semi-foundation/select/select.scss b/packages/semi-foundation/select/select.scss index 19745cddb4..6a6993cfeb 100644 --- a/packages/semi-foundation/select/select.scss +++ b/packages/semi-foundation/select/select.scss @@ -37,6 +37,7 @@ $overflowList: #{$prefix}-overflow-list; &:focus { border: $width-select-border-focus solid $color-select-border-focus; background-color: $color-select-bg-focus; + // background-color: plum; outline: 0; } @@ -125,7 +126,8 @@ $overflowList: #{$prefix}-overflow-list; &:focus { // when select is disabled, the border should not have active color - border: $width-select-border-focus solid transparent; + border: $width-select-border-focus solid $color-select_input_disabled-border-focus; + background-color: $color-select_input_disabled-bg-focus; } .#{$module}-selection, diff --git a/packages/semi-foundation/select/variables.scss b/packages/semi-foundation/select/variables.scss index 67f897d07d..2c1bb38e2f 100644 --- a/packages/semi-foundation/select/variables.scss +++ b/packages/semi-foundation/select/variables.scss @@ -37,8 +37,11 @@ $color-select_clearBtn-text-hover: var(--semi-color-primary); // 选择器输入 $color-select_input-bg-default: transparent; // 选择器输入框清空按钮颜色 - 悬停态 $color-select_input_disabled-bg: var(--semi-color-disabled-fill); // 禁用选择器输入框背景色 $color-select_input_disabled-border: var(--semi-color-border); // 禁用选择器输入框描边颜色 +$color-select_input_disabled-border-focus: transparent; // 禁用选择器输入框描边颜色 - 聚焦态 $color-select_input_disabled-text: var(--semi-color-disabled-text); // 禁用选择器输入框回填内容文字颜色 $color-select_input_disabled-bg-hover: var(--semi-color-disabled-fill); // 选择器输入框回填内容文字颜色 - 悬停态 +$color-select_input_disabled-bg-focus: var(--semi-color-disabled-fill); // 选择器输入框回填内容文字颜色 - 聚焦态 + $color-select_input_placeholder-text: var(--semi-color-text-2); // 选择器输入框占位文本文字颜色 $color-select_option_main-text: var(--semi-color-text-0); // 选择器菜单选项文本颜色 From 6c4388a417f3cbd0a10e92e5b9fb7c83d5662cfa Mon Sep 17 00:00:00 2001 From: "point.halo" Date: Wed, 16 Oct 2024 14:41:38 +0800 Subject: [PATCH 2/4] docs: update changelog --- content/start/changelog/index-en-US.md | 10 ++++++++-- content/start/changelog/index.md | 7 +++++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/content/start/changelog/index-en-US.md b/content/start/changelog/index-en-US.md index 13d5758189..e78e862dbe 100644 --- a/content/start/changelog/index-en-US.md +++ b/content/start/changelog/index-en-US.md @@ -16,10 +16,16 @@ Version:Major.Minor.Patch (follow the **Semver** specification) --- +#### 🎉 2.67.2 (2024-10-16) +- 【Fix】 + - Fixed the phenomenon that the background color does not match expectations in some special theme package configurations when Select disabled and focus is disabled [#2532](https://github.com/DouyinFE/semi-design/pull/2532) +- 【Design Token】 + - Select add token: `$color-select_input_disabled-border-focus`、`$color-select_input_disabled-border-focus` + #### 🎉 2.67.1 (2024-10-11) - 【Fix】 - - fix the issue that after closing the Select popup using the close method, clicking the outer area cannot remove the focus style - - fixed selected value does not show when value is controlled (affects v2.64 ~ v2.67) [#2521 ](https://github.com/DouyinFE/semi-design/issues/2521) + - Fixed the issue that after closing the Select popup using the close method, clicking the outer area cannot remove the focus style + - Fixed Datepicker selected value does not show when value is controlled (affects v2.64 ~ v2.67) [#2521](https://github.com/DouyinFE/semi-design/issues/2521) - Fixed the issue that Rspack plugin does not work on win32 platform #### 🎉 2.67.0 (2024-09-27) diff --git a/content/start/changelog/index.md b/content/start/changelog/index.md index 568efa20e2..ee7ba33931 100644 --- a/content/start/changelog/index.md +++ b/content/start/changelog/index.md @@ -13,6 +13,13 @@ Semi 版本号遵循 **Semver** 规范(主版本号-次版本号-修订版本 - 修订版本号(patch):仅会进行 bugfix,发布时间不限 - 不同版本间的详细关系,可查阅 [FAQ](/zh-CN/start/faq) + +#### 🎉 2.67.2 (2024-10-16) +- 【Fix】 + - 修复 Select disabled 禁用但focus的情况下,在某些特殊的主题包配置中,背景色不符合预期的现象 [#2532](https://github.com/DouyinFE/semi-design/pull/2532) +- 【Design Token】 + - Select 组件新增 Token: `$color-select_input_disabled-border-focus`、`$color-select_input_disabled-border-focus` 定制禁用态focus背景色样式、定制禁用focus边框 + #### 🎉 2.67.1 (2024-10-11) - 【Fix】 - 修复 Select 通过 method close 方法关闭弹层后,点击外部区域无法移除聚焦样式问题 [#2466](https://github.com/DouyinFE/semi-design/pull/2466) From 1f785a19dca09bc0f49526609519be6f02baf766 Mon Sep 17 00:00:00 2001 From: semi-bot Date: Wed, 16 Oct 2024 06:46:46 +0000 Subject: [PATCH 3/4] chore: publish 2.67.2 --- sitemap.xml | 296 ++++++++++++++++++++++++++-------------------------- 1 file changed, 148 insertions(+), 148 deletions(-) diff --git a/sitemap.xml b/sitemap.xml index a74b422394..11d832b99f 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -2,22 +2,22 @@ https://juejin.cn/post/7267418854124699702 - 2024-10-11T08:19:47.966Z + 2024-10-16T06:46:28.479Z weekly https://medium.com/front-end-weekly/how-we-test-semi-design-component-libraries-64b854f63b65 - 2024-10-11T08:19:47.681Z + 2024-10-16T06:46:27.676Z weekly https://mp.weixin.qq.com/s/noHoWRuA25PgqFNcurhIUA - 2024-10-11T08:19:50.529Z + 2024-10-16T06:46:28.818Z weekly https://mp.weixin.qq.com/s/O3js-SZDNPEOjGxh-aAkbw - 2024-10-11T08:19:48.648Z + 2024-10-16T06:46:28.697Z weekly @@ -790,77 +790,77 @@ https://semi.design/en-US/basic/divider - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/basic/grid - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/basic/icon - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/basic/layout - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/basic/space - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/basic/tokens - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/basic/typography - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/feedback/banner - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/feedback/notification - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/feedback/popconfirm - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/feedback/progress - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/feedback/skeleton - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/feedback/spin - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/feedback/toast - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/autocomplete - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly @@ -870,362 +870,362 @@ https://semi.design/en-US/input/cascader - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/checkbox - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/datepicker - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/form - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/input - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/inputnumber - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/radio - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/rating - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/select - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/slider - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/switch - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/taginput - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/timepicker - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/transfer - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/treeselect - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/input/upload - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/navigation/anchor - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/navigation/backtop - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/navigation/breadcrumb - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/navigation/navigation - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/navigation/pagination - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/navigation/steps - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/navigation/tabs - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/navigation/tree - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/other/configprovider - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/other/locale - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/avatar - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/badge - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/calendar - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/card - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/carousel - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/collapse - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/collapsible - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/descriptions - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/dropdown - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/empty - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/highlight - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/image - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/list - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/modal - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/overflowlist - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/popover - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/scrolllist - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/sidesheet - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/table - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/tag - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/timeline - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/show/tooltip - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/start/accessibility - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/start/changelog - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/start/customize-theme - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/start/dark-mode - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/start/faq - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/start/getting-started - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/start/introduction - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/start/overview - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/en-US/start/update-to-v2 - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/basic/divider - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/basic/grid - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/basic/icon - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/basic/layout - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/basic/space - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/basic/tokens - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/basic/typography - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/feedback/banner - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/feedback/notification - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/feedback/popconfirm - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/feedback/progress - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/feedback/skeleton - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/feedback/spin - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/feedback/toast - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/autocomplete - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly @@ -1235,287 +1235,287 @@ https://semi.design/zh-CN/input/cascader - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/checkbox - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/datepicker - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/form - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/input - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/inputnumber - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/radio - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/rating - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/select - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/slider - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/switch - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/taginput - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/timepicker - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/transfer - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/treeselect - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/input/upload - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/navigation/anchor - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/navigation/backtop - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/navigation/breadcrumb - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/navigation/navigation - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/navigation/pagination - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/navigation/steps - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/navigation/tabs - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/navigation/tree - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/other/configprovider - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/other/locale - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/avatar - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/badge - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/calendar - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/card - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/carousel - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/collapse - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/collapsible - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/descriptions - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/dropdown - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/empty - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/highlight - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/image - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/list - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/modal - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/overflowlist - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/popover - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/scrolllist - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/sidesheet - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/table - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/tag - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/timeline - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/show/tooltip - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/start/accessibility - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/start/changelog - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/start/customize-theme - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/start/dark-mode - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/start/faq - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/start/getting-started - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/start/introduction - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/start/overview - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly https://semi.design/zh-CN/start/update-to-v2 - 2024-10-11T08:09:06.000Z + 2024-10-16T06:41:38.000Z weekly From 2ff1f1c65aa51266782304dfd1dea055d20ee028 Mon Sep 17 00:00:00 2001 From: semi-bot Date: Wed, 16 Oct 2024 06:46:47 +0000 Subject: [PATCH 4/4] v2.67.2 --- lerna.json | 2 +- packages/semi-animation-react/package.json | 6 +++--- packages/semi-animation-styled/package.json | 2 +- packages/semi-animation/package.json | 2 +- packages/semi-eslint-plugin/package.json | 2 +- packages/semi-foundation/package.json | 4 ++-- packages/semi-icons-lab/package.json | 2 +- packages/semi-icons/package.json | 2 +- packages/semi-illustrations/package.json | 2 +- packages/semi-next/package.json | 4 ++-- packages/semi-rspack/package.json | 2 +- packages/semi-scss-compile/package.json | 2 +- packages/semi-theme-default/package.json | 2 +- packages/semi-ui/package.json | 12 ++++++------ packages/semi-webpack/package.json | 2 +- 15 files changed, 24 insertions(+), 24 deletions(-) diff --git a/lerna.json b/lerna.json index 7ebabf97ed..b84d5c0927 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { "useWorkspaces": true, "npmClient": "yarn", - "version": "2.67.1" + "version": "2.67.2" } diff --git a/packages/semi-animation-react/package.json b/packages/semi-animation-react/package.json index 0a9cd15573..1ed47a75d0 100644 --- a/packages/semi-animation-react/package.json +++ b/packages/semi-animation-react/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-animation-react", - "version": "2.67.1", + "version": "2.67.2", "description": "motion library for semi-ui-react", "keywords": [ "motion", @@ -25,8 +25,8 @@ "prepublishOnly": "npm run build:lib" }, "dependencies": { - "@douyinfe/semi-animation": "2.67.1", - "@douyinfe/semi-animation-styled": "2.67.1", + "@douyinfe/semi-animation": "2.67.2", + "@douyinfe/semi-animation-styled": "2.67.2", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/semi-animation-styled/package.json b/packages/semi-animation-styled/package.json index 8b4c5b46c2..0827ec9491 100644 --- a/packages/semi-animation-styled/package.json +++ b/packages/semi-animation-styled/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-animation-styled", - "version": "2.67.1", + "version": "2.67.2", "description": "semi styled animation", "keywords": [ "semi", diff --git a/packages/semi-animation/package.json b/packages/semi-animation/package.json index d1e44d64fb..78b09135fc 100644 --- a/packages/semi-animation/package.json +++ b/packages/semi-animation/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-animation", - "version": "2.67.1", + "version": "2.67.2", "description": "animation base library for semi-ui", "keywords": [ "animation", diff --git a/packages/semi-eslint-plugin/package.json b/packages/semi-eslint-plugin/package.json index e9d8335f4b..ecb7ac3093 100644 --- a/packages/semi-eslint-plugin/package.json +++ b/packages/semi-eslint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-semi-design", - "version": "2.67.1", + "version": "2.67.2", "description": "semi ui eslint plugin", "keywords": [ "semi", diff --git a/packages/semi-foundation/package.json b/packages/semi-foundation/package.json index acd5379a6b..5197c1a801 100644 --- a/packages/semi-foundation/package.json +++ b/packages/semi-foundation/package.json @@ -1,13 +1,13 @@ { "name": "@douyinfe/semi-foundation", - "version": "2.67.1", + "version": "2.67.2", "description": "", "scripts": { "build:lib": "node ./scripts/compileLib.js", "prepublishOnly": "npm run build:lib" }, "dependencies": { - "@douyinfe/semi-animation": "2.67.1", + "@douyinfe/semi-animation": "2.67.2", "@mdx-js/mdx": "^3.0.1", "async-validator": "^3.5.0", "classnames": "^2.2.6", diff --git a/packages/semi-icons-lab/package.json b/packages/semi-icons-lab/package.json index 0fa50bc292..e377417b7b 100644 --- a/packages/semi-icons-lab/package.json +++ b/packages/semi-icons-lab/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-icons-lab", - "version": "2.67.1", + "version": "2.67.2", "description": "semi icons lab", "keywords": [ "semi", diff --git a/packages/semi-icons/package.json b/packages/semi-icons/package.json index 2dd81b78da..8b4371c1db 100644 --- a/packages/semi-icons/package.json +++ b/packages/semi-icons/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-icons", - "version": "2.67.1", + "version": "2.67.2", "description": "semi icons", "keywords": [ "semi", diff --git a/packages/semi-illustrations/package.json b/packages/semi-illustrations/package.json index 932e66c4b6..cd94f72ddc 100644 --- a/packages/semi-illustrations/package.json +++ b/packages/semi-illustrations/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-illustrations", - "version": "2.67.1", + "version": "2.67.2", "description": "semi illustrations", "keywords": [ "semi", diff --git a/packages/semi-next/package.json b/packages/semi-next/package.json index e96efe33d4..b674ff77e6 100644 --- a/packages/semi-next/package.json +++ b/packages/semi-next/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-next", - "version": "2.67.1", + "version": "2.67.2", "description": "Plugin that support Semi Design in Next.js", "author": "伍浩威 ", "homepage": "", @@ -22,7 +22,7 @@ "typescript": "^4" }, "dependencies": { - "@douyinfe/semi-webpack-plugin": "2.67.1" + "@douyinfe/semi-webpack-plugin": "2.67.2" }, "gitHead": "eb34a4f25f002bb4cbcfa51f3df93bed868c831a" } diff --git a/packages/semi-rspack/package.json b/packages/semi-rspack/package.json index 7a40cbcff3..3458012df5 100644 --- a/packages/semi-rspack/package.json +++ b/packages/semi-rspack/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-rspack-plugin", - "version": "2.67.1", + "version": "2.67.2", "description": "", "homepage": "", "license": "MIT", diff --git a/packages/semi-scss-compile/package.json b/packages/semi-scss-compile/package.json index 93def4a870..9004f9bff3 100644 --- a/packages/semi-scss-compile/package.json +++ b/packages/semi-scss-compile/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-scss-compile", - "version": "2.67.1", + "version": "2.67.2", "description": "compile semi scss to css", "author": "daiqiang@bytedance.com", "license": "MIT", diff --git a/packages/semi-theme-default/package.json b/packages/semi-theme-default/package.json index 90f5021a8c..c3af9a0fa1 100644 --- a/packages/semi-theme-default/package.json +++ b/packages/semi-theme-default/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-theme-default", - "version": "2.67.1", + "version": "2.67.2", "description": "semi-theme-default", "keywords": [ "semi-theme", diff --git a/packages/semi-ui/package.json b/packages/semi-ui/package.json index a6e530a93d..52c312f450 100644 --- a/packages/semi-ui/package.json +++ b/packages/semi-ui/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-ui", - "version": "2.67.1", + "version": "2.67.2", "description": "A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.", "main": "lib/cjs/index.js", "module": "lib/es/index.js", @@ -20,11 +20,11 @@ "@dnd-kit/core": "^6.0.8", "@dnd-kit/sortable": "^7.0.2", "@dnd-kit/utilities": "^3.2.1", - "@douyinfe/semi-animation": "2.67.1", - "@douyinfe/semi-animation-react": "2.67.1", - "@douyinfe/semi-foundation": "2.67.1", - "@douyinfe/semi-icons": "2.67.1", - "@douyinfe/semi-illustrations": "2.67.1", + "@douyinfe/semi-animation": "2.67.2", + "@douyinfe/semi-animation-react": "2.67.2", + "@douyinfe/semi-foundation": "2.67.2", + "@douyinfe/semi-icons": "2.67.2", + "@douyinfe/semi-illustrations": "2.67.2", "@douyinfe/semi-theme-default": "2.61.0", "async-validator": "^3.5.0", "classnames": "^2.2.6", diff --git a/packages/semi-webpack/package.json b/packages/semi-webpack/package.json index 0dcb620c6c..5858a85bfe 100644 --- a/packages/semi-webpack/package.json +++ b/packages/semi-webpack/package.json @@ -1,6 +1,6 @@ { "name": "@douyinfe/semi-webpack-plugin", - "version": "2.67.1", + "version": "2.67.2", "description": "", "author": "伍浩威 ", "homepage": "",