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

137 lines
3.3 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-07-06 11:17:08 +00:00
import { ComponentHooks } from '../basecomponent';
2023-09-05 08:50:46 +00:00
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
2022-09-06 12:03:37 +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 {
/**
* Defines instance.
*/
2023-07-06 12:01:33 +00:00
instance: any;
/**
* Defines valid properties.
*/
2023-05-10 11:39:25 +00:00
props: ColumnGroupProps;
/**
* Defines valid attributes.
*/
attrs: any;
/**
* Defines parent options.
*/
parent: any;
/**
* 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}
*/
pt?: PassThrough<ColumnGroupPassThroughOptions>;
2023-09-05 08:50:46 +00:00
/**
* 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;
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;
/**
* 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;