Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
57
VApp/node_modules/vuetify/lib/iconsets/fa-svg.d.mts
generated
vendored
Normal file
57
VApp/node_modules/vuetify/lib/iconsets/fa-svg.d.mts
generated
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
import { JSXComponent, PropType } from 'vue';
|
||||
|
||||
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
||||
declare const IconValue: PropType<IconValue>;
|
||||
interface IconAliases {
|
||||
[name: string]: IconValue;
|
||||
complete: IconValue;
|
||||
cancel: IconValue;
|
||||
close: IconValue;
|
||||
delete: IconValue;
|
||||
clear: IconValue;
|
||||
success: IconValue;
|
||||
info: IconValue;
|
||||
warning: IconValue;
|
||||
error: IconValue;
|
||||
prev: IconValue;
|
||||
next: IconValue;
|
||||
checkboxOn: IconValue;
|
||||
checkboxOff: IconValue;
|
||||
checkboxIndeterminate: IconValue;
|
||||
delimiter: IconValue;
|
||||
sortAsc: IconValue;
|
||||
sortDesc: IconValue;
|
||||
expand: IconValue;
|
||||
menu: IconValue;
|
||||
subgroup: IconValue;
|
||||
dropdown: IconValue;
|
||||
radioOn: IconValue;
|
||||
radioOff: IconValue;
|
||||
edit: IconValue;
|
||||
ratingEmpty: IconValue;
|
||||
ratingFull: IconValue;
|
||||
ratingHalf: IconValue;
|
||||
loading: IconValue;
|
||||
first: IconValue;
|
||||
last: IconValue;
|
||||
unfold: IconValue;
|
||||
file: IconValue;
|
||||
plus: IconValue;
|
||||
minus: IconValue;
|
||||
calendar: IconValue;
|
||||
}
|
||||
interface IconProps {
|
||||
tag: string;
|
||||
icon?: IconValue;
|
||||
disabled?: Boolean;
|
||||
}
|
||||
type IconComponent = JSXComponent<IconProps>;
|
||||
interface IconSet {
|
||||
component: IconComponent;
|
||||
}
|
||||
|
||||
declare const aliases: IconAliases;
|
||||
declare const fa: IconSet;
|
||||
//# sourceMappingURL=fa-svg.d.ts.map
|
||||
|
||||
export { aliases, fa };
|
20
VApp/node_modules/vuetify/lib/iconsets/fa-svg.mjs
generated
vendored
Normal file
20
VApp/node_modules/vuetify/lib/iconsets/fa-svg.mjs
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
// Utilities
|
||||
import { h, resolveComponent } from 'vue';
|
||||
import { aliases as faAliases } from "./fa.mjs"; // Types
|
||||
const aliases = faAliases;
|
||||
const fa = {
|
||||
component: props => {
|
||||
const {
|
||||
icon,
|
||||
...rest
|
||||
} = props;
|
||||
const stringIcon = icon;
|
||||
return h(props.tag, rest, [h(resolveComponent('font-awesome-icon'), {
|
||||
key: stringIcon,
|
||||
// TODO: https://github.com/FortAwesome/vue-fontawesome/issues/250
|
||||
icon: stringIcon.includes(' fa-') ? stringIcon.split(' fa-') : stringIcon
|
||||
})]);
|
||||
}
|
||||
};
|
||||
export { aliases, fa };
|
||||
//# sourceMappingURL=fa-svg.mjs.map
|
1
VApp/node_modules/vuetify/lib/iconsets/fa-svg.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/iconsets/fa-svg.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"fa-svg.mjs","names":["h","resolveComponent","aliases","faAliases","fa","component","props","icon","rest","stringIcon","tag","key","includes","split"],"sources":["../../src/iconsets/fa-svg.ts"],"sourcesContent":["// Utilities\nimport { h, resolveComponent } from 'vue'\nimport { aliases as faAliases } from './fa'\n\n// Types\nimport type { IconSet } from '@/composables/icons'\n\nconst aliases = faAliases\n\nconst fa: IconSet = {\n component: props => {\n const { icon, ...rest } = props\n const stringIcon = icon as string\n return h(props.tag, rest, [\n h(resolveComponent('font-awesome-icon'), {\n key: stringIcon, // TODO: https://github.com/FortAwesome/vue-fontawesome/issues/250\n icon: stringIcon.includes(' fa-') ? stringIcon.split(' fa-') : stringIcon,\n }),\n ])\n },\n}\n\nexport { aliases, fa }\n"],"mappings":"AAAA;AACA,SAASA,CAAC,EAAEC,gBAAgB,QAAQ,KAAK;AAAA,SAChCC,OAAO,IAAIC,SAAS,oBAE7B;AAGA,MAAMD,OAAO,GAAGC,SAAS;AAEzB,MAAMC,EAAW,GAAG;EAClBC,SAAS,EAAEC,KAAK,IAAI;IAClB,MAAM;MAAEC,IAAI;MAAE,GAAGC;IAAK,CAAC,GAAGF,KAAK;IAC/B,MAAMG,UAAU,GAAGF,IAAc;IACjC,OAAOP,CAAC,CAACM,KAAK,CAACI,GAAG,EAAEF,IAAI,EAAE,CACxBR,CAAC,CAACC,gBAAgB,CAAC,mBAAmB,CAAC,EAAE;MACvCU,GAAG,EAAEF,UAAU;MAAE;MACjBF,IAAI,EAAEE,UAAU,CAACG,QAAQ,CAAC,MAAM,CAAC,GAAGH,UAAU,CAACI,KAAK,CAAC,MAAM,CAAC,GAAGJ;IACjE,CAAC,CAAC,CACH,CAAC;EACJ;AACF,CAAC;AAED,SAASP,OAAO,EAAEE,EAAE"}
|
57
VApp/node_modules/vuetify/lib/iconsets/fa.d.mts
generated
vendored
Normal file
57
VApp/node_modules/vuetify/lib/iconsets/fa.d.mts
generated
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
import { JSXComponent, PropType } from 'vue';
|
||||
|
||||
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
||||
declare const IconValue: PropType<IconValue>;
|
||||
interface IconAliases {
|
||||
[name: string]: IconValue;
|
||||
complete: IconValue;
|
||||
cancel: IconValue;
|
||||
close: IconValue;
|
||||
delete: IconValue;
|
||||
clear: IconValue;
|
||||
success: IconValue;
|
||||
info: IconValue;
|
||||
warning: IconValue;
|
||||
error: IconValue;
|
||||
prev: IconValue;
|
||||
next: IconValue;
|
||||
checkboxOn: IconValue;
|
||||
checkboxOff: IconValue;
|
||||
checkboxIndeterminate: IconValue;
|
||||
delimiter: IconValue;
|
||||
sortAsc: IconValue;
|
||||
sortDesc: IconValue;
|
||||
expand: IconValue;
|
||||
menu: IconValue;
|
||||
subgroup: IconValue;
|
||||
dropdown: IconValue;
|
||||
radioOn: IconValue;
|
||||
radioOff: IconValue;
|
||||
edit: IconValue;
|
||||
ratingEmpty: IconValue;
|
||||
ratingFull: IconValue;
|
||||
ratingHalf: IconValue;
|
||||
loading: IconValue;
|
||||
first: IconValue;
|
||||
last: IconValue;
|
||||
unfold: IconValue;
|
||||
file: IconValue;
|
||||
plus: IconValue;
|
||||
minus: IconValue;
|
||||
calendar: IconValue;
|
||||
}
|
||||
interface IconProps {
|
||||
tag: string;
|
||||
icon?: IconValue;
|
||||
disabled?: Boolean;
|
||||
}
|
||||
type IconComponent = JSXComponent<IconProps>;
|
||||
interface IconSet {
|
||||
component: IconComponent;
|
||||
}
|
||||
|
||||
declare const aliases: IconAliases;
|
||||
declare const fa: IconSet;
|
||||
//# sourceMappingURL=fa.d.ts.map
|
||||
|
||||
export { aliases, fa };
|
50
VApp/node_modules/vuetify/lib/iconsets/fa.mjs
generated
vendored
Normal file
50
VApp/node_modules/vuetify/lib/iconsets/fa.mjs
generated
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
// Composables
|
||||
import { VClassIcon } from "../composables/icons.mjs"; // Types
|
||||
const aliases = {
|
||||
collapse: 'fas fa-chevron-up',
|
||||
complete: 'fas fa-check',
|
||||
cancel: 'fas fa-times-circle',
|
||||
close: 'fas fa-times',
|
||||
delete: 'fas fa-times-circle',
|
||||
// delete (e.g. v-chip close)
|
||||
clear: 'fas fa-times-circle',
|
||||
// delete (e.g. v-chip close)
|
||||
success: 'fas fa-check-circle',
|
||||
info: 'fas fa-info-circle',
|
||||
warning: 'fas fa-exclamation',
|
||||
error: 'fas fa-exclamation-triangle',
|
||||
prev: 'fas fa-chevron-left',
|
||||
next: 'fas fa-chevron-right',
|
||||
checkboxOn: 'fas fa-check-square',
|
||||
checkboxOff: 'far fa-square',
|
||||
// note 'far'
|
||||
checkboxIndeterminate: 'fas fa-minus-square',
|
||||
delimiter: 'fas fa-circle',
|
||||
// for carousel
|
||||
sortAsc: 'fas fa-arrow-up',
|
||||
sortDesc: 'fas fa-arrow-down',
|
||||
expand: 'fas fa-chevron-down',
|
||||
menu: 'fas fa-bars',
|
||||
subgroup: 'fas fa-caret-down',
|
||||
dropdown: 'fas fa-caret-down',
|
||||
radioOn: 'far fa-dot-circle',
|
||||
radioOff: 'far fa-circle',
|
||||
edit: 'fas fa-edit',
|
||||
ratingEmpty: 'far fa-star',
|
||||
ratingFull: 'fas fa-star',
|
||||
ratingHalf: 'fas fa-star-half',
|
||||
loading: 'fas fa-sync',
|
||||
first: 'fas fa-step-backward',
|
||||
last: 'fas fa-step-forward',
|
||||
unfold: 'fas fa-arrows-alt-v',
|
||||
file: 'fas fa-paperclip',
|
||||
plus: 'fas fa-plus',
|
||||
minus: 'fas fa-minus',
|
||||
calendar: 'fas fa-calendar',
|
||||
eyeDropper: 'fas fa-eye-dropper'
|
||||
};
|
||||
const fa = {
|
||||
component: VClassIcon
|
||||
};
|
||||
export { aliases, fa };
|
||||
//# sourceMappingURL=fa.mjs.map
|
1
VApp/node_modules/vuetify/lib/iconsets/fa.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/iconsets/fa.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"fa.mjs","names":["VClassIcon","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","eyeDropper","fa","component"],"sources":["../../src/iconsets/fa.ts"],"sourcesContent":["// Composables\nimport { VClassIcon } from '@/composables/icons'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'fas fa-chevron-up',\n complete: 'fas fa-check',\n cancel: 'fas fa-times-circle',\n close: 'fas fa-times',\n delete: 'fas fa-times-circle', // delete (e.g. v-chip close)\n clear: 'fas fa-times-circle', // delete (e.g. v-chip close)\n success: 'fas fa-check-circle',\n info: 'fas fa-info-circle',\n warning: 'fas fa-exclamation',\n error: 'fas fa-exclamation-triangle',\n prev: 'fas fa-chevron-left',\n next: 'fas fa-chevron-right',\n checkboxOn: 'fas fa-check-square',\n checkboxOff: 'far fa-square', // note 'far'\n checkboxIndeterminate: 'fas fa-minus-square',\n delimiter: 'fas fa-circle', // for carousel\n sortAsc: 'fas fa-arrow-up',\n sortDesc: 'fas fa-arrow-down',\n expand: 'fas fa-chevron-down',\n menu: 'fas fa-bars',\n subgroup: 'fas fa-caret-down',\n dropdown: 'fas fa-caret-down',\n radioOn: 'far fa-dot-circle',\n radioOff: 'far fa-circle',\n edit: 'fas fa-edit',\n ratingEmpty: 'far fa-star',\n ratingFull: 'fas fa-star',\n ratingHalf: 'fas fa-star-half',\n loading: 'fas fa-sync',\n first: 'fas fa-step-backward',\n last: 'fas fa-step-forward',\n unfold: 'fas fa-arrows-alt-v',\n file: 'fas fa-paperclip',\n plus: 'fas fa-plus',\n minus: 'fas fa-minus',\n calendar: 'fas fa-calendar',\n eyeDropper: 'fas fa-eye-dropper',\n}\n\nconst fa: IconSet = {\n component: VClassIcon,\n}\n\nexport { aliases, fa }\n"],"mappings":"AAAA;AAAA,SACSA,UAAU,oCAEnB;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,mBAAmB;EAC7BC,QAAQ,EAAE,cAAc;EACxBC,MAAM,EAAE,qBAAqB;EAC7BC,KAAK,EAAE,cAAc;EACrBC,MAAM,EAAE,qBAAqB;EAAE;EAC/BC,KAAK,EAAE,qBAAqB;EAAE;EAC9BC,OAAO,EAAE,qBAAqB;EAC9BC,IAAI,EAAE,oBAAoB;EAC1BC,OAAO,EAAE,oBAAoB;EAC7BC,KAAK,EAAE,6BAA6B;EACpCC,IAAI,EAAE,qBAAqB;EAC3BC,IAAI,EAAE,sBAAsB;EAC5BC,UAAU,EAAE,qBAAqB;EACjCC,WAAW,EAAE,eAAe;EAAE;EAC9BC,qBAAqB,EAAE,qBAAqB;EAC5CC,SAAS,EAAE,eAAe;EAAE;EAC5BC,OAAO,EAAE,iBAAiB;EAC1BC,QAAQ,EAAE,mBAAmB;EAC7BC,MAAM,EAAE,qBAAqB;EAC7BC,IAAI,EAAE,aAAa;EACnBC,QAAQ,EAAE,mBAAmB;EAC7BC,QAAQ,EAAE,mBAAmB;EAC7BC,OAAO,EAAE,mBAAmB;EAC5BC,QAAQ,EAAE,eAAe;EACzBC,IAAI,EAAE,aAAa;EACnBC,WAAW,EAAE,aAAa;EAC1BC,UAAU,EAAE,aAAa;EACzBC,UAAU,EAAE,kBAAkB;EAC9BC,OAAO,EAAE,aAAa;EACtBC,KAAK,EAAE,sBAAsB;EAC7BC,IAAI,EAAE,qBAAqB;EAC3BC,MAAM,EAAE,qBAAqB;EAC7BC,IAAI,EAAE,kBAAkB;EACxBC,IAAI,EAAE,aAAa;EACnBC,KAAK,EAAE,cAAc;EACrBC,QAAQ,EAAE,iBAAiB;EAC3BC,UAAU,EAAE;AACd,CAAC;AAED,MAAMC,EAAW,GAAG;EAClBC,SAAS,EAAExC;AACb,CAAC;AAED,SAASC,OAAO,EAAEsC,EAAE"}
|
57
VApp/node_modules/vuetify/lib/iconsets/fa4.d.mts
generated
vendored
Normal file
57
VApp/node_modules/vuetify/lib/iconsets/fa4.d.mts
generated
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
import { JSXComponent, PropType } from 'vue';
|
||||
|
||||
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
||||
declare const IconValue: PropType<IconValue>;
|
||||
interface IconAliases {
|
||||
[name: string]: IconValue;
|
||||
complete: IconValue;
|
||||
cancel: IconValue;
|
||||
close: IconValue;
|
||||
delete: IconValue;
|
||||
clear: IconValue;
|
||||
success: IconValue;
|
||||
info: IconValue;
|
||||
warning: IconValue;
|
||||
error: IconValue;
|
||||
prev: IconValue;
|
||||
next: IconValue;
|
||||
checkboxOn: IconValue;
|
||||
checkboxOff: IconValue;
|
||||
checkboxIndeterminate: IconValue;
|
||||
delimiter: IconValue;
|
||||
sortAsc: IconValue;
|
||||
sortDesc: IconValue;
|
||||
expand: IconValue;
|
||||
menu: IconValue;
|
||||
subgroup: IconValue;
|
||||
dropdown: IconValue;
|
||||
radioOn: IconValue;
|
||||
radioOff: IconValue;
|
||||
edit: IconValue;
|
||||
ratingEmpty: IconValue;
|
||||
ratingFull: IconValue;
|
||||
ratingHalf: IconValue;
|
||||
loading: IconValue;
|
||||
first: IconValue;
|
||||
last: IconValue;
|
||||
unfold: IconValue;
|
||||
file: IconValue;
|
||||
plus: IconValue;
|
||||
minus: IconValue;
|
||||
calendar: IconValue;
|
||||
}
|
||||
interface IconProps {
|
||||
tag: string;
|
||||
icon?: IconValue;
|
||||
disabled?: Boolean;
|
||||
}
|
||||
type IconComponent = JSXComponent<IconProps>;
|
||||
interface IconSet {
|
||||
component: IconComponent;
|
||||
}
|
||||
|
||||
declare const aliases: IconAliases;
|
||||
declare const fa: IconSet;
|
||||
//# sourceMappingURL=fa4.d.ts.map
|
||||
|
||||
export { aliases, fa };
|
57
VApp/node_modules/vuetify/lib/iconsets/fa4.mjs
generated
vendored
Normal file
57
VApp/node_modules/vuetify/lib/iconsets/fa4.mjs
generated
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
// Composables
|
||||
import { VClassIcon } from "../composables/icons.mjs"; // Utilities
|
||||
import { h } from 'vue';
|
||||
|
||||
// Types
|
||||
|
||||
const aliases = {
|
||||
collapse: 'fa-chevron-up',
|
||||
complete: 'fa-check',
|
||||
cancel: 'fa-times-circle',
|
||||
close: 'fa-times',
|
||||
delete: 'fa-times-circle',
|
||||
// delete (e.g. v-chip close)
|
||||
clear: 'fa-check-circle',
|
||||
// delete (e.g. v-chip close)
|
||||
success: 'fa-check-circle',
|
||||
info: 'fa-info-circle',
|
||||
warning: 'fa-exclamation',
|
||||
error: 'fa-exclamation-triangle',
|
||||
prev: 'fa-chevron-left',
|
||||
next: 'fa-chevron-right',
|
||||
checkboxOn: 'fa-check-square',
|
||||
checkboxOff: 'fa-square-o',
|
||||
checkboxIndeterminate: 'fa-minus-square',
|
||||
delimiter: 'fa-circle',
|
||||
// for carousel
|
||||
sortAsc: 'fa-arrow-up',
|
||||
sortDesc: 'fa-arrow-down',
|
||||
expand: 'fa-chevron-down',
|
||||
menu: 'fa-bars',
|
||||
subgroup: 'fa-caret-down',
|
||||
dropdown: 'fa-caret-down',
|
||||
radioOn: 'fa-dot-circle-o',
|
||||
radioOff: 'fa-circle-o',
|
||||
edit: 'fa-pencil',
|
||||
ratingEmpty: 'fa-star-o',
|
||||
ratingFull: 'fa-star',
|
||||
ratingHalf: 'fa-star-half-o',
|
||||
loading: 'fa-refresh',
|
||||
first: 'fa-step-backward',
|
||||
last: 'fa-step-forward',
|
||||
unfold: 'fa-angle-double-down',
|
||||
file: 'fa-paperclip',
|
||||
plus: 'fa-plus',
|
||||
minus: 'fa-minus',
|
||||
calendar: 'fa-calendar',
|
||||
eyeDropper: 'fa-eye-dropper'
|
||||
};
|
||||
const fa = {
|
||||
// Not using mergeProps here, functional components merge props by default (?)
|
||||
component: props => h(VClassIcon, {
|
||||
...props,
|
||||
class: 'fa'
|
||||
})
|
||||
};
|
||||
export { aliases, fa };
|
||||
//# sourceMappingURL=fa4.mjs.map
|
1
VApp/node_modules/vuetify/lib/iconsets/fa4.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/iconsets/fa4.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"fa4.mjs","names":["VClassIcon","h","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","eyeDropper","fa","component","props","class"],"sources":["../../src/iconsets/fa4.ts"],"sourcesContent":["// Composables\nimport { VClassIcon } from '@/composables/icons'\n\n// Utilities\nimport { h } from 'vue'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'fa-chevron-up',\n complete: 'fa-check',\n cancel: 'fa-times-circle',\n close: 'fa-times',\n delete: 'fa-times-circle', // delete (e.g. v-chip close)\n clear: 'fa-check-circle', // delete (e.g. v-chip close)\n success: 'fa-check-circle',\n info: 'fa-info-circle',\n warning: 'fa-exclamation',\n error: 'fa-exclamation-triangle',\n prev: 'fa-chevron-left',\n next: 'fa-chevron-right',\n checkboxOn: 'fa-check-square',\n checkboxOff: 'fa-square-o',\n checkboxIndeterminate: 'fa-minus-square',\n delimiter: 'fa-circle', // for carousel\n sortAsc: 'fa-arrow-up',\n sortDesc: 'fa-arrow-down',\n expand: 'fa-chevron-down',\n menu: 'fa-bars',\n subgroup: 'fa-caret-down',\n dropdown: 'fa-caret-down',\n radioOn: 'fa-dot-circle-o',\n radioOff: 'fa-circle-o',\n edit: 'fa-pencil',\n ratingEmpty: 'fa-star-o',\n ratingFull: 'fa-star',\n ratingHalf: 'fa-star-half-o',\n loading: 'fa-refresh',\n first: 'fa-step-backward',\n last: 'fa-step-forward',\n unfold: 'fa-angle-double-down',\n file: 'fa-paperclip',\n plus: 'fa-plus',\n minus: 'fa-minus',\n calendar: 'fa-calendar',\n eyeDropper: 'fa-eye-dropper',\n}\n\nconst fa: IconSet = {\n // Not using mergeProps here, functional components merge props by default (?)\n component: props => h(VClassIcon, { ...props, class: 'fa' }),\n}\n\nexport { aliases, fa }\n"],"mappings":"AAAA;AAAA,SACSA,UAAU,oCAEnB;AACA,SAASC,CAAC,QAAQ,KAAK;;AAEvB;;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,eAAe;EACzBC,QAAQ,EAAE,UAAU;EACpBC,MAAM,EAAE,iBAAiB;EACzBC,KAAK,EAAE,UAAU;EACjBC,MAAM,EAAE,iBAAiB;EAAE;EAC3BC,KAAK,EAAE,iBAAiB;EAAE;EAC1BC,OAAO,EAAE,iBAAiB;EAC1BC,IAAI,EAAE,gBAAgB;EACtBC,OAAO,EAAE,gBAAgB;EACzBC,KAAK,EAAE,yBAAyB;EAChCC,IAAI,EAAE,iBAAiB;EACvBC,IAAI,EAAE,kBAAkB;EACxBC,UAAU,EAAE,iBAAiB;EAC7BC,WAAW,EAAE,aAAa;EAC1BC,qBAAqB,EAAE,iBAAiB;EACxCC,SAAS,EAAE,WAAW;EAAE;EACxBC,OAAO,EAAE,aAAa;EACtBC,QAAQ,EAAE,eAAe;EACzBC,MAAM,EAAE,iBAAiB;EACzBC,IAAI,EAAE,SAAS;EACfC,QAAQ,EAAE,eAAe;EACzBC,QAAQ,EAAE,eAAe;EACzBC,OAAO,EAAE,iBAAiB;EAC1BC,QAAQ,EAAE,aAAa;EACvBC,IAAI,EAAE,WAAW;EACjBC,WAAW,EAAE,WAAW;EACxBC,UAAU,EAAE,SAAS;EACrBC,UAAU,EAAE,gBAAgB;EAC5BC,OAAO,EAAE,YAAY;EACrBC,KAAK,EAAE,kBAAkB;EACzBC,IAAI,EAAE,iBAAiB;EACvBC,MAAM,EAAE,sBAAsB;EAC9BC,IAAI,EAAE,cAAc;EACpBC,IAAI,EAAE,SAAS;EACfC,KAAK,EAAE,UAAU;EACjBC,QAAQ,EAAE,aAAa;EACvBC,UAAU,EAAE;AACd,CAAC;AAED,MAAMC,EAAW,GAAG;EAClB;EACAC,SAAS,EAAEC,KAAK,IAAIzC,CAAC,CAACD,UAAU,EAAE;IAAE,GAAG0C,KAAK;IAAEC,KAAK,EAAE;EAAK,CAAC;AAC7D,CAAC;AAED,SAASzC,OAAO,EAAEsC,EAAE"}
|
57
VApp/node_modules/vuetify/lib/iconsets/md.d.mts
generated
vendored
Normal file
57
VApp/node_modules/vuetify/lib/iconsets/md.d.mts
generated
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
import { JSXComponent, PropType } from 'vue';
|
||||
|
||||
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
||||
declare const IconValue: PropType<IconValue>;
|
||||
interface IconAliases {
|
||||
[name: string]: IconValue;
|
||||
complete: IconValue;
|
||||
cancel: IconValue;
|
||||
close: IconValue;
|
||||
delete: IconValue;
|
||||
clear: IconValue;
|
||||
success: IconValue;
|
||||
info: IconValue;
|
||||
warning: IconValue;
|
||||
error: IconValue;
|
||||
prev: IconValue;
|
||||
next: IconValue;
|
||||
checkboxOn: IconValue;
|
||||
checkboxOff: IconValue;
|
||||
checkboxIndeterminate: IconValue;
|
||||
delimiter: IconValue;
|
||||
sortAsc: IconValue;
|
||||
sortDesc: IconValue;
|
||||
expand: IconValue;
|
||||
menu: IconValue;
|
||||
subgroup: IconValue;
|
||||
dropdown: IconValue;
|
||||
radioOn: IconValue;
|
||||
radioOff: IconValue;
|
||||
edit: IconValue;
|
||||
ratingEmpty: IconValue;
|
||||
ratingFull: IconValue;
|
||||
ratingHalf: IconValue;
|
||||
loading: IconValue;
|
||||
first: IconValue;
|
||||
last: IconValue;
|
||||
unfold: IconValue;
|
||||
file: IconValue;
|
||||
plus: IconValue;
|
||||
minus: IconValue;
|
||||
calendar: IconValue;
|
||||
}
|
||||
interface IconProps {
|
||||
tag: string;
|
||||
icon?: IconValue;
|
||||
disabled?: Boolean;
|
||||
}
|
||||
type IconComponent = JSXComponent<IconProps>;
|
||||
interface IconSet {
|
||||
component: IconComponent;
|
||||
}
|
||||
|
||||
declare const aliases: IconAliases;
|
||||
declare const md: IconSet;
|
||||
//# sourceMappingURL=md.d.ts.map
|
||||
|
||||
export { aliases, md };
|
56
VApp/node_modules/vuetify/lib/iconsets/md.mjs
generated
vendored
Normal file
56
VApp/node_modules/vuetify/lib/iconsets/md.mjs
generated
vendored
Normal file
@ -0,0 +1,56 @@
|
||||
// Composables
|
||||
import { VLigatureIcon } from "../composables/icons.mjs"; // Utilities
|
||||
import { h } from 'vue';
|
||||
|
||||
// Types
|
||||
|
||||
const aliases = {
|
||||
collapse: 'keyboard_arrow_up',
|
||||
complete: 'check',
|
||||
cancel: 'cancel',
|
||||
close: 'close',
|
||||
delete: 'cancel',
|
||||
// delete (e.g. v-chip close)
|
||||
clear: 'cancel',
|
||||
success: 'check_circle',
|
||||
info: 'info',
|
||||
warning: 'priority_high',
|
||||
error: 'warning',
|
||||
prev: 'chevron_left',
|
||||
next: 'chevron_right',
|
||||
checkboxOn: 'check_box',
|
||||
checkboxOff: 'check_box_outline_blank',
|
||||
checkboxIndeterminate: 'indeterminate_check_box',
|
||||
delimiter: 'fiber_manual_record',
|
||||
// for carousel
|
||||
sortAsc: 'arrow_upward',
|
||||
sortDesc: 'arrow_downward',
|
||||
expand: 'keyboard_arrow_down',
|
||||
menu: 'menu',
|
||||
subgroup: 'arrow_drop_down',
|
||||
dropdown: 'arrow_drop_down',
|
||||
radioOn: 'radio_button_checked',
|
||||
radioOff: 'radio_button_unchecked',
|
||||
edit: 'edit',
|
||||
ratingEmpty: 'star_border',
|
||||
ratingFull: 'star',
|
||||
ratingHalf: 'star_half',
|
||||
loading: 'cached',
|
||||
first: 'first_page',
|
||||
last: 'last_page',
|
||||
unfold: 'unfold_more',
|
||||
file: 'attach_file',
|
||||
plus: 'add',
|
||||
minus: 'remove',
|
||||
calendar: 'event',
|
||||
eyeDropper: 'colorize'
|
||||
};
|
||||
const md = {
|
||||
// Not using mergeProps here, functional components merge props by default (?)
|
||||
component: props => h(VLigatureIcon, {
|
||||
...props,
|
||||
class: 'material-icons'
|
||||
})
|
||||
};
|
||||
export { aliases, md };
|
||||
//# sourceMappingURL=md.mjs.map
|
1
VApp/node_modules/vuetify/lib/iconsets/md.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/iconsets/md.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"md.mjs","names":["VLigatureIcon","h","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","eyeDropper","md","component","props","class"],"sources":["../../src/iconsets/md.ts"],"sourcesContent":["// Composables\nimport { VLigatureIcon } from '@/composables/icons'\n\n// Utilities\nimport { h } from 'vue'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'keyboard_arrow_up',\n complete: 'check',\n cancel: 'cancel',\n close: 'close',\n delete: 'cancel', // delete (e.g. v-chip close)\n clear: 'cancel',\n success: 'check_circle',\n info: 'info',\n warning: 'priority_high',\n error: 'warning',\n prev: 'chevron_left',\n next: 'chevron_right',\n checkboxOn: 'check_box',\n checkboxOff: 'check_box_outline_blank',\n checkboxIndeterminate: 'indeterminate_check_box',\n delimiter: 'fiber_manual_record', // for carousel\n sortAsc: 'arrow_upward',\n sortDesc: 'arrow_downward',\n expand: 'keyboard_arrow_down',\n menu: 'menu',\n subgroup: 'arrow_drop_down',\n dropdown: 'arrow_drop_down',\n radioOn: 'radio_button_checked',\n radioOff: 'radio_button_unchecked',\n edit: 'edit',\n ratingEmpty: 'star_border',\n ratingFull: 'star',\n ratingHalf: 'star_half',\n loading: 'cached',\n first: 'first_page',\n last: 'last_page',\n unfold: 'unfold_more',\n file: 'attach_file',\n plus: 'add',\n minus: 'remove',\n calendar: 'event',\n eyeDropper: 'colorize',\n}\n\nconst md: IconSet = {\n // Not using mergeProps here, functional components merge props by default (?)\n component: props => h(VLigatureIcon, { ...props, class: 'material-icons' }),\n}\n\nexport { aliases, md }\n"],"mappings":"AAAA;AAAA,SACSA,aAAa,oCAEtB;AACA,SAASC,CAAC,QAAQ,KAAK;;AAEvB;;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,mBAAmB;EAC7BC,QAAQ,EAAE,OAAO;EACjBC,MAAM,EAAE,QAAQ;EAChBC,KAAK,EAAE,OAAO;EACdC,MAAM,EAAE,QAAQ;EAAE;EAClBC,KAAK,EAAE,QAAQ;EACfC,OAAO,EAAE,cAAc;EACvBC,IAAI,EAAE,MAAM;EACZC,OAAO,EAAE,eAAe;EACxBC,KAAK,EAAE,SAAS;EAChBC,IAAI,EAAE,cAAc;EACpBC,IAAI,EAAE,eAAe;EACrBC,UAAU,EAAE,WAAW;EACvBC,WAAW,EAAE,yBAAyB;EACtCC,qBAAqB,EAAE,yBAAyB;EAChDC,SAAS,EAAE,qBAAqB;EAAE;EAClCC,OAAO,EAAE,cAAc;EACvBC,QAAQ,EAAE,gBAAgB;EAC1BC,MAAM,EAAE,qBAAqB;EAC7BC,IAAI,EAAE,MAAM;EACZC,QAAQ,EAAE,iBAAiB;EAC3BC,QAAQ,EAAE,iBAAiB;EAC3BC,OAAO,EAAE,sBAAsB;EAC/BC,QAAQ,EAAE,wBAAwB;EAClCC,IAAI,EAAE,MAAM;EACZC,WAAW,EAAE,aAAa;EAC1BC,UAAU,EAAE,MAAM;EAClBC,UAAU,EAAE,WAAW;EACvBC,OAAO,EAAE,QAAQ;EACjBC,KAAK,EAAE,YAAY;EACnBC,IAAI,EAAE,WAAW;EACjBC,MAAM,EAAE,aAAa;EACrBC,IAAI,EAAE,aAAa;EACnBC,IAAI,EAAE,KAAK;EACXC,KAAK,EAAE,QAAQ;EACfC,QAAQ,EAAE,OAAO;EACjBC,UAAU,EAAE;AACd,CAAC;AAED,MAAMC,EAAW,GAAG;EAClB;EACAC,SAAS,EAAEC,KAAK,IAAIzC,CAAC,CAACD,aAAa,EAAE;IAAE,GAAG0C,KAAK;IAAEC,KAAK,EAAE;EAAiB,CAAC;AAC5E,CAAC;AAED,SAASzC,OAAO,EAAEsC,EAAE"}
|
57
VApp/node_modules/vuetify/lib/iconsets/mdi-svg.d.mts
generated
vendored
Normal file
57
VApp/node_modules/vuetify/lib/iconsets/mdi-svg.d.mts
generated
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
import { JSXComponent, PropType } from 'vue';
|
||||
|
||||
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
||||
declare const IconValue: PropType<IconValue>;
|
||||
interface IconAliases {
|
||||
[name: string]: IconValue;
|
||||
complete: IconValue;
|
||||
cancel: IconValue;
|
||||
close: IconValue;
|
||||
delete: IconValue;
|
||||
clear: IconValue;
|
||||
success: IconValue;
|
||||
info: IconValue;
|
||||
warning: IconValue;
|
||||
error: IconValue;
|
||||
prev: IconValue;
|
||||
next: IconValue;
|
||||
checkboxOn: IconValue;
|
||||
checkboxOff: IconValue;
|
||||
checkboxIndeterminate: IconValue;
|
||||
delimiter: IconValue;
|
||||
sortAsc: IconValue;
|
||||
sortDesc: IconValue;
|
||||
expand: IconValue;
|
||||
menu: IconValue;
|
||||
subgroup: IconValue;
|
||||
dropdown: IconValue;
|
||||
radioOn: IconValue;
|
||||
radioOff: IconValue;
|
||||
edit: IconValue;
|
||||
ratingEmpty: IconValue;
|
||||
ratingFull: IconValue;
|
||||
ratingHalf: IconValue;
|
||||
loading: IconValue;
|
||||
first: IconValue;
|
||||
last: IconValue;
|
||||
unfold: IconValue;
|
||||
file: IconValue;
|
||||
plus: IconValue;
|
||||
minus: IconValue;
|
||||
calendar: IconValue;
|
||||
}
|
||||
interface IconProps {
|
||||
tag: string;
|
||||
icon?: IconValue;
|
||||
disabled?: Boolean;
|
||||
}
|
||||
type IconComponent = JSXComponent<IconProps>;
|
||||
interface IconSet {
|
||||
component: IconComponent;
|
||||
}
|
||||
|
||||
declare const aliases: IconAliases;
|
||||
declare const mdi: IconSet;
|
||||
//# sourceMappingURL=mdi-svg.d.ts.map
|
||||
|
||||
export { aliases, mdi };
|
49
VApp/node_modules/vuetify/lib/iconsets/mdi-svg.mjs
generated
vendored
Normal file
49
VApp/node_modules/vuetify/lib/iconsets/mdi-svg.mjs
generated
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
/* eslint-disable max-len */
|
||||
// Composables
|
||||
import { VSvgIcon } from "../composables/icons.mjs"; // Types
|
||||
const aliases = {
|
||||
collapse: 'svg:M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z',
|
||||
complete: 'svg:M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z',
|
||||
cancel: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z',
|
||||
close: 'svg:M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z',
|
||||
delete: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z',
|
||||
// delete (e.g. v-chip close)
|
||||
clear: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z',
|
||||
success: 'svg:M12,2C17.52,2 22,6.48 22,12C22,17.52 17.52,22 12,22C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2M11,16.5L18,9.5L16.59,8.09L11,13.67L7.91,10.59L6.5,12L11,16.5Z',
|
||||
info: 'svg:M13,9H11V7H13M13,17H11V11H13M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z',
|
||||
warning: 'svg:M13,13H11V7H13M13,17H11V15H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z',
|
||||
error: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z',
|
||||
prev: 'svg:M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z',
|
||||
next: 'svg:M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z',
|
||||
checkboxOn: 'svg:M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3Z',
|
||||
checkboxOff: 'svg:M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z',
|
||||
checkboxIndeterminate: 'svg:M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3Z',
|
||||
delimiter: 'svg:M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z',
|
||||
// for carousel
|
||||
sortAsc: 'svg:M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z',
|
||||
sortDesc: 'svg:M11,4H13V16L18.5,10.5L19.92,11.92L12,19.84L4.08,11.92L5.5,10.5L11,16V4Z',
|
||||
expand: 'svg:M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z',
|
||||
menu: 'svg:M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z',
|
||||
subgroup: 'svg:M7,10L12,15L17,10H7Z',
|
||||
dropdown: 'svg:M7,10L12,15L17,10H7Z',
|
||||
radioOn: 'svg:M12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C16.42,4 20,7.58 20,12C20,16.42 16.42,20 12,20M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2M12,7C9.24,7 7,9.24 7,12C7,14.76 9.24,17 12,17C14.76,17 17,14.76 17,12C17,9.24 14.76,7 12,7Z',
|
||||
radioOff: 'svg:M12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C16.42,4 20,7.58 20,12C20,16.42 16.42,20 12,20M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z',
|
||||
edit: 'svg:M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.12,5.12L18.87,8.87M3,17.25V21H6.75L17.81,9.93L14.06,6.18L3,17.25Z',
|
||||
ratingEmpty: 'svg:M12,15.39L8.24,17.66L9.23,13.38L5.91,10.5L10.29,10.13L12,6.09L13.71,10.13L18.09,10.5L14.77,13.38L15.76,17.66M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z',
|
||||
ratingFull: 'svg:M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z',
|
||||
ratingHalf: 'svg:M12,15.4V6.1L13.71,10.13L18.09,10.5L14.77,13.39L15.76,17.67M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z',
|
||||
loading: 'svg:M19,8L15,12H18C18,15.31 15.31,18 12,18C11,18 10.03,17.75 9.2,17.3L7.74,18.76C8.97,19.54 10.43,20 12,20C16.42,20 20,16.42 20,12H23M6,12C6,8.69 8.69,6 12,6C13,6 13.97,6.25 14.8,6.7L16.26,5.24C15.03,4.46 13.57,4 12,4C7.58,4 4,7.58 4,12H1L5,16L9,12',
|
||||
first: 'svg:M18.41,16.59L13.82,12L18.41,7.41L17,6L11,12L17,18L18.41,16.59M6,6H8V18H6V6Z',
|
||||
last: 'svg:M5.59,7.41L10.18,12L5.59,16.59L7,18L13,12L7,6L5.59,7.41M16,6H18V18H16V6Z',
|
||||
unfold: 'svg:M12,18.17L8.83,15L7.42,16.41L12,21L16.59,16.41L15.17,15M12,5.83L15.17,9L16.58,7.59L12,3L7.41,7.59L8.83,9L12,5.83Z',
|
||||
file: 'svg:M16.5,6V17.5C16.5,19.71 14.71,21.5 12.5,21.5C10.29,21.5 8.5,19.71 8.5,17.5V5C8.5,3.62 9.62,2.5 11,2.5C12.38,2.5 13.5,3.62 13.5,5V15.5C13.5,16.05 13.05,16.5 12.5,16.5C11.95,16.5 11.5,16.05 11.5,15.5V6H10V15.5C10,16.88 11.12,18 12.5,18C13.88,18 15,16.88 15,15.5V5C15,2.79 13.21,1 11,1C8.79,1 7,2.79 7,5V17.5C7,20.54 9.46,23 12.5,23C15.54,23 18,20.54 18,17.5V6H16.5Z',
|
||||
plus: 'svg:M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z',
|
||||
minus: 'svg:M19,13H5V11H19V13Z',
|
||||
calendar: 'svg:M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z',
|
||||
eyeDropper: 'svg:M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z'
|
||||
};
|
||||
const mdi = {
|
||||
component: VSvgIcon
|
||||
};
|
||||
export { aliases, mdi };
|
||||
//# sourceMappingURL=mdi-svg.mjs.map
|
1
VApp/node_modules/vuetify/lib/iconsets/mdi-svg.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/iconsets/mdi-svg.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
57
VApp/node_modules/vuetify/lib/iconsets/mdi.d.mts
generated
vendored
Normal file
57
VApp/node_modules/vuetify/lib/iconsets/mdi.d.mts
generated
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
import { JSXComponent, PropType } from 'vue';
|
||||
|
||||
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
||||
declare const IconValue: PropType<IconValue>;
|
||||
interface IconAliases {
|
||||
[name: string]: IconValue;
|
||||
complete: IconValue;
|
||||
cancel: IconValue;
|
||||
close: IconValue;
|
||||
delete: IconValue;
|
||||
clear: IconValue;
|
||||
success: IconValue;
|
||||
info: IconValue;
|
||||
warning: IconValue;
|
||||
error: IconValue;
|
||||
prev: IconValue;
|
||||
next: IconValue;
|
||||
checkboxOn: IconValue;
|
||||
checkboxOff: IconValue;
|
||||
checkboxIndeterminate: IconValue;
|
||||
delimiter: IconValue;
|
||||
sortAsc: IconValue;
|
||||
sortDesc: IconValue;
|
||||
expand: IconValue;
|
||||
menu: IconValue;
|
||||
subgroup: IconValue;
|
||||
dropdown: IconValue;
|
||||
radioOn: IconValue;
|
||||
radioOff: IconValue;
|
||||
edit: IconValue;
|
||||
ratingEmpty: IconValue;
|
||||
ratingFull: IconValue;
|
||||
ratingHalf: IconValue;
|
||||
loading: IconValue;
|
||||
first: IconValue;
|
||||
last: IconValue;
|
||||
unfold: IconValue;
|
||||
file: IconValue;
|
||||
plus: IconValue;
|
||||
minus: IconValue;
|
||||
calendar: IconValue;
|
||||
}
|
||||
interface IconProps {
|
||||
tag: string;
|
||||
icon?: IconValue;
|
||||
disabled?: Boolean;
|
||||
}
|
||||
type IconComponent = JSXComponent<IconProps>;
|
||||
interface IconSet {
|
||||
component: IconComponent;
|
||||
}
|
||||
|
||||
declare const aliases: IconAliases;
|
||||
declare const mdi: IconSet;
|
||||
//# sourceMappingURL=mdi.d.ts.map
|
||||
|
||||
export { aliases, mdi };
|
56
VApp/node_modules/vuetify/lib/iconsets/mdi.mjs
generated
vendored
Normal file
56
VApp/node_modules/vuetify/lib/iconsets/mdi.mjs
generated
vendored
Normal file
@ -0,0 +1,56 @@
|
||||
// Composables
|
||||
import { VClassIcon } from "../composables/icons.mjs"; // Utilities
|
||||
import { h } from 'vue';
|
||||
|
||||
// Types
|
||||
|
||||
const aliases = {
|
||||
collapse: 'mdi-chevron-up',
|
||||
complete: 'mdi-check',
|
||||
cancel: 'mdi-close-circle',
|
||||
close: 'mdi-close',
|
||||
delete: 'mdi-close-circle',
|
||||
// delete (e.g. v-chip close)
|
||||
clear: 'mdi-close-circle',
|
||||
success: 'mdi-check-circle',
|
||||
info: 'mdi-information',
|
||||
warning: 'mdi-alert-circle',
|
||||
error: 'mdi-close-circle',
|
||||
prev: 'mdi-chevron-left',
|
||||
next: 'mdi-chevron-right',
|
||||
checkboxOn: 'mdi-checkbox-marked',
|
||||
checkboxOff: 'mdi-checkbox-blank-outline',
|
||||
checkboxIndeterminate: 'mdi-minus-box',
|
||||
delimiter: 'mdi-circle',
|
||||
// for carousel
|
||||
sortAsc: 'mdi-arrow-up',
|
||||
sortDesc: 'mdi-arrow-down',
|
||||
expand: 'mdi-chevron-down',
|
||||
menu: 'mdi-menu',
|
||||
subgroup: 'mdi-menu-down',
|
||||
dropdown: 'mdi-menu-down',
|
||||
radioOn: 'mdi-radiobox-marked',
|
||||
radioOff: 'mdi-radiobox-blank',
|
||||
edit: 'mdi-pencil',
|
||||
ratingEmpty: 'mdi-star-outline',
|
||||
ratingFull: 'mdi-star',
|
||||
ratingHalf: 'mdi-star-half-full',
|
||||
loading: 'mdi-cached',
|
||||
first: 'mdi-page-first',
|
||||
last: 'mdi-page-last',
|
||||
unfold: 'mdi-unfold-more-horizontal',
|
||||
file: 'mdi-paperclip',
|
||||
plus: 'mdi-plus',
|
||||
minus: 'mdi-minus',
|
||||
calendar: 'mdi-calendar',
|
||||
eyeDropper: 'mdi-eyedropper'
|
||||
};
|
||||
const mdi = {
|
||||
// Not using mergeProps here, functional components merge props by default (?)
|
||||
component: props => h(VClassIcon, {
|
||||
...props,
|
||||
class: 'mdi'
|
||||
})
|
||||
};
|
||||
export { aliases, mdi };
|
||||
//# sourceMappingURL=mdi.mjs.map
|
1
VApp/node_modules/vuetify/lib/iconsets/mdi.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/iconsets/mdi.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"mdi.mjs","names":["VClassIcon","h","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","eyeDropper","mdi","component","props","class"],"sources":["../../src/iconsets/mdi.ts"],"sourcesContent":["// Composables\nimport { VClassIcon } from '@/composables/icons'\n\n// Utilities\nimport { h } from 'vue'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'mdi-chevron-up',\n complete: 'mdi-check',\n cancel: 'mdi-close-circle',\n close: 'mdi-close',\n delete: 'mdi-close-circle', // delete (e.g. v-chip close)\n clear: 'mdi-close-circle',\n success: 'mdi-check-circle',\n info: 'mdi-information',\n warning: 'mdi-alert-circle',\n error: 'mdi-close-circle',\n prev: 'mdi-chevron-left',\n next: 'mdi-chevron-right',\n checkboxOn: 'mdi-checkbox-marked',\n checkboxOff: 'mdi-checkbox-blank-outline',\n checkboxIndeterminate: 'mdi-minus-box',\n delimiter: 'mdi-circle', // for carousel\n sortAsc: 'mdi-arrow-up',\n sortDesc: 'mdi-arrow-down',\n expand: 'mdi-chevron-down',\n menu: 'mdi-menu',\n subgroup: 'mdi-menu-down',\n dropdown: 'mdi-menu-down',\n radioOn: 'mdi-radiobox-marked',\n radioOff: 'mdi-radiobox-blank',\n edit: 'mdi-pencil',\n ratingEmpty: 'mdi-star-outline',\n ratingFull: 'mdi-star',\n ratingHalf: 'mdi-star-half-full',\n loading: 'mdi-cached',\n first: 'mdi-page-first',\n last: 'mdi-page-last',\n unfold: 'mdi-unfold-more-horizontal',\n file: 'mdi-paperclip',\n plus: 'mdi-plus',\n minus: 'mdi-minus',\n calendar: 'mdi-calendar',\n eyeDropper: 'mdi-eyedropper',\n}\n\nconst mdi: IconSet = {\n // Not using mergeProps here, functional components merge props by default (?)\n component: (props: any) => h(VClassIcon, { ...props, class: 'mdi' }),\n}\n\nexport { aliases, mdi }\n"],"mappings":"AAAA;AAAA,SACSA,UAAU,oCAEnB;AACA,SAASC,CAAC,QAAQ,KAAK;;AAEvB;;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,gBAAgB;EAC1BC,QAAQ,EAAE,WAAW;EACrBC,MAAM,EAAE,kBAAkB;EAC1BC,KAAK,EAAE,WAAW;EAClBC,MAAM,EAAE,kBAAkB;EAAE;EAC5BC,KAAK,EAAE,kBAAkB;EACzBC,OAAO,EAAE,kBAAkB;EAC3BC,IAAI,EAAE,iBAAiB;EACvBC,OAAO,EAAE,kBAAkB;EAC3BC,KAAK,EAAE,kBAAkB;EACzBC,IAAI,EAAE,kBAAkB;EACxBC,IAAI,EAAE,mBAAmB;EACzBC,UAAU,EAAE,qBAAqB;EACjCC,WAAW,EAAE,4BAA4B;EACzCC,qBAAqB,EAAE,eAAe;EACtCC,SAAS,EAAE,YAAY;EAAE;EACzBC,OAAO,EAAE,cAAc;EACvBC,QAAQ,EAAE,gBAAgB;EAC1BC,MAAM,EAAE,kBAAkB;EAC1BC,IAAI,EAAE,UAAU;EAChBC,QAAQ,EAAE,eAAe;EACzBC,QAAQ,EAAE,eAAe;EACzBC,OAAO,EAAE,qBAAqB;EAC9BC,QAAQ,EAAE,oBAAoB;EAC9BC,IAAI,EAAE,YAAY;EAClBC,WAAW,EAAE,kBAAkB;EAC/BC,UAAU,EAAE,UAAU;EACtBC,UAAU,EAAE,oBAAoB;EAChCC,OAAO,EAAE,YAAY;EACrBC,KAAK,EAAE,gBAAgB;EACvBC,IAAI,EAAE,eAAe;EACrBC,MAAM,EAAE,4BAA4B;EACpCC,IAAI,EAAE,eAAe;EACrBC,IAAI,EAAE,UAAU;EAChBC,KAAK,EAAE,WAAW;EAClBC,QAAQ,EAAE,cAAc;EACxBC,UAAU,EAAE;AACd,CAAC;AAED,MAAMC,GAAY,GAAG;EACnB;EACAC,SAAS,EAAGC,KAAU,IAAKzC,CAAC,CAACD,UAAU,EAAE;IAAE,GAAG0C,KAAK;IAAEC,KAAK,EAAE;EAAM,CAAC;AACrE,CAAC;AAED,SAASzC,OAAO,EAAEsC,GAAG"}
|
Reference in New Issue
Block a user