Docapitable styling changes

This commit is contained in:
Bahadır Sofuoğlu 2023-03-06 13:59:56 +03:00
parent be462ac500
commit 2ce28e2d7b
11 changed files with 1027 additions and 1052 deletions

View file

@ -103,7 +103,7 @@ export interface DataTableExportCSVOptions {
/**
* Custom tab open event.
* @see sort
* @see {@link DataTableEmits.sort}
*/
export interface DataTableSortEvent {
/**
@ -143,7 +143,7 @@ export interface DataTableSortEvent {
/**
* Custom pagination event.
* @see page
* @see {@link DataTableEmits.page}
* @extends DataTableSortEvent
*/
export interface DataTablePageEvent extends DataTableSortEvent {
@ -159,7 +159,7 @@ export interface DataTablePageEvent extends DataTableSortEvent {
/**
* Custom sort event.
* @see sort
* @see {@link DataTableEmits.sort}
* @extends DataTableSortEvent
*/
export interface DataTableFilterEvent extends DataTableSortEvent {
@ -171,6 +171,7 @@ export interface DataTableFilterEvent extends DataTableSortEvent {
/**
* Custom row click event.
* @see {@link DataTableEmits['row-click']}
*/
export interface DataTableRowClickEvent {
/**
@ -189,21 +190,21 @@ export interface DataTableRowClickEvent {
/**
* Custom row double click event.
* @see row-click
* @see {@link DataTableEmits['row-dblclick']]}
* @extends DataTableRowClickEvent
*/
export interface DataTableRowDoubleClickEvent extends DataTableRowClickEvent {}
/**
* Custom context menu event.
* @see row-click
* @see {@link DataTableEmits['row-contextmenu']}
* @extends DataTableRowClickEvent
*/
export interface DataTableRowContextMenuEvent extends DataTableRowClickEvent {}
/**
* Custom row select event.
*
* @see {@link DataTableEmits['row-select']}
*/
export interface DataTableRowSelectEvent {
/**
@ -226,14 +227,14 @@ export interface DataTableRowSelectEvent {
/**
* Custom row unselect event.
* @see row-select
* @see {@link DataTableEmits['row-unselect']}
* @extends DataTableRowSelectEvent
*/
export interface DataTableRowUnselectEvent extends DataTableRowSelectEvent {}
/**
* Custom row select all event.
*
* @see {@link DataTableEmits['row-select-all']}
*/
export interface DataTableRowSelectAllEvent {
/**
@ -248,7 +249,7 @@ export interface DataTableRowSelectAllEvent {
/**
* Custom row unselect all event.
*
* @see {@link DataTableEmits['row-unselect-all']}
*/
export interface DataTableRowUnselectAllEvent {
/**
@ -259,7 +260,7 @@ export interface DataTableRowUnselectAllEvent {
/**
* Custom row select all change event.
*
* @see {@link DataTableEmits['select-all-change']}
*/
export interface DataTableSelectAllChangeEvent {
/**
@ -274,7 +275,7 @@ export interface DataTableSelectAllChangeEvent {
/**
* Custom row resize end event.
*
* @see {@link DataTableEmits['column-resize-end']}
*/
export interface DataTableColumnResizeEndEvent {
/**
@ -289,7 +290,7 @@ export interface DataTableColumnResizeEndEvent {
/**
* Custom row column reorder event.
*
* @see {@link DataTableEmits['column-reorder']}
*/
export interface DataTableColumnReorderEvent {
/**
@ -308,7 +309,7 @@ export interface DataTableColumnReorderEvent {
/**
* Custom row reorder event.
*
* @see {@link DataTableEmits['row-reorder']}
*/
export interface DataTableRowReorderEvent {
/**
@ -331,7 +332,7 @@ export interface DataTableRowReorderEvent {
/**
* Custom row expand event.
*
* @see {@link DataTableEmits['row-expand']}
*/
export interface DataTableRowExpandEvent {
/**
@ -346,14 +347,14 @@ export interface DataTableRowExpandEvent {
/**
* Custom row collapse event.
* @see rowgroup-collapse
* @see {@link DataTableEmits['row-expand']}
* @extends DataTableRowExpandEvent
*/
export interface DataTableRowCollapseEvent extends DataTableRowExpandEvent {}
/**
* Custom cell edit init event.
*
* @see {@link DataTableEmits['cell-edit-init']}
*/
export interface DataTableCellEditInitEvent {
/**
@ -376,14 +377,14 @@ export interface DataTableCellEditInitEvent {
/**
* Custom cell edit cancel event.
* @see cell-edit-init
* @see {@link DataTableEmits['cell-edit-cancel']}
* @extends DataTableCellEditInitEvent
*/
export interface DataTableCellEditCancelEvent extends DataTableCellEditInitEvent {}
/**
* Custom cell edit complete event.
*
* @see {@link DataTableEmits['cell-edit-complete']}
*/
export interface DataTableCellEditCompleteEvent {
/**
@ -422,7 +423,7 @@ export interface DataTableCellEditCompleteEvent {
/**
* Custom row edit complete event.
*
* @see {@link DataTableEmits['row-edit-init']}
*/
export interface DataTableRowEditInitEvent {
/**
@ -449,21 +450,21 @@ export interface DataTableRowEditInitEvent {
/**
* Custom row edit init event.
* @see row-edit-init
* @see {@link DataTableEmits['row-edit-complete']}
* @extends DataTableRowEditInitEvent
*/
export interface DataTableRowEditSaveEvent extends DataTableRowEditInitEvent {}
/**
* Custom row edit cancel event.
* @see row-edit-init
* @see {@link DataTableEmits['row-edit-cancel']}
* @extends DataTableRowEditCancelEvent
*/
export interface DataTableRowEditCancelEvent extends DataTableRowEditInitEvent {}
/**
* Custom state event.
*
* @see {@link DataTableEmits['state-save']}
*/
export interface DataTableStateEvent {
/**