rayyy-vue-table-components 1.3.11 → 1.3.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1002,6 +1002,7 @@ const handleColumnSubmit = (newColumns: TableColumn<User>[]) => {
1002
1002
  | `showOverFlowTooltip` | `boolean` | `false` | 是否顯示溢出提示 |
1003
1003
  | `summaryMethod` | `SummaryMethod<T>` | - | 合計行計算方法 |
1004
1004
  | `baseTableRowClassName` | `RowClassNameGetter<T>` | - | 行樣式類名函數 |
1005
+ | `showOperator` | `boolean` | `false` | 是否顯示操作列 |
1005
1006
 
1006
1007
  #### Events
1007
1008
 
@@ -1011,6 +1012,8 @@ const handleColumnSubmit = (newColumns: TableColumn<User>[]) => {
1011
1012
  | `current-change` | `currentRow: T \| null` | 當前行變更時觸發 |
1012
1013
  | `cell-click` | `column: TableColumn<T>, row: T` | 單元格點擊時觸發 |
1013
1014
  | `column-sort-change` | `value: SortChangValue<T>` | 列排序變更時觸發 |
1015
+ | `click:checkRow` | `row: T` | 查看按鈕點擊時觸發 |
1016
+ | `click:editRow` | `row: T` | 編輯按鈕點擊時觸發 |
1014
1017
 
1015
1018
  #### Slots
1016
1019