Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
10
VApp/node_modules/vuetify/lib/components/VKbd/VKbd.css
generated
vendored
Normal file
10
VApp/node_modules/vuetify/lib/components/VKbd/VKbd.css
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
.v-kbd {
|
||||
background: rgb(var(--v-theme-kbd));
|
||||
color: rgb(var(--v-theme-on-kbd));
|
||||
border-radius: 3px;
|
||||
display: inline;
|
||||
font-size: 85%;
|
||||
font-weight: normal;
|
||||
padding: 0.2em 0.4rem;
|
||||
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
||||
}
|
13
VApp/node_modules/vuetify/lib/components/VKbd/VKbd.sass
generated
vendored
Normal file
13
VApp/node_modules/vuetify/lib/components/VKbd/VKbd.sass
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
@use '../../styles/tools'
|
||||
@use './variables' as *
|
||||
|
||||
.v-kbd
|
||||
background: rgb(var(--v-theme-kbd))
|
||||
color: rgb(var(--v-theme-on-kbd))
|
||||
border-radius: $kbd-border-radius
|
||||
display: $kbd-display
|
||||
font-size: $kbd-font-size
|
||||
font-weight: $kbd-font-weight
|
||||
padding: $kbd-padding
|
||||
|
||||
@include tools.elevation($kbd-elevation)
|
7
VApp/node_modules/vuetify/lib/components/VKbd/_variables.scss
generated
vendored
Normal file
7
VApp/node_modules/vuetify/lib/components/VKbd/_variables.scss
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
// VKbd
|
||||
$kbd-border-radius: 3px !default;
|
||||
$kbd-display: inline !default;
|
||||
$kbd-elevation: 2 !default;
|
||||
$kbd-font-size: 85% !default;
|
||||
$kbd-font-weight: normal !default;
|
||||
$kbd-padding: .2em .4rem !default;
|
122
VApp/node_modules/vuetify/lib/components/VKbd/index.d.mts
generated
vendored
Normal file
122
VApp/node_modules/vuetify/lib/components/VKbd/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 VKbd: {
|
||||
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 VKbd = InstanceType<typeof VKbd>;
|
||||
|
||||
export { VKbd };
|
7
VApp/node_modules/vuetify/lib/components/VKbd/index.mjs
generated
vendored
Normal file
7
VApp/node_modules/vuetify/lib/components/VKbd/index.mjs
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
// Styles
|
||||
import "./VKbd.css";
|
||||
|
||||
// Utilities
|
||||
import { createSimpleFunctional } from "../../util/index.mjs";
|
||||
export const VKbd = createSimpleFunctional('v-kbd');
|
||||
//# sourceMappingURL=index.mjs.map
|
1
VApp/node_modules/vuetify/lib/components/VKbd/index.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/components/VKbd/index.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.mjs","names":["createSimpleFunctional","VKbd"],"sources":["../../../src/components/VKbd/index.ts"],"sourcesContent":["// Styles\nimport './VKbd.sass'\n\n// Utilities\nimport { createSimpleFunctional } from '@/util'\n\nexport const VKbd = createSimpleFunctional('v-kbd')\n\nexport type VKbd = InstanceType<typeof VKbd>\n"],"mappings":"AAAA;AACA;;AAEA;AAAA,SACSA,sBAAsB;AAE/B,OAAO,MAAMC,IAAI,GAAGD,sBAAsB,CAAC,OAAO,CAAC"}
|
Reference in New Issue
Block a user