rayyy-vue-table-components 1.3.14 → 1.3.16
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 +2 -1
- package/dist/index.es.js +2474 -2459
- package/dist/index.umd.js +6 -6
- package/dist/src/components/tables/BaseTable.vue.d.ts +2 -1
- package/dist/src/components/tables/SortTable.vue.d.ts +2 -1
- package/dist/src/components/tables/TitleTable.vue.d.ts +2 -1
- package/dist/src/types/components.d.ts +12 -6
- package/package.json +1 -1
- package/src/components/tables/BaseTable.vue +31 -6
- package/src/components/tables/SortTable.vue +4 -2
- package/src/components/tables/TitleTable.vue +4 -2
- package/src/types/components.d.ts +12 -6
package/README.md
CHANGED
|
@@ -1002,7 +1002,8 @@ const handleColumnSubmit = (newColumns: TableColumn<User>[]) => {
|
|
|
1002
1002
|
| `showOverFlowTooltip` | `boolean` | `false` | 是否顯示溢出提示 |
|
|
1003
1003
|
| `summaryMethod` | `SummaryMethod<T>` | - | 合計行計算方法 |
|
|
1004
1004
|
| `baseTableRowClassName` | `RowClassNameGetter<T>` | - | 行樣式類名函數 |
|
|
1005
|
-
| `
|
|
1005
|
+
| `showCheckBtn` | `boolean` | `false` | 是否顯示查看按鈕 |
|
|
1006
|
+
| `showEditBtn` | `boolean` | `false` | 是否顯示編輯按鈕 |
|
|
1006
1007
|
|
|
1007
1008
|
#### Events
|
|
1008
1009
|
|