-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into fix/bug-fix-0.15.3
- Loading branch information
Showing
16 changed files
with
245 additions
and
69 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
common/changes/@visactor/vtable/666-bug-editor-object-setIn-columns_2023-12-01-08-22.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"comment": "fix: editor object set in column be cloned\n\n", | ||
"type": "none", | ||
"packageName": "@visactor/vtable" | ||
} | ||
], | ||
"packageName": "@visactor/vtable", | ||
"email": "[email protected]" | ||
} |
11 changes: 11 additions & 0 deletions
11
common/changes/@visactor/vtable/fix-release_resize_remove_2023-12-01-02-25.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"comment": "fix: release tableInstance after resize event trigger\n\n", | ||
"type": "none", | ||
"packageName": "@visactor/vtable" | ||
} | ||
], | ||
"packageName": "@visactor/vtable", | ||
"email": "[email protected]" | ||
} |
11 changes: 11 additions & 0 deletions
11
common/changes/@visactor/vtable/refactor-ts-define-optimize_2023-12-01-04-33.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"comment": "refactor: ts define optimize\n\n", | ||
"type": "none", | ||
"packageName": "@visactor/vtable" | ||
} | ||
], | ||
"packageName": "@visactor/vtable", | ||
"email": "[email protected]" | ||
} |
11 changes: 11 additions & 0 deletions
11
common/changes/@visactor/vtable/refactor-ts-define-optimize_2023-12-01-07-39.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"comment": "fix: columnWidthComputeMode only-header\n\n", | ||
"type": "none", | ||
"packageName": "@visactor/vtable" | ||
} | ||
], | ||
"packageName": "@visactor/vtable", | ||
"email": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 5 additions & 4 deletions
9
packages/react-vtable/src/components/pivot/pivot-dimension.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
import type { BaseComponentProps } from '../base-component'; | ||
import { createComponent } from '../base-component'; | ||
import type { IDimension } from '@visactor/vtable'; | ||
import type { IRowDimension, IColumnDimension } from '@visactor/vtable'; | ||
|
||
export type PivotDimensionProps = IDimension & BaseComponentProps; | ||
export type RowPivotDimensionProps = IRowDimension & BaseComponentProps; | ||
export type ColumnPivotDimensionProps = IColumnDimension & BaseComponentProps; | ||
|
||
export const PivotColumnDimension = createComponent<PivotDimensionProps>('PivotColumnDimension', 'columns'); | ||
export const PivotRowDimension = createComponent<PivotDimensionProps>('PivotRowDimension', 'rows'); | ||
export const PivotColumnDimension = createComponent<ColumnPivotDimensionProps>('PivotColumnDimension', 'columns'); | ||
export const PivotRowDimension = createComponent<RowPivotDimensionProps>('PivotRowDimension', 'rows'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.