Skip to content

Commit 19d6614

Browse files
authored
Merge pull request #3687 from VisActor/release/1.17.5
[Auto release] release 1.17.5
2 parents 5fbb2c1 + fb1f6d0 commit 19d6614

41 files changed

Lines changed: 540 additions & 73 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"definitionName":"lockStepVersion","policyName":"vtableMain","version":"1.17.4","mainProject":"@visactor/vtable","nextBump":"patch"}]
1+
[{"definitionName":"lockStepVersion","policyName":"vtableMain","version":"1.17.5","mainProject":"@visactor/vtable","nextBump":"patch"}]

docs/assets/changelog/en/release.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# v1.17.4
2+
3+
2025-03-31
4+
5+
6+
**🆕 New feature**
7+
8+
- **@visactor/vtable**: add barMarkInBar style config in progressbar [#3616](https://github.com/VisActor/VTable/issues/3616)
9+
10+
**🐛 Bug fix**
11+
12+
- **@visactor/vtable**: fix button style problem [#3614](https://github.com/VisActor/VTable/issues/3614)
13+
- **@visactor/vtable**: fix checkbox state order update [#3606](https://github.com/VisActor/VTable/issues/3606)
14+
- **@visactor/vtable**: add isCustom tag for merge cell range [#3504](https://github.com/VisActor/VTable/issues/3504)
15+
- **@visactor/vtable**: fix tree checkbox state update problem
16+
- **@visactor/vtable**: disable group title editor
17+
18+
[more detail about v1.17.4](https://github.com/VisActor/VTable/releases/tag/v1.17.4)
19+
120
# v1.17.3
221

322
2025-03-24

docs/assets/changelog/zh/release.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# v1.17.4
2+
3+
2025-03-31
4+
5+
**🆕 新增功能**
6+
7+
- **@visactor/vtable**: 在进度条中添加条形标记样式配置 [#3616](https://github.com/VisActor/VTable/issues/3616)
8+
9+
**🐛 功能修复**
10+
11+
- **@visactor/vtable**: 修复按钮样式问题 [#3614](https://github.com/VisActor/VTable/issues/3614)
12+
- **@visactor/vtable**: 修复复选框状态顺序更新问题 [#3606](https://github.com/VisActor/VTable/issues/3606)
13+
- **@visactor/vtable**: 为合并单元格范围添加自定义标记 [#3504](https://github.com/VisActor/VTable/issues/3504)
14+
- **@visactor/vtable**: 修复树形复选框状态更新问题
15+
- **@visactor/vtable**: 禁用分组标题编辑器
16+
17+
[更多详情请查看 v1.17.4](https://github.com/VisActor/VTable/releases/tag/v1.17.4)
18+
119
# v1.17.3
220

321
2025-03-24

docs/assets/option/en/common/style-item-define.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,20 @@ type CursorPropertyDefine = string | ((args: StylePropertyFunctionArg) => string
134134
{{ target: common-marked }}
135135

136136
```
137-
type MarkedPropertyDefine = boolean | ((args: StylePropertyFunctionArg) => boolean);
137+
type MarkedPropertyDefine = boolean | MarkCellStyle | ((args: StylePropertyFunctionArg) => boolean | MarkCellStyle);
138+
139+
type MarkCellStyle = {
140+
/** 标记背景色 默认蓝色*/
141+
bgColor?: CanvasRenderingContext2D['fillStyle'];
142+
/** 标记形状 默认'sector' */
143+
shape?: 'rect' | 'triangle' | 'sector';
144+
/** 标记位置 默认'right-top' */
145+
position?: 'left-top' | 'left-bottom' | 'right-top' | 'right-bottom';
146+
/** 标记大小 默认10 */
147+
size?: number;
148+
/** 标记偏移量 默认0 */
149+
offset?: number;
150+
};
138151
139152
```
140153

docs/assets/option/en/common/style.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,12 @@ Set whether the text in the cell has a sticking effect 【Text can dynamically a
123123
When the cell text has an adsorption effect [the text can dynamically adjust its position when scrolling], the basis for adsorption is the horizontal alignment of the cell. For example, when `textStickBaseOnAlign` is `true` and `textAlign` is `'center'`, the text will be adsorbed to the horizontal center of the cell; otherwise, it will be adsorbed to the left or right edge of the cell (depending on the scroll position)
124124

125125
#${prefix} marked(MarkedPropertyDefine)
126+
126127
Set whether the cell has a marked style
127128
{{ use: common-marked(
128129
prefix = ${prefix}
129130
) }}
131+
130132
#${prefix} autoWrapText(boolean)
131133
Set whether the cell's text should automatically wrap
132134

docs/assets/option/zh/common/style-item-define.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,20 @@ type CursorPropertyDefine = string | ((args: StylePropertyFunctionArg) => string
134134
{{ target: common-marked }}
135135

136136
```
137-
type MarkedPropertyDefine = boolean | ((args: StylePropertyFunctionArg) => boolean);
138-
137+
type MarkedPropertyDefine = boolean | MarkCellStyle | ((args: StylePropertyFunctionArg) => boolean | MarkCellStyle);
138+
139+
type MarkCellStyle = {
140+
/** 标记背景色 默认蓝色*/
141+
bgColor?: CanvasRenderingContext2D['fillStyle'];
142+
/** 标记形状 默认'sector' */
143+
shape?: 'rect' | 'triangle' | 'sector';
144+
/** 标记位置 默认'right-top' */
145+
position?: 'left-top' | 'left-bottom' | 'right-top' | 'right-bottom';
146+
/** 标记大小 默认10 */
147+
size?: number;
148+
/** 标记偏移量 默认0 */
149+
offset?: number;
150+
};
139151
```
140152

141153
{{ target: common-colorsDef }}

docs/assets/option/zh/common/style.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,12 @@
124124
当单元格的文本有吸附效果【当滚动时文本可动态调整位置】时,吸附的基准是单元格的水平对齐方式。例如当`textStickBaseOnAlign``true`时,`textAlign``'center'`时,文本会吸附在单元格的水平中心位置;否则就会吸附在单元格左边缘或右边缘(依据滚动位置决定)。
125125

126126
#${prefix} marked(MarkedPropertyDefine)
127+
127128
设置单元格是否有标记样式
128129
{{ use: common-marked(
129130
prefix = ${prefix}
130131
) }}
132+
131133
#${prefix} autoWrapText(boolean)
132134
设置单元格是否自动换行
133135

packages/openinula-vtable/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@visactor/openinula-vtable",
3-
"version": "1.17.4",
3+
"version": "1.17.5",
44
"description": "The openinula version of VTable",
55
"keywords": [
66
"openinula",

packages/react-vtable/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@visactor/react-vtable",
3-
"version": "1.17.4",
3+
"version": "1.17.5",
44
"description": "The react version of VTable",
55
"keywords": [
66
"react",

packages/vtable-calendar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@visactor/vtable-calendar",
3-
"version": "1.17.4",
3+
"version": "1.17.5",
44
"description": "The calendar component of VTable",
55
"author": {
66
"name": "VisActor",

0 commit comments

Comments
 (0)