ranui
Version:
A framework-agnostic Web Components UI library built on native custom elements, with TypeScript types, light/dark theming, SSR and PWA support.
22 lines (21 loc) • 695 B
TypeScript
import { RanElement } from '@/utils/index';
export declare class DropdownItem extends RanElement {
ionDropdownItem: HTMLElement;
_slot: HTMLSlotElement;
_shadowDom: ShadowRoot;
ionDropdownItemContent: HTMLElement;
static get observedAttributes(): string[];
constructor();
get value(): string;
set value(value: string);
get active(): string;
set active(value: string);
get title(): string;
set title(value: string);
get sheet(): string;
set sheet(value: string);
handlerExternalCss: () => void;
connectedCallback(): void;
attributeChangedCallback(name: string, _: string, newValue: string): void;
}
export default DropdownItem;