134 lines
3.3 KiB
TypeScript
Executable File
134 lines
3.3 KiB
TypeScript
Executable File
/**
|
|
* 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/)
|
|
* @module columngroup
|
|
*/
|
|
import { ComponentHooks } from '../basecomponent';
|
|
import { DataTablePassThroughOptions } from '../datatable';
|
|
import { PassThroughOptions } from '../passthrough';
|
|
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
|
|
|
export declare type ColumnGroupPassThroughOptionType = ColumnGroupPassThroughAttributes | ((options: ColumnGroupPassThroughMethodOptions) => ColumnGroupPassThroughAttributes | string) | string | null | undefined;
|
|
|
|
/**
|
|
* Custom passthrough(pt) option method.
|
|
*/
|
|
export interface ColumnGroupPassThroughMethodOptions {
|
|
/**
|
|
* Defines instance.
|
|
*/
|
|
instance: any;
|
|
/**
|
|
* Defines valid properties.
|
|
*/
|
|
props: ColumnGroupProps;
|
|
/**
|
|
* Defines parent instance.
|
|
*/
|
|
parent: DataTablePassThroughOptions;
|
|
/**
|
|
* Defines current options.
|
|
*/
|
|
context: ColumnGroupContext;
|
|
/**
|
|
* Defines passthrough(pt) options in global config.
|
|
*/
|
|
global: object | undefined;
|
|
}
|
|
|
|
/**
|
|
* Custom passthrough(pt) options.
|
|
* @see {@link ColumnGroupProps.pt}
|
|
*/
|
|
export interface ColumnGroupPassThroughOptions {
|
|
/**
|
|
* Used to pass attributes to the root's DOM element.
|
|
*/
|
|
root?: ColumnGroupPassThroughOptionType;
|
|
/**
|
|
* Used to manage all lifecycle hooks
|
|
* @see {@link BaseComponent.ComponentHooks}
|
|
*/
|
|
hooks?: ComponentHooks;
|
|
}
|
|
|
|
/**
|
|
* Custom passthrough attributes for each DOM elements
|
|
*/
|
|
export interface ColumnGroupPassThroughAttributes {
|
|
[key: string]: any;
|
|
}
|
|
|
|
/**
|
|
* Defines valid properties in ColumnGroup component.
|
|
*/
|
|
export interface ColumnGroupProps {
|
|
/**
|
|
* Type of column group
|
|
*/
|
|
type?: 'header' | 'footer' | undefined;
|
|
/**
|
|
* Used to pass attributes to DOM elements inside the component.
|
|
* @type {ColumnGroupPassThroughOptions}
|
|
*/
|
|
pt?: PassThrough<ColumnGroupPassThroughOptions>;
|
|
/**
|
|
* Used to configure passthrough(pt) options of the component.
|
|
* @type {PassThroughOptions}
|
|
*/
|
|
ptOptions?: PassThroughOptions;
|
|
/**
|
|
* When enabled, it removes component related styles in the core.
|
|
* @defaultValue false
|
|
*/
|
|
unstyled?: boolean;
|
|
}
|
|
|
|
/**
|
|
* Defines current options in ColumnGroup component.
|
|
*/
|
|
export interface ColumnGroupContext {
|
|
/**
|
|
* Current type of the column group.
|
|
*/
|
|
type: string;
|
|
/**
|
|
* Current scrollable state of column group as a boolean.
|
|
* @defaultValue false
|
|
*/
|
|
scrollable: boolean;
|
|
}
|
|
|
|
/**
|
|
* Defines valid slots in ColumnGroup component.
|
|
*/
|
|
export interface ColumnGroupSlots {}
|
|
|
|
/**
|
|
* Defines valid emits in ColumnGroup component.
|
|
*/
|
|
export interface ColumnGroupEmits {}
|
|
|
|
/**
|
|
* **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
|
|
*/
|
|
declare class ColumnGroup extends ClassComponent<ColumnGroupProps, ColumnGroupSlots, ColumnGroupEmits> {}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface GlobalComponents {
|
|
ColumnGroup: GlobalComponentConstructor<ColumnGroup>;
|
|
}
|
|
}
|
|
|
|
export default ColumnGroup;
|