chore: replace all cn comments of fe to en version by volc api (#320)

This commit is contained in:
tecvan
2025-07-31 10:32:15 +08:00
committed by GitHub
parent 716ec0cba8
commit 71f6245a01
2960 changed files with 15545 additions and 15545 deletions

View File

@@ -15,13 +15,13 @@
*/
/*
表格单元格宽度适配
当 width 小于 WidthThresholds.Small 时应该返回 ColumnSize.Default。
当 width 大于等于 WidthThresholds.Small 但小于 WidthThresholds.Medium 时应该返回 ColumnSize.Small。
当 width 大于等于 WidthThresholds.Medium 但小于 WidthThresholds.Large 时应该返回 ColumnSize.Medium。
当 width 大于等于 WidthThresholds.Large 时应该返回 ColumnSize.Large
minWidth 'auto' 时应该返回 'auto'。
minWidth 是一个指定数字时,应该返回 minWidth columnWidth 中较大的一个。*/
Table cell width adaptation
ColumnSize. Default should be returned when width is less than WidthThresholds. Small.
ColumnSize. Small should be returned when width is greater than or equal to WidthThresholds. Small but less than WidthThresholds. Medium.
ColumnSize. Medium should be returned when width is greater than or equal to WidthThresholds. Medium but less than WidthThresholds. Large.
ColumnSize. Large should be returned when width is greater than or equal to WidthThresholds. Large.
'Auto 'should be returned when minWidth is'auto'.
When minWidth is a specified number, the larger of minWidth and columnWidth should be returned.*/
import { describe, it, expect } from 'vitest';