Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/design/design-CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ group: 基础组件

---

## 0.4.20

`2026-01-05`

- 🐞 修复 Tag 内容超长省略并且可关闭时的样式问题。[#1394](https://github.com/oceanbase/oceanbase-design/pull/1394)

## 0.4.19

`2025-12-04`
Expand Down
6 changes: 6 additions & 0 deletions docs/ui/ui-CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ group: 业务组件

---

## 0.4.24

`2026-01-05`

- 💄 优化 DateRanger 时间前进和后退按钮的样式。[#1395](https://github.com/oceanbase/oceanbase-design/pull/1395)

## 0.4.23

`2025-12-08`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
exports[`Segmented > render options 1`] = `
<div
aria-label="segmented control"
aria-orientation="horizontal"
class="ant-segmented"
role="radiogroup"
tabindex="0"
Expand All @@ -20,7 +21,6 @@ exports[`Segmented > render options 1`] = `
type="radio"
/>
<div
aria-selected="true"
class="ant-segmented-item-label"
title="Daily"
>
Expand All @@ -36,7 +36,6 @@ exports[`Segmented > render options 1`] = `
type="radio"
/>
<div
aria-selected="false"
class="ant-segmented-item-label"
title="Weekly"
>
Expand All @@ -52,7 +51,6 @@ exports[`Segmented > render options 1`] = `
type="radio"
/>
<div
aria-selected="false"
class="ant-segmented-item-label"
title="Monthly"
>
Expand All @@ -68,7 +66,6 @@ exports[`Segmented > render options 1`] = `
type="radio"
/>
<div
aria-selected="false"
class="ant-segmented-item-label"
title="Quarterly"
>
Expand All @@ -84,7 +81,6 @@ exports[`Segmented > render options 1`] = `
type="radio"
/>
<div
aria-selected="false"
class="ant-segmented-item-label"
title="Yearly"
>
Expand All @@ -98,6 +94,7 @@ exports[`Segmented > render options 1`] = `
exports[`Segmented > render options with ellipsis 1`] = `
<div
aria-label="segmented control"
aria-orientation="horizontal"
class="ant-segmented ant-segmented-block"
role="radiogroup"
tabindex="0"
Expand All @@ -115,7 +112,6 @@ exports[`Segmented > render options with ellipsis 1`] = `
type="radio"
/>
<div
aria-selected="true"
class="ant-segmented-item-label"
title="123"
>
Expand All @@ -131,7 +127,6 @@ exports[`Segmented > render options with ellipsis 1`] = `
type="radio"
/>
<div
aria-selected="false"
class="ant-segmented-item-label"
title="456"
>
Expand All @@ -147,7 +142,6 @@ exports[`Segmented > render options with ellipsis 1`] = `
type="radio"
/>
<div
aria-selected="false"
class="ant-segmented-item-label"
>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,9 @@ exports[`PageContainer > extra and footer 1`] = `
class="ant-breadcrumb ant-page-header-breadcrumb"
>
<ol>
<li>
<li
class="ant-breadcrumb-item"
>
<a>
一级页面
</a>
Expand All @@ -303,7 +305,9 @@ exports[`PageContainer > extra and footer 1`] = `
>
/
</li>
<li>
<li
class="ant-breadcrumb-item"
>
<a>
二级页面
</a>
Expand All @@ -314,7 +318,9 @@ exports[`PageContainer > extra and footer 1`] = `
>
/
</li>
<li>
<li
class="ant-breadcrumb-item"
>
<span>
当前页面
</span>
Expand Down