primevue-mirror/components/lib/columngroup/ColumnGroup.d.ts

84 lines
2.1 KiB
TypeScript
Raw Normal View History

2023-02-28 08:29:30 +00:00
/**
2023-03-01 14:39:42 +00:00
* Columns can be grouped at header and footer sections by defining a ColumnGroup component.
* It is a helper component for DataTable.
*
* [Live Demo](https://www.primevue.org/datatable/)
2023-02-28 08:29:30 +00:00
* @module columngroup
*/
2023-05-10 11:39:25 +00:00
import { DataTablePassThroughOptions } from '../datatable';
2022-09-06 12:03:37 +00:00
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
2023-05-10 11:39:25 +00:00
export declare type ColumnGroupPassThroughOptionType = ColumnGroupPassThroughAttributes | ((options: ColumnGroupPassThroughMethodOptions) => ColumnGroupPassThroughAttributes) | null | undefined;
/**
* Custom passthrough(pt) option method.
*/
export interface ColumnGroupPassThroughMethodOptions {
props: ColumnGroupProps;
parent: DataTablePassThroughOptions;
}
/**
* Custom passthrough(pt) options.
* @see {@link ColumnGroupProps.pt}
*/
export interface ColumnGroupPassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
*/
root?: ColumnGroupPassThroughOptionType;
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface ColumnGroupPassThroughAttributes {
[key: string]: any;
}
2023-03-01 14:39:42 +00:00
/**
* Defines valid properties in ColumnGroup component.
*/
2022-09-06 12:03:37 +00:00
export interface ColumnGroupProps {
/**
* Type of column group
*/
2023-02-28 08:29:30 +00:00
type?: 'header' | 'footer' | undefined;
2023-05-10 11:39:25 +00:00
/**
* Uses to pass attributes to DOM elements inside the component.
* @type {ColumnGroupPassThroughOptions}
*/
pt?: ColumnGroupPassThroughOptions;
2022-09-06 12:03:37 +00:00
}
2023-03-01 14:39:42 +00:00
/**
* Defines valid slots in ColumnGroup component.
*/
2022-09-14 11:26:01 +00:00
export interface ColumnGroupSlots {}
2022-09-06 12:03:37 +00:00
2023-03-01 14:39:42 +00:00
/**
* Defines valid emits in ColumnGroup component.
*/
2023-03-01 14:37:47 +00:00
export interface ColumnGroupEmits {}
2022-09-06 12:03:37 +00:00
2023-03-01 14:39:42 +00:00
/**
* **PrimeVue - ColumnGroup**
*
* _It is a helper component for 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 ColumnGroup extends ClassComponent<ColumnGroupProps, ColumnGroupSlots, ColumnGroupEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
ColumnGroup: GlobalComponentConstructor<ColumnGroup>;
2022-09-06 12:03:37 +00:00
}
}
export default ColumnGroup;