Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
234
VApp/node_modules/vuetify/lib/blueprints/index.d.mts
generated
vendored
Normal file
234
VApp/node_modules/vuetify/lib/blueprints/index.d.mts
generated
vendored
Normal file
@ -0,0 +1,234 @@
|
||||
import { Ref, ComponentPublicInstance, JSXComponent, PropType } from 'vue';
|
||||
|
||||
interface DateAdapter<T = unknown> {
|
||||
date(value?: any): T | null;
|
||||
format(date: T, formatString: string): string;
|
||||
toJsDate(value: T): Date;
|
||||
parseISO(date: string): T;
|
||||
toISO(date: T): string;
|
||||
startOfDay(date: T): T;
|
||||
endOfDay(date: T): T;
|
||||
startOfWeek(date: T): T;
|
||||
endOfWeek(date: T): T;
|
||||
startOfMonth(date: T): T;
|
||||
endOfMonth(date: T): T;
|
||||
startOfYear(date: T): T;
|
||||
endOfYear(date: T): T;
|
||||
isBefore(date: T, comparing: T): boolean;
|
||||
isAfter(date: T, comparing: T): boolean;
|
||||
isEqual(date: T, comparing: T): boolean;
|
||||
isSameDay(date: T, comparing: T): boolean;
|
||||
isSameMonth(date: T, comparing: T): boolean;
|
||||
isValid(date: any): boolean;
|
||||
isWithinRange(date: T, range: [T, T]): boolean;
|
||||
addMinutes(date: T, amount: number): T;
|
||||
addHours(date: T, amount: number): T;
|
||||
addDays(date: T, amount: number): T;
|
||||
addWeeks(date: T, amount: number): T;
|
||||
addMonths(date: T, amount: number): T;
|
||||
getYear(date: T): number;
|
||||
setYear(date: T, year: number): T;
|
||||
getDiff(date: T, comparing: T | string, unit?: string): number;
|
||||
getWeekArray(date: T): T[][];
|
||||
getWeekdays(): string[];
|
||||
getMonth(date: T): number;
|
||||
setMonth(date: T, month: number): T;
|
||||
getNextMonth(date: T): T;
|
||||
getHours(date: T): number;
|
||||
setHours(date: T, hours: number): T;
|
||||
getMinutes(date: T): number;
|
||||
setMinutes(date: T, minutes: number): T;
|
||||
}
|
||||
|
||||
interface LocaleMessages {
|
||||
[key: string]: LocaleMessages | string;
|
||||
}
|
||||
interface LocaleOptions {
|
||||
messages?: LocaleMessages;
|
||||
locale?: string;
|
||||
fallback?: string;
|
||||
adapter?: LocaleInstance;
|
||||
}
|
||||
interface LocaleInstance {
|
||||
name: string;
|
||||
messages: Ref<LocaleMessages>;
|
||||
current: Ref<string>;
|
||||
fallback: Ref<string>;
|
||||
t: (key: string, ...params: unknown[]) => string;
|
||||
n: (value: number) => string;
|
||||
provide: (props: LocaleOptions) => LocaleInstance;
|
||||
}
|
||||
interface RtlOptions {
|
||||
rtl?: Record<string, boolean>;
|
||||
}
|
||||
|
||||
interface DateInstance<T = DateInstanceType['instanceType']> extends DateAdapter<T> {
|
||||
locale?: any;
|
||||
}
|
||||
/** Supports module augmentation to specify date object types */
|
||||
interface DateInstanceType {
|
||||
instanceType: unknown;
|
||||
}
|
||||
type InternalDateOptions<T = unknown> = {
|
||||
adapter: (new (options: {
|
||||
locale: any;
|
||||
formats?: any;
|
||||
}) => DateInstance<T>) | DateInstance<T>;
|
||||
formats?: Record<string, any>;
|
||||
locale: Record<string, any>;
|
||||
};
|
||||
type DateOptions<T = any> = Partial<InternalDateOptions<T>>;
|
||||
|
||||
type DeepPartial<T> = T extends object ? {
|
||||
[P in keyof T]?: DeepPartial<T[P]>;
|
||||
} : T;
|
||||
type ThemeOptions = false | {
|
||||
cspNonce?: string;
|
||||
defaultTheme?: string;
|
||||
variations?: false | VariationsOptions;
|
||||
themes?: Record<string, ThemeDefinition>;
|
||||
};
|
||||
type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
|
||||
interface VariationsOptions {
|
||||
colors: string[];
|
||||
lighten: number;
|
||||
darken: number;
|
||||
}
|
||||
interface InternalThemeDefinition {
|
||||
dark: boolean;
|
||||
colors: Colors;
|
||||
variables: Record<string, string | number>;
|
||||
}
|
||||
interface Colors extends BaseColors, OnColors {
|
||||
[key: string]: string;
|
||||
}
|
||||
interface BaseColors {
|
||||
background: string;
|
||||
surface: string;
|
||||
primary: string;
|
||||
secondary: string;
|
||||
success: string;
|
||||
warning: string;
|
||||
error: string;
|
||||
info: string;
|
||||
}
|
||||
interface OnColors {
|
||||
'on-background': string;
|
||||
'on-surface': string;
|
||||
'on-primary': string;
|
||||
'on-secondary': string;
|
||||
'on-success': string;
|
||||
'on-warning': string;
|
||||
'on-error': string;
|
||||
'on-info': string;
|
||||
}
|
||||
|
||||
declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
||||
type Breakpoint = typeof breakpoints[number];
|
||||
type DisplayBreakpoint = 'xs' | Breakpoint;
|
||||
type DisplayThresholds = {
|
||||
[key in DisplayBreakpoint]: number;
|
||||
};
|
||||
interface DisplayOptions {
|
||||
mobileBreakpoint?: number | DisplayBreakpoint;
|
||||
thresholds?: Partial<DisplayThresholds>;
|
||||
}
|
||||
type SSROptions = boolean | {
|
||||
clientWidth: number;
|
||||
clientHeight?: number;
|
||||
};
|
||||
|
||||
type DefaultsInstance = undefined | {
|
||||
[key: string]: undefined | Record<string, unknown>;
|
||||
global?: Record<string, unknown>;
|
||||
};
|
||||
type DefaultsOptions = Partial<DefaultsInstance>;
|
||||
|
||||
interface GoToOptions {
|
||||
container: ComponentPublicInstance | HTMLElement | string;
|
||||
duration: number;
|
||||
layout: boolean;
|
||||
offset: number;
|
||||
easing: string | ((t: number) => number);
|
||||
patterns: Record<string, (t: number) => number>;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
type IconOptions = {
|
||||
defaultSet?: string;
|
||||
aliases?: Partial<IconAliases>;
|
||||
sets?: Record<string, IconSet>;
|
||||
};
|
||||
|
||||
interface VuetifyOptions {
|
||||
aliases?: Record<string, any>;
|
||||
blueprint?: Blueprint;
|
||||
components?: Record<string, any>;
|
||||
date?: DateOptions;
|
||||
directives?: Record<string, any>;
|
||||
defaults?: DefaultsOptions;
|
||||
display?: DisplayOptions;
|
||||
goTo?: GoToOptions;
|
||||
theme?: ThemeOptions;
|
||||
icons?: IconOptions;
|
||||
locale?: LocaleOptions & RtlOptions;
|
||||
ssr?: SSROptions;
|
||||
}
|
||||
interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {
|
||||
}
|
||||
|
||||
declare const md1: Blueprint;
|
||||
|
||||
declare const md2: Blueprint;
|
||||
|
||||
declare const md3: Blueprint;
|
||||
|
||||
export { md1, md2, md3 };
|
4
VApp/node_modules/vuetify/lib/blueprints/index.mjs
generated
vendored
Normal file
4
VApp/node_modules/vuetify/lib/blueprints/index.mjs
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
export { md1 } from "./md1.mjs";
|
||||
export { md2 } from "./md2.mjs";
|
||||
export { md3 } from "./md3.mjs";
|
||||
//# sourceMappingURL=index.mjs.map
|
1
VApp/node_modules/vuetify/lib/blueprints/index.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/blueprints/index.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.mjs","names":["md1","md2","md3"],"sources":["../../src/blueprints/index.ts"],"sourcesContent":["export { md1 } from './md1'\nexport { md2 } from './md2'\nexport { md3 } from './md3'\n"],"mappings":"SAASA,GAAG;AAAA,SACHC,GAAG;AAAA,SACHC,GAAG"}
|
230
VApp/node_modules/vuetify/lib/blueprints/md1.d.mts
generated
vendored
Normal file
230
VApp/node_modules/vuetify/lib/blueprints/md1.d.mts
generated
vendored
Normal file
@ -0,0 +1,230 @@
|
||||
import { Ref, ComponentPublicInstance, JSXComponent, PropType } from 'vue';
|
||||
|
||||
interface DateAdapter<T = unknown> {
|
||||
date(value?: any): T | null;
|
||||
format(date: T, formatString: string): string;
|
||||
toJsDate(value: T): Date;
|
||||
parseISO(date: string): T;
|
||||
toISO(date: T): string;
|
||||
startOfDay(date: T): T;
|
||||
endOfDay(date: T): T;
|
||||
startOfWeek(date: T): T;
|
||||
endOfWeek(date: T): T;
|
||||
startOfMonth(date: T): T;
|
||||
endOfMonth(date: T): T;
|
||||
startOfYear(date: T): T;
|
||||
endOfYear(date: T): T;
|
||||
isBefore(date: T, comparing: T): boolean;
|
||||
isAfter(date: T, comparing: T): boolean;
|
||||
isEqual(date: T, comparing: T): boolean;
|
||||
isSameDay(date: T, comparing: T): boolean;
|
||||
isSameMonth(date: T, comparing: T): boolean;
|
||||
isValid(date: any): boolean;
|
||||
isWithinRange(date: T, range: [T, T]): boolean;
|
||||
addMinutes(date: T, amount: number): T;
|
||||
addHours(date: T, amount: number): T;
|
||||
addDays(date: T, amount: number): T;
|
||||
addWeeks(date: T, amount: number): T;
|
||||
addMonths(date: T, amount: number): T;
|
||||
getYear(date: T): number;
|
||||
setYear(date: T, year: number): T;
|
||||
getDiff(date: T, comparing: T | string, unit?: string): number;
|
||||
getWeekArray(date: T): T[][];
|
||||
getWeekdays(): string[];
|
||||
getMonth(date: T): number;
|
||||
setMonth(date: T, month: number): T;
|
||||
getNextMonth(date: T): T;
|
||||
getHours(date: T): number;
|
||||
setHours(date: T, hours: number): T;
|
||||
getMinutes(date: T): number;
|
||||
setMinutes(date: T, minutes: number): T;
|
||||
}
|
||||
|
||||
interface LocaleMessages {
|
||||
[key: string]: LocaleMessages | string;
|
||||
}
|
||||
interface LocaleOptions {
|
||||
messages?: LocaleMessages;
|
||||
locale?: string;
|
||||
fallback?: string;
|
||||
adapter?: LocaleInstance;
|
||||
}
|
||||
interface LocaleInstance {
|
||||
name: string;
|
||||
messages: Ref<LocaleMessages>;
|
||||
current: Ref<string>;
|
||||
fallback: Ref<string>;
|
||||
t: (key: string, ...params: unknown[]) => string;
|
||||
n: (value: number) => string;
|
||||
provide: (props: LocaleOptions) => LocaleInstance;
|
||||
}
|
||||
interface RtlOptions {
|
||||
rtl?: Record<string, boolean>;
|
||||
}
|
||||
|
||||
interface DateInstance<T = DateInstanceType['instanceType']> extends DateAdapter<T> {
|
||||
locale?: any;
|
||||
}
|
||||
/** Supports module augmentation to specify date object types */
|
||||
interface DateInstanceType {
|
||||
instanceType: unknown;
|
||||
}
|
||||
type InternalDateOptions<T = unknown> = {
|
||||
adapter: (new (options: {
|
||||
locale: any;
|
||||
formats?: any;
|
||||
}) => DateInstance<T>) | DateInstance<T>;
|
||||
formats?: Record<string, any>;
|
||||
locale: Record<string, any>;
|
||||
};
|
||||
type DateOptions<T = any> = Partial<InternalDateOptions<T>>;
|
||||
|
||||
type DeepPartial<T> = T extends object ? {
|
||||
[P in keyof T]?: DeepPartial<T[P]>;
|
||||
} : T;
|
||||
type ThemeOptions = false | {
|
||||
cspNonce?: string;
|
||||
defaultTheme?: string;
|
||||
variations?: false | VariationsOptions;
|
||||
themes?: Record<string, ThemeDefinition>;
|
||||
};
|
||||
type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
|
||||
interface VariationsOptions {
|
||||
colors: string[];
|
||||
lighten: number;
|
||||
darken: number;
|
||||
}
|
||||
interface InternalThemeDefinition {
|
||||
dark: boolean;
|
||||
colors: Colors;
|
||||
variables: Record<string, string | number>;
|
||||
}
|
||||
interface Colors extends BaseColors, OnColors {
|
||||
[key: string]: string;
|
||||
}
|
||||
interface BaseColors {
|
||||
background: string;
|
||||
surface: string;
|
||||
primary: string;
|
||||
secondary: string;
|
||||
success: string;
|
||||
warning: string;
|
||||
error: string;
|
||||
info: string;
|
||||
}
|
||||
interface OnColors {
|
||||
'on-background': string;
|
||||
'on-surface': string;
|
||||
'on-primary': string;
|
||||
'on-secondary': string;
|
||||
'on-success': string;
|
||||
'on-warning': string;
|
||||
'on-error': string;
|
||||
'on-info': string;
|
||||
}
|
||||
|
||||
declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
||||
type Breakpoint = typeof breakpoints[number];
|
||||
type DisplayBreakpoint = 'xs' | Breakpoint;
|
||||
type DisplayThresholds = {
|
||||
[key in DisplayBreakpoint]: number;
|
||||
};
|
||||
interface DisplayOptions {
|
||||
mobileBreakpoint?: number | DisplayBreakpoint;
|
||||
thresholds?: Partial<DisplayThresholds>;
|
||||
}
|
||||
type SSROptions = boolean | {
|
||||
clientWidth: number;
|
||||
clientHeight?: number;
|
||||
};
|
||||
|
||||
type DefaultsInstance = undefined | {
|
||||
[key: string]: undefined | Record<string, unknown>;
|
||||
global?: Record<string, unknown>;
|
||||
};
|
||||
type DefaultsOptions = Partial<DefaultsInstance>;
|
||||
|
||||
interface GoToOptions {
|
||||
container: ComponentPublicInstance | HTMLElement | string;
|
||||
duration: number;
|
||||
layout: boolean;
|
||||
offset: number;
|
||||
easing: string | ((t: number) => number);
|
||||
patterns: Record<string, (t: number) => number>;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
type IconOptions = {
|
||||
defaultSet?: string;
|
||||
aliases?: Partial<IconAliases>;
|
||||
sets?: Record<string, IconSet>;
|
||||
};
|
||||
|
||||
interface VuetifyOptions {
|
||||
aliases?: Record<string, any>;
|
||||
blueprint?: Blueprint;
|
||||
components?: Record<string, any>;
|
||||
date?: DateOptions;
|
||||
directives?: Record<string, any>;
|
||||
defaults?: DefaultsOptions;
|
||||
display?: DisplayOptions;
|
||||
goTo?: GoToOptions;
|
||||
theme?: ThemeOptions;
|
||||
icons?: IconOptions;
|
||||
locale?: LocaleOptions & RtlOptions;
|
||||
ssr?: SSROptions;
|
||||
}
|
||||
interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {
|
||||
}
|
||||
|
||||
declare const md1: Blueprint;
|
||||
|
||||
export { md1 };
|
70
VApp/node_modules/vuetify/lib/blueprints/md1.mjs
generated
vendored
Normal file
70
VApp/node_modules/vuetify/lib/blueprints/md1.mjs
generated
vendored
Normal file
@ -0,0 +1,70 @@
|
||||
// Icons
|
||||
import { mdi } from "../iconsets/mdi.mjs"; // Types
|
||||
export const md1 = {
|
||||
defaults: {
|
||||
global: {
|
||||
rounded: 'sm'
|
||||
},
|
||||
VAvatar: {
|
||||
rounded: 'circle'
|
||||
},
|
||||
VAutocomplete: {
|
||||
variant: 'underlined'
|
||||
},
|
||||
VBanner: {
|
||||
color: 'primary'
|
||||
},
|
||||
VBtn: {
|
||||
color: 'primary',
|
||||
rounded: 0
|
||||
},
|
||||
VCheckbox: {
|
||||
color: 'secondary'
|
||||
},
|
||||
VCombobox: {
|
||||
variant: 'underlined'
|
||||
},
|
||||
VSelect: {
|
||||
variant: 'underlined'
|
||||
},
|
||||
VSlider: {
|
||||
color: 'primary'
|
||||
},
|
||||
VTabs: {
|
||||
color: 'primary'
|
||||
},
|
||||
VTextarea: {
|
||||
variant: 'underlined'
|
||||
},
|
||||
VTextField: {
|
||||
variant: 'underlined'
|
||||
},
|
||||
VToolbar: {
|
||||
VBtn: {
|
||||
color: null
|
||||
}
|
||||
}
|
||||
},
|
||||
icons: {
|
||||
defaultSet: 'mdi',
|
||||
sets: {
|
||||
mdi
|
||||
}
|
||||
},
|
||||
theme: {
|
||||
themes: {
|
||||
light: {
|
||||
colors: {
|
||||
primary: '#3F51B5',
|
||||
'primary-darken-1': '#303F9F',
|
||||
'primary-lighten-1': '#C5CAE9',
|
||||
secondary: '#FF4081',
|
||||
'secondary-darken-1': '#F50057',
|
||||
'secondary-lighten-1': '#FF80AB',
|
||||
accent: '#009688'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=md1.mjs.map
|
1
VApp/node_modules/vuetify/lib/blueprints/md1.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/blueprints/md1.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"md1.mjs","names":["mdi","md1","defaults","global","rounded","VAvatar","VAutocomplete","variant","VBanner","color","VBtn","VCheckbox","VCombobox","VSelect","VSlider","VTabs","VTextarea","VTextField","VToolbar","icons","defaultSet","sets","theme","themes","light","colors","primary","secondary","accent"],"sources":["../../src/blueprints/md1.ts"],"sourcesContent":["// Icons\nimport { mdi } from '@/iconsets/mdi'\n\n// Types\nimport type { Blueprint } from '@/framework'\n\nexport const md1: Blueprint = {\n defaults: {\n global: {\n rounded: 'sm',\n },\n VAvatar: {\n rounded: 'circle',\n },\n VAutocomplete: {\n variant: 'underlined',\n },\n VBanner: {\n color: 'primary',\n },\n VBtn: {\n color: 'primary',\n rounded: 0,\n },\n VCheckbox: {\n color: 'secondary',\n },\n VCombobox: {\n variant: 'underlined',\n },\n VSelect: {\n variant: 'underlined',\n },\n VSlider: {\n color: 'primary',\n },\n VTabs: {\n color: 'primary',\n },\n VTextarea: {\n variant: 'underlined',\n },\n VTextField: {\n variant: 'underlined',\n },\n VToolbar: {\n VBtn: {\n color: null,\n },\n },\n },\n icons: {\n defaultSet: 'mdi',\n sets: {\n mdi,\n },\n },\n theme: {\n themes: {\n light: {\n colors: {\n primary: '#3F51B5',\n 'primary-darken-1': '#303F9F',\n 'primary-lighten-1': '#C5CAE9',\n secondary: '#FF4081',\n 'secondary-darken-1': '#F50057',\n 'secondary-lighten-1': '#FF80AB',\n accent: '#009688',\n },\n },\n },\n },\n}\n"],"mappings":"AAAA;AAAA,SACSA,GAAG,+BAEZ;AAGA,OAAO,MAAMC,GAAc,GAAG;EAC5BC,QAAQ,EAAE;IACRC,MAAM,EAAE;MACNC,OAAO,EAAE;IACX,CAAC;IACDC,OAAO,EAAE;MACPD,OAAO,EAAE;IACX,CAAC;IACDE,aAAa,EAAE;MACbC,OAAO,EAAE;IACX,CAAC;IACDC,OAAO,EAAE;MACPC,KAAK,EAAE;IACT,CAAC;IACDC,IAAI,EAAE;MACJD,KAAK,EAAE,SAAS;MAChBL,OAAO,EAAE;IACX,CAAC;IACDO,SAAS,EAAE;MACTF,KAAK,EAAE;IACT,CAAC;IACDG,SAAS,EAAE;MACTL,OAAO,EAAE;IACX,CAAC;IACDM,OAAO,EAAE;MACPN,OAAO,EAAE;IACX,CAAC;IACDO,OAAO,EAAE;MACPL,KAAK,EAAE;IACT,CAAC;IACDM,KAAK,EAAE;MACLN,KAAK,EAAE;IACT,CAAC;IACDO,SAAS,EAAE;MACTT,OAAO,EAAE;IACX,CAAC;IACDU,UAAU,EAAE;MACVV,OAAO,EAAE;IACX,CAAC;IACDW,QAAQ,EAAE;MACRR,IAAI,EAAE;QACJD,KAAK,EAAE;MACT;IACF;EACF,CAAC;EACDU,KAAK,EAAE;IACLC,UAAU,EAAE,KAAK;IACjBC,IAAI,EAAE;MACJrB;IACF;EACF,CAAC;EACDsB,KAAK,EAAE;IACLC,MAAM,EAAE;MACNC,KAAK,EAAE;QACLC,MAAM,EAAE;UACNC,OAAO,EAAE,SAAS;UAClB,kBAAkB,EAAE,SAAS;UAC7B,mBAAmB,EAAE,SAAS;UAC9BC,SAAS,EAAE,SAAS;UACpB,oBAAoB,EAAE,SAAS;UAC/B,qBAAqB,EAAE,SAAS;UAChCC,MAAM,EAAE;QACV;MACF;IACF;EACF;AACF,CAAC"}
|
230
VApp/node_modules/vuetify/lib/blueprints/md2.d.mts
generated
vendored
Normal file
230
VApp/node_modules/vuetify/lib/blueprints/md2.d.mts
generated
vendored
Normal file
@ -0,0 +1,230 @@
|
||||
import { Ref, ComponentPublicInstance, JSXComponent, PropType } from 'vue';
|
||||
|
||||
interface DateAdapter<T = unknown> {
|
||||
date(value?: any): T | null;
|
||||
format(date: T, formatString: string): string;
|
||||
toJsDate(value: T): Date;
|
||||
parseISO(date: string): T;
|
||||
toISO(date: T): string;
|
||||
startOfDay(date: T): T;
|
||||
endOfDay(date: T): T;
|
||||
startOfWeek(date: T): T;
|
||||
endOfWeek(date: T): T;
|
||||
startOfMonth(date: T): T;
|
||||
endOfMonth(date: T): T;
|
||||
startOfYear(date: T): T;
|
||||
endOfYear(date: T): T;
|
||||
isBefore(date: T, comparing: T): boolean;
|
||||
isAfter(date: T, comparing: T): boolean;
|
||||
isEqual(date: T, comparing: T): boolean;
|
||||
isSameDay(date: T, comparing: T): boolean;
|
||||
isSameMonth(date: T, comparing: T): boolean;
|
||||
isValid(date: any): boolean;
|
||||
isWithinRange(date: T, range: [T, T]): boolean;
|
||||
addMinutes(date: T, amount: number): T;
|
||||
addHours(date: T, amount: number): T;
|
||||
addDays(date: T, amount: number): T;
|
||||
addWeeks(date: T, amount: number): T;
|
||||
addMonths(date: T, amount: number): T;
|
||||
getYear(date: T): number;
|
||||
setYear(date: T, year: number): T;
|
||||
getDiff(date: T, comparing: T | string, unit?: string): number;
|
||||
getWeekArray(date: T): T[][];
|
||||
getWeekdays(): string[];
|
||||
getMonth(date: T): number;
|
||||
setMonth(date: T, month: number): T;
|
||||
getNextMonth(date: T): T;
|
||||
getHours(date: T): number;
|
||||
setHours(date: T, hours: number): T;
|
||||
getMinutes(date: T): number;
|
||||
setMinutes(date: T, minutes: number): T;
|
||||
}
|
||||
|
||||
interface LocaleMessages {
|
||||
[key: string]: LocaleMessages | string;
|
||||
}
|
||||
interface LocaleOptions {
|
||||
messages?: LocaleMessages;
|
||||
locale?: string;
|
||||
fallback?: string;
|
||||
adapter?: LocaleInstance;
|
||||
}
|
||||
interface LocaleInstance {
|
||||
name: string;
|
||||
messages: Ref<LocaleMessages>;
|
||||
current: Ref<string>;
|
||||
fallback: Ref<string>;
|
||||
t: (key: string, ...params: unknown[]) => string;
|
||||
n: (value: number) => string;
|
||||
provide: (props: LocaleOptions) => LocaleInstance;
|
||||
}
|
||||
interface RtlOptions {
|
||||
rtl?: Record<string, boolean>;
|
||||
}
|
||||
|
||||
interface DateInstance<T = DateInstanceType['instanceType']> extends DateAdapter<T> {
|
||||
locale?: any;
|
||||
}
|
||||
/** Supports module augmentation to specify date object types */
|
||||
interface DateInstanceType {
|
||||
instanceType: unknown;
|
||||
}
|
||||
type InternalDateOptions<T = unknown> = {
|
||||
adapter: (new (options: {
|
||||
locale: any;
|
||||
formats?: any;
|
||||
}) => DateInstance<T>) | DateInstance<T>;
|
||||
formats?: Record<string, any>;
|
||||
locale: Record<string, any>;
|
||||
};
|
||||
type DateOptions<T = any> = Partial<InternalDateOptions<T>>;
|
||||
|
||||
type DeepPartial<T> = T extends object ? {
|
||||
[P in keyof T]?: DeepPartial<T[P]>;
|
||||
} : T;
|
||||
type ThemeOptions = false | {
|
||||
cspNonce?: string;
|
||||
defaultTheme?: string;
|
||||
variations?: false | VariationsOptions;
|
||||
themes?: Record<string, ThemeDefinition>;
|
||||
};
|
||||
type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
|
||||
interface VariationsOptions {
|
||||
colors: string[];
|
||||
lighten: number;
|
||||
darken: number;
|
||||
}
|
||||
interface InternalThemeDefinition {
|
||||
dark: boolean;
|
||||
colors: Colors;
|
||||
variables: Record<string, string | number>;
|
||||
}
|
||||
interface Colors extends BaseColors, OnColors {
|
||||
[key: string]: string;
|
||||
}
|
||||
interface BaseColors {
|
||||
background: string;
|
||||
surface: string;
|
||||
primary: string;
|
||||
secondary: string;
|
||||
success: string;
|
||||
warning: string;
|
||||
error: string;
|
||||
info: string;
|
||||
}
|
||||
interface OnColors {
|
||||
'on-background': string;
|
||||
'on-surface': string;
|
||||
'on-primary': string;
|
||||
'on-secondary': string;
|
||||
'on-success': string;
|
||||
'on-warning': string;
|
||||
'on-error': string;
|
||||
'on-info': string;
|
||||
}
|
||||
|
||||
declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
||||
type Breakpoint = typeof breakpoints[number];
|
||||
type DisplayBreakpoint = 'xs' | Breakpoint;
|
||||
type DisplayThresholds = {
|
||||
[key in DisplayBreakpoint]: number;
|
||||
};
|
||||
interface DisplayOptions {
|
||||
mobileBreakpoint?: number | DisplayBreakpoint;
|
||||
thresholds?: Partial<DisplayThresholds>;
|
||||
}
|
||||
type SSROptions = boolean | {
|
||||
clientWidth: number;
|
||||
clientHeight?: number;
|
||||
};
|
||||
|
||||
type DefaultsInstance = undefined | {
|
||||
[key: string]: undefined | Record<string, unknown>;
|
||||
global?: Record<string, unknown>;
|
||||
};
|
||||
type DefaultsOptions = Partial<DefaultsInstance>;
|
||||
|
||||
interface GoToOptions {
|
||||
container: ComponentPublicInstance | HTMLElement | string;
|
||||
duration: number;
|
||||
layout: boolean;
|
||||
offset: number;
|
||||
easing: string | ((t: number) => number);
|
||||
patterns: Record<string, (t: number) => number>;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
type IconOptions = {
|
||||
defaultSet?: string;
|
||||
aliases?: Partial<IconAliases>;
|
||||
sets?: Record<string, IconSet>;
|
||||
};
|
||||
|
||||
interface VuetifyOptions {
|
||||
aliases?: Record<string, any>;
|
||||
blueprint?: Blueprint;
|
||||
components?: Record<string, any>;
|
||||
date?: DateOptions;
|
||||
directives?: Record<string, any>;
|
||||
defaults?: DefaultsOptions;
|
||||
display?: DisplayOptions;
|
||||
goTo?: GoToOptions;
|
||||
theme?: ThemeOptions;
|
||||
icons?: IconOptions;
|
||||
locale?: LocaleOptions & RtlOptions;
|
||||
ssr?: SSROptions;
|
||||
}
|
||||
interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {
|
||||
}
|
||||
|
||||
declare const md2: Blueprint;
|
||||
|
||||
export { md2 };
|
67
VApp/node_modules/vuetify/lib/blueprints/md2.mjs
generated
vendored
Normal file
67
VApp/node_modules/vuetify/lib/blueprints/md2.mjs
generated
vendored
Normal file
@ -0,0 +1,67 @@
|
||||
// Icons
|
||||
import { mdi } from "../iconsets/mdi.mjs"; // Types
|
||||
export const md2 = {
|
||||
defaults: {
|
||||
global: {
|
||||
rounded: 'md'
|
||||
},
|
||||
VAvatar: {
|
||||
rounded: 'circle'
|
||||
},
|
||||
VAutocomplete: {
|
||||
variant: 'filled'
|
||||
},
|
||||
VBanner: {
|
||||
color: 'primary'
|
||||
},
|
||||
VBtn: {
|
||||
color: 'primary'
|
||||
},
|
||||
VCheckbox: {
|
||||
color: 'secondary'
|
||||
},
|
||||
VCombobox: {
|
||||
variant: 'filled'
|
||||
},
|
||||
VSelect: {
|
||||
variant: 'filled'
|
||||
},
|
||||
VSlider: {
|
||||
color: 'primary'
|
||||
},
|
||||
VTabs: {
|
||||
color: 'primary'
|
||||
},
|
||||
VTextarea: {
|
||||
variant: 'filled'
|
||||
},
|
||||
VTextField: {
|
||||
variant: 'filled'
|
||||
},
|
||||
VToolbar: {
|
||||
VBtn: {
|
||||
color: null
|
||||
}
|
||||
}
|
||||
},
|
||||
icons: {
|
||||
defaultSet: 'mdi',
|
||||
sets: {
|
||||
mdi
|
||||
}
|
||||
},
|
||||
theme: {
|
||||
themes: {
|
||||
light: {
|
||||
colors: {
|
||||
primary: '#6200EE',
|
||||
'primary-darken-1': '#3700B3',
|
||||
secondary: '#03DAC6',
|
||||
'secondary-darken-1': '#018786',
|
||||
error: '#B00020'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=md2.mjs.map
|
1
VApp/node_modules/vuetify/lib/blueprints/md2.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/blueprints/md2.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"md2.mjs","names":["mdi","md2","defaults","global","rounded","VAvatar","VAutocomplete","variant","VBanner","color","VBtn","VCheckbox","VCombobox","VSelect","VSlider","VTabs","VTextarea","VTextField","VToolbar","icons","defaultSet","sets","theme","themes","light","colors","primary","secondary","error"],"sources":["../../src/blueprints/md2.ts"],"sourcesContent":["// Icons\nimport { mdi } from '@/iconsets/mdi'\n\n// Types\nimport type { Blueprint } from '@/framework'\n\nexport const md2: Blueprint = {\n defaults: {\n global: {\n rounded: 'md',\n },\n VAvatar: {\n rounded: 'circle',\n },\n VAutocomplete: {\n variant: 'filled',\n },\n VBanner: {\n color: 'primary',\n },\n VBtn: {\n color: 'primary',\n },\n VCheckbox: {\n color: 'secondary',\n },\n VCombobox: {\n variant: 'filled',\n },\n VSelect: {\n variant: 'filled',\n },\n VSlider: {\n color: 'primary',\n },\n VTabs: {\n color: 'primary',\n },\n VTextarea: {\n variant: 'filled',\n },\n VTextField: {\n variant: 'filled',\n },\n VToolbar: {\n VBtn: {\n color: null,\n },\n },\n },\n icons: {\n defaultSet: 'mdi',\n sets: {\n mdi,\n },\n },\n theme: {\n themes: {\n light: {\n colors: {\n primary: '#6200EE',\n 'primary-darken-1': '#3700B3',\n secondary: '#03DAC6',\n 'secondary-darken-1': '#018786',\n error: '#B00020',\n },\n },\n },\n },\n}\n"],"mappings":"AAAA;AAAA,SACSA,GAAG,+BAEZ;AAGA,OAAO,MAAMC,GAAc,GAAG;EAC5BC,QAAQ,EAAE;IACRC,MAAM,EAAE;MACNC,OAAO,EAAE;IACX,CAAC;IACDC,OAAO,EAAE;MACPD,OAAO,EAAE;IACX,CAAC;IACDE,aAAa,EAAE;MACbC,OAAO,EAAE;IACX,CAAC;IACDC,OAAO,EAAE;MACPC,KAAK,EAAE;IACT,CAAC;IACDC,IAAI,EAAE;MACJD,KAAK,EAAE;IACT,CAAC;IACDE,SAAS,EAAE;MACTF,KAAK,EAAE;IACT,CAAC;IACDG,SAAS,EAAE;MACTL,OAAO,EAAE;IACX,CAAC;IACDM,OAAO,EAAE;MACPN,OAAO,EAAE;IACX,CAAC;IACDO,OAAO,EAAE;MACPL,KAAK,EAAE;IACT,CAAC;IACDM,KAAK,EAAE;MACLN,KAAK,EAAE;IACT,CAAC;IACDO,SAAS,EAAE;MACTT,OAAO,EAAE;IACX,CAAC;IACDU,UAAU,EAAE;MACVV,OAAO,EAAE;IACX,CAAC;IACDW,QAAQ,EAAE;MACRR,IAAI,EAAE;QACJD,KAAK,EAAE;MACT;IACF;EACF,CAAC;EACDU,KAAK,EAAE;IACLC,UAAU,EAAE,KAAK;IACjBC,IAAI,EAAE;MACJrB;IACF;EACF,CAAC;EACDsB,KAAK,EAAE;IACLC,MAAM,EAAE;MACNC,KAAK,EAAE;QACLC,MAAM,EAAE;UACNC,OAAO,EAAE,SAAS;UAClB,kBAAkB,EAAE,SAAS;UAC7BC,SAAS,EAAE,SAAS;UACpB,oBAAoB,EAAE,SAAS;UAC/BC,KAAK,EAAE;QACT;MACF;IACF;EACF;AACF,CAAC"}
|
230
VApp/node_modules/vuetify/lib/blueprints/md3.d.mts
generated
vendored
Normal file
230
VApp/node_modules/vuetify/lib/blueprints/md3.d.mts
generated
vendored
Normal file
@ -0,0 +1,230 @@
|
||||
import { Ref, ComponentPublicInstance, JSXComponent, PropType } from 'vue';
|
||||
|
||||
interface DateAdapter<T = unknown> {
|
||||
date(value?: any): T | null;
|
||||
format(date: T, formatString: string): string;
|
||||
toJsDate(value: T): Date;
|
||||
parseISO(date: string): T;
|
||||
toISO(date: T): string;
|
||||
startOfDay(date: T): T;
|
||||
endOfDay(date: T): T;
|
||||
startOfWeek(date: T): T;
|
||||
endOfWeek(date: T): T;
|
||||
startOfMonth(date: T): T;
|
||||
endOfMonth(date: T): T;
|
||||
startOfYear(date: T): T;
|
||||
endOfYear(date: T): T;
|
||||
isBefore(date: T, comparing: T): boolean;
|
||||
isAfter(date: T, comparing: T): boolean;
|
||||
isEqual(date: T, comparing: T): boolean;
|
||||
isSameDay(date: T, comparing: T): boolean;
|
||||
isSameMonth(date: T, comparing: T): boolean;
|
||||
isValid(date: any): boolean;
|
||||
isWithinRange(date: T, range: [T, T]): boolean;
|
||||
addMinutes(date: T, amount: number): T;
|
||||
addHours(date: T, amount: number): T;
|
||||
addDays(date: T, amount: number): T;
|
||||
addWeeks(date: T, amount: number): T;
|
||||
addMonths(date: T, amount: number): T;
|
||||
getYear(date: T): number;
|
||||
setYear(date: T, year: number): T;
|
||||
getDiff(date: T, comparing: T | string, unit?: string): number;
|
||||
getWeekArray(date: T): T[][];
|
||||
getWeekdays(): string[];
|
||||
getMonth(date: T): number;
|
||||
setMonth(date: T, month: number): T;
|
||||
getNextMonth(date: T): T;
|
||||
getHours(date: T): number;
|
||||
setHours(date: T, hours: number): T;
|
||||
getMinutes(date: T): number;
|
||||
setMinutes(date: T, minutes: number): T;
|
||||
}
|
||||
|
||||
interface LocaleMessages {
|
||||
[key: string]: LocaleMessages | string;
|
||||
}
|
||||
interface LocaleOptions {
|
||||
messages?: LocaleMessages;
|
||||
locale?: string;
|
||||
fallback?: string;
|
||||
adapter?: LocaleInstance;
|
||||
}
|
||||
interface LocaleInstance {
|
||||
name: string;
|
||||
messages: Ref<LocaleMessages>;
|
||||
current: Ref<string>;
|
||||
fallback: Ref<string>;
|
||||
t: (key: string, ...params: unknown[]) => string;
|
||||
n: (value: number) => string;
|
||||
provide: (props: LocaleOptions) => LocaleInstance;
|
||||
}
|
||||
interface RtlOptions {
|
||||
rtl?: Record<string, boolean>;
|
||||
}
|
||||
|
||||
interface DateInstance<T = DateInstanceType['instanceType']> extends DateAdapter<T> {
|
||||
locale?: any;
|
||||
}
|
||||
/** Supports module augmentation to specify date object types */
|
||||
interface DateInstanceType {
|
||||
instanceType: unknown;
|
||||
}
|
||||
type InternalDateOptions<T = unknown> = {
|
||||
adapter: (new (options: {
|
||||
locale: any;
|
||||
formats?: any;
|
||||
}) => DateInstance<T>) | DateInstance<T>;
|
||||
formats?: Record<string, any>;
|
||||
locale: Record<string, any>;
|
||||
};
|
||||
type DateOptions<T = any> = Partial<InternalDateOptions<T>>;
|
||||
|
||||
type DeepPartial<T> = T extends object ? {
|
||||
[P in keyof T]?: DeepPartial<T[P]>;
|
||||
} : T;
|
||||
type ThemeOptions = false | {
|
||||
cspNonce?: string;
|
||||
defaultTheme?: string;
|
||||
variations?: false | VariationsOptions;
|
||||
themes?: Record<string, ThemeDefinition>;
|
||||
};
|
||||
type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
|
||||
interface VariationsOptions {
|
||||
colors: string[];
|
||||
lighten: number;
|
||||
darken: number;
|
||||
}
|
||||
interface InternalThemeDefinition {
|
||||
dark: boolean;
|
||||
colors: Colors;
|
||||
variables: Record<string, string | number>;
|
||||
}
|
||||
interface Colors extends BaseColors, OnColors {
|
||||
[key: string]: string;
|
||||
}
|
||||
interface BaseColors {
|
||||
background: string;
|
||||
surface: string;
|
||||
primary: string;
|
||||
secondary: string;
|
||||
success: string;
|
||||
warning: string;
|
||||
error: string;
|
||||
info: string;
|
||||
}
|
||||
interface OnColors {
|
||||
'on-background': string;
|
||||
'on-surface': string;
|
||||
'on-primary': string;
|
||||
'on-secondary': string;
|
||||
'on-success': string;
|
||||
'on-warning': string;
|
||||
'on-error': string;
|
||||
'on-info': string;
|
||||
}
|
||||
|
||||
declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
||||
type Breakpoint = typeof breakpoints[number];
|
||||
type DisplayBreakpoint = 'xs' | Breakpoint;
|
||||
type DisplayThresholds = {
|
||||
[key in DisplayBreakpoint]: number;
|
||||
};
|
||||
interface DisplayOptions {
|
||||
mobileBreakpoint?: number | DisplayBreakpoint;
|
||||
thresholds?: Partial<DisplayThresholds>;
|
||||
}
|
||||
type SSROptions = boolean | {
|
||||
clientWidth: number;
|
||||
clientHeight?: number;
|
||||
};
|
||||
|
||||
type DefaultsInstance = undefined | {
|
||||
[key: string]: undefined | Record<string, unknown>;
|
||||
global?: Record<string, unknown>;
|
||||
};
|
||||
type DefaultsOptions = Partial<DefaultsInstance>;
|
||||
|
||||
interface GoToOptions {
|
||||
container: ComponentPublicInstance | HTMLElement | string;
|
||||
duration: number;
|
||||
layout: boolean;
|
||||
offset: number;
|
||||
easing: string | ((t: number) => number);
|
||||
patterns: Record<string, (t: number) => number>;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
type IconOptions = {
|
||||
defaultSet?: string;
|
||||
aliases?: Partial<IconAliases>;
|
||||
sets?: Record<string, IconSet>;
|
||||
};
|
||||
|
||||
interface VuetifyOptions {
|
||||
aliases?: Record<string, any>;
|
||||
blueprint?: Blueprint;
|
||||
components?: Record<string, any>;
|
||||
date?: DateOptions;
|
||||
directives?: Record<string, any>;
|
||||
defaults?: DefaultsOptions;
|
||||
display?: DisplayOptions;
|
||||
goTo?: GoToOptions;
|
||||
theme?: ThemeOptions;
|
||||
icons?: IconOptions;
|
||||
locale?: LocaleOptions & RtlOptions;
|
||||
ssr?: SSROptions;
|
||||
}
|
||||
interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {
|
||||
}
|
||||
|
||||
declare const md3: Blueprint;
|
||||
|
||||
export { md3 };
|
89
VApp/node_modules/vuetify/lib/blueprints/md3.mjs
generated
vendored
Normal file
89
VApp/node_modules/vuetify/lib/blueprints/md3.mjs
generated
vendored
Normal file
@ -0,0 +1,89 @@
|
||||
// Icons
|
||||
import { mdi } from "../iconsets/mdi.mjs"; // Types
|
||||
export const md3 = {
|
||||
defaults: {
|
||||
VAppBar: {
|
||||
flat: true
|
||||
},
|
||||
VAutocomplete: {
|
||||
variant: 'filled'
|
||||
},
|
||||
VBanner: {
|
||||
color: 'primary'
|
||||
},
|
||||
VBottomSheet: {
|
||||
contentClass: 'rounded-t-xl overflow-hidden'
|
||||
},
|
||||
VBtn: {
|
||||
color: 'primary',
|
||||
rounded: 'xl'
|
||||
},
|
||||
VBtnGroup: {
|
||||
rounded: 'xl',
|
||||
VBtn: {
|
||||
rounded: null
|
||||
}
|
||||
},
|
||||
VCard: {
|
||||
rounded: 'lg'
|
||||
},
|
||||
VCheckbox: {
|
||||
color: 'secondary',
|
||||
inset: true
|
||||
},
|
||||
VChip: {
|
||||
rounded: 'sm'
|
||||
},
|
||||
VCombobox: {
|
||||
variant: 'filled'
|
||||
},
|
||||
VNavigationDrawer: {
|
||||
// VList: {
|
||||
// nav: true,
|
||||
// VListItem: {
|
||||
// rounded: 'xl',
|
||||
// },
|
||||
// },
|
||||
},
|
||||
VSelect: {
|
||||
variant: 'filled'
|
||||
},
|
||||
VSlider: {
|
||||
color: 'primary'
|
||||
},
|
||||
VTabs: {
|
||||
color: 'primary'
|
||||
},
|
||||
VTextarea: {
|
||||
variant: 'filled'
|
||||
},
|
||||
VTextField: {
|
||||
variant: 'filled'
|
||||
},
|
||||
VToolbar: {
|
||||
VBtn: {
|
||||
color: null
|
||||
}
|
||||
}
|
||||
},
|
||||
icons: {
|
||||
defaultSet: 'mdi',
|
||||
sets: {
|
||||
mdi
|
||||
}
|
||||
},
|
||||
theme: {
|
||||
themes: {
|
||||
light: {
|
||||
colors: {
|
||||
primary: '#6750a4',
|
||||
secondary: '#b4b0bb',
|
||||
tertiary: '#7d5260',
|
||||
error: '#b3261e',
|
||||
surface: '#fffbfe'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=md3.mjs.map
|
1
VApp/node_modules/vuetify/lib/blueprints/md3.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/blueprints/md3.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"md3.mjs","names":["mdi","md3","defaults","VAppBar","flat","VAutocomplete","variant","VBanner","color","VBottomSheet","contentClass","VBtn","rounded","VBtnGroup","VCard","VCheckbox","inset","VChip","VCombobox","VNavigationDrawer","VSelect","VSlider","VTabs","VTextarea","VTextField","VToolbar","icons","defaultSet","sets","theme","themes","light","colors","primary","secondary","tertiary","error","surface"],"sources":["../../src/blueprints/md3.ts"],"sourcesContent":["// Icons\nimport { mdi } from '@/iconsets/mdi'\n\n// Types\nimport type { Blueprint } from '@/framework'\n\nexport const md3: Blueprint = {\n defaults: {\n VAppBar: {\n flat: true,\n },\n VAutocomplete: {\n variant: 'filled',\n },\n VBanner: {\n color: 'primary',\n },\n VBottomSheet: {\n contentClass: 'rounded-t-xl overflow-hidden',\n },\n VBtn: {\n color: 'primary',\n rounded: 'xl',\n },\n VBtnGroup: {\n rounded: 'xl',\n VBtn: { rounded: null },\n },\n VCard: {\n rounded: 'lg',\n },\n VCheckbox: {\n color: 'secondary',\n inset: true,\n },\n VChip: {\n rounded: 'sm',\n },\n VCombobox: {\n variant: 'filled',\n },\n VNavigationDrawer: {\n // VList: {\n // nav: true,\n // VListItem: {\n // rounded: 'xl',\n // },\n // },\n },\n VSelect: {\n variant: 'filled',\n },\n VSlider: {\n color: 'primary',\n },\n VTabs: {\n color: 'primary',\n },\n VTextarea: {\n variant: 'filled',\n },\n VTextField: {\n variant: 'filled',\n },\n VToolbar: {\n VBtn: {\n color: null,\n },\n },\n },\n icons: {\n defaultSet: 'mdi',\n sets: {\n mdi,\n },\n },\n theme: {\n themes: {\n light: {\n colors: {\n primary: '#6750a4',\n secondary: '#b4b0bb',\n tertiary: '#7d5260',\n error: '#b3261e',\n surface: '#fffbfe',\n },\n },\n },\n },\n}\n"],"mappings":"AAAA;AAAA,SACSA,GAAG,+BAEZ;AAGA,OAAO,MAAMC,GAAc,GAAG;EAC5BC,QAAQ,EAAE;IACRC,OAAO,EAAE;MACPC,IAAI,EAAE;IACR,CAAC;IACDC,aAAa,EAAE;MACbC,OAAO,EAAE;IACX,CAAC;IACDC,OAAO,EAAE;MACPC,KAAK,EAAE;IACT,CAAC;IACDC,YAAY,EAAE;MACZC,YAAY,EAAE;IAChB,CAAC;IACDC,IAAI,EAAE;MACJH,KAAK,EAAE,SAAS;MAChBI,OAAO,EAAE;IACX,CAAC;IACDC,SAAS,EAAE;MACTD,OAAO,EAAE,IAAI;MACbD,IAAI,EAAE;QAAEC,OAAO,EAAE;MAAK;IACxB,CAAC;IACDE,KAAK,EAAE;MACLF,OAAO,EAAE;IACX,CAAC;IACDG,SAAS,EAAE;MACTP,KAAK,EAAE,WAAW;MAClBQ,KAAK,EAAE;IACT,CAAC;IACDC,KAAK,EAAE;MACLL,OAAO,EAAE;IACX,CAAC;IACDM,SAAS,EAAE;MACTZ,OAAO,EAAE;IACX,CAAC;IACDa,iBAAiB,EAAE;MACjB;MACA;MACA;MACA;MACA;MACA;IAAA,CACD;IACDC,OAAO,EAAE;MACPd,OAAO,EAAE;IACX,CAAC;IACDe,OAAO,EAAE;MACPb,KAAK,EAAE;IACT,CAAC;IACDc,KAAK,EAAE;MACLd,KAAK,EAAE;IACT,CAAC;IACDe,SAAS,EAAE;MACTjB,OAAO,EAAE;IACX,CAAC;IACDkB,UAAU,EAAE;MACVlB,OAAO,EAAE;IACX,CAAC;IACDmB,QAAQ,EAAE;MACRd,IAAI,EAAE;QACJH,KAAK,EAAE;MACT;IACF;EACF,CAAC;EACDkB,KAAK,EAAE;IACLC,UAAU,EAAE,KAAK;IACjBC,IAAI,EAAE;MACJ5B;IACF;EACF,CAAC;EACD6B,KAAK,EAAE;IACLC,MAAM,EAAE;MACNC,KAAK,EAAE;QACLC,MAAM,EAAE;UACNC,OAAO,EAAE,SAAS;UAClBC,SAAS,EAAE,SAAS;UACpBC,QAAQ,EAAE,SAAS;UACnBC,KAAK,EAAE,SAAS;UAChBC,OAAO,EAAE;QACX;MACF;IACF;EACF;AACF,CAAC"}
|
Reference in New Issue
Block a user