2023-02-28 08:29:30 +00:00
|
|
|
/**
|
2023-03-01 14:39:50 +00:00
|
|
|
* Row component is a helper component used to create grouping structures in DataTable.
|
|
|
|
*
|
2023-03-09 13:30:43 +00:00
|
|
|
* [Live Demo](https://www.primevue.org/datatable/)
|
2023-03-01 14:39:50 +00:00
|
|
|
*
|
2023-02-28 08:29:30 +00:00
|
|
|
* @module row
|
|
|
|
*/
|
2022-09-06 12:03:37 +00:00
|
|
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
|
|
|
|
2023-03-01 14:39:50 +00:00
|
|
|
/**
|
|
|
|
* Defines valid properties in Row component.
|
|
|
|
*/
|
2022-09-14 11:26:01 +00:00
|
|
|
export interface RowProps {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 14:39:50 +00:00
|
|
|
/**
|
|
|
|
* Defines valid slots in Row component.
|
|
|
|
*/
|
2022-09-14 11:26:01 +00:00
|
|
|
export interface RowSlots {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 14:39:50 +00:00
|
|
|
/**
|
|
|
|
* Defines valid emits in Row component.
|
|
|
|
*/
|
2023-02-28 08:29:30 +00:00
|
|
|
export interface RowEmits {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 14:39:50 +00:00
|
|
|
/**
|
|
|
|
* **PrimeVue - Row**
|
|
|
|
*
|
|
|
|
* _Row component is a helper component used to create grouping structures in DataTable._
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/datatable/)
|
|
|
|
* --- ---
|
|
|
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
|
|
|
*
|
|
|
|
* @group Component
|
|
|
|
*/
|
2022-09-14 11:26:01 +00:00
|
|
|
declare class Row extends ClassComponent<RowProps, RowSlots, RowEmits> {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
declare module '@vue/runtime-core' {
|
|
|
|
interface GlobalComponents {
|
2022-09-14 11:26:01 +00:00
|
|
|
Row: GlobalComponentConstructor<Row>;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Row;
|