@zywave/zui-picker
Version:
## Installation
20 lines (19 loc) • 769 B
TypeScript
import { ZuiBaseElement } from '@zywave/zui-base';
import '@zywave/zui-button';
/**
* Individual items that are inserted into `<zui-picker>` to be selected.
* @element zui-picker-item
*
* @cssprop [--zui-picker-item-font-size=inherit] - If necessary, this property exists for font size control, by default it should `inherit` successfully
*
* @slot - Default, unnamed slot; for inserting content, such as a title or a small icon, into `<zui-picker-item>`
*/
export declare class ZuiPickerItem extends ZuiBaseElement {
static get styles(): (import("lit").CSSResult | import("lit").CSSResultArray)[];
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'zui-picker-item': ZuiPickerItem;
}
}