primevue-mirror/components/lib/toolbar/Toolbar.d.ts

140 lines
3.3 KiB
TypeScript
Raw Normal View History

2023-03-01 08:09:50 +00:00
/**
*
* Toolbar is a grouping component for buttons and other content.
*
* [Live Demo](https://www.primevue.org/toolbar/)
*
* @module toolbar
*
*/
2022-09-06 12:03:37 +00:00
import { VNode } from 'vue';
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 ToolbarPassThroughOptionType = ToolbarPassThroughAttributes | ((options: ToolbarPassThroughMethodOptions) => ToolbarPassThroughAttributes | string) | string | null | undefined;
2023-03-28 12:20:20 +00:00
/**
* Custom passthrough(pt) option method.
*/
export interface ToolbarPassThroughMethodOptions {
/**
* Defines instance.
*/
2023-07-06 12:01:33 +00:00
instance: any;
/**
* Defines valid properties.
*/
2023-03-28 12:20:20 +00:00
props: ToolbarProps;
2023-09-05 08:50:46 +00:00
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
2023-03-28 12:20:20 +00:00
}
/**
* Custom passthrough(pt) options.
* @see {@link ToolbarProps.pt}
*/
export interface ToolbarPassThroughOptions {
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the root's DOM element.
2023-03-28 12:20:20 +00:00
*/
root?: ToolbarPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the start's DOM element.
2023-03-28 12:20:20 +00:00
*/
2023-04-19 08:00:52 +00:00
start?: ToolbarPassThroughOptionType;
2023-03-28 12:20:20 +00:00
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the center's DOM element.
2023-03-28 12:20:20 +00:00
*/
2023-04-19 08:00:52 +00:00
center?: ToolbarPassThroughOptionType;
2023-03-28 12:20:20 +00:00
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the right's DOM element.
2023-03-28 12:20:20 +00:00
*/
2023-04-19 08:00:52 +00:00
end?: ToolbarPassThroughOptionType;
2023-07-06 11:09:01 +00:00
/**
2023-08-01 14:01:12 +00:00
* Used to manage all lifecycle hooks
2023-07-06 11:09:01 +00:00
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
2023-03-28 12:20:20 +00:00
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface ToolbarPassThroughAttributes {
[key: string]: any;
}
2023-03-01 08:09:50 +00:00
/**
* Defines valid properties in Toolbar component.
*/
2022-09-06 12:03:37 +00:00
export interface ToolbarProps {
2022-09-14 11:26:01 +00:00
/**
* Defines a string value that labels an interactive element.
*/
'aria-labelledby'?: string | undefined;
2023-03-28 12:20:20 +00:00
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to DOM elements inside the component.
2023-03-28 12:20:20 +00:00
* @type {ToolbarPassThroughOptions}
*/
pt?: PassThrough<ToolbarPassThroughOptions>;
2023-05-19 12:19:16 +00:00
/**
2023-09-05 08:50:46 +00:00
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
/**
2023-05-19 12:19:16 +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-03-01 08:09:50 +00:00
/**
* Defines valid slots in Toolbar slots.
*/
2022-09-06 12:03:37 +00:00
export interface ToolbarSlots {
/**
* Custom start template.
*/
2023-03-01 08:09:50 +00:00
start(): VNode[];
2022-12-08 11:04:25 +00:00
/**
* Custom center template.
*/
2023-03-01 08:09:50 +00:00
center(): VNode[];
2022-12-08 11:04:25 +00:00
2022-09-06 12:03:37 +00:00
/**
* Custom end template.
*/
2023-03-01 08:09:50 +00:00
end(): VNode[];
2022-09-06 12:03:37 +00:00
}
2023-03-01 08:09:50 +00:00
/**
* Defines valid emits in Toolbar component.
*/
export interface ToolbarEmits {}
2022-09-06 12:03:37 +00:00
2023-03-01 08:09:50 +00:00
/**
* **PrimeVue - Toolbar**
*
* _Toolbar is a grouping component for buttons and other content._
*
* [Live Demo](https://www.primevue.org/toolbar/)
* --- ---
2023-03-03 10:55:20 +00:00
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
2023-03-01 08:09:50 +00:00
*
* @group Component
*
*/
2023-03-01 12:30:54 +00:00
declare class Toolbar extends ClassComponent<ToolbarProps, ToolbarSlots, ToolbarEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
Toolbar: GlobalComponentConstructor<Toolbar>;
2022-09-06 12:03:37 +00:00
}
}
export default Toolbar;