UNPKG

@kontent-ai/smart-link

Version:

Kontent.ai Smart Link SDK allowing to automatically inject [smart links](https://docs.kontent.ai/tutorials/develop-apps/build-strong-foundation/set-up-editing-from-preview#a-using-smart-links) to Kontent.ai according to manually specified [HTML data attri

20 lines (19 loc) 727 B
import { KSLCustomElementWithTooltip } from "./abstract/KSLCustomElementWithTooltip"; export declare enum ButtonType { Primary = "primary", Quinary = "quinary" } export declare class KSLButtonElement extends KSLCustomElementWithTooltip { static get is(): "ksl-button"; static get observedAttributes(): string[]; get loading(): boolean; set loading(value: boolean); get disabled(): boolean; set disabled(value: boolean); constructor(); static initializeTemplate(): HTMLTemplateElement; connectedCallback(): void; disconnectedCallback(): void; attributeChangedCallback(attributeName: string, _oldValue: string | null, newValue: string | null): void; private handleClick; }