13837 lines
793 KiB
TypeScript
13837 lines
793 KiB
TypeScript
|
|
import { VList } from '../VList/index.js';
|
|
import { VMenu } from '../VMenu/index.js';
|
|
import { IconValue } from '../../composables/icons.js';
|
|
import { nextTick } from 'vue';
|
|
import type { Component, PropType, Ref } from 'vue';
|
|
import type { VFieldSlots } from '../VField/VField.js';
|
|
import type { VInputSlots } from '../VInput/VInput.js';
|
|
import type { ListItem } from '../../composables/list-items.js';
|
|
import type { GenericProps, SelectItemKey } from '../../util/index.js';
|
|
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;
|
|
export declare const makeSelectProps: <Defaults extends {
|
|
items?: unknown;
|
|
itemTitle?: unknown;
|
|
itemValue?: unknown;
|
|
itemChildren?: unknown;
|
|
itemProps?: unknown;
|
|
itemType?: unknown;
|
|
returnObject?: unknown;
|
|
valueComparator?: unknown;
|
|
closeText?: unknown;
|
|
openText?: unknown;
|
|
chips?: unknown;
|
|
closableChips?: unknown;
|
|
eager?: unknown;
|
|
hideNoData?: unknown;
|
|
hideSelected?: unknown;
|
|
listProps?: unknown;
|
|
menu?: unknown;
|
|
menuElevation?: unknown;
|
|
menuIcon?: unknown;
|
|
menuProps?: unknown;
|
|
multiple?: unknown;
|
|
noDataText?: unknown;
|
|
openOnClear?: unknown;
|
|
itemColor?: unknown;
|
|
noAutoScroll?: unknown;
|
|
} = {}>(defaults?: Defaults | undefined) => {
|
|
items: unknown extends Defaults["items"] ? {
|
|
type: PropType<import("../../composables/list-items.js").ItemProps['items']>;
|
|
default: () => never[];
|
|
} : Omit<{
|
|
type: PropType<import("../../composables/list-items.js").ItemProps['items']>;
|
|
default: () => never[];
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"]>;
|
|
default: unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"];
|
|
};
|
|
itemTitle: unknown extends Defaults["itemTitle"] ? {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["itemTitle"] ? SelectItemKey : Defaults["itemTitle"] | SelectItemKey>;
|
|
default: unknown extends Defaults["itemTitle"] ? SelectItemKey : Defaults["itemTitle"] | NonNullable<SelectItemKey>;
|
|
};
|
|
itemValue: unknown extends Defaults["itemValue"] ? {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["itemValue"] ? SelectItemKey : Defaults["itemValue"] | SelectItemKey>;
|
|
default: unknown extends Defaults["itemValue"] ? SelectItemKey : Defaults["itemValue"] | NonNullable<SelectItemKey>;
|
|
};
|
|
itemChildren: unknown extends Defaults["itemChildren"] ? Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<SelectItemKey>;
|
|
default: NonNullable<SelectItemKey>;
|
|
} : Omit<Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<SelectItemKey>;
|
|
default: NonNullable<SelectItemKey>;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["itemChildren"] ? SelectItemKey : Defaults["itemChildren"] | SelectItemKey>;
|
|
default: unknown extends Defaults["itemChildren"] ? SelectItemKey : Defaults["itemChildren"] | NonNullable<SelectItemKey>;
|
|
};
|
|
itemProps: unknown extends Defaults["itemProps"] ? {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["itemProps"] ? SelectItemKey : Defaults["itemProps"] | SelectItemKey>;
|
|
default: unknown extends Defaults["itemProps"] ? SelectItemKey : Defaults["itemProps"] | NonNullable<SelectItemKey>;
|
|
};
|
|
itemType: unknown extends Defaults["itemType"] ? {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["itemType"] ? SelectItemKey : Defaults["itemType"] | SelectItemKey>;
|
|
default: unknown extends Defaults["itemType"] ? SelectItemKey : Defaults["itemType"] | NonNullable<SelectItemKey>;
|
|
};
|
|
returnObject: unknown extends Defaults["returnObject"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["returnObject"] ? boolean : boolean | Defaults["returnObject"]>;
|
|
default: unknown extends Defaults["returnObject"] ? boolean : boolean | Defaults["returnObject"];
|
|
};
|
|
valueComparator: unknown extends Defaults["valueComparator"] ? PropType<import("../../util/index.js").ValueComparator> : {
|
|
type: PropType<unknown extends Defaults["valueComparator"] ? import("../../util/index.js").ValueComparator : import("../../util/index.js").ValueComparator | Defaults["valueComparator"]>;
|
|
default: unknown extends Defaults["valueComparator"] ? import("../../util/index.js").ValueComparator : import("../../util/index.js").ValueComparator | Defaults["valueComparator"];
|
|
};
|
|
closeText: unknown extends Defaults["closeText"] ? {
|
|
type: StringConstructor;
|
|
default: string;
|
|
} : Omit<{
|
|
type: StringConstructor;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["closeText"] ? string : string | Defaults["closeText"]>;
|
|
default: unknown extends Defaults["closeText"] ? string : string | Defaults["closeText"];
|
|
};
|
|
openText: unknown extends Defaults["openText"] ? {
|
|
type: StringConstructor;
|
|
default: string;
|
|
} : Omit<{
|
|
type: StringConstructor;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["openText"] ? string : string | Defaults["openText"]>;
|
|
default: unknown extends Defaults["openText"] ? string : string | Defaults["openText"];
|
|
};
|
|
chips: unknown extends Defaults["chips"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["chips"] ? boolean : boolean | Defaults["chips"]>;
|
|
default: unknown extends Defaults["chips"] ? boolean : boolean | Defaults["chips"];
|
|
};
|
|
closableChips: unknown extends Defaults["closableChips"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["closableChips"] ? boolean : boolean | Defaults["closableChips"]>;
|
|
default: unknown extends Defaults["closableChips"] ? boolean : boolean | Defaults["closableChips"];
|
|
};
|
|
eager: unknown extends Defaults["eager"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["eager"] ? boolean : boolean | Defaults["eager"]>;
|
|
default: unknown extends Defaults["eager"] ? boolean : boolean | Defaults["eager"];
|
|
};
|
|
hideNoData: unknown extends Defaults["hideNoData"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["hideNoData"] ? boolean : boolean | Defaults["hideNoData"]>;
|
|
default: unknown extends Defaults["hideNoData"] ? boolean : boolean | Defaults["hideNoData"];
|
|
};
|
|
hideSelected: unknown extends Defaults["hideSelected"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["hideSelected"] ? boolean : boolean | Defaults["hideSelected"]>;
|
|
default: unknown extends Defaults["hideSelected"] ? boolean : boolean | Defaults["hideSelected"];
|
|
};
|
|
listProps: unknown extends Defaults["listProps"] ? {
|
|
type: PropType<VList['$props']>;
|
|
} : Omit<{
|
|
type: PropType<VList['$props']>;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["listProps"] ? Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} : Defaults["listProps"] | (Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
})>;
|
|
default: unknown extends Defaults["listProps"] ? Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} : Defaults["listProps"] | NonNullable<Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
}>;
|
|
};
|
|
menu: unknown extends Defaults["menu"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["menu"] ? boolean : boolean | Defaults["menu"]>;
|
|
default: unknown extends Defaults["menu"] ? boolean : boolean | Defaults["menu"];
|
|
};
|
|
menuElevation: unknown extends Defaults["menuElevation"] ? (NumberConstructor | StringConstructor)[] : {
|
|
type: PropType<unknown extends Defaults["menuElevation"] ? string | number : string | number | Defaults["menuElevation"]>;
|
|
default: unknown extends Defaults["menuElevation"] ? string | number : Defaults["menuElevation"] | NonNullable<string | number>;
|
|
};
|
|
menuIcon: unknown extends Defaults["menuIcon"] ? {
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["menuIcon"] ? IconValue : Defaults["menuIcon"] | IconValue>;
|
|
default: unknown extends Defaults["menuIcon"] ? IconValue : Defaults["menuIcon"] | NonNullable<IconValue>;
|
|
};
|
|
menuProps: unknown extends Defaults["menuProps"] ? {
|
|
type: PropType<VMenu['$props']>;
|
|
} : Omit<{
|
|
type: PropType<VMenu['$props']>;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex"> : Defaults["menuProps"] | (Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">)>;
|
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex"> : Defaults["menuProps"] | NonNullable<Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">>;
|
|
};
|
|
multiple: unknown extends Defaults["multiple"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["multiple"] ? boolean : boolean | Defaults["multiple"]>;
|
|
default: unknown extends Defaults["multiple"] ? boolean : boolean | Defaults["multiple"];
|
|
};
|
|
noDataText: unknown extends Defaults["noDataText"] ? {
|
|
type: StringConstructor;
|
|
default: string;
|
|
} : Omit<{
|
|
type: StringConstructor;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["noDataText"] ? string : string | Defaults["noDataText"]>;
|
|
default: unknown extends Defaults["noDataText"] ? string : string | Defaults["noDataText"];
|
|
};
|
|
openOnClear: unknown extends Defaults["openOnClear"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["openOnClear"] ? boolean : boolean | Defaults["openOnClear"]>;
|
|
default: unknown extends Defaults["openOnClear"] ? boolean : boolean | Defaults["openOnClear"];
|
|
};
|
|
itemColor: unknown extends Defaults["itemColor"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"]>;
|
|
default: unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"];
|
|
};
|
|
noAutoScroll: unknown extends Defaults["noAutoScroll"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"]>;
|
|
default: unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"];
|
|
};
|
|
};
|
|
export declare const makeVSelectProps: <Defaults extends {
|
|
theme?: unknown;
|
|
class?: unknown;
|
|
style?: unknown;
|
|
customFilter?: unknown;
|
|
customKeyFilter?: unknown;
|
|
filterKeys?: unknown;
|
|
filterMode?: unknown;
|
|
noFilter?: unknown;
|
|
focused?: unknown;
|
|
'onUpdate:focused'?: unknown;
|
|
errorMessages?: unknown;
|
|
maxErrors?: unknown;
|
|
name?: unknown;
|
|
readonly?: unknown;
|
|
rules?: unknown;
|
|
modelValue?: unknown;
|
|
validateOn?: unknown;
|
|
density?: unknown;
|
|
rounded?: unknown;
|
|
tile?: unknown;
|
|
maxWidth?: unknown;
|
|
minWidth?: unknown;
|
|
width?: unknown;
|
|
loading?: unknown;
|
|
transition?: unknown;
|
|
id?: unknown;
|
|
appendIcon?: unknown;
|
|
prependIcon?: unknown;
|
|
hideDetails?: unknown;
|
|
hideSpinButtons?: unknown;
|
|
hint?: unknown;
|
|
indentDetails?: unknown;
|
|
persistentHint?: unknown;
|
|
messages?: unknown;
|
|
'onClick:prepend'?: unknown;
|
|
'onClick:append'?: unknown;
|
|
items?: unknown;
|
|
itemTitle?: unknown;
|
|
itemValue?: unknown;
|
|
itemChildren?: unknown;
|
|
itemProps?: unknown;
|
|
itemType?: unknown;
|
|
returnObject?: unknown;
|
|
valueComparator?: unknown;
|
|
appendInnerIcon?: unknown;
|
|
bgColor?: unknown;
|
|
clearable?: unknown;
|
|
clearIcon?: unknown;
|
|
active?: unknown;
|
|
centerAffix?: unknown;
|
|
color?: unknown;
|
|
baseColor?: unknown;
|
|
disabled?: unknown;
|
|
glow?: unknown;
|
|
error?: unknown;
|
|
flat?: unknown;
|
|
iconColor?: unknown;
|
|
label?: unknown;
|
|
persistentClear?: unknown;
|
|
prependInnerIcon?: unknown;
|
|
reverse?: unknown;
|
|
singleLine?: unknown;
|
|
variant?: unknown;
|
|
'onClick:clear'?: unknown;
|
|
'onClick:appendInner'?: unknown;
|
|
'onClick:prependInner'?: unknown;
|
|
autocomplete?: unknown;
|
|
autofocus?: unknown;
|
|
counter?: unknown;
|
|
counterValue?: unknown;
|
|
prefix?: unknown;
|
|
placeholder?: unknown;
|
|
persistentPlaceholder?: unknown;
|
|
persistentCounter?: unknown;
|
|
suffix?: unknown;
|
|
role?: unknown;
|
|
type?: unknown;
|
|
modelModifiers?: unknown;
|
|
closeText?: unknown;
|
|
openText?: unknown;
|
|
chips?: unknown;
|
|
closableChips?: unknown;
|
|
eager?: unknown;
|
|
hideNoData?: unknown;
|
|
hideSelected?: unknown;
|
|
listProps?: unknown;
|
|
menu?: unknown;
|
|
menuElevation?: unknown;
|
|
menuIcon?: unknown;
|
|
menuProps?: unknown;
|
|
multiple?: unknown;
|
|
noDataText?: unknown;
|
|
openOnClear?: unknown;
|
|
itemColor?: unknown;
|
|
noAutoScroll?: unknown;
|
|
search?: unknown;
|
|
} = {}>(defaults?: Defaults | undefined) => {
|
|
theme: unknown extends Defaults["theme"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["theme"] ? string : string | Defaults["theme"]>;
|
|
default: unknown extends Defaults["theme"] ? string : string | Defaults["theme"];
|
|
};
|
|
class: unknown extends Defaults["class"] ? PropType<any> : {
|
|
type: PropType<unknown extends Defaults["class"] ? any : any>;
|
|
default: unknown extends Defaults["class"] ? any : any;
|
|
};
|
|
style: unknown extends Defaults["style"] ? {
|
|
type: PropType<import("vue").StyleValue>;
|
|
default: null;
|
|
} : Omit<{
|
|
type: PropType<import("vue").StyleValue>;
|
|
default: null;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["style"] ? import("vue").StyleValue : Defaults["style"] | import("vue").StyleValue>;
|
|
default: unknown extends Defaults["style"] ? import("vue").StyleValue : Defaults["style"] | NonNullable<import("vue").StyleValue>;
|
|
};
|
|
customFilter: unknown extends Defaults["customFilter"] ? PropType<import("../../types.js").FilterFunction> : {
|
|
type: PropType<unknown extends Defaults["customFilter"] ? import("../../types.js").FilterFunction : import("../../types.js").FilterFunction | Defaults["customFilter"]>;
|
|
default: unknown extends Defaults["customFilter"] ? import("../../types.js").FilterFunction : import("../../types.js").FilterFunction | Defaults["customFilter"];
|
|
};
|
|
customKeyFilter: unknown extends Defaults["customKeyFilter"] ? PropType<import("../../composables/filter.js").FilterKeyFunctions> : {
|
|
type: PropType<unknown extends Defaults["customKeyFilter"] ? import("../../composables/filter.js").FilterKeyFunctions : import("../../composables/filter.js").FilterKeyFunctions | Defaults["customKeyFilter"]>;
|
|
default: unknown extends Defaults["customKeyFilter"] ? import("../../composables/filter.js").FilterKeyFunctions : import("../../composables/filter.js").FilterKeyFunctions | Defaults["customKeyFilter"];
|
|
};
|
|
filterKeys: unknown extends Defaults["filterKeys"] ? {
|
|
type: PropType<import("../../composables/filter.js").FilterKeys>;
|
|
default: NonNullable<import("../../composables/filter.js").FilterKeys>;
|
|
} : Omit<{
|
|
type: PropType<import("../../composables/filter.js").FilterKeys>;
|
|
default: NonNullable<import("../../composables/filter.js").FilterKeys>;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["filterKeys"] ? import("../../composables/filter.js").FilterKeys : Defaults["filterKeys"] | import("../../composables/filter.js").FilterKeys>;
|
|
default: unknown extends Defaults["filterKeys"] ? import("../../composables/filter.js").FilterKeys : Defaults["filterKeys"] | NonNullable<import("../../composables/filter.js").FilterKeys>;
|
|
};
|
|
filterMode: unknown extends Defaults["filterMode"] ? {
|
|
type: PropType<import("../../composables/filter.js").FilterMode>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<import("../../composables/filter.js").FilterMode>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["filterMode"] ? import("../../composables/filter.js").FilterMode : Defaults["filterMode"] | import("../../composables/filter.js").FilterMode>;
|
|
default: unknown extends Defaults["filterMode"] ? import("../../composables/filter.js").FilterMode : Defaults["filterMode"] | NonNullable<import("../../composables/filter.js").FilterMode>;
|
|
};
|
|
noFilter: unknown extends Defaults["noFilter"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["noFilter"] ? boolean : boolean | Defaults["noFilter"]>;
|
|
default: unknown extends Defaults["noFilter"] ? boolean : boolean | Defaults["noFilter"];
|
|
};
|
|
focused: unknown extends Defaults["focused"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["focused"] ? boolean : boolean | Defaults["focused"]>;
|
|
default: unknown extends Defaults["focused"] ? boolean : boolean | Defaults["focused"];
|
|
};
|
|
'onUpdate:focused': unknown extends Defaults["onUpdate:focused"] ? PropType<(args_0: boolean) => void> : {
|
|
type: PropType<unknown extends Defaults["onUpdate:focused"] ? (args_0: boolean) => void : ((args_0: boolean) => void) | Defaults["onUpdate:focused"]>;
|
|
default: unknown extends Defaults["onUpdate:focused"] ? (args_0: boolean) => void : ((args_0: boolean) => void) | Defaults["onUpdate:focused"];
|
|
};
|
|
errorMessages: unknown extends Defaults["errorMessages"] ? {
|
|
type: PropType<string | readonly string[] | null>;
|
|
default: () => never[];
|
|
} : Omit<{
|
|
type: PropType<string | readonly string[] | null>;
|
|
default: () => never[];
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["errorMessages"] ? string | readonly string[] | null : string | readonly string[] | Defaults["errorMessages"] | null>;
|
|
default: unknown extends Defaults["errorMessages"] ? string | readonly string[] | null : Defaults["errorMessages"] | NonNullable<string | readonly string[] | null>;
|
|
};
|
|
maxErrors: unknown extends Defaults["maxErrors"] ? {
|
|
type: (NumberConstructor | StringConstructor)[];
|
|
default: number;
|
|
} : Omit<{
|
|
type: (NumberConstructor | StringConstructor)[];
|
|
default: number;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["maxErrors"] ? string | number : string | number | Defaults["maxErrors"]>;
|
|
default: unknown extends Defaults["maxErrors"] ? string | number : Defaults["maxErrors"] | NonNullable<string | number>;
|
|
};
|
|
name: unknown extends Defaults["name"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["name"] ? string : string | Defaults["name"]>;
|
|
default: unknown extends Defaults["name"] ? string : string | Defaults["name"];
|
|
};
|
|
readonly: unknown extends Defaults["readonly"] ? {
|
|
type: PropType<boolean | null>;
|
|
default: null;
|
|
} : Omit<{
|
|
type: PropType<boolean | null>;
|
|
default: null;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["readonly"] ? boolean | null : boolean | Defaults["readonly"] | null>;
|
|
default: unknown extends Defaults["readonly"] ? boolean | null : Defaults["readonly"] | NonNullable<boolean | null>;
|
|
};
|
|
rules: unknown extends Defaults["rules"] ? {
|
|
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
|
default: () => never[];
|
|
} : Omit<{
|
|
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
|
default: () => never[];
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["rules"] ? readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] : readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] | Defaults["rules"]>;
|
|
default: unknown extends Defaults["rules"] ? readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] : readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] | Defaults["rules"];
|
|
};
|
|
modelValue: unknown extends Defaults["modelValue"] ? {
|
|
type: PropType<any>;
|
|
default: any;
|
|
} : Omit<{
|
|
type: PropType<any>;
|
|
default: any;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["modelValue"] ? any : any>;
|
|
default: unknown extends Defaults["modelValue"] ? any : any;
|
|
};
|
|
validateOn: unknown extends Defaults["validateOn"] ? PropType<("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined> : {
|
|
type: PropType<unknown extends Defaults["validateOn"] ? ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined : Defaults["validateOn"] | ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined>;
|
|
default: unknown extends Defaults["validateOn"] ? ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined : Defaults["validateOn"] | NonNullable<("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined>;
|
|
};
|
|
density: unknown extends Defaults["density"] ? {
|
|
type: PropType<import("../../composables/density.js").Density>;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
} : Omit<{
|
|
type: PropType<import("../../composables/density.js").Density>;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["density"] ? import("../../composables/density.js").Density : Defaults["density"] | import("../../composables/density.js").Density>;
|
|
default: unknown extends Defaults["density"] ? import("../../composables/density.js").Density : Defaults["density"] | NonNullable<import("../../composables/density.js").Density>;
|
|
};
|
|
rounded: unknown extends Defaults["rounded"] ? {
|
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
default: undefined;
|
|
} : Omit<{
|
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
default: undefined;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["rounded"] ? string | number | boolean : string | number | boolean | Defaults["rounded"]>;
|
|
default: unknown extends Defaults["rounded"] ? string | number | boolean : Defaults["rounded"] | NonNullable<string | number | boolean>;
|
|
};
|
|
tile: unknown extends Defaults["tile"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["tile"] ? boolean : boolean | Defaults["tile"]>;
|
|
default: unknown extends Defaults["tile"] ? boolean : boolean | Defaults["tile"];
|
|
};
|
|
maxWidth: unknown extends Defaults["maxWidth"] ? (NumberConstructor | StringConstructor)[] : {
|
|
type: PropType<unknown extends Defaults["maxWidth"] ? string | number : string | number | Defaults["maxWidth"]>;
|
|
default: unknown extends Defaults["maxWidth"] ? string | number : Defaults["maxWidth"] | NonNullable<string | number>;
|
|
};
|
|
minWidth: unknown extends Defaults["minWidth"] ? (NumberConstructor | StringConstructor)[] : {
|
|
type: PropType<unknown extends Defaults["minWidth"] ? string | number : string | number | Defaults["minWidth"]>;
|
|
default: unknown extends Defaults["minWidth"] ? string | number : Defaults["minWidth"] | NonNullable<string | number>;
|
|
};
|
|
width: unknown extends Defaults["width"] ? (NumberConstructor | StringConstructor)[] : {
|
|
type: PropType<unknown extends Defaults["width"] ? string | number : string | number | Defaults["width"]>;
|
|
default: unknown extends Defaults["width"] ? string | number : Defaults["width"] | NonNullable<string | number>;
|
|
};
|
|
loading: unknown extends Defaults["loading"] ? (BooleanConstructor | StringConstructor)[] : {
|
|
type: PropType<unknown extends Defaults["loading"] ? string | boolean : string | boolean | Defaults["loading"]>;
|
|
default: unknown extends Defaults["loading"] ? string | boolean : Defaults["loading"] | NonNullable<string | boolean>;
|
|
};
|
|
transition: unknown extends Defaults["transition"] ? {
|
|
type: PropType<string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null>;
|
|
default: {
|
|
component: Component;
|
|
} | NonNullable<string | boolean | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null>;
|
|
} : Omit<{
|
|
type: PropType<string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null>;
|
|
default: {
|
|
component: Component;
|
|
} | NonNullable<string | boolean | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null>;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["transition"] ? string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null : string | boolean | {
|
|
component: Component;
|
|
} | Defaults["transition"] | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null>;
|
|
default: unknown extends Defaults["transition"] ? string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null : Defaults["transition"] | NonNullable<string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null>;
|
|
};
|
|
id: unknown extends Defaults["id"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["id"] ? string : string | Defaults["id"]>;
|
|
default: unknown extends Defaults["id"] ? string : string | Defaults["id"];
|
|
};
|
|
appendIcon: unknown extends Defaults["appendIcon"] ? PropType<IconValue> : {
|
|
type: PropType<unknown extends Defaults["appendIcon"] ? IconValue : Defaults["appendIcon"] | IconValue>;
|
|
default: unknown extends Defaults["appendIcon"] ? IconValue : Defaults["appendIcon"] | NonNullable<IconValue>;
|
|
};
|
|
prependIcon: unknown extends Defaults["prependIcon"] ? PropType<IconValue> : {
|
|
type: PropType<unknown extends Defaults["prependIcon"] ? IconValue : Defaults["prependIcon"] | IconValue>;
|
|
default: unknown extends Defaults["prependIcon"] ? IconValue : Defaults["prependIcon"] | NonNullable<IconValue>;
|
|
};
|
|
hideDetails: unknown extends Defaults["hideDetails"] ? PropType<"auto" | boolean> : {
|
|
type: PropType<unknown extends Defaults["hideDetails"] ? "auto" | boolean : "auto" | boolean | Defaults["hideDetails"]>;
|
|
default: unknown extends Defaults["hideDetails"] ? "auto" | boolean : Defaults["hideDetails"] | NonNullable<"auto" | boolean>;
|
|
};
|
|
hideSpinButtons: unknown extends Defaults["hideSpinButtons"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"]>;
|
|
default: unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"];
|
|
};
|
|
hint: unknown extends Defaults["hint"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["hint"] ? string : string | Defaults["hint"]>;
|
|
default: unknown extends Defaults["hint"] ? string : string | Defaults["hint"];
|
|
};
|
|
indentDetails: unknown extends Defaults["indentDetails"] ? {
|
|
type: BooleanConstructor;
|
|
default: null;
|
|
} : Omit<{
|
|
type: BooleanConstructor;
|
|
default: null;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["indentDetails"] ? boolean : boolean | Defaults["indentDetails"]>;
|
|
default: unknown extends Defaults["indentDetails"] ? boolean : boolean | Defaults["indentDetails"];
|
|
};
|
|
persistentHint: unknown extends Defaults["persistentHint"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["persistentHint"] ? boolean : boolean | Defaults["persistentHint"]>;
|
|
default: unknown extends Defaults["persistentHint"] ? boolean : boolean | Defaults["persistentHint"];
|
|
};
|
|
messages: unknown extends Defaults["messages"] ? {
|
|
type: PropType<string | readonly string[]>;
|
|
default: () => never[];
|
|
} : Omit<{
|
|
type: PropType<string | readonly string[]>;
|
|
default: () => never[];
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["messages"] ? string | readonly string[] : string | readonly string[] | Defaults["messages"]>;
|
|
default: unknown extends Defaults["messages"] ? string | readonly string[] : Defaults["messages"] | NonNullable<string | readonly string[]>;
|
|
};
|
|
'onClick:prepend': unknown extends Defaults["onClick:prepend"] ? PropType<(args_0: MouseEvent) => void> : {
|
|
type: PropType<unknown extends Defaults["onClick:prepend"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:prepend"]>;
|
|
default: unknown extends Defaults["onClick:prepend"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:prepend"];
|
|
};
|
|
'onClick:append': unknown extends Defaults["onClick:append"] ? PropType<(args_0: MouseEvent) => void> : {
|
|
type: PropType<unknown extends Defaults["onClick:append"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:append"]>;
|
|
default: unknown extends Defaults["onClick:append"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:append"];
|
|
};
|
|
items: unknown extends Defaults["items"] ? {
|
|
type: PropType<import("../../composables/list-items.js").ItemProps['items']>;
|
|
default: () => never[];
|
|
} : Omit<{
|
|
type: PropType<import("../../composables/list-items.js").ItemProps['items']>;
|
|
default: () => never[];
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"]>;
|
|
default: unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"];
|
|
};
|
|
itemTitle: unknown extends Defaults["itemTitle"] ? {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["itemTitle"] ? SelectItemKey : Defaults["itemTitle"] | SelectItemKey>;
|
|
default: unknown extends Defaults["itemTitle"] ? SelectItemKey : Defaults["itemTitle"] | NonNullable<SelectItemKey>;
|
|
};
|
|
itemValue: unknown extends Defaults["itemValue"] ? {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["itemValue"] ? SelectItemKey : Defaults["itemValue"] | SelectItemKey>;
|
|
default: unknown extends Defaults["itemValue"] ? SelectItemKey : Defaults["itemValue"] | NonNullable<SelectItemKey>;
|
|
};
|
|
itemChildren: unknown extends Defaults["itemChildren"] ? Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<SelectItemKey>;
|
|
default: NonNullable<SelectItemKey>;
|
|
} : Omit<Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<SelectItemKey>;
|
|
default: NonNullable<SelectItemKey>;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["itemChildren"] ? SelectItemKey : Defaults["itemChildren"] | SelectItemKey>;
|
|
default: unknown extends Defaults["itemChildren"] ? SelectItemKey : Defaults["itemChildren"] | NonNullable<SelectItemKey>;
|
|
};
|
|
itemProps: unknown extends Defaults["itemProps"] ? {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["itemProps"] ? SelectItemKey : Defaults["itemProps"] | SelectItemKey>;
|
|
default: unknown extends Defaults["itemProps"] ? SelectItemKey : Defaults["itemProps"] | NonNullable<SelectItemKey>;
|
|
};
|
|
itemType: unknown extends Defaults["itemType"] ? {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["itemType"] ? SelectItemKey : Defaults["itemType"] | SelectItemKey>;
|
|
default: unknown extends Defaults["itemType"] ? SelectItemKey : Defaults["itemType"] | NonNullable<SelectItemKey>;
|
|
};
|
|
returnObject: unknown extends Defaults["returnObject"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["returnObject"] ? boolean : boolean | Defaults["returnObject"]>;
|
|
default: unknown extends Defaults["returnObject"] ? boolean : boolean | Defaults["returnObject"];
|
|
};
|
|
valueComparator: unknown extends Defaults["valueComparator"] ? PropType<import("../../util/index.js").ValueComparator> : {
|
|
type: PropType<unknown extends Defaults["valueComparator"] ? import("../../util/index.js").ValueComparator : import("../../util/index.js").ValueComparator | Defaults["valueComparator"]>;
|
|
default: unknown extends Defaults["valueComparator"] ? import("../../util/index.js").ValueComparator : import("../../util/index.js").ValueComparator | Defaults["valueComparator"];
|
|
};
|
|
appendInnerIcon: unknown extends Defaults["appendInnerIcon"] ? PropType<IconValue> : {
|
|
type: PropType<unknown extends Defaults["appendInnerIcon"] ? IconValue : Defaults["appendInnerIcon"] | IconValue>;
|
|
default: unknown extends Defaults["appendInnerIcon"] ? IconValue : Defaults["appendInnerIcon"] | NonNullable<IconValue>;
|
|
};
|
|
bgColor: unknown extends Defaults["bgColor"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["bgColor"] ? string : string | Defaults["bgColor"]>;
|
|
default: unknown extends Defaults["bgColor"] ? string : string | Defaults["bgColor"];
|
|
};
|
|
clearable: unknown extends Defaults["clearable"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["clearable"] ? boolean : boolean | Defaults["clearable"]>;
|
|
default: unknown extends Defaults["clearable"] ? boolean : boolean | Defaults["clearable"];
|
|
};
|
|
clearIcon: unknown extends Defaults["clearIcon"] ? {
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["clearIcon"] ? IconValue : Defaults["clearIcon"] | IconValue>;
|
|
default: unknown extends Defaults["clearIcon"] ? IconValue : Defaults["clearIcon"] | NonNullable<IconValue>;
|
|
};
|
|
active: unknown extends Defaults["active"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["active"] ? boolean : boolean | Defaults["active"]>;
|
|
default: unknown extends Defaults["active"] ? boolean : boolean | Defaults["active"];
|
|
};
|
|
centerAffix: unknown extends Defaults["centerAffix"] ? {
|
|
type: BooleanConstructor;
|
|
default: undefined;
|
|
} : Omit<{
|
|
type: BooleanConstructor;
|
|
default: undefined;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["centerAffix"] ? boolean : boolean | Defaults["centerAffix"]>;
|
|
default: unknown extends Defaults["centerAffix"] ? boolean : boolean | Defaults["centerAffix"];
|
|
};
|
|
color: unknown extends Defaults["color"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["color"] ? string : string | Defaults["color"]>;
|
|
default: unknown extends Defaults["color"] ? string : string | Defaults["color"];
|
|
};
|
|
baseColor: unknown extends Defaults["baseColor"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"]>;
|
|
default: unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"];
|
|
};
|
|
disabled: unknown extends Defaults["disabled"] ? {
|
|
type: BooleanConstructor;
|
|
default: null;
|
|
} : Omit<{
|
|
type: BooleanConstructor;
|
|
default: null;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"]>;
|
|
default: unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"];
|
|
};
|
|
glow: unknown extends Defaults["glow"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"]>;
|
|
default: unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"];
|
|
};
|
|
error: unknown extends Defaults["error"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["error"] ? boolean : boolean | Defaults["error"]>;
|
|
default: unknown extends Defaults["error"] ? boolean : boolean | Defaults["error"];
|
|
};
|
|
flat: unknown extends Defaults["flat"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["flat"] ? boolean : boolean | Defaults["flat"]>;
|
|
default: unknown extends Defaults["flat"] ? boolean : boolean | Defaults["flat"];
|
|
};
|
|
iconColor: unknown extends Defaults["iconColor"] ? (BooleanConstructor | StringConstructor)[] : {
|
|
type: PropType<unknown extends Defaults["iconColor"] ? string | boolean : string | boolean | Defaults["iconColor"]>;
|
|
default: unknown extends Defaults["iconColor"] ? string | boolean : Defaults["iconColor"] | NonNullable<string | boolean>;
|
|
};
|
|
label: unknown extends Defaults["label"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["label"] ? string : string | Defaults["label"]>;
|
|
default: unknown extends Defaults["label"] ? string : string | Defaults["label"];
|
|
};
|
|
persistentClear: unknown extends Defaults["persistentClear"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["persistentClear"] ? boolean : boolean | Defaults["persistentClear"]>;
|
|
default: unknown extends Defaults["persistentClear"] ? boolean : boolean | Defaults["persistentClear"];
|
|
};
|
|
prependInnerIcon: unknown extends Defaults["prependInnerIcon"] ? PropType<IconValue> : {
|
|
type: PropType<unknown extends Defaults["prependInnerIcon"] ? IconValue : Defaults["prependInnerIcon"] | IconValue>;
|
|
default: unknown extends Defaults["prependInnerIcon"] ? IconValue : Defaults["prependInnerIcon"] | NonNullable<IconValue>;
|
|
};
|
|
reverse: unknown extends Defaults["reverse"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["reverse"] ? boolean : boolean | Defaults["reverse"]>;
|
|
default: unknown extends Defaults["reverse"] ? boolean : boolean | Defaults["reverse"];
|
|
};
|
|
singleLine: unknown extends Defaults["singleLine"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["singleLine"] ? boolean : boolean | Defaults["singleLine"]>;
|
|
default: unknown extends Defaults["singleLine"] ? boolean : boolean | Defaults["singleLine"];
|
|
};
|
|
variant: unknown extends Defaults["variant"] ? {
|
|
type: PropType<"filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined">;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
} : Omit<{
|
|
type: PropType<"filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined">;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["variant"] ? "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined" : "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined" | Defaults["variant"]>;
|
|
default: unknown extends Defaults["variant"] ? "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined" : Defaults["variant"] | NonNullable<"filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined">;
|
|
};
|
|
'onClick:clear': unknown extends Defaults["onClick:clear"] ? PropType<(args_0: MouseEvent) => void> : {
|
|
type: PropType<unknown extends Defaults["onClick:clear"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:clear"]>;
|
|
default: unknown extends Defaults["onClick:clear"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:clear"];
|
|
};
|
|
'onClick:appendInner': unknown extends Defaults["onClick:appendInner"] ? PropType<(args_0: MouseEvent) => void> : {
|
|
type: PropType<unknown extends Defaults["onClick:appendInner"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:appendInner"]>;
|
|
default: unknown extends Defaults["onClick:appendInner"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:appendInner"];
|
|
};
|
|
'onClick:prependInner': unknown extends Defaults["onClick:prependInner"] ? PropType<(args_0: MouseEvent) => void> : {
|
|
type: PropType<unknown extends Defaults["onClick:prependInner"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:prependInner"]>;
|
|
default: unknown extends Defaults["onClick:prependInner"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:prependInner"];
|
|
};
|
|
autocomplete: unknown extends Defaults["autocomplete"] ? PropType<string> : {
|
|
type: PropType<unknown extends Defaults["autocomplete"] ? string : string | Defaults["autocomplete"]>;
|
|
default: unknown extends Defaults["autocomplete"] ? string : string | Defaults["autocomplete"];
|
|
};
|
|
autofocus: unknown extends Defaults["autofocus"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["autofocus"] ? boolean : boolean | Defaults["autofocus"]>;
|
|
default: unknown extends Defaults["autofocus"] ? boolean : boolean | Defaults["autofocus"];
|
|
};
|
|
counter: unknown extends Defaults["counter"] ? (BooleanConstructor | NumberConstructor | StringConstructor)[] : {
|
|
type: PropType<unknown extends Defaults["counter"] ? string | number | boolean : string | number | boolean | Defaults["counter"]>;
|
|
default: unknown extends Defaults["counter"] ? string | number | boolean : Defaults["counter"] | NonNullable<string | number | boolean>;
|
|
};
|
|
counterValue: unknown extends Defaults["counterValue"] ? PropType<number | ((value: any) => number)> : {
|
|
type: PropType<unknown extends Defaults["counterValue"] ? number | ((value: any) => number) : number | ((value: any) => number) | Defaults["counterValue"]>;
|
|
default: unknown extends Defaults["counterValue"] ? number | ((value: any) => number) : Defaults["counterValue"] | NonNullable<number | ((value: any) => number)>;
|
|
};
|
|
prefix: unknown extends Defaults["prefix"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["prefix"] ? string : string | Defaults["prefix"]>;
|
|
default: unknown extends Defaults["prefix"] ? string : string | Defaults["prefix"];
|
|
};
|
|
placeholder: unknown extends Defaults["placeholder"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["placeholder"] ? string : string | Defaults["placeholder"]>;
|
|
default: unknown extends Defaults["placeholder"] ? string : string | Defaults["placeholder"];
|
|
};
|
|
persistentPlaceholder: unknown extends Defaults["persistentPlaceholder"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["persistentPlaceholder"] ? boolean : boolean | Defaults["persistentPlaceholder"]>;
|
|
default: unknown extends Defaults["persistentPlaceholder"] ? boolean : boolean | Defaults["persistentPlaceholder"];
|
|
};
|
|
persistentCounter: unknown extends Defaults["persistentCounter"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["persistentCounter"] ? boolean : boolean | Defaults["persistentCounter"]>;
|
|
default: unknown extends Defaults["persistentCounter"] ? boolean : boolean | Defaults["persistentCounter"];
|
|
};
|
|
suffix: unknown extends Defaults["suffix"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["suffix"] ? string : string | Defaults["suffix"]>;
|
|
default: unknown extends Defaults["suffix"] ? string : string | Defaults["suffix"];
|
|
};
|
|
role: unknown extends Defaults["role"] ? {
|
|
type: PropType<string>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<string>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["role"] ? string : string | Defaults["role"]>;
|
|
default: unknown extends Defaults["role"] ? string : string | Defaults["role"];
|
|
};
|
|
type: unknown extends Defaults["type"] ? {
|
|
type: StringConstructor;
|
|
default: string;
|
|
} : Omit<{
|
|
type: StringConstructor;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["type"] ? string : string | Defaults["type"]>;
|
|
default: unknown extends Defaults["type"] ? string : string | Defaults["type"];
|
|
};
|
|
modelModifiers: unknown extends Defaults["modelModifiers"] ? PropType<Record<string, boolean>> : {
|
|
type: PropType<unknown extends Defaults["modelModifiers"] ? Record<string, boolean> : Record<string, boolean> | Defaults["modelModifiers"]>;
|
|
default: unknown extends Defaults["modelModifiers"] ? Record<string, boolean> : Record<string, boolean> | Defaults["modelModifiers"];
|
|
};
|
|
closeText: unknown extends Defaults["closeText"] ? {
|
|
type: StringConstructor;
|
|
default: string;
|
|
} : Omit<{
|
|
type: StringConstructor;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["closeText"] ? string : string | Defaults["closeText"]>;
|
|
default: unknown extends Defaults["closeText"] ? string : string | Defaults["closeText"];
|
|
};
|
|
openText: unknown extends Defaults["openText"] ? {
|
|
type: StringConstructor;
|
|
default: string;
|
|
} : Omit<{
|
|
type: StringConstructor;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["openText"] ? string : string | Defaults["openText"]>;
|
|
default: unknown extends Defaults["openText"] ? string : string | Defaults["openText"];
|
|
};
|
|
chips: unknown extends Defaults["chips"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["chips"] ? boolean : boolean | Defaults["chips"]>;
|
|
default: unknown extends Defaults["chips"] ? boolean : boolean | Defaults["chips"];
|
|
};
|
|
closableChips: unknown extends Defaults["closableChips"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["closableChips"] ? boolean : boolean | Defaults["closableChips"]>;
|
|
default: unknown extends Defaults["closableChips"] ? boolean : boolean | Defaults["closableChips"];
|
|
};
|
|
eager: unknown extends Defaults["eager"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["eager"] ? boolean : boolean | Defaults["eager"]>;
|
|
default: unknown extends Defaults["eager"] ? boolean : boolean | Defaults["eager"];
|
|
};
|
|
hideNoData: unknown extends Defaults["hideNoData"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["hideNoData"] ? boolean : boolean | Defaults["hideNoData"]>;
|
|
default: unknown extends Defaults["hideNoData"] ? boolean : boolean | Defaults["hideNoData"];
|
|
};
|
|
hideSelected: unknown extends Defaults["hideSelected"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["hideSelected"] ? boolean : boolean | Defaults["hideSelected"]>;
|
|
default: unknown extends Defaults["hideSelected"] ? boolean : boolean | Defaults["hideSelected"];
|
|
};
|
|
listProps: unknown extends Defaults["listProps"] ? {
|
|
type: PropType<VList['$props']>;
|
|
} : Omit<{
|
|
type: PropType<VList['$props']>;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["listProps"] ? Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} : Defaults["listProps"] | (Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
})>;
|
|
default: unknown extends Defaults["listProps"] ? Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} : Defaults["listProps"] | NonNullable<Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
}>;
|
|
};
|
|
menu: unknown extends Defaults["menu"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["menu"] ? boolean : boolean | Defaults["menu"]>;
|
|
default: unknown extends Defaults["menu"] ? boolean : boolean | Defaults["menu"];
|
|
};
|
|
menuElevation: unknown extends Defaults["menuElevation"] ? (NumberConstructor | StringConstructor)[] : {
|
|
type: PropType<unknown extends Defaults["menuElevation"] ? string | number : string | number | Defaults["menuElevation"]>;
|
|
default: unknown extends Defaults["menuElevation"] ? string | number : Defaults["menuElevation"] | NonNullable<string | number>;
|
|
};
|
|
menuIcon: unknown extends Defaults["menuIcon"] ? {
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
} : Omit<{
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["menuIcon"] ? IconValue : Defaults["menuIcon"] | IconValue>;
|
|
default: unknown extends Defaults["menuIcon"] ? IconValue : Defaults["menuIcon"] | NonNullable<IconValue>;
|
|
};
|
|
menuProps: unknown extends Defaults["menuProps"] ? {
|
|
type: PropType<VMenu['$props']>;
|
|
} : Omit<{
|
|
type: PropType<VMenu['$props']>;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex"> : Defaults["menuProps"] | (Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">)>;
|
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex"> : Defaults["menuProps"] | NonNullable<Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">>;
|
|
};
|
|
multiple: unknown extends Defaults["multiple"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["multiple"] ? boolean : boolean | Defaults["multiple"]>;
|
|
default: unknown extends Defaults["multiple"] ? boolean : boolean | Defaults["multiple"];
|
|
};
|
|
noDataText: unknown extends Defaults["noDataText"] ? {
|
|
type: StringConstructor;
|
|
default: string;
|
|
} : Omit<{
|
|
type: StringConstructor;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<unknown extends Defaults["noDataText"] ? string : string | Defaults["noDataText"]>;
|
|
default: unknown extends Defaults["noDataText"] ? string : string | Defaults["noDataText"];
|
|
};
|
|
openOnClear: unknown extends Defaults["openOnClear"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["openOnClear"] ? boolean : boolean | Defaults["openOnClear"]>;
|
|
default: unknown extends Defaults["openOnClear"] ? boolean : boolean | Defaults["openOnClear"];
|
|
};
|
|
itemColor: unknown extends Defaults["itemColor"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"]>;
|
|
default: unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"];
|
|
};
|
|
noAutoScroll: unknown extends Defaults["noAutoScroll"] ? BooleanConstructor : {
|
|
type: PropType<unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"]>;
|
|
default: unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"];
|
|
};
|
|
search: unknown extends Defaults["search"] ? StringConstructor : {
|
|
type: PropType<unknown extends Defaults["search"] ? string : string | Defaults["search"]>;
|
|
default: unknown extends Defaults["search"] ? string : string | Defaults["search"];
|
|
};
|
|
};
|
|
type ItemType<T> = T extends readonly (infer U)[] ? U : never;
|
|
export declare const VSelect: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
|
filterMode: import("../../composables/filter.js").FilterMode;
|
|
noFilter: boolean;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
tile: boolean;
|
|
transition: string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
role: string;
|
|
type: string;
|
|
closeText: string;
|
|
openText: string;
|
|
chips: boolean;
|
|
closableChips: boolean;
|
|
eager: boolean;
|
|
hideNoData: boolean;
|
|
hideSelected: boolean;
|
|
menu: boolean;
|
|
menuIcon: IconValue;
|
|
noDataText: string;
|
|
openOnClear: boolean;
|
|
noAutoScroll: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
customFilter?: import("../../types.js").FilterFunction | undefined;
|
|
customKeyFilter?: import("../../composables/filter.js").FilterKeyFunctions | undefined;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
suffix?: string | undefined;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
listProps?: (Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
}) | undefined;
|
|
menuElevation?: string | number | undefined;
|
|
menuProps?: (Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
|
|
itemColor?: string | undefined;
|
|
search?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
"onUpdate:menu"?: ((ue: boolean) => any) | undefined;
|
|
"onUpdate:search"?: ((value: string) => any) | undefined;
|
|
}, {
|
|
isFocused: import("vue").ShallowRef<boolean, boolean>;
|
|
menu: import("vue").WritableComputedRef<boolean, boolean>;
|
|
search: Ref<string | undefined, string | undefined> & {
|
|
readonly externalValue: string | undefined;
|
|
};
|
|
filteredItems: import("vue").ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
select: (item: ListItem, set?: boolean | null) => void;
|
|
} & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
modelValue?: any;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
autofocus: boolean;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
suffix?: string | undefined;
|
|
role?: string | undefined;
|
|
type: string;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
"v-slot:append"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:append-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:clear"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:counter"?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:details"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:label"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:loader"?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "mousedown:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "update:modelValue", val: string) => void);
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
modelValue?: any;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
rounded?: string | number | boolean | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
suffix?: string | undefined;
|
|
role?: string | undefined;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:append-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:clear"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:counter"?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:details"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:label"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:loader"?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
} & {
|
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
}, HTMLInputElement & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
centerAffix: boolean;
|
|
color?: string | undefined;
|
|
glow: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
default?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: string, ...args: any[]) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, "isValid" | "reset" | "resetValidation" | "validate" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style")> & import("vue").ShallowUnwrapRef<{
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VInputSlots>, "$children" | "appendIcon" | "baseColor" | "class" | "color" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "maxWidth" | "minWidth" | "modelValue" | "name" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "onUpdate:modelValue" | "prependIcon" | "theme" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots" | "validateOn" | "validationValue" | "width" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style") | keyof import("vue").VNodeProps>, `$${any}`> & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
details: boolean;
|
|
labelId?: string | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: "update:focused", focused: boolean) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, "controlRef" | "fieldIconColor" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant")> & import("vue").ShallowUnwrapRef<{
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VFieldSlots>, "$children" | "appendInnerIcon" | "baseColor" | "bgColor" | "class" | "color" | "iconColor" | "id" | "label" | "labelId" | "loading" | "modelValue" | "onClick:appendInner" | "onClick:clear" | "onClick:prependInner" | "onUpdate:focused" | "onUpdate:modelValue" | "prependInnerIcon" | "theme" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
} | {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
} | {};
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
'click:control': (e: MouseEvent) => true;
|
|
'mousedown:control': (e: MouseEvent) => true;
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (val: string) => true;
|
|
}, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
counter: (arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
modelValue?: any;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
rounded?: string | number | boolean | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
suffix?: string | undefined;
|
|
role?: string | undefined;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:append-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:clear"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:counter"?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:details"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:label"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:loader"?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
} & {
|
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
}, "ATTRIBUTE_NODE" | "CDATA_SECTION_NODE" | "COMMENT_NODE" | "DOCUMENT_FRAGMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_TYPE_NODE" | "ELEMENT_NODE" | "ENTITY_NODE" | "ENTITY_REFERENCE_NODE" | "NOTATION_NODE" | "PROCESSING_INSTRUCTION_NODE" | "TEXT_NODE" | "_" | "_allExposed" | "_clickOutside" | "_mutate" | "_observe" | "_onResize" | "_onScroll" | "_ripple" | "_touchHandlers" | "_transitionInitialStyles" | "accept" | "accessKey" | "accessKeyLabel" | "active" | "addEventListener" | "after" | "align" | "alt" | "animate" | "append" | "appendChild" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "assignedSlot" | "attachInternals" | "attachShadow" | "attributeStyleMap" | "attributes" | "autocapitalize" | "autocomplete" | "autocorrect" | "autofocus" | "baseURI" | "before" | "blur" | "capture" | "centerAffix" | "checkValidity" | "checkVisibility" | "checked" | "childElementCount" | "childNodes" | "children" | "classList" | "className" | "clearIcon" | "clearable" | "click" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "cloneNode" | "closest" | "compareDocumentPosition" | "computedStyleMap" | "contains" | "contentEditable" | "controlRef" | "currentCSSZoom" | "customElementRegistry" | "dataset" | "defaultChecked" | "defaultValue" | "density" | "dir" | "dirName" | "dirty" | "disabled" | "dispatchEvent" | "draggable" | "enterKeyHint" | "error" | "errorMessages" | "fieldIconColor" | "files" | "firstChild" | "firstElementChild" | "flat" | "focus" | "focused" | "form" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "getAnimations" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "getRootNode" | "glow" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasChildNodes" | "hasPointerCapture" | "height" | "hidden" | "hidePopover" | "hideSpinButtons" | "id" | "indentDetails" | "indeterminate" | "inert" | "innerHTML" | "innerText" | "inputMode" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "insertBefore" | "isConnected" | "isContentEditable" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "isValid" | "labels" | "lang" | "lastChild" | "lastElementChild" | "list" | "localName" | "lookupNamespaceURI" | "lookupPrefix" | "matches" | "max" | "maxErrors" | "maxLength" | "messages" | "min" | "minLength" | "moveBefore" | "multiple" | "name" | "namespaceURI" | "nextElementSibling" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "nonce" | "normalize" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncommand" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "onfullscreenchange" | "onfullscreenerror" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "outerHTML" | "outerText" | "ownerDocument" | "parentElement" | "parentNode" | "part" | "pattern" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "placeholder" | "popover" | "popoverTargetAction" | "popoverTargetElement" | "prefix" | "prepend" | "previousElementSibling" | "previousSibling" | "querySelector" | "querySelectorAll" | "readOnly" | "readonly" | "releasePointerCapture" | "remove" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "removeChild" | "removeEventListener" | "replaceChild" | "replaceChildren" | "replaceWith" | "reportValidity" | "requestFullscreen" | "requestPointerLock" | "required" | "reset" | "resetValidation" | "reverse" | "role" | "rounded" | "rules" | "scroll" | "scrollBy" | "scrollHeight" | "scrollIntoView" | "scrollLeft" | "scrollTo" | "scrollTop" | "scrollWidth" | "select" | "selectionDirection" | "selectionEnd" | "selectionStart" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setCustomValidity" | "setHTMLUnsafe" | "setPointerCapture" | "setRangeText" | "setSelectionRange" | "shadowRoot" | "showPicker" | "showPopover" | "singleLine" | "size" | "slot" | "spellcheck" | "src" | "step" | "stepDown" | "stepUp" | "style" | "tabIndex" | "tagName" | "textContent" | "tile" | "title" | "toggleAttribute" | "togglePopover" | "translate" | "type" | "useMap" | "validate" | "validationMessage" | "validity" | "value" | "valueAsDate" | "valueAsNumber" | "variant" | "webkitEntries" | "webkitMatchesSelector" | "webkitdirectory" | "width" | "willValidate" | "writingSuggestions"> & import("vue").ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
centerAffix: boolean;
|
|
color?: string | undefined;
|
|
glow: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
default?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: string, ...args: any[]) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, "isValid" | "reset" | "resetValidation" | "validate" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style")> & import("vue").ShallowUnwrapRef<{
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VInputSlots>, "$children" | "appendIcon" | "baseColor" | "class" | "color" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "maxWidth" | "minWidth" | "modelValue" | "name" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "onUpdate:modelValue" | "prependIcon" | "theme" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots" | "validateOn" | "validationValue" | "width" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style") | keyof import("vue").VNodeProps>, `$${any}`> & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
details: boolean;
|
|
labelId?: string | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: "update:focused", focused: boolean) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, "controlRef" | "fieldIconColor" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant")> & import("vue").ShallowUnwrapRef<{
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VFieldSlots>, "$children" | "appendInnerIcon" | "baseColor" | "bgColor" | "class" | "color" | "iconColor" | "id" | "label" | "labelId" | "loading" | "modelValue" | "onClick:appendInner" | "onClick:clear" | "onClick:prependInner" | "onUpdate:focused" | "onUpdate:modelValue" | "prependInnerIcon" | "theme" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
} | {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
} | {};
|
|
}> & {} & import("vue").ComponentCustomProperties & {}, "$children" | "appendIcon" | "appendInnerIcon" | "autocomplete" | "baseColor" | "bgColor" | "class" | "color" | "counter" | "counterValue" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "loading" | "maxWidth" | "minWidth" | "modelModifiers" | "modelValue" | "name" | "onClick:append" | "onClick:appendInner" | "onClick:clear" | "onClick:control" | "onClick:prepend" | "onClick:prependInner" | "onMousedown:control" | "onUpdate:focused" | "onUpdate:modelValue" | "placeholder" | "prefix" | "prependIcon" | "prependInnerIcon" | "role" | "suffix" | "theme" | "v-slot:append" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:counter" | "v-slot:default" | "v-slot:details" | "v-slot:label" | "v-slot:loader" | "v-slot:message" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slots" | "validateOn" | "validationValue" | "width" | ("active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
isFocused: import("vue").ShallowRef<boolean, boolean>;
|
|
menu: import("vue").WritableComputedRef<boolean, boolean>;
|
|
search: Ref<string | undefined, string | undefined> & {
|
|
readonly externalValue: string | undefined;
|
|
};
|
|
filteredItems: import("vue").ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
select: (item: ListItem, set?: boolean | null) => void;
|
|
} | (HTMLInputElement & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
centerAffix: boolean;
|
|
color?: string | undefined;
|
|
glow: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
default?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: string, ...args: any[]) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, "isValid" | "reset" | "resetValidation" | "validate" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style")> & import("vue").ShallowUnwrapRef<{
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VInputSlots>, "$children" | "appendIcon" | "baseColor" | "class" | "color" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "maxWidth" | "minWidth" | "modelValue" | "name" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "onUpdate:modelValue" | "prependIcon" | "theme" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots" | "validateOn" | "validationValue" | "width" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style") | keyof import("vue").VNodeProps>, `$${any}`> & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
details: boolean;
|
|
labelId?: string | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: "update:focused", focused: boolean) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, "controlRef" | "fieldIconColor" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant")> & import("vue").ShallowUnwrapRef<{
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VFieldSlots>, "$children" | "appendInnerIcon" | "baseColor" | "bgColor" | "class" | "color" | "iconColor" | "id" | "label" | "labelId" | "loading" | "modelValue" | "onClick:appendInner" | "onClick:clear" | "onClick:prependInner" | "onUpdate:focused" | "onUpdate:modelValue" | "prependInnerIcon" | "theme" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
} | {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
} | {};
|
|
});
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
'update:menu': (ue: boolean) => true;
|
|
'update:search': (value: string) => true;
|
|
}, "$children" | "itemProps" | "itemTitle" | "itemValue" | "items" | "modelValue" | "multiple" | "returnObject" | "update:modelValue" | "v-slot:append" | "v-slot:append-inner" | "v-slot:append-item" | "v-slot:chip" | "v-slot:clear" | "v-slot:details" | "v-slot:divider" | "v-slot:item" | "v-slot:label" | "v-slot:loader" | "v-slot:menu-footer" | "v-slot:menu-header" | "v-slot:message" | "v-slot:no-data" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slot:prepend-item" | "v-slot:selection" | "v-slot:subheader" | "v-slots">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
style: import("vue").StyleValue;
|
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
|
filterMode: import("../../composables/filter.js").FilterMode;
|
|
noFilter: boolean;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
transition: string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
itemChildren: SelectItemKey;
|
|
itemType: SelectItemKey;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
role: string;
|
|
type: string;
|
|
closeText: string;
|
|
openText: string;
|
|
chips: boolean;
|
|
closableChips: boolean;
|
|
eager: boolean;
|
|
hideNoData: boolean;
|
|
hideSelected: boolean;
|
|
menu: boolean;
|
|
menuIcon: IconValue;
|
|
noDataText: string;
|
|
openOnClear: boolean;
|
|
noAutoScroll: boolean;
|
|
}, true, {}, import("vue").SlotsType<Partial<{
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
item: (arg: {
|
|
item: unknown;
|
|
internalItem: ListItem<unknown>;
|
|
index: number;
|
|
props: Record<string, unknown>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
chip: (arg: {
|
|
item: unknown;
|
|
internalItem: ListItem<unknown>;
|
|
index: number;
|
|
props: Record<string, unknown>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
selection: (arg: {
|
|
item: unknown;
|
|
internalItem: ListItem<unknown>;
|
|
index: number;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
subheader: (arg: {
|
|
props: Record<string, unknown>;
|
|
index: number;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
divider: (arg: {
|
|
props: Record<string, unknown>;
|
|
index: number;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-item': () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-item': () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'no-data': () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'menu-header': (arg: {
|
|
search: Ref<string | undefined>;
|
|
filteredItems: ListItem<unknown>[];
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'menu-footer': (arg: {
|
|
search: Ref<string | undefined>;
|
|
filteredItems: ListItem<unknown>[];
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
|
filterMode: import("../../composables/filter.js").FilterMode;
|
|
noFilter: boolean;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
tile: boolean;
|
|
transition: string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
role: string;
|
|
type: string;
|
|
closeText: string;
|
|
openText: string;
|
|
chips: boolean;
|
|
closableChips: boolean;
|
|
eager: boolean;
|
|
hideNoData: boolean;
|
|
hideSelected: boolean;
|
|
menu: boolean;
|
|
menuIcon: IconValue;
|
|
noDataText: string;
|
|
openOnClear: boolean;
|
|
noAutoScroll: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
customFilter?: import("../../types.js").FilterFunction | undefined;
|
|
customKeyFilter?: import("../../composables/filter.js").FilterKeyFunctions | undefined;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
suffix?: string | undefined;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
listProps?: (Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
}) | undefined;
|
|
menuElevation?: string | number | undefined;
|
|
menuProps?: (Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
|
|
itemColor?: string | undefined;
|
|
search?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
"onUpdate:menu"?: ((ue: boolean) => any) | undefined;
|
|
"onUpdate:search"?: ((value: string) => any) | undefined;
|
|
}, {
|
|
isFocused: import("vue").ShallowRef<boolean, boolean>;
|
|
menu: import("vue").WritableComputedRef<boolean, boolean>;
|
|
search: Ref<string | undefined, string | undefined> & {
|
|
readonly externalValue: string | undefined;
|
|
};
|
|
filteredItems: import("vue").ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
select: (item: ListItem, set?: boolean | null) => void;
|
|
} & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
modelValue?: any;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
autofocus: boolean;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
suffix?: string | undefined;
|
|
role?: string | undefined;
|
|
type: string;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
"v-slot:append"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:append-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:clear"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:counter"?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:details"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:label"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:loader"?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "mousedown:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "update:modelValue", val: string) => void);
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
modelValue?: any;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
rounded?: string | number | boolean | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
suffix?: string | undefined;
|
|
role?: string | undefined;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:append-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:clear"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:counter"?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:details"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:label"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:loader"?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
} & {
|
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
}, HTMLInputElement & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
centerAffix: boolean;
|
|
color?: string | undefined;
|
|
glow: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
default?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: string, ...args: any[]) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, "isValid" | "reset" | "resetValidation" | "validate" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style")> & import("vue").ShallowUnwrapRef<{
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VInputSlots>, "$children" | "appendIcon" | "baseColor" | "class" | "color" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "maxWidth" | "minWidth" | "modelValue" | "name" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "onUpdate:modelValue" | "prependIcon" | "theme" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots" | "validateOn" | "validationValue" | "width" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style") | keyof import("vue").VNodeProps>, `$${any}`> & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
details: boolean;
|
|
labelId?: string | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: "update:focused", focused: boolean) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, "controlRef" | "fieldIconColor" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant")> & import("vue").ShallowUnwrapRef<{
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VFieldSlots>, "$children" | "appendInnerIcon" | "baseColor" | "bgColor" | "class" | "color" | "iconColor" | "id" | "label" | "labelId" | "loading" | "modelValue" | "onClick:appendInner" | "onClick:clear" | "onClick:prependInner" | "onUpdate:focused" | "onUpdate:modelValue" | "prependInnerIcon" | "theme" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
} | {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
} | {};
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
'click:control': (e: MouseEvent) => true;
|
|
'mousedown:control': (e: MouseEvent) => true;
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (val: string) => true;
|
|
}, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
counter: (arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
modelValue?: any;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
rounded?: string | number | boolean | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
suffix?: string | undefined;
|
|
role?: string | undefined;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:append-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:clear"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:counter"?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:details"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:label"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:loader"?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
} & {
|
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
}, "ATTRIBUTE_NODE" | "CDATA_SECTION_NODE" | "COMMENT_NODE" | "DOCUMENT_FRAGMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_TYPE_NODE" | "ELEMENT_NODE" | "ENTITY_NODE" | "ENTITY_REFERENCE_NODE" | "NOTATION_NODE" | "PROCESSING_INSTRUCTION_NODE" | "TEXT_NODE" | "_" | "_allExposed" | "_clickOutside" | "_mutate" | "_observe" | "_onResize" | "_onScroll" | "_ripple" | "_touchHandlers" | "_transitionInitialStyles" | "accept" | "accessKey" | "accessKeyLabel" | "active" | "addEventListener" | "after" | "align" | "alt" | "animate" | "append" | "appendChild" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "assignedSlot" | "attachInternals" | "attachShadow" | "attributeStyleMap" | "attributes" | "autocapitalize" | "autocomplete" | "autocorrect" | "autofocus" | "baseURI" | "before" | "blur" | "capture" | "centerAffix" | "checkValidity" | "checkVisibility" | "checked" | "childElementCount" | "childNodes" | "children" | "classList" | "className" | "clearIcon" | "clearable" | "click" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "cloneNode" | "closest" | "compareDocumentPosition" | "computedStyleMap" | "contains" | "contentEditable" | "controlRef" | "currentCSSZoom" | "customElementRegistry" | "dataset" | "defaultChecked" | "defaultValue" | "density" | "dir" | "dirName" | "dirty" | "disabled" | "dispatchEvent" | "draggable" | "enterKeyHint" | "error" | "errorMessages" | "fieldIconColor" | "files" | "firstChild" | "firstElementChild" | "flat" | "focus" | "focused" | "form" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "getAnimations" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "getRootNode" | "glow" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasChildNodes" | "hasPointerCapture" | "height" | "hidden" | "hidePopover" | "hideSpinButtons" | "id" | "indentDetails" | "indeterminate" | "inert" | "innerHTML" | "innerText" | "inputMode" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "insertBefore" | "isConnected" | "isContentEditable" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "isValid" | "labels" | "lang" | "lastChild" | "lastElementChild" | "list" | "localName" | "lookupNamespaceURI" | "lookupPrefix" | "matches" | "max" | "maxErrors" | "maxLength" | "messages" | "min" | "minLength" | "moveBefore" | "multiple" | "name" | "namespaceURI" | "nextElementSibling" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "nonce" | "normalize" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncommand" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "onfullscreenchange" | "onfullscreenerror" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "outerHTML" | "outerText" | "ownerDocument" | "parentElement" | "parentNode" | "part" | "pattern" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "placeholder" | "popover" | "popoverTargetAction" | "popoverTargetElement" | "prefix" | "prepend" | "previousElementSibling" | "previousSibling" | "querySelector" | "querySelectorAll" | "readOnly" | "readonly" | "releasePointerCapture" | "remove" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "removeChild" | "removeEventListener" | "replaceChild" | "replaceChildren" | "replaceWith" | "reportValidity" | "requestFullscreen" | "requestPointerLock" | "required" | "reset" | "resetValidation" | "reverse" | "role" | "rounded" | "rules" | "scroll" | "scrollBy" | "scrollHeight" | "scrollIntoView" | "scrollLeft" | "scrollTo" | "scrollTop" | "scrollWidth" | "select" | "selectionDirection" | "selectionEnd" | "selectionStart" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setCustomValidity" | "setHTMLUnsafe" | "setPointerCapture" | "setRangeText" | "setSelectionRange" | "shadowRoot" | "showPicker" | "showPopover" | "singleLine" | "size" | "slot" | "spellcheck" | "src" | "step" | "stepDown" | "stepUp" | "style" | "tabIndex" | "tagName" | "textContent" | "tile" | "title" | "toggleAttribute" | "togglePopover" | "translate" | "type" | "useMap" | "validate" | "validationMessage" | "validity" | "value" | "valueAsDate" | "valueAsNumber" | "variant" | "webkitEntries" | "webkitMatchesSelector" | "webkitdirectory" | "width" | "willValidate" | "writingSuggestions"> & import("vue").ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
centerAffix: boolean;
|
|
color?: string | undefined;
|
|
glow: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
default?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: string, ...args: any[]) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, "isValid" | "reset" | "resetValidation" | "validate" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style")> & import("vue").ShallowUnwrapRef<{
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VInputSlots>, "$children" | "appendIcon" | "baseColor" | "class" | "color" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "maxWidth" | "minWidth" | "modelValue" | "name" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "onUpdate:modelValue" | "prependIcon" | "theme" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots" | "validateOn" | "validationValue" | "width" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style") | keyof import("vue").VNodeProps>, `$${any}`> & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
details: boolean;
|
|
labelId?: string | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: "update:focused", focused: boolean) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, "controlRef" | "fieldIconColor" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant")> & import("vue").ShallowUnwrapRef<{
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VFieldSlots>, "$children" | "appendInnerIcon" | "baseColor" | "bgColor" | "class" | "color" | "iconColor" | "id" | "label" | "labelId" | "loading" | "modelValue" | "onClick:appendInner" | "onClick:clear" | "onClick:prependInner" | "onUpdate:focused" | "onUpdate:modelValue" | "prependInnerIcon" | "theme" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
} | {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
} | {};
|
|
}> & {} & import("vue").ComponentCustomProperties & {}, "$children" | "appendIcon" | "appendInnerIcon" | "autocomplete" | "baseColor" | "bgColor" | "class" | "color" | "counter" | "counterValue" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "loading" | "maxWidth" | "minWidth" | "modelModifiers" | "modelValue" | "name" | "onClick:append" | "onClick:appendInner" | "onClick:clear" | "onClick:control" | "onClick:prepend" | "onClick:prependInner" | "onMousedown:control" | "onUpdate:focused" | "onUpdate:modelValue" | "placeholder" | "prefix" | "prependIcon" | "prependInnerIcon" | "role" | "suffix" | "theme" | "v-slot:append" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:counter" | "v-slot:default" | "v-slot:details" | "v-slot:label" | "v-slot:loader" | "v-slot:message" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slots" | "validateOn" | "validationValue" | "width" | ("active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
isFocused: import("vue").ShallowRef<boolean, boolean>;
|
|
menu: import("vue").WritableComputedRef<boolean, boolean>;
|
|
search: Ref<string | undefined, string | undefined> & {
|
|
readonly externalValue: string | undefined;
|
|
};
|
|
filteredItems: import("vue").ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
select: (item: ListItem, set?: boolean | null) => void;
|
|
} | (HTMLInputElement & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
centerAffix: boolean;
|
|
color?: string | undefined;
|
|
glow: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
default?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: string, ...args: any[]) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, "isValid" | "reset" | "resetValidation" | "validate" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style")> & import("vue").ShallowUnwrapRef<{
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VInputSlots>, "$children" | "appendIcon" | "baseColor" | "class" | "color" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "maxWidth" | "minWidth" | "modelValue" | "name" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "onUpdate:modelValue" | "prependIcon" | "theme" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots" | "validateOn" | "validationValue" | "width" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style") | keyof import("vue").VNodeProps>, `$${any}`> & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
details: boolean;
|
|
labelId?: string | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: "update:focused", focused: boolean) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, "controlRef" | "fieldIconColor" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant")> & import("vue").ShallowUnwrapRef<{
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VFieldSlots>, "$children" | "appendInnerIcon" | "baseColor" | "bgColor" | "class" | "color" | "iconColor" | "id" | "label" | "labelId" | "loading" | "modelValue" | "onClick:appendInner" | "onClick:clear" | "onClick:prependInner" | "onUpdate:focused" | "onUpdate:modelValue" | "prependInnerIcon" | "theme" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
} | {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
} | {};
|
|
});
|
|
}, {}, {}, {}, {
|
|
style: import("vue").StyleValue;
|
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
|
filterMode: import("../../composables/filter.js").FilterMode;
|
|
noFilter: boolean;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
transition: string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
itemChildren: SelectItemKey;
|
|
itemType: SelectItemKey;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
role: string;
|
|
type: string;
|
|
closeText: string;
|
|
openText: string;
|
|
chips: boolean;
|
|
closableChips: boolean;
|
|
eager: boolean;
|
|
hideNoData: boolean;
|
|
hideSelected: boolean;
|
|
menu: boolean;
|
|
menuIcon: IconValue;
|
|
noDataText: string;
|
|
openOnClear: boolean;
|
|
noAutoScroll: boolean;
|
|
}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
|
filterMode: import("../../composables/filter.js").FilterMode;
|
|
noFilter: boolean;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
tile: boolean;
|
|
transition: string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
role: string;
|
|
type: string;
|
|
closeText: string;
|
|
openText: string;
|
|
chips: boolean;
|
|
closableChips: boolean;
|
|
eager: boolean;
|
|
hideNoData: boolean;
|
|
hideSelected: boolean;
|
|
menu: boolean;
|
|
menuIcon: IconValue;
|
|
noDataText: string;
|
|
openOnClear: boolean;
|
|
noAutoScroll: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
customFilter?: import("../../types.js").FilterFunction | undefined;
|
|
customKeyFilter?: import("../../composables/filter.js").FilterKeyFunctions | undefined;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
suffix?: string | undefined;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
listProps?: (Partial<{
|
|
style: import("vue").StyleValue;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
itemType: SelectItemKey;
|
|
returnObject: boolean;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
border?: string | number | boolean | undefined;
|
|
density: import("../../composables/density.js").Density;
|
|
elevation?: string | number | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
tag: string | import("../../util/index.js").JSXComponent;
|
|
color?: string | undefined;
|
|
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
returnObject: boolean;
|
|
valueComparator?: import("../../util/index.js").ValueComparator | undefined;
|
|
activatable: boolean;
|
|
selectable: boolean;
|
|
activeStrategy?: import("../../composables/nested/nested.js").ActiveStrategyProp | undefined;
|
|
selectStrategy: import("../../composables/nested/nested.js").SelectStrategyProp;
|
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
|
mandatory: boolean;
|
|
itemsRegistration: import("../../composables/nested/nested.js").ItemsRegistrationType;
|
|
baseColor?: string | undefined;
|
|
activeColor?: string | undefined;
|
|
activeClass?: string | undefined;
|
|
bgColor?: string | undefined;
|
|
disabled: boolean;
|
|
filterable: boolean;
|
|
expandIcon?: IconValue | undefined;
|
|
collapseIcon?: IconValue | undefined;
|
|
lines: "one" | "three" | "two" | false;
|
|
slim: boolean;
|
|
prependGap?: string | number | undefined;
|
|
indent?: string | number | undefined;
|
|
nav: boolean;
|
|
navigationStrategy: "focus" | "track";
|
|
navigationIndex?: number | undefined;
|
|
"onClick:activate"?: ((value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => any) | undefined;
|
|
"onUpdate:navigationIndex"?: ((value: number) => any) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatable" | "density" | "disabled" | "filterable" | "itemType" | "itemsRegistration" | "lines" | "mandatory" | "nav" | "navigationStrategy" | "openStrategy" | "returnObject" | "rounded" | "selectStrategy" | "selectable" | "slim" | "style" | "tag" | "tile" | "variant"> & {
|
|
items?: readonly any[] | undefined;
|
|
itemTitle?: SelectItemKey<any>;
|
|
itemValue?: SelectItemKey<any>;
|
|
itemChildren?: SelectItemKey<any>;
|
|
itemProps?: SelectItemKey<any>;
|
|
selected?: unknown;
|
|
activated?: unknown;
|
|
opened?: unknown;
|
|
'onUpdate:selected'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:activated'?: ((value: unknown) => void) | undefined;
|
|
'onUpdate:opened'?: ((value: unknown) => void) | undefined;
|
|
'onClick:open'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
'onClick:select'?: (value: {
|
|
id: unknown;
|
|
value: boolean;
|
|
path: unknown[];
|
|
}) => void;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
item?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
title?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subtitle?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
item?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
divider?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
subheader?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
header?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
"v-slot:divider"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:header"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:item"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
} & {
|
|
index: number;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VList/VListItem.js").ListItemSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subheader"?: false | ((arg: {
|
|
props: {
|
|
[key: string]: any;
|
|
title: string;
|
|
value: any;
|
|
};
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:subtitle"?: false | ((arg: import("../VList/VListItem.js").ListItemSubtitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:title"?: false | ((arg: import("../VList/VListItem.js").ListItemTitleSlot & {
|
|
item: any;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
}) | undefined;
|
|
menuElevation?: string | number | undefined;
|
|
menuProps?: (Partial<{
|
|
style: import("vue").StyleValue;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor | undefined;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick: boolean;
|
|
openOnHover: boolean;
|
|
openOnFocus: boolean;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
disabled: boolean;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
submenu: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
default?: ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
activator?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
location: import("../../util/index.js").Anchor;
|
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
offset?: string | number | number[] | undefined;
|
|
stickToTarget: boolean;
|
|
viewportMargin: string | number;
|
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
height?: string | number | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
transition: string | boolean | {
|
|
component: {
|
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
__isFragment?: never;
|
|
__isTeleport?: never;
|
|
__isSuspense?: never;
|
|
} & import("vue").ComponentOptionsBase<{} & {
|
|
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
} & {
|
|
$children?: {
|
|
default?: (() => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | (() => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
default?: false | (() => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}, import("vue").ExtractPropTypes<{
|
|
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
}>>;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
closeDelay: string | number;
|
|
openDelay: string | number;
|
|
target?: "cursor" | "parent" | Element | [x: number, y: number] | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activator?: "parent" | Element | import("vue").ComponentPublicInstance | (string & {}) | undefined;
|
|
activatorProps: Record<string, any>;
|
|
openOnClick?: boolean | undefined;
|
|
openOnHover: boolean;
|
|
openOnFocus?: boolean | undefined;
|
|
closeOnContentClick: boolean;
|
|
retainFocus: boolean;
|
|
captureFocus: boolean;
|
|
disableInitialFocus: boolean;
|
|
eager: boolean;
|
|
attach?: string | boolean | Element | undefined;
|
|
closeOnBack: boolean;
|
|
contained: boolean;
|
|
contentClass?: any;
|
|
contentProps?: any;
|
|
disabled: boolean;
|
|
opacity?: string | number | undefined;
|
|
noClickAnimation: boolean;
|
|
modelValue: boolean;
|
|
persistent: boolean;
|
|
scrim: string | boolean;
|
|
zIndex: string | number;
|
|
id?: string | undefined;
|
|
submenu: boolean;
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"v-slot:activator"?: false | ((arg: {
|
|
isActive: boolean;
|
|
props: Record<string, any>;
|
|
targetRef: import("../../util/index.js").TemplateRef;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
isActive: Ref<boolean>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "captureFocus" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
|
|
itemColor?: string | undefined;
|
|
search?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
"onUpdate:menu"?: ((ue: boolean) => any) | undefined;
|
|
"onUpdate:search"?: ((value: string) => any) | undefined;
|
|
}, {
|
|
isFocused: import("vue").ShallowRef<boolean, boolean>;
|
|
menu: import("vue").WritableComputedRef<boolean, boolean>;
|
|
search: Ref<string | undefined, string | undefined> & {
|
|
readonly externalValue: string | undefined;
|
|
};
|
|
filteredItems: import("vue").ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
select: (item: ListItem, set?: boolean | null) => void;
|
|
} & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
$children?: {
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
modelValue?: any;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
autofocus: boolean;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
suffix?: string | undefined;
|
|
role?: string | undefined;
|
|
type: string;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
"v-slot:append"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:append-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:clear"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:counter"?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:details"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:label"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:loader"?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "mousedown:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "update:modelValue", val: string) => void);
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
modelValue?: any;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
rounded?: string | number | boolean | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
suffix?: string | undefined;
|
|
role?: string | undefined;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:append-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:clear"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:counter"?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:details"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:label"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:loader"?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
} & {
|
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
}, HTMLInputElement & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
centerAffix: boolean;
|
|
color?: string | undefined;
|
|
glow: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
default?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: string, ...args: any[]) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, "isValid" | "reset" | "resetValidation" | "validate" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style")> & import("vue").ShallowUnwrapRef<{
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VInputSlots>, "$children" | "appendIcon" | "baseColor" | "class" | "color" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "maxWidth" | "minWidth" | "modelValue" | "name" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "onUpdate:modelValue" | "prependIcon" | "theme" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots" | "validateOn" | "validationValue" | "width" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style") | keyof import("vue").VNodeProps>, `$${any}`> & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
details: boolean;
|
|
labelId?: string | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: "update:focused", focused: boolean) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, "controlRef" | "fieldIconColor" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant")> & import("vue").ShallowUnwrapRef<{
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VFieldSlots>, "$children" | "appendInnerIcon" | "baseColor" | "bgColor" | "class" | "color" | "iconColor" | "id" | "label" | "labelId" | "loading" | "modelValue" | "onClick:appendInner" | "onClick:clear" | "onClick:prependInner" | "onUpdate:focused" | "onUpdate:modelValue" | "prependInnerIcon" | "theme" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
} | {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
} | {};
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
'click:control': (e: MouseEvent) => true;
|
|
'mousedown:control': (e: MouseEvent) => true;
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (val: string) => true;
|
|
}, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
counter: (arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
tile: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
type: string;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
modelValue?: any;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
rounded?: string | number | boolean | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
loading?: string | boolean | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
autocomplete?: string | undefined;
|
|
counter?: string | number | boolean | undefined;
|
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
prefix?: string | undefined;
|
|
placeholder?: string | undefined;
|
|
suffix?: string | undefined;
|
|
role?: string | undefined;
|
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
} & {
|
|
$children?: {
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | {
|
|
$stable?: boolean;
|
|
} | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | import("vue").VNodeChild;
|
|
'v-slots'?: {
|
|
prepend?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
append?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
details?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
message?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
clear?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
'prepend-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
'append-inner'?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
label?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
loader?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
default?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
counter?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:append"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:append-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:clear"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:counter"?: false | ((arg: import("../VCounter/VCounter.js").VCounterSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:default"?: false | ((arg: {
|
|
id: Readonly<Ref<string>>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:details"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:label"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:loader"?: false | ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
} & {
|
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
}, "ATTRIBUTE_NODE" | "CDATA_SECTION_NODE" | "COMMENT_NODE" | "DOCUMENT_FRAGMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_TYPE_NODE" | "ELEMENT_NODE" | "ENTITY_NODE" | "ENTITY_REFERENCE_NODE" | "NOTATION_NODE" | "PROCESSING_INSTRUCTION_NODE" | "TEXT_NODE" | "_" | "_allExposed" | "_clickOutside" | "_mutate" | "_observe" | "_onResize" | "_onScroll" | "_ripple" | "_touchHandlers" | "_transitionInitialStyles" | "accept" | "accessKey" | "accessKeyLabel" | "active" | "addEventListener" | "after" | "align" | "alt" | "animate" | "append" | "appendChild" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "assignedSlot" | "attachInternals" | "attachShadow" | "attributeStyleMap" | "attributes" | "autocapitalize" | "autocomplete" | "autocorrect" | "autofocus" | "baseURI" | "before" | "blur" | "capture" | "centerAffix" | "checkValidity" | "checkVisibility" | "checked" | "childElementCount" | "childNodes" | "children" | "classList" | "className" | "clearIcon" | "clearable" | "click" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "cloneNode" | "closest" | "compareDocumentPosition" | "computedStyleMap" | "contains" | "contentEditable" | "controlRef" | "currentCSSZoom" | "customElementRegistry" | "dataset" | "defaultChecked" | "defaultValue" | "density" | "dir" | "dirName" | "dirty" | "disabled" | "dispatchEvent" | "draggable" | "enterKeyHint" | "error" | "errorMessages" | "fieldIconColor" | "files" | "firstChild" | "firstElementChild" | "flat" | "focus" | "focused" | "form" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "getAnimations" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "getRootNode" | "glow" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasChildNodes" | "hasPointerCapture" | "height" | "hidden" | "hidePopover" | "hideSpinButtons" | "id" | "indentDetails" | "indeterminate" | "inert" | "innerHTML" | "innerText" | "inputMode" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "insertBefore" | "isConnected" | "isContentEditable" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "isValid" | "labels" | "lang" | "lastChild" | "lastElementChild" | "list" | "localName" | "lookupNamespaceURI" | "lookupPrefix" | "matches" | "max" | "maxErrors" | "maxLength" | "messages" | "min" | "minLength" | "moveBefore" | "multiple" | "name" | "namespaceURI" | "nextElementSibling" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "nonce" | "normalize" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncommand" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "onfullscreenchange" | "onfullscreenerror" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "outerHTML" | "outerText" | "ownerDocument" | "parentElement" | "parentNode" | "part" | "pattern" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "placeholder" | "popover" | "popoverTargetAction" | "popoverTargetElement" | "prefix" | "prepend" | "previousElementSibling" | "previousSibling" | "querySelector" | "querySelectorAll" | "readOnly" | "readonly" | "releasePointerCapture" | "remove" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "removeChild" | "removeEventListener" | "replaceChild" | "replaceChildren" | "replaceWith" | "reportValidity" | "requestFullscreen" | "requestPointerLock" | "required" | "reset" | "resetValidation" | "reverse" | "role" | "rounded" | "rules" | "scroll" | "scrollBy" | "scrollHeight" | "scrollIntoView" | "scrollLeft" | "scrollTo" | "scrollTop" | "scrollWidth" | "select" | "selectionDirection" | "selectionEnd" | "selectionStart" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setCustomValidity" | "setHTMLUnsafe" | "setPointerCapture" | "setRangeText" | "setSelectionRange" | "shadowRoot" | "showPicker" | "showPopover" | "singleLine" | "size" | "slot" | "spellcheck" | "src" | "step" | "stepDown" | "stepUp" | "style" | "tabIndex" | "tagName" | "textContent" | "tile" | "title" | "toggleAttribute" | "togglePopover" | "translate" | "type" | "useMap" | "validate" | "validationMessage" | "validity" | "value" | "valueAsDate" | "valueAsNumber" | "variant" | "webkitEntries" | "webkitMatchesSelector" | "webkitdirectory" | "width" | "willValidate" | "writingSuggestions"> & import("vue").ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
centerAffix: boolean;
|
|
color?: string | undefined;
|
|
glow: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
default?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: string, ...args: any[]) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, "isValid" | "reset" | "resetValidation" | "validate" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style")> & import("vue").ShallowUnwrapRef<{
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VInputSlots>, "$children" | "appendIcon" | "baseColor" | "class" | "color" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "maxWidth" | "minWidth" | "modelValue" | "name" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "onUpdate:modelValue" | "prependIcon" | "theme" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots" | "validateOn" | "validationValue" | "width" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style") | keyof import("vue").VNodeProps>, `$${any}`> & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
details: boolean;
|
|
labelId?: string | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: "update:focused", focused: boolean) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, "controlRef" | "fieldIconColor" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant")> & import("vue").ShallowUnwrapRef<{
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VFieldSlots>, "$children" | "appendInnerIcon" | "baseColor" | "bgColor" | "class" | "color" | "iconColor" | "id" | "label" | "labelId" | "loading" | "modelValue" | "onClick:appendInner" | "onClick:clear" | "onClick:prependInner" | "onUpdate:focused" | "onUpdate:modelValue" | "prependInnerIcon" | "theme" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
} | {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
} | {};
|
|
}> & {} & import("vue").ComponentCustomProperties & {}, "$children" | "appendIcon" | "appendInnerIcon" | "autocomplete" | "baseColor" | "bgColor" | "class" | "color" | "counter" | "counterValue" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "loading" | "maxWidth" | "minWidth" | "modelModifiers" | "modelValue" | "name" | "onClick:append" | "onClick:appendInner" | "onClick:clear" | "onClick:control" | "onClick:prepend" | "onClick:prependInner" | "onMousedown:control" | "onUpdate:focused" | "onUpdate:modelValue" | "placeholder" | "prefix" | "prependIcon" | "prependInnerIcon" | "role" | "suffix" | "theme" | "v-slot:append" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:counter" | "v-slot:default" | "v-slot:details" | "v-slot:label" | "v-slot:loader" | "v-slot:message" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slots" | "validateOn" | "validationValue" | "width" | ("active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
isFocused: import("vue").ShallowRef<boolean, boolean>;
|
|
menu: import("vue").WritableComputedRef<boolean, boolean>;
|
|
search: Ref<string | undefined, string | undefined> & {
|
|
readonly externalValue: string | undefined;
|
|
};
|
|
filteredItems: import("vue").ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
select: (item: ListItem, set?: boolean | null) => void;
|
|
} | (HTMLInputElement & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
density: import("../../composables/density.js").Density;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
centerAffix: boolean;
|
|
color?: string | undefined;
|
|
glow: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hideSpinButtons: boolean;
|
|
hint?: string | undefined;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
default?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
prepend?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
append?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
details?: ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
message?: ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: string, ...args: any[]) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
default: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
disabled: boolean | null;
|
|
error: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
centerAffix: boolean;
|
|
glow: boolean;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
direction: "horizontal" | "vertical";
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
name?: string | undefined;
|
|
label?: string | undefined;
|
|
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
validationValue?: any;
|
|
maxWidth?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
id?: string | undefined;
|
|
appendIcon?: IconValue | undefined;
|
|
baseColor?: string | undefined;
|
|
color?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
prependIcon?: IconValue | undefined;
|
|
hideDetails?: "auto" | boolean | undefined;
|
|
hint?: string | undefined;
|
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
} & {}, "isValid" | "reset" | "resetValidation" | "validate" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style")> & import("vue").ShallowUnwrapRef<{
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VInputSlots>, "$children" | "appendIcon" | "baseColor" | "class" | "color" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "maxWidth" | "minWidth" | "modelValue" | "name" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "onUpdate:modelValue" | "prependIcon" | "theme" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots" | "validateOn" | "validationValue" | "width" | ("centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style") | keyof import("vue").VNodeProps>, `$${any}`> & Omit<Omit<{
|
|
$: import("vue").ComponentInternalInstance;
|
|
$data: {};
|
|
$props: Partial<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
tile: boolean;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
persistentClear: boolean;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
details: boolean;
|
|
labelId?: string | undefined;
|
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
$attrs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$refs: {
|
|
[x: string]: unknown;
|
|
};
|
|
$slots: Readonly<{
|
|
clear?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'prepend-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
'append-inner'?: ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
label?: ((arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
loader?: ((arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
default?: ((arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[]) | undefined;
|
|
}>;
|
|
$root: import("vue").ComponentPublicInstance | null;
|
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
$host: Element | null;
|
|
$emit: (event: "update:focused", focused: boolean) => void;
|
|
$el: any;
|
|
$options: import("vue").ComponentOptionsBase<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
default: (arg: import("../VField/VField.js").VFieldSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
beforeCreate?: (() => void)[] | (() => void);
|
|
created?: (() => void)[] | (() => void);
|
|
beforeMount?: (() => void)[] | (() => void);
|
|
mounted?: (() => void)[] | (() => void);
|
|
beforeUpdate?: (() => void)[] | (() => void);
|
|
updated?: (() => void)[] | (() => void);
|
|
activated?: (() => void)[] | (() => void);
|
|
deactivated?: (() => void)[] | (() => void);
|
|
beforeDestroy?: (() => void)[] | (() => void);
|
|
beforeUnmount?: (() => void)[] | (() => void);
|
|
destroyed?: (() => void)[] | (() => void);
|
|
unmounted?: (() => void)[] | (() => void);
|
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void)[] | ((e: import("vue").DebuggerEvent) => void);
|
|
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void);
|
|
};
|
|
$forceUpdate: () => void;
|
|
$nextTick: typeof nextTick;
|
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
} & Readonly<{
|
|
style: import("vue").StyleValue;
|
|
focused: boolean;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
}> & Omit<{
|
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
focused: boolean;
|
|
tile: boolean;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
dirty: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
details: boolean;
|
|
} & {
|
|
theme?: string | undefined;
|
|
class?: any;
|
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
loading?: string | boolean | undefined;
|
|
appendInnerIcon?: IconValue | undefined;
|
|
bgColor?: string | undefined;
|
|
centerAffix?: boolean | undefined;
|
|
color?: string | undefined;
|
|
baseColor?: string | undefined;
|
|
iconColor?: string | boolean | undefined;
|
|
label?: string | undefined;
|
|
prependInnerIcon?: IconValue | undefined;
|
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
id?: string | undefined;
|
|
labelId?: string | undefined;
|
|
} & {
|
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
}, "controlRef" | "fieldIconColor" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant")> & import("vue").ShallowUnwrapRef<{
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
|
modelValue?: unknown;
|
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
}, VFieldSlots>, "$children" | "appendInnerIcon" | "baseColor" | "bgColor" | "class" | "color" | "iconColor" | "id" | "label" | "labelId" | "loading" | "modelValue" | "onClick:appendInner" | "onClick:clear" | "onClick:prependInner" | "onUpdate:focused" | "onUpdate:modelValue" | "prependInnerIcon" | "theme" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots" | ("active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
_allExposed: {
|
|
reset: () => Promise<void>;
|
|
resetValidation: () => Promise<void>;
|
|
validate: (silent?: boolean) => Promise<string[]>;
|
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
errorMessages: import("vue").ComputedRef<string[]>;
|
|
} | {
|
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
} | {};
|
|
});
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
|
'update:focused': (focused: boolean) => true;
|
|
'update:modelValue': (value: any) => true;
|
|
'update:menu': (ue: boolean) => true;
|
|
'update:search': (value: string) => true;
|
|
}, "$children" | "itemProps" | "itemTitle" | "itemValue" | "items" | "modelValue" | "multiple" | "returnObject" | "update:modelValue" | "v-slot:append" | "v-slot:append-inner" | "v-slot:append-item" | "v-slot:chip" | "v-slot:clear" | "v-slot:details" | "v-slot:divider" | "v-slot:item" | "v-slot:label" | "v-slot:loader" | "v-slot:menu-footer" | "v-slot:menu-header" | "v-slot:message" | "v-slot:no-data" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slot:prepend-item" | "v-slot:selection" | "v-slot:subheader" | "v-slots">, string, {
|
|
style: import("vue").StyleValue;
|
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
|
filterMode: import("../../composables/filter.js").FilterMode;
|
|
noFilter: boolean;
|
|
focused: boolean;
|
|
errorMessages: string | readonly string[] | null;
|
|
maxErrors: string | number;
|
|
readonly: boolean | null;
|
|
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
density: import("../../composables/density.js").Density;
|
|
rounded: string | number | boolean;
|
|
tile: boolean;
|
|
transition: string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null;
|
|
hideSpinButtons: boolean;
|
|
indentDetails: boolean;
|
|
persistentHint: boolean;
|
|
messages: string | readonly string[];
|
|
itemChildren: SelectItemKey;
|
|
itemType: SelectItemKey;
|
|
clearable: boolean;
|
|
clearIcon: IconValue;
|
|
active: boolean;
|
|
centerAffix: boolean;
|
|
disabled: boolean;
|
|
glow: boolean;
|
|
error: boolean;
|
|
flat: boolean;
|
|
persistentClear: boolean;
|
|
reverse: boolean;
|
|
singleLine: boolean;
|
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
autofocus: boolean;
|
|
persistentPlaceholder: boolean;
|
|
persistentCounter: boolean;
|
|
role: string;
|
|
type: string;
|
|
closeText: string;
|
|
openText: string;
|
|
chips: boolean;
|
|
closableChips: boolean;
|
|
eager: boolean;
|
|
hideNoData: boolean;
|
|
hideSelected: boolean;
|
|
menu: boolean;
|
|
menuIcon: IconValue;
|
|
noDataText: string;
|
|
openOnClear: boolean;
|
|
noAutoScroll: boolean;
|
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
prepend: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
details: (arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-inner': (arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
label: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
label: string | undefined;
|
|
props: Record<string, any>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
loader: (arg: import("../../composables/loader.js").LoaderSlotProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
item: (arg: {
|
|
item: unknown;
|
|
internalItem: ListItem<unknown>;
|
|
index: number;
|
|
props: Record<string, unknown>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
chip: (arg: {
|
|
item: unknown;
|
|
internalItem: ListItem<unknown>;
|
|
index: number;
|
|
props: Record<string, unknown>;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
selection: (arg: {
|
|
item: unknown;
|
|
internalItem: ListItem<unknown>;
|
|
index: number;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
subheader: (arg: {
|
|
props: Record<string, unknown>;
|
|
index: number;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
divider: (arg: {
|
|
props: Record<string, unknown>;
|
|
index: number;
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'prepend-item': () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'append-item': () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'no-data': () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'menu-header': (arg: {
|
|
search: Ref<string | undefined>;
|
|
filteredItems: ListItem<unknown>[];
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
'menu-footer': (arg: {
|
|
search: Ref<string | undefined>;
|
|
filteredItems: ListItem<unknown>[];
|
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("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;
|
|
itemTitle?: SelectItemKey<ItemType<T>>;
|
|
itemValue?: SelectItemKey<ItemType<T>>;
|
|
itemProps?: SelectItemKey<ItemType<T>>;
|
|
returnObject?: ReturnObject;
|
|
multiple?: Multiple;
|
|
modelValue?: V | null;
|
|
'onUpdate:modelValue'?: (value: V) => void;
|
|
}, slots: Omit<VInputSlots & VFieldSlots, 'default'> & {
|
|
item: {
|
|
item: Item;
|
|
internalItem: ListItem<Item>;
|
|
index: number;
|
|
props: Record<string, unknown>;
|
|
};
|
|
chip: {
|
|
item: Item;
|
|
internalItem: ListItem<Item>;
|
|
index: number;
|
|
props: Record<string, unknown>;
|
|
};
|
|
selection: {
|
|
item: Item;
|
|
internalItem: ListItem<Item>;
|
|
index: number;
|
|
};
|
|
subheader: {
|
|
props: Record<string, unknown>;
|
|
index: number;
|
|
};
|
|
divider: {
|
|
props: Record<string, unknown>;
|
|
index: number;
|
|
};
|
|
'prepend-item': never;
|
|
'append-item': never;
|
|
'no-data': never;
|
|
'menu-header': {
|
|
search: Ref<string | undefined>;
|
|
filteredItems: ListItem<Item>[];
|
|
};
|
|
'menu-footer': {
|
|
search: Ref<string | undefined>;
|
|
filteredItems: ListItem<Item>[];
|
|
};
|
|
}) => GenericProps<typeof props, typeof slots>) & import("../../util/index.js").FilterPropsOptions<{
|
|
theme: StringConstructor;
|
|
class: PropType<import("../../composables/component.js").ClassValue>;
|
|
style: {
|
|
type: PropType<import("vue").StyleValue>;
|
|
default: null;
|
|
};
|
|
customFilter: PropType<import("../../types.js").FilterFunction>;
|
|
customKeyFilter: PropType<import("../../composables/filter.js").FilterKeyFunctions>;
|
|
filterKeys: {
|
|
type: PropType<import("../../composables/filter.js").FilterKeys>;
|
|
default: NonNullable<import("../../composables/filter.js").FilterKeys>;
|
|
};
|
|
filterMode: {
|
|
type: PropType<import("../../composables/filter.js").FilterMode>;
|
|
default: string;
|
|
};
|
|
noFilter: BooleanConstructor;
|
|
focused: BooleanConstructor;
|
|
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
errorMessages: {
|
|
type: PropType<string | readonly string[] | null>;
|
|
default: () => never[];
|
|
};
|
|
maxErrors: {
|
|
type: (NumberConstructor | StringConstructor)[];
|
|
default: number;
|
|
};
|
|
name: StringConstructor;
|
|
readonly: {
|
|
type: PropType<boolean | null>;
|
|
default: null;
|
|
};
|
|
rules: {
|
|
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
|
default: () => never[];
|
|
};
|
|
modelValue: {
|
|
type: PropType<any>;
|
|
default: any;
|
|
};
|
|
validateOn: PropType<import("../../composables/validation.js").ValidationProps['validateOn']>;
|
|
density: {
|
|
type: PropType<import("../../composables/density.js").Density>;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
};
|
|
rounded: {
|
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
default: undefined;
|
|
};
|
|
tile: BooleanConstructor;
|
|
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
width: (NumberConstructor | StringConstructor)[];
|
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
transition: {
|
|
type: PropType<string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null>;
|
|
default: {
|
|
component: Component;
|
|
} | NonNullable<string | boolean | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null>;
|
|
};
|
|
id: StringConstructor;
|
|
appendIcon: PropType<IconValue>;
|
|
prependIcon: PropType<IconValue>;
|
|
hideDetails: PropType<boolean | 'auto'>;
|
|
hideSpinButtons: BooleanConstructor;
|
|
hint: StringConstructor;
|
|
indentDetails: {
|
|
type: BooleanConstructor;
|
|
default: null;
|
|
};
|
|
persistentHint: BooleanConstructor;
|
|
messages: {
|
|
type: PropType<string | readonly string[]>;
|
|
default: () => never[];
|
|
};
|
|
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
items: {
|
|
type: PropType<import("../../composables/list-items.js").ItemProps['items']>;
|
|
default: () => never[];
|
|
};
|
|
itemTitle: {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
};
|
|
itemValue: {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
};
|
|
itemChildren: Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<SelectItemKey>;
|
|
default: NonNullable<SelectItemKey>;
|
|
};
|
|
itemProps: {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
};
|
|
itemType: {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
};
|
|
returnObject: BooleanConstructor;
|
|
valueComparator: PropType<import("../../util/index.js").ValueComparator>;
|
|
appendInnerIcon: PropType<IconValue>;
|
|
bgColor: StringConstructor;
|
|
clearable: BooleanConstructor;
|
|
clearIcon: {
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
};
|
|
active: BooleanConstructor;
|
|
centerAffix: {
|
|
type: BooleanConstructor;
|
|
default: undefined;
|
|
};
|
|
color: StringConstructor;
|
|
baseColor: StringConstructor;
|
|
disabled: {
|
|
type: BooleanConstructor;
|
|
default: null;
|
|
};
|
|
glow: BooleanConstructor;
|
|
error: BooleanConstructor;
|
|
flat: BooleanConstructor;
|
|
iconColor: (BooleanConstructor | StringConstructor)[];
|
|
label: StringConstructor;
|
|
persistentClear: BooleanConstructor;
|
|
prependInnerIcon: PropType<IconValue>;
|
|
reverse: BooleanConstructor;
|
|
singleLine: BooleanConstructor;
|
|
variant: {
|
|
type: PropType<"filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined">;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
};
|
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
autocomplete: PropType<'suppress' | string>;
|
|
autofocus: BooleanConstructor;
|
|
counter: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
counterValue: PropType<number | ((value: any) => number)>;
|
|
prefix: StringConstructor;
|
|
placeholder: StringConstructor;
|
|
persistentPlaceholder: BooleanConstructor;
|
|
persistentCounter: BooleanConstructor;
|
|
suffix: StringConstructor;
|
|
role: {
|
|
type: PropType<string>;
|
|
default: string;
|
|
};
|
|
type: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
modelModifiers: PropType<Record<string, boolean>>;
|
|
closeText: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
openText: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
chips: BooleanConstructor;
|
|
closableChips: BooleanConstructor;
|
|
eager: BooleanConstructor;
|
|
hideNoData: BooleanConstructor;
|
|
hideSelected: BooleanConstructor;
|
|
listProps: {
|
|
type: PropType<VList['$props']>;
|
|
};
|
|
menu: BooleanConstructor;
|
|
menuElevation: (NumberConstructor | StringConstructor)[];
|
|
menuIcon: {
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
};
|
|
menuProps: {
|
|
type: PropType<VMenu['$props']>;
|
|
};
|
|
multiple: BooleanConstructor;
|
|
noDataText: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
openOnClear: BooleanConstructor;
|
|
itemColor: StringConstructor;
|
|
noAutoScroll: BooleanConstructor;
|
|
search: StringConstructor;
|
|
}, import("vue").ExtractPropTypes<{
|
|
theme: StringConstructor;
|
|
class: PropType<import("../../composables/component.js").ClassValue>;
|
|
style: {
|
|
type: PropType<import("vue").StyleValue>;
|
|
default: null;
|
|
};
|
|
customFilter: PropType<import("../../types.js").FilterFunction>;
|
|
customKeyFilter: PropType<import("../../composables/filter.js").FilterKeyFunctions>;
|
|
filterKeys: {
|
|
type: PropType<import("../../composables/filter.js").FilterKeys>;
|
|
default: NonNullable<import("../../composables/filter.js").FilterKeys>;
|
|
};
|
|
filterMode: {
|
|
type: PropType<import("../../composables/filter.js").FilterMode>;
|
|
default: string;
|
|
};
|
|
noFilter: BooleanConstructor;
|
|
focused: BooleanConstructor;
|
|
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
errorMessages: {
|
|
type: PropType<string | readonly string[] | null>;
|
|
default: () => never[];
|
|
};
|
|
maxErrors: {
|
|
type: (NumberConstructor | StringConstructor)[];
|
|
default: number;
|
|
};
|
|
name: StringConstructor;
|
|
readonly: {
|
|
type: PropType<boolean | null>;
|
|
default: null;
|
|
};
|
|
rules: {
|
|
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
|
default: () => never[];
|
|
};
|
|
modelValue: {
|
|
type: PropType<any>;
|
|
default: any;
|
|
};
|
|
validateOn: PropType<import("../../composables/validation.js").ValidationProps['validateOn']>;
|
|
density: {
|
|
type: PropType<import("../../composables/density.js").Density>;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
};
|
|
rounded: {
|
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
default: undefined;
|
|
};
|
|
tile: BooleanConstructor;
|
|
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
width: (NumberConstructor | StringConstructor)[];
|
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
transition: {
|
|
type: PropType<string | boolean | {
|
|
component: Component;
|
|
} | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null>;
|
|
default: {
|
|
component: Component;
|
|
} | NonNullable<string | boolean | (import("vue").TransitionProps & {
|
|
component?: Component;
|
|
}) | null>;
|
|
};
|
|
id: StringConstructor;
|
|
appendIcon: PropType<IconValue>;
|
|
prependIcon: PropType<IconValue>;
|
|
hideDetails: PropType<boolean | 'auto'>;
|
|
hideSpinButtons: BooleanConstructor;
|
|
hint: StringConstructor;
|
|
indentDetails: {
|
|
type: BooleanConstructor;
|
|
default: null;
|
|
};
|
|
persistentHint: BooleanConstructor;
|
|
messages: {
|
|
type: PropType<string | readonly string[]>;
|
|
default: () => never[];
|
|
};
|
|
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
items: {
|
|
type: PropType<import("../../composables/list-items.js").ItemProps['items']>;
|
|
default: () => never[];
|
|
};
|
|
itemTitle: {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
};
|
|
itemValue: {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
};
|
|
itemChildren: Omit<{
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
}, "default" | "type"> & {
|
|
type: PropType<SelectItemKey>;
|
|
default: NonNullable<SelectItemKey>;
|
|
};
|
|
itemProps: {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
};
|
|
itemType: {
|
|
type: PropType<SelectItemKey>;
|
|
default: string;
|
|
};
|
|
returnObject: BooleanConstructor;
|
|
valueComparator: PropType<import("../../util/index.js").ValueComparator>;
|
|
appendInnerIcon: PropType<IconValue>;
|
|
bgColor: StringConstructor;
|
|
clearable: BooleanConstructor;
|
|
clearIcon: {
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
};
|
|
active: BooleanConstructor;
|
|
centerAffix: {
|
|
type: BooleanConstructor;
|
|
default: undefined;
|
|
};
|
|
color: StringConstructor;
|
|
baseColor: StringConstructor;
|
|
disabled: {
|
|
type: BooleanConstructor;
|
|
default: null;
|
|
};
|
|
glow: BooleanConstructor;
|
|
error: BooleanConstructor;
|
|
flat: BooleanConstructor;
|
|
iconColor: (BooleanConstructor | StringConstructor)[];
|
|
label: StringConstructor;
|
|
persistentClear: BooleanConstructor;
|
|
prependInnerIcon: PropType<IconValue>;
|
|
reverse: BooleanConstructor;
|
|
singleLine: BooleanConstructor;
|
|
variant: {
|
|
type: PropType<"filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined">;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
};
|
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
autocomplete: PropType<'suppress' | string>;
|
|
autofocus: BooleanConstructor;
|
|
counter: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
counterValue: PropType<number | ((value: any) => number)>;
|
|
prefix: StringConstructor;
|
|
placeholder: StringConstructor;
|
|
persistentPlaceholder: BooleanConstructor;
|
|
persistentCounter: BooleanConstructor;
|
|
suffix: StringConstructor;
|
|
role: {
|
|
type: PropType<string>;
|
|
default: string;
|
|
};
|
|
type: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
modelModifiers: PropType<Record<string, boolean>>;
|
|
closeText: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
openText: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
chips: BooleanConstructor;
|
|
closableChips: BooleanConstructor;
|
|
eager: BooleanConstructor;
|
|
hideNoData: BooleanConstructor;
|
|
hideSelected: BooleanConstructor;
|
|
listProps: {
|
|
type: PropType<VList['$props']>;
|
|
};
|
|
menu: BooleanConstructor;
|
|
menuElevation: (NumberConstructor | StringConstructor)[];
|
|
menuIcon: {
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
};
|
|
menuProps: {
|
|
type: PropType<VMenu['$props']>;
|
|
};
|
|
multiple: BooleanConstructor;
|
|
noDataText: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
openOnClear: BooleanConstructor;
|
|
itemColor: StringConstructor;
|
|
noAutoScroll: BooleanConstructor;
|
|
search: StringConstructor;
|
|
}>>;
|
|
export type VSelect = InstanceType<typeof VSelect>;
|
|
|