forked from jchomaz/Vulture
Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
784
VApp/node_modules/vuetify/lib/components/VGrid/index.d.mts
generated
vendored
Normal file
784
VApp/node_modules/vuetify/lib/components/VGrid/index.d.mts
generated
vendored
Normal file
@@ -0,0 +1,784 @@
|
||||
import * as vue from 'vue';
|
||||
import { ComponentPropsOptions, ExtractPropTypes, PropType, Prop } from 'vue';
|
||||
|
||||
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
||||
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
||||
}
|
||||
|
||||
declare const VContainer: {
|
||||
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
fluid: boolean;
|
||||
} & {
|
||||
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;
|
||||
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
fluid: boolean;
|
||||
} & {
|
||||
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;
|
||||
fluid: boolean;
|
||||
}, 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;
|
||||
fluid: boolean;
|
||||
} & {
|
||||
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;
|
||||
fluid: boolean;
|
||||
}>;
|
||||
__isFragment?: undefined;
|
||||
__isTeleport?: undefined;
|
||||
__isSuspense?: undefined;
|
||||
} & vue.ComponentOptionsBase<{
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
fluid: boolean;
|
||||
} & {
|
||||
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;
|
||||
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
fluid: boolean;
|
||||
}, {}, string, vue.SlotsType<Partial<{
|
||||
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
||||
tag: {
|
||||
type: StringConstructor;
|
||||
default: string;
|
||||
};
|
||||
class: vue.PropType<any>;
|
||||
style: {
|
||||
type: vue.PropType<vue.StyleValue>;
|
||||
default: null;
|
||||
};
|
||||
fluid: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
}, vue.ExtractPropTypes<{
|
||||
tag: {
|
||||
type: StringConstructor;
|
||||
default: string;
|
||||
};
|
||||
class: vue.PropType<any>;
|
||||
style: {
|
||||
type: vue.PropType<vue.StyleValue>;
|
||||
default: null;
|
||||
};
|
||||
fluid: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
}>>;
|
||||
type VContainer = InstanceType<typeof VContainer>;
|
||||
|
||||
declare const VCol: {
|
||||
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
||||
offset: string | number;
|
||||
alignSelf: "auto" | "center" | "end" | "start" | "stretch" | "baseline";
|
||||
order: string | number;
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
cols: string | number | boolean;
|
||||
} & {
|
||||
class?: any;
|
||||
sm?: string | number | boolean | undefined;
|
||||
md?: string | number | boolean | undefined;
|
||||
lg?: string | number | boolean | undefined;
|
||||
xl?: string | number | boolean | undefined;
|
||||
xxl?: string | number | boolean | undefined;
|
||||
offsetSm?: string | number | undefined;
|
||||
offsetMd?: string | number | undefined;
|
||||
offsetLg?: string | number | undefined;
|
||||
offsetXl?: string | number | undefined;
|
||||
offsetXxl?: string | number | undefined;
|
||||
orderSm?: string | number | undefined;
|
||||
orderMd?: string | number | undefined;
|
||||
orderLg?: string | number | undefined;
|
||||
orderXl?: string | number | undefined;
|
||||
orderXxl?: string | number | undefined;
|
||||
} & {
|
||||
$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 & {
|
||||
offset: string | number;
|
||||
alignSelf: "auto" | "center" | "end" | "start" | "stretch" | "baseline";
|
||||
order: string | number;
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
cols: string | number | boolean;
|
||||
} & {
|
||||
class?: any;
|
||||
sm?: string | number | boolean | undefined;
|
||||
md?: string | number | boolean | undefined;
|
||||
lg?: string | number | boolean | undefined;
|
||||
xl?: string | number | boolean | undefined;
|
||||
xxl?: string | number | boolean | undefined;
|
||||
offsetSm?: string | number | undefined;
|
||||
offsetMd?: string | number | undefined;
|
||||
offsetLg?: string | number | undefined;
|
||||
offsetXl?: string | number | undefined;
|
||||
offsetXxl?: string | number | undefined;
|
||||
orderSm?: string | number | undefined;
|
||||
orderMd?: string | number | undefined;
|
||||
orderLg?: string | number | undefined;
|
||||
orderXl?: string | number | undefined;
|
||||
orderXxl?: string | number | undefined;
|
||||
} & {
|
||||
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
||||
default?: (() => vue.VNodeChild) | undefined;
|
||||
};
|
||||
'v-slots'?: {
|
||||
default?: false | (() => vue.VNodeChild) | undefined;
|
||||
} | undefined;
|
||||
} & {
|
||||
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
||||
}, {
|
||||
offset: string | number;
|
||||
alignSelf: "auto" | "center" | "end" | "start" | "stretch" | "baseline";
|
||||
order: string | number;
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
cols: string | number | boolean;
|
||||
}, true, {}, vue.SlotsType<Partial<{
|
||||
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
}>>, {
|
||||
P: {};
|
||||
B: {};
|
||||
D: {};
|
||||
C: {};
|
||||
M: {};
|
||||
Defaults: {};
|
||||
}, {
|
||||
offset: string | number;
|
||||
alignSelf: "auto" | "center" | "end" | "start" | "stretch" | "baseline";
|
||||
order: string | number;
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
cols: string | number | boolean;
|
||||
} & {
|
||||
class?: any;
|
||||
sm?: string | number | boolean | undefined;
|
||||
md?: string | number | boolean | undefined;
|
||||
lg?: string | number | boolean | undefined;
|
||||
xl?: string | number | boolean | undefined;
|
||||
xxl?: string | number | boolean | undefined;
|
||||
offsetSm?: string | number | undefined;
|
||||
offsetMd?: string | number | undefined;
|
||||
offsetLg?: string | number | undefined;
|
||||
offsetXl?: string | number | undefined;
|
||||
offsetXxl?: string | number | undefined;
|
||||
orderSm?: string | number | undefined;
|
||||
orderMd?: string | number | undefined;
|
||||
orderLg?: string | number | undefined;
|
||||
orderXl?: string | number | undefined;
|
||||
orderXxl?: string | number | undefined;
|
||||
} & {
|
||||
$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;
|
||||
}>, {}, {}, {}, {
|
||||
offset: string | number;
|
||||
alignSelf: "auto" | "center" | "end" | "start" | "stretch" | "baseline";
|
||||
order: string | number;
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
cols: string | number | boolean;
|
||||
}>;
|
||||
__isFragment?: undefined;
|
||||
__isTeleport?: undefined;
|
||||
__isSuspense?: undefined;
|
||||
} & vue.ComponentOptionsBase<{
|
||||
offset: string | number;
|
||||
alignSelf: "auto" | "center" | "end" | "start" | "stretch" | "baseline";
|
||||
order: string | number;
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
cols: string | number | boolean;
|
||||
} & {
|
||||
class?: any;
|
||||
sm?: string | number | boolean | undefined;
|
||||
md?: string | number | boolean | undefined;
|
||||
lg?: string | number | boolean | undefined;
|
||||
xl?: string | number | boolean | undefined;
|
||||
xxl?: string | number | boolean | undefined;
|
||||
offsetSm?: string | number | undefined;
|
||||
offsetMd?: string | number | undefined;
|
||||
offsetLg?: string | number | undefined;
|
||||
offsetXl?: string | number | undefined;
|
||||
offsetXxl?: string | number | undefined;
|
||||
orderSm?: string | number | undefined;
|
||||
orderMd?: string | number | undefined;
|
||||
orderLg?: string | number | undefined;
|
||||
orderXl?: string | number | undefined;
|
||||
orderXxl?: string | number | undefined;
|
||||
} & {
|
||||
$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, {
|
||||
offset: string | number;
|
||||
alignSelf: "auto" | "center" | "end" | "start" | "stretch" | "baseline";
|
||||
order: string | number;
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
cols: string | number | boolean;
|
||||
}, {}, string, vue.SlotsType<Partial<{
|
||||
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
||||
tag: {
|
||||
type: StringConstructor;
|
||||
default: string;
|
||||
};
|
||||
class: PropType<any>;
|
||||
style: {
|
||||
type: PropType<vue.StyleValue>;
|
||||
default: null;
|
||||
};
|
||||
alignSelf: {
|
||||
type: PropType<"auto" | "center" | "end" | "start" | "stretch" | "baseline">;
|
||||
default: null;
|
||||
validator: (str: any) => boolean;
|
||||
};
|
||||
orderSm: Prop<string | number, null>;
|
||||
orderMd: Prop<string | number, null>;
|
||||
orderLg: Prop<string | number, null>;
|
||||
orderXl: Prop<string | number, null>;
|
||||
orderXxl: Prop<string | number, null>;
|
||||
order: {
|
||||
type: (StringConstructor | NumberConstructor)[];
|
||||
default: null;
|
||||
};
|
||||
offsetSm: Prop<string | number, null>;
|
||||
offsetMd: Prop<string | number, null>;
|
||||
offsetLg: Prop<string | number, null>;
|
||||
offsetXl: Prop<string | number, null>;
|
||||
offsetXxl: Prop<string | number, null>;
|
||||
offset: {
|
||||
type: (StringConstructor | NumberConstructor)[];
|
||||
default: null;
|
||||
};
|
||||
sm: Prop<string | number | boolean, false>;
|
||||
md: Prop<string | number | boolean, false>;
|
||||
lg: Prop<string | number | boolean, false>;
|
||||
xl: Prop<string | number | boolean, false>;
|
||||
xxl: Prop<string | number | boolean, false>;
|
||||
cols: {
|
||||
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
||||
default: boolean;
|
||||
};
|
||||
}, vue.ExtractPropTypes<{
|
||||
tag: {
|
||||
type: StringConstructor;
|
||||
default: string;
|
||||
};
|
||||
class: PropType<any>;
|
||||
style: {
|
||||
type: PropType<vue.StyleValue>;
|
||||
default: null;
|
||||
};
|
||||
alignSelf: {
|
||||
type: PropType<"auto" | "center" | "end" | "start" | "stretch" | "baseline">;
|
||||
default: null;
|
||||
validator: (str: any) => boolean;
|
||||
};
|
||||
orderSm: Prop<string | number, null>;
|
||||
orderMd: Prop<string | number, null>;
|
||||
orderLg: Prop<string | number, null>;
|
||||
orderXl: Prop<string | number, null>;
|
||||
orderXxl: Prop<string | number, null>;
|
||||
order: {
|
||||
type: (StringConstructor | NumberConstructor)[];
|
||||
default: null;
|
||||
};
|
||||
offsetSm: Prop<string | number, null>;
|
||||
offsetMd: Prop<string | number, null>;
|
||||
offsetLg: Prop<string | number, null>;
|
||||
offsetXl: Prop<string | number, null>;
|
||||
offsetXxl: Prop<string | number, null>;
|
||||
offset: {
|
||||
type: (StringConstructor | NumberConstructor)[];
|
||||
default: null;
|
||||
};
|
||||
sm: Prop<string | number | boolean, false>;
|
||||
md: Prop<string | number | boolean, false>;
|
||||
lg: Prop<string | number | boolean, false>;
|
||||
xl: Prop<string | number | boolean, false>;
|
||||
xxl: Prop<string | number | boolean, false>;
|
||||
cols: {
|
||||
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
||||
default: boolean;
|
||||
};
|
||||
}>>;
|
||||
type VCol = InstanceType<typeof VCol>;
|
||||
|
||||
declare const VRow: {
|
||||
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
||||
alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
dense: boolean;
|
||||
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
align: "center" | "end" | "start" | "stretch" | "baseline";
|
||||
noGutters: boolean;
|
||||
} & {
|
||||
class?: any;
|
||||
alignSm?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignMd?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignLg?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignXl?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignXxl?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
justifySm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
alignContentSm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
} & {
|
||||
$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 & {
|
||||
alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
dense: boolean;
|
||||
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
align: "center" | "end" | "start" | "stretch" | "baseline";
|
||||
noGutters: boolean;
|
||||
} & {
|
||||
class?: any;
|
||||
alignSm?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignMd?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignLg?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignXl?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignXxl?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
justifySm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
alignContentSm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
} & {
|
||||
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
||||
default?: (() => vue.VNodeChild) | undefined;
|
||||
};
|
||||
'v-slots'?: {
|
||||
default?: false | (() => vue.VNodeChild) | undefined;
|
||||
} | undefined;
|
||||
} & {
|
||||
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
||||
}, {
|
||||
alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
dense: boolean;
|
||||
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
align: "center" | "end" | "start" | "stretch" | "baseline";
|
||||
noGutters: boolean;
|
||||
}, true, {}, vue.SlotsType<Partial<{
|
||||
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
}>>, {
|
||||
P: {};
|
||||
B: {};
|
||||
D: {};
|
||||
C: {};
|
||||
M: {};
|
||||
Defaults: {};
|
||||
}, {
|
||||
alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
dense: boolean;
|
||||
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
align: "center" | "end" | "start" | "stretch" | "baseline";
|
||||
noGutters: boolean;
|
||||
} & {
|
||||
class?: any;
|
||||
alignSm?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignMd?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignLg?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignXl?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignXxl?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
justifySm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
alignContentSm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
} & {
|
||||
$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;
|
||||
}>, {}, {}, {}, {
|
||||
alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
dense: boolean;
|
||||
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
align: "center" | "end" | "start" | "stretch" | "baseline";
|
||||
noGutters: boolean;
|
||||
}>;
|
||||
__isFragment?: undefined;
|
||||
__isTeleport?: undefined;
|
||||
__isSuspense?: undefined;
|
||||
} & vue.ComponentOptionsBase<{
|
||||
alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
dense: boolean;
|
||||
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
align: "center" | "end" | "start" | "stretch" | "baseline";
|
||||
noGutters: boolean;
|
||||
} & {
|
||||
class?: any;
|
||||
alignSm?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignMd?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignLg?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignXl?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
alignXxl?: "center" | "end" | "start" | "stretch" | "baseline" | undefined;
|
||||
justifySm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
justifyXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
||||
alignContentSm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
alignContentXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch" | undefined;
|
||||
} & {
|
||||
$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, {
|
||||
alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
style: vue.StyleValue;
|
||||
tag: string;
|
||||
dense: boolean;
|
||||
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
|
||||
align: "center" | "end" | "start" | "stretch" | "baseline";
|
||||
noGutters: boolean;
|
||||
}, {}, string, vue.SlotsType<Partial<{
|
||||
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
||||
tag: {
|
||||
type: StringConstructor;
|
||||
default: string;
|
||||
};
|
||||
class: PropType<any>;
|
||||
style: {
|
||||
type: PropType<vue.StyleValue>;
|
||||
default: null;
|
||||
};
|
||||
alignContentSm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
|
||||
alignContentMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
|
||||
alignContentLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
|
||||
alignContentXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
|
||||
alignContentXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
|
||||
alignContent: {
|
||||
type: PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch">;
|
||||
default: null;
|
||||
validator: (str: any) => boolean;
|
||||
};
|
||||
justifySm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
|
||||
justifyMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
|
||||
justifyLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
|
||||
justifyXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
|
||||
justifyXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
|
||||
justify: {
|
||||
type: PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch">;
|
||||
default: null;
|
||||
validator: (str: any) => boolean;
|
||||
};
|
||||
alignSm: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
|
||||
alignMd: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
|
||||
alignLg: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
|
||||
alignXl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
|
||||
alignXxl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
|
||||
dense: BooleanConstructor;
|
||||
noGutters: BooleanConstructor;
|
||||
align: {
|
||||
type: PropType<"center" | "end" | "start" | "stretch" | "baseline">;
|
||||
default: null;
|
||||
validator: (str: any) => boolean;
|
||||
};
|
||||
}, vue.ExtractPropTypes<{
|
||||
tag: {
|
||||
type: StringConstructor;
|
||||
default: string;
|
||||
};
|
||||
class: PropType<any>;
|
||||
style: {
|
||||
type: PropType<vue.StyleValue>;
|
||||
default: null;
|
||||
};
|
||||
alignContentSm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
|
||||
alignContentMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
|
||||
alignContentLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
|
||||
alignContentXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
|
||||
alignContentXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
|
||||
alignContent: {
|
||||
type: PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch">;
|
||||
default: null;
|
||||
validator: (str: any) => boolean;
|
||||
};
|
||||
justifySm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
|
||||
justifyMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
|
||||
justifyLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
|
||||
justifyXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
|
||||
justifyXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
|
||||
justify: {
|
||||
type: PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch">;
|
||||
default: null;
|
||||
validator: (str: any) => boolean;
|
||||
};
|
||||
alignSm: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
|
||||
alignMd: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
|
||||
alignLg: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
|
||||
alignXl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
|
||||
alignXxl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
|
||||
dense: BooleanConstructor;
|
||||
noGutters: BooleanConstructor;
|
||||
align: {
|
||||
type: PropType<"center" | "end" | "start" | "stretch" | "baseline">;
|
||||
default: null;
|
||||
validator: (str: any) => boolean;
|
||||
};
|
||||
}>>;
|
||||
type VRow = InstanceType<typeof VRow>;
|
||||
|
||||
declare const VSpacer: {
|
||||
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 VSpacer = InstanceType<typeof VSpacer>;
|
||||
|
||||
export { VCol, VContainer, VRow, VSpacer };
|
||||
Reference in New Issue
Block a user