633 lines
24 KiB
TypeScript
633 lines
24 KiB
TypeScript
import * as vue from 'vue';
|
|
import { ComponentPropsOptions, ExtractPropTypes, JSXComponent, PropType } from 'vue';
|
|
|
|
type Density = null | 'default' | 'comfortable' | 'compact';
|
|
|
|
declare const block: readonly ["top", "bottom"];
|
|
declare const inline: readonly ["start", "end", "left", "right"];
|
|
type Tblock = typeof block[number];
|
|
type Tinline = typeof inline[number];
|
|
type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
|
|
|
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
|
}
|
|
|
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
|
declare const IconValue: PropType<IconValue>;
|
|
|
|
declare const allowedTypes: readonly ["success", "info", "warning", "error"];
|
|
type ContextualType = typeof allowedTypes[number];
|
|
declare const VAlert: {
|
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
icon: false | IconValue;
|
|
prominent: boolean;
|
|
density: Density;
|
|
modelValue: boolean;
|
|
closable: boolean;
|
|
closeIcon: IconValue;
|
|
closeLabel: string;
|
|
} & {
|
|
type?: "error" | "success" | "warning" | "info" | undefined;
|
|
location?: Anchor | undefined;
|
|
height?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
border?: boolean | "end" | "start" | "top" | "bottom" | undefined;
|
|
borderColor?: string | undefined;
|
|
color?: string | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
|
|
title?: string | undefined;
|
|
text?: string | undefined;
|
|
class?: any;
|
|
elevation?: string | number | undefined;
|
|
theme?: string | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
} & {
|
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
default?: (() => vue.VNodeChild) | undefined;
|
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
title?: (() => vue.VNodeChild) | undefined;
|
|
text?: (() => vue.VNodeChild) | undefined;
|
|
append?: (() => vue.VNodeChild) | undefined;
|
|
close?: ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
};
|
|
'v-slots'?: {
|
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
prepend?: false | (() => vue.VNodeChild) | undefined;
|
|
title?: false | (() => vue.VNodeChild) | undefined;
|
|
text?: false | (() => vue.VNodeChild) | undefined;
|
|
append?: false | (() => vue.VNodeChild) | undefined;
|
|
close?: false | ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:close"?: false | ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
} & {
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"onClick:close"?: ((e: MouseEvent) => any) | undefined;
|
|
}, () => false | JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
'click:close': (e: MouseEvent) => true;
|
|
'update:modelValue': (value: boolean) => true;
|
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
icon: false | IconValue;
|
|
prominent: boolean;
|
|
density: Density;
|
|
modelValue: boolean;
|
|
closable: boolean;
|
|
closeIcon: IconValue;
|
|
closeLabel: string;
|
|
} & {
|
|
type?: "error" | "success" | "warning" | "info" | undefined;
|
|
location?: Anchor | undefined;
|
|
height?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
border?: boolean | "end" | "start" | "top" | "bottom" | undefined;
|
|
borderColor?: string | undefined;
|
|
color?: string | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
|
|
title?: string | undefined;
|
|
text?: string | undefined;
|
|
class?: any;
|
|
elevation?: string | number | undefined;
|
|
theme?: string | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
} & {
|
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
default?: (() => vue.VNodeChild) | undefined;
|
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
title?: (() => vue.VNodeChild) | undefined;
|
|
text?: (() => vue.VNodeChild) | undefined;
|
|
append?: (() => vue.VNodeChild) | undefined;
|
|
close?: ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
};
|
|
'v-slots'?: {
|
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
prepend?: false | (() => vue.VNodeChild) | undefined;
|
|
title?: false | (() => vue.VNodeChild) | undefined;
|
|
text?: false | (() => vue.VNodeChild) | undefined;
|
|
append?: false | (() => vue.VNodeChild) | undefined;
|
|
close?: false | ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:close"?: false | ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
} & {
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"onClick:close"?: ((e: MouseEvent) => any) | undefined;
|
|
}, {
|
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
icon: false | IconValue;
|
|
rounded: string | number | boolean;
|
|
prominent: boolean;
|
|
density: Density;
|
|
modelValue: boolean;
|
|
closable: boolean;
|
|
closeIcon: IconValue;
|
|
closeLabel: string;
|
|
}, true, {}, vue.SlotsType<Partial<{
|
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
title: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
text: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
close: (arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {
|
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
icon: false | IconValue;
|
|
prominent: boolean;
|
|
density: Density;
|
|
modelValue: boolean;
|
|
closable: boolean;
|
|
closeIcon: IconValue;
|
|
closeLabel: string;
|
|
} & {
|
|
type?: "error" | "success" | "warning" | "info" | undefined;
|
|
location?: Anchor | undefined;
|
|
height?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
border?: boolean | "end" | "start" | "top" | "bottom" | undefined;
|
|
borderColor?: string | undefined;
|
|
color?: string | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
|
|
title?: string | undefined;
|
|
text?: string | undefined;
|
|
class?: any;
|
|
elevation?: string | number | undefined;
|
|
theme?: string | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
} & {
|
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
default?: (() => vue.VNodeChild) | undefined;
|
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
title?: (() => vue.VNodeChild) | undefined;
|
|
text?: (() => vue.VNodeChild) | undefined;
|
|
append?: (() => vue.VNodeChild) | undefined;
|
|
close?: ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
};
|
|
'v-slots'?: {
|
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
prepend?: false | (() => vue.VNodeChild) | undefined;
|
|
title?: false | (() => vue.VNodeChild) | undefined;
|
|
text?: false | (() => vue.VNodeChild) | undefined;
|
|
append?: false | (() => vue.VNodeChild) | undefined;
|
|
close?: false | ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:close"?: false | ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
} & {
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"onClick:close"?: ((e: MouseEvent) => any) | undefined;
|
|
}, () => false | JSX.Element, {}, {}, {}, {
|
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
icon: false | IconValue;
|
|
rounded: string | number | boolean;
|
|
prominent: boolean;
|
|
density: Density;
|
|
modelValue: boolean;
|
|
closable: boolean;
|
|
closeIcon: IconValue;
|
|
closeLabel: string;
|
|
}>;
|
|
__isFragment?: undefined;
|
|
__isTeleport?: undefined;
|
|
__isSuspense?: undefined;
|
|
} & vue.ComponentOptionsBase<{
|
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
icon: false | IconValue;
|
|
prominent: boolean;
|
|
density: Density;
|
|
modelValue: boolean;
|
|
closable: boolean;
|
|
closeIcon: IconValue;
|
|
closeLabel: string;
|
|
} & {
|
|
type?: "error" | "success" | "warning" | "info" | undefined;
|
|
location?: Anchor | undefined;
|
|
height?: string | number | undefined;
|
|
width?: string | number | undefined;
|
|
border?: boolean | "end" | "start" | "top" | "bottom" | undefined;
|
|
borderColor?: string | undefined;
|
|
color?: string | undefined;
|
|
maxHeight?: string | number | undefined;
|
|
maxWidth?: string | number | undefined;
|
|
minHeight?: string | number | undefined;
|
|
minWidth?: string | number | undefined;
|
|
position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
|
|
title?: string | undefined;
|
|
text?: string | undefined;
|
|
class?: any;
|
|
elevation?: string | number | undefined;
|
|
theme?: string | undefined;
|
|
rounded?: string | number | boolean | undefined;
|
|
} & {
|
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
default?: (() => vue.VNodeChild) | undefined;
|
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
title?: (() => vue.VNodeChild) | undefined;
|
|
text?: (() => vue.VNodeChild) | undefined;
|
|
append?: (() => vue.VNodeChild) | undefined;
|
|
close?: ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
};
|
|
'v-slots'?: {
|
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
prepend?: false | (() => vue.VNodeChild) | undefined;
|
|
title?: false | (() => vue.VNodeChild) | undefined;
|
|
text?: false | (() => vue.VNodeChild) | undefined;
|
|
append?: false | (() => vue.VNodeChild) | undefined;
|
|
close?: false | ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
"v-slot:close"?: false | ((arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNodeChild) | undefined;
|
|
} & {
|
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
"onClick:close"?: ((e: MouseEvent) => any) | undefined;
|
|
}, () => false | JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
'click:close': (e: MouseEvent) => true;
|
|
'update:modelValue': (value: boolean) => true;
|
|
}, string, {
|
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
icon: false | IconValue;
|
|
rounded: string | number | boolean;
|
|
prominent: boolean;
|
|
density: Density;
|
|
modelValue: boolean;
|
|
closable: boolean;
|
|
closeIcon: IconValue;
|
|
closeLabel: string;
|
|
}, {}, string, vue.SlotsType<Partial<{
|
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
title: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
text: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
append: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
close: (arg: {
|
|
props: Record<string, any>;
|
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
color: StringConstructor;
|
|
variant: Omit<{
|
|
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
}, "type" | "default"> & {
|
|
type: PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
};
|
|
theme: StringConstructor;
|
|
tag: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
rounded: {
|
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
default: undefined;
|
|
};
|
|
position: {
|
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
validator: (v: any) => boolean;
|
|
};
|
|
location: PropType<Anchor>;
|
|
elevation: {
|
|
type: (StringConstructor | NumberConstructor)[];
|
|
validator(v: any): boolean;
|
|
};
|
|
height: (StringConstructor | NumberConstructor)[];
|
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
minHeight: (StringConstructor | NumberConstructor)[];
|
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
width: (StringConstructor | NumberConstructor)[];
|
|
density: {
|
|
type: PropType<Density>;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
};
|
|
class: PropType<any>;
|
|
style: {
|
|
type: PropType<vue.StyleValue>;
|
|
default: null;
|
|
};
|
|
border: {
|
|
type: PropType<boolean | "end" | "start" | "top" | "bottom">;
|
|
validator: (val: boolean | string) => boolean;
|
|
};
|
|
borderColor: StringConstructor;
|
|
closable: BooleanConstructor;
|
|
closeIcon: {
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
};
|
|
closeLabel: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
icon: {
|
|
type: PropType<false | IconValue>;
|
|
default: null;
|
|
};
|
|
modelValue: {
|
|
type: BooleanConstructor;
|
|
default: boolean;
|
|
};
|
|
prominent: BooleanConstructor;
|
|
title: StringConstructor;
|
|
text: StringConstructor;
|
|
type: {
|
|
type: PropType<"error" | "success" | "warning" | "info">;
|
|
validator: (val: ContextualType) => boolean;
|
|
};
|
|
}, vue.ExtractPropTypes<{
|
|
color: StringConstructor;
|
|
variant: Omit<{
|
|
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
}, "type" | "default"> & {
|
|
type: PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
};
|
|
theme: StringConstructor;
|
|
tag: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
rounded: {
|
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
default: undefined;
|
|
};
|
|
position: {
|
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
validator: (v: any) => boolean;
|
|
};
|
|
location: PropType<Anchor>;
|
|
elevation: {
|
|
type: (StringConstructor | NumberConstructor)[];
|
|
validator(v: any): boolean;
|
|
};
|
|
height: (StringConstructor | NumberConstructor)[];
|
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
minHeight: (StringConstructor | NumberConstructor)[];
|
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
width: (StringConstructor | NumberConstructor)[];
|
|
density: {
|
|
type: PropType<Density>;
|
|
default: string;
|
|
validator: (v: any) => boolean;
|
|
};
|
|
class: PropType<any>;
|
|
style: {
|
|
type: PropType<vue.StyleValue>;
|
|
default: null;
|
|
};
|
|
border: {
|
|
type: PropType<boolean | "end" | "start" | "top" | "bottom">;
|
|
validator: (val: boolean | string) => boolean;
|
|
};
|
|
borderColor: StringConstructor;
|
|
closable: BooleanConstructor;
|
|
closeIcon: {
|
|
type: PropType<IconValue>;
|
|
default: string;
|
|
};
|
|
closeLabel: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
icon: {
|
|
type: PropType<false | IconValue>;
|
|
default: null;
|
|
};
|
|
modelValue: {
|
|
type: BooleanConstructor;
|
|
default: boolean;
|
|
};
|
|
prominent: BooleanConstructor;
|
|
title: StringConstructor;
|
|
text: StringConstructor;
|
|
type: {
|
|
type: PropType<"error" | "success" | "warning" | "info">;
|
|
validator: (val: ContextualType) => boolean;
|
|
};
|
|
}>>;
|
|
type VAlert = InstanceType<typeof VAlert>;
|
|
|
|
declare const VAlertTitle: {
|
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
} & {
|
|
class?: any;
|
|
} & {
|
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
default?: (() => vue.VNodeChild) | undefined;
|
|
};
|
|
'v-slots'?: {
|
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
} & {
|
|
class?: any;
|
|
} & {
|
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
default?: (() => vue.VNodeChild) | undefined;
|
|
};
|
|
'v-slots'?: {
|
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
}, {
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
}, true, {}, vue.SlotsType<Partial<{
|
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>, {
|
|
P: {};
|
|
B: {};
|
|
D: {};
|
|
C: {};
|
|
M: {};
|
|
Defaults: {};
|
|
}, {
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
} & {
|
|
class?: any;
|
|
} & {
|
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
default?: (() => vue.VNodeChild) | undefined;
|
|
};
|
|
'v-slots'?: {
|
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>, {}, {}, {}, {
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
}>;
|
|
__isFragment?: undefined;
|
|
__isTeleport?: undefined;
|
|
__isSuspense?: undefined;
|
|
} & vue.ComponentOptionsBase<{
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
} & {
|
|
class?: any;
|
|
} & {
|
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
default?: (() => vue.VNodeChild) | undefined;
|
|
};
|
|
'v-slots'?: {
|
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
} | undefined;
|
|
} & {
|
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
style: vue.StyleValue;
|
|
tag: string;
|
|
}, {}, string, vue.SlotsType<Partial<{
|
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
[key: string]: any;
|
|
}>[];
|
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
class: vue.PropType<any>;
|
|
style: {
|
|
type: vue.PropType<vue.StyleValue>;
|
|
default: null;
|
|
};
|
|
tag: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
}, vue.ExtractPropTypes<{
|
|
class: vue.PropType<any>;
|
|
style: {
|
|
type: vue.PropType<vue.StyleValue>;
|
|
default: null;
|
|
};
|
|
tag: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
}>>;
|
|
type VAlertTitle = InstanceType<typeof VAlertTitle>;
|
|
|
|
export { VAlert, VAlertTitle };
|