primevue-mirror/components/lib/row/Row.d.ts

117 lines
2.5 KiB
TypeScript
Raw Normal View History

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
*/
2023-07-06 11:17:08 +00:00
import { ComponentHooks } from '../basecomponent';
2022-09-06 12:03:37 +00:00
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
export declare type RowPassThroughOptionType = RowPassThroughAttributes | ((options: RowPassThroughMethodOptions) => RowPassThroughAttributes | string) | string | null | undefined;
2023-05-10 11:39:25 +00:00
/**
* Custom passthrough(pt) option method.
*/
export interface RowPassThroughMethodOptions {
/**
* Defines instance.
*/
2023-07-06 12:01:33 +00:00
instance: any;
/**
* Defines valid properties.
*/
2023-05-10 11:39:25 +00:00
props: RowProps;
/**
* Defines valid attributes.
*/
attrs: any;
/**
* Defines parent options.
*/
parent: any;
/**
* Defines current options.
*/
2023-06-02 11:10:18 +00:00
context: RowContext;
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 RowProps.pt}
*/
export interface RowPassThroughOptions {
/**
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?: RowPassThroughOptionType;
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 RowPassThroughAttributes {
[key: string]: any;
}
2023-03-01 14:39:50 +00:00
/**
* Defines valid properties in Row component.
*/
export interface RowProps {
/**
* 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 Row component.
*/
export interface RowContext {
/**
* Current index of the row.
*/
index: number;
}
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;