3980 lines
160 KiB
TypeScript
3980 lines
160 KiB
TypeScript
|
import * as vue from 'vue';
|
||
|
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, JSXComponent, PropType, Ref, ComputedRef, EffectScope, Component } from 'vue';
|
||
|
|
||
|
declare const block: readonly ["top", "bottom"];
|
||
|
declare const inline: readonly ["start", "end", "left", "right"];
|
||
|
type Tblock = typeof block[number];
|
||
|
type Tinline = typeof inline[number];
|
||
|
type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
|
||
|
|
||
|
declare class Box {
|
||
|
x: number;
|
||
|
y: number;
|
||
|
width: number;
|
||
|
height: number;
|
||
|
constructor({ x, y, width, height }: {
|
||
|
x: number;
|
||
|
y: number;
|
||
|
width: number;
|
||
|
height: number;
|
||
|
});
|
||
|
get top(): number;
|
||
|
get bottom(): number;
|
||
|
get left(): number;
|
||
|
get right(): number;
|
||
|
}
|
||
|
|
||
|
type SlotsToProps<U extends RawSlots, T = MakeInternalSlots<U>> = {
|
||
|
$children?: (VNodeChild | (T extends {
|
||
|
default: infer V;
|
||
|
} ? V : {}) | {
|
||
|
[K in keyof T]?: T[K];
|
||
|
});
|
||
|
'v-slots'?: {
|
||
|
[K in keyof T]?: T[K] | false;
|
||
|
};
|
||
|
} & {
|
||
|
[K in keyof T as `v-slot:${K & string}`]?: T[K] | false;
|
||
|
};
|
||
|
type RawSlots = Record<string, unknown>;
|
||
|
type Slot<T> = [T] extends [never] ? () => VNodeChild : (arg: T) => VNodeChild;
|
||
|
type VueSlot<T> = [T] extends [never] ? () => VNode[] : (arg: T) => VNode[];
|
||
|
type MakeInternalSlots<T extends RawSlots> = {
|
||
|
[K in keyof T]: Slot<T[K]>;
|
||
|
};
|
||
|
type MakeSlots<T extends RawSlots> = {
|
||
|
[K in keyof T]: VueSlot<T[K]>;
|
||
|
};
|
||
|
type GenericProps<Props, Slots extends Record<string, unknown>> = {
|
||
|
$props: Props & SlotsToProps<Slots>;
|
||
|
$slots: MakeSlots<Slots>;
|
||
|
};
|
||
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
||
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
||
|
}
|
||
|
|
||
|
declare function deepEqual(a: any, b: any): boolean;
|
||
|
type SelectItemKey<T = Record<string, any>> = boolean | null | undefined | string | readonly (string | number)[] | ((item: T, fallback?: any) => any);
|
||
|
|
||
|
interface LoaderSlotProps {
|
||
|
color: string | undefined;
|
||
|
isActive: boolean;
|
||
|
}
|
||
|
|
||
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
||
|
declare const IconValue: PropType<IconValue>;
|
||
|
|
||
|
interface DefaultInputSlot {
|
||
|
isActive: Ref<boolean>;
|
||
|
isFocused: Ref<boolean>;
|
||
|
controlRef: Ref<HTMLElement | undefined>;
|
||
|
focus: () => void;
|
||
|
blur: () => void;
|
||
|
}
|
||
|
interface VFieldSlot extends DefaultInputSlot {
|
||
|
props: Record<string, unknown>;
|
||
|
}
|
||
|
type VFieldSlots = {
|
||
|
clear: never;
|
||
|
'prepend-inner': DefaultInputSlot;
|
||
|
'append-inner': DefaultInputSlot;
|
||
|
label: DefaultInputSlot & {
|
||
|
label: string | undefined;
|
||
|
props: Record<string, any>;
|
||
|
};
|
||
|
loader: LoaderSlotProps;
|
||
|
default: VFieldSlot;
|
||
|
};
|
||
|
|
||
|
type Density = null | 'default' | 'comfortable' | 'compact';
|
||
|
|
||
|
type ValidationResult = string | boolean;
|
||
|
type ValidationRule = ValidationResult | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
|
||
|
|
||
|
type VMessageSlot = {
|
||
|
message: string;
|
||
|
};
|
||
|
|
||
|
interface VInputSlot {
|
||
|
id: ComputedRef<string>;
|
||
|
messagesId: ComputedRef<string>;
|
||
|
isDirty: ComputedRef<boolean>;
|
||
|
isDisabled: ComputedRef<boolean>;
|
||
|
isReadonly: ComputedRef<boolean>;
|
||
|
isPristine: Ref<boolean>;
|
||
|
isValid: ComputedRef<boolean | null>;
|
||
|
isValidating: Ref<boolean>;
|
||
|
reset: () => void;
|
||
|
resetValidation: () => void;
|
||
|
validate: () => void;
|
||
|
}
|
||
|
type VInputSlots = {
|
||
|
default: VInputSlot;
|
||
|
prepend: VInputSlot;
|
||
|
append: VInputSlot;
|
||
|
details: VInputSlot;
|
||
|
message: VMessageSlot;
|
||
|
};
|
||
|
|
||
|
interface ScrollStrategyData {
|
||
|
root: Ref<HTMLElement | undefined>;
|
||
|
contentEl: Ref<HTMLElement | undefined>;
|
||
|
targetEl: Ref<HTMLElement | undefined>;
|
||
|
isActive: Ref<boolean>;
|
||
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
||
|
}
|
||
|
type ScrollStrategyFn = (data: ScrollStrategyData, props: StrategyProps$1, scope: EffectScope) => void;
|
||
|
declare const scrollStrategies: {
|
||
|
none: null;
|
||
|
close: typeof closeScrollStrategy;
|
||
|
block: typeof blockScrollStrategy;
|
||
|
reposition: typeof repositionScrollStrategy;
|
||
|
};
|
||
|
interface StrategyProps$1 {
|
||
|
scrollStrategy: keyof typeof scrollStrategies | ScrollStrategyFn;
|
||
|
contained: boolean | undefined;
|
||
|
}
|
||
|
declare function closeScrollStrategy(data: ScrollStrategyData): void;
|
||
|
declare function blockScrollStrategy(data: ScrollStrategyData, props: StrategyProps$1): void;
|
||
|
declare function repositionScrollStrategy(data: ScrollStrategyData, props: StrategyProps$1, scope: EffectScope): void;
|
||
|
|
||
|
interface LocationStrategyData {
|
||
|
contentEl: Ref<HTMLElement | undefined>;
|
||
|
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
||
|
isActive: Ref<boolean>;
|
||
|
isRtl: Ref<boolean>;
|
||
|
}
|
||
|
type LocationStrategyFn = (data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
};
|
||
|
declare const locationStrategies: {
|
||
|
static: typeof staticLocationStrategy;
|
||
|
connected: typeof connectedLocationStrategy;
|
||
|
};
|
||
|
interface StrategyProps {
|
||
|
locationStrategy: keyof typeof locationStrategies | LocationStrategyFn;
|
||
|
location: Anchor;
|
||
|
origin: Anchor | 'auto' | 'overlap';
|
||
|
offset?: number | string | number[];
|
||
|
maxHeight?: number | string;
|
||
|
maxWidth?: number | string;
|
||
|
minHeight?: number | string;
|
||
|
minWidth?: number | string;
|
||
|
}
|
||
|
declare function staticLocationStrategy(): void;
|
||
|
declare function connectedLocationStrategy(data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>): {
|
||
|
updateLocation: () => {
|
||
|
available: {
|
||
|
x: number;
|
||
|
y: number;
|
||
|
};
|
||
|
contentBox: Box;
|
||
|
} | undefined;
|
||
|
};
|
||
|
|
||
|
type ListItemTitleSlot = {
|
||
|
title?: string | number;
|
||
|
};
|
||
|
type ListItemSubtitleSlot = {
|
||
|
subtitle?: string | number;
|
||
|
};
|
||
|
|
||
|
type OpenStrategyFn = (data: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
opened: Set<unknown>;
|
||
|
children: Map<unknown, unknown[]>;
|
||
|
parents: Map<unknown, unknown>;
|
||
|
event?: Event;
|
||
|
}) => Set<unknown>;
|
||
|
type OpenSelectStrategyFn = (data: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
opened: Set<unknown>;
|
||
|
selected: Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
||
|
children: Map<unknown, unknown[]>;
|
||
|
parents: Map<unknown, unknown>;
|
||
|
event?: Event;
|
||
|
}) => Set<unknown> | null;
|
||
|
type OpenStrategy = {
|
||
|
open: OpenStrategyFn;
|
||
|
select: OpenSelectStrategyFn;
|
||
|
};
|
||
|
|
||
|
type SelectStrategyFn = (data: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
selected: Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
||
|
children: Map<unknown, unknown[]>;
|
||
|
parents: Map<unknown, unknown>;
|
||
|
event?: Event;
|
||
|
}) => Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
||
|
|
||
|
type SelectStrategy = 'single-leaf' | 'leaf' | 'independent' | 'single-independent' | 'classic' | SelectStrategyFn;
|
||
|
type OpenStrategyProp = 'single' | 'multiple' | 'list' | OpenStrategy;
|
||
|
|
||
|
interface InternalItem<T = any> {
|
||
|
value: any;
|
||
|
raw: T;
|
||
|
}
|
||
|
|
||
|
interface ListItem<T = any> extends InternalItem<T> {
|
||
|
title: string;
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
children?: ListItem<T>[];
|
||
|
}
|
||
|
|
||
|
type Primitive = string | number | boolean | symbol;
|
||
|
type Val<T, ReturnObject extends boolean> = [T] extends [Primitive] ? T : (ReturnObject extends true ? T : any);
|
||
|
type Value<T, ReturnObject extends boolean, Multiple extends boolean> = Multiple extends true ? readonly Val<T, ReturnObject>[] : Val<T, ReturnObject> | null;
|
||
|
type ItemType<T> = T extends readonly (infer U)[] ? U : never;
|
||
|
declare const VSelect: {
|
||
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
||
|
flat: boolean;
|
||
|
reverse: boolean;
|
||
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
||
|
type: string;
|
||
|
error: boolean;
|
||
|
active: boolean;
|
||
|
direction: "horizontal" | "vertical";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
menu: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
role: string;
|
||
|
autofocus: boolean;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
readonly: boolean | null;
|
||
|
noDataText: string;
|
||
|
messages: string | readonly string[];
|
||
|
density: Density;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
clearIcon: IconValue;
|
||
|
focused: boolean;
|
||
|
errorMessages: string | readonly string[] | null;
|
||
|
maxErrors: string | number;
|
||
|
rules: readonly ValidationRule[];
|
||
|
hideSpinButtons: boolean;
|
||
|
persistentHint: boolean;
|
||
|
itemChildren: NonNullable<SelectItemKey>;
|
||
|
clearable: boolean;
|
||
|
persistentClear: boolean;
|
||
|
singleLine: boolean;
|
||
|
persistentPlaceholder: boolean;
|
||
|
persistentCounter: boolean;
|
||
|
chips: boolean;
|
||
|
closableChips: boolean;
|
||
|
closeText: string;
|
||
|
openText: string;
|
||
|
hideNoData: boolean;
|
||
|
hideSelected: boolean;
|
||
|
menuIcon: IconValue;
|
||
|
openOnClear: boolean;
|
||
|
} & {
|
||
|
id?: string | undefined;
|
||
|
name?: string | undefined;
|
||
|
color?: string | undefined;
|
||
|
loading?: string | boolean | undefined;
|
||
|
label?: string | undefined;
|
||
|
prefix?: string | undefined;
|
||
|
class?: any;
|
||
|
placeholder?: string | undefined;
|
||
|
theme?: string | undefined;
|
||
|
counter?: string | number | boolean | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
prependIcon?: IconValue | undefined;
|
||
|
appendIcon?: IconValue | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
prependInnerIcon?: IconValue | undefined;
|
||
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
||
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
||
|
centerAffix?: boolean | undefined;
|
||
|
hint?: string | undefined;
|
||
|
hideDetails?: boolean | "auto" | undefined;
|
||
|
suffix?: string | undefined;
|
||
|
counterValue?: number | ((value: any) => number) | undefined;
|
||
|
modelModifiers?: Record<string, boolean> | undefined;
|
||
|
listProps?: (Partial<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
rounded: string | number | boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
}> & Omit<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
} & {
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
} & {
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
||
|
items?: readonly any[] | undefined;
|
||
|
itemTitle?: SelectItemKey<any>;
|
||
|
itemValue?: SelectItemKey<any>;
|
||
|
itemChildren?: SelectItemKey<any>;
|
||
|
itemProps?: SelectItemKey<any>;
|
||
|
selected?: readonly unknown[] | undefined;
|
||
|
'onUpdate:selected'?: ((value: unknown[]) => void) | undefined;
|
||
|
opened?: readonly unknown[] | undefined;
|
||
|
'onUpdate:opened'?: ((value: unknown[]) => void) | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
||
|
title?: ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: (() => vue.VNodeChild) | undefined;
|
||
|
item?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
};
|
||
|
'v-slots'?: {
|
||
|
title?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: false | (() => vue.VNodeChild) | undefined;
|
||
|
item?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:title"?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:append"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:prepend"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
||
|
"v-slot:item"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:divider"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subheader"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:header"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
}) | undefined;
|
||
|
menuProps?: (Partial<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnClick: boolean;
|
||
|
openOnHover: boolean;
|
||
|
openOnFocus: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
}> & Omit<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
} & {
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} & {
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
||
|
itemColor?: string | undefined;
|
||
|
} & {
|
||
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
||
|
"onUpdate:menu"?: ((ue: boolean) => any) | undefined;
|
||
|
}, any, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
||
|
'update:focused': (focused: boolean) => boolean;
|
||
|
'update:modelValue': (value: any) => boolean;
|
||
|
'update:menu': (ue: boolean) => true;
|
||
|
}, "multiple" | "$children" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "returnObject" | "v-slot:item" | "itemTitle" | "itemValue" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
flat: boolean;
|
||
|
reverse: boolean;
|
||
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
||
|
type: string;
|
||
|
error: boolean;
|
||
|
active: boolean;
|
||
|
direction: "horizontal" | "vertical";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
menu: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
role: string;
|
||
|
autofocus: boolean;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
readonly: boolean | null;
|
||
|
noDataText: string;
|
||
|
messages: string | readonly string[];
|
||
|
density: Density;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
clearIcon: IconValue;
|
||
|
focused: boolean;
|
||
|
errorMessages: string | readonly string[] | null;
|
||
|
maxErrors: string | number;
|
||
|
rules: readonly ValidationRule[];
|
||
|
hideSpinButtons: boolean;
|
||
|
persistentHint: boolean;
|
||
|
itemChildren: NonNullable<SelectItemKey>;
|
||
|
clearable: boolean;
|
||
|
persistentClear: boolean;
|
||
|
singleLine: boolean;
|
||
|
persistentPlaceholder: boolean;
|
||
|
persistentCounter: boolean;
|
||
|
chips: boolean;
|
||
|
closableChips: boolean;
|
||
|
closeText: string;
|
||
|
openText: string;
|
||
|
hideNoData: boolean;
|
||
|
hideSelected: boolean;
|
||
|
menuIcon: IconValue;
|
||
|
openOnClear: boolean;
|
||
|
} & {
|
||
|
id?: string | undefined;
|
||
|
name?: string | undefined;
|
||
|
color?: string | undefined;
|
||
|
loading?: string | boolean | undefined;
|
||
|
label?: string | undefined;
|
||
|
prefix?: string | undefined;
|
||
|
class?: any;
|
||
|
placeholder?: string | undefined;
|
||
|
theme?: string | undefined;
|
||
|
counter?: string | number | boolean | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
prependIcon?: IconValue | undefined;
|
||
|
appendIcon?: IconValue | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
prependInnerIcon?: IconValue | undefined;
|
||
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
||
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
||
|
centerAffix?: boolean | undefined;
|
||
|
hint?: string | undefined;
|
||
|
hideDetails?: boolean | "auto" | undefined;
|
||
|
suffix?: string | undefined;
|
||
|
counterValue?: number | ((value: any) => number) | undefined;
|
||
|
modelModifiers?: Record<string, boolean> | undefined;
|
||
|
listProps?: (Partial<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
rounded: string | number | boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
}> & Omit<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
} & {
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
} & {
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
||
|
items?: readonly any[] | undefined;
|
||
|
itemTitle?: SelectItemKey<any>;
|
||
|
itemValue?: SelectItemKey<any>;
|
||
|
itemChildren?: SelectItemKey<any>;
|
||
|
itemProps?: SelectItemKey<any>;
|
||
|
selected?: readonly unknown[] | undefined;
|
||
|
'onUpdate:selected'?: ((value: unknown[]) => void) | undefined;
|
||
|
opened?: readonly unknown[] | undefined;
|
||
|
'onUpdate:opened'?: ((value: unknown[]) => void) | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
||
|
title?: ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: (() => vue.VNodeChild) | undefined;
|
||
|
item?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
};
|
||
|
'v-slots'?: {
|
||
|
title?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: false | (() => vue.VNodeChild) | undefined;
|
||
|
item?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:title"?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:append"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:prepend"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
||
|
"v-slot:item"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:divider"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subheader"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:header"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
}) | undefined;
|
||
|
menuProps?: (Partial<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnClick: boolean;
|
||
|
openOnHover: boolean;
|
||
|
openOnFocus: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
}> & Omit<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
} & {
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} & {
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
||
|
itemColor?: string | undefined;
|
||
|
} & {
|
||
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
||
|
"onUpdate:menu"?: ((ue: boolean) => any) | undefined;
|
||
|
}, {
|
||
|
flat: boolean;
|
||
|
reverse: boolean;
|
||
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
||
|
type: string;
|
||
|
error: boolean;
|
||
|
active: boolean;
|
||
|
direction: "horizontal" | "vertical";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
menu: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
role: string;
|
||
|
autofocus: boolean;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
readonly: boolean | null;
|
||
|
noDataText: string;
|
||
|
messages: string | readonly string[];
|
||
|
rounded: string | number | boolean;
|
||
|
density: Density;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
clearIcon: IconValue;
|
||
|
focused: boolean;
|
||
|
errorMessages: string | readonly string[] | null;
|
||
|
maxErrors: string | number;
|
||
|
rules: readonly ValidationRule[];
|
||
|
centerAffix: boolean;
|
||
|
hideSpinButtons: boolean;
|
||
|
persistentHint: boolean;
|
||
|
itemChildren: NonNullable<SelectItemKey>;
|
||
|
clearable: boolean;
|
||
|
persistentClear: boolean;
|
||
|
singleLine: boolean;
|
||
|
persistentPlaceholder: boolean;
|
||
|
persistentCounter: boolean;
|
||
|
chips: boolean;
|
||
|
closableChips: boolean;
|
||
|
closeText: string;
|
||
|
openText: string;
|
||
|
hideNoData: boolean;
|
||
|
hideSelected: boolean;
|
||
|
menuIcon: IconValue;
|
||
|
openOnClear: boolean;
|
||
|
}, true, {}, vue.SlotsType<Partial<{
|
||
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
clear: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
label: (arg: DefaultInputSlot & {
|
||
|
label: string | undefined;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
append: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
prepend: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
item: (arg: {
|
||
|
item: ListItem<unknown>;
|
||
|
index: number;
|
||
|
props: Record<string, unknown>;
|
||
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
chip: (arg: {
|
||
|
item: ListItem<unknown>;
|
||
|
index: number;
|
||
|
props: Record<string, unknown>;
|
||
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
selection: (arg: {
|
||
|
item: ListItem<unknown>;
|
||
|
index: number;
|
||
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
'prepend-item': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
'append-item': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
'no-data': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
}>>, {
|
||
|
P: {};
|
||
|
B: {};
|
||
|
D: {};
|
||
|
C: {};
|
||
|
M: {};
|
||
|
Defaults: {};
|
||
|
}, {
|
||
|
flat: boolean;
|
||
|
reverse: boolean;
|
||
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
||
|
type: string;
|
||
|
error: boolean;
|
||
|
active: boolean;
|
||
|
direction: "horizontal" | "vertical";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
menu: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
role: string;
|
||
|
autofocus: boolean;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
readonly: boolean | null;
|
||
|
noDataText: string;
|
||
|
messages: string | readonly string[];
|
||
|
density: Density;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
clearIcon: IconValue;
|
||
|
focused: boolean;
|
||
|
errorMessages: string | readonly string[] | null;
|
||
|
maxErrors: string | number;
|
||
|
rules: readonly ValidationRule[];
|
||
|
hideSpinButtons: boolean;
|
||
|
persistentHint: boolean;
|
||
|
itemChildren: NonNullable<SelectItemKey>;
|
||
|
clearable: boolean;
|
||
|
persistentClear: boolean;
|
||
|
singleLine: boolean;
|
||
|
persistentPlaceholder: boolean;
|
||
|
persistentCounter: boolean;
|
||
|
chips: boolean;
|
||
|
closableChips: boolean;
|
||
|
closeText: string;
|
||
|
openText: string;
|
||
|
hideNoData: boolean;
|
||
|
hideSelected: boolean;
|
||
|
menuIcon: IconValue;
|
||
|
openOnClear: boolean;
|
||
|
} & {
|
||
|
id?: string | undefined;
|
||
|
name?: string | undefined;
|
||
|
color?: string | undefined;
|
||
|
loading?: string | boolean | undefined;
|
||
|
label?: string | undefined;
|
||
|
prefix?: string | undefined;
|
||
|
class?: any;
|
||
|
placeholder?: string | undefined;
|
||
|
theme?: string | undefined;
|
||
|
counter?: string | number | boolean | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
prependIcon?: IconValue | undefined;
|
||
|
appendIcon?: IconValue | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
prependInnerIcon?: IconValue | undefined;
|
||
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
||
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
||
|
centerAffix?: boolean | undefined;
|
||
|
hint?: string | undefined;
|
||
|
hideDetails?: boolean | "auto" | undefined;
|
||
|
suffix?: string | undefined;
|
||
|
counterValue?: number | ((value: any) => number) | undefined;
|
||
|
modelModifiers?: Record<string, boolean> | undefined;
|
||
|
listProps?: (Partial<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
rounded: string | number | boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
}> & Omit<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
} & {
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
} & {
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
||
|
items?: readonly any[] | undefined;
|
||
|
itemTitle?: SelectItemKey<any>;
|
||
|
itemValue?: SelectItemKey<any>;
|
||
|
itemChildren?: SelectItemKey<any>;
|
||
|
itemProps?: SelectItemKey<any>;
|
||
|
selected?: readonly unknown[] | undefined;
|
||
|
'onUpdate:selected'?: ((value: unknown[]) => void) | undefined;
|
||
|
opened?: readonly unknown[] | undefined;
|
||
|
'onUpdate:opened'?: ((value: unknown[]) => void) | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
||
|
title?: ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: (() => vue.VNodeChild) | undefined;
|
||
|
item?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
};
|
||
|
'v-slots'?: {
|
||
|
title?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: false | (() => vue.VNodeChild) | undefined;
|
||
|
item?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:title"?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:append"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:prepend"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
||
|
"v-slot:item"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:divider"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subheader"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:header"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
}) | undefined;
|
||
|
menuProps?: (Partial<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnClick: boolean;
|
||
|
openOnHover: boolean;
|
||
|
openOnFocus: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
}> & Omit<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
} & {
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} & {
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
||
|
itemColor?: string | undefined;
|
||
|
} & {
|
||
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
||
|
"onUpdate:menu"?: ((ue: boolean) => any) | undefined;
|
||
|
}, any, {}, {}, {}, {
|
||
|
flat: boolean;
|
||
|
reverse: boolean;
|
||
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
||
|
type: string;
|
||
|
error: boolean;
|
||
|
active: boolean;
|
||
|
direction: "horizontal" | "vertical";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
menu: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
role: string;
|
||
|
autofocus: boolean;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
readonly: boolean | null;
|
||
|
noDataText: string;
|
||
|
messages: string | readonly string[];
|
||
|
rounded: string | number | boolean;
|
||
|
density: Density;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
clearIcon: IconValue;
|
||
|
focused: boolean;
|
||
|
errorMessages: string | readonly string[] | null;
|
||
|
maxErrors: string | number;
|
||
|
rules: readonly ValidationRule[];
|
||
|
centerAffix: boolean;
|
||
|
hideSpinButtons: boolean;
|
||
|
persistentHint: boolean;
|
||
|
itemChildren: NonNullable<SelectItemKey>;
|
||
|
clearable: boolean;
|
||
|
persistentClear: boolean;
|
||
|
singleLine: boolean;
|
||
|
persistentPlaceholder: boolean;
|
||
|
persistentCounter: boolean;
|
||
|
chips: boolean;
|
||
|
closableChips: boolean;
|
||
|
closeText: string;
|
||
|
openText: string;
|
||
|
hideNoData: boolean;
|
||
|
hideSelected: boolean;
|
||
|
menuIcon: IconValue;
|
||
|
openOnClear: boolean;
|
||
|
}>;
|
||
|
__isFragment?: undefined;
|
||
|
__isTeleport?: undefined;
|
||
|
__isSuspense?: undefined;
|
||
|
} & vue.ComponentOptionsBase<{
|
||
|
flat: boolean;
|
||
|
reverse: boolean;
|
||
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
||
|
type: string;
|
||
|
error: boolean;
|
||
|
active: boolean;
|
||
|
direction: "horizontal" | "vertical";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
menu: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
role: string;
|
||
|
autofocus: boolean;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
readonly: boolean | null;
|
||
|
noDataText: string;
|
||
|
messages: string | readonly string[];
|
||
|
density: Density;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
clearIcon: IconValue;
|
||
|
focused: boolean;
|
||
|
errorMessages: string | readonly string[] | null;
|
||
|
maxErrors: string | number;
|
||
|
rules: readonly ValidationRule[];
|
||
|
hideSpinButtons: boolean;
|
||
|
persistentHint: boolean;
|
||
|
itemChildren: NonNullable<SelectItemKey>;
|
||
|
clearable: boolean;
|
||
|
persistentClear: boolean;
|
||
|
singleLine: boolean;
|
||
|
persistentPlaceholder: boolean;
|
||
|
persistentCounter: boolean;
|
||
|
chips: boolean;
|
||
|
closableChips: boolean;
|
||
|
closeText: string;
|
||
|
openText: string;
|
||
|
hideNoData: boolean;
|
||
|
hideSelected: boolean;
|
||
|
menuIcon: IconValue;
|
||
|
openOnClear: boolean;
|
||
|
} & {
|
||
|
id?: string | undefined;
|
||
|
name?: string | undefined;
|
||
|
color?: string | undefined;
|
||
|
loading?: string | boolean | undefined;
|
||
|
label?: string | undefined;
|
||
|
prefix?: string | undefined;
|
||
|
class?: any;
|
||
|
placeholder?: string | undefined;
|
||
|
theme?: string | undefined;
|
||
|
counter?: string | number | boolean | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
prependIcon?: IconValue | undefined;
|
||
|
appendIcon?: IconValue | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
prependInnerIcon?: IconValue | undefined;
|
||
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
||
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
||
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
||
|
centerAffix?: boolean | undefined;
|
||
|
hint?: string | undefined;
|
||
|
hideDetails?: boolean | "auto" | undefined;
|
||
|
suffix?: string | undefined;
|
||
|
counterValue?: number | ((value: any) => number) | undefined;
|
||
|
modelModifiers?: Record<string, boolean> | undefined;
|
||
|
listProps?: (Partial<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
rounded: string | number | boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
}> & Omit<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
} & {
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
} & {
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
||
|
items?: readonly any[] | undefined;
|
||
|
itemTitle?: SelectItemKey<any>;
|
||
|
itemValue?: SelectItemKey<any>;
|
||
|
itemChildren?: SelectItemKey<any>;
|
||
|
itemProps?: SelectItemKey<any>;
|
||
|
selected?: readonly unknown[] | undefined;
|
||
|
'onUpdate:selected'?: ((value: unknown[]) => void) | undefined;
|
||
|
opened?: readonly unknown[] | undefined;
|
||
|
'onUpdate:opened'?: ((value: unknown[]) => void) | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
||
|
title?: ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: (() => vue.VNodeChild) | undefined;
|
||
|
item?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
};
|
||
|
'v-slots'?: {
|
||
|
title?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: false | (() => vue.VNodeChild) | undefined;
|
||
|
item?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:title"?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:append"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:prepend"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
||
|
"v-slot:item"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:divider"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subheader"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:header"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
}) | undefined;
|
||
|
menuProps?: (Partial<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnClick: boolean;
|
||
|
openOnHover: boolean;
|
||
|
openOnFocus: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
}> & Omit<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
} & {
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} & {
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
||
|
itemColor?: string | undefined;
|
||
|
} & {
|
||
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
||
|
"onUpdate:menu"?: ((ue: boolean) => any) | undefined;
|
||
|
}, any, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
||
|
'update:focused': (focused: boolean) => boolean;
|
||
|
'update:modelValue': (value: any) => boolean;
|
||
|
'update:menu': (ue: boolean) => true;
|
||
|
}, "multiple" | "$children" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "returnObject" | "v-slot:item" | "itemTitle" | "itemValue" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
||
|
flat: boolean;
|
||
|
reverse: boolean;
|
||
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
||
|
type: string;
|
||
|
error: boolean;
|
||
|
active: boolean;
|
||
|
direction: "horizontal" | "vertical";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
menu: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
role: string;
|
||
|
autofocus: boolean;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
readonly: boolean | null;
|
||
|
noDataText: string;
|
||
|
messages: string | readonly string[];
|
||
|
rounded: string | number | boolean;
|
||
|
density: Density;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
clearIcon: IconValue;
|
||
|
focused: boolean;
|
||
|
errorMessages: string | readonly string[] | null;
|
||
|
maxErrors: string | number;
|
||
|
rules: readonly ValidationRule[];
|
||
|
centerAffix: boolean;
|
||
|
hideSpinButtons: boolean;
|
||
|
persistentHint: boolean;
|
||
|
itemChildren: NonNullable<SelectItemKey>;
|
||
|
clearable: boolean;
|
||
|
persistentClear: boolean;
|
||
|
singleLine: boolean;
|
||
|
persistentPlaceholder: boolean;
|
||
|
persistentCounter: boolean;
|
||
|
chips: boolean;
|
||
|
closableChips: boolean;
|
||
|
closeText: string;
|
||
|
openText: string;
|
||
|
hideNoData: boolean;
|
||
|
hideSelected: boolean;
|
||
|
menuIcon: IconValue;
|
||
|
openOnClear: boolean;
|
||
|
}, {}, string, vue.SlotsType<Partial<{
|
||
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
clear: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
label: (arg: DefaultInputSlot & {
|
||
|
label: string | undefined;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
append: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
prepend: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
item: (arg: {
|
||
|
item: ListItem<unknown>;
|
||
|
index: number;
|
||
|
props: Record<string, unknown>;
|
||
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
chip: (arg: {
|
||
|
item: ListItem<unknown>;
|
||
|
index: number;
|
||
|
props: Record<string, unknown>;
|
||
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
selection: (arg: {
|
||
|
item: ListItem<unknown>;
|
||
|
index: number;
|
||
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
'prepend-item': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
'append-item': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
'no-data': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||
|
[key: string]: any;
|
||
|
}>[];
|
||
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T extends readonly any[], Item = ItemType<T>, ReturnObject extends boolean = false, Multiple extends boolean = false, V extends Value<Item, ReturnObject, Multiple> = Value<Item, ReturnObject, Multiple>>(props: {
|
||
|
items?: T | undefined;
|
||
|
itemTitle?: SelectItemKey<ItemType<T>>;
|
||
|
itemValue?: SelectItemKey<ItemType<T>>;
|
||
|
itemProps?: SelectItemKey<ItemType<T>>;
|
||
|
returnObject?: ReturnObject | undefined;
|
||
|
multiple?: Multiple | undefined;
|
||
|
modelValue?: V | null | undefined;
|
||
|
'onUpdate:modelValue'?: ((value: V) => void) | undefined;
|
||
|
}, slots: Omit<VInputSlots & VFieldSlots, "default"> & {
|
||
|
item: {
|
||
|
item: ListItem<Item>;
|
||
|
index: number;
|
||
|
props: Record<string, unknown>;
|
||
|
};
|
||
|
chip: {
|
||
|
item: ListItem<Item>;
|
||
|
index: number;
|
||
|
props: Record<string, unknown>;
|
||
|
};
|
||
|
selection: {
|
||
|
item: ListItem<Item>;
|
||
|
index: number;
|
||
|
};
|
||
|
'prepend-item': never;
|
||
|
'append-item': never;
|
||
|
'no-data': never;
|
||
|
}) => GenericProps<{
|
||
|
items?: T | undefined;
|
||
|
itemTitle?: SelectItemKey<ItemType<T>>;
|
||
|
itemValue?: SelectItemKey<ItemType<T>>;
|
||
|
itemProps?: SelectItemKey<ItemType<T>>;
|
||
|
returnObject?: ReturnObject | undefined;
|
||
|
multiple?: Multiple | undefined;
|
||
|
modelValue?: V | null | undefined;
|
||
|
'onUpdate:modelValue'?: ((value: V) => void) | undefined;
|
||
|
}, Omit<VInputSlots & VFieldSlots, "default"> & {
|
||
|
item: {
|
||
|
item: ListItem<Item>;
|
||
|
index: number;
|
||
|
props: Record<string, unknown>;
|
||
|
};
|
||
|
chip: {
|
||
|
item: ListItem<Item>;
|
||
|
index: number;
|
||
|
props: Record<string, unknown>;
|
||
|
};
|
||
|
selection: {
|
||
|
item: ListItem<Item>;
|
||
|
index: number;
|
||
|
};
|
||
|
'prepend-item': never;
|
||
|
'append-item': never;
|
||
|
'no-data': never;
|
||
|
}>) & FilterPropsOptions<{
|
||
|
transition: Omit<{
|
||
|
type: PropType<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})>;
|
||
|
default: string;
|
||
|
validator: (val: unknown) => boolean;
|
||
|
}, "type" | "default"> & {
|
||
|
type: PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
}>;
|
||
|
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
};
|
||
|
flat: BooleanConstructor;
|
||
|
reverse: BooleanConstructor;
|
||
|
variant: {
|
||
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
||
|
default: string;
|
||
|
validator: (v: any) => boolean;
|
||
|
};
|
||
|
type: {
|
||
|
type: StringConstructor;
|
||
|
default: string;
|
||
|
};
|
||
|
error: BooleanConstructor;
|
||
|
id: StringConstructor;
|
||
|
active: BooleanConstructor;
|
||
|
name: StringConstructor;
|
||
|
color: StringConstructor;
|
||
|
direction: {
|
||
|
type: PropType<"horizontal" | "vertical">;
|
||
|
default: string;
|
||
|
validator: (v: any) => boolean;
|
||
|
};
|
||
|
loading: (StringConstructor | BooleanConstructor)[];
|
||
|
label: StringConstructor;
|
||
|
style: {
|
||
|
type: PropType<vue.StyleValue>;
|
||
|
default: null;
|
||
|
};
|
||
|
prefix: StringConstructor;
|
||
|
role: {
|
||
|
type: PropType<string>;
|
||
|
default: string;
|
||
|
};
|
||
|
autofocus: BooleanConstructor;
|
||
|
disabled: {
|
||
|
type: BooleanConstructor;
|
||
|
default: null;
|
||
|
};
|
||
|
readonly: {
|
||
|
type: PropType<boolean | null>;
|
||
|
default: null;
|
||
|
};
|
||
|
class: PropType<any>;
|
||
|
placeholder: StringConstructor;
|
||
|
theme: StringConstructor;
|
||
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
||
|
messages: {
|
||
|
type: PropType<string | readonly string[]>;
|
||
|
default: () => never[];
|
||
|
};
|
||
|
rounded: {
|
||
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
||
|
default: undefined;
|
||
|
};
|
||
|
density: {
|
||
|
type: PropType<Density>;
|
||
|
default: string;
|
||
|
validator: (v: any) => boolean;
|
||
|
};
|
||
|
modelValue: {
|
||
|
type: PropType<any>;
|
||
|
default: any;
|
||
|
};
|
||
|
bgColor: StringConstructor;
|
||
|
prependIcon: PropType<IconValue>;
|
||
|
appendIcon: PropType<IconValue>;
|
||
|
baseColor: StringConstructor;
|
||
|
clearIcon: {
|
||
|
type: PropType<IconValue>;
|
||
|
default: string;
|
||
|
};
|
||
|
prependInnerIcon: PropType<IconValue>;
|
||
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
||
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
||
|
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
||
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
||
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
||
|
focused: BooleanConstructor;
|
||
|
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
||
|
validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
||
|
errorMessages: {
|
||
|
type: PropType<string | readonly string[] | null>;
|
||
|
default: () => never[];
|
||
|
};
|
||
|
maxErrors: {
|
||
|
type: (StringConstructor | NumberConstructor)[];
|
||
|
default: number;
|
||
|
};
|
||
|
rules: {
|
||
|
type: PropType<readonly ValidationRule[]>;
|
||
|
default: () => never[];
|
||
|
};
|
||
|
centerAffix: {
|
||
|
type: BooleanConstructor;
|
||
|
default: undefined;
|
||
|
};
|
||
|
hideSpinButtons: BooleanConstructor;
|
||
|
hint: StringConstructor;
|
||
|
persistentHint: BooleanConstructor;
|
||
|
hideDetails: PropType<boolean | "auto">;
|
||
|
clearable: BooleanConstructor;
|
||
|
persistentClear: BooleanConstructor;
|
||
|
singleLine: BooleanConstructor;
|
||
|
persistentPlaceholder: BooleanConstructor;
|
||
|
persistentCounter: BooleanConstructor;
|
||
|
suffix: StringConstructor;
|
||
|
counterValue: PropType<number | ((value: any) => number)>;
|
||
|
modelModifiers: PropType<Record<string, boolean>>;
|
||
|
items: {
|
||
|
type: PropType<any[]>;
|
||
|
default: () => never[];
|
||
|
};
|
||
|
itemTitle: {
|
||
|
type: PropType<SelectItemKey>;
|
||
|
default: string;
|
||
|
};
|
||
|
itemValue: {
|
||
|
type: PropType<SelectItemKey>;
|
||
|
default: string;
|
||
|
};
|
||
|
itemChildren: Omit<{
|
||
|
type: PropType<SelectItemKey>;
|
||
|
default: string;
|
||
|
}, "type" | "default"> & {
|
||
|
type: PropType<NonNullable<SelectItemKey>>;
|
||
|
default: NonNullable<SelectItemKey>;
|
||
|
};
|
||
|
itemProps: {
|
||
|
type: PropType<SelectItemKey>;
|
||
|
default: string;
|
||
|
};
|
||
|
returnObject: BooleanConstructor;
|
||
|
valueComparator: {
|
||
|
type: PropType<typeof deepEqual>;
|
||
|
default: typeof deepEqual;
|
||
|
};
|
||
|
chips: BooleanConstructor;
|
||
|
closableChips: BooleanConstructor;
|
||
|
closeText: {
|
||
|
type: StringConstructor;
|
||
|
default: string;
|
||
|
};
|
||
|
openText: {
|
||
|
type: StringConstructor;
|
||
|
default: string;
|
||
|
};
|
||
|
eager: BooleanConstructor;
|
||
|
hideNoData: BooleanConstructor;
|
||
|
hideSelected: BooleanConstructor;
|
||
|
listProps: {
|
||
|
type: PropType<Partial<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
rounded: string | number | boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
}> & Omit<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
} & {
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
} & {
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
||
|
items?: readonly any[] | undefined;
|
||
|
itemTitle?: SelectItemKey<any>;
|
||
|
itemValue?: SelectItemKey<any>;
|
||
|
itemChildren?: SelectItemKey<any>;
|
||
|
itemProps?: SelectItemKey<any>;
|
||
|
selected?: readonly unknown[] | undefined;
|
||
|
'onUpdate:selected'?: ((value: unknown[]) => void) | undefined;
|
||
|
opened?: readonly unknown[] | undefined;
|
||
|
'onUpdate:opened'?: ((value: unknown[]) => void) | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
||
|
title?: ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: (() => vue.VNodeChild) | undefined;
|
||
|
item?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
};
|
||
|
'v-slots'?: {
|
||
|
title?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: false | (() => vue.VNodeChild) | undefined;
|
||
|
item?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:title"?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:append"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:prepend"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
||
|
"v-slot:item"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:divider"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subheader"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:header"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
}>;
|
||
|
};
|
||
|
menu: BooleanConstructor;
|
||
|
menuIcon: {
|
||
|
type: PropType<IconValue>;
|
||
|
default: string;
|
||
|
};
|
||
|
menuProps: {
|
||
|
type: PropType<Partial<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnClick: boolean;
|
||
|
openOnHover: boolean;
|
||
|
openOnFocus: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
}> & Omit<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
} & {
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} & {
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
||
|
};
|
||
|
multiple: BooleanConstructor;
|
||
|
noDataText: {
|
||
|
type: StringConstructor;
|
||
|
default: string;
|
||
|
};
|
||
|
openOnClear: BooleanConstructor;
|
||
|
itemColor: StringConstructor;
|
||
|
}, vue.ExtractPropTypes<{
|
||
|
transition: Omit<{
|
||
|
type: PropType<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})>;
|
||
|
default: string;
|
||
|
validator: (val: unknown) => boolean;
|
||
|
}, "type" | "default"> & {
|
||
|
type: PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
}>;
|
||
|
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
};
|
||
|
flat: BooleanConstructor;
|
||
|
reverse: BooleanConstructor;
|
||
|
variant: {
|
||
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
||
|
default: string;
|
||
|
validator: (v: any) => boolean;
|
||
|
};
|
||
|
type: {
|
||
|
type: StringConstructor;
|
||
|
default: string;
|
||
|
};
|
||
|
error: BooleanConstructor;
|
||
|
id: StringConstructor;
|
||
|
active: BooleanConstructor;
|
||
|
name: StringConstructor;
|
||
|
color: StringConstructor;
|
||
|
direction: {
|
||
|
type: PropType<"horizontal" | "vertical">;
|
||
|
default: string;
|
||
|
validator: (v: any) => boolean;
|
||
|
};
|
||
|
loading: (StringConstructor | BooleanConstructor)[];
|
||
|
label: StringConstructor;
|
||
|
style: {
|
||
|
type: PropType<vue.StyleValue>;
|
||
|
default: null;
|
||
|
};
|
||
|
prefix: StringConstructor;
|
||
|
role: {
|
||
|
type: PropType<string>;
|
||
|
default: string;
|
||
|
};
|
||
|
autofocus: BooleanConstructor;
|
||
|
disabled: {
|
||
|
type: BooleanConstructor;
|
||
|
default: null;
|
||
|
};
|
||
|
readonly: {
|
||
|
type: PropType<boolean | null>;
|
||
|
default: null;
|
||
|
};
|
||
|
class: PropType<any>;
|
||
|
placeholder: StringConstructor;
|
||
|
theme: StringConstructor;
|
||
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
||
|
messages: {
|
||
|
type: PropType<string | readonly string[]>;
|
||
|
default: () => never[];
|
||
|
};
|
||
|
rounded: {
|
||
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
||
|
default: undefined;
|
||
|
};
|
||
|
density: {
|
||
|
type: PropType<Density>;
|
||
|
default: string;
|
||
|
validator: (v: any) => boolean;
|
||
|
};
|
||
|
modelValue: {
|
||
|
type: PropType<any>;
|
||
|
default: any;
|
||
|
};
|
||
|
bgColor: StringConstructor;
|
||
|
prependIcon: PropType<IconValue>;
|
||
|
appendIcon: PropType<IconValue>;
|
||
|
baseColor: StringConstructor;
|
||
|
clearIcon: {
|
||
|
type: PropType<IconValue>;
|
||
|
default: string;
|
||
|
};
|
||
|
prependInnerIcon: PropType<IconValue>;
|
||
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
||
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
||
|
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
||
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
||
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
||
|
focused: BooleanConstructor;
|
||
|
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
||
|
validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
||
|
errorMessages: {
|
||
|
type: PropType<string | readonly string[] | null>;
|
||
|
default: () => never[];
|
||
|
};
|
||
|
maxErrors: {
|
||
|
type: (StringConstructor | NumberConstructor)[];
|
||
|
default: number;
|
||
|
};
|
||
|
rules: {
|
||
|
type: PropType<readonly ValidationRule[]>;
|
||
|
default: () => never[];
|
||
|
};
|
||
|
centerAffix: {
|
||
|
type: BooleanConstructor;
|
||
|
default: undefined;
|
||
|
};
|
||
|
hideSpinButtons: BooleanConstructor;
|
||
|
hint: StringConstructor;
|
||
|
persistentHint: BooleanConstructor;
|
||
|
hideDetails: PropType<boolean | "auto">;
|
||
|
clearable: BooleanConstructor;
|
||
|
persistentClear: BooleanConstructor;
|
||
|
singleLine: BooleanConstructor;
|
||
|
persistentPlaceholder: BooleanConstructor;
|
||
|
persistentCounter: BooleanConstructor;
|
||
|
suffix: StringConstructor;
|
||
|
counterValue: PropType<number | ((value: any) => number)>;
|
||
|
modelModifiers: PropType<Record<string, boolean>>;
|
||
|
items: {
|
||
|
type: PropType<any[]>;
|
||
|
default: () => never[];
|
||
|
};
|
||
|
itemTitle: {
|
||
|
type: PropType<SelectItemKey>;
|
||
|
default: string;
|
||
|
};
|
||
|
itemValue: {
|
||
|
type: PropType<SelectItemKey>;
|
||
|
default: string;
|
||
|
};
|
||
|
itemChildren: Omit<{
|
||
|
type: PropType<SelectItemKey>;
|
||
|
default: string;
|
||
|
}, "type" | "default"> & {
|
||
|
type: PropType<NonNullable<SelectItemKey>>;
|
||
|
default: NonNullable<SelectItemKey>;
|
||
|
};
|
||
|
itemProps: {
|
||
|
type: PropType<SelectItemKey>;
|
||
|
default: string;
|
||
|
};
|
||
|
returnObject: BooleanConstructor;
|
||
|
valueComparator: {
|
||
|
type: PropType<typeof deepEqual>;
|
||
|
default: typeof deepEqual;
|
||
|
};
|
||
|
chips: BooleanConstructor;
|
||
|
closableChips: BooleanConstructor;
|
||
|
closeText: {
|
||
|
type: StringConstructor;
|
||
|
default: string;
|
||
|
};
|
||
|
openText: {
|
||
|
type: StringConstructor;
|
||
|
default: string;
|
||
|
};
|
||
|
eager: BooleanConstructor;
|
||
|
hideNoData: BooleanConstructor;
|
||
|
hideSelected: BooleanConstructor;
|
||
|
listProps: {
|
||
|
type: PropType<Partial<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
rounded: string | number | boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
}> & Omit<{
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
||
|
nav: boolean;
|
||
|
style: vue.StyleValue;
|
||
|
disabled: boolean;
|
||
|
tag: string;
|
||
|
mandatory: boolean;
|
||
|
density: Density;
|
||
|
slim: boolean;
|
||
|
valueComparator: typeof deepEqual;
|
||
|
selectStrategy: NonNullable<SelectStrategy>;
|
||
|
openStrategy: NonNullable<OpenStrategyProp>;
|
||
|
lines: false | "one" | "two" | "three";
|
||
|
returnObject: boolean;
|
||
|
itemType: string;
|
||
|
} & {
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
border?: string | number | boolean | undefined;
|
||
|
color?: string | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
class?: any;
|
||
|
elevation?: string | number | undefined;
|
||
|
theme?: string | undefined;
|
||
|
rounded?: string | number | boolean | undefined;
|
||
|
bgColor?: string | undefined;
|
||
|
baseColor?: string | undefined;
|
||
|
activeClass?: string | undefined;
|
||
|
activeColor?: string | undefined;
|
||
|
collapseIcon?: string | undefined;
|
||
|
expandIcon?: string | undefined;
|
||
|
} & {
|
||
|
"onClick:open"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
"onClick:select"?: ((value: {
|
||
|
id: unknown;
|
||
|
value: boolean;
|
||
|
path: unknown[];
|
||
|
}) => any) | undefined;
|
||
|
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
||
|
items?: readonly any[] | undefined;
|
||
|
itemTitle?: SelectItemKey<any>;
|
||
|
itemValue?: SelectItemKey<any>;
|
||
|
itemChildren?: SelectItemKey<any>;
|
||
|
itemProps?: SelectItemKey<any>;
|
||
|
selected?: readonly unknown[] | undefined;
|
||
|
'onUpdate:selected'?: ((value: unknown[]) => void) | undefined;
|
||
|
opened?: readonly unknown[] | undefined;
|
||
|
'onUpdate:opened'?: ((value: unknown[]) => void) | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
||
|
title?: ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: (() => vue.VNodeChild) | undefined;
|
||
|
item?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
};
|
||
|
'v-slots'?: {
|
||
|
title?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
append?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
prepend?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subtitle?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
default?: false | (() => vue.VNodeChild) | undefined;
|
||
|
item?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
divider?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
subheader?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
header?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:title"?: false | ((arg: ListItemTitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:append"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:prepend"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
isSelected: boolean;
|
||
|
isIndeterminate: boolean;
|
||
|
select: (value: boolean) => void;
|
||
|
} & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
|
||
|
item: any;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
||
|
"v-slot:item"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:divider"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:subheader"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:header"?: false | ((arg: {
|
||
|
props: {
|
||
|
[key: string]: any;
|
||
|
title: string;
|
||
|
value: any;
|
||
|
};
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
}>;
|
||
|
};
|
||
|
menu: BooleanConstructor;
|
||
|
menuIcon: {
|
||
|
type: PropType<IconValue>;
|
||
|
default: string;
|
||
|
};
|
||
|
menuProps: {
|
||
|
type: PropType<Partial<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnClick: boolean;
|
||
|
openOnHover: boolean;
|
||
|
openOnFocus: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
}> & Omit<{
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||
|
location: Anchor;
|
||
|
origin: "auto" | Anchor | "overlap";
|
||
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
||
|
component?: Component | undefined;
|
||
|
})> | {
|
||
|
component: Component;
|
||
|
};
|
||
|
zIndex: string | number;
|
||
|
style: vue.StyleValue;
|
||
|
eager: boolean;
|
||
|
disabled: boolean;
|
||
|
modelValue: boolean;
|
||
|
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
||
|
updateLocation: (e: Event) => void;
|
||
|
} | undefined)>;
|
||
|
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
||
|
closeDelay: NonNullable<string | number>;
|
||
|
openDelay: NonNullable<string | number>;
|
||
|
activatorProps: Record<string, any>;
|
||
|
openOnHover: boolean;
|
||
|
closeOnContentClick: boolean;
|
||
|
closeOnBack: boolean;
|
||
|
contained: boolean;
|
||
|
noClickAnimation: boolean;
|
||
|
persistent: boolean;
|
||
|
scrim: NonNullable<string | boolean>;
|
||
|
} & {
|
||
|
offset?: string | number | number[] | undefined;
|
||
|
id?: string | undefined;
|
||
|
height?: string | number | undefined;
|
||
|
width?: string | number | undefined;
|
||
|
maxHeight?: string | number | undefined;
|
||
|
maxWidth?: string | number | undefined;
|
||
|
minHeight?: string | number | undefined;
|
||
|
minWidth?: string | number | undefined;
|
||
|
opacity?: string | number | undefined;
|
||
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||
|
class?: any;
|
||
|
theme?: string | undefined;
|
||
|
contentClass?: any;
|
||
|
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||
|
openOnClick?: boolean | undefined;
|
||
|
openOnFocus?: boolean | undefined;
|
||
|
contentProps?: any;
|
||
|
attach?: string | boolean | Element | undefined;
|
||
|
} & {
|
||
|
$children?: vue.VNodeChild | {
|
||
|
default?: ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild);
|
||
|
'v-slots'?: {
|
||
|
default?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
activator?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} | undefined;
|
||
|
} & {
|
||
|
"v-slot:default"?: false | ((arg: {
|
||
|
isActive: vue.Ref<boolean>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
"v-slot:activator"?: false | ((arg: {
|
||
|
isActive: boolean;
|
||
|
props: Record<string, any>;
|
||
|
}) => vue.VNodeChild) | undefined;
|
||
|
} & {
|
||
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||
|
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
||
|
};
|
||
|
multiple: BooleanConstructor;
|
||
|
noDataText: {
|
||
|
type: StringConstructor;
|
||
|
default: string;
|
||
|
};
|
||
|
openOnClear: BooleanConstructor;
|
||
|
itemColor: StringConstructor;
|
||
|
}>>;
|
||
|
type VSelect = InstanceType<typeof VSelect>;
|
||
|
|
||
|
export { VSelect };
|