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-07-06 11:17:08 +00:00
|
|
|
import { ComponentHooks } from '../basecomponent';
|
2023-09-05 08:50:46 +00:00
|
|
|
import { PassThroughOptions } from '../passthrough';
|
2023-09-05 11:28:04 +00:00
|
|
|
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-07-11 22:42:43 +00:00
|
|
|
export declare type ColumnGroupPassThroughOptionType = ColumnGroupPassThroughAttributes | ((options: ColumnGroupPassThroughMethodOptions) => ColumnGroupPassThroughAttributes | string) | string | null | undefined;
|
2023-05-10 11:39:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) option method.
|
|
|
|
*/
|
|
|
|
export interface ColumnGroupPassThroughMethodOptions {
|
2023-09-05 06:50:04 +00:00
|
|
|
/**
|
|
|
|
* Defines instance.
|
|
|
|
*/
|
2023-07-06 12:01:33 +00:00
|
|
|
instance: any;
|
2023-09-05 06:50:04 +00:00
|
|
|
/**
|
|
|
|
* Defines valid properties.
|
|
|
|
*/
|
2023-05-10 11:39:25 +00:00
|
|
|
props: ColumnGroupProps;
|
2023-09-05 06:50:04 +00:00
|
|
|
/**
|
2023-12-05 11:06:32 +00:00
|
|
|
* Defines parent options.
|
2023-09-05 06:50:04 +00:00
|
|
|
*/
|
2023-12-05 11:06:32 +00:00
|
|
|
parent: any;
|
2023-09-05 06:50:04 +00:00
|
|
|
/**
|
|
|
|
* Defines current options.
|
|
|
|
*/
|
2023-06-02 11:10:18 +00:00
|
|
|
context: ColumnGroupContext;
|
2023-09-05 08:50:46 +00:00
|
|
|
/**
|
|
|
|
* Defines passthrough(pt) options in global config.
|
|
|
|
*/
|
|
|
|
global: object | undefined;
|
2023-05-10 11:39:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) options.
|
|
|
|
* @see {@link ColumnGroupProps.pt}
|
|
|
|
*/
|
|
|
|
export interface ColumnGroupPassThroughOptions {
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the root's DOM element.
|
2023-05-10 11:39:25 +00:00
|
|
|
*/
|
|
|
|
root?: ColumnGroupPassThroughOptionType;
|
2023-07-06 11:09:01 +00:00
|
|
|
/**
|
2023-11-07 06:16:39 +00:00
|
|
|
* Used to manage all lifecycle hooks.
|
2023-07-06 11:09:01 +00:00
|
|
|
* @see {@link BaseComponent.ComponentHooks}
|
|
|
|
*/
|
|
|
|
hooks?: ComponentHooks;
|
2023-05-10 11:39:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to DOM elements inside the component.
|
2023-05-10 11:39:25 +00:00
|
|
|
* @type {ColumnGroupPassThroughOptions}
|
|
|
|
*/
|
2023-09-05 11:28:04 +00:00
|
|
|
pt?: PassThrough<ColumnGroupPassThroughOptions>;
|
2023-09-05 08:50:46 +00:00
|
|
|
/**
|
|
|
|
* Used to configure passthrough(pt) options of the component.
|
|
|
|
* @type {PassThroughOptions}
|
|
|
|
*/
|
|
|
|
ptOptions?: PassThroughOptions;
|
2023-06-02 07:00:36 +00:00
|
|
|
/**
|
|
|
|
* When enabled, it removes component related styles in the core.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
unstyled?: boolean;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
2023-06-02 11:10:18 +00:00
|
|
|
/**
|
|
|
|
* Defines current options in ColumnGroup component.
|
|
|
|
*/
|
|
|
|
export interface ColumnGroupContext {
|
|
|
|
/**
|
|
|
|
* Current type of the column group.
|
|
|
|
*/
|
|
|
|
type: string;
|
2023-07-19 12:05:06 +00:00
|
|
|
/**
|
|
|
|
* Current scrollable state of column group as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
scrollable: boolean;
|
2023-06-02 11:10:18 +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;
|