svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
33 lines (32 loc) • 1.06 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
import { type ComponentProps } from 'svelte';
import Checkbox from './Checkbox.svelte';
declare const __propDef: {
props: {
[x: string]: any;
checked: boolean;
indeterminate?: boolean | undefined;
disabled?: boolean | undefined;
variant?: "checkbox" | "checkmark" | "fill" | undefined;
classes?: {
root?: string;
checkbox?: ComponentProps<Checkbox>["classes"];
container?: string;
} | undefined;
};
events: {
change: CustomEvent<null>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
actions: {};
};
};
export type MultiSelectOptionProps = typeof __propDef.props;
export type MultiSelectOptionEvents = typeof __propDef.events;
export type MultiSelectOptionSlots = typeof __propDef.slots;
export default class MultiSelectOption extends SvelteComponentTyped<MultiSelectOptionProps, MultiSelectOptionEvents, MultiSelectOptionSlots> {
}
export {};