Tracking de l'application VApp (IHM du jeu)

This commit is contained in:
2025-05-11 18:04:12 +02:00
commit 89e9db9b62
17763 changed files with 3718499 additions and 0 deletions

View File

@ -0,0 +1,138 @@
.v-table {
background: rgb(var(--v-theme-surface));
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
font-size: 0.875rem;
transition-duration: 0.28s;
transition-property: box-shadow, opacity, background, height;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.v-table .v-table-divider {
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
}
.v-table .v-table__wrapper > table > thead > tr > th {
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
}
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
}
.v-table .v-table__wrapper > table > tfoot > tr > td,
.v-table .v-table__wrapper > table > tfoot > tr > th {
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
}
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
position: relative;
}
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(var(--v-border-color), var(--v-hover-opacity));
pointer-events: none;
}
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
background: rgb(var(--v-theme-surface));
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
z-index: 1;
}
.v-table.v-table--fixed-footer > tfoot > tr > th,
.v-table.v-table--fixed-footer > tfoot > tr > td {
background: rgb(var(--v-theme-surface));
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
}
.v-table {
border-radius: inherit;
line-height: 1.5;
max-width: 100%;
display: flex;
flex-direction: column;
}
.v-table > .v-table__wrapper > table {
width: 100%;
border-spacing: 0;
}
.v-table > .v-table__wrapper > table > tbody > tr > td,
.v-table > .v-table__wrapper > table > tbody > tr > th,
.v-table > .v-table__wrapper > table > thead > tr > td,
.v-table > .v-table__wrapper > table > thead > tr > th,
.v-table > .v-table__wrapper > table > tfoot > tr > td,
.v-table > .v-table__wrapper > table > tfoot > tr > th {
padding: 0 16px;
transition-duration: 0.28s;
transition-property: box-shadow, opacity, background, height;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.v-table > .v-table__wrapper > table > tbody > tr > td,
.v-table > .v-table__wrapper > table > thead > tr > td,
.v-table > .v-table__wrapper > table > tfoot > tr > td {
height: var(--v-table-row-height);
}
.v-table > .v-table__wrapper > table > tbody > tr > th,
.v-table > .v-table__wrapper > table > thead > tr > th,
.v-table > .v-table__wrapper > table > tfoot > tr > th {
height: var(--v-table-header-height);
font-weight: 500;
user-select: none;
text-align: start;
}
.v-table--density-default {
--v-table-header-height: 56px;
--v-table-row-height: 52px;
}
.v-table--density-comfortable {
--v-table-header-height: 48px;
--v-table-row-height: 44px;
}
.v-table--density-compact {
--v-table-header-height: 40px;
--v-table-row-height: 36px;
}
.v-table__wrapper {
border-radius: inherit;
overflow: auto;
flex: 1 1 auto;
}
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
border-top-left-radius: 0;
}
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
border-top-right-radius: 0;
}
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
border-bottom-left-radius: 0;
}
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
border-bottom-right-radius: 0;
}
.v-table--fixed-height > .v-table__wrapper {
overflow-y: auto;
}
.v-table--fixed-header > .v-table__wrapper > table > thead {
position: sticky;
top: 0;
z-index: 2;
}
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
border-bottom: 0px !important;
}
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
position: sticky;
bottom: 0;
z-index: 1;
}
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
border-top: 0px !important;
}

View File

@ -0,0 +1,56 @@
import { createVNode as _createVNode } from "vue";
// Styles
import "./VTable.css";
// Composables
import { makeComponentProps } from "../../composables/component.mjs";
import { makeDensityProps, useDensity } from "../../composables/density.mjs";
import { makeTagProps } from "../../composables/tag.mjs";
import { makeThemeProps, provideTheme } from "../../composables/theme.mjs"; // Utilities
import { convertToUnit, genericComponent, propsFactory, useRender } from "../../util/index.mjs";
export const makeVTableProps = propsFactory({
fixedHeader: Boolean,
fixedFooter: Boolean,
height: [Number, String],
hover: Boolean,
...makeComponentProps(),
...makeDensityProps(),
...makeTagProps(),
...makeThemeProps()
}, 'VTable');
export const VTable = genericComponent()({
name: 'VTable',
props: makeVTableProps(),
setup(props, _ref) {
let {
slots,
emit
} = _ref;
const {
themeClasses
} = provideTheme(props);
const {
densityClasses
} = useDensity(props);
useRender(() => _createVNode(props.tag, {
"class": ['v-table', {
'v-table--fixed-height': !!props.height,
'v-table--fixed-header': props.fixedHeader,
'v-table--fixed-footer': props.fixedFooter,
'v-table--has-top': !!slots.top,
'v-table--has-bottom': !!slots.bottom,
'v-table--hover': props.hover
}, themeClasses.value, densityClasses.value, props.class],
"style": props.style
}, {
default: () => [slots.top?.(), slots.default ? _createVNode("div", {
"class": "v-table__wrapper",
"style": {
height: convertToUnit(props.height)
}
}, [_createVNode("table", null, [slots.default()])]) : slots.wrapper?.(), slots.bottom?.()]
}));
return {};
}
});
//# sourceMappingURL=VTable.mjs.map

View File

@ -0,0 +1 @@
{"version":3,"file":"VTable.mjs","names":["makeComponentProps","makeDensityProps","useDensity","makeTagProps","makeThemeProps","provideTheme","convertToUnit","genericComponent","propsFactory","useRender","makeVTableProps","fixedHeader","Boolean","fixedFooter","height","Number","String","hover","VTable","name","props","setup","_ref","slots","emit","themeClasses","densityClasses","_createVNode","tag","top","bottom","value","class","style","default","wrapper"],"sources":["../../../src/components/VTable/VTable.tsx"],"sourcesContent":["// Styles\nimport './VTable.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { makeDensityProps, useDensity } from '@/composables/density'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { convertToUnit, genericComponent, propsFactory, useRender } from '@/util'\n\nexport type VTableSlots = {\n default: never\n top: never\n bottom: never\n wrapper: never\n}\n\nexport const makeVTableProps = propsFactory({\n fixedHeader: Boolean,\n fixedFooter: Boolean,\n height: [Number, String],\n hover: Boolean,\n\n ...makeComponentProps(),\n ...makeDensityProps(),\n ...makeTagProps(),\n ...makeThemeProps(),\n}, 'VTable')\n\nexport const VTable = genericComponent<VTableSlots>()({\n name: 'VTable',\n\n props: makeVTableProps(),\n\n setup (props, { slots, emit }) {\n const { themeClasses } = provideTheme(props)\n const { densityClasses } = useDensity(props)\n\n useRender(() => (\n <props.tag\n class={[\n 'v-table',\n {\n 'v-table--fixed-height': !!props.height,\n 'v-table--fixed-header': props.fixedHeader,\n 'v-table--fixed-footer': props.fixedFooter,\n 'v-table--has-top': !!slots.top,\n 'v-table--has-bottom': !!slots.bottom,\n 'v-table--hover': props.hover,\n },\n themeClasses.value,\n densityClasses.value,\n props.class,\n ]}\n style={ props.style }\n >\n { slots.top?.() }\n\n { slots.default ? (\n <div\n class=\"v-table__wrapper\"\n style={{ height: convertToUnit(props.height) }}\n >\n <table>\n { slots.default() }\n </table>\n </div>\n ) : slots.wrapper?.()}\n\n { slots.bottom?.() }\n </props.tag>\n ))\n\n return {}\n },\n})\n\nexport type VTable = InstanceType<typeof VTable>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,kBAAkB;AAAA,SAClBC,gBAAgB,EAAEC,UAAU;AAAA,SAC5BC,YAAY;AAAA,SACZC,cAAc,EAAEC,YAAY,uCAErC;AAAA,SACSC,aAAa,EAAEC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS;AASjE,OAAO,MAAMC,eAAe,GAAGF,YAAY,CAAC;EAC1CG,WAAW,EAAEC,OAAO;EACpBC,WAAW,EAAED,OAAO;EACpBE,MAAM,EAAE,CAACC,MAAM,EAAEC,MAAM,CAAC;EACxBC,KAAK,EAAEL,OAAO;EAEd,GAAGZ,kBAAkB,CAAC,CAAC;EACvB,GAAGC,gBAAgB,CAAC,CAAC;EACrB,GAAGE,YAAY,CAAC,CAAC;EACjB,GAAGC,cAAc,CAAC;AACpB,CAAC,EAAE,QAAQ,CAAC;AAEZ,OAAO,MAAMc,MAAM,GAAGX,gBAAgB,CAAc,CAAC,CAAC;EACpDY,IAAI,EAAE,QAAQ;EAEdC,KAAK,EAAEV,eAAe,CAAC,CAAC;EAExBW,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAmB;IAAA,IAAjB;MAAEC,KAAK;MAAEC;IAAK,CAAC,GAAAF,IAAA;IAC3B,MAAM;MAAEG;IAAa,CAAC,GAAGpB,YAAY,CAACe,KAAK,CAAC;IAC5C,MAAM;MAAEM;IAAe,CAAC,GAAGxB,UAAU,CAACkB,KAAK,CAAC;IAE5CX,SAAS,CAAC,MAAAkB,YAAA,CAAAP,KAAA,CAAAQ,GAAA;MAAA,SAEC,CACL,SAAS,EACT;QACE,uBAAuB,EAAE,CAAC,CAACR,KAAK,CAACN,MAAM;QACvC,uBAAuB,EAAEM,KAAK,CAACT,WAAW;QAC1C,uBAAuB,EAAES,KAAK,CAACP,WAAW;QAC1C,kBAAkB,EAAE,CAAC,CAACU,KAAK,CAACM,GAAG;QAC/B,qBAAqB,EAAE,CAAC,CAACN,KAAK,CAACO,MAAM;QACrC,gBAAgB,EAAEV,KAAK,CAACH;MAC1B,CAAC,EACDQ,YAAY,CAACM,KAAK,EAClBL,cAAc,CAACK,KAAK,EACpBX,KAAK,CAACY,KAAK,CACZ;MAAA,SACOZ,KAAK,CAACa;IAAK;MAAAC,OAAA,EAAAA,CAAA,MAEjBX,KAAK,CAACM,GAAG,GAAG,CAAC,EAEbN,KAAK,CAACW,OAAO,GAAAP,YAAA;QAAA;QAAA,SAGJ;UAAEb,MAAM,EAAER,aAAa,CAACc,KAAK,CAACN,MAAM;QAAE;MAAC,IAAAa,YAAA,iBAG1CJ,KAAK,CAACW,OAAO,CAAC,CAAC,OAGnBX,KAAK,CAACY,OAAO,GAAG,CAAC,EAEnBZ,KAAK,CAACO,MAAM,GAAG,CAAC;IAAA,EAErB,CAAC;IAEF,OAAO,CAAC,CAAC;EACX;AACF,CAAC,CAAC"}

View File

@ -0,0 +1,169 @@
@use '../../styles/tools'
@use '../../styles/settings'
@use './variables' as *
@use './mixins' as *
// Theme
.v-table
@include tools.theme($table-theme...)
font-size: $table-font-size
transition-duration: $table-transition-duration
transition-property: $table-transition-property
transition-timing-function: $table-transition-timing-function
.v-table-divider
border-right: $table-border
.v-table__wrapper
> table
> thead
> tr
> th
border-bottom: $table-border
> tbody
> tr
&:not(:last-child)
> td,
> th
border-bottom: $table-border
> tfoot
> tr
> td,
> th
border-top: $table-border
&.v-table--hover
> .v-table__wrapper
> table
> tbody
> tr
> td
position: relative
&:hover > td::after
@include tools.absolute(true)
background: $table-hover-color
pointer-events: none
&.v-table--fixed-header
> .v-table__wrapper
> table
> thead
> tr
> th
background: $table-background
box-shadow: inset 0 -1px 0 $table-border-color
z-index: 1
&.v-table--fixed-footer
> tfoot
> tr
> th,
> td
background: $table-background
box-shadow: inset 0 1px 0 $table-border-color
// Block
.v-table
border-radius: inherit
// Do not inherit line-height
line-height: $table-line-height
max-width: 100%
display: flex
flex-direction: column
> .v-table__wrapper
> table
width: 100%
border-spacing: 0
> tbody,
> thead,
> tfoot
> tr
> td,
> th
padding: $table-column-padding
transition-duration: $table-transition-duration
transition-property: $table-transition-property
transition-timing-function: $table-transition-timing-function
> td
height: var(--v-table-row-height)
> th
height: var(--v-table-header-height)
font-weight: $table-header-font-weight
user-select: none
text-align: start
@at-root
@include tools.density('v-table', $table-density) using ($modifier)
--v-table-header-height: #{$table-header-height + $modifier}
--v-table-row-height: #{$table-row-height + $modifier}
// Elements
.v-table__wrapper
border-radius: inherit
overflow: auto
flex: 1 1 auto
// Modifiers
.v-table--has-top
> .v-table__wrapper
> table
> tbody
> tr
&:first-child
&:hover
> td
&:first-child
border-top-left-radius: 0
&:last-child
border-top-right-radius: 0
.v-table--has-bottom
> .v-table__wrapper
> table
> tbody
> tr
&:last-child
&:hover
> td
&:first-child
border-bottom-left-radius: 0
&:last-child
border-bottom-right-radius: 0
.v-table--fixed-height
> .v-table__wrapper
overflow-y: auto
.v-table--fixed-header
> .v-table__wrapper
> table
> thead
position: sticky
top: 0
z-index: 2
> tr
> th
border-bottom: 0px !important
.v-table--fixed-footer
> .v-table__wrapper
> table
> tfoot
> tr
position: sticky
bottom: 0
z-index: 1
> td,
> th
border-top: 0px !important

View File

@ -0,0 +1,25 @@
@use 'sass:map';
@use './variables' as *;
@mixin table-density ($densities) {
@each $density, $properties in $densities {
.v-table--density-#{$density} {
> .v-table__wrapper {
> table {
> tbody,
> thead,
> tfoot {
> tr {
> th {
height: map-get($properties, header)
}
> td {
height: map-get($properties, row)
}
}
}
}
}
}
}
}

View File

@ -0,0 +1,29 @@
@use 'sass:math';
@use 'sass:map';
@use '../../styles/settings';
@use '../../styles/tools';
// VTable
$table-background: rgb(var(--v-theme-surface)) !default;
$table-color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity)) !default;
$table-density: ('default': 0, 'comfortable': -2, 'compact': -4) !default;
$table-header-height: 56px !default;
$table-header-font-weight: 500 !default;
$table-header-font-size: tools.map-deep-get(settings.$typography, 'caption', 'size') !default;
$table-font-size: tools.map-deep-get(settings.$typography, 'body-2', 'size') !default;
$table-row-height: 52px !default;
$table-row-font-size: tools.map-deep-get(settings.$typography, 'subtitle-2', 'size') !default;
$table-border-color: rgba(var(--v-border-color), var(--v-border-opacity)) !default;
$table-border: thin solid $table-border-color !default;
$table-hover-color: rgba(var(--v-border-color), var(--v-hover-opacity)) !default;
$table-line-height: 1.5 !default;
$table-column-padding: 0 16px !default;
$table-transition-duration: 0.28s !default;
$table-transition-property: box-shadow, opacity, background, height !default;
$table-transition-timing-function: settings.$standard-easing !default;
// Lists
$table-theme: (
$table-background,
$table-color,
) !default;

View File

@ -0,0 +1,228 @@
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>>;
}
type Density = null | 'default' | 'comfortable' | 'compact';
declare const VTable: {
new (...args: any[]): vue.CreateComponentPublicInstance<{
style: vue.StyleValue;
tag: string;
density: Density;
hover: boolean;
fixedHeader: boolean;
fixedFooter: boolean;
} & {
height?: string | number | undefined;
class?: any;
theme?: string | undefined;
} & {
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
default?: (() => vue.VNodeChild) | undefined;
top?: (() => vue.VNodeChild) | undefined;
bottom?: (() => vue.VNodeChild) | undefined;
wrapper?: (() => vue.VNodeChild) | undefined;
};
'v-slots'?: {
default?: false | (() => vue.VNodeChild) | undefined;
top?: false | (() => vue.VNodeChild) | undefined;
bottom?: false | (() => vue.VNodeChild) | undefined;
wrapper?: false | (() => vue.VNodeChild) | undefined;
} | undefined;
} & {
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
style: vue.StyleValue;
tag: string;
density: Density;
hover: boolean;
fixedHeader: boolean;
fixedFooter: boolean;
} & {
height?: string | number | undefined;
class?: any;
theme?: string | undefined;
} & {
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
default?: (() => vue.VNodeChild) | undefined;
top?: (() => vue.VNodeChild) | undefined;
bottom?: (() => vue.VNodeChild) | undefined;
wrapper?: (() => vue.VNodeChild) | undefined;
};
'v-slots'?: {
default?: false | (() => vue.VNodeChild) | undefined;
top?: false | (() => vue.VNodeChild) | undefined;
bottom?: false | (() => vue.VNodeChild) | undefined;
wrapper?: false | (() => vue.VNodeChild) | undefined;
} | undefined;
} & {
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
}, {
style: vue.StyleValue;
tag: string;
density: Density;
hover: boolean;
fixedHeader: boolean;
fixedFooter: boolean;
}, true, {}, vue.SlotsType<Partial<{
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
[key: string]: any;
}>[];
top: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
[key: string]: any;
}>[];
bottom: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
[key: string]: any;
}>[];
wrapper: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
[key: string]: any;
}>[];
}>>, {
P: {};
B: {};
D: {};
C: {};
M: {};
Defaults: {};
}, {
style: vue.StyleValue;
tag: string;
density: Density;
hover: boolean;
fixedHeader: boolean;
fixedFooter: boolean;
} & {
height?: string | number | undefined;
class?: any;
theme?: string | undefined;
} & {
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
default?: (() => vue.VNodeChild) | undefined;
top?: (() => vue.VNodeChild) | undefined;
bottom?: (() => vue.VNodeChild) | undefined;
wrapper?: (() => vue.VNodeChild) | undefined;
};
'v-slots'?: {
default?: false | (() => vue.VNodeChild) | undefined;
top?: false | (() => vue.VNodeChild) | undefined;
bottom?: false | (() => vue.VNodeChild) | undefined;
wrapper?: false | (() => vue.VNodeChild) | undefined;
} | undefined;
} & {
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
}, {}, {}, {}, {}, {
style: vue.StyleValue;
tag: string;
density: Density;
hover: boolean;
fixedHeader: boolean;
fixedFooter: boolean;
}>;
__isFragment?: undefined;
__isTeleport?: undefined;
__isSuspense?: undefined;
} & vue.ComponentOptionsBase<{
style: vue.StyleValue;
tag: string;
density: Density;
hover: boolean;
fixedHeader: boolean;
fixedFooter: boolean;
} & {
height?: string | number | undefined;
class?: any;
theme?: string | undefined;
} & {
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
default?: (() => vue.VNodeChild) | undefined;
top?: (() => vue.VNodeChild) | undefined;
bottom?: (() => vue.VNodeChild) | undefined;
wrapper?: (() => vue.VNodeChild) | undefined;
};
'v-slots'?: {
default?: false | (() => vue.VNodeChild) | undefined;
top?: false | (() => vue.VNodeChild) | undefined;
bottom?: false | (() => vue.VNodeChild) | undefined;
wrapper?: false | (() => vue.VNodeChild) | undefined;
} | undefined;
} & {
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
style: vue.StyleValue;
tag: string;
density: Density;
hover: boolean;
fixedHeader: boolean;
fixedFooter: boolean;
}, {}, string, vue.SlotsType<Partial<{
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
[key: string]: any;
}>[];
top: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
[key: string]: any;
}>[];
bottom: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
[key: string]: any;
}>[];
wrapper: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
[key: string]: any;
}>[];
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
theme: StringConstructor;
tag: {
type: StringConstructor;
default: string;
};
density: {
type: vue.PropType<Density>;
default: string;
validator: (v: any) => boolean;
};
class: vue.PropType<any>;
style: {
type: vue.PropType<vue.StyleValue>;
default: null;
};
fixedHeader: BooleanConstructor;
fixedFooter: BooleanConstructor;
height: (StringConstructor | NumberConstructor)[];
hover: BooleanConstructor;
}, vue.ExtractPropTypes<{
theme: StringConstructor;
tag: {
type: StringConstructor;
default: string;
};
density: {
type: vue.PropType<Density>;
default: string;
validator: (v: any) => boolean;
};
class: vue.PropType<any>;
style: {
type: vue.PropType<vue.StyleValue>;
default: null;
};
fixedHeader: BooleanConstructor;
fixedFooter: BooleanConstructor;
height: (StringConstructor | NumberConstructor)[];
hover: BooleanConstructor;
}>>;
type VTable = InstanceType<typeof VTable>;
export { VTable };

View File

@ -0,0 +1,2 @@
export { VTable } from "./VTable.mjs";
//# sourceMappingURL=index.mjs.map

View File

@ -0,0 +1 @@
{"version":3,"file":"index.mjs","names":["VTable"],"sources":["../../../src/components/VTable/index.ts"],"sourcesContent":["export { VTable } from './VTable'\n"],"mappings":"SAASA,MAAM"}