Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
9
VApp/node_modules/vuetify/lib/components/VCode/VCode.css
generated
vendored
Normal file
9
VApp/node_modules/vuetify/lib/components/VCode/VCode.css
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
.v-code {
|
||||
background-color: rgb(var(--v-theme-code));
|
||||
color: rgb(var(--v-theme-on-code));
|
||||
border-radius: 4px;
|
||||
line-height: 1.8;
|
||||
font-size: 0.9em;
|
||||
font-weight: normal;
|
||||
padding: 0.2em 0.4em;
|
||||
}
|
10
VApp/node_modules/vuetify/lib/components/VCode/VCode.sass
generated
vendored
Normal file
10
VApp/node_modules/vuetify/lib/components/VCode/VCode.sass
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
@use './variables' as *
|
||||
|
||||
.v-code
|
||||
background-color: $code-background-color
|
||||
color: $code-color
|
||||
border-radius: $code-border-radius
|
||||
line-height: $code-line-height
|
||||
font-size: $code-font-size
|
||||
font-weight: $code-font-weight
|
||||
padding: $code-padding
|
7
VApp/node_modules/vuetify/lib/components/VCode/_variables.scss
generated
vendored
Normal file
7
VApp/node_modules/vuetify/lib/components/VCode/_variables.scss
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
$code-background-color: rgb(var(--v-theme-code)) !default;
|
||||
$code-color: rgb(var(--v-theme-on-code)) !default;
|
||||
$code-border-radius: 4px !default;
|
||||
$code-line-height: 1.8 !default;
|
||||
$code-font-size: 0.9em !default;
|
||||
$code-font-weight: normal !default;
|
||||
$code-padding: .2em .4em !default;
|
122
VApp/node_modules/vuetify/lib/components/VCode/index.d.mts
generated
vendored
Normal file
122
VApp/node_modules/vuetify/lib/components/VCode/index.d.mts
generated
vendored
Normal file
@ -0,0 +1,122 @@
|
||||
import * as vue from 'vue';
|
||||
import { ComponentPropsOptions, ExtractPropTypes } 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 VCode: {
|
||||
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 VCode = InstanceType<typeof VCode>;
|
||||
|
||||
export { VCode };
|
7
VApp/node_modules/vuetify/lib/components/VCode/index.mjs
generated
vendored
Normal file
7
VApp/node_modules/vuetify/lib/components/VCode/index.mjs
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
// Styles
|
||||
import "./VCode.css";
|
||||
|
||||
// Utilities
|
||||
import { createSimpleFunctional } from "../../util/index.mjs";
|
||||
export const VCode = createSimpleFunctional('v-code');
|
||||
//# sourceMappingURL=index.mjs.map
|
1
VApp/node_modules/vuetify/lib/components/VCode/index.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/components/VCode/index.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.mjs","names":["createSimpleFunctional","VCode"],"sources":["../../../src/components/VCode/index.ts"],"sourcesContent":["// Styles\nimport './VCode.sass'\n\n// Utilities\nimport { createSimpleFunctional } from '@/util'\n\nexport const VCode = createSimpleFunctional('v-code')\n\nexport type VCode = InstanceType<typeof VCode>\n"],"mappings":"AAAA;AACA;;AAEA;AAAA,SACSA,sBAAsB;AAE/B,OAAO,MAAMC,KAAK,GAAGD,sBAAsB,CAAC,QAAQ,CAAC"}
|
Reference in New Issue
Block a user