/** * Copyright Aquera Inc 2023 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import { CSSResultArray, TemplateResult } from 'lit'; import NileElement from '../internal/nile-element'; /** * Nile inline-edit component. * * @tag nile-inline-edit * */ export declare class NileInlineEdit extends NileElement { /** * The styles for nile-inline-edit * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ static get styles(): CSSResultArray; /** Gives the label to the Inline Edit */ label: string; /** Gives the Placeholder to the Inline Edit */ placeholder: string; /** Open prop for displaying default slot in Inline Edit */ open: boolean; /** Gives the Value to the Inline Edit */ value: string; /** Maximum length for the placeholder value. Values longer than this will be truncated */ maxPlaceholderLength: number; /** Enables automatic closing when focus moves outside the component or when clicking outside */ autoClose: boolean; /** Disables the inline edit, preventing it from being opened */ disabled: boolean; /** * Render method * @slot This is a slot test */ private handleCloseResult; private handleDocumentFocusInWrapper; private handleDocumentMouseDownWrapper; connectedCallback(): void; updated(changedProperties: Map): void; disconnectedCallback(): void; private handleClick; render(): TemplateResult; } export default NileInlineEdit; declare global { interface HTMLElementTagNameMap { 'nile-inline-edit': NileInlineEdit; } }