/** * * Inplace provides an easy to do editing and display at the same time where clicking the output displays the actual content. * * [Live Demo](https://www.primevue.org/inplace) * * @module inplace * */ import { ButtonHTMLAttributes, HTMLAttributes, VNode } from 'vue'; import { ButtonPassThroughOptions } from '../button'; import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; export declare type InplacePassThroughOptionType = InplacePassThroughAttributes | ((options: InplacePassThroughMethodOptions) => InplacePassThroughAttributes) | null | undefined; /** * Custom passthrough(pt) option method. */ export interface InplacePassThroughMethodOptions { props: InplaceProps; state: InplaceState; } /** * Custom passthrough(pt) options. * @see {@link InplaceProps.pt} */ export interface InplacePassThroughOptions { /** * Uses to pass attributes to the root's DOM element. */ root?: InplacePassThroughOptionType; /** * Uses to pass attributes to the display's DOM element. */ display?: InplacePassThroughOptionType; /** * Uses to pass attributes to the content's DOM element. */ content?: InplacePassThroughOptionType; /** * Uses to pass attributes to the Button component. * @see {@link ButtonPassThroughOptions} */ closeButton?: ButtonPassThroughOptions; } /** * Custom passthrough attributes for each DOM elements */ export interface InplacePassThroughAttributes { [key: string]: any; } /** * Defines current inline state in Inplace component. */ export interface InplaceState { /** * Current active state as a boolean. * @defaultValue false */ d_active: boolean; } /** * Defines valid properties in Inplace component. */ export interface InplaceProps { /** * Displays a button to switch back to display mode. * @defaultValue false */ closable?: boolean | undefined; /** * Whether the content is displayed or not. * @defaultValue false */ active?: boolean | undefined; /** * When present, it specifies that the element should be disabled. * @defaultValue false */ disabled?: boolean | undefined; /** * Icon to display in the close button. * @deprecated since v3.27.0. Use 'closeicon' slot. */ closeIcon?: string | undefined; /** * Uses to pass all properties of the HTMLDivElement to display container. */ displayProps?: HTMLAttributes | undefined; /** * Uses to pass all properties of the HTMLButtonElement to the close button. */ closeButtonProps?: ButtonHTMLAttributes | undefined; /** * Uses to pass attributes to DOM elements inside the component. * @type {InplacePassThroughOptions} */ pt?: InplacePassThroughOptions; /** * When enabled, it removes component related styles in the core. * @defaultValue false */ unstyled?: boolean; } /** * Defines valid slots in Inplace component. */ export interface InplaceSlots { /** * Custom display template. */ display(): VNode[]; /** * Custom content template. */ content(): VNode[]; /** * Custom close icon template. */ closeicon(): VNode[]; } /** * Defines valid emits in Inplace component. */ export interface InplaceEmits { /** * Emitted when the active changes. * @param {boolean} value - New value. */ 'update:active'(value: boolean): void; /** * Callback to invoke when inplace is opened. * @param {Event} event - Browser event. */ open(event: Event): void; /** * Callback to invoke when inplace is closed. * @param {Event} event - Browser event. */ close(event: Event): void; } /** * **PrimeVue - Inplace** * * _Inplace provides an easy to do editing and display at the same time where clicking the output displays the actual content._ * * [Live Demo](https://www.primevue.org/inplace/) * --- --- * ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png) * * @group Component */ declare class Inplace extends ClassComponent {} declare module '@vue/runtime-core' { interface GlobalComponents { Inplace: GlobalComponentConstructor; } } export default Inplace;