Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
280
VApp/node_modules/vuetify/lib/components/VSelectionControlGroup/index.d.mts
generated
vendored
Normal file
280
VApp/node_modules/vuetify/lib/components/VSelectionControlGroup/index.d.mts
generated
vendored
Normal file
@@ -0,0 +1,280 @@
|
||||
import * as vue from 'vue';
|
||||
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, JSXComponent, PropType } from 'vue';
|
||||
|
||||
type SlotsToProps<U extends RawSlots, T = MakeInternalSlots<U>> = {
|
||||
$children?: (VNodeChild | (T extends {
|
||||
default: infer V;
|
||||
} ? V : {}) | {
|
||||
[K in keyof T]?: T[K];
|
||||
});
|
||||
'v-slots'?: {
|
||||
[K in keyof T]?: T[K] | false;
|
||||
};
|
||||
} & {
|
||||
[K in keyof T as `v-slot:${K & string}`]?: T[K] | false;
|
||||
};
|
||||
type RawSlots = Record<string, unknown>;
|
||||
type Slot<T> = [T] extends [never] ? () => VNodeChild : (arg: T) => VNodeChild;
|
||||
type VueSlot<T> = [T] extends [never] ? () => VNode[] : (arg: T) => VNode[];
|
||||
type MakeInternalSlots<T extends RawSlots> = {
|
||||
[K in keyof T]: Slot<T[K]>;
|
||||
};
|
||||
type MakeSlots<T extends RawSlots> = {
|
||||
[K in keyof T]: VueSlot<T[K]>;
|
||||
};
|
||||
type GenericProps<Props, Slots extends Record<string, unknown>> = {
|
||||
$props: Props & SlotsToProps<Slots>;
|
||||
$slots: MakeSlots<Slots>;
|
||||
};
|
||||
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
||||
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
||||
}
|
||||
|
||||
declare function deepEqual(a: any, b: any): boolean;
|
||||
|
||||
type Density = null | 'default' | 'comfortable' | 'compact';
|
||||
|
||||
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
||||
declare const IconValue: PropType<IconValue>;
|
||||
|
||||
declare const VSelectionControlGroup: {
|
||||
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
||||
inline: boolean;
|
||||
error: boolean;
|
||||
style: vue.StyleValue;
|
||||
disabled: boolean | null;
|
||||
multiple: boolean | null;
|
||||
readonly: boolean | null;
|
||||
density: Density;
|
||||
ripple: boolean;
|
||||
defaultsTarget: string;
|
||||
valueComparator: typeof deepEqual;
|
||||
} & {
|
||||
type?: string | undefined;
|
||||
id?: string | undefined;
|
||||
name?: string | undefined;
|
||||
color?: string | undefined;
|
||||
class?: any;
|
||||
theme?: string | undefined;
|
||||
falseIcon?: IconValue | undefined;
|
||||
trueIcon?: IconValue | undefined;
|
||||
} & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
||||
'update:modelValue': (value: any) => boolean;
|
||||
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||||
inline: boolean;
|
||||
error: boolean;
|
||||
style: vue.StyleValue;
|
||||
disabled: boolean | null;
|
||||
multiple: boolean | null;
|
||||
readonly: boolean | null;
|
||||
density: Density;
|
||||
ripple: boolean;
|
||||
defaultsTarget: string;
|
||||
valueComparator: typeof deepEqual;
|
||||
} & {
|
||||
type?: string | undefined;
|
||||
id?: string | undefined;
|
||||
name?: string | undefined;
|
||||
color?: string | undefined;
|
||||
class?: any;
|
||||
theme?: string | undefined;
|
||||
falseIcon?: IconValue | undefined;
|
||||
trueIcon?: IconValue | undefined;
|
||||
} & {}, {
|
||||
inline: boolean;
|
||||
error: boolean;
|
||||
style: vue.StyleValue;
|
||||
disabled: boolean | null;
|
||||
multiple: boolean | null;
|
||||
readonly: boolean | null;
|
||||
density: Density;
|
||||
ripple: boolean;
|
||||
defaultsTarget: string;
|
||||
valueComparator: typeof deepEqual;
|
||||
}, true, {}, vue.SlotsType<Partial<{
|
||||
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
}>>, {
|
||||
P: {};
|
||||
B: {};
|
||||
D: {};
|
||||
C: {};
|
||||
M: {};
|
||||
Defaults: {};
|
||||
}, {
|
||||
inline: boolean;
|
||||
error: boolean;
|
||||
style: vue.StyleValue;
|
||||
disabled: boolean | null;
|
||||
multiple: boolean | null;
|
||||
readonly: boolean | null;
|
||||
density: Density;
|
||||
ripple: boolean;
|
||||
defaultsTarget: string;
|
||||
valueComparator: typeof deepEqual;
|
||||
} & {
|
||||
type?: string | undefined;
|
||||
id?: string | undefined;
|
||||
name?: string | undefined;
|
||||
color?: string | undefined;
|
||||
class?: any;
|
||||
theme?: string | undefined;
|
||||
falseIcon?: IconValue | undefined;
|
||||
trueIcon?: IconValue | undefined;
|
||||
} & {}, {}, {}, {}, {}, {
|
||||
inline: boolean;
|
||||
error: boolean;
|
||||
style: vue.StyleValue;
|
||||
disabled: boolean | null;
|
||||
multiple: boolean | null;
|
||||
readonly: boolean | null;
|
||||
density: Density;
|
||||
ripple: boolean;
|
||||
defaultsTarget: string;
|
||||
valueComparator: typeof deepEqual;
|
||||
}>;
|
||||
__isFragment?: undefined;
|
||||
__isTeleport?: undefined;
|
||||
__isSuspense?: undefined;
|
||||
} & vue.ComponentOptionsBase<{
|
||||
inline: boolean;
|
||||
error: boolean;
|
||||
style: vue.StyleValue;
|
||||
disabled: boolean | null;
|
||||
multiple: boolean | null;
|
||||
readonly: boolean | null;
|
||||
density: Density;
|
||||
ripple: boolean;
|
||||
defaultsTarget: string;
|
||||
valueComparator: typeof deepEqual;
|
||||
} & {
|
||||
type?: string | undefined;
|
||||
id?: string | undefined;
|
||||
name?: string | undefined;
|
||||
color?: string | undefined;
|
||||
class?: any;
|
||||
theme?: string | undefined;
|
||||
falseIcon?: IconValue | undefined;
|
||||
trueIcon?: IconValue | undefined;
|
||||
} & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
||||
'update:modelValue': (value: any) => boolean;
|
||||
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue">, string, {
|
||||
inline: boolean;
|
||||
error: boolean;
|
||||
style: vue.StyleValue;
|
||||
disabled: boolean | null;
|
||||
multiple: boolean | null;
|
||||
readonly: boolean | null;
|
||||
density: Density;
|
||||
ripple: boolean;
|
||||
defaultsTarget: string;
|
||||
valueComparator: typeof deepEqual;
|
||||
}, {}, string, vue.SlotsType<Partial<{
|
||||
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
||||
modelValue?: T | undefined;
|
||||
'onUpdate:modelValue'?: ((value: T) => void) | undefined;
|
||||
}, slots: {
|
||||
default: never;
|
||||
}) => GenericProps<{
|
||||
modelValue?: T | undefined;
|
||||
'onUpdate:modelValue'?: ((value: T) => void) | undefined;
|
||||
}, {
|
||||
default: never;
|
||||
}>) & FilterPropsOptions<{
|
||||
theme: StringConstructor;
|
||||
density: {
|
||||
type: PropType<Density>;
|
||||
default: string;
|
||||
validator: (v: any) => boolean;
|
||||
};
|
||||
class: PropType<any>;
|
||||
style: {
|
||||
type: PropType<vue.StyleValue>;
|
||||
default: null;
|
||||
};
|
||||
color: StringConstructor;
|
||||
disabled: {
|
||||
type: PropType<boolean | null>;
|
||||
default: null;
|
||||
};
|
||||
defaultsTarget: {
|
||||
type: PropType<string>;
|
||||
default: string;
|
||||
};
|
||||
error: BooleanConstructor;
|
||||
id: StringConstructor;
|
||||
inline: BooleanConstructor;
|
||||
falseIcon: PropType<IconValue>;
|
||||
trueIcon: PropType<IconValue>;
|
||||
ripple: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
multiple: {
|
||||
type: PropType<boolean | null>;
|
||||
default: null;
|
||||
};
|
||||
name: StringConstructor;
|
||||
readonly: {
|
||||
type: PropType<boolean | null>;
|
||||
default: null;
|
||||
};
|
||||
modelValue: null;
|
||||
type: StringConstructor;
|
||||
valueComparator: {
|
||||
type: PropType<typeof deepEqual>;
|
||||
default: typeof deepEqual;
|
||||
};
|
||||
}, vue.ExtractPropTypes<{
|
||||
theme: StringConstructor;
|
||||
density: {
|
||||
type: PropType<Density>;
|
||||
default: string;
|
||||
validator: (v: any) => boolean;
|
||||
};
|
||||
class: PropType<any>;
|
||||
style: {
|
||||
type: PropType<vue.StyleValue>;
|
||||
default: null;
|
||||
};
|
||||
color: StringConstructor;
|
||||
disabled: {
|
||||
type: PropType<boolean | null>;
|
||||
default: null;
|
||||
};
|
||||
defaultsTarget: {
|
||||
type: PropType<string>;
|
||||
default: string;
|
||||
};
|
||||
error: BooleanConstructor;
|
||||
id: StringConstructor;
|
||||
inline: BooleanConstructor;
|
||||
falseIcon: PropType<IconValue>;
|
||||
trueIcon: PropType<IconValue>;
|
||||
ripple: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
multiple: {
|
||||
type: PropType<boolean | null>;
|
||||
default: null;
|
||||
};
|
||||
name: StringConstructor;
|
||||
readonly: {
|
||||
type: PropType<boolean | null>;
|
||||
default: null;
|
||||
};
|
||||
modelValue: null;
|
||||
type: StringConstructor;
|
||||
valueComparator: {
|
||||
type: PropType<typeof deepEqual>;
|
||||
default: typeof deepEqual;
|
||||
};
|
||||
}>>;
|
||||
type VSelectionControlGroup = InstanceType<typeof VSelectionControlGroup>;
|
||||
|
||||
export { VSelectionControlGroup };
|
||||
Reference in New Issue
Block a user