42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import { SvelteComponentTyped } from "svelte";
|
|
declare const __propDef: {
|
|
props: {
|
|
[x: string]: any;
|
|
/** Set the radio group binding value.*/
|
|
group: any;
|
|
/** Set a unique name value for the input.*/
|
|
name: string;
|
|
/** Set the input's value.*/
|
|
value: any;
|
|
/** Set the hover title.*/
|
|
title?: string | undefined;
|
|
/** Defines a semantic ARIA label.*/
|
|
label?: string | undefined;
|
|
rounded?: string | undefined;
|
|
padding?: string | undefined;
|
|
active?: string | undefined;
|
|
hover?: string | undefined;
|
|
color?: string | undefined;
|
|
fill?: string | undefined;
|
|
regionLabel?: string | undefined;
|
|
};
|
|
events: {
|
|
keydown: KeyboardEvent;
|
|
keyup: KeyboardEvent;
|
|
keypress: KeyboardEvent;
|
|
click: MouseEvent;
|
|
change: Event;
|
|
} & {
|
|
[evt: string]: CustomEvent<any>;
|
|
};
|
|
slots: {
|
|
default: {};
|
|
};
|
|
};
|
|
export type RadioItemProps = typeof __propDef.props;
|
|
export type RadioItemEvents = typeof __propDef.events;
|
|
export type RadioItemSlots = typeof __propDef.slots;
|
|
export default class RadioItem extends SvelteComponentTyped<RadioItemProps, RadioItemEvents, RadioItemSlots> {
|
|
}
|
|
export {};
|