diff --git a/.editorconfig b/.editorconfig index 79c8753..ec90d88 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,7 +14,7 @@ trim_trailing_whitespace = false [*.{yml,yaml}] indent_size = 2 -[*.{js,ts,vue}] +[*.{js,ts,mts,vue}] indent_size = 2 indent_style = tab diff --git a/.eslintrc.js b/.eslintrc.js index 9547c76..803a503 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -13,6 +13,7 @@ module.exports = { ], ignorePatterns: [ '.eslintrc.js', + 'stylelint.config.js', 'vite.build.config.mts', 'vite.config.mts', '*.bk.vue', diff --git a/.gitignore b/.gitignore index a96def1..962dc16 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,3 @@ dist-ssr src/plugin/**/*.bk.* -src/plugin/components/VInlineAutocomplete diff --git a/CHANGELOG.md b/CHANGELOG.md index f511699..1b0af62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Change Log All notable changes to the "vuetify-inline-fields" plugin will be documented in this file. +## v1.0.5 +01-11-2024 +[main] (@webdevnerdstuff) +* Fix reactivity issues +* Fix typescript issues +* Add VInlineAutocomplete (beta) to package +* Update tests +* Update packages + ## v1.0.4 12-18-2023 [main] (@webdevnerdstuff) diff --git a/dist/plugin/components/VInlineAutocomplete/VInlineAutocomplete.vue.d.ts b/dist/plugin/components/VInlineAutocomplete/VInlineAutocomplete.vue.d.ts new file mode 100644 index 0000000..d100ee6 --- /dev/null +++ b/dist/plugin/components/VInlineAutocomplete/VInlineAutocomplete.vue.d.ts @@ -0,0 +1,599 @@ +declare const _default: __VLS_WithTemplateSlots; + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + variant: { + type: globalThis.PropType<"outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled">; + default: "underlined"; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { + type: globalThis.PropType; + default: boolean; + }; + autofocus: { + type: globalThis.PropType; + default: boolean; + }; + cancelButtonColor: { + type: globalThis.PropType; + default: string; + }; + cancelButtonSize: { + type: globalThis.PropType; + default: string; + }; + cancelButtonTitle: { + type: globalThis.PropType; + default: string; + }; + cancelButtonVariant: { + type: globalThis.PropType>; + default: "text"; + }; + cancelIcon: { + type: globalThis.PropType; + default: undefined; + }; + cancelIconColor: { + type: globalThis.PropType; + default: string; + }; + cardField: { + type: globalThis.PropType; + default: boolean; + }; + cardOffsetX: { + type: globalThis.PropType; + default: number; + }; + cardOffsetY: { + type: globalThis.PropType; + default: number; + }; + cardProps: { + type: globalThis.PropType; + default: () => {}; + }; + cell: { + type: globalThis.PropType; + default: boolean; + }; + cellUnderlineFullWidth: { + type: globalThis.PropType; + default: boolean; + }; + closeSiblings: { + type: globalThis.PropType; + default: boolean; + }; + displayAppendIcon: { + type: globalThis.PropType; + default: undefined; + }; + displayAppendIconColor: { + type: globalThis.PropType; + default: undefined; + }; + displayAppendIconSize: { + type: globalThis.PropType; + default: string; + }; + displayAppendInnerIcon: { + type: globalThis.PropType; + default: undefined; + }; + displayAppendInnerIconColor: { + type: globalThis.PropType; + default: undefined; + }; + displayAppendInnerIconSize: { + type: globalThis.PropType; + default: string; + }; + displayPrependIcon: { + type: globalThis.PropType; + default: undefined; + }; + displayPrependIconColor: { + type: globalThis.PropType; + default: undefined; + }; + displayPrependIconSize: { + type: globalThis.PropType; + default: string; + }; + displayPrependInnerIcon: { + type: globalThis.PropType; + default: undefined; + }; + displayPrependInnerIconColor: { + type: globalThis.PropType; + default: undefined; + }; + displayPrependInnerIconSize: { + type: globalThis.PropType; + default: string; + }; + emptyText: { + type: globalThis.PropType; + default: string; + }; + fieldOnly: { + type: globalThis.PropType; + default: boolean; + }; + hideCancelIcon: { + type: globalThis.PropType; + default: boolean; + }; + hideDetails: { + type: globalThis.PropType; + default: boolean; + }; + hideSaveIcon: { + type: globalThis.PropType; + default: boolean; + }; + label: { + type: globalThis.PropType; + default: string; + }; + loadingIcon: { + type: globalThis.PropType; + default: undefined; + }; + loadingIconColor: { + type: globalThis.PropType; + default: string; + }; + loadingWait: { + type: globalThis.PropType; + default: boolean; + }; + name: { + type: globalThis.PropType; + default: string; + }; + required: { + type: globalThis.PropType; + default: boolean; + }; + saveButtonColor: { + type: globalThis.PropType; + default: string; + }; + saveButtonSize: { + type: globalThis.PropType; + default: string; + }; + saveButtonTitle: { + type: globalThis.PropType; + default: string; + }; + saveButtonVariant: { + type: globalThis.PropType>; + default: "text"; + }; + saveIcon: { + type: globalThis.PropType; + default: undefined; + }; + saveIconColor: { + type: globalThis.PropType; + default: string; + }; + tableField: { + type: globalThis.PropType; + default: boolean; + }; + underlineColor: { + type: globalThis.PropType; + default: string; + }; + underlineStyle: { + type: globalThis.PropType; + default: string; + }; + underlineWidth: { + type: globalThis.PropType; + default: string; + }; + underlined: { + type: globalThis.PropType; + default: boolean; + }; + valueColor: { + type: globalThis.PropType; + default: string; + }; + autoSelectFirst: { + type: globalThis.PropType; + default: boolean; + }; + clearIcon: { + type: globalThis.PropType; + default: string; + }; + clearable: { + type: globalThis.PropType; + default: boolean; + }; + hideSelected: { + type: globalThis.PropType; + default: boolean; + }; + itemTitle: { + type: globalThis.PropType any) | null>; + default: string; + }; + itemValue: { + type: globalThis.PropType any) | null>; + default: string; + }; + items: { + type: globalThis.PropType; + default: () => never[]; + }; + menu: { + type: globalThis.PropType; + default: boolean; + }; + menuIcon: { + type: globalThis.PropType; + default: string; + }; + rules: { + type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; + default: () => never[]; + }; +}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { + [x: string]: (...args: any[]) => void; +}, string, import("vue").PublicProps, Readonly; + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + variant: { + type: globalThis.PropType<"outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled">; + default: "underlined"; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { + type: globalThis.PropType; + default: boolean; + }; + autofocus: { + type: globalThis.PropType; + default: boolean; + }; + cancelButtonColor: { + type: globalThis.PropType; + default: string; + }; + cancelButtonSize: { + type: globalThis.PropType; + default: string; + }; + cancelButtonTitle: { + type: globalThis.PropType; + default: string; + }; + cancelButtonVariant: { + type: globalThis.PropType>; + default: "text"; + }; + cancelIcon: { + type: globalThis.PropType; + default: undefined; + }; + cancelIconColor: { + type: globalThis.PropType; + default: string; + }; + cardField: { + type: globalThis.PropType; + default: boolean; + }; + cardOffsetX: { + type: globalThis.PropType; + default: number; + }; + cardOffsetY: { + type: globalThis.PropType; + default: number; + }; + cardProps: { + type: globalThis.PropType; + default: () => {}; + }; + cell: { + type: globalThis.PropType; + default: boolean; + }; + cellUnderlineFullWidth: { + type: globalThis.PropType; + default: boolean; + }; + closeSiblings: { + type: globalThis.PropType; + default: boolean; + }; + displayAppendIcon: { + type: globalThis.PropType; + default: undefined; + }; + displayAppendIconColor: { + type: globalThis.PropType; + default: undefined; + }; + displayAppendIconSize: { + type: globalThis.PropType; + default: string; + }; + displayAppendInnerIcon: { + type: globalThis.PropType; + default: undefined; + }; + displayAppendInnerIconColor: { + type: globalThis.PropType; + default: undefined; + }; + displayAppendInnerIconSize: { + type: globalThis.PropType; + default: string; + }; + displayPrependIcon: { + type: globalThis.PropType; + default: undefined; + }; + displayPrependIconColor: { + type: globalThis.PropType; + default: undefined; + }; + displayPrependIconSize: { + type: globalThis.PropType; + default: string; + }; + displayPrependInnerIcon: { + type: globalThis.PropType; + default: undefined; + }; + displayPrependInnerIconColor: { + type: globalThis.PropType; + default: undefined; + }; + displayPrependInnerIconSize: { + type: globalThis.PropType; + default: string; + }; + emptyText: { + type: globalThis.PropType; + default: string; + }; + fieldOnly: { + type: globalThis.PropType; + default: boolean; + }; + hideCancelIcon: { + type: globalThis.PropType; + default: boolean; + }; + hideDetails: { + type: globalThis.PropType; + default: boolean; + }; + hideSaveIcon: { + type: globalThis.PropType; + default: boolean; + }; + label: { + type: globalThis.PropType; + default: string; + }; + loadingIcon: { + type: globalThis.PropType; + default: undefined; + }; + loadingIconColor: { + type: globalThis.PropType; + default: string; + }; + loadingWait: { + type: globalThis.PropType; + default: boolean; + }; + name: { + type: globalThis.PropType; + default: string; + }; + required: { + type: globalThis.PropType; + default: boolean; + }; + saveButtonColor: { + type: globalThis.PropType; + default: string; + }; + saveButtonSize: { + type: globalThis.PropType; + default: string; + }; + saveButtonTitle: { + type: globalThis.PropType; + default: string; + }; + saveButtonVariant: { + type: globalThis.PropType>; + default: "text"; + }; + saveIcon: { + type: globalThis.PropType; + default: undefined; + }; + saveIconColor: { + type: globalThis.PropType; + default: string; + }; + tableField: { + type: globalThis.PropType; + default: boolean; + }; + underlineColor: { + type: globalThis.PropType; + default: string; + }; + underlineStyle: { + type: globalThis.PropType; + default: string; + }; + underlineWidth: { + type: globalThis.PropType; + default: string; + }; + underlined: { + type: globalThis.PropType; + default: boolean; + }; + valueColor: { + type: globalThis.PropType; + default: string; + }; + autoSelectFirst: { + type: globalThis.PropType; + default: boolean; + }; + clearIcon: { + type: globalThis.PropType; + default: string; + }; + clearable: { + type: globalThis.PropType; + default: boolean; + }; + hideSelected: { + type: globalThis.PropType; + default: boolean; + }; + itemTitle: { + type: globalThis.PropType any) | null>; + default: string; + }; + itemValue: { + type: globalThis.PropType any) | null>; + default: string; + }; + items: { + type: globalThis.PropType; + default: () => never[]; + }; + menu: { + type: globalThis.PropType; + default: boolean; + }; + menuIcon: { + type: globalThis.PropType; + default: string; + }; + rules: { + type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; + default: () => never[]; + }; +}>>, { + error: boolean; + disabled: boolean; + color: string; + variant: "outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled"; + density: "default" | "compact" | "comfortable" | null; + loading: boolean; + autofocus: boolean; + cancelButtonColor: string; + cancelButtonSize: string | number; + cancelButtonTitle: string; + cancelButtonVariant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; + cancelIcon: string; + cancelIconColor: string; + cardField: boolean; + cardOffsetX: number; + cardOffsetY: number; + cardProps: any; + cell: boolean; + cellUnderlineFullWidth: boolean; + closeSiblings: boolean; + displayAppendIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent; + displayAppendIconColor: string; + displayAppendIconSize: string | number; + displayAppendInnerIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent; + displayAppendInnerIconColor: string; + displayAppendInnerIconSize: string | number; + displayPrependIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent; + displayPrependIconColor: string; + displayPrependIconSize: string | number; + displayPrependInnerIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent; + displayPrependInnerIconColor: string; + displayPrependInnerIconSize: string | number; + emptyText: string; + fieldOnly: boolean; + hideCancelIcon: boolean; + hideDetails: boolean; + hideSaveIcon: boolean; + label: string; + loadingIcon: string; + loadingIconColor: string; + loadingWait: boolean; + name: string; + required: boolean; + saveButtonColor: string; + saveButtonSize: string | number; + saveButtonTitle: string; + saveButtonVariant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; + saveIcon: string; + saveIconColor: string; + tableField: boolean; + underlineColor: string; + underlineStyle: string; + underlineWidth: string; + underlined: boolean; + valueColor: string; + autoSelectFirst: boolean | "exact"; + clearIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent; + clearable: boolean; + hideSelected: boolean; + itemTitle: string | boolean | readonly (string | number)[] | ((item: any, fallback?: any) => any) | null; + itemValue: string | boolean | readonly (string | number)[] | ((item: any, fallback?: any) => any) | null; + items: readonly any[]; + menu: boolean; + menuIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent; + rules: readonly ((string | boolean) | PromiseLike | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]; +}, {}>, Partial, (_: any) => any>> & Partial, (_: any) => any>>>; +export default _default; +type __VLS_WithTemplateSlots = T & { + new (): { + $slots: S; + }; +}; diff --git a/dist/plugin/components/VInlineAutocomplete/index.d.ts b/dist/plugin/components/VInlineAutocomplete/index.d.ts new file mode 100644 index 0000000..d161af4 --- /dev/null +++ b/dist/plugin/components/VInlineAutocomplete/index.d.ts @@ -0,0 +1,19 @@ +import type { VAutocomplete } from 'vuetify/components'; +import type { SharedProps } from '../../types'; +import type VInlineAutocomplete from './VInlineAutocomplete.vue'; +export interface VInlineAutocompleteProps extends Omit { + autoSelectFirst?: VAutocomplete['$props']['autoSelectFirst']; + clearIcon?: VAutocomplete['$props']['clearIcon']; + clearable?: VAutocomplete['$props']['clearable']; + density?: VAutocomplete['$props']['density']; + hideSelected?: VAutocomplete['$props']['hideSelected']; + itemTitle?: VAutocomplete['$props']['itemTitle']; + itemValue?: VAutocomplete['$props']['itemValue']; + items?: VAutocomplete['$props']['items']; + menu?: VAutocomplete['$props']['menu']; + menuIcon?: VAutocomplete['$props']['menuIcon']; + rules?: VAutocomplete['$props']['rules']; + variant?: VAutocomplete['$props']['variant']; +} +export type VInlineAutocomplete = InstanceType; +export default VInlineAutocomplete; diff --git a/dist/plugin/components/VInlineCheckbox/VInlineCheckbox.vue.d.ts b/dist/plugin/components/VInlineCheckbox/VInlineCheckbox.vue.d.ts index 88c12ee..5662db9 100644 --- a/dist/plugin/components/VInlineCheckbox/VInlineCheckbox.vue.d.ts +++ b/dist/plugin/components/VInlineCheckbox/VInlineCheckbox.vue.d.ts @@ -1,5 +1,61 @@ declare const _default: __VLS_WithTemplateSlots; + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { + type: globalThis.PropType; + default: boolean; + }; + falseValue: { + type: globalThis.PropType; + default: boolean; + }; + iconFalse: { + type: globalThis.PropType; + default: undefined; + }; + iconFalseColor: { + type: globalThis.PropType; + default: string; + }; + iconFalseTitle: { + type: globalThis.PropType; + default: string; + }; + iconTrue: { + type: globalThis.PropType; + default: undefined; + }; + iconTrueColor: { + type: globalThis.PropType; + default: string; + }; + iconTrueTitle: { + type: globalThis.PropType; + default: string; + }; + icons: { + type: globalThis.PropType; + default: boolean; + }; + trueValue: { + type: globalThis.PropType; + default: boolean; + }; cancelButtonColor: { type: globalThis.PropType; default: string; @@ -52,14 +108,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -112,14 +160,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; - falseValue: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -136,45 +176,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - iconFalse: { - type: globalThis.PropType; - default: undefined; - }; - iconFalseColor: { - type: globalThis.PropType; - default: string; - }; - iconFalseTitle: { - type: globalThis.PropType; - default: string; - }; - iconTrue: { - type: globalThis.PropType; - default: undefined; - }; - iconTrueColor: { - type: globalThis.PropType; - default: string; - }; - iconTrueTitle: { - type: globalThis.PropType; - default: string; - }; - icons: { - type: globalThis.PropType; - default: boolean; - }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -193,6 +198,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -222,10 +228,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - trueValue: { - type: globalThis.PropType; - default: boolean; - }; underlineColor: { type: globalThis.PropType; default: string; @@ -246,10 +248,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; - }; falseIcon: { type: globalThis.PropType; default: undefined; @@ -260,8 +258,64 @@ declare const _default: __VLS_WithTemplateSlots void; -}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { + type: globalThis.PropType; + default: boolean; + }; + falseValue: { + type: globalThis.PropType; + default: boolean; + }; + iconFalse: { + type: globalThis.PropType; + default: undefined; + }; + iconFalseColor: { + type: globalThis.PropType; + default: string; + }; + iconFalseTitle: { + type: globalThis.PropType; + default: string; + }; + iconTrue: { + type: globalThis.PropType; + default: undefined; + }; + iconTrueColor: { + type: globalThis.PropType; + default: string; + }; + iconTrueTitle: { + type: globalThis.PropType; + default: string; + }; + icons: { + type: globalThis.PropType; + default: boolean; + }; + trueValue: { + type: globalThis.PropType; + default: boolean; + }; cancelButtonColor: { type: globalThis.PropType; default: string; @@ -314,14 +368,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -374,14 +420,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; - falseValue: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -398,45 +436,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - iconFalse: { - type: globalThis.PropType; - default: undefined; - }; - iconFalseColor: { - type: globalThis.PropType; - default: string; - }; - iconFalseTitle: { - type: globalThis.PropType; - default: string; - }; - iconTrue: { - type: globalThis.PropType; - default: undefined; - }; - iconTrueColor: { - type: globalThis.PropType; - default: string; - }; - iconTrueTitle: { - type: globalThis.PropType; - default: string; - }; - icons: { - type: globalThis.PropType; - default: boolean; - }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -455,6 +458,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -484,10 +488,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - trueValue: { - type: globalThis.PropType; - default: boolean; - }; underlineColor: { type: globalThis.PropType; default: string; @@ -508,10 +508,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; - }; falseIcon: { type: globalThis.PropType; default: undefined; @@ -521,6 +517,20 @@ declare const _default: __VLS_WithTemplateSlots>, { + error: boolean; + disabled: boolean; + color: string; + density: "default" | "compact" | "comfortable" | null; + loading: boolean; + falseValue: string | boolean; + iconFalse: string; + iconFalseColor: string; + iconFalseTitle: string; + iconTrue: string; + iconTrueColor: string; + iconTrueTitle: string; + icons: boolean; + trueValue: string | boolean; cancelButtonColor: string; cancelButtonSize: string | number; cancelButtonTitle: string; @@ -534,8 +544,6 @@ declare const _default: __VLS_WithTemplateSlots, Partial, (_: any) => any>>>; diff --git a/dist/plugin/components/VInlineCheckbox/index.d.ts b/dist/plugin/components/VInlineCheckbox/index.d.ts index 849630b..bad93bf 100644 --- a/dist/plugin/components/VInlineCheckbox/index.d.ts +++ b/dist/plugin/components/VInlineCheckbox/index.d.ts @@ -1,5 +1,5 @@ import type { VCheckbox } from 'vuetify/components'; -import type { SharedProps } from '../../../plugin/types'; +import type { SharedProps } from '../../types'; import type VInlineCheckbox from './VInlineCheckbox.vue'; export interface VInlineCheckboxProps extends Omit { density?: VCheckbox['$props']['density']; diff --git a/dist/plugin/components/VInlineCustomField/VInlineCustomField.vue.d.ts b/dist/plugin/components/VInlineCustomField/VInlineCustomField.vue.d.ts index 484fe05..47ee9a7 100644 --- a/dist/plugin/components/VInlineCustomField/VInlineCustomField.vue.d.ts +++ b/dist/plugin/components/VInlineCustomField/VInlineCustomField.vue.d.ts @@ -1,6 +1,26 @@ declare const _default: __VLS_WithTemplateSlots; - autofocus: { + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + variant: { + type: globalThis.PropType<"outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled">; + default: "underlined"; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { type: globalThis.PropType; default: boolean; }; @@ -12,6 +32,10 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; + autofocus: { + type: globalThis.PropType; + default: boolean; + }; cancelButtonColor: { type: globalThis.PropType; default: string; @@ -64,14 +88,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -124,10 +140,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -144,17 +156,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -173,6 +178,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -222,25 +228,38 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; + clearIcon: { + type: globalThis.PropType; + default: string; }; rules: { type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; }; +}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { + [x: string]: (...args: any[]) => void; +}, string, import("vue").PublicProps, Readonly; + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; variant: { - type: globalThis.PropType<"underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled">; + type: globalThis.PropType<"outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled">; default: "underlined"; }; - clearIcon: { - type: globalThis.PropType; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; }; -}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { - [x: string]: (...args: any[]) => void; -}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; - autofocus: { + loading: { type: globalThis.PropType; default: boolean; }; @@ -252,6 +271,10 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; + autofocus: { + type: globalThis.PropType; + default: boolean; + }; cancelButtonColor: { type: globalThis.PropType; default: string; @@ -304,14 +327,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -364,10 +379,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -384,17 +395,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -413,6 +417,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -462,24 +467,23 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; + clearIcon: { + type: globalThis.PropType; + default: string; }; rules: { type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; }; - variant: { - type: globalThis.PropType<"underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled">; - default: "underlined"; - }; - clearIcon: { - type: globalThis.PropType; - }; }>>, { - autofocus: boolean; + error: boolean; + disabled: boolean; + color: string; + variant: "outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled"; + density: "default" | "compact" | "comfortable" | null; + loading: boolean; truncateLength: number; truncateSuffix: string; + autofocus: boolean; cancelButtonColor: string; cancelButtonSize: string | number; cancelButtonTitle: string; @@ -493,8 +497,6 @@ declare const _default: __VLS_WithTemplateSlots, Partial, (_: any) => any>> & { default?(_: { loading: boolean; modelValue: any; originalValue: any; - item: Record | undefined; - required: boolean; rules: readonly ((string | boolean) | ((value: any) => string | boolean) | ((value: any) => PromiseLike) | { then: (onfulfilled?: ((value: string | boolean) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined) => PromiseLike; })[] | undefined; - clearIcon: string | undefined; + clearIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent; truncateLength: number | undefined; truncateSuffix: string; - variant: "underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled"; + variant: "outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled"; hideCancelIcon: boolean; hideSaveIcon: boolean; loadingIcon: string | undefined; @@ -572,7 +570,7 @@ declare const _default: __VLS_WithTemplateSlots; + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + variant: { + type: globalThis.PropType<"outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled">; + default: "underlined"; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { + type: globalThis.PropType; + default: boolean; + }; autofocus: { type: globalThis.PropType; default: boolean; @@ -56,14 +80,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -116,10 +132,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -136,17 +148,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -165,6 +170,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -214,20 +220,17 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; - }; - rules: { - type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; + clearIcon: { + type: globalThis.PropType; + default: string; }; - variant: { - type: globalThis.PropType<"underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled">; - default: "underlined"; + clearable: { + type: globalThis.PropType; + default: boolean; }; - items: { - type: globalThis.PropType; - default: () => never[]; + hideSelected: { + type: globalThis.PropType; + default: boolean; }; itemTitle: { type: globalThis.PropType any) | null>; @@ -237,26 +240,46 @@ declare const _default: __VLS_WithTemplateSlots any) | null>; default: string; }; - clearIcon: { - type: globalThis.PropType; - default: undefined; + items: { + type: globalThis.PropType; + default: () => never[]; }; - clearable: { + menu: { type: globalThis.PropType; default: boolean; }; - hideSelected: { + rules: { + type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; + default: () => never[]; + }; +}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { + [x: string]: (...args: any[]) => void; +}, string, import("vue").PublicProps, Readonly; + error: { type: globalThis.PropType; default: boolean; }; - menu: { + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + variant: { + type: globalThis.PropType<"outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled">; + default: "underlined"; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { type: globalThis.PropType; default: boolean; }; -}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { - [x: string]: (...args: any[]) => void; -}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; autofocus: { type: globalThis.PropType; default: boolean; @@ -313,14 +336,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -373,10 +388,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -393,17 +404,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -422,6 +426,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -471,20 +476,17 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; - }; - rules: { - type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; + clearIcon: { + type: globalThis.PropType; + default: string; }; - variant: { - type: globalThis.PropType<"underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled">; - default: "underlined"; + clearable: { + type: globalThis.PropType; + default: boolean; }; - items: { - type: globalThis.PropType; - default: () => never[]; + hideSelected: { + type: globalThis.PropType; + default: boolean; }; itemTitle: { type: globalThis.PropType any) | null>; @@ -494,23 +496,25 @@ declare const _default: __VLS_WithTemplateSlots any) | null>; default: string; }; - clearIcon: { - type: globalThis.PropType; - default: undefined; - }; - clearable: { - type: globalThis.PropType; - default: boolean; - }; - hideSelected: { - type: globalThis.PropType; - default: boolean; + items: { + type: globalThis.PropType; + default: () => never[]; }; menu: { type: globalThis.PropType; default: boolean; }; + rules: { + type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; + default: () => never[]; + }; }>>, { + error: boolean; + disabled: boolean; + color: string; + variant: "outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled"; + density: "default" | "compact" | "comfortable" | null; + loading: boolean; autofocus: boolean; cancelButtonColor: string; cancelButtonSize: string | number; @@ -525,8 +529,6 @@ declare const _default: __VLS_WithTemplateSlots any) | null; - itemValue: string | boolean | readonly (string | number)[] | ((item: any, fallback?: any) => any) | null; - clearIcon: string; + clearIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent; clearable: boolean; hideSelected: boolean; + itemTitle: string | boolean | readonly (string | number)[] | ((item: any, fallback?: any) => any) | null; + itemValue: string | boolean | readonly (string | number)[] | ((item: any, fallback?: any) => any) | null; + items: readonly any[]; menu: boolean; + rules: readonly ((string | boolean) | PromiseLike | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]; }, {}>, Partial, (_: any) => any>> & Partial, (_: any) => any>>>; export default _default; type __VLS_WithTemplateSlots = T & { diff --git a/dist/plugin/components/VInlineSelect/index.d.ts b/dist/plugin/components/VInlineSelect/index.d.ts index a42bfd5..5005d20 100644 --- a/dist/plugin/components/VInlineSelect/index.d.ts +++ b/dist/plugin/components/VInlineSelect/index.d.ts @@ -1,8 +1,8 @@ import type { VSelect } from 'vuetify/components'; -import type { SharedProps } from '../../../plugin/types'; +import type { SharedProps } from '../../types'; import type VInlineSelect from './VInlineSelect.vue'; export interface VInlineSelectProps extends Omit { - clearIcon?: string | undefined; + clearIcon?: VSelect['$props']['clearIcon']; clearable?: VSelect['$props']['clearable']; density?: VSelect['$props']['density']; hideSelected?: VSelect['$props']['hideSelected']; diff --git a/dist/plugin/components/VInlineSwitch/VInlineSwitch.vue.d.ts b/dist/plugin/components/VInlineSwitch/VInlineSwitch.vue.d.ts index f36b8a2..b33e73e 100644 --- a/dist/plugin/components/VInlineSwitch/VInlineSwitch.vue.d.ts +++ b/dist/plugin/components/VInlineSwitch/VInlineSwitch.vue.d.ts @@ -1,5 +1,61 @@ declare const _default: __VLS_WithTemplateSlots; + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { + type: globalThis.PropType; + default: boolean; + }; + falseValue: { + type: globalThis.PropType; + default: boolean; + }; + iconFalse: { + type: globalThis.PropType; + default: undefined; + }; + iconFalseColor: { + type: globalThis.PropType; + default: string; + }; + iconFalseTitle: { + type: globalThis.PropType; + default: string; + }; + iconTrue: { + type: globalThis.PropType; + default: undefined; + }; + iconTrueColor: { + type: globalThis.PropType; + default: string; + }; + iconTrueTitle: { + type: globalThis.PropType; + default: string; + }; + icons: { + type: globalThis.PropType; + default: boolean; + }; + trueValue: { + type: globalThis.PropType; + default: boolean; + }; cancelButtonColor: { type: globalThis.PropType; default: string; @@ -52,14 +108,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -112,14 +160,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; - falseValue: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -136,45 +176,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - iconFalse: { - type: globalThis.PropType; - default: undefined; - }; - iconFalseColor: { - type: globalThis.PropType; - default: string; - }; - iconFalseTitle: { - type: globalThis.PropType; - default: string; - }; - iconTrue: { - type: globalThis.PropType; - default: undefined; - }; - iconTrueColor: { - type: globalThis.PropType; - default: string; - }; - iconTrueTitle: { - type: globalThis.PropType; - default: string; - }; - icons: { - type: globalThis.PropType; - default: boolean; - }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -193,6 +198,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -222,10 +228,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - trueValue: { - type: globalThis.PropType; - default: boolean; - }; underlineColor: { type: globalThis.PropType; default: string; @@ -246,18 +248,70 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; - }; falseIcon: { type: globalThis.PropType; default: string; }; }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { [x: string]: (...args: any[]) => void; -}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { + type: globalThis.PropType; + default: boolean; + }; + falseValue: { + type: globalThis.PropType; + default: boolean; + }; + iconFalse: { + type: globalThis.PropType; + default: undefined; + }; + iconFalseColor: { + type: globalThis.PropType; + default: string; + }; + iconFalseTitle: { + type: globalThis.PropType; + default: string; + }; + iconTrue: { + type: globalThis.PropType; + default: undefined; + }; + iconTrueColor: { + type: globalThis.PropType; + default: string; + }; + iconTrueTitle: { + type: globalThis.PropType; + default: string; + }; + icons: { + type: globalThis.PropType; + default: boolean; + }; + trueValue: { + type: globalThis.PropType; + default: boolean; + }; cancelButtonColor: { type: globalThis.PropType; default: string; @@ -310,14 +364,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -370,14 +416,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; - falseValue: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -394,45 +432,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - iconFalse: { - type: globalThis.PropType; - default: undefined; - }; - iconFalseColor: { - type: globalThis.PropType; - default: string; - }; - iconFalseTitle: { - type: globalThis.PropType; - default: string; - }; - iconTrue: { - type: globalThis.PropType; - default: undefined; - }; - iconTrueColor: { - type: globalThis.PropType; - default: string; - }; - iconTrueTitle: { - type: globalThis.PropType; - default: string; - }; - icons: { - type: globalThis.PropType; - default: boolean; - }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -451,6 +454,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -480,10 +484,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - trueValue: { - type: globalThis.PropType; - default: boolean; - }; underlineColor: { type: globalThis.PropType; default: string; @@ -504,15 +504,25 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; - }; falseIcon: { type: globalThis.PropType; default: string; }; }>>, { + error: boolean; + disabled: boolean; + color: string; + density: "default" | "compact" | "comfortable" | null; + loading: boolean; + falseValue: string | boolean; + iconFalse: string; + iconFalseColor: string; + iconFalseTitle: string; + iconTrue: string; + iconTrueColor: string; + iconTrueTitle: string; + icons: boolean; + trueValue: string | boolean; cancelButtonColor: string; cancelButtonSize: string | number; cancelButtonTitle: string; @@ -526,8 +536,6 @@ declare const _default: __VLS_WithTemplateSlots, Partial, (_: any) => any>>>; export default _default; diff --git a/dist/plugin/components/VInlineSwitch/index.d.ts b/dist/plugin/components/VInlineSwitch/index.d.ts index e3f04f0..2304d66 100644 --- a/dist/plugin/components/VInlineSwitch/index.d.ts +++ b/dist/plugin/components/VInlineSwitch/index.d.ts @@ -1,5 +1,5 @@ import type { VSwitch } from 'vuetify/components'; -import type { SharedProps } from '../../../plugin/types'; +import type { SharedProps } from '../../types'; import type VInlineSwitch from './VInlineSwitch.vue'; export interface VInlineSwitchProps extends Omit { density?: VSwitch['$props']['density']; diff --git a/dist/plugin/components/VInlineTextField/VInlineTextField.vue.d.ts b/dist/plugin/components/VInlineTextField/VInlineTextField.vue.d.ts index 58b6f36..c5f90fa 100644 --- a/dist/plugin/components/VInlineTextField/VInlineTextField.vue.d.ts +++ b/dist/plugin/components/VInlineTextField/VInlineTextField.vue.d.ts @@ -1,6 +1,26 @@ declare const _default: __VLS_WithTemplateSlots; - autofocus: { + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + variant: { + type: globalThis.PropType<"outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled">; + default: "underlined"; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { type: globalThis.PropType; default: boolean; }; @@ -12,6 +32,10 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; + autofocus: { + type: globalThis.PropType; + default: boolean; + }; cancelButtonColor: { type: globalThis.PropType; default: string; @@ -64,14 +88,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -124,10 +140,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -144,17 +156,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -173,6 +178,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -222,25 +228,38 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; + clearIcon: { + type: globalThis.PropType; + default: string; }; rules: { type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; }; +}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { + [x: string]: (...args: any[]) => void; +}, string, import("vue").PublicProps, Readonly; + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; variant: { - type: globalThis.PropType<"underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled">; + type: globalThis.PropType<"outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled">; default: "underlined"; }; - clearIcon: { - type: globalThis.PropType; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; }; -}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { - [x: string]: (...args: any[]) => void; -}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; - autofocus: { + loading: { type: globalThis.PropType; default: boolean; }; @@ -252,6 +271,10 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; + autofocus: { + type: globalThis.PropType; + default: boolean; + }; cancelButtonColor: { type: globalThis.PropType; default: string; @@ -304,14 +327,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -364,10 +379,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -384,17 +395,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -413,6 +417,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -462,24 +467,23 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; + clearIcon: { + type: globalThis.PropType; + default: string; }; rules: { type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; }; - variant: { - type: globalThis.PropType<"underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled">; - default: "underlined"; - }; - clearIcon: { - type: globalThis.PropType; - }; }>>, { - autofocus: boolean; + error: boolean; + disabled: boolean; + color: string; + variant: "outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled"; + density: "default" | "compact" | "comfortable" | null; + loading: boolean; truncateLength: number; truncateSuffix: string; + autofocus: boolean; cancelButtonColor: string; cancelButtonSize: string | number; cancelButtonTitle: string; @@ -493,8 +497,6 @@ declare const _default: __VLS_WithTemplateSlots, Partial, (_: any) => any>> & Partial, (_: any) => any>>>; export default _default; type __VLS_WithTemplateSlots = T & { diff --git a/dist/plugin/components/VInlineTextField/index.d.ts b/dist/plugin/components/VInlineTextField/index.d.ts index 98de8b9..cdbf861 100644 --- a/dist/plugin/components/VInlineTextField/index.d.ts +++ b/dist/plugin/components/VInlineTextField/index.d.ts @@ -1,8 +1,8 @@ import type { VTextField } from 'vuetify/components'; -import type { SharedProps } from '../../../plugin/types'; +import type { SharedProps } from '../../types'; import type VInlineTextField from './VInlineTextField.vue'; export interface VInlineTextFieldProps extends Omit { - clearIcon?: string | undefined; + clearIcon?: VTextField['$props']['clearIcon']; density?: VTextField['$props']['density']; rules?: VTextField['$props']['rules']; variant?: VTextField['$props']['variant']; diff --git a/dist/plugin/components/VInlineTextarea/VInlineTextarea.vue.d.ts b/dist/plugin/components/VInlineTextarea/VInlineTextarea.vue.d.ts index 9d98a5c..ee0188f 100644 --- a/dist/plugin/components/VInlineTextarea/VInlineTextarea.vue.d.ts +++ b/dist/plugin/components/VInlineTextarea/VInlineTextarea.vue.d.ts @@ -1,6 +1,26 @@ declare const _default: __VLS_WithTemplateSlots; - autofocus: { + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + variant: { + type: globalThis.PropType<"outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled">; + default: "underlined"; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { type: globalThis.PropType; default: boolean; }; @@ -12,6 +32,10 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; + autofocus: { + type: globalThis.PropType; + default: boolean; + }; cancelButtonColor: { type: globalThis.PropType; default: string; @@ -64,14 +88,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -124,10 +140,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -144,17 +156,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -173,6 +178,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -222,20 +228,13 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; + clearIcon: { + type: globalThis.PropType; + default: string; }; rules: { type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; }; - variant: { - type: globalThis.PropType<"underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled">; - default: "underlined"; - }; - clearIcon: { - type: globalThis.PropType; - }; autoGrow: { type: globalThis.PropType; default: boolean; @@ -246,9 +245,29 @@ declare const _default: __VLS_WithTemplateSlots void; -}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; - autofocus: { + error: { + type: globalThis.PropType; + default: boolean; + }; + disabled: { + type: globalThis.PropType; + default: boolean; + }; + color: { + type: globalThis.PropType; + default: string; + }; + variant: { + type: globalThis.PropType<"outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled">; + default: "underlined"; + }; + density: { + type: globalThis.PropType<"default" | "compact" | "comfortable" | null>; + default: "compact"; + }; + loading: { type: globalThis.PropType; default: boolean; }; @@ -260,6 +279,10 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; + autofocus: { + type: globalThis.PropType; + default: boolean; + }; cancelButtonColor: { type: globalThis.PropType; default: string; @@ -312,14 +335,6 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - color: { - type: globalThis.PropType; - default: string; - }; - disabled: { - type: globalThis.PropType; - default: boolean; - }; displayAppendIcon: { type: globalThis.PropType; default: undefined; @@ -372,10 +387,6 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - error: { - type: globalThis.PropType; - default: boolean; - }; fieldOnly: { type: globalThis.PropType; default: boolean; @@ -392,17 +403,10 @@ declare const _default: __VLS_WithTemplateSlots; default: boolean; }; - item: { - type: globalThis.PropType>; - }; label: { type: globalThis.PropType; default: string; }; - loading: { - type: globalThis.PropType; - default: boolean; - }; loadingIcon: { type: globalThis.PropType; default: undefined; @@ -421,6 +425,7 @@ declare const _default: __VLS_WithTemplateSlots; + default: boolean; }; saveButtonColor: { type: globalThis.PropType; @@ -470,20 +475,13 @@ declare const _default: __VLS_WithTemplateSlots; default: string; }; - density: { - type: globalThis.PropType<"default" | "comfortable" | "compact" | null>; - default: "compact"; + clearIcon: { + type: globalThis.PropType; + default: string; }; rules: { type: globalThis.PropType | ((value: any) => string | boolean) | ((value: any) => PromiseLike))[]>; }; - variant: { - type: globalThis.PropType<"underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled">; - default: "underlined"; - }; - clearIcon: { - type: globalThis.PropType; - }; autoGrow: { type: globalThis.PropType; default: boolean; @@ -493,9 +491,15 @@ declare const _default: __VLS_WithTemplateSlots>, { - autofocus: boolean; + error: boolean; + disabled: boolean; + color: string; + variant: "outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled"; + density: "default" | "compact" | "comfortable" | null; + loading: boolean; truncateLength: number; truncateSuffix: string; + autofocus: boolean; cancelButtonColor: string; cancelButtonSize: string | number; cancelButtonTitle: string; @@ -509,8 +513,6 @@ declare const _default: __VLS_WithTemplateSlots, Partial, (_: any) => any>> & Partial, (_: any) => any>>>; diff --git a/dist/plugin/components/VInlineTextarea/index.d.ts b/dist/plugin/components/VInlineTextarea/index.d.ts index a0142e9..90413ad 100644 --- a/dist/plugin/components/VInlineTextarea/index.d.ts +++ b/dist/plugin/components/VInlineTextarea/index.d.ts @@ -1,9 +1,9 @@ import type { VTextarea } from 'vuetify/components'; -import type { SharedProps } from '../../../plugin/types'; +import type { SharedProps } from '../../types'; import type VInlineTextarea from './VInlineTextarea.vue'; export interface VInlineTextareaProps extends Omit { autoGrow?: VTextarea['$props']['autoGrow']; - clearIcon?: string | undefined; + clearIcon?: VTextarea['$props']['clearIcon']; density?: VTextarea['$props']['density']; rows?: VTextarea['$props']['rows']; rules?: VTextarea['$props']['rules']; diff --git a/dist/plugin/components/common/BooleanIcons.vue.d.ts b/dist/plugin/components/common/BooleanIcons.vue.d.ts index efbac98..43724e6 100644 --- a/dist/plugin/components/common/BooleanIcons.vue.d.ts +++ b/dist/plugin/components/common/BooleanIcons.vue.d.ts @@ -22,7 +22,7 @@ declare const _default: import("vue").DefineComponent<{ type: globalThis.PropType; required: true; }; -}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; iconFalse: { type: globalThis.PropType; diff --git a/dist/plugin/components/common/DisplayedValue.vue.d.ts b/dist/plugin/components/common/DisplayedValue.vue.d.ts index 190bc02..0710729 100644 --- a/dist/plugin/components/common/DisplayedValue.vue.d.ts +++ b/dist/plugin/components/common/DisplayedValue.vue.d.ts @@ -1,7 +1,7 @@ import { DisplayValueProps } from './'; declare const _default: __VLS_WithTemplateSlots, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { toggleField: (...args: any[]) => void; -}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>> & { +}, string, import("vue").PublicProps, Readonly>> & { onToggleField?: ((...args: any[]) => any) | undefined; }, {}, {}>, { "display.prepend"?(_: { diff --git a/dist/plugin/components/common/SaveFieldButtons.vue.d.ts b/dist/plugin/components/common/SaveFieldButtons.vue.d.ts index 36b76ea..bdfd1a5 100644 --- a/dist/plugin/components/common/SaveFieldButtons.vue.d.ts +++ b/dist/plugin/components/common/SaveFieldButtons.vue.d.ts @@ -2,7 +2,7 @@ import { SaveFieldButtons } from './'; declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { close: (...args: any[]) => void; save: (...args: any[]) => void; -}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly, {}>>> & { +}, string, import("vue").PublicProps, Readonly, {}>>> & { onSave?: ((...args: any[]) => any) | undefined; onClose?: ((...args: any[]) => any) | undefined; }, {}, {}>; diff --git a/dist/plugin/components/common/index.d.ts b/dist/plugin/components/common/index.d.ts index 512ae4b..2d4d56a 100644 --- a/dist/plugin/components/common/index.d.ts +++ b/dist/plugin/components/common/index.d.ts @@ -1,5 +1,5 @@ import type { MaybeRef, Ref } from 'vue'; -import type { SharedProps } from '../../../plugin/types'; +import type { SharedProps } from '../../types'; export interface BooleanIcons extends Required>, Pick { } export interface DisplayValueProps { diff --git a/dist/plugin/components/index.d.ts b/dist/plugin/components/index.d.ts index 2e9346a..695b825 100644 --- a/dist/plugin/components/index.d.ts +++ b/dist/plugin/components/index.d.ts @@ -1,10 +1,12 @@ +import VInlineAutocomplete from './VInlineAutocomplete/VInlineAutocomplete.vue'; import VInlineCheckbox from './VInlineCheckbox/VInlineCheckbox.vue'; import VInlineCustomField from './VInlineCustomField/VInlineCustomField.vue'; import VInlineSelect from './VInlineSelect/VInlineSelect.vue'; import VInlineSwitch from './VInlineSwitch/VInlineSwitch.vue'; import VInlineTextField from './VInlineTextField/VInlineTextField.vue'; import VInlineTextarea from './VInlineTextarea/VInlineTextarea.vue'; -export { VInlineCheckbox, VInlineCustomField, VInlineSelect, VInlineSwitch, VInlineTextField, VInlineTextarea, }; +export { VInlineAutocomplete, VInlineCheckbox, VInlineCustomField, VInlineSelect, VInlineSwitch, VInlineTextField, VInlineTextarea, }; +export * from './VInlineAutocomplete'; export * from './VInlineCheckbox'; export * from './VInlineCustomField'; export * from './VInlineSelect'; diff --git a/dist/plugin/composables/classes.d.ts b/dist/plugin/composables/classes.d.ts index 8e7e1bb..35dec6e 100644 --- a/dist/plugin/composables/classes.d.ts +++ b/dist/plugin/composables/classes.d.ts @@ -1,4 +1,4 @@ -import { UseCancelButtonClass, UseCardContainerClass, UseDisplayContainerClass, UseDisplayInputControlClass, UseDisplaySelectionControlClass, UseDisplayValueClass, UseFieldContainerClass, UseInlineFieldsContainerClass, UsePrependAppendIconClasses } from '../../plugin/types'; +import { UseCancelButtonClass, UseCardContainerClass, UseDisplayContainerClass, UseDisplayInputControlClass, UseDisplaySelectionControlClass, UseDisplayValueClass, UseFieldContainerClass, UseInlineFieldsContainerClass, UsePrependAppendIconClasses } from '../types'; export declare const useInlineFieldsContainerClass: UseInlineFieldsContainerClass; export declare const useDisplayContainerClass: UseDisplayContainerClass; export declare const useDisplayInputControlClasses: UseDisplayInputControlClass; diff --git a/dist/plugin/composables/helpers.d.ts b/dist/plugin/composables/helpers.d.ts index 2bef108..9d4bf7c 100644 --- a/dist/plugin/composables/helpers.d.ts +++ b/dist/plugin/composables/helpers.d.ts @@ -1,4 +1,4 @@ -import { UseConvertToUnit, UseGetFieldCoordinates, UseTruthyModelValue } from '../../plugin/types'; +import { UseConvertToUnit, UseGetFieldCoordinates, UseTruthyModelValue } from '../types'; /** * Converts a string to a number with a unit. */ diff --git a/dist/plugin/composables/icons.d.ts b/dist/plugin/composables/icons.d.ts index 4ab53b0..716f149 100644 --- a/dist/plugin/composables/icons.d.ts +++ b/dist/plugin/composables/icons.d.ts @@ -1,2 +1,2 @@ -import { UseGetIcon } from '../../plugin/types'; +import { UseGetIcon } from '../types'; export declare const useGetIcon: UseGetIcon; diff --git a/dist/plugin/composables/methods.d.ts b/dist/plugin/composables/methods.d.ts index fcea9a0..bef31c0 100644 --- a/dist/plugin/composables/methods.d.ts +++ b/dist/plugin/composables/methods.d.ts @@ -1,4 +1,4 @@ -import { UseCheckForErrors, UseToggleField, UseTruncateText } from '../../plugin/types'; +import { UseCheckForErrors, UseToggleField, UseTruncateText } from '../types'; declare const useCheckForErrors: UseCheckForErrors; declare const useToggleField: UseToggleField; declare const useTruncateText: UseTruncateText; diff --git a/dist/plugin/composables/styles.d.ts b/dist/plugin/composables/styles.d.ts index 4a34ec2..dea9b17 100644 --- a/dist/plugin/composables/styles.d.ts +++ b/dist/plugin/composables/styles.d.ts @@ -1,5 +1,5 @@ import { CSSProperties } from 'vue'; -import { UseDisplayValueStyles, UseCardContainerStyle, UsePrependAppendIconStyles } from '../../plugin/types'; +import { UseDisplayValueStyles, UseCardContainerStyle, UsePrependAppendIconStyles } from '../types'; export declare const useInlineFieldsContainerStyle: () => CSSProperties; export declare const useDisplayValueStyles: UseDisplayValueStyles; export declare const usePrependAppendIconStyles: UsePrependAppendIconStyles; diff --git a/dist/plugin/types/index.d.ts b/dist/plugin/types/index.d.ts index 89fd617..8a735fd 100644 --- a/dist/plugin/types/index.d.ts +++ b/dist/plugin/types/index.d.ts @@ -1,6 +1,6 @@ import type { CSSProperties, MaybeRef, Ref } from 'vue'; import type { VBtn, VCard, VCheckbox, VIcon, VSelect, VSwitch, VTextField, VTextarea } from 'vuetify/components'; -import type { VInlineCheckbox, VInlineCustomField, VInlineSelect, VInlineSwitch, VInlineTextField, VInlineTextarea } from '../components/index'; +import type { VInlineAutocomplete, VInlineCheckbox, VInlineCustomField, VInlineSelect, VInlineSwitch, VInlineTextField, VInlineTextarea } from '../components/index'; import type { IconOptions, ThemeInstance } from 'vuetify'; import type { EventBusKey } from '@vueuse/core'; export interface KeyStringAny { @@ -62,7 +62,6 @@ export interface SharedProps { iconTrueColor?: string; iconTrueTitle?: string | undefined; icons?: boolean; - item?: Record; label?: string; loading?: boolean; loadingIcon?: string | undefined; @@ -175,7 +174,7 @@ export interface UseCardContainerClass { } export interface UseGetIcon { (options: { - icon: string | undefined; + icon: VIconValue; iconOptions: IconOptions | undefined; name: string; }): string; @@ -234,9 +233,9 @@ export interface UseTruthyModelValue { }): boolean; } export * from '../index'; -export * from '../components/index'; declare module 'vue' { interface GlobalComponents { + VInlineAutocomplete: typeof VInlineAutocomplete; VInlineCheckbox: typeof VInlineCheckbox; VInlineCustomField: typeof VInlineCustomField; VInlineSelect: typeof VInlineSelect; diff --git a/dist/plugin/utils/props.d.ts b/dist/plugin/utils/props.d.ts index 0e158c4..8f6ea0c 100644 --- a/dist/plugin/utils/props.d.ts +++ b/dist/plugin/utils/props.d.ts @@ -40,6 +40,7 @@ export declare const sharedProps: { loading: boolean; loadingWait: boolean; name: string; + required: boolean; tableField: boolean; underlineColor: string; underlineStyle: string; @@ -105,6 +106,7 @@ declare const checkboxProps: { loading: boolean; loadingWait: boolean; name: string; + required: boolean; tableField: boolean; underlineColor: string; underlineStyle: string; @@ -113,13 +115,14 @@ declare const checkboxProps: { valueColor: string; }; declare const selectProps: { - clearIcon: undefined; + clearIcon: string; clearable: boolean; hideSelected: boolean; itemTitle: string; itemValue: string; items: () => never[]; menu: boolean; + rules: () => never[]; variant: "underlined"; hideCancelIcon: boolean; hideSaveIcon: boolean; @@ -168,6 +171,74 @@ declare const selectProps: { loading: boolean; loadingWait: boolean; name: string; + required: boolean; + tableField: boolean; + underlineColor: string; + underlineStyle: string; + underlineWidth: string; + underlined: boolean; + valueColor: string; +}; +declare const autocompleteProps: { + autoSelectFirst: boolean; + clearIcon: string; + clearable: boolean; + hideSelected: boolean; + itemTitle: string; + itemValue: string; + items: () => never[]; + menu: boolean; + menuIcon: string; + rules: () => never[]; + variant: "underlined"; + hideCancelIcon: boolean; + hideSaveIcon: boolean; + loadingIcon: undefined; + loadingIconColor: string; + saveButtonColor: string; + saveButtonSize: string; + saveButtonTitle: string; + saveButtonVariant: "text"; + saveIcon: undefined; + saveIconColor: string; + autofocus: boolean; + cancelButtonColor: string; + cancelButtonSize: string; + cancelButtonTitle: string; + cancelButtonVariant: "text"; + cancelIcon: undefined; + cancelIconColor: string; + cardField: boolean; + cardOffsetX: number; + cardOffsetY: number; + cardProps: () => {}; + cell: boolean; + cellUnderlineFullWidth: boolean; + closeSiblings: boolean; + color: string; + density: "compact"; + disabled: boolean; + displayAppendIcon: undefined; + displayAppendIconColor: undefined; + displayAppendIconSize: string; + displayAppendInnerIcon: undefined; + displayAppendInnerIconColor: undefined; + displayAppendInnerIconSize: string; + displayPrependIcon: undefined; + displayPrependIconColor: undefined; + displayPrependIconSize: string; + displayPrependInnerIcon: undefined; + displayPrependInnerIconColor: undefined; + displayPrependInnerIconSize: string; + emptyText: string; + error: boolean; + fieldOnly: boolean; + hideDetails: boolean; + label: string; + loading: boolean; + loadingWait: boolean; + name: string; + required: boolean; tableField: boolean; underlineColor: string; underlineStyle: string; @@ -232,6 +303,7 @@ declare const switchProps: { loading: boolean; loadingWait: boolean; name: string; + required: boolean; tableField: boolean; underlineColor: string; underlineStyle: string; @@ -241,6 +313,7 @@ declare const switchProps: { }; declare const textareaProps: { autoGrow: boolean; + clearIcon: string; rows: number; truncateLength: undefined; truncateSuffix: string; @@ -282,6 +355,7 @@ declare const textareaProps: { loading: boolean; loadingWait: boolean; name: string; + required: boolean; tableField: boolean; underlineColor: string; underlineStyle: string; @@ -300,6 +374,7 @@ declare const textareaProps: { autofocus: boolean; }; declare const textFieldProps: { + clearIcon: string; truncateLength: undefined; truncateSuffix: string; variant: "underlined"; @@ -350,6 +425,7 @@ declare const textFieldProps: { loading: boolean; loadingWait: boolean; name: string; + required: boolean; tableField: boolean; underlineColor: string; underlineStyle: string; @@ -357,4 +433,4 @@ declare const textFieldProps: { underlined: boolean; valueColor: string; }; -export { checkboxProps, selectProps, switchProps, textFieldProps, textareaProps, }; +export { autocompleteProps, checkboxProps, selectProps, switchProps, textFieldProps, textareaProps, }; diff --git a/dist/scss/main.scss b/dist/scss/main.scss index fd6461a..728c014 100644 --- a/dist/scss/main.scss +++ b/dist/scss/main.scss @@ -342,7 +342,7 @@ position: absolute; .v-card { - border: 1px solid hsla(0, 0%, 50%, 50%); + border: 1px solid hsl(0deg 0% 50% / 50%); .v-card-text { padding: 5px 10px; diff --git a/dist/vuetify-inline-fields.cjs.js b/dist/vuetify-inline-fields.cjs.js index 7fcd8b1..f08b200 100644 --- a/dist/vuetify-inline-fields.cjs.js +++ b/dist/vuetify-inline-fields.cjs.js @@ -1,12 +1,12 @@ -"use strict";var wa=Object.create;var vo=Object.defineProperty;var ka=Object.getOwnPropertyDescriptor;var xa=Object.getOwnPropertyNames;var Fa=Object.getPrototypeOf,Na=Object.prototype.hasOwnProperty;var Aa=(n,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let a of xa(o))!Na.call(n,a)&&a!==t&&vo(n,a,{get:()=>o[a],enumerable:!(l=ka(o,a))||l.enumerable});return n};var en=(n,o,t)=>(t=n!=null?wa(Fa(n)):{},Aa(o||!n||!n.__esModule?vo(t,"default",{value:n,enumerable:!0}):t,n));/** +"use strict";var za=Object.create;var ml=Object.defineProperty;var Ea=Object.getOwnPropertyDescriptor;var Ta=Object.getOwnPropertyNames;var $a=Object.getPrototypeOf,Ra=Object.prototype.hasOwnProperty;var Da=(n,l,t,o)=>{if(l&&typeof l=="object"||typeof l=="function")for(let a of Ta(l))!Ra.call(n,a)&&a!==t&&ml(n,a,{get:()=>l[a],enumerable:!(o=Ea(l,a))||o.enumerable});return n};var Ze=(n,l,t)=>(t=n!=null?za($a(n)):{},Da(l||!n||!n.__esModule?ml(t,"default",{value:n,enumerable:!0}):t,n));/** * @name @wdns/vuetify-inline-fields - * @version 1.0.4 + * @version 1.0.5 * @description Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications. * @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! (https://webdevnerdstuff.com) - * @copyright Copyright 2023, WebDevNerdStuff + * @copyright Copyright 2024, WebDevNerdStuff * @homepage https://webdevnerdstuff.github.io/vuetify-inline-fields/ * @repository https://github.com/webdevnerdstuff/vuetify-inline-fields * @license MIT License - */Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),Gt=require("vuetify"),Pa=require("@vueuse/core"),sn=Symbol("identifier"),un={elevation:5,variant:"flat"},On={cancelButtonColor:"default",cancelButtonSize:"x-small",cancelButtonTitle:"Cancel",cancelButtonVariant:"text",cancelIcon:void 0,cancelIconColor:"default",cardField:!1,cardOffsetX:0,cardOffsetY:0,cardProps:()=>({}),cell:!1,cellUnderlineFullWidth:!0,closeSiblings:!1,color:"primary",density:"compact",disabled:!1,displayAppendIcon:void 0,displayAppendIconColor:void 0,displayAppendIconSize:"x-small",displayAppendInnerIcon:void 0,displayAppendInnerIconColor:void 0,displayAppendInnerIconSize:"x-small",displayPrependIcon:void 0,displayPrependIconColor:void 0,displayPrependIconSize:"x-small",displayPrependInnerIcon:void 0,displayPrependInnerIconColor:void 0,displayPrependInnerIconSize:"x-small",emptyText:"empty",error:!1,fieldOnly:!1,hideCancelIcon:!1,hideDetails:!0,label:"",loading:!1,loadingWait:!0,name:"",tableField:!0,underlineColor:"primary",underlineStyle:"dotted",underlineWidth:"2px",underlined:!0,valueColor:"default"},qt={autofocus:!0},zn={hideCancelIcon:!1,hideSaveIcon:!1,loadingIcon:void 0,loadingIconColor:"primary",saveButtonColor:"primary",saveButtonSize:"x-small",saveButtonTitle:"Save",saveButtonVariant:"text",saveIcon:void 0,saveIconColor:"primary"},rl={falseValue:!1,iconFalse:void 0,iconFalseColor:"danger",iconFalseTitle:"No",iconTrue:void 0,iconTrueColor:"success",iconTrueTitle:"Yes",icons:!0,trueValue:!0},_a={...On,...rl,...zn,falseIcon:void 0,icons:!0,trueIcon:void 0},Ea={...On,...qt,...zn,clearIcon:void 0,clearable:!1,hideSelected:!0,itemTitle:"title",itemValue:"value",items:()=>[],menu:!0,variant:"underlined"},Oa={...On,...rl,...zn,icons:!0,falseIcon:""},za={...qt,...zn,...On,autoGrow:!0,rows:1,truncateLength:void 0,truncateSuffix:"...",variant:"underlined"},il={...On,...qt,...zn,truncateLength:void 0,truncateSuffix:"...",variant:"underlined"},Q="v-inline-fields",cn=n=>{const{cell:o=!1,field:t="",density:l="",disabled:a=!1,iconSet:r="mdi",loading:c=!1,loadingWait:u,tableField:s=!1,variant:i}=n,d=l&&i;return{[`${Q}`]:!0,[`${Q}--container`]:!0,[`${Q}--container-cell`]:o,[`${Q}--container-disabled`]:e.unref(a),[`${Q}--container-table`]:s,[`${Q}--container-icon-set-${r}`]:!0,[`${Q}--container-loading`]:c&&u,[`${Q}--container-${t}`]:!0,[`${Q}--container-${t}-${l}`]:!0,[`${Q}--container-${t}-${l}-${i}`]:d,[`${Q}--container-${t}-${i}`]:i,[`${Q}--container-${t}-${i}-${l}`]:d,[`${Q}--container-${l}`]:l,[`${Q}--container-${l}-${t}`]:l,[`${Q}--container-${l}-${i}`]:d,[`${Q}--container-${i}`]:i,[`${Q}--container-${i}-${l}`]:d,[`${Q}--container-${i}-${t}`]:i}},dn=n=>{const{cell:o=!1,cellUnderlineFullWidth:t=!0,field:l="",density:a=""}=n;return{[`${Q}--display-container-cell`]:o,[`${Q}--display-container-cell-underline-full-width`]:o&&t,[`${Q}--display-container`]:!0,[`${Q}--display-wrapper-value`]:!0,[`${l}`]:!0,"v-input":!0,[`v-input--density-${a}`]:!0,"v-input--horizontal":!0}},vt=n=>{const{density:o="",variant:t=""}=n;return{"v-input":!0,"v-input--dirty":!0,"v-input--horizontal":!0,"v-text-field":!0,[`v-input--density-${o}`]:!0,[`v-text-field--plain-${t}`]:!0}},sl=n=>{const{density:o=""}=n;return{[`${Q}--selection-control`]:!0,[`v-selection-control--density-${o}`]:!0}},Ht=(n,o,t)=>{const{error:l=!1,empty:a=!1}=t;return{[`${Q}`]:!0,[`${Q}--display-value-${n}`]:!0,[`${Q}--display-value`]:!0,[`${Q}--display-value-empty`]:e.unref(a),[`text-${o}`]:!e.unref(l),"text-danger":e.unref(l)}},pn=n=>{const{name:o,active:t=!1}=n;return{[`${Q}`]:!0,[`${Q}--field`]:!0,[`${Q}--field-${o}`]:!0,[`${Q}--field-active`]:t}},vn=n=>{const{name:o,showField:t}=n;return{[`${Q}--card-container`]:!0,[`${Q}--card-container-${o}`]:!0,"d-none":!t}},Ta={fa:{checkboxFalse:"$checkboxOff",checkboxTrue:"far fa-square-check",clear:"$clear",false:"$close",loading:"fa-circle-notch",save:"fa-floppy-disk",true:"$complete"},mdi:{checkboxFalse:"$checkboxOff",checkboxTrue:"mdi:mdi-checkbox-outline",clear:"$clear",false:"$close",loading:"mdi-loading",save:"mdi-content-save",true:"$complete"}},_e=n=>{const{icon:o,iconOptions:t,name:l}=n;if(o)return o;const a=Ta[t==null?void 0:t.defaultSet];if(!a)throw new Error(`VInlineFields: No VInlineFields default ${t==null?void 0:t.defaultSet} icon set found for ${l}. Please set the icon prop.`);const r=a[l];if(!r)throw new Error(`VInlineFields: No ${l} icon found. Please set the icon prop, or set the default icon set to 'mdi' or 'fa'`);return r},xe=typeof window<"u",Yt=xe&&"IntersectionObserver"in window;function fo(n,o,t){const l=o.length-1;if(l<0)return n===void 0?t:n;for(let a=0;afn(n[l],o[l]))}function Te(n,o,t){if(o===!0)return n===void 0?t:n;if(o==null||typeof o=="boolean")return t;if(n!==Object(n)){if(typeof o!="function")return t;const a=o(n,t);return a===void 0?t:a}if(typeof o=="string")return function(a,r,c){return a!=null&&r&&typeof r=="string"?a[r]!==void 0?a[r]:fo(a,(r=(r=r.replace(/\[(\w+)\]/g,".$1")).replace(/^\./,"")).split("."),c):c}(n,o,t);if(Array.isArray(o))return fo(n,o,t);if(typeof o!="function")return t;const l=o(n,t);return l===void 0?t:l}function Z(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";return n==null||n===""?void 0:isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${o}`:void 0}function Pt(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function nt(n){if(n&&"$el"in n){const o=n.$el;return(o==null?void 0:o.nodeType)===Node.TEXT_NODE?o.nextElementSibling:o}return n}const mo=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16});function St(n,o){return o.every(t=>n.hasOwnProperty(t))}function ul(n,o){const t={},l=new Set(Object.keys(n));for(const a of o)l.has(a)&&(t[a]=n[a]);return t}function yo(n,o,t){const l=Object.create(null),a=Object.create(null);for(const r in n)o.some(c=>c instanceof RegExp?c.test(r):c===r)&&!(t!=null&&t.some(c=>c===r))?l[r]=n[r]:a[r]=n[r];return[l,a]}function Ke(n,o){const t={...n};return o.forEach(l=>delete t[l]),t}const cl=/^on[^a-z]/,_t=n=>cl.test(n),$a=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function Tn(n){const[o,t]=yo(n,[cl]),l=Ke(o,$a),[a,r]=yo(t,["class","style","id",/^data-/]);return Object.assign(a,o),Object.assign(r,l),[a,r]}function $e(n){return n==null?[]:Array.isArray(n)?n:[n]}function ln(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(o,Math.min(t,n))}function go(n,o){return n+(arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0").repeat(Math.max(0,o-n.length))}function tn(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=arguments.length>2?arguments[2]:void 0;const l={};for(const a in n)l[a]=n[a];for(const a in o){const r=n[a],c=o[a];Pt(r)&&Pt(c)?l[a]=tn(r,c,t):Array.isArray(r)&&Array.isArray(c)&&t?l[a]=t(r,c):l[a]=c}return l}function dl(n){return n.map(o=>o.type===e.Fragment?dl(o.children):o).flat()}function qe(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(qe.cache.has(n))return qe.cache.get(n);const o=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return qe.cache.set(n,o),o}function Zn(n,o){if(!o||typeof o!="object")return[];if(Array.isArray(o))return o.map(t=>Zn(n,t)).flat(1);if(Array.isArray(o.children))return o.children.map(t=>Zn(n,t)).flat(1);if(o.component){if(Object.getOwnPropertySymbols(o.component.provides).includes(n))return[o.component];if(o.component.subTree)return Zn(n,o.component.subTree).flat(1)}return[]}function Xt(n){const o=e.reactive({}),t=e.computed(n);return e.watchEffect(()=>{for(const l in t.value)o[l]=t.value[l]},{flush:"sync"}),e.toRefs(o)}function tt(n,o){return n.includes(o)}function ho(n){return n[2].toLowerCase()+n.slice(3)}qe.cache=new Map;const Ee=()=>[Function,Array];function bo(n,o){return!!(n[o="on"+e.capitalize(o)]||n[`${o}Once`]||n[`${o}Capture`]||n[`${o}OnceCapture`]||n[`${o}CaptureOnce`])}function pl(n){for(var o=arguments.length,t=new Array(o>1?o-1:0),l=1;l1&&arguments[1]!==void 0)||arguments[1];const t=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(l=>`${l}${o?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(t)]}function vl(n,o,t){let l,a=n.indexOf(document.activeElement);const r=o==="next"?1:-1;do a+=r,l=n[a];while((!l||l.offsetParent==null||!((t==null?void 0:t(l))??1))&&a=0);return l}function ot(n,o){var l,a,r,c;const t=Et(n);if(o)if(o==="first")(l=t[0])==null||l.focus();else if(o==="last")(a=t.at(-1))==null||a.focus();else if(typeof o=="number")(r=t[o])==null||r.focus();else{const u=vl(t,o);u?u.focus():ot(n,o==="next"?"first":"last")}else n!==document.activeElement&&n.contains(document.activeElement)||((c=t[0])==null||c.focus())}function lt(n,o){if(!(xe&&typeof CSS<"u"&&CSS.supports!==void 0&&CSS.supports(`selector(${o})`)))return null;try{return!!n&&n.matches(o)}catch{return null}}function fl(n){return n.some(o=>!e.isVNode(o)||o.type!==e.Comment&&(o.type!==e.Fragment||fl(o.children)))?n:null}const ml=["top","bottom"],Ra=["start","end","left","right"];function Ot(n,o){let[t,l]=n.split(" ");return l||(l=tt(ml,t)?"start":tt(Ra,t)?"top":"center"),{side:Co(t,o),align:Co(l,o)}}function Co(n,o){return n==="start"?o?"right":"left":n==="end"?o?"left":"right":n}function It(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function Vt(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function So(n){return{side:n.align,align:n.side}}function Io(n){return tt(ml,n.side)?"y":"x"}class He{constructor(o){let{x:t,y:l,width:a,height:r}=o;this.x=t,this.y=l,this.width=a,this.height=r}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function Vo(n,o){return{x:{before:Math.max(0,o.left-n.left),after:Math.max(0,n.right-o.right)},y:{before:Math.max(0,o.top-n.top),after:Math.max(0,n.bottom-o.bottom)}}}function yl(n){return Array.isArray(n)?new He({x:n[0],y:n[1],width:0,height:0}):n.getBoundingClientRect()}function Kt(n){const o=n.getBoundingClientRect(),t=getComputedStyle(n),l=t.transform;if(l){let a,r,c,u,s;if(l.startsWith("matrix3d("))a=l.slice(9,-1).split(/, /),r=+a[0],c=+a[5],u=+a[12],s=+a[13];else{if(!l.startsWith("matrix("))return new He(o);a=l.slice(7,-1).split(/, /),r=+a[0],c=+a[3],u=+a[4],s=+a[5]}const i=t.transformOrigin,d=o.x-u-(1-r)*parseFloat(i),v=o.y-s-(1-c)*parseFloat(i.slice(i.indexOf(" ")+1)),p=r?o.width/r:n.offsetWidth+1,f=c?o.height/c:n.offsetHeight+1;return new He({x:d,y:v,width:p,height:f})}return new He(o)}function on(n,o,t){if(n.animate===void 0)return{finished:Promise.resolve()};let l;try{l=n.animate(o,t)}catch{return{finished:Promise.resolve()}}return l.finished===void 0&&(l.finished=new Promise(a=>{l.onfinish=()=>{a(l)}})),l}const Yn=new WeakMap,nn=2.4,Bo=.2126729,wo=.7151522,ko=.072175,Da=.55,La=.58,Ma=.57,Wa=.62,Xn=.03,xo=1.45,ja=5e-4,Ua=1.25,Ga=1.25,Fo=.078,No=12.82051282051282,Kn=.06,Ao=.001;function Po(n,o){const t=(n.r/255)**nn,l=(n.g/255)**nn,a=(n.b/255)**nn,r=(o.r/255)**nn,c=(o.g/255)**nn,u=(o.b/255)**nn;let s,i=t*Bo+l*wo+a*ko,d=r*Bo+c*wo+u*ko;if(i<=Xn&&(i+=(Xn-i)**xo),d<=Xn&&(d+=(Xn-d)**xo),Math.abs(d-i)i){const v=(d**Da-i**La)*Ua;s=v-Ao?0:v>-Fo?v-v*No*Kn:v+Kn}return 100*s}function Fn(n){e.warn(`Vuetify: ${n}`)}function Bt(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const _o=/^(?(?:rgb|hsl)a?)\((?.+)\)/,qa={rgb:(n,o,t,l)=>({r:n,g:o,b:t,a:l}),rgba:(n,o,t,l)=>({r:n,g:o,b:t,a:l}),hsl:(n,o,t,l)=>Eo({h:n,s:o,l:t,a:l}),hsla:(n,o,t,l)=>Eo({h:n,s:o,l:t,a:l}),hsv:(n,o,t,l)=>Nn({h:n,s:o,v:t,a:l}),hsva:(n,o,t,l)=>Nn({h:n,s:o,v:t,a:l})};function wn(n){if(typeof n=="number")return(isNaN(n)||n<0||n>16777215)&&Fn(`'${n}' is not a valid hex color`),{r:(16711680&n)>>16,g:(65280&n)>>8,b:255&n};if(typeof n=="string"&&_o.test(n)){const{groups:o}=n.match(_o),{fn:t,values:l}=o,a=l.split(/,\s*/).map(r=>r.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(t)?parseFloat(r)/100:parseFloat(r));return qa[t](...a)}if(typeof n=="string"){let o=n.startsWith("#")?n.slice(1):n;[3,4].includes(o.length)?o=o.split("").map(l=>l+l).join(""):[6,8].includes(o.length)||Fn(`'${n}' is not a valid hex(a) color`);const t=parseInt(o,16);return(isNaN(t)||t<0||t>4294967295)&&Fn(`'${n}' is not a valid hex(a) color`),function(l){l=function(s){return s.startsWith("#")&&(s=s.slice(1)),s=s.replace(/([^0-9a-f])/gi,"F"),(s.length===3||s.length===4)&&(s=s.split("").map(i=>i+i).join("")),s.length!==6&&(s=go(go(s,6),8,"F")),s}(l);let[a,r,c,u]=function(s){let i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const d=[];let v=0;for(;vparseInt(s,16));return u=u===void 0?u:u/255,{r:a,g:r,b:c,a:u}}(o)}if(typeof n=="object"){if(St(n,["r","g","b"]))return n;if(St(n,["h","s","l"]))return Nn(gl(n));if(St(n,["h","s","v"]))return Nn(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} -Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function Nn(n){const{h:o,s:t,v:l,a}=n,r=u=>{const s=(u+o/60)%6;return l-l*t*Math.max(Math.min(s,4-s,1),0)},c=[r(5),r(3),r(1)].map(u=>Math.round(255*u));return{r:c[0],g:c[1],b:c[2],a}}function Eo(n){return Nn(gl(n))}function gl(n){const{h:o,s:t,l,a}=n,r=l+t*Math.min(l,1-l);return{h:o,s:r===0?0:2-2*l/r,v:r,a}}function U(n,o){return t=>Object.keys(n).reduce((l,a)=>{const r=typeof n[a]=="object"&&n[a]!=null&&!Array.isArray(n[a])?n[a]:{type:n[a]};return l[a]=t&&a in t?{...r,default:t[a]}:r,o&&!l[a].source&&(l[a].source=o),l},{})}const ae=U({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component"),at=Symbol.for("vuetify:defaults");function Jt(){const n=e.inject(at);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function mn(n,o){const t=Jt(),l=e.ref(n),a=e.computed(()=>{if(e.unref(o==null?void 0:o.disabled))return t.value;const r=e.unref(o==null?void 0:o.scoped),c=e.unref(o==null?void 0:o.reset),u=e.unref(o==null?void 0:o.root);if(l.value==null&&!(r||c||u))return t.value;let s=tn(l.value,{prev:t.value});if(r)return s;if(c||u){const i=Number(c||1/0);for(let d=0;d<=i&&s&&"prev"in s;d++)s=s.prev;return s&&typeof u=="string"&&u in s&&(s=tn(tn(s,{prev:s}),s[u])),s}return s.prev?tn(s.prev,s):s});return e.provide(at,a),a}function Ha(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},o=arguments.length>1?arguments[1]:void 0,t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Jt();const l=Ie("useDefaults");if(o=o??l.type.name??l.type.__name,!o)throw new Error("[Vuetify] Could not determine component name");const a=e.computed(()=>{var u;return(u=t.value)==null?void 0:u[n._as??o]}),r=new Proxy(n,{get(u,s){var d,v,p,f;const i=Reflect.get(u,s);return s==="class"||s==="style"?[(d=a.value)==null?void 0:d[s],i].filter(y=>y!=null):typeof s!="string"||function(y,g){var m,h;return((m=y.props)==null?void 0:m[g])!==void 0||((h=y.props)==null?void 0:h[qe(g)])!==void 0}(l.vnode,s)?i:((v=a.value)==null?void 0:v[s])??((f=(p=t.value)==null?void 0:p.global)==null?void 0:f[s])??i}}),c=e.shallowRef();return e.watchEffect(()=>{if(a.value){const u=Object.entries(a.value).filter(s=>{let[i]=s;return i.startsWith(i[0].toUpperCase())});c.value=u.length?Object.fromEntries(u):void 0}else c.value=void 0}),{props:r,provideSubDefaults:function(){const u=function(s){let i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Ie("injectSelf");const{provides:d}=i;if(d&&s in d)return d[s]}(at,l);e.provide(at,e.computed(()=>c.value?tn((u==null?void 0:u.value)??{},c.value):u==null?void 0:u.value))}}}function An(n){if(n._setup=n._setup??n.setup,!n.name)return Fn("The component is missing an explicit name, unable to generate default prop value"),n;if(n._setup){n.props=U(n.props??{},n.name)();const o=Object.keys(n.props).filter(t=>t!=="class"&&t!=="style");n.filterProps=function(t){return ul(t,o)},n.props._as=String,n.setup=function(t,l){const a=Jt();if(!a.value)return n._setup(t,l);const{props:r,provideSubDefaults:c}=Ha(t,t._as??n.name,a),u=n._setup(r,l);return c(),u}}return n}function Y(){let n=!(arguments.length>0&&arguments[0]!==void 0)||arguments[0];return o=>(n?An:e.defineComponent)(o)}function $n(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",t=arguments.length>2?arguments[2]:void 0;return Y()({name:t??e.capitalize(e.camelize(n.replace(/__/g,"-"))),props:{tag:{type:String,default:o},...ae()},setup(l,a){let{slots:r}=a;return()=>{var c;return e.h(l.tag,{class:[n,l.class],style:l.style},(c=r.default)==null?void 0:c.call(r))}}})}function hl(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const o=n.getRootNode();return o!==document&&o.getRootNode({composed:!0})!==document?null:o}const rt="cubic-bezier(0.4, 0, 0.2, 1)";function Ie(n,o){const t=e.getCurrentInstance();if(!t)throw new Error(`[Vuetify] ${n} ${o||"must be called from inside a setup function"}`);return t}function Oe(){const n=Ie(arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables").type;return qe((n==null?void 0:n.aliasName)||(n==null?void 0:n.name))}let bl=0,Qn=new WeakMap;function Pe(){const n=Ie("getUid");if(Qn.has(n))return Qn.get(n);{const o=bl++;return Qn.set(n,o),o}}function Cl(n){let o=arguments.length>1&&arguments[1]!==void 0&&arguments[1];for(;n;){if(o?Ya(n):Zt(n))return n;n=n.parentElement}return document.scrollingElement}function it(n,o){const t=[];if(o&&n&&!o.contains(n))return t;for(;n&&(Zt(n)&&t.push(n),n!==o);)n=n.parentElement;return t}function Zt(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const o=window.getComputedStyle(n);return o.overflowY==="scroll"||o.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function Ya(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const o=window.getComputedStyle(n);return["scroll","auto"].includes(o.overflowY)}function ee(n){Ie("useRender").render=n}Pe.reset=()=>{bl=0,Qn=new WeakMap};const yn=U({border:[Boolean,Number,String]},"border");function gn(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Oe();return{borderClasses:e.computed(()=>{const t=e.isRef(n)?n.value:n.border,l=[];if(t===!0||t==="")l.push(`${o}--border`);else if(typeof t=="string"||t===0)for(const a of String(t).split(" "))l.push(`border-${a}`);return l})}}const Xa=[null,"default","comfortable","compact"],ze=U({density:{type:String,default:"default",validator:n=>Xa.includes(n)}},"density");function De(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Oe();return{densityClasses:e.computed(()=>`${o}--density-${n.density}`)}}const hn=U({elevation:{type:[Number,String],validator(n){const o=parseInt(n);return!isNaN(o)&&o>=0&&o<=24}}},"elevation");function bn(n){return{elevationClasses:e.computed(()=>{const o=e.isRef(n)?n.value:n.elevation,t=[];return o==null||t.push(`elevation-${o}`),t})}}const Le=U({rounded:{type:[Boolean,Number,String],default:void 0}},"rounded");function Me(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Oe();return{roundedClasses:e.computed(()=>{const t=e.isRef(n)?n.value:n.rounded,l=[];if(t===!0||t==="")l.push(`${o}--rounded`);else if(typeof t=="string"||t===0)for(const a of String(t).split(" "))l.push(`rounded-${a}`);return l})}}const Ae=U({tag:{type:String,default:"div"}},"tag"),Oo=Symbol.for("vuetify:theme"),Ve=U({theme:String},"theme");function ke(n){Ie("provideTheme");const o=e.inject(Oo,null);if(!o)throw new Error("Could not find Vuetify theme injection");const t=e.computed(()=>n.theme??o.name.value),l=e.computed(()=>o.themes.value[t.value]),a=e.computed(()=>o.isDisabled?void 0:`v-theme--${t.value}`),r={...o,name:t,current:l,themeClasses:a};return e.provide(Oo,r),r}function Qt(n){return Xt(()=>{const o=[],t={};if(n.value.background)if(Bt(n.value.background)){if(t.backgroundColor=n.value.background,!n.value.text&&Bt(l=n.value.background)&&!/^((rgb|hsl)a?\()?var\(--/.test(l)){const a=wn(n.value.background);if(a.a==null||a.a===1){const r=function(c){const u=Math.abs(Po(wn(0),wn(c)));return Math.abs(Po(wn(16777215),wn(c)))>Math.min(u,50)?"#fff":"#000"}(a);t.color=r,t.caretColor=r}}}else o.push(`bg-${n.value.background}`);var l;return n.value.text&&(Bt(n.value.text)?(t.color=n.value.text,t.caretColor=n.value.text):o.push(`text-${n.value.text}`)),{colorClasses:o,colorStyles:t}})}function Re(n,o){const t=e.computed(()=>({text:e.isRef(n)?n.value:o?n[o]:null})),{colorClasses:l,colorStyles:a}=Qt(t);return{textColorClasses:l,textColorStyles:a}}function an(n,o){const t=e.computed(()=>({background:e.isRef(n)?n.value:o?n[o]:null})),{colorClasses:l,colorStyles:a}=Qt(t);return{backgroundColorClasses:l,backgroundColorStyles:a}}const Ka=["elevated","flat","tonal","outlined","text","plain"];function Rn(n,o){return e.createVNode(e.Fragment,null,[n&&e.createVNode("span",{key:"overlay",class:`${o}__overlay`},null),e.createVNode("span",{key:"underlay",class:`${o}__underlay`},null)])}const Ge=U({color:String,variant:{type:String,default:"elevated",validator:n=>Ka.includes(n)}},"variant");function Dn(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Oe();const t=e.computed(()=>{const{variant:r}=e.unref(n);return`${o}--variant-${r}`}),{colorClasses:l,colorStyles:a}=Qt(e.computed(()=>{const{variant:r,color:c}=e.unref(n);return{[["elevated","flat"].includes(r)?"background":"text"]:c}}));return{colorClasses:l,colorStyles:a,variantClasses:t}}const Sl=U({divided:Boolean,...yn(),...ae(),...ze(),...hn(),...Le(),...Ae(),...Ve(),...Ge()},"VBtnGroup"),zo=Y()({name:"VBtnGroup",props:Sl(),setup(n,o){let{slots:t}=o;const{themeClasses:l}=ke(n),{densityClasses:a}=De(n),{borderClasses:r}=gn(n),{elevationClasses:c}=bn(n),{roundedClasses:u}=Me(n);mn({VBtn:{height:"auto",color:e.toRef(n,"color"),density:e.toRef(n,"density"),flat:!0,variant:e.toRef(n,"variant")}}),ee(()=>e.createVNode(n.tag,{class:["v-btn-group",{"v-btn-group--divided":n.divided},l.value,r.value,a.value,c.value,u.value,n.class],style:n.style},t))}});function Ye(n,o){let t;function l(){t=e.effectScope(),t.run(()=>o.length?o(()=>{t==null||t.stop(),l()}):o())}e.watch(n,a=>{a&&!t?l():a||(t==null||t.stop(),t=void 0)},{immediate:!0}),e.onScopeDispose(()=>{t==null||t.stop()})}function he(n,o,t){let l=arguments.length>3&&arguments[3]!==void 0?arguments[3]:d=>d,a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:d=>d;const r=Ie("useProxiedModel"),c=e.ref(n[o]!==void 0?n[o]:t),u=qe(o),s=u!==o?e.computed(()=>{var d,v,p,f;return n[o],!(!((d=r.vnode.props)!=null&&d.hasOwnProperty(o))&&!((v=r.vnode.props)!=null&&v.hasOwnProperty(u))||!((p=r.vnode.props)!=null&&p.hasOwnProperty(`onUpdate:${o}`))&&!((f=r.vnode.props)!=null&&f.hasOwnProperty(`onUpdate:${u}`)))}):e.computed(()=>{var d,v;return n[o],!(!((d=r.vnode.props)!=null&&d.hasOwnProperty(o))||!((v=r.vnode.props)!=null&&v.hasOwnProperty(`onUpdate:${o}`)))});Ye(()=>!s.value,()=>{e.watch(()=>n[o],d=>{c.value=d})});const i=e.computed({get(){const d=n[o];return l(s.value?d:c.value)},set(d){const v=a(d),p=e.toRaw(s.value?n[o]:c.value);p!==v&&l(p)!==d&&(c.value=v,r==null||r.emit(`update:${o}`,v))}});return Object.defineProperty(i,"externalValue",{get:()=>s.value?n[o]:c.value}),i}const Il=U({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),Vl=U({value:null,disabled:Boolean,selectedClass:String},"group-item");function Bl(n,o){let t=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];const l=Ie("useGroupItem");if(!l)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const a=Pe();e.provide(Symbol.for(`${o.description}:id`),a);const r=e.inject(o,null);if(!r){if(!t)return r;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${o.description}`)}const c=e.toRef(n,"value"),u=e.computed(()=>!(!r.disabled.value&&!n.disabled));r.register({id:a,value:c,disabled:u},l),e.onBeforeUnmount(()=>{r.unregister(a)});const s=e.computed(()=>r.isSelected(a)),i=e.computed(()=>s.value&&[r.selectedClass.value,n.selectedClass]);return e.watch(s,d=>{l.emit("group:selected",{value:d})}),{id:a,isSelected:s,toggle:()=>r.select(a,!s.value),select:d=>r.select(a,d),selectedClass:i,value:c,disabled:u,group:r}}function wl(n,o){let t=!1;const l=e.reactive([]),a=he(n,"modelValue",[],i=>i==null?[]:To(l,$e(i)),i=>{const d=function(v,p){const f=[];return p.forEach(y=>{const g=v.findIndex(m=>m.id===y);if(~g){const m=v[g];f.push(m.value!=null?m.value:g)}}),f}(l,i);return n.multiple?d:d[0]}),r=Ie("useGroup");function c(){const i=l.find(d=>!d.disabled);i&&n.mandatory==="force"&&!a.value.length&&(a.value=[i.id])}function u(i){if(n.multiple&&Fn('This method is not supported when using "multiple" prop'),a.value.length){const d=a.value[0],v=l.findIndex(y=>y.id===d);let p=(v+i)%l.length,f=l[p];for(;f.disabled&&p!==v;)p=(p+i)%l.length,f=l[p];if(f.disabled)return;a.value=[l[p].id]}else{const d=l.find(v=>!v.disabled);d&&(a.value=[d.id])}}e.onMounted(()=>{c()}),e.onBeforeUnmount(()=>{t=!0});const s={register:function(i,d){const v=i,p=Zn(Symbol.for(`${o.description}:id`),r==null?void 0:r.vnode).indexOf(d);p>-1?l.splice(p,0,v):l.push(v)},unregister:function(i){if(t)return;c();const d=l.findIndex(v=>v.id===i);l.splice(d,1)},selected:a,select:function(i,d){const v=l.find(p=>p.id===i);if(!d||!(v!=null&&v.disabled))if(n.multiple){const p=a.value.slice(),f=p.findIndex(g=>g===i),y=~f;if(d=d??!y,y&&n.mandatory&&p.length<=1||!y&&n.max!=null&&p.length+1>n.max)return;f<0&&d?p.push(i):f>=0&&!d&&p.splice(f,1),a.value=p}else{const p=a.value.includes(i);if(n.mandatory&&p)return;a.value=d??!p?[i]:[]}},disabled:e.toRef(n,"disabled"),prev:()=>u(l.length-1),next:()=>u(1),isSelected:i=>a.value.includes(i),selectedClass:e.computed(()=>n.selectedClass),items:e.computed(()=>l),getItemIndex:i=>function(d,v){const p=To(d,[v]);return p.length?d.findIndex(f=>f.id===p[0]):-1}(l,i)};return e.provide(o,s),s}function To(n,o){const t=[];return o.forEach(l=>{const a=n.find(c=>fn(l,c.value)),r=n[l];(a==null?void 0:a.value)!=null?t.push(a.id):r!=null&&t.push(r.id)}),t}const kl=Symbol.for("vuetify:v-btn-toggle"),Ja=U({...Sl(),...Il()},"VBtnToggle");Y()({name:"VBtnToggle",props:Ja(),emits:{"update:modelValue":n=>!0},setup(n,o){let{slots:t}=o;const{isSelected:l,next:a,prev:r,select:c,selected:u}=wl(n,kl);return ee(()=>{const s=zo.filterProps(n);return e.createVNode(zo,e.mergeProps({class:["v-btn-toggle",n.class]},s,{style:n.style}),{default:()=>{var i;return[(i=t.default)==null?void 0:i.call(t,{isSelected:l,next:a,prev:r,select:c,selected:u})]}})}),{next:a,prev:r,select:c}}});const Za=U({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),Be=Y(!1)({name:"VDefaultsProvider",props:Za(),setup(n,o){let{slots:t}=o;const{defaults:l,disabled:a,reset:r,root:c,scoped:u}=e.toRefs(n);return mn(l,{reset:r,root:c,scoped:u,disabled:a}),()=>{var s;return(s=t.default)==null?void 0:s.call(t)}}}),se=[String,Function,Object,Array],Qa=Symbol.for("vuetify:icons"),st=U({icon:{type:se},tag:{type:String,required:!0}},"icon"),$o=Y()({name:"VComponentIcon",props:st(),setup(n,o){let{slots:t}=o;return()=>{const l=n.icon;return e.createVNode(n.tag,null,{default:()=>{var a;return[n.icon?e.createVNode(l,null,null):(a=t.default)==null?void 0:a.call(t)]}})}}}),er=An({name:"VSvgIcon",inheritAttrs:!1,props:st(),setup(n,o){let{attrs:t}=o;return()=>e.createVNode(n.tag,e.mergeProps(t,{style:null}),{default:()=>[e.createVNode("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(l=>Array.isArray(l)?e.createVNode("path",{d:l[0],"fill-opacity":l[1]},null):e.createVNode("path",{d:l},null)):e.createVNode("path",{d:n.icon},null)])]})}});An({name:"VLigatureIcon",props:st(),setup:n=>()=>e.createVNode(n.tag,null,{default:()=>[n.icon]})}),An({name:"VClassIcon",props:st(),setup:n=>()=>e.createVNode(n.tag,{class:n.icon},null)});const nr=["x-small","small","default","large","x-large"],Ln=U({size:{type:[String,Number],default:"default"}},"size");function Mn(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Oe();return Xt(()=>{let t,l;return tt(nr,n.size)?t=`${o}--size-${n.size}`:n.size&&(l={width:Z(n.size),height:Z(n.size)}),{sizeClasses:t,sizeStyles:l}})}const tr=U({color:String,start:Boolean,end:Boolean,icon:se,...ae(),...Ln(),...Ae({tag:"i"}),...Ve()},"VIcon"),ce=Y()({name:"VIcon",props:tr(),setup(n,o){let{attrs:t,slots:l}=o;const a=e.ref(),{themeClasses:r}=ke(n),{iconData:c}=(d=>{const v=e.inject(Qa);if(!v)throw new Error("Missing Vuetify Icons provide!");return{iconData:e.computed(()=>{var m;const p=e.unref(d);if(!p)return{component:$o};let f=p;if(typeof f=="string"&&(f=f.trim(),f.startsWith("$")&&(f=(m=v.aliases)==null?void 0:m[f.slice(1)])),!f)throw new Error(`Could not find aliased icon "${p}"`);if(Array.isArray(f))return{component:er,icon:f};if(typeof f!="string")return{component:$o,icon:f};const y=Object.keys(v.sets).find(h=>typeof f=="string"&&f.startsWith(`${h}:`)),g=y?f.slice(y.length+1):f;return{component:v.sets[y??v.defaultSet].component,icon:g}})}})(e.computed(()=>a.value||n.icon)),{sizeClasses:u}=Mn(n),{textColorClasses:s,textColorStyles:i}=Re(e.toRef(n,"color"));return ee(()=>{var v,p;const d=(v=l.default)==null?void 0:v.call(l);return d&&(a.value=(p=dl(d).filter(f=>f.type===e.Text&&f.children&&typeof f.children=="string")[0])==null?void 0:p.children),e.createVNode(c.value.component,{tag:n.tag,icon:c.value.icon,class:["v-icon","notranslate",r.value,u.value,s.value,{"v-icon--clickable":!!t.onClick,"v-icon--start":n.start,"v-icon--end":n.end},n.class],style:[u.value?void 0:{fontSize:Z(n.size),height:Z(n.size),width:Z(n.size)},i.value,n.style],role:t.onClick?"button":void 0,"aria-hidden":!t.onClick},{default:()=>[d]})}),{}}});function xl(n,o){const t=e.ref(),l=e.shallowRef(!1);if(Yt){const a=new IntersectionObserver(r=>{n==null||n(r,a),l.value=!!r.find(c=>c.isIntersecting)},o);e.onBeforeUnmount(()=>{a.disconnect()}),e.watch(t,(r,c)=>{c&&(a.unobserve(c),l.value=!1),r&&a.observe(r)},{flush:"post"})}return{intersectionRef:t,isIntersecting:l}}function eo(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"content";const t=e.ref(),l=e.ref();if(xe){const a=new ResizeObserver(r=>{n==null||n(r,a),r.length&&(l.value=o==="content"?r[0].contentRect:r[0].target.getBoundingClientRect())});e.onBeforeUnmount(()=>{a.disconnect()}),e.watch(t,(r,c)=>{c&&(a.unobserve(nt(c)),l.value=void 0),r&&a.observe(nt(r))},{flush:"post"})}return{resizeRef:t,contentRect:e.readonly(l)}}const or=U({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...ae(),...Ln(),...Ae({tag:"div"}),...Ve()},"VProgressCircular"),Fl=Y()({name:"VProgressCircular",props:or(),setup(n,o){let{slots:t}=o;const l=2*Math.PI*20,a=e.ref(),{themeClasses:r}=ke(n),{sizeClasses:c,sizeStyles:u}=Mn(n),{textColorClasses:s,textColorStyles:i}=Re(e.toRef(n,"color")),{textColorClasses:d,textColorStyles:v}=Re(e.toRef(n,"bgColor")),{intersectionRef:p,isIntersecting:f}=xl(),{resizeRef:y,contentRect:g}=eo(),m=e.computed(()=>Math.max(0,Math.min(100,parseFloat(n.modelValue)))),h=e.computed(()=>Number(n.width)),B=e.computed(()=>u.value?Number(n.size):g.value?g.value.width:Math.max(h.value,32)),F=e.computed(()=>20/(1-h.value/B.value)*2),W=e.computed(()=>h.value/B.value*F.value),P=e.computed(()=>Z((100-m.value)/100*l));return e.watchEffect(()=>{p.value=a.value,y.value=a.value}),ee(()=>e.createVNode(n.tag,{ref:a,class:["v-progress-circular",{"v-progress-circular--indeterminate":!!n.indeterminate,"v-progress-circular--visible":f.value,"v-progress-circular--disable-shrink":n.indeterminate==="disable-shrink"},r.value,c.value,s.value,n.class],style:[u.value,i.value,n.style],role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":n.indeterminate?void 0:m.value},{default:()=>[e.createVNode("svg",{style:{transform:`rotate(calc(-90deg + ${Number(n.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${F.value} ${F.value}`},[e.createVNode("circle",{class:["v-progress-circular__underlay",d.value],style:v.value,fill:"transparent",cx:"50%",cy:"50%",r:20,"stroke-width":W.value,"stroke-dasharray":l,"stroke-dashoffset":0},null),e.createVNode("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r:20,"stroke-width":W.value,"stroke-dasharray":l,"stroke-dashoffset":P.value},null)]),t.default&&e.createVNode("div",{class:"v-progress-circular__content"},[t.default({value:m.value})])]})),{}}}),Je=U({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function Ze(n){return{dimensionStyles:e.computed(()=>({height:Z(n.height),maxHeight:Z(n.maxHeight),maxWidth:Z(n.maxWidth),minHeight:Z(n.minHeight),minWidth:Z(n.minWidth),width:Z(n.width)}))}}const Nl=Symbol.for("vuetify:locale");function no(){const n=e.inject(Nl);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function Wn(){const n=e.inject(Nl);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const Ro={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},to=U({location:String},"location");function oo(n){let o=arguments.length>1&&arguments[1]!==void 0&&arguments[1],t=arguments.length>2?arguments[2]:void 0;const{isRtl:l}=Wn();return{locationStyles:e.computed(()=>{if(!n.location)return{};const{side:r,align:c}=Ot(n.location.split(" ").length>1?n.location:`${n.location} center`,l.value);function u(i){return t?t(i):0}const s={};return r!=="center"&&(o?s[Ro[r]]=`calc(100% - ${u(r)}px)`:s[r]=0),c!=="center"?o?s[Ro[c]]=`calc(100% - ${u(c)}px)`:s[c]=0:(r==="center"?s.top=s.left="50%":s[{top:"left",bottom:"left",left:"top",right:"top"}[r]]="50%",s.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[r]),s})}}const lr=U({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...ae(),...to({location:"top"}),...Le(),...Ae(),...Ve()},"VProgressLinear"),ar=Y()({name:"VProgressLinear",props:lr(),emits:{"update:modelValue":n=>!0},setup(n,o){let{slots:t}=o;const l=he(n,"modelValue"),{isRtl:a,rtlClasses:r}=Wn(),{themeClasses:c}=ke(n),{locationStyles:u}=oo(n),{textColorClasses:s,textColorStyles:i}=Re(n,"color"),{backgroundColorClasses:d,backgroundColorStyles:v}=an(e.computed(()=>n.bgColor||n.color)),{backgroundColorClasses:p,backgroundColorStyles:f}=an(n,"color"),{roundedClasses:y}=Me(n),{intersectionRef:g,isIntersecting:m}=xl(),h=e.computed(()=>parseInt(n.max,10)),B=e.computed(()=>parseInt(n.height,10)),F=e.computed(()=>parseFloat(n.bufferValue)/h.value*100),W=e.computed(()=>parseFloat(l.value)/h.value*100),P=e.computed(()=>a.value!==n.reverse),O=e.computed(()=>n.indeterminate?"fade-transition":"slide-x-transition"),T=e.computed(()=>n.bgOpacity==null?n.bgOpacity:parseFloat(n.bgOpacity));function A(S){if(!g.value)return;const{left:N,right:C,width:V}=g.value.getBoundingClientRect(),I=P.value?V-S.clientX+(C-V):S.clientX-N;l.value=Math.round(I/V*h.value)}return ee(()=>e.createVNode(n.tag,{ref:g,class:["v-progress-linear",{"v-progress-linear--absolute":n.absolute,"v-progress-linear--active":n.active&&m.value,"v-progress-linear--reverse":P.value,"v-progress-linear--rounded":n.rounded,"v-progress-linear--rounded-bar":n.roundedBar,"v-progress-linear--striped":n.striped},y.value,c.value,r.value,n.class],style:[{bottom:n.location==="bottom"?0:void 0,top:n.location==="top"?0:void 0,height:n.active?Z(B.value):0,"--v-progress-linear-height":Z(B.value),...u.value},n.style],role:"progressbar","aria-hidden":n.active?"false":"true","aria-valuemin":"0","aria-valuemax":n.max,"aria-valuenow":n.indeterminate?void 0:W.value,onClick:n.clickable&&A},{default:()=>[n.stream&&e.createVNode("div",{key:"stream",class:["v-progress-linear__stream",s.value],style:{...i.value,[P.value?"left":"right"]:Z(-B.value),borderTop:`${Z(B.value/2)} dotted`,opacity:T.value,top:`calc(50% - ${Z(B.value/4)})`,width:Z(100-F.value,"%"),"--v-progress-linear-stream-to":Z(B.value*(P.value?1:-1))}},null),e.createVNode("div",{class:["v-progress-linear__background",d.value],style:[v.value,{opacity:T.value,width:Z(n.stream?F.value:100,"%")}]},null),e.createVNode(e.Transition,{name:O.value},{default:()=>[n.indeterminate?e.createVNode("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(S=>e.createVNode("div",{key:S,class:["v-progress-linear__indeterminate",S,p.value],style:f.value},null))]):e.createVNode("div",{class:["v-progress-linear__determinate",p.value],style:[f.value,{width:Z(W.value,"%")}]},null)]}),t.default&&e.createVNode("div",{class:"v-progress-linear__content"},[t.default({value:W.value,buffer:F.value})])]})),{}}}),lo=U({loading:[Boolean,String]},"loader");function ft(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Oe();return{loaderClasses:e.computed(()=>({[`${o}--loading`]:n.loading}))}}function ao(n,o){var l;let{slots:t}=o;return e.createVNode("div",{class:`${n.name}__loader`},[((l=t.default)==null?void 0:l.call(t,{color:n.color,isActive:n.active}))||e.createVNode(ar,{absolute:n.absolute,active:n.active,color:n.color,height:"2",indeterminate:!0},null)])}const rr=["static","relative","fixed","absolute","sticky"],Al=U({position:{type:String,validator:n=>rr.includes(n)}},"position");function Pl(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Oe();return{positionClasses:e.computed(()=>n.position?`${o}--${n.position}`:void 0)}}function mt(n,o){const t=e.resolveDynamicComponent("RouterLink"),l=e.computed(()=>!(!n.href&&!n.to)),a=e.computed(()=>(l==null?void 0:l.value)||bo(o,"click")||bo(n,"click"));if(typeof t=="string")return{isLink:l,isClickable:a,href:e.toRef(n,"href")};const r=n.to?t.useLink(n):void 0,c=function(){const u=Ie("useRoute");return e.computed(()=>{var s;return(s=u==null?void 0:u.proxy)==null?void 0:s.$route})}();return{isLink:l,isClickable:a,route:r==null?void 0:r.route,navigate:r==null?void 0:r.navigate,isActive:r&&e.computed(()=>{var u,s,i;return n.exact?c.value?((u=r.isExactActive)==null?void 0:u.value)&&fn(r.route.value.query,c.value.query):(s=r.isExactActive)==null?void 0:s.value:(i=r.isActive)==null?void 0:i.value}),href:e.computed(()=>n.to?r==null?void 0:r.route.value.href:n.href)}}const yt=U({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let wt=!1;const zt=Symbol("rippleStop"),ir=80;function Do(n,o){n.style.transform=o,n.style.webkitTransform=o}function Tt(n){return n.constructor.name==="TouchEvent"}function _l(n){return n.constructor.name==="KeyboardEvent"}const ut={show(n,o){var f;let t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!((f=o==null?void 0:o._ripple)!=null&&f.enabled))return;const l=document.createElement("span"),a=document.createElement("span");l.appendChild(a),l.className="v-ripple__container",t.class&&(l.className+=` ${t.class}`);const{radius:r,scale:c,x:u,y:s,centerX:i,centerY:d}=function(y,g){var T;let m=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},h=0,B=0;if(!_l(y)){const A=g.getBoundingClientRect(),S=Tt(y)?y.touches[y.touches.length-1]:y;h=S.clientX-A.left,B=S.clientY-A.top}let F=0,W=.3;(T=g._ripple)!=null&&T.circle?(W=.15,F=g.clientWidth/2,F=m.center?F:F+Math.sqrt((h-F)**2+(B-F)**2)/4):F=Math.sqrt(g.clientWidth**2+g.clientHeight**2)/2;const P=(g.clientWidth-2*F)/2+"px",O=(g.clientHeight-2*F)/2+"px";return{radius:F,scale:W,x:m.center?P:h-F+"px",y:m.center?O:B-F+"px",centerX:P,centerY:O}}(n,o,t),v=2*r+"px";a.className="v-ripple__animation",a.style.width=v,a.style.height=v,o.appendChild(l);const p=window.getComputedStyle(o);p&&p.position==="static"&&(o.style.position="relative",o.dataset.previousPosition="static"),a.classList.add("v-ripple__animation--enter"),a.classList.add("v-ripple__animation--visible"),Do(a,`translate(${u}, ${s}) scale3d(${c},${c},${c})`),a.dataset.activated=String(performance.now()),setTimeout(()=>{a.classList.remove("v-ripple__animation--enter"),a.classList.add("v-ripple__animation--in"),Do(a,`translate(${i}, ${d}) scale3d(1,1,1)`)},0)},hide(n){var r;if(!((r=n==null?void 0:n._ripple)!=null&&r.enabled))return;const o=n.getElementsByClassName("v-ripple__animation");if(o.length===0)return;const t=o[o.length-1];if(t.dataset.isHiding)return;t.dataset.isHiding="true";const l=performance.now()-Number(t.dataset.activated),a=Math.max(250-l,0);setTimeout(()=>{t.classList.remove("v-ripple__animation--in"),t.classList.add("v-ripple__animation--out"),setTimeout(()=>{var c;n.getElementsByClassName("v-ripple__animation").length===1&&n.dataset.previousPosition&&(n.style.position=n.dataset.previousPosition,delete n.dataset.previousPosition),((c=t.parentNode)==null?void 0:c.parentNode)===n&&n.removeChild(t.parentNode)},300)},a)}};function El(n){return n===void 0||!!n}function Pn(n){const o={},t=n.currentTarget;if(t!=null&&t._ripple&&!t._ripple.touched&&!n[zt]){if(n[zt]=!0,Tt(n))t._ripple.touched=!0,t._ripple.isTouch=!0;else if(t._ripple.isTouch)return;if(o.center=t._ripple.centered||_l(n),t._ripple.class&&(o.class=t._ripple.class),Tt(n)){if(t._ripple.showTimerCommit)return;t._ripple.showTimerCommit=()=>{ut.show(n,t,o)},t._ripple.showTimer=window.setTimeout(()=>{var l;(l=t==null?void 0:t._ripple)!=null&&l.showTimerCommit&&(t._ripple.showTimerCommit(),t._ripple.showTimerCommit=null)},ir)}else ut.show(n,t,o)}}function Lo(n){n[zt]=!0}function Ne(n){const o=n.currentTarget;if(o!=null&&o._ripple){if(window.clearTimeout(o._ripple.showTimer),n.type==="touchend"&&o._ripple.showTimerCommit)return o._ripple.showTimerCommit(),o._ripple.showTimerCommit=null,void(o._ripple.showTimer=window.setTimeout(()=>{Ne(n)}));window.setTimeout(()=>{o._ripple&&(o._ripple.touched=!1)}),ut.hide(o)}}function Ol(n){const o=n.currentTarget;o!=null&&o._ripple&&(o._ripple.showTimerCommit&&(o._ripple.showTimerCommit=null),window.clearTimeout(o._ripple.showTimer))}let _n=!1;function zl(n){_n||n.keyCode!==mo.enter&&n.keyCode!==mo.space||(_n=!0,Pn(n))}function Tl(n){_n=!1,Ne(n)}function $l(n){_n&&(_n=!1,Ne(n))}function Mo(n,o,t){const{value:l,modifiers:a}=o,r=El(l);if(r||ut.hide(n),n._ripple=n._ripple??{},n._ripple.enabled=r,n._ripple.centered=a.center,n._ripple.circle=a.circle,Pt(l)&&l.class&&(n._ripple.class=l.class),r&&!t){if(a.stop)return n.addEventListener("touchstart",Lo,{passive:!0}),void n.addEventListener("mousedown",Lo);n.addEventListener("touchstart",Pn,{passive:!0}),n.addEventListener("touchend",Ne,{passive:!0}),n.addEventListener("touchmove",Ol,{passive:!0}),n.addEventListener("touchcancel",Ne),n.addEventListener("mousedown",Pn),n.addEventListener("mouseup",Ne),n.addEventListener("mouseleave",Ne),n.addEventListener("keydown",zl),n.addEventListener("keyup",Tl),n.addEventListener("blur",$l),n.addEventListener("dragstart",Ne,{passive:!0})}else!r&&t&&Rl(n)}function Rl(n){n.removeEventListener("mousedown",Pn),n.removeEventListener("touchstart",Pn),n.removeEventListener("touchend",Ne),n.removeEventListener("touchmove",Ol),n.removeEventListener("touchcancel",Ne),n.removeEventListener("mouseup",Ne),n.removeEventListener("mouseleave",Ne),n.removeEventListener("keydown",zl),n.removeEventListener("keyup",Tl),n.removeEventListener("dragstart",Ne),n.removeEventListener("blur",$l)}const jn={mounted:function(n,o){Mo(n,o,!1)},unmounted:function(n){delete n._ripple,Rl(n)},updated:function(n,o){o.value!==o.oldValue&&Mo(n,o,El(o.oldValue))}},sr=U({active:{type:Boolean,default:void 0},symbol:{type:null,default:kl},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:se,appendIcon:se,block:Boolean,slim:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:String,...yn(),...ae(),...ze(),...Je(),...hn(),...Vl(),...lo(),...to(),...Al(),...Le(),...yt(),...Ln(),...Ae({tag:"button"}),...Ve(),...Ge({variant:"elevated"})},"VBtn"),Wo=Y()({name:"VBtn",directives:{Ripple:jn},props:sr(),emits:{"group:selected":n=>!0},setup(n,o){let{attrs:t,slots:l}=o;const{themeClasses:a}=ke(n),{borderClasses:r}=gn(n),{colorClasses:c,colorStyles:u,variantClasses:s}=Dn(n),{densityClasses:i}=De(n),{dimensionStyles:d}=Ze(n),{elevationClasses:v}=bn(n),{loaderClasses:p}=ft(n),{locationStyles:f}=oo(n),{positionClasses:y}=Pl(n),{roundedClasses:g}=Me(n),{sizeClasses:m,sizeStyles:h}=Mn(n),B=Bl(n,n.symbol,!1),F=mt(n,t),W=e.computed(()=>{var S;return n.active!==void 0?n.active:F.isLink.value?(S=F.isActive)==null?void 0:S.value:B==null?void 0:B.isSelected.value}),P=e.computed(()=>(B==null?void 0:B.disabled.value)||n.disabled),O=e.computed(()=>n.variant==="elevated"&&!(n.disabled||n.flat||n.border)),T=e.computed(()=>{if(n.value!==void 0&&typeof n.value!="symbol")return Object(n.value)===n.value?JSON.stringify(n.value,null,0):n.value});function A(S){var N;P.value||F.isLink.value&&(S.metaKey||S.ctrlKey||S.shiftKey||S.button!==0||t.target==="_blank")||((N=F.navigate)==null||N.call(F,S),B==null||B.toggle())}return function(S,N){e.watch(()=>{var C;return(C=S.isActive)==null?void 0:C.value},C=>{S.isLink.value&&C&&N&&e.nextTick(()=>{N(!0)})},{immediate:!0})}(F,B==null?void 0:B.select),ee(()=>{var $,x;const S=F.isLink.value?"a":n.tag,N=!(!n.prependIcon&&!l.prepend),C=!(!n.appendIcon&&!l.append),V=!(!n.icon||n.icon===!0),I=(B==null?void 0:B.isSelected.value)&&(!F.isLink.value||(($=F.isActive)==null?void 0:$.value))||!B||((x=F.isActive)==null?void 0:x.value);return e.withDirectives(e.createVNode(S,{type:S==="a"?void 0:"button",class:["v-btn",B==null?void 0:B.selectedClass.value,{"v-btn--active":W.value,"v-btn--block":n.block,"v-btn--disabled":P.value,"v-btn--elevated":O.value,"v-btn--flat":n.flat,"v-btn--icon":!!n.icon,"v-btn--loading":n.loading,"v-btn--slim":n.slim,"v-btn--stacked":n.stacked},a.value,r.value,I?c.value:void 0,i.value,v.value,p.value,y.value,g.value,m.value,s.value,n.class],style:[I?u.value:void 0,d.value,f.value,h.value,n.style],disabled:P.value||void 0,href:F.href.value,onClick:A,value:T.value},{default:()=>{var _;return[Rn(!0,"v-btn"),!n.icon&&N&&e.createVNode("span",{key:"prepend",class:"v-btn__prepend"},[l.prepend?e.createVNode(Be,{key:"prepend-defaults",disabled:!n.prependIcon,defaults:{VIcon:{icon:n.prependIcon}}},l.prepend):e.createVNode(ce,{key:"prepend-icon",icon:n.prependIcon},null)]),e.createVNode("span",{class:"v-btn__content","data-no-activator":""},[!l.default&&V?e.createVNode(ce,{key:"content-icon",icon:n.icon},null):e.createVNode(Be,{key:"content-defaults",disabled:!V,defaults:{VIcon:{icon:n.icon}}},{default:()=>{var w;return[((w=l.default)==null?void 0:w.call(l))??n.text]}})]),!n.icon&&C&&e.createVNode("span",{key:"append",class:"v-btn__append"},[l.append?e.createVNode(Be,{key:"append-defaults",disabled:!n.appendIcon,defaults:{VIcon:{icon:n.appendIcon}}},l.append):e.createVNode(ce,{key:"append-icon",icon:n.appendIcon},null)]),!!n.loading&&e.createVNode("span",{key:"loader",class:"v-btn__loader"},[((_=l.loader)==null?void 0:_.call(l))??e.createVNode(Fl,{color:typeof n.loading=="boolean"?void 0:n.loading,indeterminate:!0,size:"23",width:"2"},null)])]}}),[[e.resolveDirective("ripple"),!P.value&&n.ripple,null]])}),{}}}),Cn=e.defineComponent({__name:"SaveFieldButtons",props:{loading:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonVariant:{},cancelButtonTitle:{},cancelIconColor:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideSaveIcon:{type:Boolean},cancelIcon:{},loadingIcon:{},loadingIconColor:{},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIconColor:{},saveIcon:{}},emits:["close","save"],setup(n,{emit:o}){const t=e.useAttrs(),l=o,a=n,r=e.inject(Symbol.for("vuetify:icons")),c=e.computed(()=>a.error),u=e.computed(()=>({[`${Q}--save-fields-container`]:!0})),s=e.computed(()=>a.loading),i=e.reactive({...t,...a}),d=e.computed(()=>(r==null?void 0:r.defaultSet)==="fa"?"fa-spin":(r==null?void 0:r.defaultSet)==="mdi"?"mdi-spin":""),v=e.computed(()=>(h=>{const{cancelButtonVariant:B}=h;return{"me-1":B==="elevated","ms-1":!0}})({cancelButtonVariant:i.cancelButtonVariant})),p=e.computed(()=>_e({icon:a.cancelIcon,iconOptions:r,name:"false"})),f=e.computed(()=>_e({icon:a.loadingIcon,iconOptions:r,name:"loading"})),y=e.computed(()=>_e({icon:a.saveIcon,iconOptions:r,name:"save"}));function g(){l("close")}function m(){l("save")}return(h,B)=>(e.openBlock(),e.createElementBlock("div",e.mergeProps({class:e.unref(u)},h.$attrs),[e.unref(i).hideSaveIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Wo,{key:0,class:"ms-1",color:e.unref(i).saveButtonColor,disabled:e.unref(c),icon:"",size:e.unref(i).saveButtonSize,title:e.unref(s)?"Loading":e.unref(i).saveButtonTitle,variant:e.unref(i).saveButtonVariant,onClick:m},{default:e.withCtx(()=>[e.unref(s)?(e.openBlock(),e.createBlock(ce,{key:1,class:e.normalizeClass(e.unref(d)),color:e.unref(i).loadingIconColor,icon:e.unref(f)},null,8,["class","color","icon"])):(e.openBlock(),e.createBlock(ce,{key:0,color:e.unref(c)?"error":e.unref(i).saveIconColor,icon:e.unref(y)},null,8,["color","icon"]))]),_:1},8,["color","disabled","size","title","variant"])),e.unref(i).hideCancelIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Wo,{key:1,class:e.normalizeClass(e.unref(v)),color:e.unref(i).cancelButtonColor,icon:"",size:e.unref(i).cancelButtonSize,title:e.unref(i).cancelButtonTitle,variant:e.unref(i).cancelButtonVariant,onClick:g},{default:e.withCtx(()=>[e.unref(i).hideSaveIcon&&e.unref(s)?(e.openBlock(),e.createBlock(ce,{key:0,class:e.normalizeClass(e.unref(d)),color:e.unref(i).loadingIconColor,icon:e.unref(f)},null,8,["class","color","icon"])):(e.openBlock(),e.createBlock(ce,{key:1,class:"text-default",color:e.unref(i).cancelIconColor,icon:e.unref(p)},null,8,["color","icon"]))]),_:1},8,["class","color","size","title","variant"]))],16))}}),ur=U({disabled:Boolean,group:Boolean,hideOnLeave:Boolean,leaveAbsolute:Boolean,mode:String,origin:String},"transition");function Fe(n,o,t){return Y()({name:n,props:ur({mode:t,origin:o}),setup(l,a){let{slots:r}=a;const c={onBeforeEnter(u){l.origin&&(u.style.transformOrigin=l.origin)},onLeave(u){if(l.leaveAbsolute){const{offsetTop:s,offsetLeft:i,offsetWidth:d,offsetHeight:v}=u;u._transitionInitialStyles={position:u.style.position,top:u.style.top,left:u.style.left,width:u.style.width,height:u.style.height},u.style.position="absolute",u.style.top=`${s}px`,u.style.left=`${i}px`,u.style.width=`${d}px`,u.style.height=`${v}px`}l.hideOnLeave&&u.style.setProperty("display","none","important")},onAfterLeave(u){if(l.leaveAbsolute&&(u!=null&&u._transitionInitialStyles)){const{position:s,top:i,left:d,width:v,height:p}=u._transitionInitialStyles;delete u._transitionInitialStyles,u.style.position=s||"",u.style.top=i||"",u.style.left=d||"",u.style.width=v||"",u.style.height=p||""}}};return()=>{const u=l.group?e.TransitionGroup:e.Transition;return e.h(u,{name:l.disabled?"":n,css:!l.disabled,...l.group?void 0:{mode:l.mode},...l.disabled?{}:c},r.default)}}})}function Dl(n,o){let t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"in-out";return Y()({name:n,props:{mode:{type:String,default:t},disabled:Boolean},setup(l,a){let{slots:r}=a;return()=>e.h(e.Transition,{name:l.disabled?"":n,css:!l.disabled,...l.disabled?{}:o},r.default)}})}function Ll(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";const o=arguments.length>1&&arguments[1]!==void 0&&arguments[1]?"width":"height",t=e.camelize(`offset-${o}`);return{onBeforeEnter(r){r._parent=r.parentNode,r._initialStyle={transition:r.style.transition,overflow:r.style.overflow,[o]:r.style[o]}},onEnter(r){const c=r._initialStyle;r.style.setProperty("transition","none","important"),r.style.overflow="hidden";const u=`${r[t]}px`;r.style[o]="0",r.offsetHeight,r.style.transition=c.transition,n&&r._parent&&r._parent.classList.add(n),requestAnimationFrame(()=>{r.style[o]=u})},onAfterEnter:a,onEnterCancelled:a,onLeave(r){r._initialStyle={transition:"",overflow:r.style.overflow,[o]:r.style[o]},r.style.overflow="hidden",r.style[o]=`${r[t]}px`,r.offsetHeight,requestAnimationFrame(()=>r.style[o]="0")},onAfterLeave:l,onLeaveCancelled:l};function l(r){n&&r._parent&&r._parent.classList.remove(n),a(r)}function a(r){const c=r._initialStyle[o];r.style.overflow=r._initialStyle.overflow,c!=null&&(r.style[o]=c),delete r._initialStyle}}const cr=U({target:[Object,Array]},"v-dialog-transition"),Ml=Y()({name:"VDialogTransition",props:cr(),setup(n,o){let{slots:t}=o;const l={onBeforeEnter(a){a.style.pointerEvents="none",a.style.visibility="hidden"},async onEnter(a,r){var p;await new Promise(f=>requestAnimationFrame(f)),await new Promise(f=>requestAnimationFrame(f)),a.style.visibility="";const{x:c,y:u,sx:s,sy:i,speed:d}=Uo(n.target,a),v=on(a,[{transform:`translate(${c}px, ${u}px) scale(${s}, ${i})`,opacity:0},{}],{duration:225*d,easing:"cubic-bezier(0.0, 0, 0.2, 1)"});(p=jo(a))==null||p.forEach(f=>{on(f,[{opacity:0},{opacity:0,offset:.33},{}],{duration:450*d,easing:rt})}),v.finished.then(()=>r())},onAfterEnter(a){a.style.removeProperty("pointer-events")},onBeforeLeave(a){a.style.pointerEvents="none"},async onLeave(a,r){var v;await new Promise(p=>requestAnimationFrame(p));const{x:c,y:u,sx:s,sy:i,speed:d}=Uo(n.target,a);on(a,[{},{transform:`translate(${c}px, ${u}px) scale(${s}, ${i})`,opacity:0}],{duration:125*d,easing:"cubic-bezier(0.4, 0, 1, 1)"}).finished.then(()=>r()),(v=jo(a))==null||v.forEach(p=>{on(p,[{},{opacity:0,offset:.2},{opacity:0}],{duration:250*d,easing:rt})})},onAfterLeave(a){a.style.removeProperty("pointer-events")}};return()=>n.target?e.createVNode(e.Transition,e.mergeProps({name:"dialog-transition"},l,{css:!1}),t):e.createVNode(e.Transition,{name:"dialog-transition"},t)}});function jo(n){var t;const o=(t=n.querySelector(":scope > .v-card, :scope > .v-sheet, :scope > .v-list"))==null?void 0:t.children;return o&&[...o]}function Uo(n,o){const t=yl(n),l=Kt(o),[a,r]=getComputedStyle(o).transformOrigin.split(" ").map(h=>parseFloat(h)),[c,u]=getComputedStyle(o).getPropertyValue("--v-overlay-anchor-origin").split(" ");let s=t.left+t.width/2;c==="left"||u==="left"?s-=t.width/2:c!=="right"&&u!=="right"||(s+=t.width/2);let i=t.top+t.height/2;c==="top"||u==="top"?i-=t.height/2:c!=="bottom"&&u!=="bottom"||(i+=t.height/2);const d=t.width/l.width,v=t.height/l.height,p=Math.max(1,d,v),f=d/p||0,y=v/p||0,g=l.width*l.height/(window.innerWidth*window.innerHeight),m=g>.12?Math.min(1.5,10*(g-.12)+1):1;return{x:s-(a+l.left),y:i-(r+l.top),sx:f,sy:y,speed:m}}Fe("fab-transition","center center","out-in"),Fe("dialog-bottom-transition"),Fe("dialog-top-transition"),Fe("fade-transition");const dr=Fe("scale-transition");Fe("scroll-x-transition"),Fe("scroll-x-reverse-transition"),Fe("scroll-y-transition"),Fe("scroll-y-reverse-transition"),Fe("slide-x-transition"),Fe("slide-x-reverse-transition");const Wl=Fe("slide-y-transition");Fe("slide-y-reverse-transition");const pr=Dl("expand-transition",Ll()),jl=Dl("expand-x-transition",Ll("",!0)),Ul=U({aspectRatio:[String,Number],contentClass:String,inline:Boolean,...ae(),...Je()},"VResponsive"),Go=Y()({name:"VResponsive",props:Ul(),setup(n,o){let{slots:t}=o;const{aspectStyles:l}=function(r){return{aspectStyles:e.computed(()=>{const c=Number(r.aspectRatio);return c?{paddingBottom:String(1/c*100)+"%"}:void 0})}}(n),{dimensionStyles:a}=Ze(n);return ee(()=>{var r;return e.createVNode("div",{class:["v-responsive",{"v-responsive--inline":n.inline},n.class],style:[a.value,n.style]},[e.createVNode("div",{class:"v-responsive__sizer",style:l.value},null),(r=t.additional)==null?void 0:r.call(t),t.default&&e.createVNode("div",{class:["v-responsive__content",n.contentClass]},[t.default()])])}),{}}}),Un=U({transition:{type:[Boolean,String,Object],default:"fade-transition",validator:n=>n!==!0}},"transition"),We=(n,o)=>{let{slots:t}=o;const{transition:l,disabled:a,...r}=n,{component:c=e.Transition,...u}=typeof l=="object"?l:{};return e.h(c,e.mergeProps(typeof l=="string"?{name:a?"":l}:u,r,{disabled:a}),t)};function qo(n,o){var l;const t=(l=n._observe)==null?void 0:l[o.instance.$.uid];t&&(t.observer.unobserve(n),delete n._observe[o.instance.$.uid])}const ro={mounted:function(n,o){if(!Yt)return;const t=o.modifiers||{},l=o.value,{handler:a,options:r}=typeof l=="object"?l:{handler:l,options:{}},c=new IntersectionObserver(function(){var v;let u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],s=arguments.length>1?arguments[1]:void 0;const i=(v=n._observe)==null?void 0:v[o.instance.$.uid];if(!i)return;const d=u.some(p=>p.isIntersecting);!a||t.quiet&&!i.init||t.once&&!d&&!i.init||a(d,u,s),d&&t.once?qo(n,o):i.init=!0},r);n._observe=Object(n._observe),n._observe[o.instance.$.uid]={init:!1,observer:c},c.observe(n)},unmounted:qo},vr=U({alt:String,cover:Boolean,draggable:{type:[Boolean,String],default:void 0},eager:Boolean,gradient:String,lazySrc:String,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},sizes:String,src:{type:[String,Object],default:""},crossorigin:String,referrerpolicy:String,srcset:String,position:String,...Ul(),...ae(),...Un()},"VImg"),Gl=Y()({name:"VImg",directives:{intersect:ro},props:vr(),emits:{loadstart:n=>!0,load:n=>!0,error:n=>!0},setup(n,o){let{emit:t,slots:l}=o;const a=Ie("VImg"),r=e.shallowRef(""),c=e.ref(),u=e.shallowRef(n.eager?"loading":"idle"),s=e.shallowRef(),i=e.shallowRef(),d=e.computed(()=>n.src&&typeof n.src=="object"?{src:n.src.src,srcset:n.srcset||n.src.srcset,lazySrc:n.lazySrc||n.src.lazySrc,aspect:Number(n.aspectRatio||n.src.aspect||0)}:{src:n.src,srcset:n.srcset,lazySrc:n.lazySrc,aspect:Number(n.aspectRatio||0)}),v=e.computed(()=>d.value.aspect||s.value/i.value||0);function p(S){if((!n.eager||!S)&&(!Yt||S||n.eager)){if(u.value="loading",d.value.lazySrc){const N=new Image;N.src=d.value.lazySrc,h(N,null)}d.value.src&&e.nextTick(()=>{var N;t("loadstart",((N=c.value)==null?void 0:N.currentSrc)||d.value.src),setTimeout(()=>{var C;if(!a.isUnmounted)if((C=c.value)!=null&&C.complete){if(c.value.naturalWidth||y(),u.value==="error")return;v.value||h(c.value,null),u.value==="loading"&&f()}else v.value||h(c.value),g()})})}}function f(){var S;a.isUnmounted||(g(),h(c.value),u.value="loaded",t("load",((S=c.value)==null?void 0:S.currentSrc)||d.value.src))}function y(){var S;a.isUnmounted||(u.value="error",t("error",((S=c.value)==null?void 0:S.currentSrc)||d.value.src))}function g(){const S=c.value;S&&(r.value=S.currentSrc||S.src)}e.watch(()=>n.src,()=>{p(u.value!=="idle")}),e.watch(v,(S,N)=>{!S&&N&&c.value&&h(c.value)}),e.onBeforeMount(()=>p());let m=-1;function h(S){let N=arguments.length>1&&arguments[1]!==void 0?arguments[1]:100;const C=()=>{if(clearTimeout(m),a.isUnmounted)return;const{naturalHeight:V,naturalWidth:I}=S;V||I?(s.value=I,i.value=V):S.complete||u.value!=="loading"||N==null?(S.currentSrc.endsWith(".svg")||S.currentSrc.startsWith("data:image/svg+xml"))&&(s.value=1,i.value=1):m=window.setTimeout(C,N)};C()}e.onBeforeUnmount(()=>{clearTimeout(m)});const B=e.computed(()=>({"v-img__img--cover":n.cover,"v-img__img--contain":!n.cover})),F=()=>{var C;if(!d.value.src||u.value==="idle")return null;const S=e.createVNode("img",{class:["v-img__img",B.value],style:{objectPosition:n.position},src:d.value.src,srcset:d.value.srcset,alt:n.alt,crossorigin:n.crossorigin,referrerpolicy:n.referrerpolicy,draggable:n.draggable,sizes:n.sizes,ref:c,onLoad:f,onError:y},null),N=(C=l.sources)==null?void 0:C.call(l);return e.createVNode(We,{transition:n.transition,appear:!0},{default:()=>[e.withDirectives(N?e.createVNode("picture",{class:"v-img__picture"},[N,S]):S,[[e.vShow,u.value==="loaded"]])]})},W=()=>e.createVNode(We,{transition:n.transition},{default:()=>[d.value.lazySrc&&u.value!=="loaded"&&e.createVNode("img",{class:["v-img__img","v-img__img--preload",B.value],style:{objectPosition:n.position},src:d.value.lazySrc,alt:n.alt,crossorigin:n.crossorigin,referrerpolicy:n.referrerpolicy,draggable:n.draggable},null)]}),P=()=>l.placeholder?e.createVNode(We,{transition:n.transition,appear:!0},{default:()=>[(u.value==="loading"||u.value==="error"&&!l.error)&&e.createVNode("div",{class:"v-img__placeholder"},[l.placeholder()])]}):null,O=()=>l.error?e.createVNode(We,{transition:n.transition,appear:!0},{default:()=>[u.value==="error"&&e.createVNode("div",{class:"v-img__error"},[l.error()])]}):null,T=()=>n.gradient?e.createVNode("div",{class:"v-img__gradient",style:{backgroundImage:`linear-gradient(${n.gradient})`}},null):null,A=e.shallowRef(!1);{const S=e.watch(v,N=>{N&&(requestAnimationFrame(()=>{requestAnimationFrame(()=>{A.value=!0})}),S())})}return ee(()=>{const S=Go.filterProps(n);return e.withDirectives(e.createVNode(Go,e.mergeProps({class:["v-img",{"v-img--booting":!A.value},n.class],style:[{width:Z(n.width==="auto"?s.value:n.width)},n.style]},S,{aspectRatio:v.value,"aria-label":n.alt,role:n.alt?"img":void 0}),{additional:()=>e.createVNode(e.Fragment,null,[e.createVNode(F,null,null),e.createVNode(W,null,null),e.createVNode(T,null,null),e.createVNode(P,null,null),e.createVNode(O,null,null)]),default:l.default}),[[e.resolveDirective("intersect"),{handler:p,options:n.options},null,{once:!0}]])}),{currentSrc:r,image:c,state:u,naturalWidth:s,naturalHeight:i}}}),fr=U({text:String,clickable:Boolean,...ae(),...Ve()},"VLabel"),ql=Y()({name:"VLabel",props:fr(),setup(n,o){let{slots:t}=o;return ee(()=>{var l;return e.createVNode("label",{class:["v-label",{"v-label--clickable":n.clickable},n.class],style:n.style},[n.text,(l=t.default)==null?void 0:l.call(t)])}),{}}}),Hl=Symbol.for("vuetify:selection-control-group"),Yl=U({color:String,disabled:{type:Boolean,default:null},defaultsTarget:String,error:Boolean,id:String,inline:Boolean,falseIcon:se,trueIcon:se,ripple:{type:Boolean,default:!0},multiple:{type:Boolean,default:null},name:String,readonly:{type:Boolean,default:null},modelValue:null,type:String,valueComparator:{type:Function,default:fn},...ae(),...ze(),...Ve()},"SelectionControlGroup"),mr=U({...Yl({defaultsTarget:"VSelectionControl"})},"VSelectionControlGroup");Y()({name:"VSelectionControlGroup",props:mr(),emits:{"update:modelValue":n=>!0},setup(n,o){let{slots:t}=o;const l=he(n,"modelValue"),a=Pe(),r=e.computed(()=>n.id||`v-selection-control-group-${a}`),c=e.computed(()=>n.name||r.value),u=new Set;return e.provide(Hl,{modelValue:l,forceUpdate:()=>{u.forEach(s=>s())},onForceUpdate:s=>{u.add(s),e.onScopeDispose(()=>{u.delete(s)})}}),mn({[n.defaultsTarget]:{color:e.toRef(n,"color"),disabled:e.toRef(n,"disabled"),density:e.toRef(n,"density"),error:e.toRef(n,"error"),inline:e.toRef(n,"inline"),modelValue:l,multiple:e.computed(()=>!!n.multiple||n.multiple==null&&Array.isArray(l.value)),name:c,falseIcon:e.toRef(n,"falseIcon"),trueIcon:e.toRef(n,"trueIcon"),readonly:e.toRef(n,"readonly"),ripple:e.toRef(n,"ripple"),type:e.toRef(n,"type"),valueComparator:e.toRef(n,"valueComparator")}}),ee(()=>{var s;return e.createVNode("div",{class:["v-selection-control-group",{"v-selection-control-group--inline":n.inline},n.class],style:n.style,role:n.type==="radio"?"radiogroup":void 0},[(s=t.default)==null?void 0:s.call(t)])}),{}}});const io=U({label:String,baseColor:String,trueValue:null,falseValue:null,value:null,...ae(),...Yl()},"VSelectionControl"),ct=Y()({name:"VSelectionControl",directives:{Ripple:jn},inheritAttrs:!1,props:io(),emits:{"update:modelValue":n=>!0},setup(n,o){let{attrs:t,slots:l}=o;const{group:a,densityClasses:r,icon:c,model:u,textColorClasses:s,textColorStyles:i,backgroundColorClasses:d,backgroundColorStyles:v,trueValue:p}=function(P){const O=e.inject(Hl,void 0),{densityClasses:T}=De(P),A=he(P,"modelValue"),S=e.computed(()=>P.trueValue!==void 0?P.trueValue:P.value===void 0||P.value),N=e.computed(()=>P.falseValue!==void 0&&P.falseValue),C=e.computed(()=>!!P.multiple||P.multiple==null&&Array.isArray(A.value)),V=e.computed({get(){const b=O?O.modelValue.value:A.value;return C.value?$e(b).some(k=>P.valueComparator(k,S.value)):P.valueComparator(b,S.value)},set(b){if(P.readonly)return;const k=b?S.value:N.value;let z=k;C.value&&(z=b?[...$e(A.value),k]:$e(A.value).filter(R=>!P.valueComparator(R,S.value))),O?O.modelValue.value=z:A.value=z}}),{textColorClasses:I,textColorStyles:$}=Re(e.computed(()=>{if(!P.error&&!P.disabled)return V.value?P.color:P.baseColor})),{backgroundColorClasses:x,backgroundColorStyles:_}=an(e.computed(()=>!V.value||P.error||P.disabled?void 0:P.color)),w=e.computed(()=>V.value?P.trueIcon:P.falseIcon);return{group:O,densityClasses:T,trueValue:S,falseValue:N,model:V,textColorClasses:I,textColorStyles:$,backgroundColorClasses:x,backgroundColorStyles:_,icon:w}}(n),f=Pe(),y=e.computed(()=>n.id||`input-${f}`),g=e.shallowRef(!1),m=e.shallowRef(!1),h=e.ref();function B(P){g.value=!0,lt(P.target,":focus-visible")!==!1&&(m.value=!0)}function F(){g.value=!1,m.value=!1}function W(P){n.readonly&&a&&e.nextTick(()=>a.forceUpdate()),u.value=P.target.checked}return a==null||a.onForceUpdate(()=>{h.value&&(h.value.checked=u.value)}),ee(()=>{var S,N;const P=l.label?l.label({label:n.label,props:{for:y.value}}):n.label,[O,T]=Tn(t),A=e.createVNode("input",e.mergeProps({ref:h,checked:u.value,disabled:!(!n.readonly&&!n.disabled),id:y.value,onBlur:F,onFocus:B,onInput:W,"aria-disabled":!(!n.readonly&&!n.disabled),type:n.type,value:p.value,name:n.name,"aria-checked":n.type==="checkbox"?u.value:void 0},T),null);return e.createVNode("div",e.mergeProps({class:["v-selection-control",{"v-selection-control--dirty":u.value,"v-selection-control--disabled":n.disabled,"v-selection-control--error":n.error,"v-selection-control--focused":g.value,"v-selection-control--focus-visible":m.value,"v-selection-control--inline":n.inline},r.value,n.class]},O,{style:n.style}),[e.createVNode("div",{class:["v-selection-control__wrapper",s.value],style:i.value},[(S=l.default)==null?void 0:S.call(l,{backgroundColorClasses:d,backgroundColorStyles:v}),e.withDirectives(e.createVNode("div",{class:["v-selection-control__input"]},[((N=l.input)==null?void 0:N.call(l,{model:u,textColorClasses:s,textColorStyles:i,backgroundColorClasses:d,backgroundColorStyles:v,inputNode:A,icon:c.value,props:{onFocus:B,onBlur:F,id:y.value}}))??e.createVNode(e.Fragment,null,[c.value&&e.createVNode(ce,{key:"icon",icon:c.value},null),A])]),[[e.resolveDirective("ripple"),n.ripple&&[!n.disabled&&!n.readonly,null,["center","circle"]]]])]),P&&e.createVNode(ql,{for:y.value,clickable:!0,onClick:C=>C.stopPropagation()},{default:()=>[P]})])}),{isFocused:g,input:h}}}),Xl=U({indeterminate:Boolean,indeterminateIcon:{type:se,default:"$checkboxIndeterminate"},...io({falseIcon:"$checkboxOff",trueIcon:"$checkboxOn"})},"VCheckboxBtn"),$t=Y()({name:"VCheckboxBtn",props:Xl(),emits:{"update:modelValue":n=>!0,"update:indeterminate":n=>!0},setup(n,o){let{slots:t}=o;const l=he(n,"indeterminate"),a=he(n,"modelValue");function r(s){l.value&&(l.value=!1)}const c=e.computed(()=>l.value?n.indeterminateIcon:n.falseIcon),u=e.computed(()=>l.value?n.indeterminateIcon:n.trueIcon);return ee(()=>{const s=Ke(ct.filterProps(n),["modelValue"]);return e.createVNode(ct,e.mergeProps(s,{modelValue:a.value,"onUpdate:modelValue":[i=>a.value=i,r],class:["v-checkbox-btn",n.class],style:n.style,type:"checkbox",falseIcon:c.value,trueIcon:u.value,"aria-checked":l.value?"mixed":void 0}),t)}),{}}});function Kl(n){const{t:o}=no();return{InputIcon:function(t){let{name:l}=t;const a={prepend:"prependAction",prependInner:"prependAction",append:"appendAction",appendInner:"appendAction",clear:"clear"}[l],r=n[`onClick:${l}`],c=r&&a?o(`$vuetify.input.${a}`,n.label??""):void 0;return e.createVNode(ce,{icon:n[`${l}Icon`],"aria-label":c,onClick:r},null)}}}const yr=U({active:Boolean,color:String,messages:{type:[Array,String],default:()=>[]},...ae(),...Un({transition:{component:Wl,leaveAbsolute:!0,group:!0}})},"VMessages"),gr=Y()({name:"VMessages",props:yr(),setup(n,o){let{slots:t}=o;const l=e.computed(()=>$e(n.messages)),{textColorClasses:a,textColorStyles:r}=Re(e.computed(()=>n.color));return ee(()=>e.createVNode(We,{transition:n.transition,tag:"div",class:["v-messages",a.value,n.class],style:[r.value,n.style],role:"alert","aria-live":"polite"},{default:()=>[n.active&&l.value.map((c,u)=>e.createVNode("div",{class:"v-messages__message",key:`${u}-${l.value}`},[t.message?t.message({message:c}):c]))]})),{}}}),Jl=U({focused:Boolean,"onUpdate:focused":Ee()},"focus");function Gn(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Oe();const t=he(n,"focused");return{focusClasses:e.computed(()=>({[`${o}--focused`]:t.value})),isFocused:t,focus:function(){t.value=!0},blur:function(){t.value=!1}}}const hr=Symbol.for("vuetify:form");function Zl(){return e.inject(hr,null)}const br=U({disabled:{type:Boolean,default:null},error:Boolean,errorMessages:{type:[Array,String],default:()=>[]},maxErrors:{type:[Number,String],default:1},name:String,label:String,readonly:{type:Boolean,default:null},rules:{type:Array,default:()=>[]},modelValue:null,validateOn:String,validationValue:null,...Jl()},"validation"),qn=U({id:String,appendIcon:se,centerAffix:{type:Boolean,default:!0},prependIcon:se,hideDetails:[Boolean,String],hideSpinButtons:Boolean,hint:String,persistentHint:Boolean,messages:{type:[Array,String],default:()=>[]},direction:{type:String,default:"horizontal",validator:n=>["horizontal","vertical"].includes(n)},"onClick:prepend":Ee(),"onClick:append":Ee(),...ae(),...ze(),...br()},"VInput"),je=Y()({name:"VInput",props:{...qn()},emits:{"update:modelValue":n=>!0},setup(n,o){let{attrs:t,slots:l,emit:a}=o;const{densityClasses:r}=De(n),{rtlClasses:c}=Wn(),{InputIcon:u}=Kl(n),s=Pe(),i=e.computed(()=>n.id||`input-${s}`),d=e.computed(()=>`${i.value}-messages`),{errorMessages:v,isDirty:p,isDisabled:f,isReadonly:y,isPristine:g,isValid:m,isValidating:h,reset:B,resetValidation:F,validate:W,validationClasses:P}=function(A){let S=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Oe(),N=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Pe();const C=he(A,"modelValue"),V=e.computed(()=>A.validationValue===void 0?C.value:A.validationValue),I=Zl(),$=e.ref([]),x=e.shallowRef(!0),_=e.computed(()=>!(!$e(C.value===""?null:C.value).length&&!$e(V.value===""?null:V.value).length)),w=e.computed(()=>!!(A.disabled??(I==null?void 0:I.isDisabled.value))),b=e.computed(()=>!!(A.readonly??(I==null?void 0:I.isReadonly.value))),k=e.computed(()=>{var q;return(q=A.errorMessages)!=null&&q.length?$e(A.errorMessages).concat($.value).slice(0,Math.max(0,+A.maxErrors)):$.value}),z=e.computed(()=>{let q=(A.validateOn??(I==null?void 0:I.validateOn.value))||"input";q==="lazy"&&(q="input lazy");const X=new Set((q==null?void 0:q.split(" "))??[]);return{blur:X.has("blur")||X.has("input"),input:X.has("input"),submit:X.has("submit"),lazy:X.has("lazy")}}),R=e.computed(()=>{var q;return!A.error&&!((q=A.errorMessages)!=null&&q.length)&&(!A.rules.length||(x.value?!$.value.length&&!z.value.lazy||null:!$.value.length))}),G=e.shallowRef(!1),j=e.computed(()=>({[`${S}--error`]:R.value===!1,[`${S}--dirty`]:_.value,[`${S}--disabled`]:w.value,[`${S}--readonly`]:b.value})),E=e.computed(()=>A.name??e.unref(N));function D(){C.value=null,e.nextTick(L)}function L(){x.value=!0,z.value.lazy?$.value=[]:M(!0)}async function M(){let q=arguments.length>0&&arguments[0]!==void 0&&arguments[0];const X=[];G.value=!0;for(const te of A.rules){if(X.length>=+(A.maxErrors??1))break;const re=typeof te=="function"?te:()=>te,ie=await re(V.value);ie!==!0&&(ie===!1||typeof ie=="string"?X.push(ie||""):console.warn(`${ie} is not a valid value. Rule functions must return boolean true or a string.`))}return $.value=X,G.value=!1,x.value=q,$.value}return e.onBeforeMount(()=>{I==null||I.register({id:E.value,validate:M,reset:D,resetValidation:L})}),e.onBeforeUnmount(()=>{I==null||I.unregister(E.value)}),e.onMounted(async()=>{z.value.lazy||await M(!0),I==null||I.update(E.value,R.value,k.value)}),Ye(()=>z.value.input,()=>{e.watch(V,()=>{if(V.value!=null)M();else if(A.focused){const q=e.watch(()=>A.focused,X=>{X||M(),q()})}})}),Ye(()=>z.value.blur,()=>{e.watch(()=>A.focused,q=>{q||M()})}),e.watch(R,()=>{I==null||I.update(E.value,R.value,k.value)}),{errorMessages:k,isDirty:_,isDisabled:w,isReadonly:b,isPristine:x,isValid:R,isValidating:G,reset:D,resetValidation:L,validate:M,validationClasses:j}}(n,"v-input",i),O=e.computed(()=>({id:i,messagesId:d,isDirty:p,isDisabled:f,isReadonly:y,isPristine:g,isValid:m,isValidating:h,reset:B,resetValidation:F,validate:W})),T=e.computed(()=>{var A;return(A=n.errorMessages)!=null&&A.length||!g.value&&v.value.length?v.value:n.hint&&(n.persistentHint||n.focused)?n.hint:n.messages});return ee(()=>{var V,I,$,x;const A=!(!l.prepend&&!n.prependIcon),S=!(!l.append&&!n.appendIcon),N=T.value.length>0,C=!n.hideDetails||n.hideDetails==="auto"&&(N||!!l.details);return e.createVNode("div",{class:["v-input",`v-input--${n.direction}`,{"v-input--center-affix":n.centerAffix,"v-input--hide-spin-buttons":n.hideSpinButtons},r.value,c.value,P.value,n.class],style:n.style},[A&&e.createVNode("div",{key:"prepend",class:"v-input__prepend"},[(V=l.prepend)==null?void 0:V.call(l,O.value),n.prependIcon&&e.createVNode(u,{key:"prepend-icon",name:"prepend"},null)]),l.default&&e.createVNode("div",{class:"v-input__control"},[(I=l.default)==null?void 0:I.call(l,O.value)]),S&&e.createVNode("div",{key:"append",class:"v-input__append"},[n.appendIcon&&e.createVNode(u,{key:"append-icon",name:"append"},null),($=l.append)==null?void 0:$.call(l,O.value)]),C&&e.createVNode("div",{class:"v-input__details"},[e.createVNode(gr,{id:d.value,active:N,messages:T.value},{message:l.message}),(x=l.details)==null?void 0:x.call(l,O.value)])])}),{reset:B,resetValidation:F,validate:W,isValid:m,errorMessages:v}}}),Cr=U({...qn(),...Ke(Xl(),["inline"])},"VCheckbox"),Sr=Y()({name:"VCheckbox",inheritAttrs:!1,props:Cr(),emits:{"update:modelValue":n=>!0,"update:focused":n=>!0},setup(n,o){let{attrs:t,slots:l}=o;const a=he(n,"modelValue"),{isFocused:r,focus:c,blur:u}=Gn(n),s=Pe(),i=e.computed(()=>n.id||`checkbox-${s}`);return ee(()=>{const[d,v]=Tn(t),p=je.filterProps(n),f=$t.filterProps(n);return e.createVNode(je,e.mergeProps({class:["v-checkbox",n.class]},d,p,{modelValue:a.value,"onUpdate:modelValue":y=>a.value=y,id:i.value,focused:r.value,style:n.style}),{...l,default:y=>{let{id:g,messagesId:m,isDisabled:h,isReadonly:B}=y;return e.createVNode($t,e.mergeProps(f,{id:g.value,"aria-describedby":m.value,disabled:h.value,readonly:B.value},v,{modelValue:a.value,"onUpdate:modelValue":F=>a.value=F,onFocus:c,onBlur:u}),l)}})}),{}}}),Ir=U({start:Boolean,end:Boolean,icon:se,image:String,text:String,...ae(),...ze(),...Le(),...Ln(),...Ae(),...Ve(),...Ge({variant:"flat"})},"VAvatar"),rn=Y()({name:"VAvatar",props:Ir(),setup(n,o){let{slots:t}=o;const{themeClasses:l}=ke(n),{colorClasses:a,colorStyles:r,variantClasses:c}=Dn(n),{densityClasses:u}=De(n),{roundedClasses:s}=Me(n),{sizeClasses:i,sizeStyles:d}=Mn(n);return ee(()=>e.createVNode(n.tag,{class:["v-avatar",{"v-avatar--start":n.start,"v-avatar--end":n.end},l.value,a.value,u.value,s.value,i.value,c.value,n.class],style:[r.value,d.value,n.style]},{default:()=>{var v;return[n.image?e.createVNode(Gl,{key:"image",src:n.image,alt:"",cover:!0},null):n.icon?e.createVNode(ce,{key:"icon",icon:n.icon},null):((v=t.default)==null?void 0:v.call(t))??n.text,Rn(!1,"v-avatar")]}})),{}}}),Ql=Symbol.for("vuetify:v-chip-group"),Vr=U({column:Boolean,filter:Boolean,valueComparator:{type:Function,default:fn},...ae(),...Il({selectedClass:"v-chip--selected"}),...Ae(),...Ve(),...Ge({variant:"tonal"})},"VChipGroup");Y()({name:"VChipGroup",props:Vr(),emits:{"update:modelValue":n=>!0},setup(n,o){let{slots:t}=o;const{themeClasses:l}=ke(n),{isSelected:a,select:r,next:c,prev:u,selected:s}=wl(n,Ql);return mn({VChip:{color:e.toRef(n,"color"),disabled:e.toRef(n,"disabled"),filter:e.toRef(n,"filter"),variant:e.toRef(n,"variant")}}),ee(()=>e.createVNode(n.tag,{class:["v-chip-group",{"v-chip-group--column":n.column},l.value,n.class],style:n.style},{default:()=>{var i;return[(i=t.default)==null?void 0:i.call(t,{isSelected:a,select:r,next:c,prev:u,selected:s.value})]}})),{}}});const Br=U({activeClass:String,appendAvatar:String,appendIcon:se,closable:Boolean,closeIcon:{type:se,default:"$delete"},closeLabel:{type:String,default:"$vuetify.close"},draggable:Boolean,filter:Boolean,filterIcon:{type:String,default:"$complete"},label:Boolean,link:{type:Boolean,default:void 0},pill:Boolean,prependAvatar:String,prependIcon:se,ripple:{type:[Boolean,Object],default:!0},text:String,modelValue:{type:Boolean,default:!0},onClick:Ee(),onClickOnce:Ee(),...yn(),...ae(),...ze(),...hn(),...Vl(),...Le(),...yt(),...Ln(),...Ae({tag:"span"}),...Ve(),...Ge({variant:"tonal"})},"VChip"),wr=Y()({name:"VChip",directives:{Ripple:jn},props:Br(),emits:{"click:close":n=>!0,"update:modelValue":n=>!0,"group:selected":n=>!0,click:n=>!0},setup(n,o){let{attrs:t,emit:l,slots:a}=o;const{t:r}=no(),{borderClasses:c}=gn(n),{colorClasses:u,colorStyles:s,variantClasses:i}=Dn(n),{densityClasses:d}=De(n),{elevationClasses:v}=bn(n),{roundedClasses:p}=Me(n),{sizeClasses:f}=Mn(n),{themeClasses:y}=ke(n),g=he(n,"modelValue"),m=Bl(n,Ql,!1),h=mt(n,t),B=e.computed(()=>n.link!==!1&&h.isLink.value),F=e.computed(()=>!n.disabled&&n.link!==!1&&(!!m||n.link||h.isClickable.value)),W=e.computed(()=>({"aria-label":r(n.closeLabel),onClick(T){T.stopPropagation(),g.value=!1,l("click:close",T)}}));function P(T){var A;l("click",T),F.value&&((A=h.navigate)==null||A.call(h,T),m==null||m.toggle())}function O(T){T.key!=="Enter"&&T.key!==" "||(T.preventDefault(),P(T))}return()=>{const T=h.isLink.value?"a":n.tag,A=!(!n.appendIcon&&!n.appendAvatar),S=!(!A&&!a.append),N=!(!a.close&&!n.closable),C=!(!a.filter&&!n.filter)&&m,V=!(!n.prependIcon&&!n.prependAvatar),I=!(!V&&!a.prepend),$=!m||m.isSelected.value;return g.value&&e.withDirectives(e.createVNode(T,{class:["v-chip",{"v-chip--disabled":n.disabled,"v-chip--label":n.label,"v-chip--link":F.value,"v-chip--filter":C,"v-chip--pill":n.pill},y.value,c.value,$?u.value:void 0,d.value,v.value,p.value,f.value,i.value,m==null?void 0:m.selectedClass.value,n.class],style:[$?s.value:void 0,n.style],disabled:n.disabled||void 0,draggable:n.draggable,href:h.href.value,tabindex:F.value?0:void 0,onClick:P,onKeydown:F.value&&!B.value&&O},{default:()=>{var x;return[Rn(F.value,"v-chip"),C&&e.createVNode(jl,{key:"filter"},{default:()=>[e.withDirectives(e.createVNode("div",{class:"v-chip__filter"},[a.filter?e.createVNode(Be,{key:"filter-defaults",disabled:!n.filterIcon,defaults:{VIcon:{icon:n.filterIcon}}},a.filter):e.createVNode(ce,{key:"filter-icon",icon:n.filterIcon},null)]),[[e.vShow,m.isSelected.value]])]}),I&&e.createVNode("div",{key:"prepend",class:"v-chip__prepend"},[a.prepend?e.createVNode(Be,{key:"prepend-defaults",disabled:!V,defaults:{VAvatar:{image:n.prependAvatar,start:!0},VIcon:{icon:n.prependIcon,start:!0}}},a.prepend):e.createVNode(e.Fragment,null,[n.prependIcon&&e.createVNode(ce,{key:"prepend-icon",icon:n.prependIcon,start:!0},null),n.prependAvatar&&e.createVNode(rn,{key:"prepend-avatar",image:n.prependAvatar,start:!0},null)])]),e.createVNode("div",{class:"v-chip__content"},[((x=a.default)==null?void 0:x.call(a,{isSelected:m==null?void 0:m.isSelected.value,selectedClass:m==null?void 0:m.selectedClass.value,select:m==null?void 0:m.select,toggle:m==null?void 0:m.toggle,value:m==null?void 0:m.value.value,disabled:n.disabled}))??n.text]),S&&e.createVNode("div",{key:"append",class:"v-chip__append"},[a.append?e.createVNode(Be,{key:"append-defaults",disabled:!A,defaults:{VAvatar:{end:!0,image:n.appendAvatar},VIcon:{end:!0,icon:n.appendIcon}}},a.append):e.createVNode(e.Fragment,null,[n.appendIcon&&e.createVNode(ce,{key:"append-icon",end:!0,icon:n.appendIcon},null),n.appendAvatar&&e.createVNode(rn,{key:"append-avatar",end:!0,image:n.appendAvatar},null)])]),N&&e.createVNode("button",e.mergeProps({key:"close",class:"v-chip__close"},W.value),[a.close?e.createVNode(Be,{key:"close-defaults",defaults:{VIcon:{icon:n.closeIcon,size:"x-small"}}},a.close):e.createVNode(ce,{key:"close-icon",icon:n.closeIcon,size:"x-small"},null)])]}}),[[e.resolveDirective("ripple"),F.value&&n.ripple,null]])}}}),Rt=Symbol.for("vuetify:list");function ea(){const n=e.inject(Rt,{hasPrepend:e.shallowRef(!1),updateHasPrepend:()=>null}),o={hasPrepend:e.shallowRef(!1),updateHasPrepend:t=>{t&&(o.hasPrepend.value=t)}};return e.provide(Rt,o),n}function na(){return e.inject(Rt,null)}const kr={open:n=>{let{id:o,value:t,opened:l,parents:a}=n;if(t){const r=new Set;r.add(o);let c=a.get(o);for(;c!=null;)r.add(c),c=a.get(c);return r}return l.delete(o),l},select:()=>null},ta={open:n=>{let{id:o,value:t,opened:l,parents:a}=n;if(t){let r=a.get(o);for(l.add(o);r!=null&&r!==o;)l.add(r),r=a.get(r);return l}return l.delete(o),l},select:()=>null},xr={open:ta.open,select:n=>{let{id:o,value:t,opened:l,parents:a}=n;if(!t)return l;const r=[];let c=a.get(o);for(;c!=null;)r.push(c),c=a.get(c);return new Set(r)}},Dt=n=>{const o={select:t=>{let{id:l,value:a,selected:r}=t;if(l=e.toRaw(l),n&&!a){const c=Array.from(r.entries()).reduce((u,s)=>{let[i,d]=s;return d==="on"?[...u,i]:u},[]);if(c.length===1&&c[0]===l)return r}return r.set(l,a?"on":"off"),r},in:(t,l,a)=>{let r=new Map;for(const c of t||[])r=o.select({id:c,value:!0,selected:new Map(r),children:l,parents:a});return r},out:t=>{const l=[];for(const[a,r]of t.entries())r==="on"&&l.push(a);return l}};return o},Ho=n=>{const o=Dt(n);return{select:t=>{let{selected:l,id:a,...r}=t;a=e.toRaw(a);const c=l.has(a)?new Map([[a,l.get(a)]]):new Map;return o.select({...r,id:a,selected:c})},in:(t,l,a)=>{let r=new Map;return t!=null&&t.length&&(r=o.in(t.slice(0,1),l,a)),r},out:(t,l,a)=>o.out(t,l,a)}},En=Symbol.for("vuetify:nested"),oa={id:e.shallowRef(),root:{register:()=>null,unregister:()=>null,parents:e.ref(new Map),children:e.ref(new Map),open:()=>null,openOnSelect:()=>null,select:()=>null,opened:e.ref(new Set),selected:e.ref(new Map),selectedValues:e.ref([])}},Fr=U({selectStrategy:[String,Function],openStrategy:[String,Object],opened:Array,selected:Array,mandatory:Boolean},"nested"),Nr=n=>{let o=!1;const t=e.ref(new Map),l=e.ref(new Map),a=he(n,"opened",n.opened,v=>new Set(v),v=>[...v.values()]),r=e.computed(()=>{if(typeof n.selectStrategy=="object")return n.selectStrategy;switch(n.selectStrategy){case"single-leaf":return(v=>{const p=Ho(v);return{select:f=>{let{id:y,selected:g,children:m,...h}=f;return y=e.toRaw(y),m.has(y)?g:p.select({id:y,selected:g,children:m,...h})},in:p.in,out:p.out}})(n.mandatory);case"leaf":return(v=>{const p=Dt(v);return{select:f=>{let{id:y,selected:g,children:m,...h}=f;return y=e.toRaw(y),m.has(y)?g:p.select({id:y,selected:g,children:m,...h})},in:p.in,out:p.out}})(n.mandatory);case"independent":return Dt(n.mandatory);case"single-independent":return Ho(n.mandatory);default:return(v=>{const p={select:f=>{let{id:y,value:g,selected:m,children:h,parents:B}=f;y=e.toRaw(y);const F=new Map(m),W=[y];for(;W.length;){const O=W.shift();m.set(O,g?"on":"off"),h.has(O)&&W.push(...h.get(O))}let P=B.get(y);for(;P;){const O=h.get(P),T=O.every(S=>m.get(S)==="on"),A=O.every(S=>!m.has(S)||m.get(S)==="off");m.set(P,T?"on":A?"off":"indeterminate"),P=B.get(P)}return v&&!g&&Array.from(m.entries()).reduce((T,A)=>{let[S,N]=A;return N==="on"?[...T,S]:T},[]).length===0?F:m},in:(f,y,g)=>{let m=new Map;for(const h of f||[])m=p.select({id:h,value:!0,selected:new Map(m),children:y,parents:g});return m},out:(f,y)=>{const g=[];for(const[m,h]of f.entries())h!=="on"||y.has(m)||g.push(m);return g}};return p})(n.mandatory)}}),c=e.computed(()=>{if(typeof n.openStrategy=="object")return n.openStrategy;switch(n.openStrategy){case"list":return xr;case"single":return kr;default:return ta}}),u=he(n,"selected",n.selected,v=>r.value.in(v,t.value,l.value),v=>r.value.out(v,t.value,l.value));function s(v){const p=[];let f=v;for(;f!=null;)p.unshift(f),f=l.value.get(f);return p}e.onBeforeUnmount(()=>{o=!0});const i=Ie("nested"),d={id:e.shallowRef(),root:{opened:a,selected:u,selectedValues:e.computed(()=>{const v=[];for(const[p,f]of u.value.entries())f==="on"&&v.push(p);return v}),register:(v,p,f)=>{p&&v!==p&&l.value.set(v,p),f&&t.value.set(v,[]),p!=null&&t.value.set(p,[...t.value.get(p)||[],v])},unregister:v=>{if(o)return;t.value.delete(v);const p=l.value.get(v);if(p){const f=t.value.get(p)??[];t.value.set(p,f.filter(y=>y!==v))}l.value.delete(v),a.value.delete(v)},open:(v,p,f)=>{i.emit("click:open",{id:v,value:p,path:s(v),event:f});const y=c.value.open({id:v,value:p,opened:new Set(a.value),children:t.value,parents:l.value,event:f});y&&(a.value=y)},openOnSelect:(v,p,f)=>{const y=c.value.select({id:v,value:p,selected:new Map(u.value),opened:new Set(a.value),children:t.value,parents:l.value,event:f});y&&(a.value=y)},select:(v,p,f)=>{i.emit("click:select",{id:v,value:p,path:s(v),event:f});const y=r.value.select({id:v,value:p,selected:new Map(u.value),children:t.value,parents:l.value,event:f});y&&(u.value=y),d.root.openOnSelect(v,p,f)},children:t,parents:l}};return e.provide(En,d),d.root},la=(n,o)=>{const t=e.inject(En,oa),l=Symbol(Pe()),a=e.computed(()=>n.value!==void 0?n.value:l),r={...t,id:a,open:(c,u)=>t.root.open(a.value,c,u),openOnSelect:(c,u)=>t.root.openOnSelect(a.value,c,u),isOpen:e.computed(()=>t.root.opened.value.has(a.value)),parent:e.computed(()=>t.root.parents.value.get(a.value)),select:(c,u)=>t.root.select(a.value,c,u),isSelected:e.computed(()=>t.root.selected.value.get(e.toRaw(a.value))==="on"),isIndeterminate:e.computed(()=>t.root.selected.value.get(a.value)==="indeterminate"),isLeaf:e.computed(()=>!t.root.children.value.get(a.value)),isGroupActivator:t.isGroupActivator};return!t.isGroupActivator&&t.root.register(a.value,t.id.value,o),e.onBeforeUnmount(()=>{!t.isGroupActivator&&t.root.unregister(a.value)}),o&&e.provide(En,r),r},Ar=An({name:"VListGroupActivator",setup(n,o){let{slots:t}=o;return(()=>{const l=e.inject(En,oa);e.provide(En,{...l,isGroupActivator:!0})})(),()=>{var l;return(l=t.default)==null?void 0:l.call(t)}}}),Pr=U({activeColor:String,baseColor:String,color:String,collapseIcon:{type:se,default:"$collapse"},expandIcon:{type:se,default:"$expand"},prependIcon:se,appendIcon:se,fluid:Boolean,subgroup:Boolean,title:String,value:null,...ae(),...Ae()},"VListGroup"),Yo=Y()({name:"VListGroup",props:Pr(),setup(n,o){let{slots:t}=o;const{isOpen:l,open:a,id:r}=la(e.toRef(n,"value"),!0),c=e.computed(()=>`v-list-group--id-${String(r.value)}`),u=na(),{isBooted:s}=function(){const f=e.shallowRef(!1);return e.onMounted(()=>{window.requestAnimationFrame(()=>{f.value=!0})}),{ssrBootStyles:e.computed(()=>f.value?void 0:{transition:"none !important"}),isBooted:e.readonly(f)}}();function i(f){a(!l.value,f)}const d=e.computed(()=>({onClick:i,class:"v-list-group__header",id:c.value})),v=e.computed(()=>l.value?n.collapseIcon:n.expandIcon),p=e.computed(()=>({VListItem:{active:l.value,activeColor:n.activeColor,baseColor:n.baseColor,color:n.color,prependIcon:n.prependIcon||n.subgroup&&v.value,appendIcon:n.appendIcon||!n.subgroup&&v.value,title:n.title,value:n.value}}));return ee(()=>e.createVNode(n.tag,{class:["v-list-group",{"v-list-group--prepend":u==null?void 0:u.hasPrepend.value,"v-list-group--fluid":n.fluid,"v-list-group--subgroup":n.subgroup,"v-list-group--open":l.value},n.class],style:n.style},{default:()=>[t.activator&&e.createVNode(Be,{defaults:p.value},{default:()=>[e.createVNode(Ar,null,{default:()=>[t.activator({props:d.value,isOpen:l.value})]})]}),e.createVNode(We,{transition:{component:pr},disabled:!s.value},{default:()=>{var f;return[e.withDirectives(e.createVNode("div",{class:"v-list-group__items",role:"group","aria-labelledby":c.value},[(f=t.default)==null?void 0:f.call(t)]),[[e.vShow,l.value]])]}})]})),{}}}),_r=$n("v-list-item-subtitle"),Er=$n("v-list-item-title"),Or=U({active:{type:Boolean,default:void 0},activeClass:String,activeColor:String,appendAvatar:String,appendIcon:se,baseColor:String,disabled:Boolean,lines:String,link:{type:Boolean,default:void 0},nav:Boolean,prependAvatar:String,prependIcon:se,ripple:{type:[Boolean,Object],default:!0},slim:Boolean,subtitle:[String,Number],title:[String,Number],value:null,onClick:Ee(),onClickOnce:Ee(),...yn(),...ae(),...ze(),...Je(),...hn(),...Le(),...yt(),...Ae(),...Ve(),...Ge({variant:"text"})},"VListItem"),dt=Y()({name:"VListItem",directives:{Ripple:jn},props:Or(),emits:{click:n=>!0},setup(n,o){let{attrs:t,slots:l,emit:a}=o;const r=mt(n,t),c=e.computed(()=>n.value===void 0?r.href.value:n.value),{select:u,isSelected:s,isIndeterminate:i,isGroupActivator:d,root:v,parent:p,openOnSelect:f}=la(c,!1),y=na(),g=e.computed(()=>{var b;return n.active!==!1&&(n.active||((b=r.isActive)==null?void 0:b.value)||s.value)}),m=e.computed(()=>n.link!==!1&&r.isLink.value),h=e.computed(()=>!n.disabled&&n.link!==!1&&(n.link||r.isClickable.value||n.value!=null&&!!y)),B=e.computed(()=>n.rounded||n.nav),F=e.computed(()=>n.color??n.activeColor),W=e.computed(()=>({color:g.value?F.value??n.baseColor:n.baseColor,variant:n.variant}));e.watch(()=>{var b;return(b=r.isActive)==null?void 0:b.value},b=>{b&&p.value!=null&&v.open(p.value,!0),b&&f(b)},{immediate:!0});const{themeClasses:P}=ke(n),{borderClasses:O}=gn(n),{colorClasses:T,colorStyles:A,variantClasses:S}=Dn(W),{densityClasses:N}=De(n),{dimensionStyles:C}=Ze(n),{elevationClasses:V}=bn(n),{roundedClasses:I}=Me(B),$=e.computed(()=>n.lines?`v-list-item--${n.lines}-line`:void 0),x=e.computed(()=>({isActive:g.value,select:u,isSelected:s.value,isIndeterminate:i.value}));function _(b){var k;a("click",b),!d&&h.value&&((k=r.navigate)==null||k.call(r,b),n.value!=null&&u(!s.value,b))}function w(b){b.key!=="Enter"&&b.key!==" "||(b.preventDefault(),_(b))}return ee(()=>{const b=m.value?"a":n.tag,k=l.title||n.title!=null,z=l.subtitle||n.subtitle!=null,R=!(!n.appendAvatar&&!n.appendIcon),G=!(!R&&!l.append),j=!(!n.prependAvatar&&!n.prependIcon),E=!(!j&&!l.prepend);var D,L;return y==null||y.updateHasPrepend(E),n.activeColor&&(D="active-color",L=["color","base-color"],L=Array.isArray(L)?L.slice(0,-1).map(M=>`'${M}'`).join(", ")+` or '${L.at(-1)}'`:`'${L}'`,e.warn(`[Vuetify UPGRADE] '${D}' is deprecated, use ${L} instead.`)),e.withDirectives(e.createVNode(b,{class:["v-list-item",{"v-list-item--active":g.value,"v-list-item--disabled":n.disabled,"v-list-item--link":h.value,"v-list-item--nav":n.nav,"v-list-item--prepend":!E&&(y==null?void 0:y.hasPrepend.value),"v-list-item--slim":n.slim,[`${n.activeClass}`]:n.activeClass&&g.value},P.value,O.value,T.value,N.value,V.value,$.value,I.value,S.value,n.class],style:[A.value,C.value,n.style],href:r.href.value,tabindex:h.value?y?-2:0:void 0,onClick:_,onKeydown:h.value&&!m.value&&w},{default:()=>{var M;return[Rn(h.value||g.value,"v-list-item"),E&&e.createVNode("div",{key:"prepend",class:"v-list-item__prepend"},[l.prepend?e.createVNode(Be,{key:"prepend-defaults",disabled:!j,defaults:{VAvatar:{density:n.density,image:n.prependAvatar},VIcon:{density:n.density,icon:n.prependIcon},VListItemAction:{start:!0}}},{default:()=>{var q;return[(q=l.prepend)==null?void 0:q.call(l,x.value)]}}):e.createVNode(e.Fragment,null,[n.prependAvatar&&e.createVNode(rn,{key:"prepend-avatar",density:n.density,image:n.prependAvatar},null),n.prependIcon&&e.createVNode(ce,{key:"prepend-icon",density:n.density,icon:n.prependIcon},null)]),e.createVNode("div",{class:"v-list-item__spacer"},null)]),e.createVNode("div",{class:"v-list-item__content","data-no-activator":""},[k&&e.createVNode(Er,{key:"title"},{default:()=>{var q;return[((q=l.title)==null?void 0:q.call(l,{title:n.title}))??n.title]}}),z&&e.createVNode(_r,{key:"subtitle"},{default:()=>{var q;return[((q=l.subtitle)==null?void 0:q.call(l,{subtitle:n.subtitle}))??n.subtitle]}}),(M=l.default)==null?void 0:M.call(l,x.value)]),G&&e.createVNode("div",{key:"append",class:"v-list-item__append"},[l.append?e.createVNode(Be,{key:"append-defaults",disabled:!R,defaults:{VAvatar:{density:n.density,image:n.appendAvatar},VIcon:{density:n.density,icon:n.appendIcon},VListItemAction:{end:!0}}},{default:()=>{var q;return[(q=l.append)==null?void 0:q.call(l,x.value)]}}):e.createVNode(e.Fragment,null,[n.appendIcon&&e.createVNode(ce,{key:"append-icon",density:n.density,icon:n.appendIcon},null),n.appendAvatar&&e.createVNode(rn,{key:"append-avatar",density:n.density,image:n.appendAvatar},null)]),e.createVNode("div",{class:"v-list-item__spacer"},null)])]}}),[[e.resolveDirective("ripple"),h.value&&n.ripple]])}),{}}}),zr=U({color:String,inset:Boolean,sticky:Boolean,title:String,...ae(),...Ae()},"VListSubheader"),Tr=Y()({name:"VListSubheader",props:zr(),setup(n,o){let{slots:t}=o;const{textColorClasses:l,textColorStyles:a}=Re(e.toRef(n,"color"));return ee(()=>{const r=!(!t.default&&!n.title);return e.createVNode(n.tag,{class:["v-list-subheader",{"v-list-subheader--inset":n.inset,"v-list-subheader--sticky":n.sticky},l.value,n.class],style:[{textColorStyles:a},n.style]},{default:()=>{var c;return[r&&e.createVNode("div",{class:"v-list-subheader__text"},[((c=t.default)==null?void 0:c.call(t))??n.title])]}})}),{}}}),$r=U({color:String,inset:Boolean,length:[Number,String],thickness:[Number,String],vertical:Boolean,...ae(),...Ve()},"VDivider"),Rr=Y()({name:"VDivider",props:$r(),setup(n,o){let{attrs:t}=o;const{themeClasses:l}=ke(n),{textColorClasses:a,textColorStyles:r}=Re(e.toRef(n,"color")),c=e.computed(()=>{const u={};return n.length&&(u[n.vertical?"maxHeight":"maxWidth"]=Z(n.length)),n.thickness&&(u[n.vertical?"borderRightWidth":"borderTopWidth"]=Z(n.thickness)),u});return ee(()=>e.createVNode("hr",{class:[{"v-divider":!0,"v-divider--inset":n.inset,"v-divider--vertical":n.vertical},l.value,a.value,n.class],style:[c.value,r.value,n.style],"aria-orientation":t.role&&t.role!=="separator"?void 0:n.vertical?"vertical":"horizontal",role:`${t.role||"separator"}`},null)),{}}}),Dr=U({items:Array,returnObject:Boolean},"VListChildren"),aa=Y()({name:"VListChildren",props:Dr(),setup(n,o){let{slots:t}=o;return ea(),()=>{var l,a;return((l=t.default)==null?void 0:l.call(t))??((a=n.items)==null?void 0:a.map(r=>{var p,f;let{children:c,props:u,type:s,raw:i}=r;if(s==="divider")return((p=t.divider)==null?void 0:p.call(t,{props:u}))??e.createVNode(Rr,u,null);if(s==="subheader")return((f=t.subheader)==null?void 0:f.call(t,{props:u}))??e.createVNode(Tr,u,null);const d={subtitle:t.subtitle?y=>{var g;return(g=t.subtitle)==null?void 0:g.call(t,{...y,item:i})}:void 0,prepend:t.prepend?y=>{var g;return(g=t.prepend)==null?void 0:g.call(t,{...y,item:i})}:void 0,append:t.append?y=>{var g;return(g=t.append)==null?void 0:g.call(t,{...y,item:i})}:void 0,title:t.title?y=>{var g;return(g=t.title)==null?void 0:g.call(t,{...y,item:i})}:void 0},v=Yo.filterProps(u);return c?e.createVNode(Yo,e.mergeProps({value:u==null?void 0:u.value},v),{activator:y=>{let{props:g}=y;const m={...u,...g,value:n.returnObject?i:u.value};return t.header?t.header({props:m}):e.createVNode(dt,m,d)},default:()=>e.createVNode(aa,{items:c},t)}):t.item?t.item({props:u}):e.createVNode(dt,e.mergeProps(u,{value:n.returnObject?i:u.value}),d)}))}}}),ra=U({items:{type:Array,default:()=>[]},itemTitle:{type:[String,Array,Function],default:"title"},itemValue:{type:[String,Array,Function],default:"value"},itemChildren:{type:[Boolean,String,Array,Function],default:"children"},itemProps:{type:[Boolean,String,Array,Function],default:"props"},returnObject:Boolean,valueComparator:{type:Function,default:fn}},"list-items");function Lt(n,o){const t=Te(o,n.itemTitle,o),l=Te(o,n.itemValue,t),a=Te(o,n.itemChildren),r={title:t,value:l,...n.itemProps===!0?typeof o!="object"||o==null||Array.isArray(o)?void 0:"children"in o?Ke(o,["children"]):o:Te(o,n.itemProps)};return{title:String(r.title??""),value:r.value,props:r,children:Array.isArray(a)?ia(n,a):void 0,raw:o}}function ia(n,o){const t=[];for(const l of o)t.push(Lt(n,l));return t}function Lr(n,o){const t=Te(o,n.itemType,"item"),l=function(u){return typeof u=="string"||typeof u=="number"||typeof u=="boolean"}(o)?o:Te(o,n.itemTitle),a=Te(o,n.itemValue,void 0),r=Te(o,n.itemChildren),c={title:l,value:a,...n.itemProps===!0?Ke(o,["children"]):Te(o,n.itemProps)};return{type:t,title:c.title,value:c.value,props:c,children:t==="item"&&r?sa(n,r):void 0,raw:o}}function sa(n,o){const t=[];for(const l of o)t.push(Lr(n,l));return t}const Mr=U({baseColor:String,activeColor:String,activeClass:String,bgColor:String,disabled:Boolean,lines:{type:[Boolean,String],default:"one"},slim:Boolean,nav:Boolean,...Fr({selectStrategy:"single-leaf",openStrategy:"list"}),...yn(),...ae(),...ze(),...Je(),...hn(),itemType:{type:String,default:"type"},...ra(),...Le(),...Ae(),...Ve(),...Ge({variant:"text"})},"VList"),Wr=Y()({name:"VList",props:Mr(),emits:{"update:selected":n=>!0,"update:opened":n=>!0,"click:open":n=>!0,"click:select":n=>!0},setup(n,o){let{slots:t}=o;const{items:l}=function(S){return{items:e.computed(()=>sa(S,S.items))}}(n),{themeClasses:a}=ke(n),{backgroundColorClasses:r,backgroundColorStyles:c}=an(e.toRef(n,"bgColor")),{borderClasses:u}=gn(n),{densityClasses:s}=De(n),{dimensionStyles:i}=Ze(n),{elevationClasses:d}=bn(n),{roundedClasses:v}=Me(n),{open:p,select:f}=Nr(n),y=e.computed(()=>n.lines?`v-list--${n.lines}-line`:void 0),g=e.toRef(n,"activeColor"),m=e.toRef(n,"baseColor"),h=e.toRef(n,"color");ea(),mn({VListGroup:{activeColor:g,baseColor:m,color:h},VListItem:{activeClass:e.toRef(n,"activeClass"),activeColor:g,baseColor:m,color:h,density:e.toRef(n,"density"),disabled:e.toRef(n,"disabled"),lines:e.toRef(n,"lines"),nav:e.toRef(n,"nav"),slim:e.toRef(n,"slim"),variant:e.toRef(n,"variant")}});const B=e.shallowRef(!1),F=e.ref();function W(S){B.value=!0}function P(S){B.value=!1}function O(S){var N;B.value||S.relatedTarget&&((N=F.value)!=null&&N.contains(S.relatedTarget))||A()}function T(S){if(F.value){if(S.key==="ArrowDown")A("next");else if(S.key==="ArrowUp")A("prev");else if(S.key==="Home")A("first");else{if(S.key!=="End")return;A("last")}S.preventDefault()}}function A(S){if(F.value)return ot(F.value,S)}return ee(()=>e.createVNode(n.tag,{ref:F,class:["v-list",{"v-list--disabled":n.disabled,"v-list--nav":n.nav},a.value,r.value,u.value,s.value,d.value,y.value,v.value,n.class],style:[c.value,i.value,n.style],tabindex:n.disabled||B.value?-1:0,role:"listbox","aria-activedescendant":void 0,onFocusin:W,onFocusout:P,onFocus:O,onKeydown:T},{default:()=>[e.createVNode(aa,{items:l.value,returnObject:n.returnObject},t)]})),{open:p,select:f,focus:A}}});function kt(n,o){return{x:n.x+o.x,y:n.y+o.y}}function Xo(n,o){if(n.side==="top"||n.side==="bottom"){const{side:t,align:l}=n;return kt({x:l==="left"?0:l==="center"?o.width/2:l==="right"?o.width:l,y:t==="top"?0:t==="bottom"?o.height:t},o)}if(n.side==="left"||n.side==="right"){const{side:t,align:l}=n;return kt({x:t==="left"?0:t==="right"?o.width:t,y:l==="top"?0:l==="center"?o.height/2:l==="bottom"?o.height:l},o)}return kt({x:o.width/2,y:o.height/2},o)}const ua={static:function(){},connected:function(n,o,t){(Array.isArray(n.target.value)||function(f){for(;f;){if(window.getComputedStyle(f).position==="fixed")return!0;f=f.offsetParent}return!1}(n.target.value))&&Object.assign(t.value,{position:"fixed",top:0,[n.isRtl.value?"right":"left"]:0});const{preferredAnchor:l,preferredOrigin:a}=Xt(()=>{const f=Ot(o.location,n.isRtl.value),y=o.origin==="overlap"?f:o.origin==="auto"?It(f):Ot(o.origin,n.isRtl.value);return f.side===y.side&&f.align===Vt(y).align?{preferredAnchor:So(f),preferredOrigin:So(y)}:{preferredAnchor:f,preferredOrigin:y}}),[r,c,u,s]=["minWidth","minHeight","maxWidth","maxHeight"].map(f=>e.computed(()=>{const y=parseFloat(o[f]);return isNaN(y)?1/0:y})),i=e.computed(()=>{if(Array.isArray(o.offset))return o.offset;if(typeof o.offset=="string"){const f=o.offset.split(" ").map(parseFloat);return f.length<2&&f.push(0),f}return typeof o.offset=="number"?[o.offset,0]:[0,0]});let d=!1;const v=new ResizeObserver(()=>{d&&p()});function p(){if(d=!1,requestAnimationFrame(()=>{requestAnimationFrame(()=>d=!0)}),!n.target.value||!n.contentEl.value)return;const f=yl(n.target.value),y=function(N,C){C?N.style.removeProperty("left"):N.style.removeProperty("right");const V=Kt(N);return C?V.x+=parseFloat(N.style.right||0):V.x-=parseFloat(N.style.left||0),V.y-=parseFloat(N.style.top||0),V}(n.contentEl.value,n.isRtl.value),g=it(n.contentEl.value);g.length||(g.push(document.documentElement),n.contentEl.value.style.top&&n.contentEl.value.style.left||(y.x-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x")||0),y.y-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y")||0)));const m=g.reduce((N,C)=>{const V=C.getBoundingClientRect(),I=new He({x:C===document.documentElement?0:V.x,y:C===document.documentElement?0:V.y,width:C.clientWidth,height:C.clientHeight});return N?new He({x:Math.max(N.left,I.left),y:Math.max(N.top,I.top),width:Math.min(N.right,I.right)-Math.max(N.left,I.left),height:Math.min(N.bottom,I.bottom)-Math.max(N.top,I.top)}):I},void 0);m.x+=12,m.y+=12,m.width-=24,m.height-=24;let h={anchor:l.value,origin:a.value};function B(N){const C=new He(y),V=Xo(N.anchor,f),I=Xo(N.origin,C);let{x:$,y:x}=(w=I,{x:(_=V).x-w.x,y:_.y-w.y});var _,w;switch(N.anchor.side){case"top":x-=i.value[0];break;case"bottom":x+=i.value[0];break;case"left":$-=i.value[0];break;case"right":$+=i.value[0]}switch(N.anchor.align){case"top":x-=i.value[1];break;case"bottom":x+=i.value[1];break;case"left":$-=i.value[1];break;case"right":$+=i.value[1]}return C.x+=$,C.y+=x,C.width=Math.min(C.width,u.value),C.height=Math.min(C.height,s.value),{overflows:Vo(C,m),x:$,y:x}}let F=0,W=0;const P={x:0,y:0},O={x:!1,y:!1};let T=-1;for(;;){if(T++>10){A="Infinite loop detected in connectedLocationStrategy",e.warn(`Vuetify error: ${A}`);break}const{x:N,y:C,overflows:V}=B(h);F+=N,W+=C,y.x+=N,y.y+=C;{const I=Io(h.anchor),$=V.x.before||V.x.after,x=V.y.before||V.y.after;let _=!1;if(["x","y"].forEach(w=>{if(w==="x"&&$&&!O.x||w==="y"&&x&&!O.y){const b={anchor:{...h.anchor},origin:{...h.origin}},k=w==="x"?I==="y"?Vt:It:I==="y"?It:Vt;b.anchor=k(b.anchor),b.origin=k(b.origin);const{overflows:z}=B(b);(z[w].before<=V[w].before&&z[w].after<=V[w].after||z[w].before+z[w].after<(V[w].before+V[w].after)/2)&&(h=b,_=O[w]=!0)}}),_)continue}V.x.before&&(F+=V.x.before,y.x+=V.x.before),V.x.after&&(F-=V.x.after,y.x-=V.x.after),V.y.before&&(W+=V.y.before,y.y+=V.y.before),V.y.after&&(W-=V.y.after,y.y-=V.y.after);{const I=Vo(y,m);P.x=m.width-I.x.before-I.x.after,P.y=m.height-I.y.before-I.y.after,F+=I.x.before,y.x+=I.x.before,W+=I.y.before,y.y+=I.y.before}break}var A;const S=Io(h.anchor);return Object.assign(t.value,{"--v-overlay-anchor-origin":`${h.anchor.side} ${h.anchor.align}`,transformOrigin:`${h.origin.side} ${h.origin.align}`,top:Z(xt(W)),left:n.isRtl.value?void 0:Z(xt(F)),right:n.isRtl.value?Z(xt(-F)):void 0,minWidth:Z(S==="y"?Math.min(r.value,f.width):r.value),maxWidth:Z(Ko(ln(P.x,r.value===1/0?0:r.value,u.value))),maxHeight:Z(Ko(ln(P.y,c.value===1/0?0:c.value,s.value)))}),{available:P,contentBox:y}}return e.watch([n.target,n.contentEl],(f,y)=>{let[g,m]=f,[h,B]=y;h&&!Array.isArray(h)&&v.unobserve(h),g&&!Array.isArray(g)&&v.observe(g),B&&v.unobserve(B),m&&v.observe(m)},{immediate:!0}),e.onScopeDispose(()=>{v.disconnect()}),e.watch(()=>[l.value,a.value,o.offset,o.minWidth,o.minHeight,o.maxWidth,o.maxHeight],()=>p()),e.nextTick(()=>{const f=p();if(!f)return;const{available:y,contentBox:g}=f;g.height>y.y&&requestAnimationFrame(()=>{p(),requestAnimationFrame(()=>{p()})})}),{updateLocation:p}}},jr=U({locationStrategy:{type:[String,Function],default:"static",validator:n=>typeof n=="function"||n in ua},location:{type:String,default:"bottom"},origin:{type:String,default:"auto"},offset:[Number,String,Array]},"VOverlay-location-strategies");function xt(n){return Math.round(n*devicePixelRatio)/devicePixelRatio}function Ko(n){return Math.ceil(n*devicePixelRatio)/devicePixelRatio}let Mt=!0;const pt=[];let Jo=-1;function Wt(){cancelAnimationFrame(Jo),Jo=requestAnimationFrame(()=>{const n=pt.shift();n&&n(),pt.length?Wt():Mt=!0})}const et={none:null,close:function(n){Zo(n.targetEl.value??n.contentEl.value,function(o){n.isActive.value=!1})},block:function(n,o){var u;const t=(u=n.root.value)==null?void 0:u.offsetParent,l=[...new Set([...it(n.targetEl.value,o.contained?t:void 0),...it(n.contentEl.value,o.contained?t:void 0)])].filter(s=>!s.classList.contains("v-overlay-scroll-blocked")),a=window.innerWidth-document.documentElement.offsetWidth,r=(c=t||document.documentElement,Zt(c)&&c);var c;r&&n.root.value.classList.add("v-overlay--scroll-blocked"),l.forEach((s,i)=>{s.style.setProperty("--v-body-scroll-x",Z(-s.scrollLeft)),s.style.setProperty("--v-body-scroll-y",Z(-s.scrollTop)),s!==document.documentElement&&s.style.setProperty("--v-scrollbar-offset",Z(a)),s.classList.add("v-overlay-scroll-blocked")}),e.onScopeDispose(()=>{l.forEach((s,i)=>{const d=parseFloat(s.style.getPropertyValue("--v-body-scroll-x")),v=parseFloat(s.style.getPropertyValue("--v-body-scroll-y"));s.style.removeProperty("--v-body-scroll-x"),s.style.removeProperty("--v-body-scroll-y"),s.style.removeProperty("--v-scrollbar-offset"),s.classList.remove("v-overlay-scroll-blocked"),s.scrollLeft=-d,s.scrollTop=-v}),r&&n.root.value.classList.remove("v-overlay--scroll-blocked")})},reposition:function(n,o,t){let l=!1,a=-1,r=-1;function c(u){var s;s=()=>{var v,p;const i=performance.now();(p=(v=n.updateLocation).value)==null||p.call(v,u),l=(performance.now()-i)/(1e3/60)>2},!Mt||pt.length?(pt.push(s),Wt()):(Mt=!1,s(),Wt())}r=(typeof requestIdleCallback>"u"?u=>u():requestIdleCallback)(()=>{t.run(()=>{Zo(n.targetEl.value??n.contentEl.value,u=>{l?(cancelAnimationFrame(a),a=requestAnimationFrame(()=>{a=requestAnimationFrame(()=>{c(u)})})):c(u)})})}),e.onScopeDispose(()=>{typeof cancelIdleCallback<"u"&&cancelIdleCallback(r),cancelAnimationFrame(a)})}},Ur=U({scrollStrategy:{type:[String,Function],default:"block",validator:n=>typeof n=="function"||n in et}},"VOverlay-scroll-strategies");function Zo(n,o){const t=[document,...it(n)];t.forEach(l=>{l.addEventListener("scroll",o,{passive:!0})}),e.onScopeDispose(()=>{t.forEach(l=>{l.removeEventListener("scroll",o)})})}const jt=Symbol.for("vuetify:v-menu"),Gr=U({closeDelay:[Number,String],openDelay:[Number,String]},"delay"),qr=U({target:[String,Object],activator:[String,Object],activatorProps:{type:Object,default:()=>({})},openOnClick:{type:Boolean,default:void 0},openOnHover:Boolean,openOnFocus:{type:Boolean,default:void 0},closeOnContentClick:Boolean,...Gr()},"VOverlay-activator");function Hr(n,o){let{isActive:t,isTop:l}=o;const a=Ie("useActivator"),r=e.ref();let c=!1,u=!1,s=!0;const i=e.computed(()=>n.openOnFocus||n.openOnFocus==null&&n.openOnHover),d=e.computed(()=>n.openOnClick||n.openOnClick==null&&!n.openOnHover&&!i.value),{runOpenDelay:v,runCloseDelay:p}=function(C,V){const I={},$=x=>()=>{if(!xe)return Promise.resolve(!0);const _=x==="openDelay";return I.closeDelay&&window.clearTimeout(I.closeDelay),delete I.closeDelay,I.openDelay&&window.clearTimeout(I.openDelay),delete I.openDelay,new Promise(w=>{const b=parseInt(C[x]??0,10);I[x]=window.setTimeout(()=>{V==null||V(_),w(_)},b)})};return{runCloseDelay:$("closeDelay"),runOpenDelay:$("openDelay")}}(n,C=>{C!==(n.openOnHover&&c||i.value&&u)||n.openOnHover&&t.value&&!l.value||(t.value!==C&&(s=!0),t.value=C)}),f=e.ref(),y=C=>{C.stopPropagation(),r.value=C.currentTarget||C.target,t.value||(f.value=[C.clientX,C.clientY]),t.value=!t.value},g=C=>{var V;(V=C.sourceCapabilities)!=null&&V.firesTouchEvents||(c=!0,r.value=C.currentTarget||C.target,v())},m=C=>{c=!1,p()},h=C=>{lt(C.target,":focus-visible")!==!1&&(u=!0,C.stopPropagation(),r.value=C.currentTarget||C.target,v())},B=C=>{u=!1,C.stopPropagation(),p()},F=e.computed(()=>{const C={};return d.value&&(C.onClick=y),n.openOnHover&&(C.onMouseenter=g,C.onMouseleave=m),i.value&&(C.onFocus=h,C.onBlur=B),C}),W=e.computed(()=>{const C={};if(n.openOnHover&&(C.onMouseenter=()=>{c=!0,v()},C.onMouseleave=()=>{c=!1,p()}),i.value&&(C.onFocusin=()=>{u=!0,v()},C.onFocusout=()=>{u=!1,p()}),n.closeOnContentClick){const V=e.inject(jt,null);C.onClick=()=>{t.value=!1,V==null||V.closeParents()}}return C}),P=e.computed(()=>{const C={};return n.openOnHover&&(C.onMouseenter=()=>{s&&(c=!0,s=!1,v())},C.onMouseleave=()=>{c=!1,p()}),C});e.watch(l,C=>{!C||(!n.openOnHover||c||i.value&&u)&&(!i.value||u||n.openOnHover&&c)||(t.value=!1)}),e.watch(t,C=>{C||setTimeout(()=>{f.value=void 0})},{flush:"post"});const O=e.ref();e.watchEffect(()=>{O.value&&e.nextTick(()=>{r.value=nt(O.value)})});const T=e.ref(),A=e.computed(()=>n.target==="cursor"&&f.value?f.value:T.value?nt(T.value):Qo(n.target,a)||r.value),S=e.computed(()=>Array.isArray(A.value)?void 0:A.value);let N;return e.watch(()=>!!n.activator,C=>{C&&xe?(N=e.effectScope(),N.run(()=>{(function(V,I,$){let{activatorEl:x,activatorEvents:_}=$;function w(){let z=arguments.length>0&&arguments[0]!==void 0?arguments[0]:k(),R=arguments.length>1&&arguments[1]!==void 0?arguments[1]:V.activatorProps;z&&function(G,j){Object.keys(j).forEach(E=>{if(_t(E)){const D=ho(E),L=Yn.get(G);if(j[E]==null)L==null||L.forEach(M=>{const[q,X]=M;q===D&&(G.removeEventListener(D,X),L.delete(M))});else if(!L||![...L].some(M=>M[0]===D&&M[1]===j[E])){G.addEventListener(D,j[E]);const M=L||new Set;M.add([D,j[E]]),Yn.has(G)||Yn.set(G,M)}}else j[E]==null?G.removeAttribute(E):G.setAttribute(E,j[E])})}(z,e.mergeProps(_.value,R))}function b(){let z=arguments.length>0&&arguments[0]!==void 0?arguments[0]:k(),R=arguments.length>1&&arguments[1]!==void 0?arguments[1]:V.activatorProps;z&&function(G,j){Object.keys(j).forEach(E=>{if(_t(E)){const D=ho(E),L=Yn.get(G);L==null||L.forEach(M=>{const[q,X]=M;q===D&&(G.removeEventListener(D,X),L.delete(M))})}else G.removeAttribute(E)})}(z,e.mergeProps(_.value,R))}function k(){const z=Qo(arguments.length>0&&arguments[0]!==void 0?arguments[0]:V.activator,I);return x.value=(z==null?void 0:z.nodeType)===Node.ELEMENT_NODE?z:void 0,x.value}e.watch(()=>V.activator,(z,R)=>{if(R&&z!==R){const G=k(R);G&&b(G)}z&&e.nextTick(()=>w())},{immediate:!0}),e.watch(()=>V.activatorProps,()=>{w()}),e.onScopeDispose(()=>{b()})})(n,a,{activatorEl:r,activatorEvents:F})})):N&&N.stop()},{flush:"post",immediate:!0}),e.onScopeDispose(()=>{N==null||N.stop()}),{activatorEl:r,activatorRef:O,target:A,targetEl:S,targetRef:T,activatorEvents:F,contentEvents:W,scrimEvents:P}}function Qo(n,o){var l,a;if(!n)return;let t;if(n==="parent"){let r=(a=(l=o==null?void 0:o.proxy)==null?void 0:l.$el)==null?void 0:a.parentNode;for(;r!=null&&r.hasAttribute("data-no-activator");)r=r.parentNode;t=r}else t=typeof n=="string"?document.querySelector(n):"$el"in n?n.$el:n;return t}const Yr=Symbol.for("vuetify:display");function ca(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Oe();const t=e.inject(Yr);if(!t)throw new Error("Could not find Vuetify display injection");const l=e.computed(()=>{if(!n.mobileBreakpoint)return t.mobile.value;const r=typeof n.mobileBreakpoint=="number"?n.mobileBreakpoint:t.thresholds.value[n.mobileBreakpoint];return t.width.valueo?{[`${o}--mobile`]:l.value}:{});return{...t,displayClasses:a,mobile:l}}const Xr=U({eager:Boolean},"lazy");function da(){const n=Ie("useScopeId").vnode.scopeId;return{scopeId:n?{[n]:""}:void 0}}const el=Symbol.for("vuetify:stack"),kn=e.reactive([]);function Kr(){return!0}function nl(n,o,t){if(!n||pa(n,t)===!1)return!1;const l=hl(o);if(typeof ShadowRoot<"u"&&l instanceof ShadowRoot&&l.host===n.target)return!1;const a=(typeof t.value=="object"&&t.value.include||(()=>[]))();return a.push(o),!a.some(r=>r==null?void 0:r.contains(n.target))}function pa(n,o){return(typeof o.value=="object"&&o.value.closeConditional||Kr)(n)}function tl(n,o){const t=hl(n);o(document),typeof ShadowRoot<"u"&&t instanceof ShadowRoot&&o(t)}const Jr={mounted(n,o){const t=a=>function(r,c,u){const s=typeof u.value=="function"?u.value:u.value.handler;c._clickOutside.lastMousedownWasOutside&&nl(r,c,u)&&setTimeout(()=>{pa(r,u)&&s&&s(r)},0)}(a,n,o),l=a=>{n._clickOutside.lastMousedownWasOutside=nl(a,n,o)};tl(n,a=>{a.addEventListener("click",t,!0),a.addEventListener("mousedown",l,!0)}),n._clickOutside||(n._clickOutside={lastMousedownWasOutside:!1}),n._clickOutside[o.instance.$.uid]={onClick:t,onMousedown:l}},unmounted(n,o){n._clickOutside&&(tl(n,t=>{var r;if(!t||!((r=n._clickOutside)!=null&&r[o.instance.$.uid]))return;const{onClick:l,onMousedown:a}=n._clickOutside[o.instance.$.uid];t.removeEventListener("click",l,!0),t.removeEventListener("mousedown",a,!0)}),delete n._clickOutside[o.instance.$.uid])}};function Zr(n){const{modelValue:o,color:t,...l}=n;return e.createVNode(e.Transition,{name:"fade-transition",appear:!0},{default:()=>[n.modelValue&&e.createVNode("div",e.mergeProps({class:["v-overlay__scrim",n.color.backgroundColorClasses.value],style:n.color.backgroundColorStyles.value},l),null)]})}const va=U({absolute:Boolean,attach:[Boolean,String,Object],closeOnBack:{type:Boolean,default:!0},contained:Boolean,contentClass:null,contentProps:null,disabled:Boolean,noClickAnimation:Boolean,modelValue:Boolean,persistent:Boolean,scrim:{type:[Boolean,String],default:!0},zIndex:{type:[Number,String],default:2e3},...qr(),...ae(),...Je(),...Xr(),...jr(),...Ur(),...Ve(),...Un()},"VOverlay"),ol=Y()({name:"VOverlay",directives:{ClickOutside:Jr},inheritAttrs:!1,props:{_disableGlobalStack:Boolean,...va()},emits:{"click:outside":n=>!0,"update:modelValue":n=>!0,afterLeave:()=>!0},setup(n,o){var G,j;let{slots:t,attrs:l,emit:a}=o;const r=he(n,"modelValue"),c=e.computed({get:()=>r.value,set:E=>{E&&n.disabled||(r.value=E)}}),{teleportTarget:u}=function(E){return{teleportTarget:e.computed(()=>{const D=E.value;if(D===!0||!xe)return;const L=D===!1?document.body:typeof D=="string"?document.querySelector(D):D;if(L==null)return void e.warn(`Unable to locate target ${D}`);let M=L.querySelector(":scope > .v-overlay-container");return M||(M=document.createElement("div"),M.className="v-overlay-container",L.appendChild(M)),M})}}(e.computed(()=>n.attach||n.contained)),{themeClasses:s}=ke(n),{rtlClasses:i,isRtl:d}=Wn(),{hasContent:v,onAfterLeave:p}=function(E,D){const L=e.shallowRef(!1),M=e.computed(()=>L.value||E.eager||D.value);return e.watch(D,()=>L.value=!0),{isBooted:L,hasContent:M,onAfterLeave:function(){E.eager||(L.value=!1)}}}(n,c),f=an(e.computed(()=>typeof n.scrim=="string"?n.scrim:null)),{globalTop:y,localTop:g,stackStyles:m}=function(E,D,L){const M=Ie("useStack"),q=!L,X=e.inject(el,void 0),te=e.reactive({activeChildren:new Set});e.provide(el,te);const re=e.shallowRef(+D.value);Ye(E,()=>{var pe;const fe=(pe=kn.at(-1))==null?void 0:pe[1];re.value=fe?fe+10:+D.value,q&&kn.push([M.uid,re.value]),X==null||X.activeChildren.add(M.uid),e.onScopeDispose(()=>{if(q){const de=e.toRaw(kn).findIndex(ge=>ge[0]===M.uid);kn.splice(de,1)}X==null||X.activeChildren.delete(M.uid)})});const ie=e.shallowRef(!0);q&&e.watchEffect(()=>{var pe;const fe=((pe=kn.at(-1))==null?void 0:pe[0])===M.uid;setTimeout(()=>ie.value=fe)});const Ce=e.computed(()=>!te.activeChildren.size);return{globalTop:e.readonly(ie),localTop:Ce,stackStyles:e.computed(()=>({zIndex:re.value}))}}(c,e.toRef(n,"zIndex"),n._disableGlobalStack),{activatorEl:h,activatorRef:B,target:F,targetEl:W,targetRef:P,activatorEvents:O,contentEvents:T,scrimEvents:A}=Hr(n,{isActive:c,isTop:g}),{dimensionStyles:S}=Ze(n),N=function(){if(!xe)return e.shallowRef(!1);const{ssr:E}=ca();if(E){const D=e.shallowRef(!1);return e.onMounted(()=>{D.value=!0}),D}return e.shallowRef(!0)}(),{scopeId:C}=da();e.watch(()=>n.disabled,E=>{E&&(c.value=!1)});const V=e.ref(),I=e.ref(),{contentStyles:$,updateLocation:x}=function(E,D){const L=e.ref({}),M=e.ref();function q(X){var te;(te=M.value)==null||te.call(M,X)}return xe&&Ye(()=>!(!D.isActive.value||!E.locationStrategy),X=>{var te,re;e.watch(()=>E.locationStrategy,X),e.onScopeDispose(()=>{window.removeEventListener("resize",q),M.value=void 0}),window.addEventListener("resize",q,{passive:!0}),typeof E.locationStrategy=="function"?M.value=(te=E.locationStrategy(D,E,L))==null?void 0:te.updateLocation:M.value=(re=ua[E.locationStrategy](D,E,L))==null?void 0:re.updateLocation}),{contentStyles:L,updateLocation:M}}(n,{isRtl:d,contentEl:I,target:F,isActive:c});function _(E){a("click:outside",E),n.persistent?R():c.value=!1}function w(){return c.value&&y.value}function b(E){var D,L;E.key==="Escape"&&y.value&&(n.persistent?R():(c.value=!1,(D=I.value)!=null&&D.contains(document.activeElement)&&((L=h.value)==null||L.focus())))}(function(E,D){if(!xe)return;let L;e.watchEffect(async()=>{L==null||L.stop(),D.isActive.value&&E.scrollStrategy&&(L=e.effectScope(),await e.nextTick(),L.active&&L.run(()=>{var M;typeof E.scrollStrategy=="function"?E.scrollStrategy(D,E,L):(M=et[E.scrollStrategy])==null||M.call(et,D,E,L)}))}),e.onScopeDispose(()=>{L==null||L.stop()})})(n,{root:V,contentEl:I,targetEl:W,isActive:c,updateLocation:x}),xe&&e.watch(c,E=>{E?window.addEventListener("keydown",b):window.removeEventListener("keydown",b)},{immediate:!0});const k=(j=(G=Ie("useRouter"))==null?void 0:G.proxy)==null?void 0:j.$router;Ye(()=>n.closeOnBack,()=>{(function(E,D){let L,M,q=!1;function X(te){var re;(re=te.state)!=null&&re.replaced||(q=!0,setTimeout(()=>q=!1))}xe&&(e.nextTick(()=>{window.addEventListener("popstate",X),L=E==null?void 0:E.beforeEach((te,re,ie)=>{wt?q?D(ie):ie():setTimeout(()=>q?D(ie):ie()),wt=!0}),M=E==null?void 0:E.afterEach(()=>{wt=!1})}),e.onScopeDispose(()=>{window.removeEventListener("popstate",X),L==null||L(),M==null||M()}))})(k,E=>{y.value&&c.value?(E(!1),n.persistent?R():c.value=!1):E()})});const z=e.ref();function R(){n.noClickAnimation||I.value&&on(I.value,[{transformOrigin:"center"},{transform:"scale(1.03)"},{transformOrigin:"center"}],{duration:150,easing:rt})}return e.watch(()=>c.value&&(n.absolute||n.contained)&&u.value==null,E=>{if(E){const D=Cl(V.value);D&&D!==document.scrollingElement&&(z.value=D.scrollTop)}}),ee(()=>{var E;return e.createVNode(e.Fragment,null,[(E=t.activator)==null?void 0:E.call(t,{isActive:c.value,props:e.mergeProps({ref:B,targetRef:P},O.value,n.activatorProps)}),N.value&&v.value&&e.createVNode(e.Teleport,{disabled:!u.value,to:u.value},{default:()=>[e.createVNode("div",e.mergeProps({class:["v-overlay",{"v-overlay--absolute":n.absolute||n.contained,"v-overlay--active":c.value,"v-overlay--contained":n.contained},s.value,i.value,n.class],style:[m.value,{top:Z(z.value)},n.style],ref:V},C,l),[e.createVNode(Zr,e.mergeProps({color:f,modelValue:c.value&&!!n.scrim},A.value),null),e.createVNode(We,{appear:!0,persisted:!0,transition:n.transition,target:F.value,onAfterLeave:()=>{p(),a("afterLeave")}},{default:()=>{var D;return[e.withDirectives(e.createVNode("div",e.mergeProps({ref:I,class:["v-overlay__content",n.contentClass],style:[S.value,$.value]},T.value,n.contentProps),[(D=t.default)==null?void 0:D.call(t,{isActive:c})]),[[e.vShow,c.value],[e.resolveDirective("click-outside"),{handler:_,closeConditional:w,include:()=>[h.value]}]])]}})])]})])}),{activatorEl:h,target:F,animateClick:R,contentEl:I,globalTop:y,localTop:g,updateLocation:x}}}),Ft=Symbol("Forwarded refs");function Nt(n,o){let t=n;for(;t;){const l=Reflect.getOwnPropertyDescriptor(t,o);if(l)return l;t=Object.getPrototypeOf(t)}}function gt(n){for(var o=arguments.length,t=new Array(o>1?o-1:0),l=1;l!0},setup(n,o){let{slots:t}=o;const l=he(n,"modelValue"),{scopeId:a}=da(),r=Pe(),c=e.computed(()=>n.id||`v-menu-${r}`),u=e.ref(),s=e.inject(jt,null),i=e.shallowRef(0);async function d(g){var B,F,W;const m=g.relatedTarget,h=g.target;await e.nextTick(),l.value&&m!==h&&((B=u.value)!=null&&B.contentEl)&&((F=u.value)!=null&&F.globalTop)&&![document,u.value.contentEl].includes(h)&&!u.value.contentEl.contains(h)&&((W=Et(u.value.contentEl)[0])==null||W.focus())}function v(){s==null||s.closeParents()}function p(g){var m,h,B;!n.disabled&&g.key==="Tab"&&(vl(Et((m=u.value)==null?void 0:m.contentEl,!1),g.shiftKey?"prev":"next",F=>F.tabIndex>=0)||(l.value=!1,(B=(h=u.value)==null?void 0:h.activatorEl)==null||B.focus()))}function f(g){var h;if(n.disabled)return;const m=(h=u.value)==null?void 0:h.contentEl;m&&l.value?g.key==="ArrowDown"?(g.preventDefault(),ot(m,"next")):g.key==="ArrowUp"&&(g.preventDefault(),ot(m,"prev")):["ArrowDown","ArrowUp"].includes(g.key)&&(l.value=!0,g.preventDefault(),setTimeout(()=>setTimeout(()=>f(g))))}e.provide(jt,{register(){++i.value},unregister(){--i.value},closeParents(){setTimeout(()=>{i.value||(l.value=!1,s==null||s.closeParents())},40)}}),e.watch(l,g=>{g?(s==null||s.register(),document.addEventListener("focusin",d,{once:!0})):(s==null||s.unregister(),document.removeEventListener("focusin",d))});const y=e.computed(()=>e.mergeProps({"aria-haspopup":"menu","aria-expanded":String(l.value),"aria-owns":c.value,onKeydown:f},n.activatorProps));return ee(()=>{const g=ol.filterProps(n);return e.createVNode(ol,e.mergeProps({ref:u,class:["v-menu",n.class],style:n.style},g,{modelValue:l.value,"onUpdate:modelValue":m=>l.value=m,absolute:!0,activatorProps:y.value,"onClick:outside":v,onKeydown:p},a),{activator:t.activator,default:function(){for(var m=arguments.length,h=new Array(m),B=0;B{var F;return[(F=t.default)==null?void 0:F.call(t,...h)]}})}})}),gt({id:c,ΨopenChildren:i},u)}}),ni=U({active:Boolean,max:[Number,String],value:{type:[Number,String],default:0},...ae(),...Un({transition:{component:Wl}})},"VCounter"),fa=Y()({name:"VCounter",functional:!0,props:ni(),setup(n,o){let{slots:t}=o;const l=e.computed(()=>n.max?`${n.value} / ${n.max}`:String(n.value));return ee(()=>e.createVNode(We,{transition:n.transition},{default:()=>[e.withDirectives(e.createVNode("div",{class:["v-counter",n.class],style:n.style},[t.default?t.default({counter:l.value,max:n.max,value:n.value}):l.value]),[[e.vShow,n.active]])]})),{}}}),ti=U({floating:Boolean,...ae()},"VFieldLabel"),Jn=Y()({name:"VFieldLabel",props:ti(),setup(n,o){let{slots:t}=o;return ee(()=>e.createVNode(ql,{class:["v-field-label",{"v-field-label--floating":n.floating},n.class],style:n.style,"aria-hidden":n.floating||void 0},t)),{}}}),oi=["underlined","outlined","filled","solo","solo-inverted","solo-filled","plain"],so=U({appendInnerIcon:se,bgColor:String,clearable:Boolean,clearIcon:{type:se,default:"$clear"},active:Boolean,centerAffix:{type:Boolean,default:void 0},color:String,baseColor:String,dirty:Boolean,disabled:{type:Boolean,default:null},error:Boolean,flat:Boolean,label:String,persistentClear:Boolean,prependInnerIcon:se,reverse:Boolean,singleLine:Boolean,variant:{type:String,default:"filled",validator:n=>oi.includes(n)},"onClick:clear":Ee(),"onClick:appendInner":Ee(),"onClick:prependInner":Ee(),...ae(),...lo(),...Le(),...Ve()},"VField"),uo=Y()({name:"VField",inheritAttrs:!1,props:{id:String,...Jl(),...so()},emits:{"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,o){let{attrs:t,emit:l,slots:a}=o;const{themeClasses:r}=ke(n),{loaderClasses:c}=ft(n),{focusClasses:u,isFocused:s,focus:i,blur:d}=Gn(n),{InputIcon:v}=Kl(n),{roundedClasses:p}=Me(n),{rtlClasses:f}=Wn(),y=e.computed(()=>n.dirty||n.active),g=e.computed(()=>!(n.singleLine||!n.label&&!a.label)),m=Pe(),h=e.computed(()=>n.id||`input-${m}`),B=e.computed(()=>`${h.value}-messages`),F=e.ref(),W=e.ref(),P=e.ref(),O=e.computed(()=>["plain","underlined"].includes(n.variant)),{backgroundColorClasses:T,backgroundColorStyles:A}=an(e.toRef(n,"bgColor")),{textColorClasses:S,textColorStyles:N}=Re(e.computed(()=>n.error||n.disabled?void 0:y.value&&s.value?n.color:n.baseColor));e.watch(y,I=>{if(g.value){const $=F.value.$el,x=W.value.$el;requestAnimationFrame(()=>{const _=Kt($),w=x.getBoundingClientRect(),b=w.x-_.x,k=w.y-_.y-(_.height/2-w.height/2),z=w.width/.75,R=Math.abs(z-_.width)>1?{maxWidth:Z(z)}:void 0,G=getComputedStyle($),j=getComputedStyle(x),E=1e3*parseFloat(G.transitionDuration)||150,D=parseFloat(j.getPropertyValue("--v-field-label-scale")),L=j.getPropertyValue("color");$.style.visibility="visible",x.style.visibility="hidden",on($,{transform:`translate(${b}px, ${k}px) scale(${D})`,color:L,...R},{duration:E,easing:rt,direction:I?"normal":"reverse"}).finished.then(()=>{$.style.removeProperty("visibility"),x.style.removeProperty("visibility")})})}},{flush:"post"});const C=e.computed(()=>({isActive:y,isFocused:s,controlRef:P,blur:d,focus:i}));function V(I){I.target!==document.activeElement&&I.preventDefault()}return ee(()=>{var b,k,z;const I=n.variant==="outlined",$=a["prepend-inner"]||n.prependInnerIcon,x=!(!n.clearable&&!a.clear),_=!!(a["append-inner"]||n.appendInnerIcon||x),w=()=>a.label?a.label({...C.value,label:n.label,props:{for:h.value}}):n.label;return e.createVNode("div",e.mergeProps({class:["v-field",{"v-field--active":y.value,"v-field--appended":_,"v-field--center-affix":n.centerAffix??!O.value,"v-field--disabled":n.disabled,"v-field--dirty":n.dirty,"v-field--error":n.error,"v-field--flat":n.flat,"v-field--has-background":!!n.bgColor,"v-field--persistent-clear":n.persistentClear,"v-field--prepended":$,"v-field--reverse":n.reverse,"v-field--single-line":n.singleLine,"v-field--no-label":!w(),[`v-field--variant-${n.variant}`]:!0},r.value,T.value,u.value,c.value,p.value,f.value,n.class],style:[A.value,n.style],onClick:V},t),[e.createVNode("div",{class:"v-field__overlay"},null),e.createVNode(ao,{name:"v-field",active:!!n.loading,color:n.error?"error":typeof n.loading=="string"?n.loading:n.color},{default:a.loader}),$&&e.createVNode("div",{key:"prepend",class:"v-field__prepend-inner"},[n.prependInnerIcon&&e.createVNode(v,{key:"prepend-icon",name:"prependInner"},null),(b=a["prepend-inner"])==null?void 0:b.call(a,C.value)]),e.createVNode("div",{class:"v-field__field","data-no-activator":""},[["filled","solo","solo-inverted","solo-filled"].includes(n.variant)&&g.value&&e.createVNode(Jn,{key:"floating-label",ref:W,class:[S.value],floating:!0,for:h.value,style:N.value},{default:()=>[w()]}),e.createVNode(Jn,{ref:F,for:h.value},{default:()=>[w()]}),(k=a.default)==null?void 0:k.call(a,{...C.value,props:{id:h.value,class:"v-field__input","aria-describedby":B.value},focus:i,blur:d})]),x&&e.createVNode(jl,{key:"clear"},{default:()=>[e.withDirectives(e.createVNode("div",{class:"v-field__clearable",onMousedown:R=>{R.preventDefault(),R.stopPropagation()}},[a.clear?a.clear():e.createVNode(v,{name:"clear"},null)]),[[e.vShow,n.dirty]])]}),_&&e.createVNode("div",{key:"append",class:"v-field__append-inner"},[(z=a["append-inner"])==null?void 0:z.call(a,C.value),n.appendInnerIcon&&e.createVNode(v,{key:"append-icon",name:"appendInner"},null)]),e.createVNode("div",{class:["v-field__outline",S.value],style:N.value},[I&&e.createVNode(e.Fragment,null,[e.createVNode("div",{class:"v-field__outline__start"},null),g.value&&e.createVNode("div",{class:"v-field__outline__notch"},[e.createVNode(Jn,{ref:W,floating:!0,for:h.value},{default:()=>[w()]})]),e.createVNode("div",{class:"v-field__outline__end"},null)]),O.value&&g.value&&e.createVNode(Jn,{ref:W,floating:!0,for:h.value},{default:()=>[w()]})])])}),{controlRef:P}}});function ma(n){return ul(n,Object.keys(uo.props).filter(o=>!_t(o)&&o!=="class"&&o!=="style"))}const li=["color","file","time","date","datetime-local","week","month"],ya=U({autofocus:Boolean,counter:[Boolean,Number,String],counterValue:[Number,Function],prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,suffix:String,role:String,type:{type:String,default:"text"},modelModifiers:Object,...qn(),...so()},"VTextField"),Ut=Y()({name:"VTextField",directives:{Intersect:ro},inheritAttrs:!1,props:ya(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,o){let{attrs:t,emit:l,slots:a}=o;const r=he(n,"modelValue"),{isFocused:c,focus:u,blur:s}=Gn(n),i=e.computed(()=>typeof n.counterValue=="function"?n.counterValue(r.value):typeof n.counterValue=="number"?n.counterValue:(r.value??"").toString().length),d=e.computed(()=>t.maxlength?t.maxlength:!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"?void 0:n.counter),v=e.computed(()=>["plain","underlined"].includes(n.variant));function p(O,T){var A,S;n.autofocus&&O&&((S=(A=T[0].target)==null?void 0:A.focus)==null||S.call(A))}const f=e.ref(),y=e.ref(),g=e.ref(),m=e.computed(()=>li.includes(n.type)||n.persistentPlaceholder||c.value||n.active);function h(){var O;g.value!==document.activeElement&&((O=g.value)==null||O.focus()),c.value||u()}function B(O){l("mousedown:control",O),O.target!==g.value&&(h(),O.preventDefault())}function F(O){h(),l("click:control",O)}function W(O){O.stopPropagation(),h(),e.nextTick(()=>{r.value=null,pl(n["onClick:clear"],O)})}function P(O){var A;const T=O.target;if(r.value=T.value,((A=n.modelModifiers)==null?void 0:A.trim)&&["text","search","password","tel","url"].includes(n.type)){const S=[T.selectionStart,T.selectionEnd];e.nextTick(()=>{T.selectionStart=S[0],T.selectionEnd=S[1]})}}return ee(()=>{const O=!!(a.counter||n.counter!==!1&&n.counter!=null),T=!(!O&&!a.details),[A,S]=Tn(t),{modelValue:N,...C}=je.filterProps(n),V=ma(n);return e.createVNode(je,e.mergeProps({ref:f,modelValue:r.value,"onUpdate:modelValue":I=>r.value=I,class:["v-text-field",{"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-input--plain-underlined":v.value},n.class],style:n.style},A,C,{centerAffix:!v.value,focused:c.value}),{...a,default:I=>{let{id:$,isDisabled:x,isDirty:_,isReadonly:w,isValid:b}=I;return e.createVNode(uo,e.mergeProps({ref:y,onMousedown:B,onClick:F,"onClick:clear":W,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"],role:n.role},V,{id:$.value,active:m.value||_.value,dirty:_.value||n.dirty,disabled:x.value,focused:c.value,error:b.value===!1}),{...a,default:k=>{let{props:{class:z,...R}}=k;const G=e.withDirectives(e.createVNode("input",e.mergeProps({ref:g,value:r.value,onInput:P,autofocus:n.autofocus,readonly:w.value,disabled:x.value,name:n.name,placeholder:n.placeholder,size:1,type:n.type,onFocus:h,onBlur:s},R,S),null),[[e.resolveDirective("intersect"),{handler:p},null,{once:!0}]]);return e.createVNode(e.Fragment,null,[n.prefix&&e.createVNode("span",{class:"v-text-field__prefix"},[e.createVNode("span",{class:"v-text-field__prefix__text"},[n.prefix])]),a.default?e.createVNode("div",{class:z,"data-no-activator":""},[a.default(),G]):e.cloneVNode(G,{class:z}),n.suffix&&e.createVNode("span",{class:"v-text-field__suffix"},[e.createVNode("span",{class:"v-text-field__suffix__text"},[n.suffix])])])}})},details:T?I=>{var $;return e.createVNode(e.Fragment,null,[($=a.details)==null?void 0:$.call(a,I),O&&e.createVNode(e.Fragment,null,[e.createVNode("span",null,null),e.createVNode(fa,{active:n.persistentCounter||c.value,value:i.value,max:d.value},a.counter)])])}:void 0})}),gt({},f,y,g)}}),ai=U({renderless:Boolean,...ae()},"VVirtualScrollItem"),ri=Y()({name:"VVirtualScrollItem",inheritAttrs:!1,props:ai(),emits:{"update:height":n=>!0},setup(n,o){let{attrs:t,emit:l,slots:a}=o;const{resizeRef:r,contentRect:c}=eo(void 0,"border");e.watch(()=>{var u;return(u=c.value)==null?void 0:u.height},u=>{u!=null&&l("update:height",u)}),ee(()=>{var u,s;return n.renderless?e.createVNode(e.Fragment,null,[(u=a.default)==null?void 0:u.call(a,{itemRef:r})]):e.createVNode("div",e.mergeProps({ref:r,class:["v-virtual-scroll__item",n.class],style:n.style},t),[(s=a.default)==null?void 0:s.call(a)])})}}),ii=U({itemHeight:{type:[Number,String],default:null},height:[Number,String]},"virtual");function si(n,o){const t=ca(),l=e.shallowRef(0);e.watchEffect(()=>{l.value=parseFloat(n.itemHeight||0)});const a=e.shallowRef(0),r=e.shallowRef(Math.ceil((parseInt(n.height)||t.height.value)/(l.value||16))||1),c=e.shallowRef(0),u=e.shallowRef(0),s=e.ref(),i=e.ref();let d=0;const{resizeRef:v,contentRect:p}=eo();e.watchEffect(()=>{v.value=s.value});const f=e.computed(()=>{var x;return s.value===document.documentElement?t.height.value:((x=p.value)==null?void 0:x.height)||parseInt(n.height)||0}),y=e.computed(()=>!!(s.value&&i.value&&f.value&&l.value));let g=Array.from({length:o.value.length}),m=Array.from({length:o.value.length});const h=e.shallowRef(0);let B=-1;const F=function(x,_){let w=0;const b=function(){for(var k=arguments.length,z=new Array(k),R=0;Rx(...z),e.unref(_))};return b.clear=()=>{clearTimeout(w)},b.immediate=x,b}(()=>{const x=performance.now();m[0]=0;const _=o.value.length;for(let w=1;w<=_-1;w++)m[w]=(m[w-1]||0)+(g[w-1]||l.value);h.value=Math.max(h.value,performance.now()-x)},h),W=e.watch(y,x=>{x&&(W(),d=i.value.offsetTop,F.immediate(),C(),~B&&e.nextTick(()=>{xe&&window.requestAnimationFrame(()=>{I(B),B=-1})}))});function P(x){return x=ln(x,0,o.value.length-1),m[x]||0}function O(x){return function(_,w){let b=_.length-1,k=0,z=0,R=null,G=-1;if(_[b]>1,R=_[z],R>w)b=z-1;else{if(!(R{_&&C()}),e.onScopeDispose(()=>{F.clear()});let T=0,A=0,S=0,N=-1;function C(){cancelAnimationFrame(N),N=requestAnimationFrame(V)}function V(){if(!s.value||!f.value)return;const x=T-d,_=Math.sign(A),w=ln(O(Math.max(0,x-100)),0,o.value.length),b=ln(O(x+f.value+100)+1,w+1,o.value.length);if((_!==-1||wr.value)){const k=P(a.value)-P(w),z=P(b)-P(r.value);Math.max(k,z)>100?(a.value=w,r.value=b):(w<=0&&(a.value=w),b>=o.value.length&&(r.value=b))}c.value=P(a.value),u.value=P(o.value.length)-P(r.value)}function I(x){const _=P(x);!s.value||x&&!_?B=x:s.value.scrollTop=_}const $=e.computed(()=>o.value.slice(a.value,r.value).map((x,_)=>({raw:x,index:_+a.value})));return e.watch(o,()=>{g=Array.from({length:o.value.length}),m=Array.from({length:o.value.length}),F.immediate(),C()},{deep:!0}),{containerRef:s,markerRef:i,computedItems:$,paddingTop:c,paddingBottom:u,scrollToIndex:I,handleScroll:function(){if(!s.value||!i.value)return;const x=s.value.scrollTop,_=performance.now();_-S>500?(A=Math.sign(x-T),d=i.value.offsetTop):A=x-T,T=x,S=_,C()},handleScrollend:function(){s.value&&i.value&&(A=0,S=0,C())},handleItemResize:function(x,_){const w=g[x],b=l.value;l.value=b?Math.min(l.value,_):_,w===_&&b===l.value||(g[x]=_,F())}}}const ui=U({items:{type:Array,default:()=>[]},renderless:Boolean,...ii(),...ae(),...Je()},"VVirtualScroll"),ci=Y()({name:"VVirtualScroll",props:ui(),setup(n,o){let{slots:t}=o;const l=Ie("VVirtualScroll"),{dimensionStyles:a}=Ze(n),{containerRef:r,markerRef:c,handleScroll:u,handleScrollend:s,handleItemResize:i,scrollToIndex:d,paddingTop:v,paddingBottom:p,computedItems:f}=si(n,e.toRef(n,"items"));return Ye(()=>n.renderless,()=>{function y(){var m,h;const g=arguments.length>0&&arguments[0]!==void 0&&arguments[0]?"addEventListener":"removeEventListener";r.value===document.documentElement?(document[g]("scroll",u,{passive:!0}),document[g]("scrollend",s)):((m=r.value)==null||m[g]("scroll",u,{passive:!0}),(h=r.value)==null||h[g]("scrollend",s))}e.onMounted(()=>{r.value=Cl(l.vnode.el,!0),y(!0)}),e.onScopeDispose(y)}),ee(()=>{const y=f.value.map(g=>e.createVNode(ri,{key:g.index,renderless:n.renderless,"onUpdate:height":m=>i(g.index,m)},{default:m=>{var h;return(h=t.default)==null?void 0:h.call(t,{item:g.raw,index:g.index,...m})}}));return n.renderless?e.createVNode(e.Fragment,null,[e.createVNode("div",{ref:c,class:"v-virtual-scroll__spacer",style:{paddingTop:Z(v.value)}},null),y,e.createVNode("div",{class:"v-virtual-scroll__spacer",style:{paddingBottom:Z(p.value)}},null)]):e.createVNode("div",{ref:r,class:["v-virtual-scroll",n.class],onScrollPassive:u,onScrollend:s,style:[a.value,n.style]},[e.createVNode("div",{ref:c,class:"v-virtual-scroll__container",style:{paddingTop:Z(v.value),paddingBottom:Z(p.value)}},[y])])}),{scrollToIndex:d}}});function di(n,o){const t=e.shallowRef(!1);let l;return{onListScroll:function(a){cancelAnimationFrame(l),t.value=!0,l=requestAnimationFrame(()=>{l=requestAnimationFrame(()=>{t.value=!1})})},onListKeydown:async function(a){var u,s;if(a.key==="Tab"&&((u=o.value)==null||u.focus()),!["PageDown","PageUp","Home","End"].includes(a.key))return;const r=(s=n.value)==null?void 0:s.$el;if(!r)return;a.key!=="Home"&&a.key!=="End"||r.scrollTo({top:a.key==="Home"?0:r.scrollHeight,behavior:"smooth"}),await async function(){await new Promise(i=>requestAnimationFrame(i)),await new Promise(i=>requestAnimationFrame(i)),await new Promise(i=>requestAnimationFrame(i)),await new Promise(i=>{if(t.value){const d=e.watch(t,()=>{d(),i()})}else i()})}();const c=r.querySelectorAll(":scope > :not(.v-virtual-scroll__spacer)");if(a.key==="PageDown"||a.key==="Home"){const i=r.getBoundingClientRect().top;for(const d of c)if(d.getBoundingClientRect().top>=i){d.focus();break}}else{const i=r.getBoundingClientRect().bottom;for(const d of[...c].reverse())if(d.getBoundingClientRect().bottom<=i){d.focus();break}}}}}const pi=U({chips:Boolean,closableChips:Boolean,closeText:{type:String,default:"$vuetify.close"},openText:{type:String,default:"$vuetify.open"},eager:Boolean,hideNoData:Boolean,hideSelected:Boolean,menu:Boolean,menuIcon:{type:se,default:"$dropdown"},menuProps:{type:Object},multiple:Boolean,noDataText:{type:String,default:"$vuetify.noDataText"},openOnClear:Boolean,itemColor:String,...ra({itemChildren:!1})},"Select"),vi=U({...pi(),...Ke(ya({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...Un({transition:{component:Ml}})},"VSelect"),fi=Y()({name:"VSelect",props:vi(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,o){let{slots:t}=o;const{t:l}=no(),a=e.ref(),r=e.ref(),c=e.ref(),u=he(n,"menu"),s=e.computed({get:()=>u.value,set:b=>{var k;u.value&&!b&&((k=r.value)!=null&&k.ΨopenChildren)||(u.value=b)}}),{items:i,transformIn:d,transformOut:v}=function(b){const k=e.computed(()=>ia(b,b.items)),z=e.computed(()=>k.value.some(R=>R.value===null));return{items:k,transformIn:function(R){return z.value||(R=R.filter(G=>G!==null)),R.map(G=>b.returnObject&&typeof G=="string"?Lt(b,G):k.value.find(j=>b.valueComparator(G,j.value))||Lt(b,G))},transformOut:function(R){return b.returnObject?R.map(G=>{let{raw:j}=G;return j}):R.map(G=>{let{value:j}=G;return j})}}}(n),p=he(n,"modelValue",[],b=>d(b===null?[null]:$e(b)),b=>{const k=v(b);return n.multiple?k:k[0]??null}),f=e.computed(()=>typeof n.counterValue=="function"?n.counterValue(p.value):typeof n.counterValue=="number"?n.counterValue:p.value.length),y=Zl(),g=e.computed(()=>p.value.map(b=>b.value)),m=e.shallowRef(!1),h=e.computed(()=>s.value?n.closeText:n.openText);let B,F="";const W=e.computed(()=>n.hideSelected?i.value.filter(b=>!p.value.some(k=>k===b)):i.value),P=e.computed(()=>n.hideNoData&&!i.value.length||n.readonly||(y==null?void 0:y.isReadonly.value)),O=e.computed(()=>{var b;return{...n.menuProps,activatorProps:{...((b=n.menuProps)==null?void 0:b.activatorProps)||{},"aria-haspopup":"listbox"}}}),T=e.ref(),{onListScroll:A,onListKeydown:S}=di(T,a);function N(b){n.openOnClear&&(s.value=!0)}function C(){P.value||(s.value=!s.value)}function V(b){var R,G;if(!b.key||n.readonly||y!=null&&y.isReadonly.value||(["Enter"," ","ArrowDown","ArrowUp","Home","End"].includes(b.key)&&b.preventDefault(),["Enter","ArrowDown"," "].includes(b.key)&&(s.value=!0),["Escape","Tab"].includes(b.key)&&(s.value=!1),b.key==="Home"?(R=T.value)==null||R.focus("first"):b.key==="End"&&((G=T.value)==null||G.focus("last")),n.multiple||!function(j){const E=j.key.length===1,D=!j.ctrlKey&&!j.metaKey&&!j.altKey;return E&&D}(b)))return;const k=performance.now();k-B>1e3&&(F=""),F+=b.key.toLowerCase(),B=k;const z=i.value.find(j=>j.title.toLowerCase().startsWith(F));z!==void 0&&(p.value=[z])}function I(b){if(n.multiple){const k=p.value.findIndex(z=>n.valueComparator(z.value,b.value));if(k===-1)p.value=[...p.value,b];else{const z=[...p.value];z.splice(k,1),p.value=z}}else p.value=[b],s.value=!1}function $(b){var k;(k=T.value)!=null&&k.$el.contains(b.relatedTarget)||(s.value=!1)}function x(){var b;m.value&&((b=a.value)==null||b.focus())}function _(b){m.value=!0}function w(b){if(b==null)p.value=[];else if(lt(a.value,":autofill")||lt(a.value,":-webkit-autofill")){const k=i.value.find(z=>z.title===b);k&&I(k)}else a.value&&(a.value.value="")}return e.watch(s,()=>{if(!n.hideSelected&&s.value&&p.value.length){const b=W.value.findIndex(k=>p.value.some(z=>n.valueComparator(z.value,k.value)));xe&&window.requestAnimationFrame(()=>{var k;b>=0&&((k=c.value)==null||k.scrollToIndex(b))})}}),ee(()=>{const b=!(!n.chips&&!t.chip),k=!!(!n.hideNoData||W.value.length||t["prepend-item"]||t["append-item"]||t["no-data"]),z=p.value.length>0,R=Ut.filterProps(n),G=z||!m.value&&n.label&&!n.persistentPlaceholder?void 0:n.placeholder;return e.createVNode(Ut,e.mergeProps({ref:a},R,{modelValue:p.value.map(j=>j.props.value).join(", "),"onUpdate:modelValue":w,focused:m.value,"onUpdate:focused":j=>m.value=j,validationValue:p.externalValue,counterValue:f.value,dirty:z,class:["v-select",{"v-select--active-menu":s.value,"v-select--chips":!!n.chips,["v-select--"+(n.multiple?"multiple":"single")]:!0,"v-select--selected":p.value.length,"v-select--selection-slot":!!t.selection},n.class],style:n.style,inputmode:"none",placeholder:G,"onClick:clear":N,"onMousedown:control":C,onBlur:$,onKeydown:V,"aria-label":l(h.value),title:l(h.value)}),{...t,default:()=>e.createVNode(e.Fragment,null,[e.createVNode(ei,e.mergeProps({ref:r,modelValue:s.value,"onUpdate:modelValue":j=>s.value=j,activator:"parent",contentClass:"v-select__content",disabled:P.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:x},O.value),{default:()=>[k&&e.createVNode(Wr,{ref:T,selected:g.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:j=>j.preventDefault(),onKeydown:S,onFocusin:_,onScrollPassive:A,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var j,E,D;return[(j=t["prepend-item"])==null?void 0:j.call(t),!W.value.length&&!n.hideNoData&&(((E=t["no-data"])==null?void 0:E.call(t))??e.createVNode(dt,{title:l(n.noDataText)},null)),e.createVNode(ci,{ref:c,renderless:!0,items:W.value},{default:L=>{var re;let{item:M,index:q,itemRef:X}=L;const te=e.mergeProps(M.props,{ref:X,key:q,onClick:()=>I(M)});return((re=t.item)==null?void 0:re.call(t,{item:M,index:q,props:te}))??e.createVNode(dt,e.mergeProps(te,{role:"option"}),{prepend:ie=>{let{isSelected:Ce}=ie;return e.createVNode(e.Fragment,null,[n.multiple&&!n.hideSelected?e.createVNode($t,{key:M.value,modelValue:Ce,ripple:!1,tabindex:"-1"},null):void 0,M.props.prependIcon&&e.createVNode(ce,{icon:M.props.prependIcon},null)])}})}}),(D=t["append-item"])==null?void 0:D.call(t)]}})]}),p.value.map((j,E)=>{const D={"onClick:close":function(q){q.stopPropagation(),q.preventDefault(),I(j)},onMousedown(q){q.preventDefault(),q.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0},L=b?!!t.chip:!!t.selection,M=L?fl(b?t.chip({item:j,index:E,props:D}):t.selection({item:j,index:E})):void 0;if(!L||M)return e.createVNode("div",{key:j.value,class:"v-select__selection"},[b?t.chip?e.createVNode(Be,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:j.title}}},{default:()=>[M]}):e.createVNode(wr,e.mergeProps({key:"chip",closable:n.closableChips,size:"small",text:j.title,disabled:j.props.disabled},D),null):M??e.createVNode("span",{class:"v-select__selection-text"},[j.title,n.multiple&&E{var l;return e.createVNode("div",{class:["v-card-actions",n.class],style:n.style},[(l=t.default)==null?void 0:l.call(t)])}),{}}}),yi=$n("v-card-subtitle"),gi=$n("v-card-title"),hi=U({appendAvatar:String,appendIcon:se,prependAvatar:String,prependIcon:se,subtitle:[String,Number],title:[String,Number],...ae(),...ze()},"VCardItem"),bi=Y()({name:"VCardItem",props:hi(),setup(n,o){let{slots:t}=o;return ee(()=>{var i;const l=!(!n.prependAvatar&&!n.prependIcon),a=!(!l&&!t.prepend),r=!(!n.appendAvatar&&!n.appendIcon),c=!(!r&&!t.append),u=!(n.title==null&&!t.title),s=!(n.subtitle==null&&!t.subtitle);return e.createVNode("div",{class:["v-card-item",n.class],style:n.style},[a&&e.createVNode("div",{key:"prepend",class:"v-card-item__prepend"},[t.prepend?e.createVNode(Be,{key:"prepend-defaults",disabled:!l,defaults:{VAvatar:{density:n.density,icon:n.prependIcon,image:n.prependAvatar}}},t.prepend):l&&e.createVNode(rn,{key:"prepend-avatar",density:n.density,icon:n.prependIcon,image:n.prependAvatar},null)]),e.createVNode("div",{class:"v-card-item__content"},[u&&e.createVNode(gi,{key:"title"},{default:()=>{var d;return[((d=t.title)==null?void 0:d.call(t))??n.title]}}),s&&e.createVNode(yi,{key:"subtitle"},{default:()=>{var d;return[((d=t.subtitle)==null?void 0:d.call(t))??n.subtitle]}}),(i=t.default)==null?void 0:i.call(t)]),c&&e.createVNode("div",{key:"append",class:"v-card-item__append"},[t.append?e.createVNode(Be,{key:"append-defaults",disabled:!r,defaults:{VAvatar:{density:n.density,icon:n.appendIcon,image:n.appendAvatar}}},t.append):r&&e.createVNode(rn,{key:"append-avatar",density:n.density,icon:n.appendIcon,image:n.appendAvatar},null)])])}),{}}}),Qe=$n("v-card-text"),Ci=U({appendAvatar:String,appendIcon:se,disabled:Boolean,flat:Boolean,hover:Boolean,image:String,link:{type:Boolean,default:void 0},prependAvatar:String,prependIcon:se,ripple:{type:[Boolean,Object],default:!0},subtitle:[String,Number],text:[String,Number],title:[String,Number],...yn(),...ae(),...ze(),...Je(),...hn(),...lo(),...to(),...Al(),...Le(),...yt(),...Ae(),...Ve(),...Ge({variant:"elevated"})},"VCard"),Sn=Y()({name:"VCard",directives:{Ripple:jn},props:Ci(),setup(n,o){let{attrs:t,slots:l}=o;const{themeClasses:a}=ke(n),{borderClasses:r}=gn(n),{colorClasses:c,colorStyles:u,variantClasses:s}=Dn(n),{densityClasses:i}=De(n),{dimensionStyles:d}=Ze(n),{elevationClasses:v}=bn(n),{loaderClasses:p}=ft(n),{locationStyles:f}=oo(n),{positionClasses:y}=Pl(n),{roundedClasses:g}=Me(n),m=mt(n,t),h=e.computed(()=>n.link!==!1&&m.isLink.value),B=e.computed(()=>!n.disabled&&n.link!==!1&&(n.link||m.isClickable.value));return ee(()=>{const F=h.value?"a":n.tag,W=!(!l.title&&n.title==null),P=!(!l.subtitle&&n.subtitle==null),O=W||P,T=!!(l.append||n.appendAvatar||n.appendIcon),A=!!(l.prepend||n.prependAvatar||n.prependIcon),S=!(!l.image&&!n.image),N=O||A||T,C=!(!l.text&&n.text==null);return e.withDirectives(e.createVNode(F,{class:["v-card",{"v-card--disabled":n.disabled,"v-card--flat":n.flat,"v-card--hover":n.hover&&!(n.disabled||n.flat),"v-card--link":B.value},a.value,r.value,c.value,i.value,v.value,p.value,y.value,g.value,s.value,n.class],style:[u.value,d.value,f.value,n.style],href:m.href.value,onClick:B.value&&m.navigate,tabindex:n.disabled?-1:void 0},{default:()=>{var V;return[S&&e.createVNode("div",{key:"image",class:"v-card__image"},[l.image?e.createVNode(Be,{key:"image-defaults",disabled:!n.image,defaults:{VImg:{cover:!0,src:n.image}}},l.image):e.createVNode(Gl,{key:"image-img",cover:!0,src:n.image},null)]),e.createVNode(ao,{name:"v-card",active:!!n.loading,color:typeof n.loading=="boolean"?void 0:n.loading},{default:l.loader}),N&&e.createVNode(bi,{key:"item",prependAvatar:n.prependAvatar,prependIcon:n.prependIcon,title:n.title,subtitle:n.subtitle,appendAvatar:n.appendAvatar,appendIcon:n.appendIcon},{default:l.item,prepend:l.prepend,title:l.title,subtitle:l.subtitle,append:l.append}),C&&e.createVNode(Qe,{key:"text"},{default:()=>{var I;return[((I=l.text)==null?void 0:I.call(l))??n.text]}}),(V=l.default)==null?void 0:V.call(l),l.actions&&e.createVNode(mi,null,{default:l.actions}),Rn(B.value,"v-card")]}}),[[e.resolveDirective("ripple"),B.value&&n.ripple]])}),{}}}),Si=U({indeterminate:Boolean,inset:Boolean,flat:Boolean,loading:{type:[Boolean,String],default:!1},...qn(),...io()},"VSwitch"),Ii=Y()({name:"VSwitch",inheritAttrs:!1,props:Si(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:indeterminate":n=>!0},setup(n,o){let{attrs:t,slots:l}=o;const a=he(n,"indeterminate"),r=he(n,"modelValue"),{loaderClasses:c}=ft(n),{isFocused:u,focus:s,blur:i}=Gn(n),d=e.ref(),v=e.computed(()=>typeof n.loading=="string"&&n.loading!==""?n.loading:n.color),p=Pe(),f=e.computed(()=>n.id||`switch-${p}`);function y(){a.value&&(a.value=!1)}function g(m){var h,B;m.stopPropagation(),m.preventDefault(),(B=(h=d.value)==null?void 0:h.input)==null||B.click()}return ee(()=>{const[m,h]=Tn(t),B=je.filterProps(n),F=ct.filterProps(n);return e.createVNode(je,e.mergeProps({class:["v-switch",{"v-switch--inset":n.inset},{"v-switch--indeterminate":a.value},c.value,n.class]},m,B,{modelValue:r.value,"onUpdate:modelValue":W=>r.value=W,id:f.value,focused:u.value,style:n.style}),{...l,default:W=>{let{id:P,messagesId:O,isDisabled:T,isReadonly:A,isValid:S}=W;return e.createVNode(ct,e.mergeProps({ref:d},F,{modelValue:r.value,"onUpdate:modelValue":[N=>r.value=N,y],id:P.value,"aria-describedby":O.value,type:"checkbox","aria-checked":a.value?"mixed":void 0,disabled:T.value,readonly:A.value,onFocus:s,onBlur:i},h),{...l,default:N=>{let{backgroundColorClasses:C,backgroundColorStyles:V}=N;return e.createVNode("div",{class:["v-switch__track",...C.value],style:V.value,onClick:g},null)},input:N=>{let{inputNode:C,icon:V,backgroundColorClasses:I,backgroundColorStyles:$}=N;return e.createVNode(e.Fragment,null,[C,e.createVNode("div",{class:["v-switch__thumb",{"v-switch__thumb--filled":V||n.loading},n.inset?void 0:I.value],style:n.inset?void 0:$.value},[e.createVNode(dr,null,{default:()=>[n.loading?e.createVNode(ao,{name:"v-switch",active:!0,color:S.value===!1?void 0:v.value},{default:x=>l.loader?l.loader(x):e.createVNode(Fl,{active:x.isActive,color:x.color,indeterminate:!0,size:"16",width:"2"},null)}):V&&e.createVNode(ce,{key:V,icon:V,size:"x-small"},null)]})])])}})}})}),{}}}),Vi=U({autoGrow:Boolean,autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,noResize:Boolean,rows:{type:[Number,String],default:5,validator:n=>!isNaN(parseFloat(n))},maxRows:{type:[Number,String],validator:n=>!isNaN(parseFloat(n))},suffix:String,modelModifiers:Object,...qn(),...so()},"VTextarea"),Bi=Y()({name:"VTextarea",directives:{Intersect:ro},inheritAttrs:!1,props:Vi(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,o){let{attrs:t,emit:l,slots:a}=o;const r=he(n,"modelValue"),{isFocused:c,focus:u,blur:s}=Gn(n),i=e.computed(()=>typeof n.counterValue=="function"?n.counterValue(r.value):(r.value||"").toString().length),d=e.computed(()=>t.maxlength?t.maxlength:!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"?void 0:n.counter);function v(C,V){var I,$;n.autofocus&&C&&(($=(I=V[0].target)==null?void 0:I.focus)==null||$.call(I))}const p=e.ref(),f=e.ref(),y=e.shallowRef(""),g=e.ref(),m=e.computed(()=>n.persistentPlaceholder||c.value||n.active);function h(){var C;g.value!==document.activeElement&&((C=g.value)==null||C.focus()),c.value||u()}function B(C){h(),l("click:control",C)}function F(C){l("mousedown:control",C)}function W(C){C.stopPropagation(),h(),e.nextTick(()=>{r.value="",pl(n["onClick:clear"],C)})}function P(C){var I;const V=C.target;if(r.value=V.value,(I=n.modelModifiers)==null?void 0:I.trim){const $=[V.selectionStart,V.selectionEnd];e.nextTick(()=>{V.selectionStart=$[0],V.selectionEnd=$[1]})}}const O=e.ref(),T=e.ref(+n.rows),A=e.computed(()=>["plain","underlined"].includes(n.variant));function S(){n.autoGrow&&e.nextTick(()=>{if(!O.value||!f.value)return;const C=getComputedStyle(O.value),V=getComputedStyle(f.value.$el),I=parseFloat(C.getPropertyValue("--v-field-padding-top"))+parseFloat(C.getPropertyValue("--v-input-padding-top"))+parseFloat(C.getPropertyValue("--v-field-padding-bottom")),$=O.value.scrollHeight,x=parseFloat(C.lineHeight),_=ln($??0,Math.max(parseFloat(n.rows)*x+I,parseFloat(V.getPropertyValue("--v-input-control-height"))),parseFloat(n.maxRows)*x+I||1/0);T.value=Math.floor((_-I)/x),y.value=Z(_)})}let N;return e.watchEffect(()=>{n.autoGrow||(T.value=+n.rows)}),e.onMounted(S),e.watch(r,S),e.watch(()=>n.rows,S),e.watch(()=>n.maxRows,S),e.watch(()=>n.density,S),e.watch(O,C=>{C?(N=new ResizeObserver(S),N.observe(O.value)):N==null||N.disconnect()}),e.onBeforeUnmount(()=>{N==null||N.disconnect()}),ee(()=>{const C=!!(a.counter||n.counter||n.counterValue),V=!(!C&&!a.details),[I,$]=Tn(t),{modelValue:x,..._}=je.filterProps(n),w=ma(n);return e.createVNode(je,e.mergeProps({ref:p,modelValue:r.value,"onUpdate:modelValue":b=>r.value=b,class:["v-textarea v-text-field",{"v-textarea--prefixed":n.prefix,"v-textarea--suffixed":n.suffix,"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-textarea--auto-grow":n.autoGrow,"v-textarea--no-resize":n.noResize||n.autoGrow,"v-input--plain-underlined":A.value},n.class],style:n.style},I,_,{centerAffix:T.value===1&&!A.value,focused:c.value}),{...a,default:b=>{let{id:k,isDisabled:z,isDirty:R,isReadonly:G,isValid:j}=b;return e.createVNode(uo,e.mergeProps({ref:f,style:{"--v-textarea-control-height":y.value},onClick:B,onMousedown:F,"onClick:clear":W,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"]},w,{id:k.value,active:m.value||R.value,centerAffix:T.value===1&&!A.value,dirty:R.value||n.dirty,disabled:z.value,focused:c.value,error:j.value===!1}),{...a,default:E=>{let{props:{class:D,...L}}=E;return e.createVNode(e.Fragment,null,[n.prefix&&e.createVNode("span",{class:"v-text-field__prefix"},[n.prefix]),e.withDirectives(e.createVNode("textarea",e.mergeProps({ref:g,class:D,value:r.value,onInput:P,autofocus:n.autofocus,readonly:G.value,disabled:z.value,placeholder:n.placeholder,rows:n.rows,name:n.name,onFocus:h,onBlur:s},L,$),null),[[e.resolveDirective("intersect"),{handler:v},null,{once:!0}]]),n.autoGrow&&e.withDirectives(e.createVNode("textarea",{class:[D,"v-textarea__sizer"],id:`${L.id}-sizer`,"onUpdate:modelValue":M=>r.value=M,ref:O,readonly:!0,"aria-hidden":"true"},null),[[e.vModelText,r.value]]),n.suffix&&e.createVNode("span",{class:"v-text-field__suffix"},[n.suffix])])}})},details:V?b=>{var k;return e.createVNode(e.Fragment,null,[(k=a.details)==null?void 0:k.call(a,b),C&&e.createVNode(e.Fragment,null,[e.createVNode("span",null,null),e.createVNode(fa,{active:n.persistentCounter||c.value,value:i.value,max:d.value},a.counter)])])}:void 0})}),gt({},p,f,g)}}),ga=e.defineComponent({__name:"BooleanIcons",props:e.mergeModels({iconFalseColor:{},iconFalseTitle:{},iconTrueColor:{},iconTrueTitle:{},iconFalse:{},iconTrue:{}},{modelValue:{}}),emits:["update:modelValue"],setup(n){const o=n,t=e.inject(Symbol.for("vuetify:icons")),l=e.useModel(n,"modelValue"),a=e.computed(()=>_e({icon:o.iconFalse,iconOptions:t,name:"false"})),r=e.computed(()=>_e({icon:o.iconTrue,iconOptions:t,name:"true"}));return(c,u)=>l.value?(e.openBlock(),e.createBlock(e.unref(ce),{key:0,class:"v-inline-fields--boolean-icons fa-fw",color:c.iconTrueColor,icon:e.unref(r),size:"x-small",title:c.iconTrueTitle},null,8,["color","icon","title"])):(e.openBlock(),e.createBlock(e.unref(ce),{key:1,class:"v-inline-fields--boolean-icons fa-fw",color:c.iconFalseColor,icon:e.unref(a),size:"x-small",title:c.iconFalseTitle},null,8,["color","icon","title"]))}}),xn=n=>{const{str:o,unit:t="px"}=n;if(o!=null&&o!=="")return+o?`${Number(o)}${t}`:String(o)},ha=n=>{var a;const{modelValue:o,trueValue:t}=n,l=e.unref(o);return((a=l==null?void 0:l.toLowerCase)==null?void 0:a.call(l))==="true"||l==="1"||l=="1"||l===!0||l==t||l===t},ht=n=>{const{required:o,rules:t}=n;let{value:l}=n;l=e.unref(l);const a=[];let r=!1;if(o&&!l)return a.push("Field is required."),{errors:!0,results:a};if(t){for(const c of t){const u=(typeof c=="function"?c:()=>c)(l);u!==!0&&(typeof u=="string"?a.push(u):console.warn(`${u} is not a valid value. Rule functions must return boolean true or a string.`))}r=a.length>0}return{errors:r,results:a}},In=n=>{const{attrs:o,closeSiblings:t,fieldOnly:l,props:a,showField:r,timeOpened:c}=n;let u=c;return t&&!l&&(u=new Date),{settings:{...o,...a},showField:!e.unref(r),timeOpened:u}},co=n=>{const{length:o=0}=n;let{suffix:t,text:l}=n;return l=l.toString(),t=t||"...",l.length>o?`${l.substring(0,o)}${t}`:l};function ll(n){if(!n)return 100;if(n.toString().includes(".")){const o=100*Number(n);return o>=100?100:o}return Number(n)>=100?100:Number(n)}function al(n){let o=function(v){const p={AliceBlue:"#F0F8FF",AntiqueWhite:"#FAEBD7",Aqua:"#00FFFF",Aquamarine:"#7FFFD4",Azure:"#F0FFFF",Beige:"#F5F5DC",Bisque:"#FFE4C4",Black:"#000000",BlanchedAlmond:"#FFEBCD",Blue:"#0000FF",BlueViolet:"#8A2BE2",Brown:"#A52A2A",BurlyWood:"#DEB887",CadetBlue:"#5F9EA0",Chartreuse:"#7FFF00",Chocolate:"#D2691E",Coral:"#FF7F50",CornflowerBlue:"#6495ED",Cornsilk:"#FFF8DC",Crimson:"#DC143C",Cyan:"#00FFFF",DarkBlue:"#00008B",DarkCyan:"#008B8B",DarkGoldenRod:"#B8860B",DarkGray:"#A9A9A9",DarkGreen:"#006400",DarkGrey:"#A9A9A9",DarkKhaki:"#BDB76B",DarkMagenta:"#8B008B",DarkOliveGreen:"#556B2F",DarkOrange:"#FF8C00",DarkOrchid:"#9932CC",DarkRed:"#8B0000",DarkSalmon:"#E9967A",DarkSeaGreen:"#8FBC8F",DarkSlateBlue:"#483D8B",DarkSlateGray:"#2F4F4F",DarkSlateGrey:"#2F4F4F",DarkTurquoise:"#00CED1",DarkViolet:"#9400D3",DeepPink:"#FF1493",DeepSkyBlue:"#00BFFF",DimGray:"#696969",DimGrey:"#696969",DodgerBlue:"#1E90FF",FireBrick:"#B22222",FloralWhite:"#FFFAF0",ForestGreen:"#228B22",Fuchsia:"#FF00FF",Gainsboro:"#DCDCDC",GhostWhite:"#F8F8FF",Gold:"#FFD700",GoldenRod:"#DAA520",Gray:"#808080",Green:"#008000",GreenYellow:"#ADFF2F",Grey:"#808080",HoneyDew:"#F0FFF0",HotPink:"#FF69B4",IndianRed:"#CD5C5C",Indigo:"#4B0082",Ivory:"#FFFFF0",Khaki:"#F0E68C",Lavender:"#E6E6FA",LavenderBlush:"#FFF0F5",LawnGreen:"#7CFC00",LemonChiffon:"#FFFACD",LightBlue:"#ADD8E6",LightCoral:"#F08080",LightCyan:"#E0FFFF",LightGoldenRodYellow:"#FAFAD2",LightGray:"#D3D3D3",LightGreen:"#90EE90",LightGrey:"#D3D3D3",LightPink:"#FFB6C1",LightSalmon:"#FFA07A",LightSeaGreen:"#20B2AA",LightSkyBlue:"#87CEFA",LightSlateGray:"#778899",LightSlateGrey:"#778899",LightSteelBlue:"#B0C4DE",LightYellow:"#FFFFE0",Lime:"#00FF00",LimeGreen:"#32CD32",Linen:"#FAF0E6",Magenta:"#FF00FF",Maroon:"#800000",MediumAquaMarine:"#66CDAA",MediumBlue:"#0000CD",MediumOrchid:"#BA55D3",MediumPurple:"#9370DB",MediumSeaGreen:"#3CB371",MediumSlateBlue:"#7B68EE",MediumSpringGreen:"#00FA9A",MediumTurquoise:"#48D1CC",MediumVioletRed:"#C71585",MidnightBlue:"#191970",MintCream:"#F5FFFA",MistyRose:"#FFE4E1",Moccasin:"#FFE4B5",NavajoWhite:"#FFDEAD",Navy:"#000080",OldLace:"#FDF5E6",Olive:"#808000",OliveDrab:"#6B8E23",Orange:"#FFA500",OrangeRed:"#FF4500",Orchid:"#DA70D6",PaleGoldenRod:"#EEE8AA",PaleGreen:"#98FB98",PaleTurquoise:"#AFEEEE",PaleVioletRed:"#DB7093",PapayaWhip:"#FFEFD5",PeachPuff:"#FFDAB9",Peru:"#CD853F",Pink:"#FFC0CB",Plum:"#DDA0DD",PowderBlue:"#B0E0E6",Purple:"#800080",RebeccaPurple:"#663399",Red:"#FF0000",RosyBrown:"#BC8F8F",RoyalBlue:"#4169E1",SaddleBrown:"#8B4513",Salmon:"#FA8072",SandyBrown:"#F4A460",SeaGreen:"#2E8B57",SeaShell:"#FFF5EE",Sienna:"#A0522D",Silver:"#C0C0C0",SkyBlue:"#87CEEB",SlateBlue:"#6A5ACD",SlateGray:"#708090",SlateGrey:"#708090",Snow:"#FFFAFA",SpringGreen:"#00FF7F",SteelBlue:"#4682B4",Tan:"#D2B48C",Teal:"#008080",Thistle:"#D8BFD8",Tomato:"#FF6347",Turquoise:"#40E0D0",Violet:"#EE82EE",Wheat:"#F5DEB3",White:"#FFFFFF",WhiteSmoke:"#F5F5F5",Yellow:"#FFFF00",YellowGreen:"#9ACD32"};let f=v;return Object.entries(p).forEach(([y,g])=>{v.toLowerCase()!=y.toLowerCase()||(f=g)}),f}(n),t=0,l=0,a=0,r=100,c=0,u=0,s=0;if(o.substring(0,1)==="#")o=function(v){let p=v.replace("#","");p.length===3&&(p=p.split("").map(h=>h+h).join(""));const f=parseInt(p.substring(0,2),16),y=parseInt(p.substring(2,4),16),g=parseInt(p.substring(4,6),16);return[f,y,g,100]}(o);else if(o.includes("rgb"))o=[...o.matchAll(/[\d+.\d+]+/g)].map(Number);else if(o.includes("hsl"))return o=[...o.matchAll(/[\d+.\d+]+/g)].map(String),t=o[0],l=o[1],a=o[2],r=ll(o[3]),`${t} ${l}% ${a}% / ${r}%`;[c,u,s,r]=o,c/=255,u/=255,s/=255,r=ll(r);const i=Math.max(c,u,s),d=Math.min(c,u,s);if(i===null||!d===null||isNaN(i)||isNaN(d)){const v="0 0% 100% / 12%";return console.warn(`[VuetifyInlineFields: The "color" prop value using "${o}" doesn't exist. Using the value "hsl(${v})" in it's place.`),v}if(t=(i+d)/2,l=(i+d)/2,a=(i+d)/2,i==d)t=l=0;else{const v=i-d;switch(l=a>.5?v/(2-i-d):v/(i+d),i){case c:t=(u-s)/v+(u{if(function(l){return l==="transparent"||l==="none"||l==="inherit"||l==="currentColor"||l==="initial"||l==="unset"}(n))return n;if(function(l){return l.includes("--v-theme")}(n))return`rgb(var(${n}))`;const t=function(l,a){const r=a.global.current.value.colors;return Object.entries(r).find(([c])=>c===l)}(n,o);return t?`hsl(${al(t[1])})`:`hsl(${al(n)})`},po=n=>{const{underlineStyle:o,underlineWidth:t,color:l,error:a,theme:r,underlined:c}=n;let{underlineColor:u}=n;u=u||l;const s={"border-bottom-color":wi(u,r),"border-bottom-style":o,"border-bottom-width":t};return e.unref(a)&&(s["border-bottom-color"]="rgb(var(--v-theme-danger))"),c||(s["border-bottom"]="none"),s},Xe=n=>{const{cardMinWidth:o,cardOffsetX:t,cardOffsetY:l,cardWidth:a,field:r,name:c=""}=n,u=(d=>{const{cardOffsetX:v,cardOffsetY:p,field:f}=d;if(!f)return{bottom:0,height:0,left:0,right:0,top:0,width:0,x:0,y:0};const{x:y,y:g}=f.getBoundingClientRect(),{width:m,height:h}=f.getBoundingClientRect(),{right:B,bottom:F}=f.getBoundingClientRect();return{bottom:xn({str:F+Number(p)}),height:h,left:xn({str:0+Number(v)}),right:xn({str:B+Number(v)}),top:xn({str:2+Number(p)}),width:xn({str:m}),x:y,y:g}})({cardOffsetX:t,cardOffsetY:l,field:r});let s=o,i=a;return i||(i=c==="checkbox"?"fit-content":u.width),s||(s=c==="checkbox"?"fit-content":u.width),{left:u.left,top:u.top,width:i,zIndex:10}},Vn=["error","update","update:closeSiblingFields","update:model-value"],ki=["cancelButtonColor","cancelButtonSize","cancelButtonTitle","cancelButtonVariant","cancelIcon","cancelIconColor","closeSiblings","displayAppendIcon","displayAppendIconColor","displayAppendIconSize","displayAppendInnerIcon","displayAppendInnerIconColor","displayAppendInnerIconSize","displayPrependIcon","displayPrependIconColor","displayPrependIconSize","displayPrependInnerIcon","displayPrependInnerIconColor","displayPrependInnerIconSize","emptyText","fieldOnly","hideSaveIcon","item","loadingIcon","loadingIconColor","loadingWait","saveButtonColor","saveButtonSize","saveButtonTitle","saveButtonVariant","saveIcon","saveIconColor","tableField","truncateLength","truncateSuffix","underlineColor","underlineStyle","underlineWidth","underlined","valueColor"],Hn=n=>{let o=n;return o=Object.entries(o).filter(([t])=>!ki.includes(t)),Object.fromEntries(o)},xi={class:"v-selection-control__wrapper"},ba=e.defineComponent({__name:"VInlineCheckbox",props:e.mergeModels(e.mergeDefaults({density:{},falseIcon:{},trueIcon:{},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},falseValue:{type:[Boolean,String]},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},iconFalse:{},iconFalseColor:{},iconFalseTitle:{},iconTrue:{},iconTrueColor:{},iconTrueTitle:{},icons:{type:Boolean},item:{},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},trueValue:{type:[Boolean,String]},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{..._a}),{modelValue:{}}),emits:e.mergeModels([...Vn],["update:modelValue"]),setup(n,{emit:o}){const t=e.useModel(n,"modelValue"),l=e.useAttrs(),a=e.useSlots(),r=o,c=e.inject(Ue,{}),u=e.inject(Symbol.for("vuetify:icons")),s=Gt.useTheme(),i=n;let d=e.reactive({...l,...i,...c});const{cancelButtonColor:v,cancelButtonSize:p,cancelButtonTitle:f,cancelButtonVariant:y,cancelIcon:g,cancelIconColor:m,cardField:h,closeSiblings:B,color:F,fieldOnly:W,hideCancelIcon:P,hideDetails:O,loadingIcon:T,loadingIconColor:A,saveButtonColor:S,saveButtonSize:N,saveButtonTitle:C,saveButtonVariant:V,saveIcon:I,saveIconColor:$}=e.toRefs(d),x=e.computed(()=>i.disabled),_=e.computed(()=>i.loading),w=e.ref(!1),b=e.ref(!1),k=e.ref(null),z=e.computed(()=>Hn(d)),R=e.computed(()=>({...un,...i.cardProps}));e.watch(()=>_.value,(J,H)=>{!J&&H&&b.value&&me()});const G=e.computed(()=>_e({icon:i.trueIcon,iconOptions:u,name:"checkboxFalse"})),j=e.computed(()=>_e({icon:i.iconTrue,iconOptions:u,name:"checkboxTrue"})),E=e.computed(()=>t.value==d.trueValue),D=e.computed(()=>ha({modelValue:t,trueValue:d.trueValue})),L=e.computed(()=>cn({cell:d.cell&&!b.value,density:d.density,disabled:x.value,field:"v-checkbox",loading:_.value,loadingWait:d.loadingWait,tableField:d.tableField})),M=e.computed(()=>dn({cell:d.cell,cellUnderlineFullWidth:d.cellUnderlineFullWidth,density:d.density,field:"v-checkbox"})),q=sl({density:d.density}),X=e.computed(()=>pn({active:b.value,name:"checkbox"})),te=e.computed(()=>Ht("checkbox",d.valueColor,{error:w})),re=e.computed(()=>vn({name:"checkbox",showField:b.value})),ie=e.computed(()=>({})),Ce=e.computed(()=>po({color:d.color,error:w,theme:s,underlineColor:d.underlineColor,underlineStyle:d.underlineStyle,underlineWidth:d.underlineWidth,underlined:d.underlined})),fe=e.computed(()=>de.value);function pe(){w.value=!1,me()}const de=e.ref(),ge=e.ref(null),ve=e.ref("body"),be=Pa.useWindowSize();function me(){var H,ue;if(x.value||d.loadingWait&&_.value)return;de.value=Xe({cardMinWidth:(H=d.cardProps)==null?void 0:H.minWidth,cardOffsetX:d.cardOffsetX,cardOffsetY:d.cardOffsetY,cardWidth:(ue=d.cardProps)==null?void 0:ue.width,field:ge.value,name:"checkbox"});const J=In({attrs:l,closeSiblings:B.value,fieldOnly:d.fieldOnly,props:i,showField:b,timeOpened:k.value});d={...d,...J.settings},b.value=J.showField,k.value=J.timeOpened,K!==null&&B.value&&b.value&&!d.fieldOnly&&K.emit(J.timeOpened)}function oe(J){t.value=J,r("update",J),d.loadingWait||me()}let K,le;function Se(J){r("update:closeSiblingFields",k),b.value&&k.value!==J&&me()}return e.watch(()=>be,()=>{var J,H;de.value=Xe({cardMinWidth:(J=d.cardProps)==null?void 0:J.minWidth,cardOffsetX:d.cardOffsetX,cardOffsetY:d.cardOffsetY,cardWidth:(H=d.cardProps)==null?void 0:H.width,field:ge.value,name:"checkbox"})},{deep:!0}),B.value&&import("@vueuse/core").then(({useEventBus:J})=>{K=J(sn),le=K.on(Se)}),e.onUnmounted(()=>{le!==void 0&&K.off(Se)}),(J,H)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:ge,class:e.normalizeClass(e.unref(L)),style:e.normalizeStyle(e.unref(ie))},[!e.unref(b)&&!e.unref(W)||e.unref(h)?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(M)),onClick:H[2]||(H[2]=ue=>e.unref(d).cell?me():void 0)},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(q)),onClick:H[1]||(H[1]=ue=>e.unref(d).cell?void 0:me())},[e.createElementVNode("div",xi,[J.icons?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["v-inline-fields--boolean-icons-container",e.unref(te)]),style:e.normalizeStyle(e.unref(Ce))},[e.createVNode(ga,{modelValue:e.unref(D),"onUpdate:modelValue":H[0]||(H[0]=ue=>e.isRef(D)?D.value=ue:null),"icon-false":J.iconFalse,"icon-false-color":J.iconFalseColor,"icon-false-title":J.iconFalseTitle,"icon-true":J.iconTrue,"icon-true-color":J.iconTrueColor,"icon-true-title":J.iconTrueTitle},null,8,["modelValue","icon-false","icon-false-color","icon-false-title","icon-true","icon-true-color","icon-true-title"])],6)):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["d-inline-flex align-center justify-center",e.unref(te)]),style:e.normalizeStyle(e.unref(Ce))},e.toDisplayString(e.unref(E)),7))])],2)],2)):e.createCommentVNode("",!0),e.unref(b)||e.unref(W)||e.unref(h)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(X))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(h),to:e.unref(ve)},[e.createVNode(Sr,e.mergeProps(e.unref(z),{color:e.unref(F),density:e.unref(d).density,disabled:e.unref(_)||e.unref(x),error:e.unref(w),"false-icon":e.unref(G),"false-value":e.unref(d).falseValue,"hide-details":e.unref(O),label:e.unref(d).label,"model-value":e.unref(D),"true-icon":e.unref(j),"true-value":e.unref(d).trueValue,"onUpdate:modelValue":oe}),e.createSlots({_:2},[e.renderList(e.unref(a),(ue,ne)=>({name:ne,fn:e.withCtx(ye=>[e.renderSlot(J.$slots,ne,e.normalizeProps(e.guardReactiveProps({...ye})))])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(Cn,{"cancel-button-color":e.unref(v),"cancel-button-size":e.unref(p),"cancel-button-title":e.unref(f),"cancel-button-variant":e.unref(y),"cancel-icon":e.unref(g),"cancel-icon-color":e.unref(m),error:e.unref(w),"field-only":e.unref(W),"hide-cancel-icon":e.unref(P),"hide-save-icon":!0,loading:e.unref(_),"loading-icon":e.unref(T),"loading-icon-color":e.unref(A),"save-button-color":e.unref(S),"save-button-size":e.unref(N),"save-button-title":e.unref(C),"save-button-variant":e.unref(V),"save-icon":e.unref(I),"save-icon-color":e.unref($),onClose:pe,onSave:oe},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["color","density","disabled","error","false-icon","false-value","hide-details","label","model-value","true-icon","true-value"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(h)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(re)),style:e.normalizeStyle(e.unref(fe))},[e.createVNode(Sn,e.normalizeProps(e.guardReactiveProps(e.unref(R))),{default:e.withCtx(()=>[e.createVNode(Qe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:ve},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),bt=e.defineComponent({__name:"DisplayedValue",props:{color:{},displayAppendIcon:{},displayAppendIconColor:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayValue:{},empty:{type:Boolean},error:{type:Boolean},field:{},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},emits:["toggleField"],setup(n,{emit:o}){const t=o,l=n,a=e.useSlots(),r=Gt.useTheme(),c={displayValue:l.displayValue,empty:l.empty,error:l.error},u=e.computed(()=>Ht(l.field,l.valueColor,{empty:l.empty,error:l.error})),s=e.computed(()=>po({color:l.color,error:l.error,theme:r,underlineColor:l.underlineColor,underlineStyle:l.underlineStyle,underlineWidth:l.underlineWidth,underlined:l.underlined})),i=e.computed(()=>(p=>{const{underlineWidth:f}=p;return{borderBottom:`${f||"0px"} solid transparent`}})({underlineWidth:l.underlineWidth})),d=(p,f=!1)=>(y=>{const{inner:g=!1,position:m}=y;return{[`${Q}--display-icon`]:!g,[`${Q}--display-${m}-icon`]:!g,[`${Q}--display-${m}-inner-icon`]:g,"me-1":m==="prepend","ms-1":m==="append"}})({inner:f,position:p});function v(){t("toggleField")}return(p,f)=>(e.openBlock(),e.createElementBlock("div",{class:"v-inline-fields--display-wrapper",onClick:v},[p.displayPrependIcon||e.unref(a)["display.prepend"]?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(d("prepend")),style:e.normalizeStyle(e.unref(i))},[e.unref(a)["display.prepend"]?e.renderSlot(p.$slots,"display.prepend",e.normalizeProps(e.mergeProps({key:0},c))):(e.openBlock(),e.createBlock(ce,{key:1,color:p.displayPrependIconColor,icon:p.displayPrependIcon,size:"x-small"},null,8,["color","icon"]))],6)):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["d-inline-flex",e.unref(u)]),style:e.normalizeStyle(e.unref(s))},[p.displayPrependInnerIcon||e.unref(a)["display.prependInner"]?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(d("prepend",!0))},[e.unref(a)["display.prependInner"]?e.renderSlot(p.$slots,"display.prependInner",e.normalizeProps(e.mergeProps({key:0},c))):(e.openBlock(),e.createBlock(ce,{key:1,color:p.displayPrependInnerIconColor,icon:p.displayPrependInnerIcon,size:"x-small"},null,8,["color","icon"]))],2)):e.createCommentVNode("",!0),e.createTextVNode(" "+e.toDisplayString(p.displayValue)+" ",1),p.displayAppendInnerIcon||e.unref(a)["display.appendInner"]?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(d("append",!0))},[e.unref(a)["display.appendInner"]?e.renderSlot(p.$slots,"display.appendInner",e.normalizeProps(e.mergeProps({key:0},c))):(e.openBlock(),e.createBlock(ce,{key:1,color:p.displayAppendInnerIconColor,icon:p.displayAppendInnerIcon,size:"x-small"},null,8,["color","icon"]))],2)):e.createCommentVNode("",!0)],6),p.displayAppendIcon||e.unref(a)["display.append"]?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(d("append")),style:e.normalizeStyle(e.unref(i))},[e.unref(a)["display.append"]?e.renderSlot(p.$slots,"display.append",e.normalizeProps(e.mergeProps({key:0},c))):(e.openBlock(),e.createBlock(ce,{key:1,color:p.displayAppendIconColor,icon:p.displayAppendIcon,size:"x-small"},null,8,["color","icon"]))],6)):e.createCommentVNode("",!0)]))}}),Ca=e.defineComponent({__name:"VInlineCustomField",props:e.mergeModels(e.mergeDefaults({clearIcon:{},density:{},rules:{},variant:{},autofocus:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},item:{},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},truncateLength:{},truncateSuffix:{},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...il}),{modelValue:{}}),emits:e.mergeModels([...Vn],["update:modelValue"]),setup(n,{emit:o}){const t=e.useModel(n,"modelValue"),l=e.useAttrs(),a=e.useSlots(),r=o,c=e.inject(Ue,{}),u=e.inject(Symbol.for("vuetify:icons")),s=n;let i=e.reactive({...l,...s,...c});const{cancelButtonColor:d,cancelButtonSize:v,cancelButtonTitle:p,cancelButtonVariant:f,cancelIcon:y,cancelIconColor:g,cardField:m,closeSiblings:h,fieldOnly:B,hideCancelIcon:F,hideSaveIcon:W,loadingIcon:P,loadingIconColor:O,saveButtonColor:T,saveButtonSize:A,saveButtonTitle:S,saveButtonVariant:N,saveIcon:C,saveIconColor:V}=e.toRefs(i),I=e.computed(()=>s.disabled),$=e.computed(()=>s.loading),x=e.ref(!1),_=e.ref(!1),w=e.ref(!1),b=e.ref(null);let k=t.value;e.watch(()=>$.value,(K,le)=>{!K&&le&&w.value&&pe()});const z=e.computed(()=>t.value?(x.value=!1,i.truncateLength?co({length:i.truncateLength,suffix:i.truncateSuffix,text:t.value}):t.value):(x.value=!0,i.emptyText)),R=e.computed(()=>({...i,loading:$.value,modelValue:t.value,originalValue:k})),G=e.computed(()=>({color:i.color,displayAppendIcon:s.displayAppendIcon,displayAppendIconColor:s.displayAppendIconColor,displayAppendIconSize:s.displayAppendIconSize,displayAppendInnerIcon:s.displayAppendInnerIcon,displayAppendInnerIconColor:s.displayAppendInnerIconColor,displayAppendInnerIconSize:s.displayAppendInnerIconSize,displayPrependIcon:s.displayPrependIcon,displayPrependIconColor:s.displayPrependIconColor,displayPrependIconSize:s.displayPrependIconSize,displayPrependInnerIcon:s.displayPrependInnerIcon,displayPrependInnerIconColor:s.displayPrependInnerIconColor,displayPrependInnerIconSize:s.displayPrependInnerIconSize,displayValue:z.value,empty:x.value,error:_.value,field:"v-text-field",underlineColor:i.underlineColor,underlineStyle:i.underlineStyle,underlineWidth:i.underlineWidth,underlined:i.underlined,valueColor:i.valueColor})),j=e.computed(()=>({...un,...s.cardProps})),E=e.computed(()=>cn({cell:i.cell&&!w.value,density:i.density,disabled:I.value,field:"v-text-field",iconSet:u==null?void 0:u.defaultSet,loading:$.value,loadingWait:i.loadingWait,tableField:i.tableField,variant:i.variant})),D=e.computed(()=>dn({cell:i.cell,cellUnderlineFullWidth:i.cellUnderlineFullWidth,density:i.density,field:"v-text-field"})),L=vt({density:i.density,variant:i.variant}),M=e.computed(()=>pn({active:w.value,name:"text-field"})),q=e.computed(()=>vn({name:"custom-field",showField:w.value})),X=e.computed(()=>({})),te=e.computed(()=>ie.value);function re(){_.value=!1,t.value=k,pe()}const ie=e.ref(),Ce=e.ref(null),fe=e.ref("body");function pe(){var le,Se;if(I.value||i.loadingWait&&$.value)return;ie.value=Xe({cardMinWidth:(le=i.cardProps)==null?void 0:le.minWidth,cardOffsetX:i.cardOffsetX,cardOffsetY:i.cardOffsetY,cardWidth:(Se=i.cardProps)==null?void 0:Se.width,field:Ce.value});const K=In({attrs:l,closeSiblings:h.value,fieldOnly:i.fieldOnly,props:s,showField:w,timeOpened:b.value});i={...i,...K.settings},w.value=K.showField,b.value=K.timeOpened,be!==null&&h.value&&w.value&&!i.fieldOnly&&be.emit(K.timeOpened)}const de=e.ref();function ge(){const K=ht({required:i.required,rules:i.rules,value:t});return _.value=K.errors,de.value=K.results,K.results}function ve(){_.value?_.value=!0:(k=t.value,r("update",t.value),i.loadingWait||pe())}let be,me;function oe(K){r("update:closeSiblingFields",b),w.value&&b.value!==K&&re()}return e.watch(()=>w.value,()=>{w.value&&ge()}),e.watch(()=>t.value,()=>{w.value&&ge()}),h.value&&import("@vueuse/core").then(({useEventBus:K})=>{be=K(sn),me=be.on(oe)}),e.onUnmounted(()=>{me!==void 0&&be.off(oe)}),(K,le)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:Ce,class:e.normalizeClass(e.unref(E)),style:e.normalizeStyle(e.unref(X))},[!e.unref(w)&&!e.unref(i).fieldOnly||e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(D))},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(L))},[e.createVNode(bt,e.mergeProps(e.unref(G),{onToggleField:pe}),e.createSlots({_:2},[e.renderList(e.unref(a),(Se,J)=>({name:J,fn:e.withCtx(H=>[e.renderSlot(K.$slots,J,e.normalizeProps(e.guardReactiveProps({...H})))])}))]),1040)],2)],2)):e.createCommentVNode("",!0),e.unref(w)||e.unref(i).fieldOnly||e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["d-flex align-center py-2",e.unref(M)])},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(m),to:e.unref(fe)},[e.renderSlot(K.$slots,"default",e.normalizeProps(e.guardReactiveProps(e.unref(R)))),e.createVNode(Cn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(v),"cancel-button-title":e.unref(p),"cancel-button-variant":e.unref(f),"cancel-icon":e.unref(y),"cancel-icon-color":e.unref(g),error:e.unref(_),"field-only":e.unref(B),"hide-cancel-icon":e.unref(F),"hide-save-icon":e.unref(W),loading:e.unref($),"loading-icon":e.unref(P),"loading-icon-color":e.unref(O),"save-button-color":e.unref(T),"save-button-size":e.unref(A),"save-button-title":e.unref(S),"save-button-variant":e.unref(N),"save-icon":e.unref(C),"save-icon-color":e.unref(V),onClose:re,onSave:ve},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","hide-save-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(q)),style:e.normalizeStyle(e.unref(te))},[e.createVNode(Sn,e.normalizeProps(e.guardReactiveProps(e.unref(j))),{default:e.withCtx(()=>[e.createVNode(Qe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:fe},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),Sa=((n,o)=>{const t=n.__vccOpts||n;for(const[l,a]of o)t[l]=a;return t})(e.defineComponent({__name:"VInlineSelect",props:e.mergeModels(e.mergeDefaults({clearIcon:{},clearable:{},density:{},hideSelected:{},itemTitle:{},itemValue:{},items:{},menu:{},rules:{},variant:{},autofocus:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},item:{},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...Ea}),{modelValue:{}}),emits:e.mergeModels([...Vn],["update:modelValue"]),setup(n,{emit:o}){const t=e.useModel(n,"modelValue"),l=e.useAttrs(),a=e.useSlots(),r=o,c=e.inject(Ue,{}),u=e.inject(Symbol.for("vuetify:icons")),s=n;let i=e.reactive({...l,...s,...c});const{cancelButtonColor:d,cancelButtonSize:v,cancelButtonTitle:p,cancelButtonVariant:f,cancelIcon:y,cancelIconColor:g,cardField:m,closeSiblings:h,color:B,fieldOnly:F,hideCancelIcon:W,hideDetails:P,hideSaveIcon:O,loadingIcon:T,loadingIconColor:A,saveButtonColor:S,saveButtonSize:N,saveButtonTitle:C,saveButtonVariant:V,saveIcon:I,saveIconColor:$,valueColor:x}=e.toRefs(i),_=e.computed(()=>s.disabled),w=e.computed(()=>s.loading),b=e.ref(!1),k=e.ref(!1),z=e.ref(),R=e.ref(!1),G=e.ref(null);let j=t.value;e.watch(()=>w.value,(ne,ye)=>{!ne&&ye&&R.value&&me()});const E=e.computed(()=>_e({icon:s.clearIcon,iconOptions:u,name:"clear"})),D=e.computed(()=>t.value&&t.value[i.itemTitle]?(b.value=!1,t.value[i.itemTitle]):t.value?t.value:(b.value=!0,i.emptyText)),L=e.computed(()=>Hn(i)),M=e.computed(()=>({color:i.color,displayAppendIcon:s.displayAppendIcon,displayAppendIconColor:s.displayAppendIconColor,displayAppendIconSize:s.displayAppendIconSize,displayAppendInnerIcon:s.displayAppendInnerIcon,displayAppendInnerIconColor:s.displayAppendInnerIconColor,displayAppendInnerIconSize:s.displayAppendInnerIconSize,displayPrependIcon:s.displayPrependIcon,displayPrependIconColor:s.displayPrependIconColor,displayPrependIconSize:s.displayPrependIconSize,displayPrependInnerIcon:s.displayPrependInnerIcon,displayPrependInnerIconColor:s.displayPrependInnerIconColor,displayPrependInnerIconSize:s.displayPrependInnerIconSize,displayValue:D.value,empty:b.value,error:k.value,field:"v-text-field",underlineColor:i.underlineColor,underlineStyle:i.underlineStyle,underlineWidth:i.underlineWidth,underlined:i.underlined,valueColor:x.value})),q=e.computed(()=>({...un,...s.cardProps}));e.watchEffect(()=>{z.value=i.items||[]});const X=e.computed(()=>cn({cell:i.cell&&!R.value,density:i.density,disabled:_.value,field:"v-select",iconSet:u==null?void 0:u.defaultSet,loading:w.value,loadingWait:i.loadingWait,tableField:i.tableField,variant:i.variant})),te=e.computed(()=>dn({cell:i.cell,cellUnderlineFullWidth:i.cellUnderlineFullWidth,density:i.density,field:"v-select"})),re=vt({density:i.density,variant:i.variant}),ie=e.computed(()=>pn({active:R.value,name:"select"})),Ce=e.computed(()=>vn({name:"select",showField:R.value})),fe=e.computed(()=>({})),pe=e.computed(()=>ge.value);function de(){k.value=!1,t.value=j,me()}const ge=e.ref(),ve=e.ref(null),be=e.ref("body");function me(){var ye,we;if(_.value||i.loadingWait&&w.value)return;ge.value=Xe({cardMinWidth:(ye=i.cardProps)==null?void 0:ye.minWidth,cardOffsetX:i.cardOffsetX,cardOffsetY:i.cardOffsetY,cardWidth:(we=i.cardProps)==null?void 0:we.width,field:ve.value});const ne=In({attrs:l,closeSiblings:h.value,fieldOnly:i.fieldOnly,props:s,showField:R,timeOpened:G.value});i={...i,...ne.settings},R.value=ne.showField,G.value=ne.timeOpened,J!==null&&h.value&&R.value&&!i.fieldOnly&&J.emit(ne.timeOpened)}const oe=e.ref(),K=e.computed(()=>oe.value);function le(){const ne=ht({required:i.required,rules:i.rules,value:t});return k.value=ne.errors,oe.value=ne.results,ne.results}function Se(){j=t.value,r("update",t.value),i.loadingWait||me()}let J,H;function ue(ne){r("update:closeSiblingFields",G),R.value&&G.value!==ne&&de()}return e.watch(()=>R.value,()=>{R.value&&le()}),e.watch(()=>t.value,()=>{R.value&&le()}),h.value&&import("@vueuse/core").then(({useEventBus:ne})=>{J=ne(sn),H=J.on(ue)}),e.onUnmounted(()=>{H!==void 0&&J.off(ue)}),(ne,ye)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:ve,class:e.normalizeClass(e.unref(X)),style:e.normalizeStyle(e.unref(fe))},[!e.unref(R)&&!e.unref(i).fieldOnly||e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(te))},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(re))},[e.createVNode(bt,e.mergeProps(e.unref(M),{onToggleField:me}),e.createSlots({_:2},[e.renderList(e.unref(a),(we,Bn)=>({name:Bn,fn:e.withCtx(Ct=>[e.renderSlot(ne.$slots,Bn,e.normalizeProps(e.guardReactiveProps({...Ct})),void 0,!0)])}))]),1040)],2)],2)):e.createCommentVNode("",!0),e.unref(R)||e.unref(i).fieldOnly||e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(ie))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(m),to:e.unref(be)},[e.createVNode(fi,e.mergeProps(e.unref(L),{modelValue:t.value,"onUpdate:modelValue":ye[0]||(ye[0]=we=>t.value=we),autofocus:!e.unref(i).fieldOnly||e.unref(i).autofocus,"clear-icon":e.unref(E),clearable:e.unref(i).clearable,color:e.unref(B),density:e.unref(i).density,disabled:e.unref(w)||e.unref(_),error:e.unref(k),"error-messages":e.unref(K),"hide-details":e.unref(P),"hide-selected":e.unref(i).hideSelected,"item-title":e.unref(i).itemTitle,"item-value":e.unref(i).itemValue,items:e.unref(z),label:e.unref(i).label,loading:e.unref(w),menu:e.unref(i).menu&&!e.unref(i).fieldOnly&&e.unref(R),variant:e.unref(i).variant,width:"100%",onKeyup:e.withKeys(de,["esc"])}),e.createSlots({_:2},[e.renderList(e.unref(a),(we,Bn)=>({name:Bn,fn:e.withCtx(Ct=>[e.renderSlot(ne.$slots,Bn,e.normalizeProps(e.guardReactiveProps({...Ct})),void 0,!0)])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(Cn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(v),"cancel-button-title":e.unref(p),"cancel-button-variant":e.unref(f),"cancel-icon":e.unref(y),"cancel-icon-color":e.unref(g),error:e.unref(k),"field-only":e.unref(F),"hide-cancel-icon":e.unref(W),"hide-save-icon":e.unref(O),loading:e.unref(w),"loading-icon":e.unref(T),"loading-icon-color":e.unref(A),"save-button-color":e.unref(S),"save-button-size":e.unref(N),"save-button-title":e.unref(C),"save-button-variant":e.unref(V),"save-icon":e.unref(I),"save-icon-color":e.unref($),onClose:de,onSave:Se},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","hide-save-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["modelValue","autofocus","clear-icon","clearable","color","density","disabled","error","error-messages","hide-details","hide-selected","item-title","item-value","items","label","loading","menu","variant"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(Ce)),style:e.normalizeStyle(e.unref(pe))},[e.createVNode(Sn,e.normalizeProps(e.guardReactiveProps(e.unref(q))),{default:e.withCtx(()=>[e.createVNode(Qe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:be},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),[["__scopeId","data-v-bf7fbbc3"]]),Fi={class:"v-selection-control__wrapper"},Ia=e.defineComponent({__name:"VInlineSwitch",props:e.mergeModels(e.mergeDefaults({density:{},falseIcon:{},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},falseValue:{type:[Boolean,String]},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},iconFalse:{},iconFalseColor:{},iconFalseTitle:{},iconTrue:{},iconTrueColor:{},iconTrueTitle:{},icons:{type:Boolean},item:{},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},trueValue:{type:[Boolean,String]},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...Oa}),{modelValue:{}}),emits:e.mergeModels([...Vn],["update:modelValue"]),setup(n,{emit:o}){const t=e.useModel(n,"modelValue"),l=e.useAttrs(),a=e.useSlots(),r=o,c=e.inject(Ue,{}),u=Gt.useTheme(),s=n;let i=e.reactive({...l,...s,...c});const{cancelButtonColor:d,cancelButtonSize:v,cancelButtonTitle:p,cancelButtonVariant:f,cancelIcon:y,cancelIconColor:g,cardField:m,closeSiblings:h,color:B,fieldOnly:F,hideCancelIcon:W,hideDetails:P,loadingIcon:O,loadingIconColor:T,saveButtonColor:A,saveButtonSize:S,saveButtonTitle:N,saveButtonVariant:C,saveIcon:V,saveIconColor:I}=e.toRefs(i),$=e.computed(()=>s.disabled),x=e.computed(()=>s.loading),_=e.ref(!1),w=e.ref(!1),b=e.ref(null),k=e.computed(()=>Hn(i)),z=e.computed(()=>({...un,...s.cardProps}));e.watch(()=>x.value,(oe,K)=>{!oe&&K&&w.value&&de()});const R=e.computed(()=>t.value==i.trueValue),G=e.computed(()=>ha({modelValue:t,trueValue:i.trueValue})),j=e.computed(()=>cn({cell:i.cell&&!w.value,density:i.density,disabled:$.value,field:"v-switch",loading:x.value,loadingWait:i.loadingWait,tableField:i.tableField})),E=e.computed(()=>dn({cell:i.cell,cellUnderlineFullWidth:i.cellUnderlineFullWidth,density:i.density,field:"v-switch"})),D=sl({density:i.density}),L=e.computed(()=>pn({active:w.value,name:"switch"})),M=e.computed(()=>Ht("switch",i.valueColor,{error:_})),q=e.computed(()=>vn({name:"switch",showField:w.value})),X=e.computed(()=>({})),te=e.computed(()=>po({color:i.color,error:_,theme:u,underlineColor:i.underlineColor,underlineStyle:i.underlineStyle,underlineWidth:i.underlineWidth,underlined:i.underlined})),re=e.computed(()=>Ce.value);function ie(){_.value=!1,de()}const Ce=e.ref(),fe=e.ref(null),pe=e.ref("body");function de(){var K,le;if($.value||i.loadingWait&&x.value)return;Ce.value=Xe({cardMinWidth:(K=i.cardProps)==null?void 0:K.minWidth,cardOffsetX:i.cardOffsetX,cardOffsetY:i.cardOffsetY,cardWidth:(le=i.cardProps)==null?void 0:le.width,field:fe.value});const oe=In({attrs:l,closeSiblings:h.value,fieldOnly:i.fieldOnly,props:s,showField:w.value,timeOpened:b.value});i={...i,...oe.settings},w.value=oe.showField,b.value=oe.timeOpened,ve!==null&&h.value&&w.value&&!i.fieldOnly&&ve.emit(oe.timeOpened)}function ge(oe){t.value=oe,r("update",oe),i.loadingWait||de()}let ve,be;function me(oe){r("update:closeSiblingFields",b),w.value&&b.value!==oe&&de()}return h.value&&import("@vueuse/core").then(({useEventBus:oe})=>{ve=oe(sn),be=ve.on(me)}),e.onUnmounted(()=>{be!==void 0&&ve.off(me)}),(oe,K)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:fe,class:e.normalizeClass(e.unref(j)),style:e.normalizeStyle(e.unref(X))},[!e.unref(w)&&!e.unref(i).fieldOnly||e.unref(i).cardField?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(E)),onClick:K[2]||(K[2]=le=>e.unref(i).cell?de():void 0)},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(D)),onClick:K[1]||(K[1]=le=>e.unref(i).cell?void 0:de())},[e.createElementVNode("div",Fi,[oe.icons?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["v-inline-fields--boolean-icons-container",e.unref(M)]),style:e.normalizeStyle(e.unref(te))},[e.createVNode(ga,{modelValue:e.unref(G),"onUpdate:modelValue":K[0]||(K[0]=le=>e.isRef(G)?G.value=le:null),"icon-false":e.unref(i).iconFalse,"icon-false-color":e.unref(i).iconFalseColor,"icon-false-title":e.unref(i).iconFalseTitle,"icon-true":e.unref(i).iconTrue,"icon-true-color":e.unref(i).iconTrueColor,"icon-true-title":e.unref(i).iconTrueTitle},null,8,["modelValue","icon-false","icon-false-color","icon-false-title","icon-true","icon-true-color","icon-true-title"])],6)):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["d-inline-flex align-center justify-center",e.unref(M)]),style:e.normalizeStyle(e.unref(te))},e.toDisplayString(e.unref(R)),7))])],2)],2)):e.createCommentVNode("",!0),e.unref(w)||e.unref(i).fieldOnly||e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(L))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(m),to:e.unref(pe)},[e.createVNode(Ii,e.mergeProps(e.unref(k),{color:e.unref(B),density:e.unref(i).density,disabled:e.unref(x)||e.unref($),error:e.unref(_),"false-icon":e.unref(i).falseIcon,"false-value":e.unref(i).falseValue,"hide-details":e.unref(P),label:e.unref(i).label,loading:e.unref(x),"model-value":e.unref(G),"true-value":e.unref(i).trueValue,"onUpdate:modelValue":ge}),e.createSlots({_:2},[e.renderList(e.unref(a),(le,Se)=>({name:Se,fn:e.withCtx(J=>[e.renderSlot(oe.$slots,Se,e.normalizeProps(e.guardReactiveProps({...J})))])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(Cn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(v),"cancel-button-title":e.unref(p),"cancel-button-variant":e.unref(f),"cancel-icon":e.unref(y),"cancel-icon-color":e.unref(g),class:"ms-3",error:e.unref(_),"field-only":e.unref(F),"hide-cancel-icon":e.unref(W),"hide-save-icon":!0,loading:e.unref(x),"loading-icon":e.unref(O),"loading-icon-color":e.unref(T),"save-button-color":e.unref(A),"save-button-size":e.unref(S),"save-button-title":e.unref(N),"save-button-variant":e.unref(C),"save-icon":e.unref(V),"save-icon-color":e.unref(I),onClose:ie,onSave:ge},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["color","density","disabled","error","false-icon","false-value","hide-details","label","loading","model-value","true-value"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(q)),style:e.normalizeStyle(e.unref(re))},[e.createVNode(Sn,e.normalizeProps(e.guardReactiveProps(e.unref(z))),{default:e.withCtx(()=>[e.createVNode(Qe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:pe},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),Va=e.defineComponent({__name:"VInlineTextField",props:e.mergeModels(e.mergeDefaults({clearIcon:{},density:{},rules:{},variant:{},autofocus:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},item:{},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},truncateLength:{},truncateSuffix:{},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...il}),{modelValue:{}}),emits:e.mergeModels([...Vn],["update:modelValue"]),setup(n,{emit:o}){const t=e.useModel(n,"modelValue"),l=e.useAttrs(),a=e.useSlots(),r=o,c=e.inject(Ue,{}),u=e.inject(Symbol.for("vuetify:icons")),s=n;let i=e.reactive({...l,...s,...c});const{cancelButtonColor:d,cancelButtonSize:v,cancelButtonTitle:p,cancelButtonVariant:f,cancelIcon:y,cancelIconColor:g,cardField:m,closeSiblings:h,color:B,fieldOnly:F,hideCancelIcon:W,hideDetails:P,hideSaveIcon:O,loadingIcon:T,loadingIconColor:A,saveButtonColor:S,saveButtonSize:N,saveButtonTitle:C,saveButtonVariant:V,saveIcon:I,saveIconColor:$}=e.toRefs(i),x=e.computed(()=>s.disabled),_=e.computed(()=>s.loading),w=e.ref(!1),b=e.ref(!1),k=e.ref(!1),z=e.ref(null);let R=t.value;e.watch(()=>_.value,(H,ue)=>{!H&&ue&&k.value&&ve()});const G=e.computed(()=>_e({icon:s.clearIcon,iconOptions:u,name:"clear"})),j=e.computed(()=>t.value?(w.value=!1,i.truncateLength?co({length:i.truncateLength,suffix:i.truncateSuffix,text:t.value}):t.value):(w.value=!0,i.emptyText)),E=e.computed(()=>Hn(i)),D=e.computed(()=>({color:i.color,displayAppendIcon:s.displayAppendIcon,displayAppendIconColor:s.displayAppendIconColor,displayAppendIconSize:s.displayAppendIconSize,displayAppendInnerIcon:s.displayAppendInnerIcon,displayAppendInnerIconColor:s.displayAppendInnerIconColor,displayAppendInnerIconSize:s.displayAppendInnerIconSize,displayPrependIcon:s.displayPrependIcon,displayPrependIconColor:s.displayPrependIconColor,displayPrependIconSize:s.displayPrependIconSize,displayPrependInnerIcon:s.displayPrependInnerIcon,displayPrependInnerIconColor:s.displayPrependInnerIconColor,displayPrependInnerIconSize:s.displayPrependInnerIconSize,displayValue:j.value,empty:w.value,error:b.value,field:"v-text-field",underlineColor:i.underlineColor,underlineStyle:i.underlineStyle,underlineWidth:i.underlineWidth,underlined:i.underlined,valueColor:i.valueColor})),L=e.computed(()=>({...un,...s.cardProps})),M=e.computed(()=>cn({cell:i.cell&&!k.value,density:i.density,disabled:x.value,field:"v-text-field",iconSet:u==null?void 0:u.defaultSet,loading:_.value,loadingWait:i.loadingWait,tableField:i.tableField,variant:i.variant})),q=e.computed(()=>dn({cell:i.cell,cellUnderlineFullWidth:i.cellUnderlineFullWidth,density:i.density,field:"v-text-field"})),X=vt({density:i.density,variant:i.variant}),te=e.computed(()=>pn({active:k.value,name:"text-field"})),re=e.computed(()=>vn({name:"text-field",showField:k.value})),ie=e.computed(()=>({})),Ce=e.computed(()=>pe.value);function fe(){b.value=!1,t.value=R,ve()}const pe=e.ref(),de=e.ref(null),ge=e.ref("body");function ve(){var ue,ne;if(x.value||i.loadingWait&&_.value)return;pe.value=Xe({cardMinWidth:(ue=i.cardProps)==null?void 0:ue.minWidth,cardOffsetX:i.cardOffsetX,cardOffsetY:i.cardOffsetY,cardWidth:(ne=i.cardProps)==null?void 0:ne.width,field:de.value});const H=In({attrs:l,closeSiblings:h.value,fieldOnly:i.fieldOnly,props:s,showField:k,timeOpened:z.value});i={...i,...H.settings},k.value=H.showField,z.value=H.timeOpened,le!==null&&h.value&&k.value&&!i.fieldOnly&&le.emit(H.timeOpened)}const be=e.ref(),me=e.computed(()=>be.value);function oe(){const H=ht({required:i.required,rules:i.rules,value:t});return b.value=H.errors,be.value=H.results,H.results}function K(){b.value?b.value=!0:(R=t.value,r("update",t.value),i.loadingWait||ve())}let le,Se;function J(H){r("update:closeSiblingFields",z),k.value&&z.value!==H&&fe()}return e.watch(()=>k.value,()=>{k.value&&oe()}),e.watch(()=>t.value,()=>{k.value&&oe()}),h.value&&import("@vueuse/core").then(({useEventBus:H})=>{le=H(sn),Se=le.on(J)}),e.onUnmounted(()=>{Se!==void 0&&le.off(J)}),(H,ue)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:de,class:e.normalizeClass(e.unref(M)),style:e.normalizeStyle(e.unref(ie))},[!e.unref(k)&&!e.unref(i).fieldOnly||e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(q))},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(X))},[e.createVNode(bt,e.mergeProps(e.unref(D),{onToggleField:ve}),e.createSlots({_:2},[e.renderList(e.unref(a),(ne,ye)=>({name:ye,fn:e.withCtx(we=>[e.renderSlot(H.$slots,ye,e.normalizeProps(e.guardReactiveProps({...we})))])}))]),1040)],2)],2)):e.createCommentVNode("",!0),e.unref(k)||e.unref(i).fieldOnly||e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(te))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(m),to:e.unref(ge)},[e.createVNode(Ut,e.mergeProps(e.unref(E),{modelValue:t.value,"onUpdate:modelValue":ue[0]||(ue[0]=ne=>t.value=ne),autofocus:!e.unref(i).fieldOnly||e.unref(i).autofocus,"clear-icon":e.unref(G),color:e.unref(B),density:e.unref(i).density,disabled:e.unref(_)||e.unref(x),error:e.unref(b),"error-messages":e.unref(me),"hide-details":e.unref(P),label:e.unref(i).label,loading:e.unref(_),variant:e.unref(i).variant,width:"100%",onKeyup:[e.withKeys(K,["enter"]),e.withKeys(fe,["esc"])]}),e.createSlots({_:2},[e.renderList(e.unref(a),(ne,ye)=>({name:ye,fn:e.withCtx(we=>[e.renderSlot(H.$slots,ye,e.normalizeProps(e.guardReactiveProps({...we})))])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(Cn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(v),"cancel-button-title":e.unref(p),"cancel-button-variant":e.unref(f),"cancel-icon":e.unref(y),"cancel-icon-color":e.unref(g),error:e.unref(b),"field-only":e.unref(F),"hide-cancel-icon":e.unref(W),"hide-save-icon":e.unref(O),loading:e.unref(_),"loading-icon":e.unref(T),"loading-icon-color":e.unref(A),"save-button-color":e.unref(S),"save-button-size":e.unref(N),"save-button-title":e.unref(C),"save-button-variant":e.unref(V),"save-icon":e.unref(I),"save-icon-color":e.unref($),onClose:fe,onSave:K},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","hide-save-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["modelValue","autofocus","clear-icon","color","density","disabled","error","error-messages","hide-details","label","loading","variant"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(re)),style:e.normalizeStyle(e.unref(Ce))},[e.createVNode(Sn,e.normalizeProps(e.guardReactiveProps(e.unref(L))),{default:e.withCtx(()=>[e.createVNode(Qe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:ge},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),Ba=e.defineComponent({__name:"VInlineTextarea",props:e.mergeModels(e.mergeDefaults({autoGrow:{},clearIcon:{},density:{},rows:{},rules:{},variant:{},autofocus:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},item:{},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},truncateLength:{},truncateSuffix:{},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...za}),{modelValue:{}}),emits:e.mergeModels([...Vn],["update:modelValue"]),setup(n,{emit:o}){const t=e.useModel(n,"modelValue"),l=e.useAttrs(),a=e.useSlots(),r=o,c=e.inject(Ue,{}),u=e.inject(Symbol.for("vuetify:icons")),s=n;let i=e.reactive({...l,...s,...c});const{cancelButtonColor:d,cancelButtonSize:v,cancelButtonTitle:p,cancelButtonVariant:f,cancelIcon:y,cancelIconColor:g,cardField:m,closeSiblings:h,color:B,fieldOnly:F,hideCancelIcon:W,hideDetails:P,hideSaveIcon:O,loadingIcon:T,loadingIconColor:A,saveButtonColor:S,saveButtonSize:N,saveButtonTitle:C,saveButtonVariant:V,saveIcon:I,saveIconColor:$}=e.toRefs(i),x=e.computed(()=>s.disabled),_=e.computed(()=>s.loading),w=e.ref(!1),b=e.ref(!1),k=e.ref(!1),z=e.ref(null);let R=t.value;e.watch(()=>_.value,(H,ue)=>{!H&&ue&&k.value&&ve()});const G=e.computed(()=>_e({icon:s.clearIcon,iconOptions:u,name:"clear"})),j=e.computed(()=>t.value?(w.value=!1,i.truncateLength?co({length:i.truncateLength,suffix:i.truncateSuffix,text:t.value}):t.value):(w.value=!0,i.emptyText)),E=e.computed(()=>Hn(i)),D=e.computed(()=>({color:i.color,displayAppendIcon:s.displayAppendIcon,displayAppendIconColor:s.displayAppendIconColor,displayAppendIconSize:s.displayAppendIconSize,displayAppendInnerIcon:s.displayAppendInnerIcon,displayAppendInnerIconColor:s.displayAppendInnerIconColor,displayAppendInnerIconSize:s.displayAppendInnerIconSize,displayPrependIcon:s.displayPrependIcon,displayPrependIconColor:s.displayPrependIconColor,displayPrependIconSize:s.displayPrependIconSize,displayPrependInnerIcon:s.displayPrependInnerIcon,displayPrependInnerIconColor:s.displayPrependInnerIconColor,displayPrependInnerIconSize:s.displayPrependInnerIconSize,displayValue:j.value,empty:w.value,error:b.value,field:"v-text-field",underlineColor:i.underlineColor,underlineStyle:i.underlineStyle,underlineWidth:i.underlineWidth,underlined:i.underlined,valueColor:i.valueColor})),L=e.computed(()=>({...un,...s.cardProps})),M=e.computed(()=>cn({cell:i.cell&&!k.value,density:i.density,disabled:x.value,field:"v-textarea",iconSet:u==null?void 0:u.defaultSet,loading:_.value,loadingWait:i.loadingWait,tableField:i.tableField,variant:i.variant})),q=e.computed(()=>dn({cell:i.cell,cellUnderlineFullWidth:i.cellUnderlineFullWidth,density:i.density,field:"v-textarea"})),X=vt({density:i.density,variant:i.variant}),te=e.computed(()=>pn({active:k.value,name:"textarea"})),re=e.computed(()=>vn({name:"textarea",showField:k.value})),ie=e.computed(()=>({})),Ce=e.computed(()=>pe.value);function fe(){b.value=!1,t.value=R,ve()}const pe=e.ref(),de=e.ref(null),ge=e.ref("body");function ve(){var ue,ne;if(x.value||i.loadingWait&&_.value)return;pe.value=Xe({cardMinWidth:(ue=i.cardProps)==null?void 0:ue.minWidth,cardOffsetX:i.cardOffsetX,cardOffsetY:i.cardOffsetY,cardWidth:(ne=i.cardProps)==null?void 0:ne.width,field:de.value});const H=In({attrs:l,closeSiblings:h.value,fieldOnly:i.fieldOnly,props:s,showField:k,timeOpened:z.value});i={...i,...H.settings},k.value=H.showField,z.value=H.timeOpened,le!==null&&h.value&&k.value&&!i.fieldOnly&&le.emit(H.timeOpened)}const be=e.ref(),me=e.computed(()=>be.value);function oe(){const H=ht({required:i.required,rules:i.rules,value:t});return b.value=H.errors,be.value=H.results,H.results}function K(){R=t.value,r("update",t.value),i.loadingWait||ve()}let le,Se;function J(H){r("update:closeSiblingFields",z),k.value&&z.value!==H&&fe()}return e.watch(()=>k.value,()=>{k.value&&oe()}),e.watch(()=>t.value,()=>{k.value&&oe()}),h.value&&import("@vueuse/core").then(({useEventBus:H})=>{le=H(sn),Se=le.on(J)}),e.onUnmounted(()=>{Se!==void 0&&le.off(J)}),(H,ue)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:de,class:e.normalizeClass(e.unref(M)),style:e.normalizeStyle(e.unref(ie))},[!e.unref(k)&&!e.unref(i).fieldOnly||e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(q))},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(X))},[e.createVNode(bt,e.mergeProps(e.unref(D),{onToggleField:ve}),e.createSlots({_:2},[e.renderList(e.unref(a),(ne,ye)=>({name:ye,fn:e.withCtx(we=>[e.renderSlot(H.$slots,ye,e.normalizeProps(e.guardReactiveProps({...we})))])}))]),1040)],2)],2)):e.createCommentVNode("",!0),e.unref(k)||e.unref(i).fieldOnly||e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(te))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(m),to:e.unref(ge)},[e.createVNode(Bi,e.mergeProps(e.unref(E),{modelValue:t.value,"onUpdate:modelValue":ue[0]||(ue[0]=ne=>t.value=ne),"auto-grow":e.unref(i).autoGrow,autofocus:!e.unref(i).fieldOnly||e.unref(i).autofocus,"clear-icon":e.unref(G),color:e.unref(B),density:e.unref(i).density,disabled:e.unref(_)||e.unref(x),error:e.unref(b),"error-messages":e.unref(me),"hide-details":e.unref(P),label:e.unref(i).label,loading:e.unref(_),rows:e.unref(i).rows,variant:e.unref(i).variant,width:"100%",onKeyup:e.withKeys(fe,["esc"])}),e.createSlots({_:2},[e.renderList(e.unref(a),(ne,ye)=>({name:ye,fn:e.withCtx(we=>[e.renderSlot(H.$slots,ye,e.normalizeProps(e.guardReactiveProps({...we})))])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(Cn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(v),"cancel-button-title":e.unref(p),"cancel-button-variant":e.unref(f),"cancel-icon":e.unref(y),"cancel-icon-color":e.unref(g),error:e.unref(b),"field-only":e.unref(F),"hide-cancel-icon":e.unref(W),"hide-save-icon":e.unref(O),loading:e.unref(_),"loading-icon":e.unref(T),"loading-icon-color":e.unref(A),"save-button-color":e.unref(S),"save-button-size":e.unref(N),"save-button-title":e.unref(C),"save-button-variant":e.unref(V),"save-icon":e.unref(I),"save-icon-color":e.unref($),onClose:fe,onSave:K},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","hide-save-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["modelValue","auto-grow","autofocus","clear-icon","color","density","disabled","error","error-messages","hide-details","label","loading","rows","variant"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(m)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(re)),style:e.normalizeStyle(e.unref(Ce))},[e.createVNode(Sn,e.normalizeProps(e.guardReactiveProps(e.unref(L))),{default:e.withCtx(()=>[e.createVNode(Qe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:ge},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),At=Object.freeze(Object.defineProperty({__proto__:null,VInlineCheckbox:ba,VInlineCustomField:Ca,VInlineSelect:Sa,VInlineSwitch:Ia,VInlineTextField:Va,VInlineTextarea:Ba},Symbol.toStringTag,{value:"Module"})),Ue=Symbol();exports.VInlineCheckbox=ba,exports.VInlineCustomField=Ca,exports.VInlineSelect=Sa,exports.VInlineSwitch=Ia,exports.VInlineTextField=Va,exports.VInlineTextarea=Ba,exports.createVInlineFields=function(n={}){return{install:o=>{o.provide(Ue,n);for(const t in At)o.component(t,At[t])}}},exports.default=At,exports.globalOptions=Ue; -(function(){"use strict";try{if(typeof document<"u"){var i=document.createElement("style");i.appendChild(document.createTextNode(":root{--v-inline-fields-top-padding-compact: 13px;--v-inline-fields-top-padding-comfortable: 17px;--v-inline-fields-top-padding-default: 21px;--v-inline-fields-input-height: 24px;--v-inline-fields-density-compact-height: 32px;--v-inline-fields-density-comfortable-height: 40px;--v-inline-fields-grey: #909090}.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-input__append,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-input__append,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-input__append{padding-top:0!important}.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-input__append .v-icon{font-size:1rem!important}.v-inline-fields{position:relative}.v-inline-fields--display-container *{align-items:center;display:flex}.v-inline-fields--display-container-cell{cursor:pointer;display:block;max-height:unset!important}.v-inline-fields--display-container-cell>div{width:100%}.v-inline-fields--display-container-cell-underline-full-width .v-inline-fields--display-value{width:100%}.v-inline-fields--display-container-cell .v-inline-fields--selection-control .v-inline-fields--display-value{justify-content:center}.v-inline-fields--display-container-cell,.v-inline-fields--display-container-cell .v-input,.v-inline-fields--display-container-cell .v-inline-fields--display-wrapper,.v-inline-fields--display-container-cell .v-selection-control__wrapper{height:100%!important;width:100%}.v-inline-fields--display-value{cursor:pointer;letter-spacing:.009375em!important}.v-inline-fields--display-value-empty{color:var(--v-inline-fields-grey);font-style:italic}.v-inline-fields--display-value-checkbox,.v-inline-fields--display-value-switch{padding-bottom:2px;padding-top:6px}.v-inline-fields--display-append-icon,.v-inline-fields--display-prepend-icon,.v-inline-fields--display-append-inner-icon,.v-inline-fields--display-prepend-inner-icon{align-items:flex-end;display:inline-flex}.v-inline-fields--container-cell{height:100%;width:100%}.v-inline-fields--container-disabled .v-inline-fields--display-value{cursor:default!important;opacity:var(--v-disabled-opacity)}.v-inline-fields--container-loading .v-inline-fields--display-value{cursor:wait!important}.v-inline-fields--container-icon-set-fa .v-field__clearable{font-size:.8rem}.v-inline-fields--container-icon-set-fa .v-field__append-inner{align-items:flex-end;padding-bottom:0!important}.v-inline-fields--container-v-select-compact-plain .v-input,.v-inline-fields--container-v-select-compact-underlined .v-input,.v-inline-fields--container-v-text-field-compact-plain .v-input,.v-inline-fields--container-v-text-field-compact-underlined .v-input{height:var(--v-inline-fields-density-compact-height);max-height:var(--v-inline-fields-density-compact-height)}.v-inline-fields--container-v-select-compact-plain .v-input__control,.v-inline-fields--container-v-select-compact-underlined .v-input__control,.v-inline-fields--container-v-text-field-compact-plain .v-input__control,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control{padding-bottom:4px}.v-inline-fields--container-v-select-compact-plain .v-input>div,.v-inline-fields--container-v-select-compact-underlined .v-input>div,.v-inline-fields--container-v-text-field-compact-plain .v-input>div,.v-inline-fields--container-v-text-field-compact-underlined .v-input>div{height:inherit!important;max-height:inherit!important}.v-inline-fields--container-v-select-compact-plain .v-input .v-field__input,.v-inline-fields--container-v-select-compact-underlined .v-input .v-field__input,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-field__input,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-field__input{padding-top:0}.v-inline-fields--container-v-select-compact-plain .v-input .v-field__input input,.v-inline-fields--container-v-select-compact-underlined .v-input .v-field__input input,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-field__input input,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-field__input input{padding-bottom:10px}.v-inline-fields--container-v-select-compact-plain .v-input .v-select__selection,.v-inline-fields--container-v-select-compact-underlined .v-input .v-select__selection,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-select__selection,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-select__selection{align-items:center;padding-bottom:10px}.v-inline-fields--container-v-select-comfortable-plain .v-input,.v-inline-fields--container-v-select-comfortable-underlined .v-input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input{height:var(--v-inline-fields-density-comfortable-height);max-height:var(--v-inline-fields-density-comfortable-height)}.v-inline-fields--container-v-select-comfortable-plain .v-input__control,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control{padding-bottom:8px}.v-inline-fields--container-v-select-comfortable-plain .v-input>div,.v-inline-fields--container-v-select-comfortable-underlined .v-input>div,.v-inline-fields--container-v-text-field-comfortable-plain .v-input>div,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input>div{height:inherit!important;max-height:inherit!important}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-field__input,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-field__input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-field__input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-field__input{padding-top:0}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-field__input input,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-field__input input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-field__input input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-field__input input{padding-bottom:6px}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-select__selection,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-select__selection,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-select__selection,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-select__selection{align-items:center;padding-bottom:6px}.v-inline-fields--container-v-select-compact-plain .v-field__append-inner,.v-inline-fields--container-v-select-compact-underlined .v-field__append-inner{padding-top:4px!important}.v-inline-fields--container-v-select-comfortable-plain .v-field__append-inner,.v-inline-fields--container-v-select-comfortable-underlined .v-field__append-inner{padding-top:8px!important}.v-inline-fields--container-v-textarea .v-inline-fields--save-fields-container{align-items:flex-end}.v-inline-fields--container-v-select,.v-inline-fields--container-v-textarea,.v-inline-fields--container-v-text-field{width:100%}.v-inline-fields--container-v-checkbox .v-input,.v-inline-fields--container-v-switch .v-input{align-items:center;display:flex;padding-bottom:0}.v-inline-fields--container-v-checkbox .v-input__append,.v-inline-fields--container-v-switch .v-input__append{margin-inline-start:0!important;margin-left:0;padding-bottom:0!important}.v-inline-fields--container-v-checkbox .v-selection-control,.v-inline-fields--container-v-switch .v-selection-control{min-height:unset}.v-inline-fields--container-v-checkbox .v-inline-fields--save-fields-container,.v-inline-fields--container-v-switch .v-inline-fields--save-fields-container{align-items:center!important}.v-inline-fields--container .v-input__append,.v-inline-fields--container .v-input__prepend,.v-inline-fields--container .v-field__append-inner,.v-inline-fields--container .v-field__prepend-inner{padding-top:0!important}.v-inline-fields--container .v-input__append .v-icon,.v-inline-fields--container .v-input__prepend .v-icon,.v-inline-fields--container .v-field__append-inner .v-icon,.v-inline-fields--container .v-field__prepend-inner .v-icon{font-size:1rem!important}.v-inline-fields--container .v-field__append-inner,.v-inline-fields--container .v-field__prepend-inner{padding-bottom:10px!important}.v-inline-fields--container-compact .v-input__append,.v-inline-fields--container-compact .v-input__prepend,.v-inline-fields--container-compact .v-field__append-inner,.v-inline-fields--container-compact .v-field__prepend-inner{align-items:center!important}.v-inline-fields--container-compact .v-field__append-inner,.v-inline-fields--container-compact .v-field__prepend-inner{padding-bottom:10px!important}.v-inline-fields--container-comfortable .v-input__append,.v-inline-fields--container-comfortable .v-input__prepend,.v-inline-fields--container-comfortable .v-field__append-inner,.v-inline-fields--container-comfortable .v-field__prepend-inner{align-items:center!important}.v-inline-fields--container-comfortable .v-field__append-inner,.v-inline-fields--container-comfortable .v-field__prepend-inner{padding-bottom:6px!important}.v-inline-fields--container-default .v-input__append,.v-inline-fields--container-default .v-input__prepend,.v-inline-fields--container-default .v-field__append-inner,.v-inline-fields--container-default .v-field__prepend-inner{align-items:flex-end!important;padding-bottom:0!important}.v-inline-fields--container-default .v-input__append .v-icon,.v-inline-fields--container-default .v-input__prepend .v-icon,.v-inline-fields--container-default .v-field__append-inner .v-icon,.v-inline-fields--container-default .v-field__prepend-inner .v-icon{font-size:calc(var(--v-icon-size-multiplier) * 1.5em)!important}.v-inline-fields--container-default .v-inline-fields--save-fields-container{align-items:flex-end!important}.v-inline-fields--card-container{height:fit-content;min-width:fit-content!important;position:absolute}.v-inline-fields--card-container .v-card{border:1px solid hsla(0,0%,50%,.5)}.v-inline-fields--card-container .v-card .v-card-text{padding:5px 10px}.v-inline-fields--card-container .v-card .v-card-text>div{align-items:center;display:flex}.v-inline-fields--card-container-checkbox .v-card .v-card-text .v-input__append{margin-inline-start:0}.v-inline-fields--save-fields-container{align-items:center;display:flex;height:100%;margin-left:.1rem}.v-inline-fields--boolean-icons{font-size:calc(var(--v-icon-size-multiplier) * 1em)}.v-inline-fields .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:250px}.v-inline-fields .v-input__append{padding-top:0}[data-v-bf7fbbc3] .v-field__field{align-items:flex-end!important}")),document.head.appendChild(i)}}catch(n){console.error("vite-plugin-css-injected-by-js",n)}})(); + */Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),Ht=require("vuetify"),Ma=require("@vueuse/core"),tn=Symbol("identifier"),ln={elevation:5,variant:"flat"},Sn={cancelButtonColor:"default",cancelButtonSize:"x-small",cancelButtonTitle:"Cancel",cancelButtonVariant:"text",cancelIcon:void 0,cancelIconColor:"default",cardField:!1,cardOffsetX:0,cardOffsetY:0,cardProps:()=>({}),cell:!1,cellUnderlineFullWidth:!0,closeSiblings:!1,color:"primary",density:"compact",disabled:!1,displayAppendIcon:void 0,displayAppendIconColor:void 0,displayAppendIconSize:"x-small",displayAppendInnerIcon:void 0,displayAppendInnerIconColor:void 0,displayAppendInnerIconSize:"x-small",displayPrependIcon:void 0,displayPrependIconColor:void 0,displayPrependIconSize:"x-small",displayPrependInnerIcon:void 0,displayPrependInnerIconColor:void 0,displayPrependInnerIconSize:"x-small",emptyText:"empty",error:!1,fieldOnly:!1,hideCancelIcon:!1,hideDetails:!0,label:"",loading:!1,loadingWait:!0,name:"",required:!1,tableField:!0,underlineColor:"primary",underlineStyle:"dotted",underlineWidth:"2px",underlined:!0,valueColor:"default"},Ct={autofocus:!0},Vn={hideCancelIcon:!1,hideSaveIcon:!1,loadingIcon:void 0,loadingIconColor:"primary",saveButtonColor:"primary",saveButtonSize:"x-small",saveButtonTitle:"Save",saveButtonVariant:"text",saveIcon:void 0,saveIconColor:"primary"},so={falseValue:!1,iconFalse:void 0,iconFalseColor:"danger",iconFalseTitle:"No",iconTrue:void 0,iconTrueColor:"success",iconTrueTitle:"Yes",icons:!0,trueValue:!0},La={...Sn,...so,...Vn,falseIcon:void 0,icons:!0,trueIcon:void 0},Wa={...Sn,...Ct,...Vn,clearIcon:"$clear",clearable:!1,hideSelected:!0,itemTitle:"title",itemValue:"value",items:()=>[],menu:!0,rules:()=>[],variant:"underlined"},ja={...Sn,...Ct,...Vn,autoSelectFirst:!1,clearIcon:"$clear",clearable:!1,hideSelected:!0,itemTitle:"title",itemValue:"value",items:()=>[],menu:!0,menuIcon:"$dropdown",rules:()=>[],variant:"underlined"},Ua={...Sn,...so,...Vn,icons:!0,falseIcon:""},Ga={...Ct,...Vn,...Sn,autoGrow:!0,clearIcon:"$clear",rows:1,truncateLength:void 0,truncateSuffix:"...",variant:"underlined"},uo={...Sn,...Ct,...Vn,clearIcon:"$clear",truncateLength:void 0,truncateSuffix:"...",variant:"underlined"},re="v-inline-fields",on=n=>{const{cell:l=!1,field:t="",density:o="",disabled:a=!1,iconSet:i="mdi",loading:c=!1,loadingWait:s,tableField:u=!1,variant:r}=n,d=o&&r;return{[`${re}`]:!0,[`${re}--container`]:!0,[`${re}--container-cell`]:l,[`${re}--container-disabled`]:e.unref(a),[`${re}--container-table`]:u,[`${re}--container-icon-set-${i}`]:!0,[`${re}--container-loading`]:c&&s,[`${re}--container-${t}`]:!0,[`${re}--container-${t}-${o}`]:!0,[`${re}--container-${t}-${o}-${r}`]:d,[`${re}--container-${t}-${r}`]:r,[`${re}--container-${t}-${r}-${o}`]:d,[`${re}--container-${o}`]:o,[`${re}--container-${o}-${t}`]:o,[`${re}--container-${o}-${r}`]:d,[`${re}--container-${r}`]:r,[`${re}--container-${r}-${o}`]:d,[`${re}--container-${r}-${t}`]:r}},an=n=>{const{cell:l=!1,cellUnderlineFullWidth:t=!0,field:o="",density:a=""}=n;return{[`${re}--display-container-cell`]:l,[`${re}--display-container-cell-underline-full-width`]:l&&t,[`${re}--display-container`]:!0,[`${re}--display-wrapper-value`]:!0,[`${o}`]:!0,"v-input":!0,[`v-input--density-${a}`]:!0,"v-input--horizontal":!0}},Wn=n=>{const{density:l="",variant:t=""}=n;return{"v-input":!0,"v-input--dirty":!0,"v-input--horizontal":!0,"v-text-field":!0,[`v-input--density-${l}`]:!0,[`v-text-field--plain-${t}`]:!0}},co=n=>{const{density:l=""}=n;return{[`${re}--selection-control`]:!0,[`v-selection-control--density-${l}`]:!0}},Kt=(n,l,t)=>{const{error:o=!1,empty:a=!1}=t;return{[`${re}`]:!0,[`${re}--display-value-${n}`]:!0,[`${re}--display-value`]:!0,[`${re}--display-value-empty`]:e.unref(a),[`text-${l}`]:!e.unref(o),"text-danger":e.unref(o)}},rn=n=>{const{name:l,active:t=!1}=n;return{[`${re}`]:!0,[`${re}--field`]:!0,[`${re}--field-${l}`]:!0,[`${re}--field-active`]:t}},sn=n=>{const{name:l,showField:t}=n;return{[`${re}--card-container`]:!0,[`${re}--card-container-${l}`]:!0,"d-none":!t}};function yl(n){if(!n)return 100;if(n.toString().includes(".")){const l=100*Number(n);return l>=100?100:l}return Number(n)>=100?100:Number(n)}function gl(n){let l=function(p){const v={AliceBlue:"#F0F8FF",AntiqueWhite:"#FAEBD7",Aqua:"#00FFFF",Aquamarine:"#7FFFD4",Azure:"#F0FFFF",Beige:"#F5F5DC",Bisque:"#FFE4C4",Black:"#000000",BlanchedAlmond:"#FFEBCD",Blue:"#0000FF",BlueViolet:"#8A2BE2",Brown:"#A52A2A",BurlyWood:"#DEB887",CadetBlue:"#5F9EA0",Chartreuse:"#7FFF00",Chocolate:"#D2691E",Coral:"#FF7F50",CornflowerBlue:"#6495ED",Cornsilk:"#FFF8DC",Crimson:"#DC143C",Cyan:"#00FFFF",DarkBlue:"#00008B",DarkCyan:"#008B8B",DarkGoldenRod:"#B8860B",DarkGray:"#A9A9A9",DarkGreen:"#006400",DarkGrey:"#A9A9A9",DarkKhaki:"#BDB76B",DarkMagenta:"#8B008B",DarkOliveGreen:"#556B2F",DarkOrange:"#FF8C00",DarkOrchid:"#9932CC",DarkRed:"#8B0000",DarkSalmon:"#E9967A",DarkSeaGreen:"#8FBC8F",DarkSlateBlue:"#483D8B",DarkSlateGray:"#2F4F4F",DarkSlateGrey:"#2F4F4F",DarkTurquoise:"#00CED1",DarkViolet:"#9400D3",DeepPink:"#FF1493",DeepSkyBlue:"#00BFFF",DimGray:"#696969",DimGrey:"#696969",DodgerBlue:"#1E90FF",FireBrick:"#B22222",FloralWhite:"#FFFAF0",ForestGreen:"#228B22",Fuchsia:"#FF00FF",Gainsboro:"#DCDCDC",GhostWhite:"#F8F8FF",Gold:"#FFD700",GoldenRod:"#DAA520",Gray:"#808080",Green:"#008000",GreenYellow:"#ADFF2F",Grey:"#808080",HoneyDew:"#F0FFF0",HotPink:"#FF69B4",IndianRed:"#CD5C5C",Indigo:"#4B0082",Ivory:"#FFFFF0",Khaki:"#F0E68C",Lavender:"#E6E6FA",LavenderBlush:"#FFF0F5",LawnGreen:"#7CFC00",LemonChiffon:"#FFFACD",LightBlue:"#ADD8E6",LightCoral:"#F08080",LightCyan:"#E0FFFF",LightGoldenRodYellow:"#FAFAD2",LightGray:"#D3D3D3",LightGreen:"#90EE90",LightGrey:"#D3D3D3",LightPink:"#FFB6C1",LightSalmon:"#FFA07A",LightSeaGreen:"#20B2AA",LightSkyBlue:"#87CEFA",LightSlateGray:"#778899",LightSlateGrey:"#778899",LightSteelBlue:"#B0C4DE",LightYellow:"#FFFFE0",Lime:"#00FF00",LimeGreen:"#32CD32",Linen:"#FAF0E6",Magenta:"#FF00FF",Maroon:"#800000",MediumAquaMarine:"#66CDAA",MediumBlue:"#0000CD",MediumOrchid:"#BA55D3",MediumPurple:"#9370DB",MediumSeaGreen:"#3CB371",MediumSlateBlue:"#7B68EE",MediumSpringGreen:"#00FA9A",MediumTurquoise:"#48D1CC",MediumVioletRed:"#C71585",MidnightBlue:"#191970",MintCream:"#F5FFFA",MistyRose:"#FFE4E1",Moccasin:"#FFE4B5",NavajoWhite:"#FFDEAD",Navy:"#000080",OldLace:"#FDF5E6",Olive:"#808000",OliveDrab:"#6B8E23",Orange:"#FFA500",OrangeRed:"#FF4500",Orchid:"#DA70D6",PaleGoldenRod:"#EEE8AA",PaleGreen:"#98FB98",PaleTurquoise:"#AFEEEE",PaleVioletRed:"#DB7093",PapayaWhip:"#FFEFD5",PeachPuff:"#FFDAB9",Peru:"#CD853F",Pink:"#FFC0CB",Plum:"#DDA0DD",PowderBlue:"#B0E0E6",Purple:"#800080",RebeccaPurple:"#663399",Red:"#FF0000",RosyBrown:"#BC8F8F",RoyalBlue:"#4169E1",SaddleBrown:"#8B4513",Salmon:"#FA8072",SandyBrown:"#F4A460",SeaGreen:"#2E8B57",SeaShell:"#FFF5EE",Sienna:"#A0522D",Silver:"#C0C0C0",SkyBlue:"#87CEEB",SlateBlue:"#6A5ACD",SlateGray:"#708090",SlateGrey:"#708090",Snow:"#FFFAFA",SpringGreen:"#00FF7F",SteelBlue:"#4682B4",Tan:"#D2B48C",Teal:"#008080",Thistle:"#D8BFD8",Tomato:"#FF6347",Turquoise:"#40E0D0",Violet:"#EE82EE",Wheat:"#F5DEB3",White:"#FFFFFF",WhiteSmoke:"#F5F5F5",Yellow:"#FFFF00",YellowGreen:"#9ACD32"};let m=p;return Object.entries(v).forEach(([g,f])=>{p.toLowerCase()!=g.toLowerCase()||(m=f)}),m}(n),t=0,o=0,a=0,i=100,c=0,s=0,u=0;if(l.substring(0,1)==="#")l=function(p){let v=p.replace("#","");v.length===3&&(v=v.split("").map(h=>h+h).join(""));const m=parseInt(v.substring(0,2),16),g=parseInt(v.substring(2,4),16),f=parseInt(v.substring(4,6),16);return[m,g,f,100]}(l);else if(l.includes("rgb"))l=[...l.matchAll(/[\d+.\d+]+/g)].map(Number);else if(l.includes("hsl"))return l=[...l.matchAll(/[\d+.\d+]+/g)].map(String),t=l[0],o=l[1],a=l[2],i=yl(l[3]),`${t} ${o}% ${a}% / ${i}%`;[c,s,u,i]=l,c/=255,s/=255,u/=255,i=yl(i);const r=Math.max(c,s,u),d=Math.min(c,s,u);if(r===null||!d===null||isNaN(r)||isNaN(d)){const p="0 0% 100% / 12%";return console.warn(`[VuetifyInlineFields]: The "color" prop value using "${l}" doesn't exist. Using the value "hsl(${p})" in it's place.`),p}if(t=(r+d)/2,o=(r+d)/2,a=(r+d)/2,r==d)t=o=0;else{const p=r-d;switch(o=a>.5?p/(2-r-d):p/(r+d),r){case c:t=(s-u)/p+(s{if(function(o){return o==="transparent"||o==="none"||o==="inherit"||o==="currentColor"||o==="initial"||o==="unset"}(n))return n;if(function(o){return o.includes("--v-theme")}(n))return`rgb(var(${n}))`;const t=function(o,a){const i=a.global.current.value.colors;return Object.entries(i).find(([c])=>c===o)}(n,l);return t?`hsl(${gl(t[1])})`:`hsl(${gl(n)})`},_n=n=>{const{str:l,unit:t="px"}=n;if(l!=null&&l!=="")return+l?`${Number(l)}${t}`:String(l)},po=n=>{var a;const{modelValue:l,trueValue:t}=n,o=e.unref(l);return((a=o==null?void 0:o.toLowerCase)==null?void 0:a.call(o))==="true"||o==="1"||o=="1"||o===!0||o==t||o===t},Yt=n=>{const{underlineStyle:l,underlineWidth:t,color:o,error:a,theme:i,underlined:c}=n;let{underlineColor:s}=n;s=s||o;const u={"border-bottom-color":qa(s,i),"border-bottom-style":l,"border-bottom-width":t};return e.unref(a)&&(u["border-bottom-color"]="rgb(var(--v-theme-danger))"),c||(u["border-bottom"]="none"),u},Ge=n=>{const{cardMinWidth:l,cardOffsetX:t,cardOffsetY:o,cardWidth:a,field:i,name:c=""}=n,s=(d=>{const{cardOffsetX:p,cardOffsetY:v,field:m}=d;if(!m)return{bottom:0,height:0,left:0,right:0,top:0,width:0,x:0,y:0};const{x:g,y:f}=m.getBoundingClientRect(),{width:y,height:h}=m.getBoundingClientRect(),{right:k,bottom:A}=m.getBoundingClientRect();return{bottom:_n({str:A+Number(v)}),height:h,left:_n({str:0+Number(p)}),right:_n({str:k+Number(p)}),top:_n({str:2+Number(v)}),width:_n({str:y}),x:g,y:f}})({cardOffsetX:t,cardOffsetY:o,field:i});let u=l,r=a;return r||(r=c==="checkbox"?"fit-content":s.width),u||(u=c==="checkbox"?"fit-content":s.width),{left:s.left,top:s.top,width:r,zIndex:10}},ke=typeof window<"u",Xt=ke&&"IntersectionObserver"in window;function hl(n,l,t){const o=l.length-1;if(o<0)return n===void 0?t:n;for(let a=0;aBn(n[o],l[o]))}function Ee(n,l,t){if(l===!0)return n===void 0?t:n;if(l==null||typeof l=="boolean")return t;if(n!==Object(n)){if(typeof l!="function")return t;const a=l(n,t);return a===void 0?t:a}if(typeof l=="string")return function(a,i,c){return a!=null&&i&&typeof i=="string"?a[i]!==void 0?a[i]:hl(a,(i=(i=i.replace(/\[(\w+)\]/g,".$1")).replace(/^\./,"")).split("."),c):c}(n,l,t);if(Array.isArray(l))return hl(n,l,t);if(typeof l!="function")return t;const o=l(n,t);return o===void 0?t:o}function te(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";return n==null||n===""?void 0:isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function Et(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function ut(n){if(n&&"$el"in n){const l=n.$el;return(l==null?void 0:l.nodeType)===Node.TEXT_NODE?l.nextElementSibling:l}return n}const bl=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16});function wt(n,l){return l.every(t=>n.hasOwnProperty(t))}function vo(n,l){const t={},o=new Set(Object.keys(n));for(const a of l)o.has(a)&&(t[a]=n[a]);return t}function Cl(n,l,t){const o=Object.create(null),a=Object.create(null);for(const i in n)l.some(c=>c instanceof RegExp?c.test(i):c===i)&&!(t!=null&&t.some(c=>c===i))?o[i]=n[i]:a[i]=n[i];return[o,a]}function Ke(n,l){const t={...n};return l.forEach(o=>delete t[o]),t}const fo=/^on[^a-z]/,Tt=n=>fo.test(n),Ha=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function jn(n){const[l,t]=Cl(n,[fo]),o=Ke(l,Ha),[a,i]=Cl(t,["class","style","id",/^data-/]);return Object.assign(a,l),Object.assign(i,o),[a,i]}function Pe(n){return n==null?[]:Array.isArray(n)?n:[n]}function hn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(t,n))}function Il(n,l){return n+(arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0").repeat(Math.max(0,l-n.length))}function yn(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=arguments.length>2?arguments[2]:void 0;const o={};for(const a in n)o[a]=n[a];for(const a in l){const i=n[a],c=l[a];Et(i)&&Et(c)?o[a]=yn(i,c,t):Array.isArray(i)&&Array.isArray(c)&&t?o[a]=t(i,c):o[a]=c}return o}function mo(n){return n.map(l=>l.type===e.Fragment?mo(l.children):l).flat()}function Qe(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(Qe.cache.has(n))return Qe.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return Qe.cache.set(n,l),l}function rt(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(t=>rt(n,t)).flat(1);if(Array.isArray(l.children))return l.children.map(t=>rt(n,t)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return rt(n,l.component.subTree).flat(1)}return[]}function Jt(n){const l=e.reactive({}),t=e.computed(n);return e.watchEffect(()=>{for(const o in t.value)l[o]=t.value[o]},{flush:"sync"}),e.toRefs(l)}function ct(n,l){return n.includes(l)}function Sl(n){return n[2].toLowerCase()+n.slice(3)}Qe.cache=new Map;const Te=()=>[Function,Array];function Vl(n,l){return!!(n[l="on"+e.capitalize(l)]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function yo(n){for(var l=arguments.length,t=new Array(l>1?l-1:0),o=1;o1&&arguments[1]!==void 0)||arguments[1];const t=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(o=>`${o}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(t)]}function go(n,l,t){let o,a=n.indexOf(document.activeElement);const i=l==="next"?1:-1;do a+=i,o=n[a];while((!o||o.offsetParent==null||!((t==null?void 0:t(o))??1))&&a=0);return o}function dt(n,l){var o,a,i,c;const t=$t(n);if(l)if(l==="first")(o=t[0])==null||o.focus();else if(l==="last")(a=t.at(-1))==null||a.focus();else if(typeof l=="number")(i=t[l])==null||i.focus();else{const s=go(t,l);s?s.focus():dt(n,l==="next"?"first":"last")}else n!==document.activeElement&&n.contains(document.activeElement)||((c=t[0])==null||c.focus())}function Ka(){}function bn(n,l){if(!(ke&&typeof CSS<"u"&&CSS.supports!==void 0&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}function Zt(n){return n.some(l=>!e.isVNode(l)||l.type!==e.Comment&&(l.type!==e.Fragment||Zt(l.children)))?n:null}const ho=["top","bottom"],Ya=["start","end","left","right"];function Rt(n,l){let[t,o]=n.split(" ");return o||(o=ct(ho,t)?"start":ct(Ya,t)?"top":"center"),{side:Bl(t,l),align:Bl(o,l)}}function Bl(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function kt(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function xt(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function wl(n){return{side:n.align,align:n.side}}function kl(n){return ct(ho,n.side)?"y":"x"}class en{constructor(l){let{x:t,y:o,width:a,height:i}=l;this.x=t,this.y=o,this.width=a,this.height=i}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function xl(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function bo(n){return Array.isArray(n)?new en({x:n[0],y:n[1],width:0,height:0}):n.getBoundingClientRect()}function Qt(n){const l=n.getBoundingClientRect(),t=getComputedStyle(n),o=t.transform;if(o){let a,i,c,s,u;if(o.startsWith("matrix3d("))a=o.slice(9,-1).split(/, /),i=+a[0],c=+a[5],s=+a[12],u=+a[13];else{if(!o.startsWith("matrix("))return new en(l);a=o.slice(7,-1).split(/, /),i=+a[0],c=+a[3],s=+a[4],u=+a[5]}const r=t.transformOrigin,d=l.x-s-(1-i)*parseFloat(r),p=l.y-u-(1-c)*parseFloat(r.slice(r.indexOf(" ")+1)),v=i?l.width/i:n.offsetWidth+1,m=c?l.height/c:n.offsetHeight+1;return new en({x:d,y:p,width:v,height:m})}return new en(l)}function gn(n,l,t){if(n.animate===void 0)return{finished:Promise.resolve()};let o;try{o=n.animate(l,t)}catch{return{finished:Promise.resolve()}}return o.finished===void 0&&(o.finished=new Promise(a=>{o.onfinish=()=>{a(o)}})),o}const tt=new WeakMap,mn=2.4,Fl=.2126729,Nl=.7151522,Al=.072175,Xa=.55,Ja=.58,Za=.57,Qa=.62,lt=.03,Pl=1.45,er=5e-4,nr=1.25,tr=1.25,_l=.078,Ol=12.82051282051282,ot=.06,zl=.001;function El(n,l){const t=(n.r/255)**mn,o=(n.g/255)**mn,a=(n.b/255)**mn,i=(l.r/255)**mn,c=(l.g/255)**mn,s=(l.b/255)**mn;let u,r=t*Fl+o*Nl+a*Al,d=i*Fl+c*Nl+s*Al;if(r<=lt&&(r+=(lt-r)**Pl),d<=lt&&(d+=(lt-d)**Pl),Math.abs(d-r)r){const p=(d**Xa-r**Ja)*nr;u=p-zl?0:p>-_l?p-p*Ol*ot:p+ot}return 100*u}function En(n){e.warn(`Vuetify: ${n}`)}function Ft(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const Tl=/^(?(?:rgb|hsl)a?)\((?.+)\)/,lr={rgb:(n,l,t,o)=>({r:n,g:l,b:t,a:o}),rgba:(n,l,t,o)=>({r:n,g:l,b:t,a:o}),hsl:(n,l,t,o)=>$l({h:n,s:l,l:t,a:o}),hsla:(n,l,t,o)=>$l({h:n,s:l,l:t,a:o}),hsv:(n,l,t,o)=>Tn({h:n,s:l,v:t,a:o}),hsva:(n,l,t,o)=>Tn({h:n,s:l,v:t,a:o})};function On(n){if(typeof n=="number")return(isNaN(n)||n<0||n>16777215)&&En(`'${n}' is not a valid hex color`),{r:(16711680&n)>>16,g:(65280&n)>>8,b:255&n};if(typeof n=="string"&&Tl.test(n)){const{groups:l}=n.match(Tl),{fn:t,values:o}=l,a=o.split(/,\s*/).map(i=>i.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(t)?parseFloat(i)/100:parseFloat(i));return lr[t](...a)}if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;[3,4].includes(l.length)?l=l.split("").map(o=>o+o).join(""):[6,8].includes(l.length)||En(`'${n}' is not a valid hex(a) color`);const t=parseInt(l,16);return(isNaN(t)||t<0||t>4294967295)&&En(`'${n}' is not a valid hex(a) color`),function(o){o=function(u){return u.startsWith("#")&&(u=u.slice(1)),u=u.replace(/([^0-9a-f])/gi,"F"),(u.length===3||u.length===4)&&(u=u.split("").map(r=>r+r).join("")),u.length!==6&&(u=Il(Il(u,6),8,"F")),u}(o);let[a,i,c,s]=function(u){let r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const d=[];let p=0;for(;pparseInt(u,16));return s=s===void 0?s:s/255,{r:a,g:i,b:c,a:s}}(l)}if(typeof n=="object"){if(wt(n,["r","g","b"]))return n;if(wt(n,["h","s","l"]))return Tn(Co(n));if(wt(n,["h","s","v"]))return Tn(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} +Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function Tn(n){const{h:l,s:t,v:o,a}=n,i=s=>{const u=(s+l/60)%6;return o-o*t*Math.max(Math.min(u,4-u,1),0)},c=[i(5),i(3),i(1)].map(s=>Math.round(255*s));return{r:c[0],g:c[1],b:c[2],a}}function $l(n){return Tn(Co(n))}function Co(n){const{h:l,s:t,l:o,a}=n,i=o+t*Math.min(o,1-o);return{h:l,s:i===0?0:2-2*o/i,v:i,a}}function U(n,l){return t=>Object.keys(n).reduce((o,a)=>{const i=typeof n[a]=="object"&&n[a]!=null&&!Array.isArray(n[a])?n[a]:{type:n[a]};return o[a]=t&&a in t?{...i,default:t[a]}:i,l&&!o[a].source&&(o[a].source=l),o},{})}const ce=U({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component"),pt=Symbol.for("vuetify:defaults");function el(){const n=e.inject(pt);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function wn(n,l){const t=el(),o=e.ref(n),a=e.computed(()=>{if(e.unref(l==null?void 0:l.disabled))return t.value;const i=e.unref(l==null?void 0:l.scoped),c=e.unref(l==null?void 0:l.reset),s=e.unref(l==null?void 0:l.root);if(o.value==null&&!(i||c||s))return t.value;let u=yn(o.value,{prev:t.value});if(i)return u;if(c||s){const r=Number(c||1/0);for(let d=0;d<=r&&u&&"prev"in u;d++)u=u.prev;return u&&typeof s=="string"&&s in u&&(u=yn(yn(u,{prev:u}),u[s])),u}return u.prev?yn(u.prev,u):u});return e.provide(pt,a),a}function or(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:el();const o=Ve("useDefaults");if(l=l??o.type.name??o.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const a=e.computed(()=>{var s;return(s=t.value)==null?void 0:s[n._as??l]}),i=new Proxy(n,{get(s,u){var d,p,v,m;const r=Reflect.get(s,u);return u==="class"||u==="style"?[(d=a.value)==null?void 0:d[u],r].filter(g=>g!=null):typeof u!="string"||function(g,f){var y,h;return((y=g.props)==null?void 0:y[f])!==void 0||((h=g.props)==null?void 0:h[Qe(f)])!==void 0}(o.vnode,u)?r:((p=a.value)==null?void 0:p[u])??((m=(v=t.value)==null?void 0:v.global)==null?void 0:m[u])??r}}),c=e.shallowRef();return e.watchEffect(()=>{if(a.value){const s=Object.entries(a.value).filter(u=>{let[r]=u;return r.startsWith(r[0].toUpperCase())});c.value=s.length?Object.fromEntries(s):void 0}else c.value=void 0}),{props:i,provideSubDefaults:function(){const s=function(u){let r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Ve("injectSelf");const{provides:d}=r;if(d&&u in d)return d[u]}(pt,o);e.provide(pt,e.computed(()=>c.value?yn((s==null?void 0:s.value)??{},c.value):s==null?void 0:s.value))}}}function $n(n){if(n._setup=n._setup??n.setup,!n.name)return En("The component is missing an explicit name, unable to generate default prop value"),n;if(n._setup){n.props=U(n.props??{},n.name)();const l=Object.keys(n.props).filter(t=>t!=="class"&&t!=="style");n.filterProps=function(t){return vo(t,l)},n.props._as=String,n.setup=function(t,o){const a=el();if(!a.value)return n._setup(t,o);const{props:i,provideSubDefaults:c}=or(t,t._as??n.name,a),s=n._setup(i,o);return c(),s}}return n}function J(){let n=!(arguments.length>0&&arguments[0]!==void 0)||arguments[0];return l=>(n?$n:e.defineComponent)(l)}function Un(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",t=arguments.length>2?arguments[2]:void 0;return J()({name:t??e.capitalize(e.camelize(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...ce()},setup(o,a){let{slots:i}=a;return()=>{var c;return e.h(o.tag,{class:[n,o.class],style:o.style},(c=i.default)==null?void 0:c.call(i))}}})}function Io(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const vt="cubic-bezier(0.4, 0, 0.2, 1)";function Ve(n,l){const t=e.getCurrentInstance();if(!t)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return t}function Re(){const n=Ve(arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables").type;return Qe((n==null?void 0:n.aliasName)||(n==null?void 0:n.name))}let So=0,it=new WeakMap;function ze(){const n=Ve("getUid");if(it.has(n))return it.get(n);{const l=So++;return it.set(n,l),l}}function Vo(n){let l=arguments.length>1&&arguments[1]!==void 0&&arguments[1];for(;n;){if(l?ar(n):nl(n))return n;n=n.parentElement}return document.scrollingElement}function ft(n,l){const t=[];if(l&&n&&!l.contains(n))return t;for(;n&&(nl(n)&&t.push(n),n!==l);)n=n.parentElement;return t}function nl(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function ar(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function ie(n){Ve("useRender").render=n}function tl(n){return Jt(()=>{const l=[],t={};if(n.value.background)if(Ft(n.value.background)){if(t.backgroundColor=n.value.background,!n.value.text&&Ft(o=n.value.background)&&!/^((rgb|hsl)a?\()?var\(--/.test(o)){const a=On(n.value.background);if(a.a==null||a.a===1){const i=function(c){const s=Math.abs(El(On(0),On(c)));return Math.abs(El(On(16777215),On(c)))>Math.min(s,50)?"#fff":"#000"}(a);t.color=i,t.caretColor=i}}}else l.push(`bg-${n.value.background}`);var o;return n.value.text&&(Ft(n.value.text)?(t.color=n.value.text,t.caretColor=n.value.text):l.push(`text-${n.value.text}`)),{colorClasses:l,colorStyles:t}})}function $e(n,l){const t=e.computed(()=>({text:e.isRef(n)?n.value:l?n[l]:null})),{colorClasses:o,colorStyles:a}=tl(t);return{textColorClasses:o,textColorStyles:a}}function Cn(n,l){const t=e.computed(()=>({background:e.isRef(n)?n.value:l?n[l]:null})),{colorClasses:o,colorStyles:a}=tl(t);return{backgroundColorClasses:o,backgroundColorStyles:a}}ze.reset=()=>{So=0,it=new WeakMap};const fe=[String,Function,Object,Array],rr=Symbol.for("vuetify:icons"),mt=U({icon:{type:fe},tag:{type:String,required:!0}},"icon"),Rl=J()({name:"VComponentIcon",props:mt(),setup(n,l){let{slots:t}=l;return()=>{const o=n.icon;return e.createVNode(n.tag,null,{default:()=>{var a;return[n.icon?e.createVNode(o,null,null):(a=t.default)==null?void 0:a.call(t)]}})}}}),ir=$n({name:"VSvgIcon",inheritAttrs:!1,props:mt(),setup(n,l){let{attrs:t}=l;return()=>e.createVNode(n.tag,e.mergeProps(t,{style:null}),{default:()=>[e.createVNode("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(o=>Array.isArray(o)?e.createVNode("path",{d:o[0],"fill-opacity":o[1]},null):e.createVNode("path",{d:o},null)):e.createVNode("path",{d:n.icon},null)])]})}});$n({name:"VLigatureIcon",props:mt(),setup:n=>()=>e.createVNode(n.tag,null,{default:()=>[n.icon]})}),$n({name:"VClassIcon",props:mt(),setup:n=>()=>e.createVNode(n.tag,{class:n.icon},null)});const sr=["x-small","small","default","large","x-large"],Gn=U({size:{type:[String,Number],default:"default"}},"size");function qn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Re();return Jt(()=>{let t,o;return ct(sr,n.size)?t=`${l}--size-${n.size}`:n.size&&(o={width:te(n.size),height:te(n.size)}),{sizeClasses:t,sizeStyles:o}})}const Ae=U({tag:{type:String,default:"div"}},"tag"),Dl=Symbol.for("vuetify:theme"),we=U({theme:String},"theme");function xe(n){Ve("provideTheme");const l=e.inject(Dl,null);if(!l)throw new Error("Could not find Vuetify theme injection");const t=e.computed(()=>n.theme??l.name.value),o=e.computed(()=>l.themes.value[t.value]),a=e.computed(()=>l.isDisabled?void 0:`v-theme--${t.value}`),i={...l,name:t,current:o,themeClasses:a};return e.provide(Dl,i),i}const ur=U({color:String,start:Boolean,end:Boolean,icon:fe,...ce(),...Gn(),...Ae({tag:"i"}),...we()},"VIcon"),me=J()({name:"VIcon",props:ur(),setup(n,l){let{attrs:t,slots:o}=l;const a=e.ref(),{themeClasses:i}=xe(n),{iconData:c}=(d=>{const p=e.inject(rr);if(!p)throw new Error("Missing Vuetify Icons provide!");return{iconData:e.computed(()=>{var y;const v=e.unref(d);if(!v)return{component:Rl};let m=v;if(typeof m=="string"&&(m=m.trim(),m.startsWith("$")&&(m=(y=p.aliases)==null?void 0:y[m.slice(1)])),!m)throw new Error(`Could not find aliased icon "${v}"`);if(Array.isArray(m))return{component:ir,icon:m};if(typeof m!="string")return{component:Rl,icon:m};const g=Object.keys(p.sets).find(h=>typeof m=="string"&&m.startsWith(`${h}:`)),f=g?m.slice(g.length+1):m;return{component:p.sets[g??p.defaultSet].component,icon:f}})}})(e.computed(()=>a.value||n.icon)),{sizeClasses:s}=qn(n),{textColorClasses:u,textColorStyles:r}=$e(e.toRef(n,"color"));return ie(()=>{var p,v;const d=(p=o.default)==null?void 0:p.call(o);return d&&(a.value=(v=mo(d).filter(m=>m.type===e.Text&&m.children&&typeof m.children=="string")[0])==null?void 0:v.children),e.createVNode(c.value.component,{tag:n.tag,icon:c.value.icon,class:["v-icon","notranslate",i.value,s.value,u.value,{"v-icon--clickable":!!t.onClick,"v-icon--start":n.start,"v-icon--end":n.end},n.class],style:[s.value?void 0:{fontSize:te(n.size),height:te(n.size),width:te(n.size)},r.value,n.style],role:t.onClick?"button":void 0,"aria-hidden":!t.onClick},{default:()=>[d]})}),{}}}),Hn=e.defineComponent({__name:"DisplayedValue",props:{color:{},displayAppendIcon:{},displayAppendIconColor:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayValue:{},empty:{type:Boolean},error:{type:Boolean},field:{},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},emits:["toggleField"],setup(n,{emit:l}){const t=e.useAttrs(),o=l,a=n,i=e.useSlots(),c=Ht.useTheme(),s=e.reactive({...t,...a});e.watchEffect(()=>{Object.assign(s,{...t,...a})});const u={displayValue:a.displayValue,empty:a.empty,error:a.error},r=e.computed(()=>Kt(a.field,a.valueColor,{empty:a.empty,error:a.error})),d=e.computed(()=>Yt({color:a.color,error:a.error,theme:c,underlineColor:a.underlineColor,underlineStyle:a.underlineStyle,underlineWidth:a.underlineWidth,underlined:a.underlined})),p=e.computed(()=>(g=>{const{underlineWidth:f}=g;return{borderBottom:`${f||"0px"} solid transparent`}})({underlineWidth:a.underlineWidth})),v=(g,f=!1)=>(y=>{const{inner:h=!1,position:k}=y;return{[`${re}--display-icon`]:!h,[`${re}--display-${k}-icon`]:!h,[`${re}--display-${k}-inner-icon`]:h,"me-1":k==="prepend","ms-1":k==="append"}})({inner:f,position:g});function m(){o("toggleField")}return(g,f)=>(e.openBlock(),e.createElementBlock("div",{class:"v-inline-fields--display-wrapper",onClick:m},[g.displayPrependIcon||e.unref(i)["display.prepend"]?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(v("prepend")),style:e.normalizeStyle(e.unref(p))},[e.unref(i)["display.prepend"]?e.renderSlot(g.$slots,"display.prepend",e.normalizeProps(e.mergeProps({key:0},u))):(e.openBlock(),e.createBlock(me,{key:1,color:e.unref(s).displayPrependIconColor,icon:e.unref(s).displayPrependIcon,size:e.unref(s).displayPrependIconSize},null,8,["color","icon","size"]))],6)):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["d-inline-flex",e.unref(r)]),style:e.normalizeStyle(e.unref(d))},[g.displayPrependInnerIcon||e.unref(i)["display.prependInner"]?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(v("prepend",!0))},[e.unref(i)["display.prependInner"]?e.renderSlot(g.$slots,"display.prependInner",e.normalizeProps(e.mergeProps({key:0},u))):(e.openBlock(),e.createBlock(me,{key:1,color:e.unref(s).displayPrependInnerIconColor,icon:e.unref(s).displayPrependInnerIcon,size:e.unref(s).displayPrependInnerIconSize},null,8,["color","icon","size"]))],2)):e.createCommentVNode("",!0),e.createTextVNode(" "+e.toDisplayString(g.displayValue)+" ",1),g.displayAppendInnerIcon||e.unref(i)["display.appendInner"]?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(v("append",!0))},[e.unref(i)["display.appendInner"]?e.renderSlot(g.$slots,"display.appendInner",e.normalizeProps(e.mergeProps({key:0},u))):(e.openBlock(),e.createBlock(me,{key:1,color:e.unref(s).displayAppendInnerIconColor,icon:e.unref(s).displayAppendInnerIcon,size:e.unref(s).displayAppendInnerIconSize},null,8,["color","icon","size"]))],2)):e.createCommentVNode("",!0)],6),g.displayAppendIcon||e.unref(i)["display.append"]?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(v("append")),style:e.normalizeStyle(e.unref(p))},[e.unref(i)["display.append"]?e.renderSlot(g.$slots,"display.append",e.normalizeProps(e.mergeProps({key:0},u))):(e.openBlock(),e.createBlock(me,{key:1,color:e.unref(s).displayAppendIconColor,icon:e.unref(s).displayAppendIcon,size:e.unref(s).displayAppendIconSize},null,8,["color","icon","size"]))],6)):e.createCommentVNode("",!0)]))}}),cr={fa:{checkboxFalse:"$checkboxOff",checkboxTrue:"far fa-square-check",clear:"$clear",false:"$close",loading:"fa-circle-notch",save:"fa-floppy-disk",true:"$complete"},mdi:{checkboxFalse:"$checkboxOff",checkboxTrue:"mdi:mdi-checkbox-outline",clear:"$clear",false:"$close",loading:"mdi-loading",save:"mdi-content-save",true:"$complete"}},Oe=n=>{const{icon:l,iconOptions:t,name:o}=n;if(l)return l;const a=cr[t==null?void 0:t.defaultSet];if(!a)throw new Error(`[VInlineFields]: No default ${t==null?void 0:t.defaultSet} icon set found.`);const i=a[o];if(!i)throw new Error(`[VInlineFields]: No ${o} icon found.`);return i},kn=U({border:[Boolean,Number,String]},"border");function xn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Re();return{borderClasses:e.computed(()=>{const t=e.isRef(n)?n.value:n.border,o=[];if(t===!0||t==="")o.push(`${l}--border`);else if(typeof t=="string"||t===0)for(const a of String(t).split(" "))o.push(`border-${a}`);return o})}}const dr=[null,"default","comfortable","compact"],De=U({density:{type:String,default:"default",validator:n=>dr.includes(n)}},"density");function Le(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Re();return{densityClasses:e.computed(()=>`${l}--density-${n.density}`)}}const Fn=U({elevation:{type:[Number,String],validator(n){const l=parseInt(n);return!isNaN(l)&&l>=0&&l<=24}}},"elevation");function Nn(n){return{elevationClasses:e.computed(()=>{const l=e.isRef(n)?n.value:n.elevation,t=[];return l==null||t.push(`elevation-${l}`),t})}}const We=U({rounded:{type:[Boolean,Number,String],default:void 0}},"rounded");function je(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Re();return{roundedClasses:e.computed(()=>{const t=e.isRef(n)?n.value:n.rounded,o=[];if(t===!0||t==="")o.push(`${l}--rounded`);else if(typeof t=="string"||t===0)for(const a of String(t).split(" "))o.push(`rounded-${a}`);return o})}}const pr=["elevated","flat","tonal","outlined","text","plain"];function Kn(n,l){return e.createVNode(e.Fragment,null,[n&&e.createVNode("span",{key:"overlay",class:`${l}__overlay`},null),e.createVNode("span",{key:"underlay",class:`${l}__underlay`},null)])}const Ye=U({color:String,variant:{type:String,default:"elevated",validator:n=>pr.includes(n)}},"variant");function Yn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Re();const t=e.computed(()=>{const{variant:i}=e.unref(n);return`${l}--variant-${i}`}),{colorClasses:o,colorStyles:a}=tl(e.computed(()=>{const{variant:i,color:c}=e.unref(n);return{[["elevated","flat"].includes(i)?"background":"text"]:c}}));return{colorClasses:o,colorStyles:a,variantClasses:t}}const Bo=U({divided:Boolean,...kn(),...ce(),...De(),...Fn(),...We(),...Ae(),...we(),...Ye()},"VBtnGroup"),Ml=J()({name:"VBtnGroup",props:Bo(),setup(n,l){let{slots:t}=l;const{themeClasses:o}=xe(n),{densityClasses:a}=Le(n),{borderClasses:i}=xn(n),{elevationClasses:c}=Nn(n),{roundedClasses:s}=je(n);wn({VBtn:{height:"auto",color:e.toRef(n,"color"),density:e.toRef(n,"density"),flat:!0,variant:e.toRef(n,"variant")}}),ie(()=>e.createVNode(n.tag,{class:["v-btn-group",{"v-btn-group--divided":n.divided},o.value,i.value,a.value,c.value,s.value,n.class],style:n.style},t))}});function nn(n,l){let t;function o(){t=e.effectScope(),t.run(()=>l.length?l(()=>{t==null||t.stop(),o()}):l())}e.watch(n,a=>{a&&!t?o():a||(t==null||t.stop(),t=void 0)},{immediate:!0}),e.onScopeDispose(()=>{t==null||t.stop()})}function be(n,l,t){let o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:d=>d,a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:d=>d;const i=Ve("useProxiedModel"),c=e.ref(n[l]!==void 0?n[l]:t),s=Qe(l),u=s!==l?e.computed(()=>{var d,p,v,m;return n[l],!(!((d=i.vnode.props)!=null&&d.hasOwnProperty(l))&&!((p=i.vnode.props)!=null&&p.hasOwnProperty(s))||!((v=i.vnode.props)!=null&&v.hasOwnProperty(`onUpdate:${l}`))&&!((m=i.vnode.props)!=null&&m.hasOwnProperty(`onUpdate:${s}`)))}):e.computed(()=>{var d,p;return n[l],!(!((d=i.vnode.props)!=null&&d.hasOwnProperty(l))||!((p=i.vnode.props)!=null&&p.hasOwnProperty(`onUpdate:${l}`)))});nn(()=>!u.value,()=>{e.watch(()=>n[l],d=>{c.value=d})});const r=e.computed({get(){const d=n[l];return o(u.value?d:c.value)},set(d){const p=a(d),v=e.toRaw(u.value?n[l]:c.value);v!==p&&o(v)!==d&&(c.value=p,i==null||i.emit(`update:${l}`,p))}});return Object.defineProperty(r,"externalValue",{get:()=>u.value?n[l]:c.value}),r}const wo=U({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),ko=U({value:null,disabled:Boolean,selectedClass:String},"group-item");function xo(n,l){let t=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];const o=Ve("useGroupItem");if(!o)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const a=ze();e.provide(Symbol.for(`${l.description}:id`),a);const i=e.inject(l,null);if(!i){if(!t)return i;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${l.description}`)}const c=e.toRef(n,"value"),s=e.computed(()=>!(!i.disabled.value&&!n.disabled));i.register({id:a,value:c,disabled:s},o),e.onBeforeUnmount(()=>{i.unregister(a)});const u=e.computed(()=>i.isSelected(a)),r=e.computed(()=>u.value&&[i.selectedClass.value,n.selectedClass]);return e.watch(u,d=>{o.emit("group:selected",{value:d})}),{id:a,isSelected:u,toggle:()=>i.select(a,!u.value),select:d=>i.select(a,d),selectedClass:r,value:c,disabled:s,group:i}}function Fo(n,l){let t=!1;const o=e.reactive([]),a=be(n,"modelValue",[],r=>r==null?[]:Ll(o,Pe(r)),r=>{const d=function(p,v){const m=[];return v.forEach(g=>{const f=p.findIndex(y=>y.id===g);if(~f){const y=p[f];m.push(y.value!=null?y.value:f)}}),m}(o,r);return n.multiple?d:d[0]}),i=Ve("useGroup");function c(){const r=o.find(d=>!d.disabled);r&&n.mandatory==="force"&&!a.value.length&&(a.value=[r.id])}function s(r){if(n.multiple&&En('This method is not supported when using "multiple" prop'),a.value.length){const d=a.value[0],p=o.findIndex(g=>g.id===d);let v=(p+r)%o.length,m=o[v];for(;m.disabled&&v!==p;)v=(v+r)%o.length,m=o[v];if(m.disabled)return;a.value=[o[v].id]}else{const d=o.find(p=>!p.disabled);d&&(a.value=[d.id])}}e.onMounted(()=>{c()}),e.onBeforeUnmount(()=>{t=!0});const u={register:function(r,d){const p=r,v=rt(Symbol.for(`${l.description}:id`),i==null?void 0:i.vnode).indexOf(d);v>-1?o.splice(v,0,p):o.push(p)},unregister:function(r){if(t)return;c();const d=o.findIndex(p=>p.id===r);o.splice(d,1)},selected:a,select:function(r,d){const p=o.find(v=>v.id===r);if(!d||!(p!=null&&p.disabled))if(n.multiple){const v=a.value.slice(),m=v.findIndex(f=>f===r),g=~m;if(d=d??!g,g&&n.mandatory&&v.length<=1||!g&&n.max!=null&&v.length+1>n.max)return;m<0&&d?v.push(r):m>=0&&!d&&v.splice(m,1),a.value=v}else{const v=a.value.includes(r);if(n.mandatory&&v)return;a.value=d??!v?[r]:[]}},disabled:e.toRef(n,"disabled"),prev:()=>s(o.length-1),next:()=>s(1),isSelected:r=>a.value.includes(r),selectedClass:e.computed(()=>n.selectedClass),items:e.computed(()=>o),getItemIndex:r=>function(d,p){const v=Ll(d,[p]);return v.length?d.findIndex(m=>m.id===v[0]):-1}(o,r)};return e.provide(l,u),u}function Ll(n,l){const t=[];return l.forEach(o=>{const a=n.find(c=>Bn(o,c.value)),i=n[o];(a==null?void 0:a.value)!=null?t.push(a.id):i!=null&&t.push(i.id)}),t}const No=Symbol.for("vuetify:v-btn-toggle"),vr=U({...Bo(),...wo()},"VBtnToggle");J()({name:"VBtnToggle",props:vr(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:t}=l;const{isSelected:o,next:a,prev:i,select:c,selected:s}=Fo(n,No);return ie(()=>{const u=Ml.filterProps(n);return e.createVNode(Ml,e.mergeProps({class:["v-btn-toggle",n.class]},u,{style:n.style}),{default:()=>{var r;return[(r=t.default)==null?void 0:r.call(t,{isSelected:o,next:a,prev:i,select:c,selected:s})]}})}),{next:a,prev:i,select:c}}});const fr=U({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),Be=J(!1)({name:"VDefaultsProvider",props:fr(),setup(n,l){let{slots:t}=l;const{defaults:o,disabled:a,reset:i,root:c,scoped:s}=e.toRefs(n);return wn(o,{reset:i,root:c,scoped:s,disabled:a}),()=>{var u;return(u=t.default)==null?void 0:u.call(t)}}});function Ao(n,l){const t=e.ref(),o=e.shallowRef(!1);if(Xt){const a=new IntersectionObserver(i=>{n==null||n(i,a),o.value=!!i.find(c=>c.isIntersecting)},l);e.onBeforeUnmount(()=>{a.disconnect()}),e.watch(t,(i,c)=>{c&&(a.unobserve(c),o.value=!1),i&&a.observe(i)},{flush:"post"})}return{intersectionRef:t,isIntersecting:o}}function ll(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"content";const t=e.ref(),o=e.ref();if(ke){const a=new ResizeObserver(i=>{n==null||n(i,a),i.length&&(o.value=l==="content"?i[0].contentRect:i[0].target.getBoundingClientRect())});e.onBeforeUnmount(()=>{a.disconnect()}),e.watch(t,(i,c)=>{c&&(a.unobserve(ut(c)),o.value=void 0),i&&a.observe(ut(i))},{flush:"post"})}return{resizeRef:t,contentRect:e.readonly(o)}}const mr=U({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...ce(),...Gn(),...Ae({tag:"div"}),...we()},"VProgressCircular"),Po=J()({name:"VProgressCircular",props:mr(),setup(n,l){let{slots:t}=l;const o=2*Math.PI*20,a=e.ref(),{themeClasses:i}=xe(n),{sizeClasses:c,sizeStyles:s}=qn(n),{textColorClasses:u,textColorStyles:r}=$e(e.toRef(n,"color")),{textColorClasses:d,textColorStyles:p}=$e(e.toRef(n,"bgColor")),{intersectionRef:v,isIntersecting:m}=Ao(),{resizeRef:g,contentRect:f}=ll(),y=e.computed(()=>Math.max(0,Math.min(100,parseFloat(n.modelValue)))),h=e.computed(()=>Number(n.width)),k=e.computed(()=>s.value?Number(n.size):f.value?f.value.width:Math.max(h.value,32)),A=e.computed(()=>20/(1-h.value/k.value)*2),D=e.computed(()=>h.value/k.value*A.value),V=e.computed(()=>te((100-y.value)/100*o));return e.watchEffect(()=>{v.value=a.value,g.value=a.value}),ie(()=>e.createVNode(n.tag,{ref:a,class:["v-progress-circular",{"v-progress-circular--indeterminate":!!n.indeterminate,"v-progress-circular--visible":m.value,"v-progress-circular--disable-shrink":n.indeterminate==="disable-shrink"},i.value,c.value,u.value,n.class],style:[s.value,r.value,n.style],role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":n.indeterminate?void 0:y.value},{default:()=>[e.createVNode("svg",{style:{transform:`rotate(calc(-90deg + ${Number(n.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${A.value} ${A.value}`},[e.createVNode("circle",{class:["v-progress-circular__underlay",d.value],style:p.value,fill:"transparent",cx:"50%",cy:"50%",r:20,"stroke-width":D.value,"stroke-dasharray":o,"stroke-dashoffset":0},null),e.createVNode("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r:20,"stroke-width":D.value,"stroke-dasharray":o,"stroke-dashoffset":V.value},null)]),t.default&&e.createVNode("div",{class:"v-progress-circular__content"},[t.default({value:y.value})])]})),{}}}),un=U({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function cn(n){return{dimensionStyles:e.computed(()=>({height:te(n.height),maxHeight:te(n.maxHeight),maxWidth:te(n.maxWidth),minHeight:te(n.minHeight),minWidth:te(n.minWidth),width:te(n.width)}))}}const _o=Symbol.for("vuetify:locale");function It(){const n=e.inject(_o);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function Xn(){const n=e.inject(_o);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const Wl={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},ol=U({location:String},"location");function al(n){let l=arguments.length>1&&arguments[1]!==void 0&&arguments[1],t=arguments.length>2?arguments[2]:void 0;const{isRtl:o}=Xn();return{locationStyles:e.computed(()=>{if(!n.location)return{};const{side:i,align:c}=Rt(n.location.split(" ").length>1?n.location:`${n.location} center`,o.value);function s(r){return t?t(r):0}const u={};return i!=="center"&&(l?u[Wl[i]]=`calc(100% - ${s(i)}px)`:u[i]=0),c!=="center"?l?u[Wl[c]]=`calc(100% - ${s(c)}px)`:u[c]=0:(i==="center"?u.top=u.left="50%":u[{top:"left",bottom:"left",left:"top",right:"top"}[i]]="50%",u.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[i]),u})}}const yr=U({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...ce(),...ol({location:"top"}),...We(),...Ae(),...we()},"VProgressLinear"),gr=J()({name:"VProgressLinear",props:yr(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:t}=l;const o=be(n,"modelValue"),{isRtl:a,rtlClasses:i}=Xn(),{themeClasses:c}=xe(n),{locationStyles:s}=al(n),{textColorClasses:u,textColorStyles:r}=$e(n,"color"),{backgroundColorClasses:d,backgroundColorStyles:p}=Cn(e.computed(()=>n.bgColor||n.color)),{backgroundColorClasses:v,backgroundColorStyles:m}=Cn(n,"color"),{roundedClasses:g}=je(n),{intersectionRef:f,isIntersecting:y}=Ao(),h=e.computed(()=>parseInt(n.max,10)),k=e.computed(()=>parseInt(n.height,10)),A=e.computed(()=>parseFloat(n.bufferValue)/h.value*100),D=e.computed(()=>parseFloat(o.value)/h.value*100),V=e.computed(()=>a.value!==n.reverse),E=e.computed(()=>n.indeterminate?"fade-transition":"slide-x-transition"),$=e.computed(()=>n.bgOpacity==null?n.bgOpacity:parseFloat(n.bgOpacity));function _(B){if(!f.value)return;const{left:S,right:b,width:x}=f.value.getBoundingClientRect(),w=V.value?x-B.clientX+(b-x):B.clientX-S;o.value=Math.round(w/x*h.value)}return ie(()=>e.createVNode(n.tag,{ref:f,class:["v-progress-linear",{"v-progress-linear--absolute":n.absolute,"v-progress-linear--active":n.active&&y.value,"v-progress-linear--reverse":V.value,"v-progress-linear--rounded":n.rounded,"v-progress-linear--rounded-bar":n.roundedBar,"v-progress-linear--striped":n.striped},g.value,c.value,i.value,n.class],style:[{bottom:n.location==="bottom"?0:void 0,top:n.location==="top"?0:void 0,height:n.active?te(k.value):0,"--v-progress-linear-height":te(k.value),...s.value},n.style],role:"progressbar","aria-hidden":n.active?"false":"true","aria-valuemin":"0","aria-valuemax":n.max,"aria-valuenow":n.indeterminate?void 0:D.value,onClick:n.clickable&&_},{default:()=>[n.stream&&e.createVNode("div",{key:"stream",class:["v-progress-linear__stream",u.value],style:{...r.value,[V.value?"left":"right"]:te(-k.value),borderTop:`${te(k.value/2)} dotted`,opacity:$.value,top:`calc(50% - ${te(k.value/4)})`,width:te(100-A.value,"%"),"--v-progress-linear-stream-to":te(k.value*(V.value?1:-1))}},null),e.createVNode("div",{class:["v-progress-linear__background",d.value],style:[p.value,{opacity:$.value,width:te(n.stream?A.value:100,"%")}]},null),e.createVNode(e.Transition,{name:E.value},{default:()=>[n.indeterminate?e.createVNode("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(B=>e.createVNode("div",{key:B,class:["v-progress-linear__indeterminate",B,v.value],style:m.value},null))]):e.createVNode("div",{class:["v-progress-linear__determinate",v.value],style:[m.value,{width:te(D.value,"%")}]},null)]}),t.default&&e.createVNode("div",{class:"v-progress-linear__content"},[t.default({value:D.value,buffer:A.value})])]})),{}}}),rl=U({loading:[Boolean,String]},"loader");function St(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Re();return{loaderClasses:e.computed(()=>({[`${l}--loading`]:n.loading}))}}function il(n,l){var o;let{slots:t}=l;return e.createVNode("div",{class:`${n.name}__loader`},[((o=t.default)==null?void 0:o.call(t,{color:n.color,isActive:n.active}))||e.createVNode(gr,{absolute:n.absolute,active:n.active,color:n.color,height:"2",indeterminate:!0},null)])}const hr=["static","relative","fixed","absolute","sticky"],Oo=U({position:{type:String,validator:n=>hr.includes(n)}},"position");function zo(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Re();return{positionClasses:e.computed(()=>n.position?`${l}--${n.position}`:void 0)}}function Vt(n,l){const t=e.resolveDynamicComponent("RouterLink"),o=e.computed(()=>!(!n.href&&!n.to)),a=e.computed(()=>(o==null?void 0:o.value)||Vl(l,"click")||Vl(n,"click"));if(typeof t=="string")return{isLink:o,isClickable:a,href:e.toRef(n,"href")};const i=n.to?t.useLink(n):void 0,c=function(){const s=Ve("useRoute");return e.computed(()=>{var u;return(u=s==null?void 0:s.proxy)==null?void 0:u.$route})}();return{isLink:o,isClickable:a,route:i==null?void 0:i.route,navigate:i==null?void 0:i.navigate,isActive:i&&e.computed(()=>{var s,u,r;return n.exact?c.value?((s=i.isExactActive)==null?void 0:s.value)&&Bn(i.route.value.query,c.value.query):(u=i.isExactActive)==null?void 0:u.value:(r=i.isActive)==null?void 0:r.value}),href:e.computed(()=>n.to?i==null?void 0:i.route.value.href:n.href)}}const Bt=U({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let Nt=!1;const Dt=Symbol("rippleStop"),br=80;function jl(n,l){n.style.transform=l,n.style.webkitTransform=l}function Mt(n){return n.constructor.name==="TouchEvent"}function Eo(n){return n.constructor.name==="KeyboardEvent"}const yt={show(n,l){var m;let t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!((m=l==null?void 0:l._ripple)!=null&&m.enabled))return;const o=document.createElement("span"),a=document.createElement("span");o.appendChild(a),o.className="v-ripple__container",t.class&&(o.className+=` ${t.class}`);const{radius:i,scale:c,x:s,y:u,centerX:r,centerY:d}=function(g,f){var $;let y=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},h=0,k=0;if(!Eo(g)){const _=f.getBoundingClientRect(),B=Mt(g)?g.touches[g.touches.length-1]:g;h=B.clientX-_.left,k=B.clientY-_.top}let A=0,D=.3;($=f._ripple)!=null&&$.circle?(D=.15,A=f.clientWidth/2,A=y.center?A:A+Math.sqrt((h-A)**2+(k-A)**2)/4):A=Math.sqrt(f.clientWidth**2+f.clientHeight**2)/2;const V=(f.clientWidth-2*A)/2+"px",E=(f.clientHeight-2*A)/2+"px";return{radius:A,scale:D,x:y.center?V:h-A+"px",y:y.center?E:k-A+"px",centerX:V,centerY:E}}(n,l,t),p=2*i+"px";a.className="v-ripple__animation",a.style.width=p,a.style.height=p,l.appendChild(o);const v=window.getComputedStyle(l);v&&v.position==="static"&&(l.style.position="relative",l.dataset.previousPosition="static"),a.classList.add("v-ripple__animation--enter"),a.classList.add("v-ripple__animation--visible"),jl(a,`translate(${s}, ${u}) scale3d(${c},${c},${c})`),a.dataset.activated=String(performance.now()),setTimeout(()=>{a.classList.remove("v-ripple__animation--enter"),a.classList.add("v-ripple__animation--in"),jl(a,`translate(${r}, ${d}) scale3d(1,1,1)`)},0)},hide(n){var i;if(!((i=n==null?void 0:n._ripple)!=null&&i.enabled))return;const l=n.getElementsByClassName("v-ripple__animation");if(l.length===0)return;const t=l[l.length-1];if(t.dataset.isHiding)return;t.dataset.isHiding="true";const o=performance.now()-Number(t.dataset.activated),a=Math.max(250-o,0);setTimeout(()=>{t.classList.remove("v-ripple__animation--in"),t.classList.add("v-ripple__animation--out"),setTimeout(()=>{var c;n.getElementsByClassName("v-ripple__animation").length===1&&n.dataset.previousPosition&&(n.style.position=n.dataset.previousPosition,delete n.dataset.previousPosition),((c=t.parentNode)==null?void 0:c.parentNode)===n&&n.removeChild(t.parentNode)},300)},a)}};function To(n){return n===void 0||!!n}function Rn(n){const l={},t=n.currentTarget;if(t!=null&&t._ripple&&!t._ripple.touched&&!n[Dt]){if(n[Dt]=!0,Mt(n))t._ripple.touched=!0,t._ripple.isTouch=!0;else if(t._ripple.isTouch)return;if(l.center=t._ripple.centered||Eo(n),t._ripple.class&&(l.class=t._ripple.class),Mt(n)){if(t._ripple.showTimerCommit)return;t._ripple.showTimerCommit=()=>{yt.show(n,t,l)},t._ripple.showTimer=window.setTimeout(()=>{var o;(o=t==null?void 0:t._ripple)!=null&&o.showTimerCommit&&(t._ripple.showTimerCommit(),t._ripple.showTimerCommit=null)},br)}else yt.show(n,t,l)}}function Ul(n){n[Dt]=!0}function Ne(n){const l=n.currentTarget;if(l!=null&&l._ripple){if(window.clearTimeout(l._ripple.showTimer),n.type==="touchend"&&l._ripple.showTimerCommit)return l._ripple.showTimerCommit(),l._ripple.showTimerCommit=null,void(l._ripple.showTimer=window.setTimeout(()=>{Ne(n)}));window.setTimeout(()=>{l._ripple&&(l._ripple.touched=!1)}),yt.hide(l)}}function $o(n){const l=n.currentTarget;l!=null&&l._ripple&&(l._ripple.showTimerCommit&&(l._ripple.showTimerCommit=null),window.clearTimeout(l._ripple.showTimer))}let Dn=!1;function Ro(n){Dn||n.keyCode!==bl.enter&&n.keyCode!==bl.space||(Dn=!0,Rn(n))}function Do(n){Dn=!1,Ne(n)}function Mo(n){Dn&&(Dn=!1,Ne(n))}function Gl(n,l,t){const{value:o,modifiers:a}=l,i=To(o);if(i||yt.hide(n),n._ripple=n._ripple??{},n._ripple.enabled=i,n._ripple.centered=a.center,n._ripple.circle=a.circle,Et(o)&&o.class&&(n._ripple.class=o.class),i&&!t){if(a.stop)return n.addEventListener("touchstart",Ul,{passive:!0}),void n.addEventListener("mousedown",Ul);n.addEventListener("touchstart",Rn,{passive:!0}),n.addEventListener("touchend",Ne,{passive:!0}),n.addEventListener("touchmove",$o,{passive:!0}),n.addEventListener("touchcancel",Ne),n.addEventListener("mousedown",Rn),n.addEventListener("mouseup",Ne),n.addEventListener("mouseleave",Ne),n.addEventListener("keydown",Ro),n.addEventListener("keyup",Do),n.addEventListener("blur",Mo),n.addEventListener("dragstart",Ne,{passive:!0})}else!i&&t&&Lo(n)}function Lo(n){n.removeEventListener("mousedown",Rn),n.removeEventListener("touchstart",Rn),n.removeEventListener("touchend",Ne),n.removeEventListener("touchmove",$o),n.removeEventListener("touchcancel",Ne),n.removeEventListener("mouseup",Ne),n.removeEventListener("mouseleave",Ne),n.removeEventListener("keydown",Ro),n.removeEventListener("keyup",Do),n.removeEventListener("dragstart",Ne),n.removeEventListener("blur",Mo)}const Jn={mounted:function(n,l){Gl(n,l,!1)},unmounted:function(n){delete n._ripple,Lo(n)},updated:function(n,l){l.value!==l.oldValue&&Gl(n,l,To(l.oldValue))}},Cr=U({active:{type:Boolean,default:void 0},symbol:{type:null,default:No},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:fe,appendIcon:fe,block:Boolean,slim:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:String,...kn(),...ce(),...De(),...un(),...Fn(),...ko(),...rl(),...ol(),...Oo(),...We(),...Bt(),...Gn(),...Ae({tag:"button"}),...we(),...Ye({variant:"elevated"})},"VBtn"),ql=J()({name:"VBtn",directives:{Ripple:Jn},props:Cr(),emits:{"group:selected":n=>!0},setup(n,l){let{attrs:t,slots:o}=l;const{themeClasses:a}=xe(n),{borderClasses:i}=xn(n),{colorClasses:c,colorStyles:s,variantClasses:u}=Yn(n),{densityClasses:r}=Le(n),{dimensionStyles:d}=cn(n),{elevationClasses:p}=Nn(n),{loaderClasses:v}=St(n),{locationStyles:m}=al(n),{positionClasses:g}=zo(n),{roundedClasses:f}=je(n),{sizeClasses:y,sizeStyles:h}=qn(n),k=xo(n,n.symbol,!1),A=Vt(n,t),D=e.computed(()=>{var B;return n.active!==void 0?n.active:A.isLink.value?(B=A.isActive)==null?void 0:B.value:k==null?void 0:k.isSelected.value}),V=e.computed(()=>(k==null?void 0:k.disabled.value)||n.disabled),E=e.computed(()=>n.variant==="elevated"&&!(n.disabled||n.flat||n.border)),$=e.computed(()=>{if(n.value!==void 0&&typeof n.value!="symbol")return Object(n.value)===n.value?JSON.stringify(n.value,null,0):n.value});function _(B){var S;V.value||A.isLink.value&&(B.metaKey||B.ctrlKey||B.shiftKey||B.button!==0||t.target==="_blank")||((S=A.navigate)==null||S.call(A,B),k==null||k.toggle())}return function(B,S){e.watch(()=>{var b;return(b=B.isActive)==null?void 0:b.value},b=>{B.isLink.value&&b&&S&&e.nextTick(()=>{S(!0)})},{immediate:!0})}(A,k==null?void 0:k.select),ie(()=>{var W,P;const B=A.isLink.value?"a":n.tag,S=!(!n.prependIcon&&!o.prepend),b=!(!n.appendIcon&&!o.append),x=!(!n.icon||n.icon===!0),w=(k==null?void 0:k.isSelected.value)&&(!A.isLink.value||((W=A.isActive)==null?void 0:W.value))||!k||((P=A.isActive)==null?void 0:P.value);return e.withDirectives(e.createVNode(B,{type:B==="a"?void 0:"button",class:["v-btn",k==null?void 0:k.selectedClass.value,{"v-btn--active":D.value,"v-btn--block":n.block,"v-btn--disabled":V.value,"v-btn--elevated":E.value,"v-btn--flat":n.flat,"v-btn--icon":!!n.icon,"v-btn--loading":n.loading,"v-btn--slim":n.slim,"v-btn--stacked":n.stacked},a.value,i.value,w?c.value:void 0,r.value,p.value,v.value,g.value,f.value,y.value,u.value,n.class],style:[w?s.value:void 0,d.value,m.value,h.value,n.style],disabled:V.value||void 0,href:A.href.value,onClick:_,value:$.value},{default:()=>{var T;return[Kn(!0,"v-btn"),!n.icon&&S&&e.createVNode("span",{key:"prepend",class:"v-btn__prepend"},[o.prepend?e.createVNode(Be,{key:"prepend-defaults",disabled:!n.prependIcon,defaults:{VIcon:{icon:n.prependIcon}}},o.prepend):e.createVNode(me,{key:"prepend-icon",icon:n.prependIcon},null)]),e.createVNode("span",{class:"v-btn__content","data-no-activator":""},[!o.default&&x?e.createVNode(me,{key:"content-icon",icon:n.icon},null):e.createVNode(Be,{key:"content-defaults",disabled:!x,defaults:{VIcon:{icon:n.icon}}},{default:()=>{var F;return[((F=o.default)==null?void 0:F.call(o))??n.text]}})]),!n.icon&&b&&e.createVNode("span",{key:"append",class:"v-btn__append"},[o.append?e.createVNode(Be,{key:"append-defaults",disabled:!n.appendIcon,defaults:{VIcon:{icon:n.appendIcon}}},o.append):e.createVNode(me,{key:"append-icon",icon:n.appendIcon},null)]),!!n.loading&&e.createVNode("span",{key:"loader",class:"v-btn__loader"},[((T=o.loader)==null?void 0:T.call(o))??e.createVNode(Po,{color:typeof n.loading=="boolean"?void 0:n.loading,indeterminate:!0,size:"23",width:"2"},null)])]}}),[[e.resolveDirective("ripple"),!V.value&&n.ripple,null]])}),{}}}),dn=e.defineComponent({__name:"SaveFieldButtons",props:{loading:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonVariant:{},cancelButtonTitle:{},cancelIconColor:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideSaveIcon:{type:Boolean},cancelIcon:{},loadingIcon:{},loadingIconColor:{},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIconColor:{},saveIcon:{}},emits:["close","save"],setup(n,{emit:l}){const t=e.useAttrs(),o=l,a=n,i=e.inject(Symbol.for("vuetify:icons")),c=e.computed(()=>a.error),s=e.computed(()=>({[`${re}--save-fields-container`]:!0})),u=e.computed(()=>a.loading),r=e.reactive({...t,...a});e.watchEffect(()=>{Object.assign(r,{...t,...a})});const d=e.computed(()=>(i==null?void 0:i.defaultSet)==="fa"?"fa-spin":(i==null?void 0:i.defaultSet)==="mdi"?"mdi-spin":""),p=e.computed(()=>(h=>{const{cancelButtonVariant:k}=h;return{"me-1":k==="elevated","ms-1":!0}})({cancelButtonVariant:r.cancelButtonVariant})),v=e.computed(()=>Oe({icon:a.cancelIcon,iconOptions:i,name:"false"})),m=e.computed(()=>Oe({icon:a.loadingIcon,iconOptions:i,name:"loading"})),g=e.computed(()=>Oe({icon:a.saveIcon,iconOptions:i,name:"save"}));function f(){o("close")}function y(){o("save")}return(h,k)=>(e.openBlock(),e.createElementBlock("div",e.mergeProps({class:e.unref(s)},h.$attrs),[e.unref(r).hideSaveIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ql,{key:0,class:"ms-1",color:e.unref(r).saveButtonColor,disabled:e.unref(c),icon:"",size:e.unref(r).saveButtonSize,title:e.unref(u)?"Loading":e.unref(r).saveButtonTitle,variant:e.unref(r).saveButtonVariant,onClick:y},{default:e.withCtx(()=>[e.unref(u)?(e.openBlock(),e.createBlock(me,{key:1,class:e.normalizeClass(e.unref(d)),color:e.unref(r).loadingIconColor,icon:e.unref(m)},null,8,["class","color","icon"])):(e.openBlock(),e.createBlock(me,{key:0,color:e.unref(c)?"error":e.unref(r).saveIconColor,icon:e.unref(g)},null,8,["color","icon"]))]),_:1},8,["color","disabled","size","title","variant"])),e.unref(r).hideCancelIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ql,{key:1,class:e.normalizeClass(e.unref(p)),color:e.unref(r).cancelButtonColor,icon:"",size:e.unref(r).cancelButtonSize,title:e.unref(r).cancelButtonTitle,variant:e.unref(r).cancelButtonVariant,onClick:f},{default:e.withCtx(()=>[e.unref(r).hideSaveIcon&&e.unref(u)?(e.openBlock(),e.createBlock(me,{key:0,class:e.normalizeClass(e.unref(d)),color:e.unref(r).loadingIconColor,icon:e.unref(m)},null,8,["class","color","icon"])):(e.openBlock(),e.createBlock(me,{key:1,class:"text-default",color:e.unref(r).cancelIconColor,icon:e.unref(v)},null,8,["color","icon"]))]),_:1},8,["class","color","size","title","variant"]))],16))}}),Zn=n=>{const{required:l,rules:t}=n;let{value:o}=n;o=e.unref(o);const a=[];let i=!1;if(l&&!o)return a.push("Field is required."),{errors:!0,results:a};if(t){for(const c of t){const s=(typeof c=="function"?c:()=>c)(o);s!==!0&&(typeof s=="string"?a.push(s):console.warn(`${s} is not a valid value. Rule functions must return boolean true or a string.`))}i=a.length>0}return{errors:i,results:a}},pn=n=>{const{attrs:l,closeSiblings:t,fieldOnly:o,props:a,showField:i,timeOpened:c}=n;let s=c;return t&&!o&&(s=new Date),{settings:{...l,...a},showField:!e.unref(i),timeOpened:s}},sl=n=>{const{length:l=0}=n;let{suffix:t,text:o}=n;return o=o.toString(),t=t||"...",o.length>l?`${o.substring(0,l)}${t}`:o},vn=["error","update","update:closeSiblingFields","update:model-value"],Ir=["cancelButtonColor","cancelButtonSize","cancelButtonTitle","cancelButtonVariant","cancelIcon","cancelIconColor","closeSiblings","displayAppendIcon","displayAppendIconColor","displayAppendIconSize","displayAppendInnerIcon","displayAppendInnerIconColor","displayAppendInnerIconSize","displayPrependIcon","displayPrependIconColor","displayPrependIconSize","displayPrependInnerIcon","displayPrependInnerIconColor","displayPrependInnerIconSize","emptyText","fieldOnly","hideSaveIcon","loadingIcon","loadingIconColor","loadingWait","saveButtonColor","saveButtonSize","saveButtonTitle","saveButtonVariant","saveIcon","saveIconColor","tableField","truncateLength","truncateSuffix","underlineColor","underlineStyle","underlineWidth","underlined","valueColor"],An=n=>{let l=n;return l=Object.entries(l).filter(([t])=>!Ir.includes(t)),Object.fromEntries(l)},Wo=U({aspectRatio:[String,Number],contentClass:String,inline:Boolean,...ce(),...un()},"VResponsive"),Hl=J()({name:"VResponsive",props:Wo(),setup(n,l){let{slots:t}=l;const{aspectStyles:o}=function(i){return{aspectStyles:e.computed(()=>{const c=Number(i.aspectRatio);return c?{paddingBottom:String(1/c*100)+"%"}:void 0})}}(n),{dimensionStyles:a}=cn(n);return ie(()=>{var i;return e.createVNode("div",{class:["v-responsive",{"v-responsive--inline":n.inline},n.class],style:[a.value,n.style]},[e.createVNode("div",{class:"v-responsive__sizer",style:o.value},null),(i=t.additional)==null?void 0:i.call(t),t.default&&e.createVNode("div",{class:["v-responsive__content",n.contentClass]},[t.default()])])}),{}}}),Pn=U({transition:{type:[Boolean,String,Object],default:"fade-transition",validator:n=>n!==!0}},"transition"),Ue=(n,l)=>{let{slots:t}=l;const{transition:o,disabled:a,...i}=n,{component:c=e.Transition,...s}=typeof o=="object"?o:{};return e.h(c,e.mergeProps(typeof o=="string"?{name:a?"":o}:s,i,{disabled:a}),t)};function Kl(n,l){var o;const t=(o=n._observe)==null?void 0:o[l.instance.$.uid];t&&(t.observer.unobserve(n),delete n._observe[l.instance.$.uid])}const ul={mounted:function(n,l){if(!Xt)return;const t=l.modifiers||{},o=l.value,{handler:a,options:i}=typeof o=="object"?o:{handler:o,options:{}},c=new IntersectionObserver(function(){var p;let s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],u=arguments.length>1?arguments[1]:void 0;const r=(p=n._observe)==null?void 0:p[l.instance.$.uid];if(!r)return;const d=s.some(v=>v.isIntersecting);!a||t.quiet&&!r.init||t.once&&!d&&!r.init||a(d,s,u),d&&t.once?Kl(n,l):r.init=!0},i);n._observe=Object(n._observe),n._observe[l.instance.$.uid]={init:!1,observer:c},c.observe(n)},unmounted:Kl},Sr=U({alt:String,cover:Boolean,draggable:{type:[Boolean,String],default:void 0},eager:Boolean,gradient:String,lazySrc:String,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},sizes:String,src:{type:[String,Object],default:""},crossorigin:String,referrerpolicy:String,srcset:String,position:String,...Wo(),...ce(),...Pn()},"VImg"),jo=J()({name:"VImg",directives:{intersect:ul},props:Sr(),emits:{loadstart:n=>!0,load:n=>!0,error:n=>!0},setup(n,l){let{emit:t,slots:o}=l;const a=Ve("VImg"),i=e.shallowRef(""),c=e.ref(),s=e.shallowRef(n.eager?"loading":"idle"),u=e.shallowRef(),r=e.shallowRef(),d=e.computed(()=>n.src&&typeof n.src=="object"?{src:n.src.src,srcset:n.srcset||n.src.srcset,lazySrc:n.lazySrc||n.src.lazySrc,aspect:Number(n.aspectRatio||n.src.aspect||0)}:{src:n.src,srcset:n.srcset,lazySrc:n.lazySrc,aspect:Number(n.aspectRatio||0)}),p=e.computed(()=>d.value.aspect||u.value/r.value||0);function v(B){if((!n.eager||!B)&&(!Xt||B||n.eager)){if(s.value="loading",d.value.lazySrc){const S=new Image;S.src=d.value.lazySrc,h(S,null)}d.value.src&&e.nextTick(()=>{var S;t("loadstart",((S=c.value)==null?void 0:S.currentSrc)||d.value.src),setTimeout(()=>{var b;if(!a.isUnmounted)if((b=c.value)!=null&&b.complete){if(c.value.naturalWidth||g(),s.value==="error")return;p.value||h(c.value,null),s.value==="loading"&&m()}else p.value||h(c.value),f()})})}}function m(){var B;a.isUnmounted||(f(),h(c.value),s.value="loaded",t("load",((B=c.value)==null?void 0:B.currentSrc)||d.value.src))}function g(){var B;a.isUnmounted||(s.value="error",t("error",((B=c.value)==null?void 0:B.currentSrc)||d.value.src))}function f(){const B=c.value;B&&(i.value=B.currentSrc||B.src)}e.watch(()=>n.src,()=>{v(s.value!=="idle")}),e.watch(p,(B,S)=>{!B&&S&&c.value&&h(c.value)}),e.onBeforeMount(()=>v());let y=-1;function h(B){let S=arguments.length>1&&arguments[1]!==void 0?arguments[1]:100;const b=()=>{if(clearTimeout(y),a.isUnmounted)return;const{naturalHeight:x,naturalWidth:w}=B;x||w?(u.value=w,r.value=x):B.complete||s.value!=="loading"||S==null?(B.currentSrc.endsWith(".svg")||B.currentSrc.startsWith("data:image/svg+xml"))&&(u.value=1,r.value=1):y=window.setTimeout(b,S)};b()}e.onBeforeUnmount(()=>{clearTimeout(y)});const k=e.computed(()=>({"v-img__img--cover":n.cover,"v-img__img--contain":!n.cover})),A=()=>{var b;if(!d.value.src||s.value==="idle")return null;const B=e.createVNode("img",{class:["v-img__img",k.value],style:{objectPosition:n.position},src:d.value.src,srcset:d.value.srcset,alt:n.alt,crossorigin:n.crossorigin,referrerpolicy:n.referrerpolicy,draggable:n.draggable,sizes:n.sizes,ref:c,onLoad:m,onError:g},null),S=(b=o.sources)==null?void 0:b.call(o);return e.createVNode(Ue,{transition:n.transition,appear:!0},{default:()=>[e.withDirectives(S?e.createVNode("picture",{class:"v-img__picture"},[S,B]):B,[[e.vShow,s.value==="loaded"]])]})},D=()=>e.createVNode(Ue,{transition:n.transition},{default:()=>[d.value.lazySrc&&s.value!=="loaded"&&e.createVNode("img",{class:["v-img__img","v-img__img--preload",k.value],style:{objectPosition:n.position},src:d.value.lazySrc,alt:n.alt,crossorigin:n.crossorigin,referrerpolicy:n.referrerpolicy,draggable:n.draggable},null)]}),V=()=>o.placeholder?e.createVNode(Ue,{transition:n.transition,appear:!0},{default:()=>[(s.value==="loading"||s.value==="error"&&!o.error)&&e.createVNode("div",{class:"v-img__placeholder"},[o.placeholder()])]}):null,E=()=>o.error?e.createVNode(Ue,{transition:n.transition,appear:!0},{default:()=>[s.value==="error"&&e.createVNode("div",{class:"v-img__error"},[o.error()])]}):null,$=()=>n.gradient?e.createVNode("div",{class:"v-img__gradient",style:{backgroundImage:`linear-gradient(${n.gradient})`}},null):null,_=e.shallowRef(!1);{const B=e.watch(p,S=>{S&&(requestAnimationFrame(()=>{requestAnimationFrame(()=>{_.value=!0})}),B())})}return ie(()=>{const B=Hl.filterProps(n);return e.withDirectives(e.createVNode(Hl,e.mergeProps({class:["v-img",{"v-img--booting":!_.value},n.class],style:[{width:te(n.width==="auto"?u.value:n.width)},n.style]},B,{aspectRatio:p.value,"aria-label":n.alt,role:n.alt?"img":void 0}),{additional:()=>e.createVNode(e.Fragment,null,[e.createVNode(A,null,null),e.createVNode(D,null,null),e.createVNode($,null,null),e.createVNode(V,null,null),e.createVNode(E,null,null)]),default:o.default}),[[e.resolveDirective("intersect"),{handler:v,options:n.options},null,{once:!0}]])}),{currentSrc:i,image:c,state:s,naturalWidth:u,naturalHeight:r}}}),Vr=U({start:Boolean,end:Boolean,icon:fe,image:String,text:String,...ce(),...De(),...We(),...Gn(),...Ae(),...we(),...Ye({variant:"flat"})},"VAvatar"),qe=J()({name:"VAvatar",props:Vr(),setup(n,l){let{slots:t}=l;const{themeClasses:o}=xe(n),{colorClasses:a,colorStyles:i,variantClasses:c}=Yn(n),{densityClasses:s}=Le(n),{roundedClasses:u}=je(n),{sizeClasses:r,sizeStyles:d}=qn(n);return ie(()=>e.createVNode(n.tag,{class:["v-avatar",{"v-avatar--start":n.start,"v-avatar--end":n.end},o.value,a.value,s.value,u.value,r.value,c.value,n.class],style:[i.value,d.value,n.style]},{default:()=>{var p;return[n.image?e.createVNode(jo,{key:"image",src:n.image,alt:"",cover:!0},null):n.icon?e.createVNode(me,{key:"icon",icon:n.icon},null):((p=t.default)==null?void 0:p.call(t))??n.text,Kn(!1,"v-avatar")]}})),{}}}),Br=U({text:String,clickable:Boolean,...ce(),...we()},"VLabel"),Uo=J()({name:"VLabel",props:Br(),setup(n,l){let{slots:t}=l;return ie(()=>{var o;return e.createVNode("label",{class:["v-label",{"v-label--clickable":n.clickable},n.class],style:n.style},[n.text,(o=t.default)==null?void 0:o.call(t)])}),{}}}),Go=Symbol.for("vuetify:selection-control-group"),qo=U({color:String,disabled:{type:Boolean,default:null},defaultsTarget:String,error:Boolean,id:String,inline:Boolean,falseIcon:fe,trueIcon:fe,ripple:{type:Boolean,default:!0},multiple:{type:Boolean,default:null},name:String,readonly:{type:Boolean,default:null},modelValue:null,type:String,valueComparator:{type:Function,default:Bn},...ce(),...De(),...we()},"SelectionControlGroup"),wr=U({...qo({defaultsTarget:"VSelectionControl"})},"VSelectionControlGroup");J()({name:"VSelectionControlGroup",props:wr(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:t}=l;const o=be(n,"modelValue"),a=ze(),i=e.computed(()=>n.id||`v-selection-control-group-${a}`),c=e.computed(()=>n.name||i.value),s=new Set;return e.provide(Go,{modelValue:o,forceUpdate:()=>{s.forEach(u=>u())},onForceUpdate:u=>{s.add(u),e.onScopeDispose(()=>{s.delete(u)})}}),wn({[n.defaultsTarget]:{color:e.toRef(n,"color"),disabled:e.toRef(n,"disabled"),density:e.toRef(n,"density"),error:e.toRef(n,"error"),inline:e.toRef(n,"inline"),modelValue:o,multiple:e.computed(()=>!!n.multiple||n.multiple==null&&Array.isArray(o.value)),name:c,falseIcon:e.toRef(n,"falseIcon"),trueIcon:e.toRef(n,"trueIcon"),readonly:e.toRef(n,"readonly"),ripple:e.toRef(n,"ripple"),type:e.toRef(n,"type"),valueComparator:e.toRef(n,"valueComparator")}}),ie(()=>{var u;return e.createVNode("div",{class:["v-selection-control-group",{"v-selection-control-group--inline":n.inline},n.class],style:n.style,role:n.type==="radio"?"radiogroup":void 0},[(u=t.default)==null?void 0:u.call(t)])}),{}}});const cl=U({label:String,baseColor:String,trueValue:null,falseValue:null,value:null,...ce(),...qo()},"VSelectionControl"),gt=J()({name:"VSelectionControl",directives:{Ripple:Jn},inheritAttrs:!1,props:cl(),emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:t,slots:o}=l;const{group:a,densityClasses:i,icon:c,model:s,textColorClasses:u,textColorStyles:r,backgroundColorClasses:d,backgroundColorStyles:p,trueValue:v}=function(V){const E=e.inject(Go,void 0),{densityClasses:$}=Le(V),_=be(V,"modelValue"),B=e.computed(()=>V.trueValue!==void 0?V.trueValue:V.value===void 0||V.value),S=e.computed(()=>V.falseValue!==void 0&&V.falseValue),b=e.computed(()=>!!V.multiple||V.multiple==null&&Array.isArray(_.value)),x=e.computed({get(){const C=E?E.modelValue.value:_.value;return b.value?Pe(C).some(N=>V.valueComparator(N,B.value)):V.valueComparator(C,B.value)},set(C){if(V.readonly)return;const N=C?B.value:S.value;let L=N;b.value&&(L=C?[...Pe(_.value),N]:Pe(_.value).filter(M=>!V.valueComparator(M,B.value))),E?E.modelValue.value=L:_.value=L}}),{textColorClasses:w,textColorStyles:W}=$e(e.computed(()=>{if(!V.error&&!V.disabled)return x.value?V.color:V.baseColor})),{backgroundColorClasses:P,backgroundColorStyles:T}=Cn(e.computed(()=>!x.value||V.error||V.disabled?void 0:V.color)),F=e.computed(()=>x.value?V.trueIcon:V.falseIcon);return{group:E,densityClasses:$,trueValue:B,falseValue:S,model:x,textColorClasses:w,textColorStyles:W,backgroundColorClasses:P,backgroundColorStyles:T,icon:F}}(n),m=ze(),g=e.computed(()=>n.id||`input-${m}`),f=e.shallowRef(!1),y=e.shallowRef(!1),h=e.ref();function k(V){f.value=!0,bn(V.target,":focus-visible")!==!1&&(y.value=!0)}function A(){f.value=!1,y.value=!1}function D(V){n.readonly&&a&&e.nextTick(()=>a.forceUpdate()),s.value=V.target.checked}return a==null||a.onForceUpdate(()=>{h.value&&(h.value.checked=s.value)}),ie(()=>{var B,S;const V=o.label?o.label({label:n.label,props:{for:g.value}}):n.label,[E,$]=jn(t),_=e.createVNode("input",e.mergeProps({ref:h,checked:s.value,disabled:!(!n.readonly&&!n.disabled),id:g.value,onBlur:A,onFocus:k,onInput:D,"aria-disabled":!(!n.readonly&&!n.disabled),type:n.type,value:v.value,name:n.name,"aria-checked":n.type==="checkbox"?s.value:void 0},$),null);return e.createVNode("div",e.mergeProps({class:["v-selection-control",{"v-selection-control--dirty":s.value,"v-selection-control--disabled":n.disabled,"v-selection-control--error":n.error,"v-selection-control--focused":f.value,"v-selection-control--focus-visible":y.value,"v-selection-control--inline":n.inline},i.value,n.class]},E,{style:n.style}),[e.createVNode("div",{class:["v-selection-control__wrapper",u.value],style:r.value},[(B=o.default)==null?void 0:B.call(o,{backgroundColorClasses:d,backgroundColorStyles:p}),e.withDirectives(e.createVNode("div",{class:["v-selection-control__input"]},[((S=o.input)==null?void 0:S.call(o,{model:s,textColorClasses:u,textColorStyles:r,backgroundColorClasses:d,backgroundColorStyles:p,inputNode:_,icon:c.value,props:{onFocus:k,onBlur:A,id:g.value}}))??e.createVNode(e.Fragment,null,[c.value&&e.createVNode(me,{key:"icon",icon:c.value},null),_])]),[[e.resolveDirective("ripple"),n.ripple&&[!n.disabled&&!n.readonly,null,["center","circle"]]]])]),V&&e.createVNode(Uo,{for:g.value,clickable:!0,onClick:b=>b.stopPropagation()},{default:()=>[V]})])}),{isFocused:f,input:h}}}),Ho=U({indeterminate:Boolean,indeterminateIcon:{type:fe,default:"$checkboxIndeterminate"},...cl({falseIcon:"$checkboxOff",trueIcon:"$checkboxOn"})},"VCheckboxBtn"),ht=J()({name:"VCheckboxBtn",props:Ho(),emits:{"update:modelValue":n=>!0,"update:indeterminate":n=>!0},setup(n,l){let{slots:t}=l;const o=be(n,"indeterminate"),a=be(n,"modelValue");function i(u){o.value&&(o.value=!1)}const c=e.computed(()=>o.value?n.indeterminateIcon:n.falseIcon),s=e.computed(()=>o.value?n.indeterminateIcon:n.trueIcon);return ie(()=>{const u=Ke(gt.filterProps(n),["modelValue"]);return e.createVNode(gt,e.mergeProps(u,{modelValue:a.value,"onUpdate:modelValue":[r=>a.value=r,i],class:["v-checkbox-btn",n.class],style:n.style,type:"checkbox",falseIcon:c.value,trueIcon:s.value,"aria-checked":o.value?"mixed":void 0}),t)}),{}}});function Ko(n){const{t:l}=It();return{InputIcon:function(t){let{name:o}=t;const a={prepend:"prependAction",prependInner:"prependAction",append:"appendAction",appendInner:"appendAction",clear:"clear"}[o],i=n[`onClick:${o}`],c=i&&a?l(`$vuetify.input.${a}`,n.label??""):void 0;return e.createVNode(me,{icon:n[`${o}Icon`],"aria-label":c,onClick:i},null)}}}const kr=U({disabled:Boolean,group:Boolean,hideOnLeave:Boolean,leaveAbsolute:Boolean,mode:String,origin:String},"transition");function Fe(n,l,t){return J()({name:n,props:kr({mode:t,origin:l}),setup(o,a){let{slots:i}=a;const c={onBeforeEnter(s){o.origin&&(s.style.transformOrigin=o.origin)},onLeave(s){if(o.leaveAbsolute){const{offsetTop:u,offsetLeft:r,offsetWidth:d,offsetHeight:p}=s;s._transitionInitialStyles={position:s.style.position,top:s.style.top,left:s.style.left,width:s.style.width,height:s.style.height},s.style.position="absolute",s.style.top=`${u}px`,s.style.left=`${r}px`,s.style.width=`${d}px`,s.style.height=`${p}px`}o.hideOnLeave&&s.style.setProperty("display","none","important")},onAfterLeave(s){if(o.leaveAbsolute&&(s!=null&&s._transitionInitialStyles)){const{position:u,top:r,left:d,width:p,height:v}=s._transitionInitialStyles;delete s._transitionInitialStyles,s.style.position=u||"",s.style.top=r||"",s.style.left=d||"",s.style.width=p||"",s.style.height=v||""}}};return()=>{const s=o.group?e.TransitionGroup:e.Transition;return e.h(s,{name:o.disabled?"":n,css:!o.disabled,...o.group?void 0:{mode:o.mode},...o.disabled?{}:c},i.default)}}})}function Yo(n,l){let t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"in-out";return J()({name:n,props:{mode:{type:String,default:t},disabled:Boolean},setup(o,a){let{slots:i}=a;return()=>e.h(e.Transition,{name:o.disabled?"":n,css:!o.disabled,...o.disabled?{}:l},i.default)}})}function Xo(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";const l=arguments.length>1&&arguments[1]!==void 0&&arguments[1]?"width":"height",t=e.camelize(`offset-${l}`);return{onBeforeEnter(i){i._parent=i.parentNode,i._initialStyle={transition:i.style.transition,overflow:i.style.overflow,[l]:i.style[l]}},onEnter(i){const c=i._initialStyle;i.style.setProperty("transition","none","important"),i.style.overflow="hidden";const s=`${i[t]}px`;i.style[l]="0",i.offsetHeight,i.style.transition=c.transition,n&&i._parent&&i._parent.classList.add(n),requestAnimationFrame(()=>{i.style[l]=s})},onAfterEnter:a,onEnterCancelled:a,onLeave(i){i._initialStyle={transition:"",overflow:i.style.overflow,[l]:i.style[l]},i.style.overflow="hidden",i.style[l]=`${i[t]}px`,i.offsetHeight,requestAnimationFrame(()=>i.style[l]="0")},onAfterLeave:o,onLeaveCancelled:o};function o(i){n&&i._parent&&i._parent.classList.remove(n),a(i)}function a(i){const c=i._initialStyle[l];i.style.overflow=i._initialStyle.overflow,c!=null&&(i.style[l]=c),delete i._initialStyle}}const xr=U({target:[Object,Array]},"v-dialog-transition"),Jo=J()({name:"VDialogTransition",props:xr(),setup(n,l){let{slots:t}=l;const o={onBeforeEnter(a){a.style.pointerEvents="none",a.style.visibility="hidden"},async onEnter(a,i){var v;await new Promise(m=>requestAnimationFrame(m)),await new Promise(m=>requestAnimationFrame(m)),a.style.visibility="";const{x:c,y:s,sx:u,sy:r,speed:d}=Xl(n.target,a),p=gn(a,[{transform:`translate(${c}px, ${s}px) scale(${u}, ${r})`,opacity:0},{}],{duration:225*d,easing:"cubic-bezier(0.0, 0, 0.2, 1)"});(v=Yl(a))==null||v.forEach(m=>{gn(m,[{opacity:0},{opacity:0,offset:.33},{}],{duration:450*d,easing:vt})}),p.finished.then(()=>i())},onAfterEnter(a){a.style.removeProperty("pointer-events")},onBeforeLeave(a){a.style.pointerEvents="none"},async onLeave(a,i){var p;await new Promise(v=>requestAnimationFrame(v));const{x:c,y:s,sx:u,sy:r,speed:d}=Xl(n.target,a);gn(a,[{},{transform:`translate(${c}px, ${s}px) scale(${u}, ${r})`,opacity:0}],{duration:125*d,easing:"cubic-bezier(0.4, 0, 1, 1)"}).finished.then(()=>i()),(p=Yl(a))==null||p.forEach(v=>{gn(v,[{},{opacity:0,offset:.2},{opacity:0}],{duration:250*d,easing:vt})})},onAfterLeave(a){a.style.removeProperty("pointer-events")}};return()=>n.target?e.createVNode(e.Transition,e.mergeProps({name:"dialog-transition"},o,{css:!1}),t):e.createVNode(e.Transition,{name:"dialog-transition"},t)}});function Yl(n){var t;const l=(t=n.querySelector(":scope > .v-card, :scope > .v-sheet, :scope > .v-list"))==null?void 0:t.children;return l&&[...l]}function Xl(n,l){const t=bo(n),o=Qt(l),[a,i]=getComputedStyle(l).transformOrigin.split(" ").map(h=>parseFloat(h)),[c,s]=getComputedStyle(l).getPropertyValue("--v-overlay-anchor-origin").split(" ");let u=t.left+t.width/2;c==="left"||s==="left"?u-=t.width/2:c!=="right"&&s!=="right"||(u+=t.width/2);let r=t.top+t.height/2;c==="top"||s==="top"?r-=t.height/2:c!=="bottom"&&s!=="bottom"||(r+=t.height/2);const d=t.width/o.width,p=t.height/o.height,v=Math.max(1,d,p),m=d/v||0,g=p/v||0,f=o.width*o.height/(window.innerWidth*window.innerHeight),y=f>.12?Math.min(1.5,10*(f-.12)+1):1;return{x:u-(a+o.left),y:r-(i+o.top),sx:m,sy:g,speed:y}}Fe("fab-transition","center center","out-in"),Fe("dialog-bottom-transition"),Fe("dialog-top-transition"),Fe("fade-transition");const Fr=Fe("scale-transition");Fe("scroll-x-transition"),Fe("scroll-x-reverse-transition"),Fe("scroll-y-transition"),Fe("scroll-y-reverse-transition"),Fe("slide-x-transition"),Fe("slide-x-reverse-transition");const Zo=Fe("slide-y-transition");Fe("slide-y-reverse-transition");const Nr=Yo("expand-transition",Xo()),Qo=Yo("expand-x-transition",Xo("",!0)),Ar=U({active:Boolean,color:String,messages:{type:[Array,String],default:()=>[]},...ce(),...Pn({transition:{component:Zo,leaveAbsolute:!0,group:!0}})},"VMessages"),Pr=J()({name:"VMessages",props:Ar(),setup(n,l){let{slots:t}=l;const o=e.computed(()=>Pe(n.messages)),{textColorClasses:a,textColorStyles:i}=$e(e.computed(()=>n.color));return ie(()=>e.createVNode(Ue,{transition:n.transition,tag:"div",class:["v-messages",a.value,n.class],style:[i.value,n.style],role:"alert","aria-live":"polite"},{default:()=>[n.active&&o.value.map((c,s)=>e.createVNode("div",{class:"v-messages__message",key:`${s}-${o.value}`},[t.message?t.message({message:c}):c]))]})),{}}}),ea=U({focused:Boolean,"onUpdate:focused":Te()},"focus");function Qn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Re();const t=be(n,"focused");return{focusClasses:e.computed(()=>({[`${l}--focused`]:t.value})),isFocused:t,focus:function(){t.value=!0},blur:function(){t.value=!1}}}const _r=Symbol.for("vuetify:form");function dl(){return e.inject(_r,null)}const Or=U({disabled:{type:Boolean,default:null},error:Boolean,errorMessages:{type:[Array,String],default:()=>[]},maxErrors:{type:[Number,String],default:1},name:String,label:String,readonly:{type:Boolean,default:null},rules:{type:Array,default:()=>[]},modelValue:null,validateOn:String,validationValue:null,...ea()},"validation"),et=U({id:String,appendIcon:fe,centerAffix:{type:Boolean,default:!0},prependIcon:fe,hideDetails:[Boolean,String],hideSpinButtons:Boolean,hint:String,persistentHint:Boolean,messages:{type:[Array,String],default:()=>[]},direction:{type:String,default:"horizontal",validator:n=>["horizontal","vertical"].includes(n)},"onClick:prepend":Te(),"onClick:append":Te(),...ce(),...De(),...Or()},"VInput"),He=J()({name:"VInput",props:{...et()},emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:t,slots:o,emit:a}=l;const{densityClasses:i}=Le(n),{rtlClasses:c}=Xn(),{InputIcon:s}=Ko(n),u=ze(),r=e.computed(()=>n.id||`input-${u}`),d=e.computed(()=>`${r.value}-messages`),{errorMessages:p,isDirty:v,isDisabled:m,isReadonly:g,isPristine:f,isValid:y,isValidating:h,reset:k,resetValidation:A,validate:D,validationClasses:V}=function(_){let B=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Re(),S=arguments.length>2&&arguments[2]!==void 0?arguments[2]:ze();const b=be(_,"modelValue"),x=e.computed(()=>_.validationValue===void 0?b.value:_.validationValue),w=dl(),W=e.ref([]),P=e.shallowRef(!0),T=e.computed(()=>!(!Pe(b.value===""?null:b.value).length&&!Pe(x.value===""?null:x.value).length)),F=e.computed(()=>!!(_.disabled??(w==null?void 0:w.isDisabled.value))),C=e.computed(()=>!!(_.readonly??(w==null?void 0:w.isReadonly.value))),N=e.computed(()=>{var I;return(I=_.errorMessages)!=null&&I.length?Pe(_.errorMessages).concat(W.value).slice(0,Math.max(0,+_.maxErrors)):W.value}),L=e.computed(()=>{let I=(_.validateOn??(w==null?void 0:w.validateOn.value))||"input";I==="lazy"&&(I="input lazy");const G=new Set((I==null?void 0:I.split(" "))??[]);return{blur:G.has("blur")||G.has("input"),input:G.has("input"),submit:G.has("submit"),lazy:G.has("lazy")}}),M=e.computed(()=>{var I;return!_.error&&!((I=_.errorMessages)!=null&&I.length)&&(!_.rules.length||(P.value?!W.value.length&&!L.value.lazy||null:!W.value.length))}),q=e.shallowRef(!1),j=e.computed(()=>({[`${B}--error`]:M.value===!1,[`${B}--dirty`]:T.value,[`${B}--disabled`]:F.value,[`${B}--readonly`]:C.value})),H=e.computed(()=>_.name??e.unref(S));function R(){b.value=null,e.nextTick(O)}function O(){P.value=!0,L.value.lazy?W.value=[]:z(!0)}async function z(){let I=arguments.length>0&&arguments[0]!==void 0&&arguments[0];const G=[];q.value=!0;for(const Y of _.rules){if(G.length>=+(_.maxErrors??1))break;const ee=typeof Y=="function"?Y:()=>Y,K=await ee(x.value);K!==!0&&(K===!1||typeof K=="string"?G.push(K||""):console.warn(`${K} is not a valid value. Rule functions must return boolean true or a string.`))}return W.value=G,q.value=!1,P.value=I,W.value}return e.onBeforeMount(()=>{w==null||w.register({id:H.value,validate:z,reset:R,resetValidation:O})}),e.onBeforeUnmount(()=>{w==null||w.unregister(H.value)}),e.onMounted(async()=>{L.value.lazy||await z(!0),w==null||w.update(H.value,M.value,N.value)}),nn(()=>L.value.input,()=>{e.watch(x,()=>{if(x.value!=null)z();else if(_.focused){const I=e.watch(()=>_.focused,G=>{G||z(),I()})}})}),nn(()=>L.value.blur,()=>{e.watch(()=>_.focused,I=>{I||z()})}),e.watch(M,()=>{w==null||w.update(H.value,M.value,N.value)}),{errorMessages:N,isDirty:T,isDisabled:F,isReadonly:C,isPristine:P,isValid:M,isValidating:q,reset:R,resetValidation:O,validate:z,validationClasses:j}}(n,"v-input",r),E=e.computed(()=>({id:r,messagesId:d,isDirty:v,isDisabled:m,isReadonly:g,isPristine:f,isValid:y,isValidating:h,reset:k,resetValidation:A,validate:D})),$=e.computed(()=>{var _;return(_=n.errorMessages)!=null&&_.length||!f.value&&p.value.length?p.value:n.hint&&(n.persistentHint||n.focused)?n.hint:n.messages});return ie(()=>{var x,w,W,P;const _=!(!o.prepend&&!n.prependIcon),B=!(!o.append&&!n.appendIcon),S=$.value.length>0,b=!n.hideDetails||n.hideDetails==="auto"&&(S||!!o.details);return e.createVNode("div",{class:["v-input",`v-input--${n.direction}`,{"v-input--center-affix":n.centerAffix,"v-input--hide-spin-buttons":n.hideSpinButtons},i.value,c.value,V.value,n.class],style:n.style},[_&&e.createVNode("div",{key:"prepend",class:"v-input__prepend"},[(x=o.prepend)==null?void 0:x.call(o,E.value),n.prependIcon&&e.createVNode(s,{key:"prepend-icon",name:"prepend"},null)]),o.default&&e.createVNode("div",{class:"v-input__control"},[(w=o.default)==null?void 0:w.call(o,E.value)]),B&&e.createVNode("div",{key:"append",class:"v-input__append"},[n.appendIcon&&e.createVNode(s,{key:"append-icon",name:"append"},null),(W=o.append)==null?void 0:W.call(o,E.value)]),b&&e.createVNode("div",{class:"v-input__details"},[e.createVNode(Pr,{id:d.value,active:S,messages:$.value},{message:o.message}),(P=o.details)==null?void 0:P.call(o,E.value)])])}),{reset:k,resetValidation:A,validate:D,isValid:y,errorMessages:p}}}),zr=U({...et(),...Ke(Ho(),["inline"])},"VCheckbox"),Er=J()({name:"VCheckbox",inheritAttrs:!1,props:zr(),emits:{"update:modelValue":n=>!0,"update:focused":n=>!0},setup(n,l){let{attrs:t,slots:o}=l;const a=be(n,"modelValue"),{isFocused:i,focus:c,blur:s}=Qn(n),u=ze(),r=e.computed(()=>n.id||`checkbox-${u}`);return ie(()=>{const[d,p]=jn(t),v=He.filterProps(n),m=ht.filterProps(n);return e.createVNode(He,e.mergeProps({class:["v-checkbox",n.class]},d,v,{modelValue:a.value,"onUpdate:modelValue":g=>a.value=g,id:r.value,focused:i.value,style:n.style}),{...o,default:g=>{let{id:f,messagesId:y,isDisabled:h,isReadonly:k}=g;return e.createVNode(ht,e.mergeProps(m,{id:f.value,"aria-describedby":y.value,disabled:h.value,readonly:k.value},p,{modelValue:a.value,"onUpdate:modelValue":A=>a.value=A,onFocus:c,onBlur:s}),o)}})}),{}}}),na=Symbol.for("vuetify:v-chip-group"),Tr=U({column:Boolean,filter:Boolean,valueComparator:{type:Function,default:Bn},...ce(),...wo({selectedClass:"v-chip--selected"}),...Ae(),...we(),...Ye({variant:"tonal"})},"VChipGroup");J()({name:"VChipGroup",props:Tr(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:t}=l;const{themeClasses:o}=xe(n),{isSelected:a,select:i,next:c,prev:s,selected:u}=Fo(n,na);return wn({VChip:{color:e.toRef(n,"color"),disabled:e.toRef(n,"disabled"),filter:e.toRef(n,"filter"),variant:e.toRef(n,"variant")}}),ie(()=>e.createVNode(n.tag,{class:["v-chip-group",{"v-chip-group--column":n.column},o.value,n.class],style:n.style},{default:()=>{var r;return[(r=t.default)==null?void 0:r.call(t,{isSelected:a,select:i,next:c,prev:s,selected:u.value})]}})),{}}});const $r=U({activeClass:String,appendAvatar:String,appendIcon:fe,closable:Boolean,closeIcon:{type:fe,default:"$delete"},closeLabel:{type:String,default:"$vuetify.close"},draggable:Boolean,filter:Boolean,filterIcon:{type:String,default:"$complete"},label:Boolean,link:{type:Boolean,default:void 0},pill:Boolean,prependAvatar:String,prependIcon:fe,ripple:{type:[Boolean,Object],default:!0},text:String,modelValue:{type:Boolean,default:!0},onClick:Te(),onClickOnce:Te(),...kn(),...ce(),...De(),...Fn(),...ko(),...We(),...Bt(),...Gn(),...Ae({tag:"span"}),...we(),...Ye({variant:"tonal"})},"VChip"),ta=J()({name:"VChip",directives:{Ripple:Jn},props:$r(),emits:{"click:close":n=>!0,"update:modelValue":n=>!0,"group:selected":n=>!0,click:n=>!0},setup(n,l){let{attrs:t,emit:o,slots:a}=l;const{t:i}=It(),{borderClasses:c}=xn(n),{colorClasses:s,colorStyles:u,variantClasses:r}=Yn(n),{densityClasses:d}=Le(n),{elevationClasses:p}=Nn(n),{roundedClasses:v}=je(n),{sizeClasses:m}=qn(n),{themeClasses:g}=xe(n),f=be(n,"modelValue"),y=xo(n,na,!1),h=Vt(n,t),k=e.computed(()=>n.link!==!1&&h.isLink.value),A=e.computed(()=>!n.disabled&&n.link!==!1&&(!!y||n.link||h.isClickable.value)),D=e.computed(()=>({"aria-label":i(n.closeLabel),onClick($){$.stopPropagation(),f.value=!1,o("click:close",$)}}));function V($){var _;o("click",$),A.value&&((_=h.navigate)==null||_.call(h,$),y==null||y.toggle())}function E($){$.key!=="Enter"&&$.key!==" "||($.preventDefault(),V($))}return()=>{const $=h.isLink.value?"a":n.tag,_=!(!n.appendIcon&&!n.appendAvatar),B=!(!_&&!a.append),S=!(!a.close&&!n.closable),b=!(!a.filter&&!n.filter)&&y,x=!(!n.prependIcon&&!n.prependAvatar),w=!(!x&&!a.prepend),W=!y||y.isSelected.value;return f.value&&e.withDirectives(e.createVNode($,{class:["v-chip",{"v-chip--disabled":n.disabled,"v-chip--label":n.label,"v-chip--link":A.value,"v-chip--filter":b,"v-chip--pill":n.pill},g.value,c.value,W?s.value:void 0,d.value,p.value,v.value,m.value,r.value,y==null?void 0:y.selectedClass.value,n.class],style:[W?u.value:void 0,n.style],disabled:n.disabled||void 0,draggable:n.draggable,href:h.href.value,tabindex:A.value?0:void 0,onClick:V,onKeydown:A.value&&!k.value&&E},{default:()=>{var P;return[Kn(A.value,"v-chip"),b&&e.createVNode(Qo,{key:"filter"},{default:()=>[e.withDirectives(e.createVNode("div",{class:"v-chip__filter"},[a.filter?e.createVNode(Be,{key:"filter-defaults",disabled:!n.filterIcon,defaults:{VIcon:{icon:n.filterIcon}}},a.filter):e.createVNode(me,{key:"filter-icon",icon:n.filterIcon},null)]),[[e.vShow,y.isSelected.value]])]}),w&&e.createVNode("div",{key:"prepend",class:"v-chip__prepend"},[a.prepend?e.createVNode(Be,{key:"prepend-defaults",disabled:!x,defaults:{VAvatar:{image:n.prependAvatar,start:!0},VIcon:{icon:n.prependIcon,start:!0}}},a.prepend):e.createVNode(e.Fragment,null,[n.prependIcon&&e.createVNode(me,{key:"prepend-icon",icon:n.prependIcon,start:!0},null),n.prependAvatar&&e.createVNode(qe,{key:"prepend-avatar",image:n.prependAvatar,start:!0},null)])]),e.createVNode("div",{class:"v-chip__content"},[((P=a.default)==null?void 0:P.call(a,{isSelected:y==null?void 0:y.isSelected.value,selectedClass:y==null?void 0:y.selectedClass.value,select:y==null?void 0:y.select,toggle:y==null?void 0:y.toggle,value:y==null?void 0:y.value.value,disabled:n.disabled}))??n.text]),B&&e.createVNode("div",{key:"append",class:"v-chip__append"},[a.append?e.createVNode(Be,{key:"append-defaults",disabled:!_,defaults:{VAvatar:{end:!0,image:n.appendAvatar},VIcon:{end:!0,icon:n.appendIcon}}},a.append):e.createVNode(e.Fragment,null,[n.appendIcon&&e.createVNode(me,{key:"append-icon",end:!0,icon:n.appendIcon},null),n.appendAvatar&&e.createVNode(qe,{key:"append-avatar",end:!0,image:n.appendAvatar},null)])]),S&&e.createVNode("button",e.mergeProps({key:"close",class:"v-chip__close",type:"button"},D.value),[a.close?e.createVNode(Be,{key:"close-defaults",defaults:{VIcon:{icon:n.closeIcon,size:"x-small"}}},a.close):e.createVNode(me,{key:"close-icon",icon:n.closeIcon,size:"x-small"},null)])]}}),[[e.resolveDirective("ripple"),A.value&&n.ripple,null]])}}}),Lt=Symbol.for("vuetify:list");function la(){const n=e.inject(Lt,{hasPrepend:e.shallowRef(!1),updateHasPrepend:()=>null}),l={hasPrepend:e.shallowRef(!1),updateHasPrepend:t=>{t&&(l.hasPrepend.value=t)}};return e.provide(Lt,l),n}function oa(){return e.inject(Lt,null)}const Rr={open:n=>{let{id:l,value:t,opened:o,parents:a}=n;if(t){const i=new Set;i.add(l);let c=a.get(l);for(;c!=null;)i.add(c),c=a.get(c);return i}return o.delete(l),o},select:()=>null},aa={open:n=>{let{id:l,value:t,opened:o,parents:a}=n;if(t){let i=a.get(l);for(o.add(l);i!=null&&i!==l;)o.add(i),i=a.get(i);return o}return o.delete(l),o},select:()=>null},Dr={open:aa.open,select:n=>{let{id:l,value:t,opened:o,parents:a}=n;if(!t)return o;const i=[];let c=a.get(l);for(;c!=null;)i.push(c),c=a.get(c);return new Set(i)}},Wt=n=>{const l={select:t=>{let{id:o,value:a,selected:i}=t;if(o=e.toRaw(o),n&&!a){const c=Array.from(i.entries()).reduce((s,u)=>{let[r,d]=u;return d==="on"?[...s,r]:s},[]);if(c.length===1&&c[0]===o)return i}return i.set(o,a?"on":"off"),i},in:(t,o,a)=>{let i=new Map;for(const c of t||[])i=l.select({id:c,value:!0,selected:new Map(i),children:o,parents:a});return i},out:t=>{const o=[];for(const[a,i]of t.entries())i==="on"&&o.push(a);return o}};return l},Jl=n=>{const l=Wt(n);return{select:t=>{let{selected:o,id:a,...i}=t;a=e.toRaw(a);const c=o.has(a)?new Map([[a,o.get(a)]]):new Map;return l.select({...i,id:a,selected:c})},in:(t,o,a)=>{let i=new Map;return t!=null&&t.length&&(i=l.in(t.slice(0,1),o,a)),i},out:(t,o,a)=>l.out(t,o,a)}},Mn=Symbol.for("vuetify:nested"),ra={id:e.shallowRef(),root:{register:()=>null,unregister:()=>null,parents:e.ref(new Map),children:e.ref(new Map),open:()=>null,openOnSelect:()=>null,select:()=>null,opened:e.ref(new Set),selected:e.ref(new Map),selectedValues:e.ref([])}},Mr=U({selectStrategy:[String,Function],openStrategy:[String,Object],opened:Array,selected:Array,mandatory:Boolean},"nested"),Lr=n=>{let l=!1;const t=e.ref(new Map),o=e.ref(new Map),a=be(n,"opened",n.opened,p=>new Set(p),p=>[...p.values()]),i=e.computed(()=>{if(typeof n.selectStrategy=="object")return n.selectStrategy;switch(n.selectStrategy){case"single-leaf":return(p=>{const v=Jl(p);return{select:m=>{let{id:g,selected:f,children:y,...h}=m;return g=e.toRaw(g),y.has(g)?f:v.select({id:g,selected:f,children:y,...h})},in:v.in,out:v.out}})(n.mandatory);case"leaf":return(p=>{const v=Wt(p);return{select:m=>{let{id:g,selected:f,children:y,...h}=m;return g=e.toRaw(g),y.has(g)?f:v.select({id:g,selected:f,children:y,...h})},in:v.in,out:v.out}})(n.mandatory);case"independent":return Wt(n.mandatory);case"single-independent":return Jl(n.mandatory);default:return(p=>{const v={select:m=>{let{id:g,value:f,selected:y,children:h,parents:k}=m;g=e.toRaw(g);const A=new Map(y),D=[g];for(;D.length;){const E=D.shift();y.set(E,f?"on":"off"),h.has(E)&&D.push(...h.get(E))}let V=k.get(g);for(;V;){const E=h.get(V),$=E.every(B=>y.get(B)==="on"),_=E.every(B=>!y.has(B)||y.get(B)==="off");y.set(V,$?"on":_?"off":"indeterminate"),V=k.get(V)}return p&&!f&&Array.from(y.entries()).reduce(($,_)=>{let[B,S]=_;return S==="on"?[...$,B]:$},[]).length===0?A:y},in:(m,g,f)=>{let y=new Map;for(const h of m||[])y=v.select({id:h,value:!0,selected:new Map(y),children:g,parents:f});return y},out:(m,g)=>{const f=[];for(const[y,h]of m.entries())h!=="on"||g.has(y)||f.push(y);return f}};return v})(n.mandatory)}}),c=e.computed(()=>{if(typeof n.openStrategy=="object")return n.openStrategy;switch(n.openStrategy){case"list":return Dr;case"single":return Rr;default:return aa}}),s=be(n,"selected",n.selected,p=>i.value.in(p,t.value,o.value),p=>i.value.out(p,t.value,o.value));function u(p){const v=[];let m=p;for(;m!=null;)v.unshift(m),m=o.value.get(m);return v}e.onBeforeUnmount(()=>{l=!0});const r=Ve("nested"),d={id:e.shallowRef(),root:{opened:a,selected:s,selectedValues:e.computed(()=>{const p=[];for(const[v,m]of s.value.entries())m==="on"&&p.push(v);return p}),register:(p,v,m)=>{v&&p!==v&&o.value.set(p,v),m&&t.value.set(p,[]),v!=null&&t.value.set(v,[...t.value.get(v)||[],p])},unregister:p=>{if(l)return;t.value.delete(p);const v=o.value.get(p);if(v){const m=t.value.get(v)??[];t.value.set(v,m.filter(g=>g!==p))}o.value.delete(p),a.value.delete(p)},open:(p,v,m)=>{r.emit("click:open",{id:p,value:v,path:u(p),event:m});const g=c.value.open({id:p,value:v,opened:new Set(a.value),children:t.value,parents:o.value,event:m});g&&(a.value=g)},openOnSelect:(p,v,m)=>{const g=c.value.select({id:p,value:v,selected:new Map(s.value),opened:new Set(a.value),children:t.value,parents:o.value,event:m});g&&(a.value=g)},select:(p,v,m)=>{r.emit("click:select",{id:p,value:v,path:u(p),event:m});const g=i.value.select({id:p,value:v,selected:new Map(s.value),children:t.value,parents:o.value,event:m});g&&(s.value=g),d.root.openOnSelect(p,v,m)},children:t,parents:o}};return e.provide(Mn,d),d.root},ia=(n,l)=>{const t=e.inject(Mn,ra),o=Symbol(ze()),a=e.computed(()=>n.value!==void 0?n.value:o),i={...t,id:a,open:(c,s)=>t.root.open(a.value,c,s),openOnSelect:(c,s)=>t.root.openOnSelect(a.value,c,s),isOpen:e.computed(()=>t.root.opened.value.has(a.value)),parent:e.computed(()=>t.root.parents.value.get(a.value)),select:(c,s)=>t.root.select(a.value,c,s),isSelected:e.computed(()=>t.root.selected.value.get(e.toRaw(a.value))==="on"),isIndeterminate:e.computed(()=>t.root.selected.value.get(a.value)==="indeterminate"),isLeaf:e.computed(()=>!t.root.children.value.get(a.value)),isGroupActivator:t.isGroupActivator};return!t.isGroupActivator&&t.root.register(a.value,t.id.value,l),e.onBeforeUnmount(()=>{!t.isGroupActivator&&t.root.unregister(a.value)}),l&&e.provide(Mn,i),i},Wr=$n({name:"VListGroupActivator",setup(n,l){let{slots:t}=l;return(()=>{const o=e.inject(Mn,ra);e.provide(Mn,{...o,isGroupActivator:!0})})(),()=>{var o;return(o=t.default)==null?void 0:o.call(t)}}}),jr=U({activeColor:String,baseColor:String,color:String,collapseIcon:{type:fe,default:"$collapse"},expandIcon:{type:fe,default:"$expand"},prependIcon:fe,appendIcon:fe,fluid:Boolean,subgroup:Boolean,title:String,value:null,...ce(),...Ae()},"VListGroup"),Zl=J()({name:"VListGroup",props:jr(),setup(n,l){let{slots:t}=l;const{isOpen:o,open:a,id:i}=ia(e.toRef(n,"value"),!0),c=e.computed(()=>`v-list-group--id-${String(i.value)}`),s=oa(),{isBooted:u}=function(){const m=e.shallowRef(!1);return e.onMounted(()=>{window.requestAnimationFrame(()=>{m.value=!0})}),{ssrBootStyles:e.computed(()=>m.value?void 0:{transition:"none !important"}),isBooted:e.readonly(m)}}();function r(m){a(!o.value,m)}const d=e.computed(()=>({onClick:r,class:"v-list-group__header",id:c.value})),p=e.computed(()=>o.value?n.collapseIcon:n.expandIcon),v=e.computed(()=>({VListItem:{active:o.value,activeColor:n.activeColor,baseColor:n.baseColor,color:n.color,prependIcon:n.prependIcon||n.subgroup&&p.value,appendIcon:n.appendIcon||!n.subgroup&&p.value,title:n.title,value:n.value}}));return ie(()=>e.createVNode(n.tag,{class:["v-list-group",{"v-list-group--prepend":s==null?void 0:s.hasPrepend.value,"v-list-group--fluid":n.fluid,"v-list-group--subgroup":n.subgroup,"v-list-group--open":o.value},n.class],style:n.style},{default:()=>[t.activator&&e.createVNode(Be,{defaults:v.value},{default:()=>[e.createVNode(Wr,null,{default:()=>[t.activator({props:d.value,isOpen:o.value})]})]}),e.createVNode(Ue,{transition:{component:Nr},disabled:!u.value},{default:()=>{var m;return[e.withDirectives(e.createVNode("div",{class:"v-list-group__items",role:"group","aria-labelledby":c.value},[(m=t.default)==null?void 0:m.call(t)]),[[e.vShow,o.value]])]}})]})),{}}}),Ur=Un("v-list-item-subtitle"),Gr=Un("v-list-item-title"),qr=U({active:{type:Boolean,default:void 0},activeClass:String,activeColor:String,appendAvatar:String,appendIcon:fe,baseColor:String,disabled:Boolean,lines:String,link:{type:Boolean,default:void 0},nav:Boolean,prependAvatar:String,prependIcon:fe,ripple:{type:[Boolean,Object],default:!0},slim:Boolean,subtitle:[String,Number],title:[String,Number],value:null,onClick:Te(),onClickOnce:Te(),...kn(),...ce(),...De(),...un(),...Fn(),...We(),...Bt(),...Ae(),...we(),...Ye({variant:"text"})},"VListItem"),In=J()({name:"VListItem",directives:{Ripple:Jn},props:qr(),emits:{click:n=>!0},setup(n,l){let{attrs:t,slots:o,emit:a}=l;const i=Vt(n,t),c=e.computed(()=>n.value===void 0?i.href.value:n.value),{select:s,isSelected:u,isIndeterminate:r,isGroupActivator:d,root:p,parent:v,openOnSelect:m}=ia(c,!1),g=oa(),f=e.computed(()=>{var C;return n.active!==!1&&(n.active||((C=i.isActive)==null?void 0:C.value)||u.value)}),y=e.computed(()=>n.link!==!1&&i.isLink.value),h=e.computed(()=>!n.disabled&&n.link!==!1&&(n.link||i.isClickable.value||n.value!=null&&!!g)),k=e.computed(()=>n.rounded||n.nav),A=e.computed(()=>n.color??n.activeColor),D=e.computed(()=>({color:f.value?A.value??n.baseColor:n.baseColor,variant:n.variant}));e.watch(()=>{var C;return(C=i.isActive)==null?void 0:C.value},C=>{C&&v.value!=null&&p.open(v.value,!0),C&&m(C)},{immediate:!0});const{themeClasses:V}=xe(n),{borderClasses:E}=xn(n),{colorClasses:$,colorStyles:_,variantClasses:B}=Yn(D),{densityClasses:S}=Le(n),{dimensionStyles:b}=cn(n),{elevationClasses:x}=Nn(n),{roundedClasses:w}=je(k),W=e.computed(()=>n.lines?`v-list-item--${n.lines}-line`:void 0),P=e.computed(()=>({isActive:f.value,select:s,isSelected:u.value,isIndeterminate:r.value}));function T(C){var N;a("click",C),!d&&h.value&&((N=i.navigate)==null||N.call(i,C),n.value!=null&&s(!u.value,C))}function F(C){C.key!=="Enter"&&C.key!==" "||(C.preventDefault(),T(C))}return ie(()=>{const C=y.value?"a":n.tag,N=o.title||n.title!=null,L=o.subtitle||n.subtitle!=null,M=!(!n.appendAvatar&&!n.appendIcon),q=!(!M&&!o.append),j=!(!n.prependAvatar&&!n.prependIcon),H=!(!j&&!o.prepend);var R,O;return g==null||g.updateHasPrepend(H),n.activeColor&&(R="active-color",O=["color","base-color"],O=Array.isArray(O)?O.slice(0,-1).map(z=>`'${z}'`).join(", ")+` or '${O.at(-1)}'`:`'${O}'`,e.warn(`[Vuetify UPGRADE] '${R}' is deprecated, use ${O} instead.`)),e.withDirectives(e.createVNode(C,{class:["v-list-item",{"v-list-item--active":f.value,"v-list-item--disabled":n.disabled,"v-list-item--link":h.value,"v-list-item--nav":n.nav,"v-list-item--prepend":!H&&(g==null?void 0:g.hasPrepend.value),"v-list-item--slim":n.slim,[`${n.activeClass}`]:n.activeClass&&f.value},V.value,E.value,$.value,S.value,x.value,W.value,w.value,B.value,n.class],style:[_.value,b.value,n.style],href:i.href.value,tabindex:h.value?g?-2:0:void 0,onClick:T,onKeydown:h.value&&!y.value&&F},{default:()=>{var z;return[Kn(h.value||f.value,"v-list-item"),H&&e.createVNode("div",{key:"prepend",class:"v-list-item__prepend"},[o.prepend?e.createVNode(Be,{key:"prepend-defaults",disabled:!j,defaults:{VAvatar:{density:n.density,image:n.prependAvatar},VIcon:{density:n.density,icon:n.prependIcon},VListItemAction:{start:!0}}},{default:()=>{var I;return[(I=o.prepend)==null?void 0:I.call(o,P.value)]}}):e.createVNode(e.Fragment,null,[n.prependAvatar&&e.createVNode(qe,{key:"prepend-avatar",density:n.density,image:n.prependAvatar},null),n.prependIcon&&e.createVNode(me,{key:"prepend-icon",density:n.density,icon:n.prependIcon},null)]),e.createVNode("div",{class:"v-list-item__spacer"},null)]),e.createVNode("div",{class:"v-list-item__content","data-no-activator":""},[N&&e.createVNode(Gr,{key:"title"},{default:()=>{var I;return[((I=o.title)==null?void 0:I.call(o,{title:n.title}))??n.title]}}),L&&e.createVNode(Ur,{key:"subtitle"},{default:()=>{var I;return[((I=o.subtitle)==null?void 0:I.call(o,{subtitle:n.subtitle}))??n.subtitle]}}),(z=o.default)==null?void 0:z.call(o,P.value)]),q&&e.createVNode("div",{key:"append",class:"v-list-item__append"},[o.append?e.createVNode(Be,{key:"append-defaults",disabled:!M,defaults:{VAvatar:{density:n.density,image:n.appendAvatar},VIcon:{density:n.density,icon:n.appendIcon},VListItemAction:{end:!0}}},{default:()=>{var I;return[(I=o.append)==null?void 0:I.call(o,P.value)]}}):e.createVNode(e.Fragment,null,[n.appendIcon&&e.createVNode(me,{key:"append-icon",density:n.density,icon:n.appendIcon},null),n.appendAvatar&&e.createVNode(qe,{key:"append-avatar",density:n.density,image:n.appendAvatar},null)]),e.createVNode("div",{class:"v-list-item__spacer"},null)])]}}),[[e.resolveDirective("ripple"),h.value&&n.ripple]])}),{}}}),Hr=U({color:String,inset:Boolean,sticky:Boolean,title:String,...ce(),...Ae()},"VListSubheader"),Kr=J()({name:"VListSubheader",props:Hr(),setup(n,l){let{slots:t}=l;const{textColorClasses:o,textColorStyles:a}=$e(e.toRef(n,"color"));return ie(()=>{const i=!(!t.default&&!n.title);return e.createVNode(n.tag,{class:["v-list-subheader",{"v-list-subheader--inset":n.inset,"v-list-subheader--sticky":n.sticky},o.value,n.class],style:[{textColorStyles:a},n.style]},{default:()=>{var c;return[i&&e.createVNode("div",{class:"v-list-subheader__text"},[((c=t.default)==null?void 0:c.call(t))??n.title])]}})}),{}}}),Yr=U({color:String,inset:Boolean,length:[Number,String],thickness:[Number,String],vertical:Boolean,...ce(),...we()},"VDivider"),Xr=J()({name:"VDivider",props:Yr(),setup(n,l){let{attrs:t}=l;const{themeClasses:o}=xe(n),{textColorClasses:a,textColorStyles:i}=$e(e.toRef(n,"color")),c=e.computed(()=>{const s={};return n.length&&(s[n.vertical?"maxHeight":"maxWidth"]=te(n.length)),n.thickness&&(s[n.vertical?"borderRightWidth":"borderTopWidth"]=te(n.thickness)),s});return ie(()=>e.createVNode("hr",{class:[{"v-divider":!0,"v-divider--inset":n.inset,"v-divider--vertical":n.vertical},o.value,a.value,n.class],style:[c.value,i.value,n.style],"aria-orientation":t.role&&t.role!=="separator"?void 0:n.vertical?"vertical":"horizontal",role:`${t.role||"separator"}`},null)),{}}}),Jr=U({items:Array,returnObject:Boolean},"VListChildren"),sa=J()({name:"VListChildren",props:Jr(),setup(n,l){let{slots:t}=l;return la(),()=>{var o,a;return((o=t.default)==null?void 0:o.call(t))??((a=n.items)==null?void 0:a.map(i=>{var v,m;let{children:c,props:s,type:u,raw:r}=i;if(u==="divider")return((v=t.divider)==null?void 0:v.call(t,{props:s}))??e.createVNode(Xr,s,null);if(u==="subheader")return((m=t.subheader)==null?void 0:m.call(t,{props:s}))??e.createVNode(Kr,s,null);const d={subtitle:t.subtitle?g=>{var f;return(f=t.subtitle)==null?void 0:f.call(t,{...g,item:r})}:void 0,prepend:t.prepend?g=>{var f;return(f=t.prepend)==null?void 0:f.call(t,{...g,item:r})}:void 0,append:t.append?g=>{var f;return(f=t.append)==null?void 0:f.call(t,{...g,item:r})}:void 0,title:t.title?g=>{var f;return(f=t.title)==null?void 0:f.call(t,{...g,item:r})}:void 0},p=Zl.filterProps(s);return c?e.createVNode(Zl,e.mergeProps({value:s==null?void 0:s.value},p),{activator:g=>{let{props:f}=g;const y={...s,...f,value:n.returnObject?r:s.value};return t.header?t.header({props:y}):e.createVNode(In,y,d)},default:()=>e.createVNode(sa,{items:c},t)}):t.item?t.item({props:s}):e.createVNode(In,e.mergeProps(s,{value:n.returnObject?r:s.value}),d)}))}}}),ua=U({items:{type:Array,default:()=>[]},itemTitle:{type:[String,Array,Function],default:"title"},itemValue:{type:[String,Array,Function],default:"value"},itemChildren:{type:[Boolean,String,Array,Function],default:"children"},itemProps:{type:[Boolean,String,Array,Function],default:"props"},returnObject:Boolean,valueComparator:{type:Function,default:Bn}},"list-items");function jt(n,l){const t=Ee(l,n.itemTitle,l),o=Ee(l,n.itemValue,t),a=Ee(l,n.itemChildren),i={title:t,value:o,...n.itemProps===!0?typeof l!="object"||l==null||Array.isArray(l)?void 0:"children"in l?Ke(l,["children"]):l:Ee(l,n.itemProps)};return{title:String(i.title??""),value:i.value,props:i,children:Array.isArray(a)?ca(n,a):void 0,raw:l}}function ca(n,l){const t=[];for(const o of l)t.push(jt(n,o));return t}function da(n){const l=e.computed(()=>ca(n,n.items)),t=e.computed(()=>l.value.some(o=>o.value===null));return{items:l,transformIn:function(o){return t.value||(o=o.filter(a=>a!==null)),o.map(a=>n.returnObject&&typeof a=="string"?jt(n,a):l.value.find(i=>n.valueComparator(a,i.value))||jt(n,a))},transformOut:function(o){return n.returnObject?o.map(a=>{let{raw:i}=a;return i}):o.map(a=>{let{value:i}=a;return i})}}}function Zr(n,l){const t=Ee(l,n.itemType,"item"),o=function(s){return typeof s=="string"||typeof s=="number"||typeof s=="boolean"}(l)?l:Ee(l,n.itemTitle),a=Ee(l,n.itemValue,void 0),i=Ee(l,n.itemChildren),c={title:o,value:a,...n.itemProps===!0?Ke(l,["children"]):Ee(l,n.itemProps)};return{type:t,title:c.title,value:c.value,props:c,children:t==="item"&&i?pa(n,i):void 0,raw:l}}function pa(n,l){const t=[];for(const o of l)t.push(Zr(n,o));return t}const Qr=U({baseColor:String,activeColor:String,activeClass:String,bgColor:String,disabled:Boolean,lines:{type:[Boolean,String],default:"one"},slim:Boolean,nav:Boolean,...Mr({selectStrategy:"single-leaf",openStrategy:"list"}),...kn(),...ce(),...De(),...un(),...Fn(),itemType:{type:String,default:"type"},...ua(),...We(),...Ae(),...we(),...Ye({variant:"text"})},"VList"),va=J()({name:"VList",props:Qr(),emits:{"update:selected":n=>!0,"update:opened":n=>!0,"click:open":n=>!0,"click:select":n=>!0},setup(n,l){let{slots:t}=l;const{items:o}=function(S){return{items:e.computed(()=>pa(S,S.items))}}(n),{themeClasses:a}=xe(n),{backgroundColorClasses:i,backgroundColorStyles:c}=Cn(e.toRef(n,"bgColor")),{borderClasses:s}=xn(n),{densityClasses:u}=Le(n),{dimensionStyles:r}=cn(n),{elevationClasses:d}=Nn(n),{roundedClasses:p}=je(n),{open:v,select:m}=Lr(n),g=e.computed(()=>n.lines?`v-list--${n.lines}-line`:void 0),f=e.toRef(n,"activeColor"),y=e.toRef(n,"baseColor"),h=e.toRef(n,"color");la(),wn({VListGroup:{activeColor:f,baseColor:y,color:h},VListItem:{activeClass:e.toRef(n,"activeClass"),activeColor:f,baseColor:y,color:h,density:e.toRef(n,"density"),disabled:e.toRef(n,"disabled"),lines:e.toRef(n,"lines"),nav:e.toRef(n,"nav"),slim:e.toRef(n,"slim"),variant:e.toRef(n,"variant")}});const k=e.shallowRef(!1),A=e.ref();function D(S){k.value=!0}function V(S){k.value=!1}function E(S){var b;k.value||S.relatedTarget&&((b=A.value)!=null&&b.contains(S.relatedTarget))||B()}function $(S){if(A.value){if(S.key==="ArrowDown")B("next");else if(S.key==="ArrowUp")B("prev");else if(S.key==="Home")B("first");else{if(S.key!=="End")return;B("last")}S.preventDefault()}}function _(S){k.value=!0}function B(S){if(A.value)return dt(A.value,S)}return ie(()=>e.createVNode(n.tag,{ref:A,class:["v-list",{"v-list--disabled":n.disabled,"v-list--nav":n.nav,"v-list--slim":n.slim},a.value,i.value,s.value,u.value,d.value,g.value,p.value,n.class],style:[c.value,r.value,n.style],tabindex:n.disabled||k.value?-1:0,role:"listbox","aria-activedescendant":void 0,onFocusin:D,onFocusout:V,onFocus:E,onKeydown:$,onMousedown:_},{default:()=>[e.createVNode(sa,{items:o.value,returnObject:n.returnObject},t)]})),{open:v,select:m,focus:B}}});function At(n,l){return{x:n.x+l.x,y:n.y+l.y}}function Ql(n,l){if(n.side==="top"||n.side==="bottom"){const{side:t,align:o}=n;return At({x:o==="left"?0:o==="center"?l.width/2:o==="right"?l.width:o,y:t==="top"?0:t==="bottom"?l.height:t},l)}if(n.side==="left"||n.side==="right"){const{side:t,align:o}=n;return At({x:t==="left"?0:t==="right"?l.width:t,y:o==="top"?0:o==="center"?l.height/2:o==="bottom"?l.height:o},l)}return At({x:l.width/2,y:l.height/2},l)}const fa={static:function(){},connected:function(n,l,t){(Array.isArray(n.target.value)||function(m){for(;m;){if(window.getComputedStyle(m).position==="fixed")return!0;m=m.offsetParent}return!1}(n.target.value))&&Object.assign(t.value,{position:"fixed",top:0,[n.isRtl.value?"right":"left"]:0});const{preferredAnchor:o,preferredOrigin:a}=Jt(()=>{const m=Rt(l.location,n.isRtl.value),g=l.origin==="overlap"?m:l.origin==="auto"?kt(m):Rt(l.origin,n.isRtl.value);return m.side===g.side&&m.align===xt(g).align?{preferredAnchor:wl(m),preferredOrigin:wl(g)}:{preferredAnchor:m,preferredOrigin:g}}),[i,c,s,u]=["minWidth","minHeight","maxWidth","maxHeight"].map(m=>e.computed(()=>{const g=parseFloat(l[m]);return isNaN(g)?1/0:g})),r=e.computed(()=>{if(Array.isArray(l.offset))return l.offset;if(typeof l.offset=="string"){const m=l.offset.split(" ").map(parseFloat);return m.length<2&&m.push(0),m}return typeof l.offset=="number"?[l.offset,0]:[0,0]});let d=!1;const p=new ResizeObserver(()=>{d&&v()});function v(){if(d=!1,requestAnimationFrame(()=>{requestAnimationFrame(()=>d=!0)}),!n.target.value||!n.contentEl.value)return;const m=bo(n.target.value),g=function(S,b){b?S.style.removeProperty("left"):S.style.removeProperty("right");const x=Qt(S);return b?x.x+=parseFloat(S.style.right||0):x.x-=parseFloat(S.style.left||0),x.y-=parseFloat(S.style.top||0),x}(n.contentEl.value,n.isRtl.value),f=ft(n.contentEl.value);f.length||(f.push(document.documentElement),n.contentEl.value.style.top&&n.contentEl.value.style.left||(g.x-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x")||0),g.y-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y")||0)));const y=f.reduce((S,b)=>{const x=b.getBoundingClientRect(),w=new en({x:b===document.documentElement?0:x.x,y:b===document.documentElement?0:x.y,width:b.clientWidth,height:b.clientHeight});return S?new en({x:Math.max(S.left,w.left),y:Math.max(S.top,w.top),width:Math.min(S.right,w.right)-Math.max(S.left,w.left),height:Math.min(S.bottom,w.bottom)-Math.max(S.top,w.top)}):w},void 0);y.x+=12,y.y+=12,y.width-=24,y.height-=24;let h={anchor:o.value,origin:a.value};function k(S){const b=new en(g),x=Ql(S.anchor,m),w=Ql(S.origin,b);let{x:W,y:P}=(F=w,{x:(T=x).x-F.x,y:T.y-F.y});var T,F;switch(S.anchor.side){case"top":P-=r.value[0];break;case"bottom":P+=r.value[0];break;case"left":W-=r.value[0];break;case"right":W+=r.value[0]}switch(S.anchor.align){case"top":P-=r.value[1];break;case"bottom":P+=r.value[1];break;case"left":W-=r.value[1];break;case"right":W+=r.value[1]}return b.x+=W,b.y+=P,b.width=Math.min(b.width,s.value),b.height=Math.min(b.height,u.value),{overflows:xl(b,y),x:W,y:P}}let A=0,D=0;const V={x:0,y:0},E={x:!1,y:!1};let $=-1;for(;;){if($++>10){_="Infinite loop detected in connectedLocationStrategy",e.warn(`Vuetify error: ${_}`);break}const{x:S,y:b,overflows:x}=k(h);A+=S,D+=b,g.x+=S,g.y+=b;{const w=kl(h.anchor),W=x.x.before||x.x.after,P=x.y.before||x.y.after;let T=!1;if(["x","y"].forEach(F=>{if(F==="x"&&W&&!E.x||F==="y"&&P&&!E.y){const C={anchor:{...h.anchor},origin:{...h.origin}},N=F==="x"?w==="y"?xt:kt:w==="y"?kt:xt;C.anchor=N(C.anchor),C.origin=N(C.origin);const{overflows:L}=k(C);(L[F].before<=x[F].before&&L[F].after<=x[F].after||L[F].before+L[F].after<(x[F].before+x[F].after)/2)&&(h=C,T=E[F]=!0)}}),T)continue}x.x.before&&(A+=x.x.before,g.x+=x.x.before),x.x.after&&(A-=x.x.after,g.x-=x.x.after),x.y.before&&(D+=x.y.before,g.y+=x.y.before),x.y.after&&(D-=x.y.after,g.y-=x.y.after);{const w=xl(g,y);V.x=y.width-w.x.before-w.x.after,V.y=y.height-w.y.before-w.y.after,A+=w.x.before,g.x+=w.x.before,D+=w.y.before,g.y+=w.y.before}break}var _;const B=kl(h.anchor);return Object.assign(t.value,{"--v-overlay-anchor-origin":`${h.anchor.side} ${h.anchor.align}`,transformOrigin:`${h.origin.side} ${h.origin.align}`,top:te(Pt(D)),left:n.isRtl.value?void 0:te(Pt(A)),right:n.isRtl.value?te(Pt(-A)):void 0,minWidth:te(B==="y"?Math.min(i.value,m.width):i.value),maxWidth:te(eo(hn(V.x,i.value===1/0?0:i.value,s.value))),maxHeight:te(eo(hn(V.y,c.value===1/0?0:c.value,u.value)))}),{available:V,contentBox:g}}return e.watch([n.target,n.contentEl],(m,g)=>{let[f,y]=m,[h,k]=g;h&&!Array.isArray(h)&&p.unobserve(h),f&&!Array.isArray(f)&&p.observe(f),k&&p.unobserve(k),y&&p.observe(y)},{immediate:!0}),e.onScopeDispose(()=>{p.disconnect()}),e.watch(()=>[o.value,a.value,l.offset,l.minWidth,l.minHeight,l.maxWidth,l.maxHeight],()=>v()),e.nextTick(()=>{const m=v();if(!m)return;const{available:g,contentBox:f}=m;f.height>g.y&&requestAnimationFrame(()=>{v(),requestAnimationFrame(()=>{v()})})}),{updateLocation:v}}},ei=U({locationStrategy:{type:[String,Function],default:"static",validator:n=>typeof n=="function"||n in fa},location:{type:String,default:"bottom"},origin:{type:String,default:"auto"},offset:[Number,String,Array]},"VOverlay-location-strategies");function Pt(n){return Math.round(n*devicePixelRatio)/devicePixelRatio}function eo(n){return Math.ceil(n*devicePixelRatio)/devicePixelRatio}let Ut=!0;const bt=[];let no=-1;function Gt(){cancelAnimationFrame(no),no=requestAnimationFrame(()=>{const n=bt.shift();n&&n(),bt.length?Gt():Ut=!0})}const st={none:null,close:function(n){to(n.targetEl.value??n.contentEl.value,function(l){n.isActive.value=!1})},block:function(n,l){var s;const t=(s=n.root.value)==null?void 0:s.offsetParent,o=[...new Set([...ft(n.targetEl.value,l.contained?t:void 0),...ft(n.contentEl.value,l.contained?t:void 0)])].filter(u=>!u.classList.contains("v-overlay-scroll-blocked")),a=window.innerWidth-document.documentElement.offsetWidth,i=(c=t||document.documentElement,nl(c)&&c);var c;i&&n.root.value.classList.add("v-overlay--scroll-blocked"),o.forEach((u,r)=>{u.style.setProperty("--v-body-scroll-x",te(-u.scrollLeft)),u.style.setProperty("--v-body-scroll-y",te(-u.scrollTop)),u!==document.documentElement&&u.style.setProperty("--v-scrollbar-offset",te(a)),u.classList.add("v-overlay-scroll-blocked")}),e.onScopeDispose(()=>{o.forEach((u,r)=>{const d=parseFloat(u.style.getPropertyValue("--v-body-scroll-x")),p=parseFloat(u.style.getPropertyValue("--v-body-scroll-y"));u.style.removeProperty("--v-body-scroll-x"),u.style.removeProperty("--v-body-scroll-y"),u.style.removeProperty("--v-scrollbar-offset"),u.classList.remove("v-overlay-scroll-blocked"),u.scrollLeft=-d,u.scrollTop=-p}),i&&n.root.value.classList.remove("v-overlay--scroll-blocked")})},reposition:function(n,l,t){let o=!1,a=-1,i=-1;function c(s){var u;u=()=>{var p,v;const r=performance.now();(v=(p=n.updateLocation).value)==null||v.call(p,s),o=(performance.now()-r)/(1e3/60)>2},!Ut||bt.length?(bt.push(u),Gt()):(Ut=!1,u(),Gt())}i=(typeof requestIdleCallback>"u"?s=>s():requestIdleCallback)(()=>{t.run(()=>{to(n.targetEl.value??n.contentEl.value,s=>{o?(cancelAnimationFrame(a),a=requestAnimationFrame(()=>{a=requestAnimationFrame(()=>{c(s)})})):c(s)})})}),e.onScopeDispose(()=>{typeof cancelIdleCallback<"u"&&cancelIdleCallback(i),cancelAnimationFrame(a)})}},ni=U({scrollStrategy:{type:[String,Function],default:"block",validator:n=>typeof n=="function"||n in st}},"VOverlay-scroll-strategies");function to(n,l){const t=[document,...ft(n)];t.forEach(o=>{o.addEventListener("scroll",l,{passive:!0})}),e.onScopeDispose(()=>{t.forEach(o=>{o.removeEventListener("scroll",l)})})}const qt=Symbol.for("vuetify:v-menu"),ti=U({closeDelay:[Number,String],openDelay:[Number,String]},"delay");function li(n,l){let t=()=>{};function o(a){t==null||t();const i=Number(a?n.openDelay:n.closeDelay);return new Promise(c=>{t=function(s,u){if(!ke||s===0)return u(),()=>{};const r=window.setTimeout(u,s);return()=>window.clearTimeout(r)}(i,()=>{l==null||l(a),c(a)})})}return{clearDelay:t,runOpenDelay:function(){return o(!0)},runCloseDelay:function(){return o(!1)}}}const oi=U({target:[String,Object],activator:[String,Object],activatorProps:{type:Object,default:()=>({})},openOnClick:{type:Boolean,default:void 0},openOnHover:Boolean,openOnFocus:{type:Boolean,default:void 0},closeOnContentClick:Boolean,...ti()},"VOverlay-activator");function ai(n,l){let{isActive:t,isTop:o}=l;const a=Ve("useActivator"),i=e.ref();let c=!1,s=!1,u=!0;const r=e.computed(()=>n.openOnFocus||n.openOnFocus==null&&n.openOnHover),d=e.computed(()=>n.openOnClick||n.openOnClick==null&&!n.openOnHover&&!r.value),{runOpenDelay:p,runCloseDelay:v}=li(n,b=>{b!==(n.openOnHover&&c||r.value&&s)||n.openOnHover&&t.value&&!o.value||(t.value!==b&&(u=!0),t.value=b)}),m=e.ref(),g=b=>{b.stopPropagation(),i.value=b.currentTarget||b.target,t.value||(m.value=[b.clientX,b.clientY]),t.value=!t.value},f=b=>{var x;(x=b.sourceCapabilities)!=null&&x.firesTouchEvents||(c=!0,i.value=b.currentTarget||b.target,p())},y=b=>{c=!1,v()},h=b=>{bn(b.target,":focus-visible")!==!1&&(s=!0,b.stopPropagation(),i.value=b.currentTarget||b.target,p())},k=b=>{s=!1,b.stopPropagation(),v()},A=e.computed(()=>{const b={};return d.value&&(b.onClick=g),n.openOnHover&&(b.onMouseenter=f,b.onMouseleave=y),r.value&&(b.onFocus=h,b.onBlur=k),b}),D=e.computed(()=>{const b={};if(n.openOnHover&&(b.onMouseenter=()=>{c=!0,p()},b.onMouseleave=()=>{c=!1,v()}),r.value&&(b.onFocusin=()=>{s=!0,p()},b.onFocusout=()=>{s=!1,v()}),n.closeOnContentClick){const x=e.inject(qt,null);b.onClick=()=>{t.value=!1,x==null||x.closeParents()}}return b}),V=e.computed(()=>{const b={};return n.openOnHover&&(b.onMouseenter=()=>{u&&(c=!0,u=!1,p())},b.onMouseleave=()=>{c=!1,v()}),b});e.watch(o,b=>{!b||(!n.openOnHover||c||r.value&&s)&&(!r.value||s||n.openOnHover&&c)||(t.value=!1)}),e.watch(t,b=>{b||setTimeout(()=>{m.value=void 0})},{flush:"post"});const E=e.ref();e.watchEffect(()=>{E.value&&e.nextTick(()=>{i.value=ut(E.value)})});const $=e.ref(),_=e.computed(()=>n.target==="cursor"&&m.value?m.value:$.value?ut($.value):lo(n.target,a)||i.value),B=e.computed(()=>Array.isArray(_.value)?void 0:_.value);let S;return e.watch(()=>!!n.activator,b=>{b&&ke?(S=e.effectScope(),S.run(()=>{(function(x,w,W){let{activatorEl:P,activatorEvents:T}=W;function F(){let L=arguments.length>0&&arguments[0]!==void 0?arguments[0]:N(),M=arguments.length>1&&arguments[1]!==void 0?arguments[1]:x.activatorProps;L&&function(q,j){Object.keys(j).forEach(H=>{if(Tt(H)){const R=Sl(H),O=tt.get(q);if(j[H]==null)O==null||O.forEach(z=>{const[I,G]=z;I===R&&(q.removeEventListener(R,G),O.delete(z))});else if(!O||![...O].some(z=>z[0]===R&&z[1]===j[H])){q.addEventListener(R,j[H]);const z=O||new Set;z.add([R,j[H]]),tt.has(q)||tt.set(q,z)}}else j[H]==null?q.removeAttribute(H):q.setAttribute(H,j[H])})}(L,e.mergeProps(T.value,M))}function C(){let L=arguments.length>0&&arguments[0]!==void 0?arguments[0]:N(),M=arguments.length>1&&arguments[1]!==void 0?arguments[1]:x.activatorProps;L&&function(q,j){Object.keys(j).forEach(H=>{if(Tt(H)){const R=Sl(H),O=tt.get(q);O==null||O.forEach(z=>{const[I,G]=z;I===R&&(q.removeEventListener(R,G),O.delete(z))})}else q.removeAttribute(H)})}(L,e.mergeProps(T.value,M))}function N(){const L=lo(arguments.length>0&&arguments[0]!==void 0?arguments[0]:x.activator,w);return P.value=(L==null?void 0:L.nodeType)===Node.ELEMENT_NODE?L:void 0,P.value}e.watch(()=>x.activator,(L,M)=>{if(M&&L!==M){const q=N(M);q&&C(q)}L&&e.nextTick(()=>F())},{immediate:!0}),e.watch(()=>x.activatorProps,()=>{F()}),e.onScopeDispose(()=>{C()})})(n,a,{activatorEl:i,activatorEvents:A})})):S&&S.stop()},{flush:"post",immediate:!0}),e.onScopeDispose(()=>{S==null||S.stop()}),{activatorEl:i,activatorRef:E,target:_,targetEl:B,targetRef:$,activatorEvents:A,contentEvents:D,scrimEvents:V}}function lo(n,l){var o,a;if(!n)return;let t;if(n==="parent"){let i=(a=(o=l==null?void 0:l.proxy)==null?void 0:o.$el)==null?void 0:a.parentNode;for(;i!=null&&i.hasAttribute("data-no-activator");)i=i.parentNode;t=i}else t=typeof n=="string"?document.querySelector(n):"$el"in n?n.$el:n;return t}const ri=Symbol.for("vuetify:display");function ma(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Re();const t=e.inject(ri);if(!t)throw new Error("Could not find Vuetify display injection");const o=e.computed(()=>{if(!n.mobileBreakpoint)return t.mobile.value;const i=typeof n.mobileBreakpoint=="number"?n.mobileBreakpoint:t.thresholds.value[n.mobileBreakpoint];return t.width.valuel?{[`${l}--mobile`]:o.value}:{});return{...t,displayClasses:a,mobile:o}}const ii=U({eager:Boolean},"lazy");function ya(){const n=Ve("useScopeId").vnode.scopeId;return{scopeId:n?{[n]:""}:void 0}}const oo=Symbol.for("vuetify:stack"),zn=e.reactive([]);function si(){return!0}function ao(n,l,t){if(!n||ga(n,t)===!1)return!1;const o=Io(l);if(typeof ShadowRoot<"u"&&o instanceof ShadowRoot&&o.host===n.target)return!1;const a=(typeof t.value=="object"&&t.value.include||(()=>[]))();return a.push(l),!a.some(i=>i==null?void 0:i.contains(n.target))}function ga(n,l){return(typeof l.value=="object"&&l.value.closeConditional||si)(n)}function ro(n,l){const t=Io(n);l(document),typeof ShadowRoot<"u"&&t instanceof ShadowRoot&&l(t)}const ui={mounted(n,l){const t=a=>function(i,c,s){const u=typeof s.value=="function"?s.value:s.value.handler;c._clickOutside.lastMousedownWasOutside&&ao(i,c,s)&&setTimeout(()=>{ga(i,s)&&u&&u(i)},0)}(a,n,l),o=a=>{n._clickOutside.lastMousedownWasOutside=ao(a,n,l)};ro(n,a=>{a.addEventListener("click",t,!0),a.addEventListener("mousedown",o,!0)}),n._clickOutside||(n._clickOutside={lastMousedownWasOutside:!1}),n._clickOutside[l.instance.$.uid]={onClick:t,onMousedown:o}},unmounted(n,l){n._clickOutside&&(ro(n,t=>{var i;if(!t||!((i=n._clickOutside)!=null&&i[l.instance.$.uid]))return;const{onClick:o,onMousedown:a}=n._clickOutside[l.instance.$.uid];t.removeEventListener("click",o,!0),t.removeEventListener("mousedown",a,!0)}),delete n._clickOutside[l.instance.$.uid])}};function ci(n){const{modelValue:l,color:t,...o}=n;return e.createVNode(e.Transition,{name:"fade-transition",appear:!0},{default:()=>[n.modelValue&&e.createVNode("div",e.mergeProps({class:["v-overlay__scrim",n.color.backgroundColorClasses.value],style:n.color.backgroundColorStyles.value},o),null)]})}const ha=U({absolute:Boolean,attach:[Boolean,String,Object],closeOnBack:{type:Boolean,default:!0},contained:Boolean,contentClass:null,contentProps:null,disabled:Boolean,noClickAnimation:Boolean,modelValue:Boolean,persistent:Boolean,scrim:{type:[Boolean,String],default:!0},zIndex:{type:[Number,String],default:2e3},...oi(),...ce(),...un(),...ii(),...ei(),...ni(),...we(),...Pn()},"VOverlay"),io=J()({name:"VOverlay",directives:{ClickOutside:ui},inheritAttrs:!1,props:{_disableGlobalStack:Boolean,...ha()},emits:{"click:outside":n=>!0,"update:modelValue":n=>!0,afterLeave:()=>!0},setup(n,l){var j,H;let{slots:t,attrs:o,emit:a}=l;const i=be(n,"modelValue"),c=e.computed({get:()=>i.value,set:R=>{R&&n.disabled||(i.value=R)}}),{teleportTarget:s}=function(R){return{teleportTarget:e.computed(()=>{const O=R.value;if(O===!0||!ke)return;const z=O===!1?document.body:typeof O=="string"?document.querySelector(O):O;if(z==null)return void e.warn(`Unable to locate target ${O}`);let I=z.querySelector(":scope > .v-overlay-container");return I||(I=document.createElement("div"),I.className="v-overlay-container",z.appendChild(I)),I})}}(e.computed(()=>n.attach||n.contained)),{themeClasses:u}=xe(n),{rtlClasses:r,isRtl:d}=Xn(),{hasContent:p,onAfterLeave:v}=function(R,O){const z=e.shallowRef(!1),I=e.computed(()=>z.value||R.eager||O.value);return e.watch(O,()=>z.value=!0),{isBooted:z,hasContent:I,onAfterLeave:function(){R.eager||(z.value=!1)}}}(n,c),m=Cn(e.computed(()=>typeof n.scrim=="string"?n.scrim:null)),{globalTop:g,localTop:f,stackStyles:y}=function(R,O,z){const I=Ve("useStack"),G=!z,Y=e.inject(oo,void 0),ee=e.reactive({activeChildren:new Set});e.provide(oo,ee);const K=e.shallowRef(+O.value);nn(R,()=>{var Z;const se=(Z=zn.at(-1))==null?void 0:Z[1];K.value=se?se+10:+O.value,G&&zn.push([I.uid,K.value]),Y==null||Y.activeChildren.add(I.uid),e.onScopeDispose(()=>{if(G){const de=e.toRaw(zn).findIndex(pe=>pe[0]===I.uid);zn.splice(de,1)}Y==null||Y.activeChildren.delete(I.uid)})});const oe=e.shallowRef(!0);G&&e.watchEffect(()=>{var Z;const se=((Z=zn.at(-1))==null?void 0:Z[0])===I.uid;setTimeout(()=>oe.value=se)});const le=e.computed(()=>!ee.activeChildren.size);return{globalTop:e.readonly(oe),localTop:le,stackStyles:e.computed(()=>({zIndex:K.value}))}}(c,e.toRef(n,"zIndex"),n._disableGlobalStack),{activatorEl:h,activatorRef:k,target:A,targetEl:D,targetRef:V,activatorEvents:E,contentEvents:$,scrimEvents:_}=ai(n,{isActive:c,isTop:f}),{dimensionStyles:B}=cn(n),S=function(){if(!ke)return e.shallowRef(!1);const{ssr:R}=ma();if(R){const O=e.shallowRef(!1);return e.onMounted(()=>{O.value=!0}),O}return e.shallowRef(!0)}(),{scopeId:b}=ya();e.watch(()=>n.disabled,R=>{R&&(c.value=!1)});const x=e.ref(),w=e.ref(),{contentStyles:W,updateLocation:P}=function(R,O){const z=e.ref({}),I=e.ref();function G(Y){var ee;(ee=I.value)==null||ee.call(I,Y)}return ke&&nn(()=>!(!O.isActive.value||!R.locationStrategy),Y=>{var ee,K;e.watch(()=>R.locationStrategy,Y),e.onScopeDispose(()=>{window.removeEventListener("resize",G),I.value=void 0}),window.addEventListener("resize",G,{passive:!0}),typeof R.locationStrategy=="function"?I.value=(ee=R.locationStrategy(O,R,z))==null?void 0:ee.updateLocation:I.value=(K=fa[R.locationStrategy](O,R,z))==null?void 0:K.updateLocation}),{contentStyles:z,updateLocation:I}}(n,{isRtl:d,contentEl:w,target:A,isActive:c});function T(R){a("click:outside",R),n.persistent?M():c.value=!1}function F(){return c.value&&g.value}function C(R){var O,z;R.key==="Escape"&&g.value&&(n.persistent?M():(c.value=!1,(O=w.value)!=null&&O.contains(document.activeElement)&&((z=h.value)==null||z.focus())))}(function(R,O){if(!ke)return;let z;e.watchEffect(async()=>{z==null||z.stop(),O.isActive.value&&R.scrollStrategy&&(z=e.effectScope(),await e.nextTick(),z.active&&z.run(()=>{var I;typeof R.scrollStrategy=="function"?R.scrollStrategy(O,R,z):(I=st[R.scrollStrategy])==null||I.call(st,O,R,z)}))}),e.onScopeDispose(()=>{z==null||z.stop()})})(n,{root:x,contentEl:w,targetEl:D,isActive:c,updateLocation:P}),ke&&e.watch(c,R=>{R?window.addEventListener("keydown",C):window.removeEventListener("keydown",C)},{immediate:!0}),e.onBeforeUnmount(()=>{ke&&window.removeEventListener("keydown",C)});const N=(H=(j=Ve("useRouter"))==null?void 0:j.proxy)==null?void 0:H.$router;nn(()=>n.closeOnBack,()=>{(function(R,O){let z,I,G=!1;function Y(ee){var K;(K=ee.state)!=null&&K.replaced||(G=!0,setTimeout(()=>G=!1))}ke&&(e.nextTick(()=>{window.addEventListener("popstate",Y),z=R==null?void 0:R.beforeEach((ee,K,oe)=>{Nt?G?O(oe):oe():setTimeout(()=>G?O(oe):oe()),Nt=!0}),I=R==null?void 0:R.afterEach(()=>{Nt=!1})}),e.onScopeDispose(()=>{window.removeEventListener("popstate",Y),z==null||z(),I==null||I()}))})(N,R=>{g.value&&c.value?(R(!1),n.persistent?M():c.value=!1):R()})});const L=e.ref();function M(){n.noClickAnimation||w.value&&gn(w.value,[{transformOrigin:"center"},{transform:"scale(1.03)"},{transformOrigin:"center"}],{duration:150,easing:vt})}function q(){v(),a("afterLeave")}return e.watch(()=>c.value&&(n.absolute||n.contained)&&s.value==null,R=>{if(R){const O=Vo(x.value);O&&O!==document.scrollingElement&&(L.value=O.scrollTop)}}),ie(()=>{var R;return e.createVNode(e.Fragment,null,[(R=t.activator)==null?void 0:R.call(t,{isActive:c.value,props:e.mergeProps({ref:k,targetRef:V},E.value,n.activatorProps)}),!n.disabled&&S.value&&p.value&&e.createVNode(e.Teleport,{disabled:!s.value,to:s.value},{default:()=>[e.createVNode("div",e.mergeProps({class:["v-overlay",{"v-overlay--absolute":n.absolute||n.contained,"v-overlay--active":c.value,"v-overlay--contained":n.contained},u.value,r.value,n.class],style:[y.value,{top:te(L.value)},n.style],ref:x},b,o),[e.createVNode(ci,e.mergeProps({color:m,modelValue:!!n.scrim&&c.value},_.value),null),e.createVNode(Ue,{appear:!0,persisted:!0,transition:n.transition,target:A.value,onAfterLeave:q},{default:()=>{var O;return[e.withDirectives(e.createVNode("div",e.mergeProps({ref:w,class:["v-overlay__content",n.contentClass],style:[B.value,W.value]},$.value,n.contentProps),[(O=t.default)==null?void 0:O.call(t,{isActive:c})]),[[e.vShow,c.value],[e.resolveDirective("click-outside"),{handler:T,closeConditional:F,include:()=>[h.value]}]])]}})])]})])}),{activatorEl:h,target:A,animateClick:M,contentEl:w,globalTop:g,localTop:f,updateLocation:P}}}),_t=Symbol("Forwarded refs");function Ot(n,l){let t=n;for(;t;){const o=Reflect.getOwnPropertyDescriptor(t,l);if(o)return o;t=Object.getPrototypeOf(t)}}function nt(n){for(var l=arguments.length,t=new Array(l>1?l-1:0),o=1;o!0},setup(n,l){let{slots:t}=l;const o=be(n,"modelValue"),{scopeId:a}=ya(),i=ze(),c=e.computed(()=>n.id||`v-menu-${i}`),s=e.ref(),u=e.inject(qt,null),r=e.shallowRef(0);async function d(f){var k,A,D;const y=f.relatedTarget,h=f.target;await e.nextTick(),o.value&&y!==h&&((k=s.value)!=null&&k.contentEl)&&((A=s.value)!=null&&A.globalTop)&&![document,s.value.contentEl].includes(h)&&!s.value.contentEl.contains(h)&&((D=$t(s.value.contentEl)[0])==null||D.focus())}function p(){u==null||u.closeParents()}function v(f){var y,h,k;!n.disabled&&f.key==="Tab"&&(go($t((y=s.value)==null?void 0:y.contentEl,!1),f.shiftKey?"prev":"next",A=>A.tabIndex>=0)||(o.value=!1,(k=(h=s.value)==null?void 0:h.activatorEl)==null||k.focus()))}function m(f){var h;if(n.disabled)return;const y=(h=s.value)==null?void 0:h.contentEl;y&&o.value?f.key==="ArrowDown"?(f.preventDefault(),dt(y,"next")):f.key==="ArrowUp"&&(f.preventDefault(),dt(y,"prev")):["ArrowDown","ArrowUp"].includes(f.key)&&(o.value=!0,f.preventDefault(),setTimeout(()=>setTimeout(()=>m(f))))}e.provide(qt,{register(){++r.value},unregister(){--r.value},closeParents(){setTimeout(()=>{r.value||(o.value=!1,u==null||u.closeParents())},40)}}),e.watch(o,f=>{f?(u==null||u.register(),document.addEventListener("focusin",d,{once:!0})):(u==null||u.unregister(),document.removeEventListener("focusin",d))});const g=e.computed(()=>e.mergeProps({"aria-haspopup":"menu","aria-expanded":String(o.value),"aria-owns":c.value,onKeydown:m},n.activatorProps));return ie(()=>{const f=io.filterProps(n);return e.createVNode(io,e.mergeProps({ref:s,class:["v-menu",n.class],style:n.style},f,{modelValue:o.value,"onUpdate:modelValue":y=>o.value=y,absolute:!0,activatorProps:g.value,"onClick:outside":p,onKeydown:v},a),{activator:t.activator,default:function(){for(var y=arguments.length,h=new Array(y),k=0;k{var A;return[(A=t.default)==null?void 0:A.call(t,...h)]}})}})}),nt({id:c,ΨopenChildren:r},s)}}),pi=U({active:Boolean,max:[Number,String],value:{type:[Number,String],default:0},...ce(),...Pn({transition:{component:Zo}})},"VCounter"),Ca=J()({name:"VCounter",functional:!0,props:pi(),setup(n,l){let{slots:t}=l;const o=e.computed(()=>n.max?`${n.value} / ${n.max}`:String(n.value));return ie(()=>e.createVNode(Ue,{transition:n.transition},{default:()=>[e.withDirectives(e.createVNode("div",{class:["v-counter",n.class],style:n.style},[t.default?t.default({counter:o.value,max:n.max,value:n.value}):o.value]),[[e.vShow,n.active]])]})),{}}}),vi=U({floating:Boolean,...ce()},"VFieldLabel"),at=J()({name:"VFieldLabel",props:vi(),setup(n,l){let{slots:t}=l;return ie(()=>e.createVNode(Uo,{class:["v-field-label",{"v-field-label--floating":n.floating},n.class],style:n.style,"aria-hidden":n.floating||void 0},t)),{}}}),fi=["underlined","outlined","filled","solo","solo-inverted","solo-filled","plain"],pl=U({appendInnerIcon:fe,bgColor:String,clearable:Boolean,clearIcon:{type:fe,default:"$clear"},active:Boolean,centerAffix:{type:Boolean,default:void 0},color:String,baseColor:String,dirty:Boolean,disabled:{type:Boolean,default:null},error:Boolean,flat:Boolean,label:String,persistentClear:Boolean,prependInnerIcon:fe,reverse:Boolean,singleLine:Boolean,variant:{type:String,default:"filled",validator:n=>fi.includes(n)},"onClick:clear":Te(),"onClick:appendInner":Te(),"onClick:prependInner":Te(),...ce(),...rl(),...We(),...we()},"VField"),vl=J()({name:"VField",inheritAttrs:!1,props:{id:String,...ea(),...pl()},emits:{"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:t,emit:o,slots:a}=l;const{themeClasses:i}=xe(n),{loaderClasses:c}=St(n),{focusClasses:s,isFocused:u,focus:r,blur:d}=Qn(n),{InputIcon:p}=Ko(n),{roundedClasses:v}=je(n),{rtlClasses:m}=Xn(),g=e.computed(()=>n.dirty||n.active),f=e.computed(()=>!(n.singleLine||!n.label&&!a.label)),y=ze(),h=e.computed(()=>n.id||`input-${y}`),k=e.computed(()=>`${h.value}-messages`),A=e.ref(),D=e.ref(),V=e.ref(),E=e.computed(()=>["plain","underlined"].includes(n.variant)),{backgroundColorClasses:$,backgroundColorStyles:_}=Cn(e.toRef(n,"bgColor")),{textColorClasses:B,textColorStyles:S}=$e(e.computed(()=>n.error||n.disabled?void 0:g.value&&u.value?n.color:n.baseColor));e.watch(g,w=>{if(f.value){const W=A.value.$el,P=D.value.$el;requestAnimationFrame(()=>{const T=Qt(W),F=P.getBoundingClientRect(),C=F.x-T.x,N=F.y-T.y-(T.height/2-F.height/2),L=F.width/.75,M=Math.abs(L-T.width)>1?{maxWidth:te(L)}:void 0,q=getComputedStyle(W),j=getComputedStyle(P),H=1e3*parseFloat(q.transitionDuration)||150,R=parseFloat(j.getPropertyValue("--v-field-label-scale")),O=j.getPropertyValue("color");W.style.visibility="visible",P.style.visibility="hidden",gn(W,{transform:`translate(${C}px, ${N}px) scale(${R})`,color:O,...M},{duration:H,easing:vt,direction:w?"normal":"reverse"}).finished.then(()=>{W.style.removeProperty("visibility"),P.style.removeProperty("visibility")})})}},{flush:"post"});const b=e.computed(()=>({isActive:g,isFocused:u,controlRef:V,blur:d,focus:r}));function x(w){w.target!==document.activeElement&&w.preventDefault()}return ie(()=>{var C,N,L;const w=n.variant==="outlined",W=a["prepend-inner"]||n.prependInnerIcon,P=!(!n.clearable&&!a.clear),T=!!(a["append-inner"]||n.appendInnerIcon||P),F=()=>a.label?a.label({...b.value,label:n.label,props:{for:h.value}}):n.label;return e.createVNode("div",e.mergeProps({class:["v-field",{"v-field--active":g.value,"v-field--appended":T,"v-field--center-affix":n.centerAffix??!E.value,"v-field--disabled":n.disabled,"v-field--dirty":n.dirty,"v-field--error":n.error,"v-field--flat":n.flat,"v-field--has-background":!!n.bgColor,"v-field--persistent-clear":n.persistentClear,"v-field--prepended":W,"v-field--reverse":n.reverse,"v-field--single-line":n.singleLine,"v-field--no-label":!F(),[`v-field--variant-${n.variant}`]:!0},i.value,$.value,s.value,c.value,v.value,m.value,n.class],style:[_.value,n.style],onClick:x},t),[e.createVNode("div",{class:"v-field__overlay"},null),e.createVNode(il,{name:"v-field",active:!!n.loading,color:n.error?"error":typeof n.loading=="string"?n.loading:n.color},{default:a.loader}),W&&e.createVNode("div",{key:"prepend",class:"v-field__prepend-inner"},[n.prependInnerIcon&&e.createVNode(p,{key:"prepend-icon",name:"prependInner"},null),(C=a["prepend-inner"])==null?void 0:C.call(a,b.value)]),e.createVNode("div",{class:"v-field__field","data-no-activator":""},[["filled","solo","solo-inverted","solo-filled"].includes(n.variant)&&f.value&&e.createVNode(at,{key:"floating-label",ref:D,class:[B.value],floating:!0,for:h.value,style:S.value},{default:()=>[F()]}),e.createVNode(at,{ref:A,for:h.value},{default:()=>[F()]}),(N=a.default)==null?void 0:N.call(a,{...b.value,props:{id:h.value,class:"v-field__input","aria-describedby":k.value},focus:r,blur:d})]),P&&e.createVNode(Qo,{key:"clear"},{default:()=>[e.withDirectives(e.createVNode("div",{class:"v-field__clearable",onMousedown:M=>{M.preventDefault(),M.stopPropagation()}},[a.clear?a.clear():e.createVNode(p,{name:"clear"},null)]),[[e.vShow,n.dirty]])]}),T&&e.createVNode("div",{key:"append",class:"v-field__append-inner"},[(L=a["append-inner"])==null?void 0:L.call(a,b.value),n.appendInnerIcon&&e.createVNode(p,{key:"append-icon",name:"appendInner"},null)]),e.createVNode("div",{class:["v-field__outline",B.value],style:S.value},[w&&e.createVNode(e.Fragment,null,[e.createVNode("div",{class:"v-field__outline__start"},null),f.value&&e.createVNode("div",{class:"v-field__outline__notch"},[e.createVNode(at,{ref:D,floating:!0,for:h.value},{default:()=>[F()]})]),e.createVNode("div",{class:"v-field__outline__end"},null)]),E.value&&f.value&&e.createVNode(at,{ref:D,floating:!0,for:h.value},{default:()=>[F()]})])])}),{controlRef:V}}});function Ia(n){return vo(n,Object.keys(vl.props).filter(l=>!Tt(l)&&l!=="class"&&l!=="style"))}const mi=["color","file","time","date","datetime-local","week","month"],fl=U({autofocus:Boolean,counter:[Boolean,Number,String],counterValue:[Number,Function],prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,suffix:String,role:String,type:{type:String,default:"text"},modelModifiers:Object,...et(),...pl()},"VTextField"),Ln=J()({name:"VTextField",directives:{Intersect:ul},inheritAttrs:!1,props:fl(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:t,emit:o,slots:a}=l;const i=be(n,"modelValue"),{isFocused:c,focus:s,blur:u}=Qn(n),r=e.computed(()=>typeof n.counterValue=="function"?n.counterValue(i.value):typeof n.counterValue=="number"?n.counterValue:(i.value??"").toString().length),d=e.computed(()=>t.maxlength?t.maxlength:!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"?void 0:n.counter),p=e.computed(()=>["plain","underlined"].includes(n.variant));function v(E,$){var _,B;n.autofocus&&E&&((B=(_=$[0].target)==null?void 0:_.focus)==null||B.call(_))}const m=e.ref(),g=e.ref(),f=e.ref(),y=e.computed(()=>mi.includes(n.type)||n.persistentPlaceholder||c.value||n.active);function h(){var E;f.value!==document.activeElement&&((E=f.value)==null||E.focus()),c.value||s()}function k(E){o("mousedown:control",E),E.target!==f.value&&(h(),E.preventDefault())}function A(E){h(),o("click:control",E)}function D(E){E.stopPropagation(),h(),e.nextTick(()=>{i.value=null,yo(n["onClick:clear"],E)})}function V(E){var _;const $=E.target;if(i.value=$.value,((_=n.modelModifiers)==null?void 0:_.trim)&&["text","search","password","tel","url"].includes(n.type)){const B=[$.selectionStart,$.selectionEnd];e.nextTick(()=>{$.selectionStart=B[0],$.selectionEnd=B[1]})}}return ie(()=>{const E=!!(a.counter||n.counter!==!1&&n.counter!=null),$=!(!E&&!a.details),[_,B]=jn(t),{modelValue:S,...b}=He.filterProps(n),x=Ia(n);return e.createVNode(He,e.mergeProps({ref:m,modelValue:i.value,"onUpdate:modelValue":w=>i.value=w,class:["v-text-field",{"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-input--plain-underlined":p.value},n.class],style:n.style},_,b,{centerAffix:!p.value,focused:c.value}),{...a,default:w=>{let{id:W,isDisabled:P,isDirty:T,isReadonly:F,isValid:C}=w;return e.createVNode(vl,e.mergeProps({ref:g,onMousedown:k,onClick:A,"onClick:clear":D,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"],role:n.role},x,{id:W.value,active:y.value||T.value,dirty:T.value||n.dirty,disabled:P.value,focused:c.value,error:C.value===!1}),{...a,default:N=>{let{props:{class:L,...M}}=N;const q=e.withDirectives(e.createVNode("input",e.mergeProps({ref:f,value:i.value,onInput:V,autofocus:n.autofocus,readonly:F.value,disabled:P.value,name:n.name,placeholder:n.placeholder,size:1,type:n.type,onFocus:h,onBlur:u},M,B),null),[[e.resolveDirective("intersect"),{handler:v},null,{once:!0}]]);return e.createVNode(e.Fragment,null,[n.prefix&&e.createVNode("span",{class:"v-text-field__prefix"},[e.createVNode("span",{class:"v-text-field__prefix__text"},[n.prefix])]),a.default?e.createVNode("div",{class:L,"data-no-activator":""},[a.default(),q]):e.cloneVNode(q,{class:L}),n.suffix&&e.createVNode("span",{class:"v-text-field__suffix"},[e.createVNode("span",{class:"v-text-field__suffix__text"},[n.suffix])])])}})},details:$?w=>{var W;return e.createVNode(e.Fragment,null,[(W=a.details)==null?void 0:W.call(a,w),E&&e.createVNode(e.Fragment,null,[e.createVNode("span",null,null),e.createVNode(Ca,{active:n.persistentCounter||c.value,value:r.value,max:d.value},a.counter)])])}:void 0})}),nt({},m,g,f)}}),yi=U({renderless:Boolean,...ce()},"VVirtualScrollItem"),gi=J()({name:"VVirtualScrollItem",inheritAttrs:!1,props:yi(),emits:{"update:height":n=>!0},setup(n,l){let{attrs:t,emit:o,slots:a}=l;const{resizeRef:i,contentRect:c}=ll(void 0,"border");e.watch(()=>{var s;return(s=c.value)==null?void 0:s.height},s=>{s!=null&&o("update:height",s)}),ie(()=>{var s,u;return n.renderless?e.createVNode(e.Fragment,null,[(s=a.default)==null?void 0:s.call(a,{itemRef:i})]):e.createVNode("div",e.mergeProps({ref:i,class:["v-virtual-scroll__item",n.class],style:n.style},t),[(u=a.default)==null?void 0:u.call(a)])})}}),hi=U({itemHeight:{type:[Number,String],default:null},height:[Number,String]},"virtual");function bi(n,l){const t=ma(),o=e.shallowRef(0);e.watchEffect(()=>{o.value=parseFloat(n.itemHeight||0)});const a=e.shallowRef(0),i=e.shallowRef(Math.ceil((parseInt(n.height)||t.height.value)/(o.value||16))||1),c=e.shallowRef(0),s=e.shallowRef(0),u=e.ref(),r=e.ref();let d=0;const{resizeRef:p,contentRect:v}=ll();e.watchEffect(()=>{p.value=u.value});const m=e.computed(()=>{var P;return u.value===document.documentElement?t.height.value:((P=v.value)==null?void 0:P.height)||parseInt(n.height)||0}),g=e.computed(()=>!!(u.value&&r.value&&m.value&&o.value));let f=Array.from({length:l.value.length}),y=Array.from({length:l.value.length});const h=e.shallowRef(0);let k=-1;const A=function(P,T){let F=0;const C=function(){for(var N=arguments.length,L=new Array(N),M=0;MP(...L),e.unref(T))};return C.clear=()=>{clearTimeout(F)},C.immediate=P,C}(()=>{const P=performance.now();y[0]=0;const T=l.value.length;for(let F=1;F<=T-1;F++)y[F]=(y[F-1]||0)+(f[F-1]||o.value);h.value=Math.max(h.value,performance.now()-P)},h),D=e.watch(g,P=>{P&&(D(),d=r.value.offsetTop,A.immediate(),b(),~k&&e.nextTick(()=>{ke&&window.requestAnimationFrame(()=>{w(k),k=-1})}))});function V(P){return P=hn(P,0,l.value.length-1),y[P]||0}function E(P){return function(T,F){let C=T.length-1,N=0,L=0,M=null,q=-1;if(T[C]>1,M=T[L],M>F)C=L-1;else{if(!(M{T&&b()}),e.onScopeDispose(()=>{A.clear()});let $=0,_=0,B=0,S=-1;function b(){cancelAnimationFrame(S),S=requestAnimationFrame(x)}function x(){if(!u.value||!m.value)return;const P=$-d,T=Math.sign(_),F=hn(E(Math.max(0,P-100)),0,l.value.length),C=hn(E(P+m.value+100)+1,F+1,l.value.length);if((T!==-1||Fi.value)){const N=V(a.value)-V(F),L=V(C)-V(i.value);Math.max(N,L)>100?(a.value=F,i.value=C):(F<=0&&(a.value=F),C>=l.value.length&&(i.value=C))}c.value=V(a.value),s.value=V(l.value.length)-V(i.value)}function w(P){const T=V(P);!u.value||P&&!T?k=P:u.value.scrollTop=T}const W=e.computed(()=>l.value.slice(a.value,i.value).map((P,T)=>({raw:P,index:T+a.value})));return e.watch(l,()=>{f=Array.from({length:l.value.length}),y=Array.from({length:l.value.length}),A.immediate(),b()},{deep:!0}),{containerRef:u,markerRef:r,computedItems:W,paddingTop:c,paddingBottom:s,scrollToIndex:w,handleScroll:function(){if(!u.value||!r.value)return;const P=u.value.scrollTop,T=performance.now();T-B>500?(_=Math.sign(P-$),d=r.value.offsetTop):_=P-$,$=P,B=T,b()},handleScrollend:function(){u.value&&r.value&&(_=0,B=0,b())},handleItemResize:function(P,T){const F=f[P],C=o.value;o.value=C?Math.min(o.value,T):T,F===T&&C===o.value||(f[P]=T,A())}}}const Ci=U({items:{type:Array,default:()=>[]},renderless:Boolean,...hi(),...ce(),...un()},"VVirtualScroll"),Sa=J()({name:"VVirtualScroll",props:Ci(),setup(n,l){let{slots:t}=l;const o=Ve("VVirtualScroll"),{dimensionStyles:a}=cn(n),{containerRef:i,markerRef:c,handleScroll:s,handleScrollend:u,handleItemResize:r,scrollToIndex:d,paddingTop:p,paddingBottom:v,computedItems:m}=bi(n,e.toRef(n,"items"));return nn(()=>n.renderless,()=>{function g(){var y,h;const f=arguments.length>0&&arguments[0]!==void 0&&arguments[0]?"addEventListener":"removeEventListener";i.value===document.documentElement?(document[f]("scroll",s,{passive:!0}),document[f]("scrollend",u)):((y=i.value)==null||y[f]("scroll",s,{passive:!0}),(h=i.value)==null||h[f]("scrollend",u))}e.onMounted(()=>{i.value=Vo(o.vnode.el,!0),g(!0)}),e.onScopeDispose(g)}),ie(()=>{const g=m.value.map(f=>e.createVNode(gi,{key:f.index,renderless:n.renderless,"onUpdate:height":y=>r(f.index,y)},{default:y=>{var h;return(h=t.default)==null?void 0:h.call(t,{item:f.raw,index:f.index,...y})}}));return n.renderless?e.createVNode(e.Fragment,null,[e.createVNode("div",{ref:c,class:"v-virtual-scroll__spacer",style:{paddingTop:te(p.value)}},null),g,e.createVNode("div",{class:"v-virtual-scroll__spacer",style:{paddingBottom:te(v.value)}},null)]):e.createVNode("div",{ref:i,class:["v-virtual-scroll",n.class],onScrollPassive:s,onScrollend:u,style:[a.value,n.style]},[e.createVNode("div",{ref:c,class:"v-virtual-scroll__container",style:{paddingTop:te(p.value),paddingBottom:te(v.value)}},[g])])}),{scrollToIndex:d}}});function Va(n,l){const t=e.shallowRef(!1);let o;return{onListScroll:function(a){cancelAnimationFrame(o),t.value=!0,o=requestAnimationFrame(()=>{o=requestAnimationFrame(()=>{t.value=!1})})},onListKeydown:async function(a){var s,u;if(a.key==="Tab"&&((s=l.value)==null||s.focus()),!["PageDown","PageUp","Home","End"].includes(a.key))return;const i=(u=n.value)==null?void 0:u.$el;if(!i)return;a.key!=="Home"&&a.key!=="End"||i.scrollTo({top:a.key==="Home"?0:i.scrollHeight,behavior:"smooth"}),await async function(){await new Promise(r=>requestAnimationFrame(r)),await new Promise(r=>requestAnimationFrame(r)),await new Promise(r=>requestAnimationFrame(r)),await new Promise(r=>{if(t.value){const d=e.watch(t,()=>{d(),r()})}else r()})}();const c=i.querySelectorAll(":scope > :not(.v-virtual-scroll__spacer)");if(a.key==="PageDown"||a.key==="Home"){const r=i.getBoundingClientRect().top;for(const d of c)if(d.getBoundingClientRect().top>=r){d.focus();break}}else{const r=i.getBoundingClientRect().bottom;for(const d of[...c].reverse())if(d.getBoundingClientRect().bottom<=r){d.focus();break}}}}}const Ba=U({chips:Boolean,closableChips:Boolean,closeText:{type:String,default:"$vuetify.close"},openText:{type:String,default:"$vuetify.open"},eager:Boolean,hideNoData:Boolean,hideSelected:Boolean,menu:Boolean,menuIcon:{type:fe,default:"$dropdown"},menuProps:{type:Object},multiple:Boolean,noDataText:{type:String,default:"$vuetify.noDataText"},openOnClear:Boolean,itemColor:String,...ua({itemChildren:!1})},"Select"),Ii=U({...Ba(),...Ke(fl({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...Pn({transition:{component:Jo}})},"VSelect"),Si=J()({name:"VSelect",props:Ii(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,l){let{slots:t}=l;const{t:o}=It(),a=e.ref(),i=e.ref(),c=e.ref(),s=be(n,"menu"),u=e.computed({get:()=>s.value,set:C=>{var N;s.value&&!C&&((N=i.value)!=null&&N.ΨopenChildren)||(s.value=C)}}),{items:r,transformIn:d,transformOut:p}=da(n),v=be(n,"modelValue",[],C=>d(C===null?[null]:Pe(C)),C=>{const N=p(C);return n.multiple?N:N[0]??null}),m=e.computed(()=>typeof n.counterValue=="function"?n.counterValue(v.value):typeof n.counterValue=="number"?n.counterValue:v.value.length),g=dl(),f=e.computed(()=>v.value.map(C=>C.value)),y=e.shallowRef(!1),h=e.computed(()=>u.value?n.closeText:n.openText);let k,A="";const D=e.computed(()=>n.hideSelected?r.value.filter(C=>!v.value.some(N=>N===C)):r.value),V=e.computed(()=>n.hideNoData&&!D.value.length||n.readonly||(g==null?void 0:g.isReadonly.value)),E=e.computed(()=>{var C;return{...n.menuProps,activatorProps:{...((C=n.menuProps)==null?void 0:C.activatorProps)||{},"aria-haspopup":"listbox"}}}),$=e.ref(),{onListScroll:_,onListKeydown:B}=Va($,a);function S(C){n.openOnClear&&(u.value=!0)}function b(){V.value||(u.value=!u.value)}function x(C){var M,q;if(!C.key||n.readonly||g!=null&&g.isReadonly.value||(["Enter"," ","ArrowDown","ArrowUp","Home","End"].includes(C.key)&&C.preventDefault(),["Enter","ArrowDown"," "].includes(C.key)&&(u.value=!0),["Escape","Tab"].includes(C.key)&&(u.value=!1),C.key==="Home"?(M=$.value)==null||M.focus("first"):C.key==="End"&&((q=$.value)==null||q.focus("last")),n.multiple||!function(j){const H=j.key.length===1,R=!j.ctrlKey&&!j.metaKey&&!j.altKey;return H&&R}(C)))return;const N=performance.now();N-k>1e3&&(A=""),A+=C.key.toLowerCase(),k=N;const L=r.value.find(j=>j.title.toLowerCase().startsWith(A));L!==void 0&&(v.value=[L])}function w(C){if(n.multiple){const N=v.value.findIndex(L=>n.valueComparator(L.value,C.value));if(N===-1)v.value=[...v.value,C];else{const L=[...v.value];L.splice(N,1),v.value=L}}else v.value=[C],u.value=!1}function W(C){var N;(N=$.value)!=null&&N.$el.contains(C.relatedTarget)||(u.value=!1)}function P(){var C;y.value&&((C=a.value)==null||C.focus())}function T(C){y.value=!0}function F(C){if(C==null)v.value=[];else if(bn(a.value,":autofill")||bn(a.value,":-webkit-autofill")){const N=r.value.find(L=>L.title===C);N&&w(N)}else a.value&&(a.value.value="")}return e.watch(u,()=>{if(!n.hideSelected&&u.value&&v.value.length){const C=D.value.findIndex(N=>v.value.some(L=>n.valueComparator(L.value,N.value)));ke&&window.requestAnimationFrame(()=>{var N;C>=0&&((N=c.value)==null||N.scrollToIndex(C))})}}),e.watch(D,(C,N)=>{y.value&&(!C.length&&n.hideNoData&&(u.value=!1),!N.length&&C.length&&(u.value=!0))}),ie(()=>{const C=!(!n.chips&&!t.chip),N=!!(!n.hideNoData||D.value.length||t["prepend-item"]||t["append-item"]||t["no-data"]),L=v.value.length>0,M=Ln.filterProps(n),q=L||!y.value&&n.label&&!n.persistentPlaceholder?void 0:n.placeholder;return e.createVNode(Ln,e.mergeProps({ref:a},M,{modelValue:v.value.map(j=>j.props.value).join(", "),"onUpdate:modelValue":F,focused:y.value,"onUpdate:focused":j=>y.value=j,validationValue:v.externalValue,counterValue:m.value,dirty:L,class:["v-select",{"v-select--active-menu":u.value,"v-select--chips":!!n.chips,["v-select--"+(n.multiple?"multiple":"single")]:!0,"v-select--selected":v.value.length,"v-select--selection-slot":!!t.selection},n.class],style:n.style,inputmode:"none",placeholder:q,"onClick:clear":S,"onMousedown:control":b,onBlur:W,onKeydown:x,"aria-label":o(h.value),title:o(h.value)}),{...t,default:()=>e.createVNode(e.Fragment,null,[e.createVNode(ba,e.mergeProps({ref:i,modelValue:u.value,"onUpdate:modelValue":j=>u.value=j,activator:"parent",contentClass:"v-select__content",disabled:V.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:P},E.value),{default:()=>[N&&e.createVNode(va,{ref:$,selected:f.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:j=>j.preventDefault(),onKeydown:B,onFocusin:T,onScrollPassive:_,tabindex:"-1","aria-live":"polite",color:n.itemColor??n.color},{default:()=>{var j,H,R;return[(j=t["prepend-item"])==null?void 0:j.call(t),!D.value.length&&!n.hideNoData&&(((H=t["no-data"])==null?void 0:H.call(t))??e.createVNode(In,{title:o(n.noDataText)},null)),e.createVNode(Sa,{ref:c,renderless:!0,items:D.value},{default:O=>{var ee;let{item:z,index:I,itemRef:G}=O;const Y=e.mergeProps(z.props,{ref:G,key:I,onClick:()=>w(z)});return((ee=t.item)==null?void 0:ee.call(t,{item:z,index:I,props:Y}))??e.createVNode(In,e.mergeProps(Y,{role:"option"}),{prepend:K=>{let{isSelected:oe}=K;return e.createVNode(e.Fragment,null,[n.multiple&&!n.hideSelected?e.createVNode(ht,{key:z.value,modelValue:oe,ripple:!1,tabindex:"-1"},null):void 0,z.props.prependAvatar&&e.createVNode(qe,{image:z.props.prependAvatar},null),z.props.prependIcon&&e.createVNode(me,{icon:z.props.prependIcon},null)])}})}}),(R=t["append-item"])==null?void 0:R.call(t)]}})]}),v.value.map((j,H)=>{const R={"onClick:close":function(I){I.stopPropagation(),I.preventDefault(),w(j)},onMousedown(I){I.preventDefault(),I.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0},O=C?!!t.chip:!!t.selection,z=O?Zt(C?t.chip({item:j,index:H,props:R}):t.selection({item:j,index:H})):void 0;if(!O||z)return e.createVNode("div",{key:j.value,class:"v-select__selection"},[C?t.chip?e.createVNode(Be,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:j.title}}},{default:()=>[z]}):e.createVNode(ta,e.mergeProps({key:"chip",closable:n.closableChips,size:"small",text:j.title,disabled:j.props.disabled},R),null):z??e.createVNode("span",{class:"v-select__selection-text"},[j.title,n.multiple&&Hn==null||l==null?-1:n.toString().toLocaleLowerCase().indexOf(l.toString().toLocaleLowerCase()),Bi=U({customFilter:Function,customKeyFilter:Object,filterKeys:[Array,String],filterMode:{type:String,default:"intersection"},noFilter:Boolean},"filter");function wi(n,l,t,o){const a=e.ref([]),i=e.ref(new Map),c=e.computed(()=>o!=null&&o.transform?e.unref(l).map(s=>[s,o.transform(s)]):e.unref(l));return e.watchEffect(()=>{const s=typeof t=="function"?t():e.unref(t),u=typeof s!="string"&&typeof s!="number"?"":String(s),r=function(m,g,f){var D;const y=[],h=(f==null?void 0:f.default)??Vi,k=!!(f!=null&&f.filterKeys)&&Pe(f.filterKeys),A=Object.keys((f==null?void 0:f.customKeyFilter)??{}).length;if(!(m!=null&&m.length))return y;e:for(let V=0;V{let{index:g,matches:f}=m;const y=d[g];p.push(y),v.set(y.value,f)}),a.value=p,i.value=v}),{filteredItems:a,filteredMatches:i,getMatches:function(s){return i.value.get(s.value)}}}const ki=U({autoSelectFirst:{type:[Boolean,String]},search:String,...Bi({filterKeys:["title"]}),...Ba(),...Ke(fl({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...Pn({transition:!1})},"VAutocomplete"),xi=J()({name:"VAutocomplete",props:ki(),emits:{"update:focused":n=>!0,"update:search":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,l){let{slots:t}=l;const{t:o}=It(),a=e.ref(),i=e.shallowRef(!1),c=e.shallowRef(!0),s=e.shallowRef(!1),u=e.ref(),r=e.ref(),d=be(n,"menu"),p=e.computed({get:()=>d.value,set:I=>{var G;d.value&&!I&&((G=u.value)!=null&&G.ΨopenChildren)||(d.value=I)}}),v=e.shallowRef(-1),m=e.computed(()=>{var I;return(I=a.value)==null?void 0:I.color}),g=e.computed(()=>p.value?n.closeText:n.openText),{items:f,transformIn:y,transformOut:h}=da(n),{textColorClasses:k,textColorStyles:A}=$e(m),D=be(n,"search",""),V=be(n,"modelValue",[],I=>y(I===null?[null]:Pe(I)),I=>{const G=h(I);return n.multiple?G:G[0]??null}),E=e.computed(()=>typeof n.counterValue=="function"?n.counterValue(V.value):typeof n.counterValue=="number"?n.counterValue:V.value.length),$=dl(),{filteredItems:_,getMatches:B}=wi(n,f,()=>c.value?"":D.value),S=e.computed(()=>n.hideSelected?_.value.filter(I=>!V.value.some(G=>G.value===I.value)):_.value),b=e.computed(()=>V.value.map(I=>I.props.value)),x=e.computed(()=>{var I;return(n.autoSelectFirst===!0||n.autoSelectFirst==="exact"&&D.value===((I=S.value[0])==null?void 0:I.title))&&S.value.length>0&&!c.value&&!s.value}),w=e.computed(()=>n.hideNoData&&!S.value.length||n.readonly||($==null?void 0:$.isReadonly.value)),W=e.ref(),{onListScroll:P,onListKeydown:T}=Va(W,a);function F(I){n.openOnClear&&(p.value=!0),D.value=""}function C(){w.value||(p.value=!0)}function N(I){w.value||(i.value&&(I.preventDefault(),I.stopPropagation()),p.value=!p.value)}function L(I){var ee,K,oe;if(n.readonly||$!=null&&$.isReadonly.value)return;const G=a.value.selectionStart,Y=V.value.length;if((v.value>-1||["Enter","ArrowDown","ArrowUp"].includes(I.key))&&I.preventDefault(),["Enter","ArrowDown"].includes(I.key)&&(p.value=!0),["Escape"].includes(I.key)&&(p.value=!1),x.value&&["Enter","Tab"].includes(I.key)&&z(S.value[0]),I.key==="ArrowDown"&&x.value&&((ee=W.value)==null||ee.focus("next")),n.multiple){if(["Backspace","Delete"].includes(I.key)){if(v.value<0)return void(I.key!=="Backspace"||D.value||(v.value=Y-1));const le=v.value,se=V.value[v.value];se&&!se.props.disabled&&z(se),v.value=le>=Y-1?Y-2:le}if(I.key==="ArrowLeft"){if(v.value<0&&G>0)return;const le=v.value>-1?v.value-1:Y-1;V.value[le]?v.value=le:(v.value=-1,a.value.setSelectionRange((K=D.value)==null?void 0:K.length,(oe=D.value)==null?void 0:oe.length))}if(I.key==="ArrowRight"){if(v.value<0)return;const le=v.value+1;V.value[le]?v.value=le:(v.value=-1,a.value.setSelectionRange(0,0))}}}function M(I){if(bn(a.value,":autofill")||bn(a.value,":-webkit-autofill")){const G=f.value.find(Y=>Y.title===I.target.value);G&&z(G)}}function q(){var I;i.value&&(c.value=!0,(I=a.value)==null||I.focus())}function j(I){i.value=!0,setTimeout(()=>{s.value=!0})}function H(I){s.value=!1}function R(I){(I==null||I===""&&!n.multiple)&&(V.value=[])}const O=e.shallowRef(!1);function z(I){let G=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];if(!I.props.disabled)if(n.multiple){const Y=V.value.findIndex(ee=>n.valueComparator(ee.value,I.value));if(Y===-1)V.value=[...V.value,I];else{const ee=[...V.value];ee.splice(Y,1),V.value=ee}}else V.value=G?[I]:[],O.value=!0,D.value=G?I.title:"",p.value=!1,c.value=!0,e.nextTick(()=>O.value=!1)}return e.watch(i,(I,G)=>{var Y;I!==G&&(I?(O.value=!0,D.value=n.multiple?"":String(((Y=V.value.at(-1))==null?void 0:Y.props.title)??""),c.value=!0,e.nextTick(()=>O.value=!1)):(n.multiple||D.value!=null?!x.value||s.value||V.value.some(ee=>{let{value:K}=ee;return K===S.value[0].value})||z(S.value[0]):V.value=[],p.value=!1,D.value="",v.value=-1))}),e.watch(D,I=>{i.value&&!O.value&&(I&&(p.value=!0),c.value=!I)}),e.watch(p,()=>{if(!n.hideSelected&&p.value&&V.value.length){const I=S.value.findIndex(G=>V.value.some(Y=>G.value===Y.value));ke&&window.requestAnimationFrame(()=>{var G;I>=0&&((G=r.value)==null||G.scrollToIndex(I))})}}),e.watch(S,(I,G)=>{i.value&&(!I.length&&n.hideNoData&&(p.value=!1),!G.length&&I.length&&(p.value=!0))}),ie(()=>{const I=!(!n.chips&&!t.chip),G=!!(!n.hideNoData||S.value.length||t["prepend-item"]||t["append-item"]||t["no-data"]),Y=V.value.length>0,ee=Ln.filterProps(n);return e.createVNode(Ln,e.mergeProps({ref:a},ee,{modelValue:D.value,"onUpdate:modelValue":[K=>D.value=K,R],focused:i.value,"onUpdate:focused":K=>i.value=K,validationValue:V.externalValue,counterValue:E.value,dirty:Y,onChange:M,class:["v-autocomplete","v-autocomplete--"+(n.multiple?"multiple":"single"),{"v-autocomplete--active-menu":p.value,"v-autocomplete--chips":!!n.chips,"v-autocomplete--selection-slot":!!t.selection,"v-autocomplete--selecting-index":v.value>-1},n.class],style:n.style,readonly:n.readonly,placeholder:Y?void 0:n.placeholder,"onClick:clear":F,"onMousedown:control":C,onKeydown:L}),{...t,default:()=>e.createVNode(e.Fragment,null,[e.createVNode(ba,e.mergeProps({ref:u,modelValue:p.value,"onUpdate:modelValue":K=>p.value=K,activator:"parent",contentClass:"v-autocomplete__content",disabled:w.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:q},n.menuProps),{default:()=>[G&&e.createVNode(va,{ref:W,selected:b.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:K=>K.preventDefault(),onKeydown:T,onFocusin:j,onFocusout:H,onScrollPassive:P,tabindex:"-1","aria-live":"polite",color:n.itemColor??n.color},{default:()=>{var K,oe,le;return[(K=t["prepend-item"])==null?void 0:K.call(t),!S.value.length&&!n.hideNoData&&(((oe=t["no-data"])==null?void 0:oe.call(t))??e.createVNode(In,{title:o(n.noDataText)},null)),e.createVNode(Sa,{ref:r,renderless:!0,items:S.value},{default:se=>{var Ce;let{item:Z,index:de,itemRef:pe}=se;const he=e.mergeProps(Z.props,{ref:pe,key:de,active:!(!x.value||de!==0)||void 0,onClick:()=>z(Z)});return((Ce=t.item)==null?void 0:Ce.call(t,{item:Z,index:de,props:he}))??e.createVNode(In,he,{prepend:ue=>{let{isSelected:Q}=ue;return e.createVNode(e.Fragment,null,[n.multiple&&!n.hideSelected?e.createVNode(ht,{key:Z.value,modelValue:Q,ripple:!1,tabindex:"-1"},null):void 0,Z.props.prependAvatar&&e.createVNode(qe,{image:Z.props.prependAvatar},null),Z.props.prependIcon&&e.createVNode(me,{icon:Z.props.prependIcon},null)])},title:()=>{var ue,Q;return c.value?Z.title:function(ae,ge,ye){if(ge==null)return ae;if(Array.isArray(ge))throw new Error("Multiple matches is not implemented");return typeof ge=="number"&&~ge?e.createVNode(e.Fragment,null,[e.createVNode("span",{class:"v-autocomplete__unmask"},[ae.substr(0,ge)]),e.createVNode("span",{class:"v-autocomplete__mask"},[ae.substr(ge,ye)]),e.createVNode("span",{class:"v-autocomplete__unmask"},[ae.substr(ge+ye)])]):ae}(Z.title,(ue=B(Z))==null?void 0:ue.title,((Q=D.value)==null?void 0:Q.length)??0)}})}}),(le=t["append-item"])==null?void 0:le.call(t)]}})]}),V.value.map((K,oe)=>{const le={"onClick:close":function(de){de.stopPropagation(),de.preventDefault(),z(K,!1)},onMousedown(de){de.preventDefault(),de.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0},se=I?!!t.chip:!!t.selection,Z=se?Zt(I?t.chip({item:K,index:oe,props:le}):t.selection({item:K,index:oe})):void 0;if(!se||Z)return e.createVNode("div",{key:K.value,class:["v-autocomplete__selection",oe===v.value&&["v-autocomplete__selection--selected",k.value]],style:oe===v.value?A.value:{}},[I?t.chip?e.createVNode(Be,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:K.title}}},{default:()=>[Z]}):e.createVNode(ta,e.mergeProps({key:"chip",closable:n.closableChips,size:"small",text:K.title,disabled:K.props.disabled},le),null):Z??e.createVNode("span",{class:"v-autocomplete__selection-text"},[K.title,n.multiple&&oe{var o;return e.createVNode("div",{class:["v-card-actions",n.class],style:n.style},[(o=t.default)==null?void 0:o.call(t)])}),{}}}),Ni=Un("v-card-subtitle"),Ai=Un("v-card-title"),Pi=U({appendAvatar:String,appendIcon:fe,prependAvatar:String,prependIcon:fe,subtitle:[String,Number],title:[String,Number],...ce(),...De()},"VCardItem"),_i=J()({name:"VCardItem",props:Pi(),setup(n,l){let{slots:t}=l;return ie(()=>{var r;const o=!(!n.prependAvatar&&!n.prependIcon),a=!(!o&&!t.prepend),i=!(!n.appendAvatar&&!n.appendIcon),c=!(!i&&!t.append),s=!(n.title==null&&!t.title),u=!(n.subtitle==null&&!t.subtitle);return e.createVNode("div",{class:["v-card-item",n.class],style:n.style},[a&&e.createVNode("div",{key:"prepend",class:"v-card-item__prepend"},[t.prepend?e.createVNode(Be,{key:"prepend-defaults",disabled:!o,defaults:{VAvatar:{density:n.density,icon:n.prependIcon,image:n.prependAvatar}}},t.prepend):o&&e.createVNode(qe,{key:"prepend-avatar",density:n.density,icon:n.prependIcon,image:n.prependAvatar},null)]),e.createVNode("div",{class:"v-card-item__content"},[s&&e.createVNode(Ai,{key:"title"},{default:()=>{var d;return[((d=t.title)==null?void 0:d.call(t))??n.title]}}),u&&e.createVNode(Ni,{key:"subtitle"},{default:()=>{var d;return[((d=t.subtitle)==null?void 0:d.call(t))??n.subtitle]}}),(r=t.default)==null?void 0:r.call(t)]),c&&e.createVNode("div",{key:"append",class:"v-card-item__append"},[t.append?e.createVNode(Be,{key:"append-defaults",disabled:!i,defaults:{VAvatar:{density:n.density,icon:n.appendIcon,image:n.appendAvatar}}},t.append):i&&e.createVNode(qe,{key:"append-avatar",density:n.density,icon:n.appendIcon,image:n.appendAvatar},null)])])}),{}}}),Xe=Un("v-card-text"),Oi=U({appendAvatar:String,appendIcon:fe,disabled:Boolean,flat:Boolean,hover:Boolean,image:String,link:{type:Boolean,default:void 0},prependAvatar:String,prependIcon:fe,ripple:{type:[Boolean,Object],default:!0},subtitle:[String,Number],text:[String,Number],title:[String,Number],...kn(),...ce(),...De(),...un(),...Fn(),...rl(),...ol(),...Oo(),...We(),...Bt(),...Ae(),...we(),...Ye({variant:"elevated"})},"VCard"),fn=J()({name:"VCard",directives:{Ripple:Jn},props:Oi(),setup(n,l){let{attrs:t,slots:o}=l;const{themeClasses:a}=xe(n),{borderClasses:i}=xn(n),{colorClasses:c,colorStyles:s,variantClasses:u}=Yn(n),{densityClasses:r}=Le(n),{dimensionStyles:d}=cn(n),{elevationClasses:p}=Nn(n),{loaderClasses:v}=St(n),{locationStyles:m}=al(n),{positionClasses:g}=zo(n),{roundedClasses:f}=je(n),y=Vt(n,t),h=e.computed(()=>n.link!==!1&&y.isLink.value),k=e.computed(()=>!n.disabled&&n.link!==!1&&(n.link||y.isClickable.value));return ie(()=>{const A=h.value?"a":n.tag,D=!(!o.title&&n.title==null),V=!(!o.subtitle&&n.subtitle==null),E=D||V,$=!!(o.append||n.appendAvatar||n.appendIcon),_=!!(o.prepend||n.prependAvatar||n.prependIcon),B=!(!o.image&&!n.image),S=E||_||$,b=!(!o.text&&n.text==null);return e.withDirectives(e.createVNode(A,{class:["v-card",{"v-card--disabled":n.disabled,"v-card--flat":n.flat,"v-card--hover":n.hover&&!(n.disabled||n.flat),"v-card--link":k.value},a.value,i.value,c.value,r.value,p.value,v.value,g.value,f.value,u.value,n.class],style:[s.value,d.value,m.value,n.style],href:y.href.value,onClick:k.value&&y.navigate,tabindex:n.disabled?-1:void 0},{default:()=>{var x;return[B&&e.createVNode("div",{key:"image",class:"v-card__image"},[o.image?e.createVNode(Be,{key:"image-defaults",disabled:!n.image,defaults:{VImg:{cover:!0,src:n.image}}},o.image):e.createVNode(jo,{key:"image-img",cover:!0,src:n.image},null)]),e.createVNode(il,{name:"v-card",active:!!n.loading,color:typeof n.loading=="boolean"?void 0:n.loading},{default:o.loader}),S&&e.createVNode(_i,{key:"item",prependAvatar:n.prependAvatar,prependIcon:n.prependIcon,title:n.title,subtitle:n.subtitle,appendAvatar:n.appendAvatar,appendIcon:n.appendIcon},{default:o.item,prepend:o.prepend,title:o.title,subtitle:o.subtitle,append:o.append}),b&&e.createVNode(Xe,{key:"text"},{default:()=>{var w;return[((w=o.text)==null?void 0:w.call(o))??n.text]}}),(x=o.default)==null?void 0:x.call(o),o.actions&&e.createVNode(Fi,null,{default:o.actions}),Kn(k.value,"v-card")]}}),[[e.resolveDirective("ripple"),k.value&&n.ripple]])}),{}}}),wa=(n,l)=>{const t=n.__vccOpts||n;for(const[o,a]of l)t[o]=a;return t},ka=wa(e.defineComponent({__name:"VInlineAutocomplete",props:e.mergeModels(e.mergeDefaults({autoSelectFirst:{},clearIcon:{},clearable:{},density:{},hideSelected:{},itemTitle:{},itemValue:{},items:{},menu:{},menuIcon:{},rules:{},variant:{},autofocus:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...ja}),{modelValue:{},modelModifiers:{}}),emits:e.mergeModels([...vn],["update:modelValue"]),setup(n,{emit:l}){const t=e.useModel(n,"modelValue"),o=e.useAttrs(),a=e.useSlots(),i=l,c=e.inject(Me,{}),s=e.inject(Symbol.for("vuetify:icons")),u=n,r=e.reactive({...o,...u,...c});e.watchEffect(()=>{Object.assign(r,{...o,...u,...c})});const{cancelButtonColor:d,cancelButtonSize:p,cancelButtonTitle:v,cancelButtonVariant:m,cancelIcon:g,cancelIconColor:f,cardField:y,closeSiblings:h,color:k,fieldOnly:A,hideCancelIcon:D,hideDetails:V,hideSaveIcon:E,loadingIcon:$,loadingIconColor:_,saveButtonColor:B,saveButtonSize:S,saveButtonTitle:b,saveButtonVariant:x,saveIcon:w,saveIconColor:W,valueColor:P}=e.toRefs(r),T=e.computed(()=>u.disabled),F=e.computed(()=>u.loading),C=e.ref(!1),N=e.ref(!1),L=e.ref(),M=e.ref(!1),q=e.ref(null);let j=t.value;e.watch(()=>F.value,(X,ve)=>{!X&&ve&&M.value&&Ce()});const H=e.computed(()=>Oe({icon:u.clearIcon,iconOptions:s,name:"clear"})),R=e.computed(()=>t.value&&t.value[r.itemTitle]?(C.value=!1,t.value[r.itemTitle]):t.value?t.value:(C.value=!0,r.emptyText)),O=e.computed(()=>An(r)),z=e.computed(()=>({color:r.color,displayAppendIcon:r.displayAppendIcon,displayAppendIconColor:r.displayAppendIconColor,displayAppendIconSize:r.displayAppendIconSize,displayAppendInnerIcon:r.displayAppendInnerIcon,displayAppendInnerIconColor:r.displayAppendInnerIconColor,displayAppendInnerIconSize:r.displayAppendInnerIconSize,displayPrependIcon:r.displayPrependIcon,displayPrependIconColor:r.displayPrependIconColor,displayPrependIconSize:r.displayPrependIconSize,displayPrependInnerIcon:r.displayPrependInnerIcon,displayPrependInnerIconColor:r.displayPrependInnerIconColor,displayPrependInnerIconSize:r.displayPrependInnerIconSize,displayValue:R.value,empty:C.value,error:N.value,field:"v-text-field",underlineColor:r.underlineColor,underlineStyle:r.underlineStyle,underlineWidth:r.underlineWidth,underlined:r.underlined,valueColor:P.value})),I=e.computed(()=>({...ln,...u.cardProps}));e.watchEffect(()=>{L.value=r.items||[]});const G=e.computed(()=>on({cell:r.cell&&!M.value,density:r.density,disabled:T.value,field:"v-select",iconSet:s==null?void 0:s.defaultSet,loading:F.value,loadingWait:r.loadingWait,tableField:r.tableField,variant:r.variant})),Y=e.computed(()=>an({cell:r.cell,cellUnderlineFullWidth:r.cellUnderlineFullWidth,density:r.density,field:"v-select"})),ee=Wn({density:r.density,variant:r.variant}),K=e.computed(()=>rn({active:M.value,name:"select"})),oe=e.computed(()=>sn({name:"select",showField:M.value})),le=e.computed(()=>({})),se=e.computed(()=>de.value);function Z(){N.value=!1,t.value=j,Ce()}const de=e.ref(),pe=e.ref(null),he=e.ref("body");function Ce(){var ve,Se;if(T.value||r.loadingWait&&F.value)return;de.value=Ge({cardMinWidth:(ve=r.cardProps)==null?void 0:ve.minWidth,cardOffsetX:r.cardOffsetX,cardOffsetY:r.cardOffsetY,cardWidth:(Se=r.cardProps)==null?void 0:Se.width,field:pe.value});const X=pn({attrs:o,closeSiblings:h.value,fieldOnly:r.fieldOnly,props:u,showField:M,timeOpened:q.value});M.value=X.showField,q.value=X.timeOpened,ye!==null&&h.value&&M.value&&!r.fieldOnly&&ye.emit(X.timeOpened)}const ue=e.ref(),Q=e.computed(()=>ue.value);function ae(){const X=Zn({required:r.required,rules:r.rules,value:t});return N.value=X.errors,ue.value=X.results,X.results}function ge(){j=t.value,i("update",t.value),r.loadingWait||Ce()}let ye,ne;function Ie(X){i("update:closeSiblingFields",q),M.value&&q.value!==X&&Z()}return e.watch(()=>M.value,()=>{M.value&&ae()}),e.watch(()=>t.value,()=>{M.value&&ae()}),h.value&&import("@vueuse/core").then(({useEventBus:X})=>{ye=X(tn),ne=ye.on(Ie)}),e.onUnmounted(()=>{ne!==void 0&&ye.off(Ie)}),(X,ve)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:pe,class:e.normalizeClass(e.unref(G)),style:e.normalizeStyle(e.unref(le))},[!e.unref(M)&&!e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(Y))},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(ee))},[e.createVNode(Hn,e.mergeProps(e.unref(z),{onToggleField:Ce}),e.createSlots({_:2},[e.renderList(e.unref(a),(Se,_e)=>({name:_e,fn:e.withCtx(Je=>[e.renderSlot(X.$slots,_e,e.normalizeProps(e.guardReactiveProps({...Je})),void 0,!0)])}))]),1040)],2)],2)):e.createCommentVNode("",!0),e.unref(M)||e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(K))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(y),to:e.unref(he)},[e.createVNode(xi,e.mergeProps(e.unref(O),{modelValue:t.value,"onUpdate:modelValue":ve[0]||(ve[0]=Se=>t.value=Se),autofocus:!e.unref(r).fieldOnly||e.unref(r).autofocus,"clear-icon":e.unref(H),clearable:e.unref(r).clearable,color:e.unref(k),density:e.unref(r).density,disabled:e.unref(F)||e.unref(T),error:e.unref(N),"error-messages":e.unref(Q),"hide-details":e.unref(V),"hide-selected":e.unref(r).hideSelected,"item-title":e.unref(r).itemTitle,"item-value":e.unref(r).itemValue,items:e.unref(L),label:e.unref(r).label,loading:e.unref(F),menu:e.unref(r).menu&&!e.unref(r).fieldOnly&&e.unref(M),variant:e.unref(r).variant,width:"100%",onKeyup:e.withKeys(Z,["esc"])}),e.createSlots({_:2},[e.renderList(e.unref(a),(Se,_e)=>({name:_e,fn:e.withCtx(Je=>[e.renderSlot(X.$slots,_e,e.normalizeProps(e.guardReactiveProps({...Je})),void 0,!0)])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(dn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(p),"cancel-button-title":e.unref(v),"cancel-button-variant":e.unref(m),"cancel-icon":e.unref(g),"cancel-icon-color":e.unref(f),error:e.unref(N),"field-only":e.unref(A),"hide-cancel-icon":e.unref(D),"hide-save-icon":e.unref(E),loading:e.unref(F),"loading-icon":e.unref($),"loading-icon-color":e.unref(_),"save-button-color":e.unref(B),"save-button-size":e.unref(S),"save-button-title":e.unref(b),"save-button-variant":e.unref(x),"save-icon":e.unref(w),"save-icon-color":e.unref(W),onClose:Z,onSave:ge},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","hide-save-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["modelValue","autofocus","clear-icon","clearable","color","density","disabled","error","error-messages","hide-details","hide-selected","item-title","item-value","items","label","loading","menu","variant"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(oe)),style:e.normalizeStyle(e.unref(se))},[e.createVNode(fn,e.normalizeProps(e.guardReactiveProps(e.unref(I))),{default:e.withCtx(()=>[e.createVNode(Xe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:he},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),[["__scopeId","data-v-f9b47ea2"]]),zi=U({indeterminate:Boolean,inset:Boolean,flat:Boolean,loading:{type:[Boolean,String],default:!1},...et(),...cl()},"VSwitch"),Ei=J()({name:"VSwitch",inheritAttrs:!1,props:zi(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:indeterminate":n=>!0},setup(n,l){let{attrs:t,slots:o}=l;const a=be(n,"indeterminate"),i=be(n,"modelValue"),{loaderClasses:c}=St(n),{isFocused:s,focus:u,blur:r}=Qn(n),d=e.ref(),p=e.computed(()=>typeof n.loading=="string"&&n.loading!==""?n.loading:n.color),v=ze(),m=e.computed(()=>n.id||`switch-${v}`);function g(){a.value&&(a.value=!1)}function f(y){var h,k;y.stopPropagation(),y.preventDefault(),(k=(h=d.value)==null?void 0:h.input)==null||k.click()}return ie(()=>{const[y,h]=jn(t),k=He.filterProps(n),A=gt.filterProps(n);return e.createVNode(He,e.mergeProps({class:["v-switch",{"v-switch--inset":n.inset},{"v-switch--indeterminate":a.value},c.value,n.class]},y,k,{modelValue:i.value,"onUpdate:modelValue":D=>i.value=D,id:m.value,focused:s.value,style:n.style}),{...o,default:D=>{let{id:V,messagesId:E,isDisabled:$,isReadonly:_,isValid:B}=D;return e.createVNode(gt,e.mergeProps({ref:d},A,{modelValue:i.value,"onUpdate:modelValue":[S=>i.value=S,g],id:V.value,"aria-describedby":E.value,type:"checkbox","aria-checked":a.value?"mixed":void 0,disabled:$.value,readonly:_.value,onFocus:u,onBlur:r},h),{...o,default:S=>{let{backgroundColorClasses:b,backgroundColorStyles:x}=S;return e.createVNode("div",{class:["v-switch__track",...b.value],style:x.value,onClick:f},null)},input:S=>{let{inputNode:b,icon:x,backgroundColorClasses:w,backgroundColorStyles:W}=S;return e.createVNode(e.Fragment,null,[b,e.createVNode("div",{class:["v-switch__thumb",{"v-switch__thumb--filled":x||n.loading},n.inset?void 0:w.value],style:n.inset?void 0:W.value},[e.createVNode(Fr,null,{default:()=>[n.loading?e.createVNode(il,{name:"v-switch",active:!0,color:B.value===!1?void 0:p.value},{default:P=>o.loader?o.loader(P):e.createVNode(Po,{active:P.isActive,color:P.color,indeterminate:!0,size:"16",width:"2"},null)}):x&&e.createVNode(me,{key:x,icon:x,size:"x-small"},null)]})])])}})}})}),{}}}),Ti=U({autoGrow:Boolean,autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,noResize:Boolean,rows:{type:[Number,String],default:5,validator:n=>!isNaN(parseFloat(n))},maxRows:{type:[Number,String],validator:n=>!isNaN(parseFloat(n))},suffix:String,modelModifiers:Object,...et(),...pl()},"VTextarea"),$i=J()({name:"VTextarea",directives:{Intersect:ul},inheritAttrs:!1,props:Ti(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:t,emit:o,slots:a}=l;const i=be(n,"modelValue"),{isFocused:c,focus:s,blur:u}=Qn(n),r=e.computed(()=>typeof n.counterValue=="function"?n.counterValue(i.value):(i.value||"").toString().length),d=e.computed(()=>t.maxlength?t.maxlength:!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"?void 0:n.counter);function p(b,x){var w,W;n.autofocus&&b&&((W=(w=x[0].target)==null?void 0:w.focus)==null||W.call(w))}const v=e.ref(),m=e.ref(),g=e.shallowRef(""),f=e.ref(),y=e.computed(()=>n.persistentPlaceholder||c.value||n.active);function h(){var b;f.value!==document.activeElement&&((b=f.value)==null||b.focus()),c.value||s()}function k(b){h(),o("click:control",b)}function A(b){o("mousedown:control",b)}function D(b){b.stopPropagation(),h(),e.nextTick(()=>{i.value="",yo(n["onClick:clear"],b)})}function V(b){var w;const x=b.target;if(i.value=x.value,(w=n.modelModifiers)==null?void 0:w.trim){const W=[x.selectionStart,x.selectionEnd];e.nextTick(()=>{x.selectionStart=W[0],x.selectionEnd=W[1]})}}const E=e.ref(),$=e.ref(+n.rows),_=e.computed(()=>["plain","underlined"].includes(n.variant));function B(){n.autoGrow&&e.nextTick(()=>{if(!E.value||!m.value)return;const b=getComputedStyle(E.value),x=getComputedStyle(m.value.$el),w=parseFloat(b.getPropertyValue("--v-field-padding-top"))+parseFloat(b.getPropertyValue("--v-input-padding-top"))+parseFloat(b.getPropertyValue("--v-field-padding-bottom")),W=E.value.scrollHeight,P=parseFloat(b.lineHeight),T=hn(W??0,Math.max(parseFloat(n.rows)*P+w,parseFloat(x.getPropertyValue("--v-input-control-height"))),parseFloat(n.maxRows)*P+w||1/0);$.value=Math.floor((T-w)/P),g.value=te(T)})}let S;return e.watchEffect(()=>{n.autoGrow||($.value=+n.rows)}),e.onMounted(B),e.watch(i,B),e.watch(()=>n.rows,B),e.watch(()=>n.maxRows,B),e.watch(()=>n.density,B),e.watch(E,b=>{b?(S=new ResizeObserver(B),S.observe(E.value)):S==null||S.disconnect()}),e.onBeforeUnmount(()=>{S==null||S.disconnect()}),ie(()=>{const b=!!(a.counter||n.counter||n.counterValue),x=!(!b&&!a.details),[w,W]=jn(t),{modelValue:P,...T}=He.filterProps(n),F=Ia(n);return e.createVNode(He,e.mergeProps({ref:v,modelValue:i.value,"onUpdate:modelValue":C=>i.value=C,class:["v-textarea v-text-field",{"v-textarea--prefixed":n.prefix,"v-textarea--suffixed":n.suffix,"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-textarea--auto-grow":n.autoGrow,"v-textarea--no-resize":n.noResize||n.autoGrow,"v-input--plain-underlined":_.value},n.class],style:n.style},w,T,{centerAffix:$.value===1&&!_.value,focused:c.value}),{...a,default:C=>{let{id:N,isDisabled:L,isDirty:M,isReadonly:q,isValid:j}=C;return e.createVNode(vl,e.mergeProps({ref:m,style:{"--v-textarea-control-height":g.value},onClick:k,onMousedown:A,"onClick:clear":D,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"]},F,{id:N.value,active:y.value||M.value,centerAffix:$.value===1&&!_.value,dirty:M.value||n.dirty,disabled:L.value,focused:c.value,error:j.value===!1}),{...a,default:H=>{let{props:{class:R,...O}}=H;return e.createVNode(e.Fragment,null,[n.prefix&&e.createVNode("span",{class:"v-text-field__prefix"},[n.prefix]),e.withDirectives(e.createVNode("textarea",e.mergeProps({ref:f,class:R,value:i.value,onInput:V,autofocus:n.autofocus,readonly:q.value,disabled:L.value,placeholder:n.placeholder,rows:n.rows,name:n.name,onFocus:h,onBlur:u},O,W),null),[[e.resolveDirective("intersect"),{handler:p},null,{once:!0}]]),n.autoGrow&&e.withDirectives(e.createVNode("textarea",{class:[R,"v-textarea__sizer"],id:`${O.id}-sizer`,"onUpdate:modelValue":z=>i.value=z,ref:E,readonly:!0,"aria-hidden":"true"},null),[[e.vModelText,i.value]]),n.suffix&&e.createVNode("span",{class:"v-text-field__suffix"},[n.suffix])])}})},details:x?C=>{var N;return e.createVNode(e.Fragment,null,[(N=a.details)==null?void 0:N.call(a,C),b&&e.createVNode(e.Fragment,null,[e.createVNode("span",null,null),e.createVNode(Ca,{active:n.persistentCounter||c.value,value:r.value,max:d.value},a.counter)])])}:void 0})}),nt({},v,m,f)}}),xa=e.defineComponent({__name:"BooleanIcons",props:e.mergeModels({iconFalseColor:{},iconFalseTitle:{},iconTrueColor:{},iconTrueTitle:{},iconFalse:{},iconTrue:{}},{modelValue:{},modelModifiers:{}}),emits:["update:modelValue"],setup(n){const l=n,t=e.inject(Symbol.for("vuetify:icons")),o=e.reactive({...l});e.watchEffect(()=>{Object.assign(o,{...l})});const a=e.useModel(n,"modelValue"),i=e.computed(()=>Oe({icon:o.iconFalse,iconOptions:t,name:"false"})),c=e.computed(()=>Oe({icon:o.iconTrue,iconOptions:t,name:"true"}));return(s,u)=>a.value?(e.openBlock(),e.createBlock(e.unref(me),{key:0,class:"v-inline-fields--boolean-icons fa-fw",color:s.iconTrueColor,icon:e.unref(c),size:"x-small",title:s.iconTrueTitle},null,8,["color","icon","title"])):(e.openBlock(),e.createBlock(e.unref(me),{key:1,class:"v-inline-fields--boolean-icons fa-fw",color:s.iconFalseColor,icon:e.unref(i),size:"x-small",title:s.iconFalseTitle},null,8,["color","icon","title"]))}}),Ri={class:"v-selection-control__wrapper"},Fa=e.defineComponent({__name:"VInlineCheckbox",props:e.mergeModels(e.mergeDefaults({density:{},falseIcon:{},trueIcon:{},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},falseValue:{type:[Boolean,String]},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},iconFalse:{},iconFalseColor:{},iconFalseTitle:{},iconTrue:{},iconTrueColor:{},iconTrueTitle:{},icons:{type:Boolean},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},trueValue:{type:[Boolean,String]},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...La}),{modelValue:{},modelModifiers:{}}),emits:e.mergeModels([...vn],["update:modelValue"]),setup(n,{emit:l}){const t=e.useModel(n,"modelValue"),o=e.useAttrs(),a=e.useSlots(),i=l,c=e.inject(Me,{}),s=e.inject(Symbol.for("vuetify:icons")),u=Ht.useTheme(),r=n,d=e.reactive({...o,...r,...c});e.watchEffect(()=>{Object.assign(d,{...o,...r,...c})});const p=e.computed(()=>r.disabled),v=e.computed(()=>r.loading),m=e.computed(()=>d.underlineColor),g=e.ref(!1),f=e.ref(!1),y=e.ref(null),h=e.computed(()=>An(d)),k=e.computed(()=>({...ln,...r.cardProps}));e.watch(()=>v.value,(O,z)=>{!O&&z&&f.value&&M()});const A=e.computed(()=>Oe({icon:r.trueIcon,iconOptions:s,name:"checkboxFalse"})),D=e.computed(()=>Oe({icon:r.iconTrue,iconOptions:s,name:"checkboxTrue"})),V=e.computed(()=>t.value==d.trueValue),E=e.computed(()=>po({modelValue:t,trueValue:d.trueValue})),$=e.computed(()=>on({cell:d.cell&&!f.value,density:d.density,disabled:p.value,field:"v-checkbox",loading:v.value,loadingWait:d.loadingWait,tableField:d.tableField})),_=e.computed(()=>an({cell:d.cell,cellUnderlineFullWidth:d.cellUnderlineFullWidth,density:d.density,field:"v-checkbox"})),B=co({density:d.density}),S=e.computed(()=>rn({active:f.value,name:"checkbox"})),b=e.computed(()=>Kt("checkbox",d.valueColor,{error:g})),x=e.computed(()=>sn({name:"checkbox",showField:f.value})),w=e.computed(()=>({})),W=e.computed(()=>Yt({color:d.color,error:g,theme:u,underlineColor:m.value,underlineStyle:d.underlineStyle,underlineWidth:d.underlineWidth,underlined:d.underlined})),P=e.computed(()=>F.value);function T(){g.value=!1,M()}const F=e.ref(),C=e.ref(null),N=e.ref("body"),L=Ma.useWindowSize();function M(){var z,I;if(p.value||d.loadingWait&&v.value)return;F.value=Ge({cardMinWidth:(z=d.cardProps)==null?void 0:z.minWidth,cardOffsetX:d.cardOffsetX,cardOffsetY:d.cardOffsetY,cardWidth:(I=d.cardProps)==null?void 0:I.width,field:C.value,name:"checkbox"});const O=pn({attrs:o,closeSiblings:d.closeSiblings,fieldOnly:d.fieldOnly,props:r,showField:f,timeOpened:y.value});f.value=O.showField,y.value=O.timeOpened,j!==null&&d.closeSiblings&&f.value&&!d.fieldOnly&&j.emit(O.timeOpened)}function q(O){t.value=O,i("update",O),d.loadingWait||M()}let j,H;function R(O){i("update:closeSiblingFields",y),f.value&&y.value!==O&&M()}return e.watch(()=>L,()=>{var O,z;F.value=Ge({cardMinWidth:(O=d.cardProps)==null?void 0:O.minWidth,cardOffsetX:d.cardOffsetX,cardOffsetY:d.cardOffsetY,cardWidth:(z=d.cardProps)==null?void 0:z.width,field:C.value,name:"checkbox"})},{deep:!0}),d.closeSiblings&&import("@vueuse/core").then(({useEventBus:O})=>{j=O(tn),H=j.on(R)}),e.onUnmounted(()=>{H!==void 0&&j.off(R)}),(O,z)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:C,class:e.normalizeClass(e.unref($)),style:e.normalizeStyle(e.unref(w))},[!e.unref(f)&&!e.unref(d).fieldOnly||e.unref(d).cardField?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(_)),onClick:z[2]||(z[2]=I=>e.unref(d).cell?M():void 0)},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(B)),onClick:z[1]||(z[1]=I=>e.unref(d).cell?void 0:M())},[e.createElementVNode("div",Ri,[e.unref(d).icons?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["v-inline-fields--boolean-icons-container",e.unref(b)]),style:e.normalizeStyle(e.unref(W))},[e.createVNode(xa,{modelValue:e.unref(E),"onUpdate:modelValue":z[0]||(z[0]=I=>e.isRef(E)?E.value=I:null),"icon-false":e.unref(d).iconFalse,"icon-false-color":e.unref(d).iconFalseColor,"icon-false-title":e.unref(d).iconFalseTitle,"icon-true":e.unref(d).iconTrue,"icon-true-color":e.unref(d).iconTrueColor,"icon-true-title":e.unref(d).iconTrueTitle},null,8,["modelValue","icon-false","icon-false-color","icon-false-title","icon-true","icon-true-color","icon-true-title"])],6)):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["d-inline-flex align-center justify-center",e.unref(b)]),style:e.normalizeStyle(e.unref(W))},e.toDisplayString(e.unref(V)),7))])],2)],2)):e.createCommentVNode("",!0),e.unref(f)||e.unref(d).fieldOnly||e.unref(d).cardField?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(S))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(d).cardField,to:e.unref(N)},[e.createVNode(Er,e.mergeProps(e.unref(h),{color:e.unref(d).color,density:e.unref(d).density,disabled:e.unref(v)||e.unref(p),error:e.unref(g),"false-icon":e.unref(A),"false-value":e.unref(d).falseValue,"hide-details":e.unref(d).hideDetails,label:e.unref(d).label,"model-value":e.unref(E),"true-icon":e.unref(D),"true-value":e.unref(d).trueValue,"onUpdate:modelValue":q}),e.createSlots({_:2},[e.renderList(e.unref(a),(I,G)=>({name:G,fn:e.withCtx(Y=>[e.renderSlot(O.$slots,G,e.normalizeProps(e.guardReactiveProps({...Y})))])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(dn,{"cancel-button-color":e.unref(d).cancelButtonColor,"cancel-button-size":e.unref(d).cancelButtonSize,"cancel-button-title":e.unref(d).cancelButtonTitle,"cancel-button-variant":e.unref(d).cancelButtonVariant,"cancel-icon":e.unref(d).cancelIcon,"cancel-icon-color":e.unref(d).cancelIconColor,error:e.unref(g),"field-only":e.unref(d).fieldOnly,"hide-cancel-icon":e.unref(d).hideCancelIcon,"hide-save-icon":!0,loading:e.unref(v),"loading-icon":e.unref(d).loadingIcon,"loading-icon-color":e.unref(d).loadingIconColor,"save-button-color":e.unref(d).saveButtonColor,"save-button-size":e.unref(d).saveButtonSize,"save-button-title":e.unref(d).saveButtonTitle,"save-button-variant":e.unref(d).saveButtonVariant,"save-icon":e.unref(d).saveIcon,"save-icon-color":e.unref(d).saveIconColor,onClose:T,onSave:q},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["color","density","disabled","error","false-icon","false-value","hide-details","label","model-value","true-icon","true-value"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(d).cardField?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(x)),style:e.normalizeStyle(e.unref(P))},[e.createVNode(fn,e.normalizeProps(e.guardReactiveProps(e.unref(k))),{default:e.withCtx(()=>[e.createVNode(Xe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:N},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),Na=e.defineComponent({__name:"VInlineCustomField",props:e.mergeModels(e.mergeDefaults({clearIcon:{},density:{},rules:{},variant:{},autofocus:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},truncateLength:{},truncateSuffix:{},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...uo}),{modelValue:{},modelModifiers:{}}),emits:e.mergeModels([...vn],["update:modelValue"]),setup(n,{emit:l}){const t=e.useModel(n,"modelValue"),o=e.useAttrs(),a=e.useSlots(),i=l,c=e.inject(Me,{}),s=e.inject(Symbol.for("vuetify:icons")),u=n,r=e.reactive({...o,...u,...c});e.watchEffect(()=>{Object.assign(r,{...o,...u,...c})});const{cancelButtonColor:d,cancelButtonSize:p,cancelButtonTitle:v,cancelButtonVariant:m,cancelIcon:g,cancelIconColor:f,cardField:y,closeSiblings:h,fieldOnly:k,hideCancelIcon:A,hideSaveIcon:D,loadingIcon:V,loadingIconColor:E,saveButtonColor:$,saveButtonSize:_,saveButtonTitle:B,saveButtonVariant:S,saveIcon:b,saveIconColor:x}=e.toRefs(r),w=e.computed(()=>u.disabled),W=e.computed(()=>u.loading),P=e.ref(!1),T=e.ref(!1),F=e.ref(!1),C=e.ref(null);let N=t.value;e.watch(()=>W.value,(Q,ae)=>{!Q&&ae&&F.value&&se()});const L=e.computed(()=>t.value?(P.value=!1,r.truncateLength?sl({length:r.truncateLength,suffix:r.truncateSuffix,text:t.value}):t.value):(P.value=!0,r.emptyText)),M=e.computed(()=>({...r,loading:W.value,modelValue:t.value,originalValue:N})),q=e.computed(()=>({color:r.color,displayAppendIcon:u.displayAppendIcon,displayAppendIconColor:u.displayAppendIconColor,displayAppendIconSize:u.displayAppendIconSize,displayAppendInnerIcon:u.displayAppendInnerIcon,displayAppendInnerIconColor:u.displayAppendInnerIconColor,displayAppendInnerIconSize:u.displayAppendInnerIconSize,displayPrependIcon:u.displayPrependIcon,displayPrependIconColor:u.displayPrependIconColor,displayPrependIconSize:u.displayPrependIconSize,displayPrependInnerIcon:u.displayPrependInnerIcon,displayPrependInnerIconColor:u.displayPrependInnerIconColor,displayPrependInnerIconSize:u.displayPrependInnerIconSize,displayValue:L.value,empty:P.value,error:T.value,field:"v-text-field",underlineColor:r.underlineColor,underlineStyle:r.underlineStyle,underlineWidth:r.underlineWidth,underlined:r.underlined,valueColor:r.valueColor})),j=e.computed(()=>({...ln,...u.cardProps})),H=e.computed(()=>on({cell:r.cell&&!F.value,density:r.density,disabled:w.value,field:"v-text-field",iconSet:s==null?void 0:s.defaultSet,loading:W.value,loadingWait:r.loadingWait,tableField:r.tableField,variant:r.variant})),R=e.computed(()=>an({cell:r.cell,cellUnderlineFullWidth:r.cellUnderlineFullWidth,density:r.density,field:"v-text-field"})),O=Wn({density:r.density,variant:r.variant}),z=e.computed(()=>rn({active:F.value,name:"text-field"})),I=e.computed(()=>sn({name:"custom-field",showField:F.value})),G=e.computed(()=>({})),Y=e.computed(()=>K.value);function ee(){T.value=!1,t.value=N,se()}const K=e.ref(),oe=e.ref(null),le=e.ref("body");function se(){var ae,ge;if(w.value||r.loadingWait&&W.value)return;K.value=Ge({cardMinWidth:(ae=r.cardProps)==null?void 0:ae.minWidth,cardOffsetX:r.cardOffsetX,cardOffsetY:r.cardOffsetY,cardWidth:(ge=r.cardProps)==null?void 0:ge.width,field:oe.value});const Q=pn({attrs:o,closeSiblings:h.value,fieldOnly:r.fieldOnly,props:u,showField:F,timeOpened:C.value});F.value=Q.showField,C.value=Q.timeOpened,he!==null&&h.value&&F.value&&!r.fieldOnly&&he.emit(Q.timeOpened)}const Z=e.ref();function de(){const Q=Zn({required:r.required,rules:r.rules,value:t});return T.value=Q.errors,Z.value=Q.results,Q.results}function pe(){T.value?T.value=!0:(N=t.value,i("update",t.value),r.loadingWait||se())}let he,Ce;function ue(Q){i("update:closeSiblingFields",C),F.value&&C.value!==Q&&ee()}return e.watch(()=>F.value,()=>{F.value&&de()}),e.watch(()=>t.value,()=>{F.value&&de()}),h.value&&import("@vueuse/core").then(({useEventBus:Q})=>{he=Q(tn),Ce=he.on(ue)}),e.onUnmounted(()=>{Ce!==void 0&&he.off(ue)}),(Q,ae)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:oe,class:e.normalizeClass(e.unref(H)),style:e.normalizeStyle(e.unref(G))},[!e.unref(F)&&!e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(R))},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(O))},[e.createVNode(Hn,e.mergeProps(e.unref(q),{onToggleField:se}),e.createSlots({_:2},[e.renderList(e.unref(a),(ge,ye)=>({name:ye,fn:e.withCtx(ne=>[e.renderSlot(Q.$slots,ye,e.normalizeProps(e.guardReactiveProps({...ne})))])}))]),1040)],2)],2)):e.createCommentVNode("",!0),e.unref(F)||e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["d-flex align-center py-2",e.unref(z)])},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(y),to:e.unref(le)},[e.renderSlot(Q.$slots,"default",e.normalizeProps(e.guardReactiveProps(e.unref(M)))),e.createVNode(dn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(p),"cancel-button-title":e.unref(v),"cancel-button-variant":e.unref(m),"cancel-icon":e.unref(g),"cancel-icon-color":e.unref(f),error:e.unref(T),"field-only":e.unref(k),"hide-cancel-icon":e.unref(A),"hide-save-icon":e.unref(D),loading:e.unref(W),"loading-icon":e.unref(V),"loading-icon-color":e.unref(E),"save-button-color":e.unref($),"save-button-size":e.unref(_),"save-button-title":e.unref(B),"save-button-variant":e.unref(S),"save-icon":e.unref(b),"save-icon-color":e.unref(x),onClose:ee,onSave:pe},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","hide-save-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(I)),style:e.normalizeStyle(e.unref(Y))},[e.createVNode(fn,e.normalizeProps(e.guardReactiveProps(e.unref(j))),{default:e.withCtx(()=>[e.createVNode(Xe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:le},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),Aa=wa(e.defineComponent({__name:"VInlineSelect",props:e.mergeModels(e.mergeDefaults({clearIcon:{},clearable:{},density:{},hideSelected:{},itemTitle:{},itemValue:{},items:{},menu:{},rules:{},variant:{},autofocus:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...Wa}),{modelValue:{},modelModifiers:{}}),emits:e.mergeModels([...vn],["update:modelValue"]),setup(n,{emit:l}){const t=e.useModel(n,"modelValue"),o=e.useAttrs(),a=e.useSlots(),i=l,c=e.inject(Me,{}),s=e.inject(Symbol.for("vuetify:icons")),u=n,r=e.reactive({...o,...u,...c});e.watchEffect(()=>{Object.assign(r,{...o,...u,...c})});const{cancelButtonColor:d,cancelButtonSize:p,cancelButtonTitle:v,cancelButtonVariant:m,cancelIcon:g,cancelIconColor:f,cardField:y,closeSiblings:h,color:k,fieldOnly:A,hideCancelIcon:D,hideDetails:V,hideSaveIcon:E,loadingIcon:$,loadingIconColor:_,saveButtonColor:B,saveButtonSize:S,saveButtonTitle:b,saveButtonVariant:x,saveIcon:w,saveIconColor:W,valueColor:P}=e.toRefs(r),T=e.computed(()=>u.disabled),F=e.computed(()=>u.loading),C=e.ref(!1),N=e.ref(!1),L=e.ref(),M=e.ref(!1),q=e.ref(null);let j=t.value;e.watch(()=>F.value,(X,ve)=>{!X&&ve&&M.value&&Ce()});const H=e.computed(()=>Oe({icon:u.clearIcon,iconOptions:s,name:"clear"})),R=e.computed(()=>t.value&&t.value[r.itemTitle]?(C.value=!1,t.value[r.itemTitle]):t.value?t.value:(C.value=!0,r.emptyText)),O=e.computed(()=>An(r)),z=e.computed(()=>({color:r.color,displayAppendIcon:r.displayAppendIcon,displayAppendIconColor:r.displayAppendIconColor,displayAppendIconSize:r.displayAppendIconSize,displayAppendInnerIcon:r.displayAppendInnerIcon,displayAppendInnerIconColor:r.displayAppendInnerIconColor,displayAppendInnerIconSize:r.displayAppendInnerIconSize,displayPrependIcon:r.displayPrependIcon,displayPrependIconColor:r.displayPrependIconColor,displayPrependIconSize:r.displayPrependIconSize,displayPrependInnerIcon:r.displayPrependInnerIcon,displayPrependInnerIconColor:r.displayPrependInnerIconColor,displayPrependInnerIconSize:r.displayPrependInnerIconSize,displayValue:R.value,empty:C.value,error:N.value,field:"v-text-field",underlineColor:r.underlineColor,underlineStyle:r.underlineStyle,underlineWidth:r.underlineWidth,underlined:r.underlined,valueColor:P.value})),I=e.computed(()=>({...ln,...u.cardProps}));e.watchEffect(()=>{L.value=r.items||[]});const G=e.computed(()=>on({cell:r.cell&&!M.value,density:r.density,disabled:T.value,field:"v-select",iconSet:s==null?void 0:s.defaultSet,loading:F.value,loadingWait:r.loadingWait,tableField:r.tableField,variant:r.variant})),Y=e.computed(()=>an({cell:r.cell,cellUnderlineFullWidth:r.cellUnderlineFullWidth,density:r.density,field:"v-select"})),ee=Wn({density:r.density,variant:r.variant}),K=e.computed(()=>rn({active:M.value,name:"select"})),oe=e.computed(()=>sn({name:"select",showField:M.value})),le=e.computed(()=>({})),se=e.computed(()=>de.value);function Z(){N.value=!1,t.value=j,Ce()}const de=e.ref(),pe=e.ref(null),he=e.ref("body");function Ce(){var ve,Se;if(T.value||r.loadingWait&&F.value)return;de.value=Ge({cardMinWidth:(ve=r.cardProps)==null?void 0:ve.minWidth,cardOffsetX:r.cardOffsetX,cardOffsetY:r.cardOffsetY,cardWidth:(Se=r.cardProps)==null?void 0:Se.width,field:pe.value});const X=pn({attrs:o,closeSiblings:h.value,fieldOnly:r.fieldOnly,props:u,showField:M,timeOpened:q.value});M.value=X.showField,q.value=X.timeOpened,ye!==null&&h.value&&M.value&&!r.fieldOnly&&ye.emit(X.timeOpened)}const ue=e.ref(),Q=e.computed(()=>ue.value);function ae(){const X=Zn({required:r.required,rules:r.rules,value:t});return N.value=X.errors,ue.value=X.results,X.results}function ge(){j=t.value,i("update",t.value),r.loadingWait||Ce()}let ye,ne;function Ie(X){i("update:closeSiblingFields",q),M.value&&q.value!==X&&Z()}return e.watch(()=>M.value,()=>{M.value&&ae()}),e.watch(()=>t.value,()=>{M.value&&ae()}),h.value&&import("@vueuse/core").then(({useEventBus:X})=>{ye=X(tn),ne=ye.on(Ie)}),e.onUnmounted(()=>{ne!==void 0&&ye.off(Ie)}),(X,ve)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:pe,class:e.normalizeClass(e.unref(G)),style:e.normalizeStyle(e.unref(le))},[!e.unref(M)&&!e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(Y))},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(ee))},[e.createVNode(Hn,e.mergeProps(e.unref(z),{onToggleField:Ce}),e.createSlots({_:2},[e.renderList(e.unref(a),(Se,_e)=>({name:_e,fn:e.withCtx(Je=>[e.renderSlot(X.$slots,_e,e.normalizeProps(e.guardReactiveProps({...Je})),void 0,!0)])}))]),1040)],2)],2)):e.createCommentVNode("",!0),e.unref(M)||e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(K))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(y),to:e.unref(he)},[e.createVNode(Si,e.mergeProps(e.unref(O),{modelValue:t.value,"onUpdate:modelValue":ve[0]||(ve[0]=Se=>t.value=Se),autofocus:!e.unref(r).fieldOnly||e.unref(r).autofocus,"clear-icon":e.unref(H),clearable:e.unref(r).clearable,color:e.unref(k),density:e.unref(r).density,disabled:e.unref(F)||e.unref(T),error:e.unref(N),"error-messages":e.unref(Q),"hide-details":e.unref(V),"hide-selected":e.unref(r).hideSelected,"item-title":e.unref(r).itemTitle,"item-value":e.unref(r).itemValue,items:e.unref(L),label:e.unref(r).label,loading:e.unref(F),menu:e.unref(r).menu&&!e.unref(r).fieldOnly&&e.unref(M),variant:e.unref(r).variant,width:"100%",onKeyup:e.withKeys(Z,["esc"])}),e.createSlots({_:2},[e.renderList(e.unref(a),(Se,_e)=>({name:_e,fn:e.withCtx(Je=>[e.renderSlot(X.$slots,_e,e.normalizeProps(e.guardReactiveProps({...Je})),void 0,!0)])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(dn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(p),"cancel-button-title":e.unref(v),"cancel-button-variant":e.unref(m),"cancel-icon":e.unref(g),"cancel-icon-color":e.unref(f),error:e.unref(N),"field-only":e.unref(A),"hide-cancel-icon":e.unref(D),"hide-save-icon":e.unref(E),loading:e.unref(F),"loading-icon":e.unref($),"loading-icon-color":e.unref(_),"save-button-color":e.unref(B),"save-button-size":e.unref(S),"save-button-title":e.unref(b),"save-button-variant":e.unref(x),"save-icon":e.unref(w),"save-icon-color":e.unref(W),onClose:Z,onSave:ge},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","hide-save-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["modelValue","autofocus","clear-icon","clearable","color","density","disabled","error","error-messages","hide-details","hide-selected","item-title","item-value","items","label","loading","menu","variant"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(oe)),style:e.normalizeStyle(e.unref(se))},[e.createVNode(fn,e.normalizeProps(e.guardReactiveProps(e.unref(I))),{default:e.withCtx(()=>[e.createVNode(Xe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:he},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),[["__scopeId","data-v-4f65a7ea"]]),Di={class:"v-selection-control__wrapper"},Pa=e.defineComponent({__name:"VInlineSwitch",props:e.mergeModels(e.mergeDefaults({density:{},falseIcon:{},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},falseValue:{type:[Boolean,String]},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},iconFalse:{},iconFalseColor:{},iconFalseTitle:{},iconTrue:{},iconTrueColor:{},iconTrueTitle:{},icons:{type:Boolean},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},trueValue:{type:[Boolean,String]},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...Ua}),{modelValue:{},modelModifiers:{}}),emits:e.mergeModels([...vn],["update:modelValue"]),setup(n,{emit:l}){const t=e.useModel(n,"modelValue"),o=e.useAttrs(),a=e.useSlots(),i=l,c=e.inject(Me,{}),s=Ht.useTheme(),u=n,r=e.reactive({...o,...u,...c});e.watchEffect(()=>{Object.assign(r,{...o,...u,...c})});const{cancelButtonColor:d,cancelButtonSize:p,cancelButtonTitle:v,cancelButtonVariant:m,cancelIcon:g,cancelIconColor:f,cardField:y,closeSiblings:h,color:k,fieldOnly:A,hideCancelIcon:D,hideDetails:V,loadingIcon:E,loadingIconColor:$,saveButtonColor:_,saveButtonSize:B,saveButtonTitle:S,saveButtonVariant:b,saveIcon:x,saveIconColor:w}=e.toRefs(r),W=e.computed(()=>u.disabled),P=e.computed(()=>u.loading),T=e.ref(!1),F=e.ref(!1),C=e.ref(null),N=e.computed(()=>An(r)),L=e.computed(()=>({...ln,...u.cardProps}));e.watch(()=>P.value,(ue,Q)=>{!ue&&Q&&F.value&&Z()});const M=e.computed(()=>t.value==r.trueValue),q=e.computed(()=>po({modelValue:t,trueValue:r.trueValue})),j=e.computed(()=>on({cell:r.cell&&!F.value,density:r.density,disabled:W.value,field:"v-switch",loading:P.value,loadingWait:r.loadingWait,tableField:r.tableField})),H=e.computed(()=>an({cell:r.cell,cellUnderlineFullWidth:r.cellUnderlineFullWidth,density:r.density,field:"v-switch"})),R=co({density:r.density}),O=e.computed(()=>rn({active:F.value,name:"switch"})),z=e.computed(()=>Kt("switch",r.valueColor,{error:T})),I=e.computed(()=>sn({name:"switch",showField:F.value})),G=e.computed(()=>({})),Y=e.computed(()=>Yt({color:r.color,error:T,theme:s,underlineColor:r.underlineColor,underlineStyle:r.underlineStyle,underlineWidth:r.underlineWidth,underlined:r.underlined})),ee=e.computed(()=>oe.value);function K(){T.value=!1,Z()}const oe=e.ref(),le=e.ref(null),se=e.ref("body");function Z(){var Q,ae;if(W.value||r.loadingWait&&P.value)return;oe.value=Ge({cardMinWidth:(Q=r.cardProps)==null?void 0:Q.minWidth,cardOffsetX:r.cardOffsetX,cardOffsetY:r.cardOffsetY,cardWidth:(ae=r.cardProps)==null?void 0:ae.width,field:le.value});const ue=pn({attrs:o,closeSiblings:h.value,fieldOnly:r.fieldOnly,props:u,showField:F.value,timeOpened:C.value});F.value=ue.showField,C.value=ue.timeOpened,pe!==null&&h.value&&F.value&&!r.fieldOnly&&pe.emit(ue.timeOpened)}function de(ue){t.value=ue,i("update",ue),r.loadingWait||Z()}let pe,he;function Ce(ue){i("update:closeSiblingFields",C),F.value&&C.value!==ue&&Z()}return h.value&&import("@vueuse/core").then(({useEventBus:ue})=>{pe=ue(tn),he=pe.on(Ce)}),e.onUnmounted(()=>{he!==void 0&&pe.off(Ce)}),(ue,Q)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:le,class:e.normalizeClass(e.unref(j)),style:e.normalizeStyle(e.unref(G))},[!e.unref(F)&&!e.unref(r).fieldOnly||e.unref(r).cardField?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(H)),onClick:Q[2]||(Q[2]=ae=>e.unref(r).cell?Z():void 0)},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(R)),onClick:Q[1]||(Q[1]=ae=>e.unref(r).cell?void 0:Z())},[e.createElementVNode("div",Di,[e.unref(r).icons?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["v-inline-fields--boolean-icons-container",e.unref(z)]),style:e.normalizeStyle(e.unref(Y))},[e.createVNode(xa,{modelValue:e.unref(q),"onUpdate:modelValue":Q[0]||(Q[0]=ae=>e.isRef(q)?q.value=ae:null),"icon-false":e.unref(r).iconFalse,"icon-false-color":e.unref(r).iconFalseColor,"icon-false-title":e.unref(r).iconFalseTitle,"icon-true":e.unref(r).iconTrue,"icon-true-color":e.unref(r).iconTrueColor,"icon-true-title":e.unref(r).iconTrueTitle},null,8,["modelValue","icon-false","icon-false-color","icon-false-title","icon-true","icon-true-color","icon-true-title"])],6)):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["d-inline-flex align-center justify-center",e.unref(z)]),style:e.normalizeStyle(e.unref(Y))},e.toDisplayString(e.unref(M)),7))])],2)],2)):e.createCommentVNode("",!0),e.unref(F)||e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(O))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(y),to:e.unref(se)},[e.createVNode(Ei,e.mergeProps(e.unref(N),{color:e.unref(k),density:e.unref(r).density,disabled:e.unref(P)||e.unref(W),error:e.unref(T),"false-icon":e.unref(r).falseIcon,"false-value":e.unref(r).falseValue,"hide-details":e.unref(V),label:e.unref(r).label,loading:e.unref(P),"model-value":e.unref(q),"true-value":e.unref(r).trueValue,"onUpdate:modelValue":de}),e.createSlots({_:2},[e.renderList(e.unref(a),(ae,ge)=>({name:ge,fn:e.withCtx(ye=>[e.renderSlot(ue.$slots,ge,e.normalizeProps(e.guardReactiveProps({...ye})))])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(dn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(p),"cancel-button-title":e.unref(v),"cancel-button-variant":e.unref(m),"cancel-icon":e.unref(g),"cancel-icon-color":e.unref(f),class:"ms-3",error:e.unref(T),"field-only":e.unref(A),"hide-cancel-icon":e.unref(D),"hide-save-icon":!0,loading:e.unref(P),"loading-icon":e.unref(E),"loading-icon-color":e.unref($),"save-button-color":e.unref(_),"save-button-size":e.unref(B),"save-button-title":e.unref(S),"save-button-variant":e.unref(b),"save-icon":e.unref(x),"save-icon-color":e.unref(w),onClose:K,onSave:de},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["color","density","disabled","error","false-icon","false-value","hide-details","label","loading","model-value","true-value"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(I)),style:e.normalizeStyle(e.unref(ee))},[e.createVNode(fn,e.normalizeProps(e.guardReactiveProps(e.unref(L))),{default:e.withCtx(()=>[e.createVNode(Xe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:se},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),_a=e.defineComponent({__name:"VInlineTextField",props:e.mergeModels(e.mergeDefaults({clearIcon:{},density:{},rules:{},variant:{},autofocus:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},truncateLength:{},truncateSuffix:{},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...uo}),{modelValue:{},modelModifiers:{}}),emits:e.mergeModels([...vn],["update:modelValue"]),setup(n,{emit:l}){const t=e.useModel(n,"modelValue"),o=e.useAttrs(),a=e.useSlots(),i=l,c=e.inject(Me,{}),s=e.inject(Symbol.for("vuetify:icons")),u=n,r=e.reactive({...o,...u,...c});e.watchEffect(()=>{Object.assign(r,{...o,...u,...c})});const{cancelButtonColor:d,cancelButtonSize:p,cancelButtonTitle:v,cancelButtonVariant:m,cancelIcon:g,cancelIconColor:f,cardField:y,closeSiblings:h,color:k,fieldOnly:A,hideCancelIcon:D,hideDetails:V,hideSaveIcon:E,loadingIcon:$,loadingIconColor:_,saveButtonColor:B,saveButtonSize:S,saveButtonTitle:b,saveButtonVariant:x,saveIcon:w,saveIconColor:W}=e.toRefs(r),P=e.computed(()=>u.disabled),T=e.computed(()=>u.loading),F=e.ref(!1),C=e.ref(!1),N=e.ref(!1),L=e.ref(null);let M=t.value;e.watch(()=>T.value,(ne,Ie)=>{!ne&&Ie&&N.value&&pe()});const q=e.computed(()=>Oe({icon:u.clearIcon,iconOptions:s,name:"clear"})),j=e.computed(()=>t.value?(F.value=!1,r.truncateLength?sl({length:r.truncateLength,suffix:r.truncateSuffix,text:t.value}):t.value):(F.value=!0,r.emptyText)),H=e.computed(()=>An(r)),R=e.computed(()=>({color:r.color,displayAppendIcon:r.displayAppendIcon,displayAppendIconColor:r.displayAppendIconColor,displayAppendIconSize:r.displayAppendIconSize,displayAppendInnerIcon:r.displayAppendInnerIcon,displayAppendInnerIconColor:r.displayAppendInnerIconColor,displayAppendInnerIconSize:r.displayAppendInnerIconSize,displayPrependIcon:r.displayPrependIcon,displayPrependIconColor:r.displayPrependIconColor,displayPrependIconSize:r.displayPrependIconSize,displayPrependInnerIcon:r.displayPrependInnerIcon,displayPrependInnerIconColor:r.displayPrependInnerIconColor,displayPrependInnerIconSize:r.displayPrependInnerIconSize,displayValue:j.value,empty:F.value,error:C.value,field:"v-text-field",underlineColor:r.underlineColor,underlineStyle:r.underlineStyle,underlineWidth:r.underlineWidth,underlined:r.underlined,valueColor:r.valueColor})),O=e.computed(()=>({...ln,...u.cardProps})),z=e.computed(()=>on({cell:r.cell&&!N.value,density:r.density,disabled:P.value,field:"v-text-field",iconSet:s==null?void 0:s.defaultSet,loading:T.value,loadingWait:r.loadingWait,tableField:r.tableField,variant:r.variant})),I=e.computed(()=>an({cell:r.cell,cellUnderlineFullWidth:r.cellUnderlineFullWidth,density:r.density,field:"v-text-field"})),G=Wn({density:r.density,variant:r.variant}),Y=e.computed(()=>rn({active:N.value,name:"text-field"})),ee=e.computed(()=>sn({name:"text-field",showField:N.value})),K=e.computed(()=>({})),oe=e.computed(()=>se.value);function le(){C.value=!1,t.value=M,pe()}const se=e.ref(),Z=e.ref(null),de=e.ref("body");function pe(){var Ie,X;if(P.value||r.loadingWait&&T.value)return;se.value=Ge({cardMinWidth:(Ie=r.cardProps)==null?void 0:Ie.minWidth,cardOffsetX:r.cardOffsetX,cardOffsetY:r.cardOffsetY,cardWidth:(X=r.cardProps)==null?void 0:X.width,field:Z.value});const ne=pn({attrs:o,closeSiblings:h.value,fieldOnly:r.fieldOnly,props:u,showField:N,timeOpened:L.value});N.value=ne.showField,L.value=ne.timeOpened,ae!==null&&h.value&&N.value&&!r.fieldOnly&&ae.emit(ne.timeOpened)}const he=e.ref(),Ce=e.computed(()=>he.value);function ue(){const ne=Zn({required:r.required,rules:r.rules,value:t});return C.value=ne.errors,he.value=ne.results,ne.results}function Q(){C.value?C.value=!0:(M=t.value,i("update",t.value),r.loadingWait||pe())}let ae,ge;function ye(ne){i("update:closeSiblingFields",L),N.value&&L.value!==ne&&le()}return e.watch(()=>N.value,()=>{N.value&&ue()}),e.watch(()=>t.value,()=>{N.value&&ue()}),h.value&&import("@vueuse/core").then(({useEventBus:ne})=>{ae=ne(tn),ge=ae.on(ye)}),e.onUnmounted(()=>{ge!==void 0&&ae.off(ye)}),(ne,Ie)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:Z,class:e.normalizeClass(e.unref(z)),style:e.normalizeStyle(e.unref(K))},[!e.unref(N)&&!e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(I))},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(G))},[e.createVNode(Hn,e.mergeProps(e.unref(R),{onToggleField:pe}),e.createSlots({_:2},[e.renderList(e.unref(a),(X,ve)=>({name:ve,fn:e.withCtx(Se=>[e.renderSlot(ne.$slots,ve,e.normalizeProps(e.guardReactiveProps({...Se})))])}))]),1040)],2)],2)):e.createCommentVNode("",!0),e.unref(N)||e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(Y))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(y),to:e.unref(de)},[e.createVNode(Ln,e.mergeProps(e.unref(H),{modelValue:t.value,"onUpdate:modelValue":Ie[0]||(Ie[0]=X=>t.value=X),autofocus:!e.unref(r).fieldOnly||e.unref(r).autofocus,"clear-icon":e.unref(q),color:e.unref(k),density:e.unref(r).density,disabled:e.unref(T)||e.unref(P),error:e.unref(C),"error-messages":e.unref(Ce),"hide-details":e.unref(V),label:e.unref(r).label,loading:e.unref(T),variant:e.unref(r).variant,width:"100%",onKeyup:[e.withKeys(Q,["enter"]),e.withKeys(le,["esc"])]}),e.createSlots({_:2},[e.renderList(e.unref(a),(X,ve)=>({name:ve,fn:e.withCtx(Se=>[e.renderSlot(ne.$slots,ve,e.normalizeProps(e.guardReactiveProps({...Se})))])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(dn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(p),"cancel-button-title":e.unref(v),"cancel-button-variant":e.unref(m),"cancel-icon":e.unref(g),"cancel-icon-color":e.unref(f),error:e.unref(C),"field-only":e.unref(A),"hide-cancel-icon":e.unref(D),"hide-save-icon":e.unref(E),loading:e.unref(T),"loading-icon":e.unref($),"loading-icon-color":e.unref(_),"save-button-color":e.unref(B),"save-button-size":e.unref(S),"save-button-title":e.unref(b),"save-button-variant":e.unref(x),"save-icon":e.unref(w),"save-icon-color":e.unref(W),onClose:le,onSave:Q},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","hide-save-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["modelValue","autofocus","clear-icon","color","density","disabled","error","error-messages","hide-details","label","loading","variant"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(ee)),style:e.normalizeStyle(e.unref(oe))},[e.createVNode(fn,e.normalizeProps(e.guardReactiveProps(e.unref(O))),{default:e.withCtx(()=>[e.createVNode(Xe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:de},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),Oa=e.defineComponent({__name:"VInlineTextarea",props:e.mergeModels(e.mergeDefaults({autoGrow:{},clearIcon:{},density:{},rows:{},rules:{},variant:{},autofocus:{type:Boolean},cancelButtonColor:{},cancelButtonSize:{},cancelButtonTitle:{},cancelButtonVariant:{},cancelIcon:{},cancelIconColor:{},cardField:{type:Boolean},cardOffsetX:{},cardOffsetY:{},cardProps:{},cell:{type:Boolean},cellUnderlineFullWidth:{type:Boolean},closeSiblings:{type:Boolean},color:{},disabled:{type:Boolean},displayAppendIcon:{},displayAppendIconColor:{},displayAppendIconSize:{},displayAppendInnerIcon:{},displayAppendInnerIconColor:{},displayAppendInnerIconSize:{},displayPrependIcon:{},displayPrependIconColor:{},displayPrependIconSize:{},displayPrependInnerIcon:{},displayPrependInnerIconColor:{},displayPrependInnerIconSize:{},emptyText:{},error:{type:Boolean},fieldOnly:{type:Boolean},hideCancelIcon:{type:Boolean},hideDetails:{type:Boolean},hideSaveIcon:{type:Boolean},label:{},loading:{type:Boolean},loadingIcon:{},loadingIconColor:{},loadingWait:{type:Boolean},name:{},required:{type:Boolean},saveButtonColor:{},saveButtonSize:{},saveButtonTitle:{},saveButtonVariant:{},saveIcon:{},saveIconColor:{},tableField:{type:Boolean},truncateLength:{},truncateSuffix:{},underlineColor:{},underlineStyle:{},underlineWidth:{},underlined:{type:Boolean},valueColor:{}},{...Ga}),{modelValue:{},modelModifiers:{}}),emits:e.mergeModels([...vn],["update:modelValue"]),setup(n,{emit:l}){const t=e.useModel(n,"modelValue"),o=e.useAttrs(),a=e.useSlots(),i=l,c=e.inject(Me,{}),s=e.inject(Symbol.for("vuetify:icons")),u=n,r=e.reactive({...o,...u,...c});e.watchEffect(()=>{Object.assign(r,{...o,...u,...c})});const{cancelButtonColor:d,cancelButtonSize:p,cancelButtonTitle:v,cancelButtonVariant:m,cancelIcon:g,cancelIconColor:f,cardField:y,closeSiblings:h,color:k,fieldOnly:A,hideCancelIcon:D,hideDetails:V,hideSaveIcon:E,loadingIcon:$,loadingIconColor:_,saveButtonColor:B,saveButtonSize:S,saveButtonTitle:b,saveButtonVariant:x,saveIcon:w,saveIconColor:W}=e.toRefs(r),P=e.computed(()=>u.disabled),T=e.computed(()=>u.loading),F=e.ref(!1),C=e.ref(!1),N=e.ref(!1),L=e.ref(null);let M=t.value;e.watch(()=>T.value,(ne,Ie)=>{!ne&&Ie&&N.value&&pe()});const q=e.computed(()=>Oe({icon:u.clearIcon,iconOptions:s,name:"clear"})),j=e.computed(()=>t.value?(F.value=!1,r.truncateLength?sl({length:r.truncateLength,suffix:r.truncateSuffix,text:t.value}):t.value):(F.value=!0,r.emptyText)),H=e.computed(()=>An(r)),R=e.computed(()=>({color:r.color,displayAppendIcon:r.displayAppendIcon,displayAppendIconColor:r.displayAppendIconColor,displayAppendIconSize:r.displayAppendIconSize,displayAppendInnerIcon:r.displayAppendInnerIcon,displayAppendInnerIconColor:r.displayAppendInnerIconColor,displayAppendInnerIconSize:r.displayAppendInnerIconSize,displayPrependIcon:r.displayPrependIcon,displayPrependIconColor:r.displayPrependIconColor,displayPrependIconSize:r.displayPrependIconSize,displayPrependInnerIcon:r.displayPrependInnerIcon,displayPrependInnerIconColor:r.displayPrependInnerIconColor,displayPrependInnerIconSize:r.displayPrependInnerIconSize,displayValue:j.value,empty:F.value,error:C.value,field:"v-text-field",underlineColor:r.underlineColor,underlineStyle:r.underlineStyle,underlineWidth:r.underlineWidth,underlined:r.underlined,valueColor:r.valueColor})),O=e.computed(()=>({...ln,...u.cardProps})),z=e.computed(()=>on({cell:r.cell&&!N.value,density:r.density,disabled:P.value,field:"v-textarea",iconSet:s==null?void 0:s.defaultSet,loading:T.value,loadingWait:r.loadingWait,tableField:r.tableField,variant:r.variant})),I=e.computed(()=>an({cell:r.cell,cellUnderlineFullWidth:r.cellUnderlineFullWidth,density:r.density,field:"v-textarea"})),G=Wn({density:r.density,variant:r.variant}),Y=e.computed(()=>rn({active:N.value,name:"textarea"})),ee=e.computed(()=>sn({name:"textarea",showField:N.value})),K=e.computed(()=>({})),oe=e.computed(()=>se.value);function le(){C.value=!1,t.value=M,pe()}const se=e.ref(),Z=e.ref(null),de=e.ref("body");function pe(){var Ie,X;if(P.value||r.loadingWait&&T.value)return;se.value=Ge({cardMinWidth:(Ie=r.cardProps)==null?void 0:Ie.minWidth,cardOffsetX:r.cardOffsetX,cardOffsetY:r.cardOffsetY,cardWidth:(X=r.cardProps)==null?void 0:X.width,field:Z.value});const ne=pn({attrs:o,closeSiblings:h.value,fieldOnly:r.fieldOnly,props:u,showField:N,timeOpened:L.value});N.value=ne.showField,L.value=ne.timeOpened,ae!==null&&h.value&&N.value&&!r.fieldOnly&&ae.emit(ne.timeOpened)}const he=e.ref(),Ce=e.computed(()=>he.value);function ue(){const ne=Zn({required:r.required,rules:r.rules,value:t});return C.value=ne.errors,he.value=ne.results,ne.results}function Q(){M=t.value,i("update",t.value),r.loadingWait||pe()}let ae,ge;function ye(ne){i("update:closeSiblingFields",L),N.value&&L.value!==ne&&le()}return e.watch(()=>N.value,()=>{N.value&&ue()}),e.watch(()=>t.value,()=>{N.value&&ue()}),h.value&&import("@vueuse/core").then(({useEventBus:ne})=>{ae=ne(tn),ge=ae.on(ye)}),e.onUnmounted(()=>{ge!==void 0&&ae.off(ye)}),(ne,Ie)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"inlineFieldsContainer",ref:Z,class:e.normalizeClass(e.unref(z)),style:e.normalizeStyle(e.unref(K))},[!e.unref(N)&&!e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(I))},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(G))},[e.createVNode(Hn,e.mergeProps(e.unref(R),{onToggleField:pe}),e.createSlots({_:2},[e.renderList(e.unref(a),(X,ve)=>({name:ve,fn:e.withCtx(Se=>[e.renderSlot(ne.$slots,ve,e.normalizeProps(e.guardReactiveProps({...Se})))])}))]),1040)],2)],2)):e.createCommentVNode("",!0),e.unref(N)||e.unref(r).fieldOnly||e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(e.unref(Y))},[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!e.unref(y),to:e.unref(de)},[e.createVNode($i,e.mergeProps(e.unref(H),{modelValue:t.value,"onUpdate:modelValue":Ie[0]||(Ie[0]=X=>t.value=X),"auto-grow":e.unref(r).autoGrow,autofocus:!e.unref(r).fieldOnly||e.unref(r).autofocus,"clear-icon":e.unref(q),color:e.unref(k),density:e.unref(r).density,disabled:e.unref(T)||e.unref(P),error:e.unref(C),"error-messages":e.unref(Ce),"hide-details":e.unref(V),label:e.unref(r).label,loading:e.unref(T),rows:e.unref(r).rows,variant:e.unref(r).variant,width:"100%",onKeyup:e.withKeys(le,["esc"])}),e.createSlots({_:2},[e.renderList(e.unref(a),(X,ve)=>({name:ve,fn:e.withCtx(Se=>[e.renderSlot(ne.$slots,ve,e.normalizeProps(e.guardReactiveProps({...Se})))])})),e.unref(a).append?void 0:{name:"append",fn:e.withCtx(()=>[e.createVNode(dn,{"cancel-button-color":e.unref(d),"cancel-button-size":e.unref(p),"cancel-button-title":e.unref(v),"cancel-button-variant":e.unref(m),"cancel-icon":e.unref(g),"cancel-icon-color":e.unref(f),error:e.unref(C),"field-only":e.unref(A),"hide-cancel-icon":e.unref(D),"hide-save-icon":e.unref(E),loading:e.unref(T),"loading-icon":e.unref($),"loading-icon-color":e.unref(_),"save-button-color":e.unref(B),"save-button-size":e.unref(S),"save-button-title":e.unref(b),"save-button-variant":e.unref(x),"save-icon":e.unref(w),"save-icon-color":e.unref(W),onClose:le,onSave:Q},null,8,["cancel-button-color","cancel-button-size","cancel-button-title","cancel-button-variant","cancel-icon","cancel-icon-color","error","field-only","hide-cancel-icon","hide-save-icon","loading","loading-icon","loading-icon-color","save-button-color","save-button-size","save-button-title","save-button-variant","save-icon","save-icon-color"])]),key:"0"}]),1040,["modelValue","auto-grow","autofocus","clear-icon","color","density","disabled","error","error-messages","hide-details","label","loading","rows","variant"])],8,["disabled","to"]))],2)):e.createCommentVNode("",!0),e.unref(y)?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(ee)),style:e.normalizeStyle(e.unref(oe))},[e.createVNode(fn,e.normalizeProps(e.guardReactiveProps(e.unref(O))),{default:e.withCtx(()=>[e.createVNode(Xe,null,{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"cardFieldRef",ref:de},null,512)]),_:1})]),_:1},16)],6)):e.createCommentVNode("",!0)],6))}}),zt=Object.freeze(Object.defineProperty({__proto__:null,VInlineAutocomplete:ka,VInlineCheckbox:Fa,VInlineCustomField:Na,VInlineSelect:Aa,VInlineSwitch:Pa,VInlineTextField:_a,VInlineTextarea:Oa},Symbol.toStringTag,{value:"Module"})),Me=Symbol();exports.VInlineAutocomplete=ka,exports.VInlineCheckbox=Fa,exports.VInlineCustomField=Na,exports.VInlineSelect=Aa,exports.VInlineSwitch=Pa,exports.VInlineTextField=_a,exports.VInlineTextarea=Oa,exports.createVInlineFields=function(n={}){return{install:l=>{l.provide(Me,n);for(const t in zt)l.component(t,zt[t])}}},exports.default=zt,exports.globalOptions=Me; +(function(){"use strict";try{if(typeof document<"u"){var i=document.createElement("style");i.appendChild(document.createTextNode(":root{--v-inline-fields-top-padding-compact: 13px;--v-inline-fields-top-padding-comfortable: 17px;--v-inline-fields-top-padding-default: 21px;--v-inline-fields-input-height: 24px;--v-inline-fields-density-compact-height: 32px;--v-inline-fields-density-comfortable-height: 40px;--v-inline-fields-grey: #909090}.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-input__append,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-input__append,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-input__append{padding-top:0!important}.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-input__append .v-icon{font-size:1rem!important}.v-inline-fields{position:relative}.v-inline-fields--display-container *{align-items:center;display:flex}.v-inline-fields--display-container-cell{cursor:pointer;display:block;max-height:unset!important}.v-inline-fields--display-container-cell>div{width:100%}.v-inline-fields--display-container-cell-underline-full-width .v-inline-fields--display-value{width:100%}.v-inline-fields--display-container-cell .v-inline-fields--selection-control .v-inline-fields--display-value{justify-content:center}.v-inline-fields--display-container-cell,.v-inline-fields--display-container-cell .v-input,.v-inline-fields--display-container-cell .v-inline-fields--display-wrapper,.v-inline-fields--display-container-cell .v-selection-control__wrapper{height:100%!important;width:100%}.v-inline-fields--display-value{cursor:pointer;letter-spacing:.009375em!important}.v-inline-fields--display-value-empty{color:var(--v-inline-fields-grey);font-style:italic}.v-inline-fields--display-value-checkbox,.v-inline-fields--display-value-switch{padding-bottom:2px;padding-top:6px}.v-inline-fields--display-append-icon,.v-inline-fields--display-prepend-icon,.v-inline-fields--display-append-inner-icon,.v-inline-fields--display-prepend-inner-icon{align-items:flex-end;display:inline-flex}.v-inline-fields--container-cell{height:100%;width:100%}.v-inline-fields--container-disabled .v-inline-fields--display-value{cursor:default!important;opacity:var(--v-disabled-opacity)}.v-inline-fields--container-loading .v-inline-fields--display-value{cursor:wait!important}.v-inline-fields--container-icon-set-fa .v-field__clearable{font-size:.8rem}.v-inline-fields--container-icon-set-fa .v-field__append-inner{align-items:flex-end;padding-bottom:0!important}.v-inline-fields--container-v-select-compact-plain .v-input,.v-inline-fields--container-v-select-compact-underlined .v-input,.v-inline-fields--container-v-text-field-compact-plain .v-input,.v-inline-fields--container-v-text-field-compact-underlined .v-input{height:var(--v-inline-fields-density-compact-height);max-height:var(--v-inline-fields-density-compact-height)}.v-inline-fields--container-v-select-compact-plain .v-input__control,.v-inline-fields--container-v-select-compact-underlined .v-input__control,.v-inline-fields--container-v-text-field-compact-plain .v-input__control,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control{padding-bottom:4px}.v-inline-fields--container-v-select-compact-plain .v-input>div,.v-inline-fields--container-v-select-compact-underlined .v-input>div,.v-inline-fields--container-v-text-field-compact-plain .v-input>div,.v-inline-fields--container-v-text-field-compact-underlined .v-input>div{height:inherit!important;max-height:inherit!important}.v-inline-fields--container-v-select-compact-plain .v-input .v-field__input,.v-inline-fields--container-v-select-compact-underlined .v-input .v-field__input,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-field__input,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-field__input{padding-top:0}.v-inline-fields--container-v-select-compact-plain .v-input .v-field__input input,.v-inline-fields--container-v-select-compact-underlined .v-input .v-field__input input,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-field__input input,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-field__input input{padding-bottom:10px}.v-inline-fields--container-v-select-compact-plain .v-input .v-select__selection,.v-inline-fields--container-v-select-compact-underlined .v-input .v-select__selection,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-select__selection,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-select__selection{align-items:center;padding-bottom:10px}.v-inline-fields--container-v-select-comfortable-plain .v-input,.v-inline-fields--container-v-select-comfortable-underlined .v-input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input{height:var(--v-inline-fields-density-comfortable-height);max-height:var(--v-inline-fields-density-comfortable-height)}.v-inline-fields--container-v-select-comfortable-plain .v-input__control,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control{padding-bottom:8px}.v-inline-fields--container-v-select-comfortable-plain .v-input>div,.v-inline-fields--container-v-select-comfortable-underlined .v-input>div,.v-inline-fields--container-v-text-field-comfortable-plain .v-input>div,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input>div{height:inherit!important;max-height:inherit!important}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-field__input,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-field__input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-field__input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-field__input{padding-top:0}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-field__input input,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-field__input input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-field__input input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-field__input input{padding-bottom:6px}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-select__selection,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-select__selection,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-select__selection,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-select__selection{align-items:center;padding-bottom:6px}.v-inline-fields--container-v-select-compact-plain .v-field__append-inner,.v-inline-fields--container-v-select-compact-underlined .v-field__append-inner{padding-top:4px!important}.v-inline-fields--container-v-select-comfortable-plain .v-field__append-inner,.v-inline-fields--container-v-select-comfortable-underlined .v-field__append-inner{padding-top:8px!important}.v-inline-fields--container-v-textarea .v-inline-fields--save-fields-container{align-items:flex-end}.v-inline-fields--container-v-select,.v-inline-fields--container-v-textarea,.v-inline-fields--container-v-text-field{width:100%}.v-inline-fields--container-v-checkbox .v-input,.v-inline-fields--container-v-switch .v-input{align-items:center;display:flex;padding-bottom:0}.v-inline-fields--container-v-checkbox .v-input__append,.v-inline-fields--container-v-switch .v-input__append{margin-inline-start:0!important;margin-left:0;padding-bottom:0!important}.v-inline-fields--container-v-checkbox .v-selection-control,.v-inline-fields--container-v-switch .v-selection-control{min-height:unset}.v-inline-fields--container-v-checkbox .v-inline-fields--save-fields-container,.v-inline-fields--container-v-switch .v-inline-fields--save-fields-container{align-items:center!important}.v-inline-fields--container .v-input__append,.v-inline-fields--container .v-input__prepend,.v-inline-fields--container .v-field__append-inner,.v-inline-fields--container .v-field__prepend-inner{padding-top:0!important}.v-inline-fields--container .v-input__append .v-icon,.v-inline-fields--container .v-input__prepend .v-icon,.v-inline-fields--container .v-field__append-inner .v-icon,.v-inline-fields--container .v-field__prepend-inner .v-icon{font-size:1rem!important}.v-inline-fields--container .v-field__append-inner,.v-inline-fields--container .v-field__prepend-inner{padding-bottom:10px!important}.v-inline-fields--container-compact .v-input__append,.v-inline-fields--container-compact .v-input__prepend,.v-inline-fields--container-compact .v-field__append-inner,.v-inline-fields--container-compact .v-field__prepend-inner{align-items:center!important}.v-inline-fields--container-compact .v-field__append-inner,.v-inline-fields--container-compact .v-field__prepend-inner{padding-bottom:10px!important}.v-inline-fields--container-comfortable .v-input__append,.v-inline-fields--container-comfortable .v-input__prepend,.v-inline-fields--container-comfortable .v-field__append-inner,.v-inline-fields--container-comfortable .v-field__prepend-inner{align-items:center!important}.v-inline-fields--container-comfortable .v-field__append-inner,.v-inline-fields--container-comfortable .v-field__prepend-inner{padding-bottom:6px!important}.v-inline-fields--container-default .v-input__append,.v-inline-fields--container-default .v-input__prepend,.v-inline-fields--container-default .v-field__append-inner,.v-inline-fields--container-default .v-field__prepend-inner{align-items:flex-end!important;padding-bottom:0!important}.v-inline-fields--container-default .v-input__append .v-icon,.v-inline-fields--container-default .v-input__prepend .v-icon,.v-inline-fields--container-default .v-field__append-inner .v-icon,.v-inline-fields--container-default .v-field__prepend-inner .v-icon{font-size:calc(var(--v-icon-size-multiplier) * 1.5em)!important}.v-inline-fields--container-default .v-inline-fields--save-fields-container{align-items:flex-end!important}.v-inline-fields--card-container{height:fit-content;min-width:fit-content!important;position:absolute}.v-inline-fields--card-container .v-card{border:1px solid hsla(0,0%,50%,.5)}.v-inline-fields--card-container .v-card .v-card-text{padding:5px 10px}.v-inline-fields--card-container .v-card .v-card-text>div{align-items:center;display:flex}.v-inline-fields--card-container-checkbox .v-card .v-card-text .v-input__append{margin-inline-start:0}.v-inline-fields--save-fields-container{align-items:center;display:flex;height:100%;margin-left:.1rem}.v-inline-fields--boolean-icons{font-size:calc(var(--v-icon-size-multiplier) * 1em)}.v-inline-fields .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:250px}.v-inline-fields .v-input__append{padding-top:0}[data-v-f9b47ea2] .v-field__field,[data-v-4f65a7ea] .v-field__field{align-items:flex-end!important}")),document.head.appendChild(i)}}catch(n){console.error("vite-plugin-css-injected-by-js",n)}})(); diff --git a/dist/vuetify-inline-fields.es.js b/dist/vuetify-inline-fields.es.js index a068b25..d129b85 100644 --- a/dist/vuetify-inline-fields.es.js +++ b/dist/vuetify-inline-fields.es.js @@ -1,50 +1,130 @@ -import { unref as r, Fragment as Fe, reactive as lt, computed as v, watchEffect as it, toRefs as Bt, capitalize as ea, isVNode as gi, Comment as hi, warn as ll, inject as me, ref as D, provide as tt, shallowRef as de, defineComponent as rt, camelize as ta, h as ol, getCurrentInstance as bi, isRef as _t, createVNode as d, toRef as ae, watch as J, onScopeDispose as He, effectScope as zl, toRaw as It, onBeforeUnmount as yt, onMounted as qt, mergeProps as Q, Text as Ci, readonly as Dl, Transition as At, resolveDynamicComponent as Ii, nextTick as Me, withDirectives as Ue, resolveDirective as mt, useAttrs as Ot, openBlock as Z, createElementBlock as ce, createBlock as De, withCtx as be, normalizeClass as oe, createCommentVNode as xe, TransitionGroup as Si, onBeforeMount as na, vShow as Ht, Teleport as Pt, cloneVNode as Bi, createTextVNode as la, vModelText as xi, mergeModels as Qe, useModel as $t, mergeDefaults as Yt, useSlots as Et, onUnmounted as Xt, normalizeStyle as Te, createElementVNode as Ge, toDisplayString as Ll, createSlots as pt, renderList as vt, renderSlot as Ye, normalizeProps as Pe, guardReactiveProps as Re, withKeys as Gn } from "vue"; -import { useTheme as Wl } from "vuetify"; -import { useWindowSize as ki } from "@vueuse/core"; +import { unref as r, Fragment as we, reactive as Qe, computed as v, watchEffect as ze, toRefs as Ft, capitalize as oa, isVNode as ki, Comment as wi, warn as cl, inject as Ie, ref as W, provide as ot, shallowRef as ve, defineComponent as ct, camelize as aa, h as dl, getCurrentInstance as Fi, isRef as Mt, createVNode as d, mergeProps as ee, toRef as ue, Text as Ai, useAttrs as gt, useSlots as At, openBlock as Z, createElementBlock as fe, normalizeClass as le, normalizeStyle as We, renderSlot as Ue, normalizeProps as $e, createBlock as Me, createCommentVNode as Fe, createElementVNode as je, createTextVNode as Ll, toDisplayString as Wl, watch as Y, onScopeDispose as Je, effectScope as Ml, toRaw as Bt, onBeforeUnmount as ft, onMounted as un, readonly as Rl, Transition as Wt, resolveDynamicComponent as Vi, nextTick as Ne, withDirectives as Xe, resolveDirective as ht, withCtx as Ce, onBeforeMount as ia, vShow as cn, TransitionGroup as _i, Teleport as Vt, cloneVNode as Oi, mergeModels as Ye, mergeDefaults as Rt, useModel as _t, onUnmounted as Nt, createSlots as rt, renderList as st, guardReactiveProps as Re, withKeys as kn, vModelText as Pi } from "vue"; +import { useTheme as Nl } from "vuetify"; +import { useWindowSize as $i } from "@vueuse/core"; /** * @name @wdns/vuetify-inline-fields - * @version 1.0.4 + * @version 1.0.5 * @description Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications. * @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! (https://webdevnerdstuff.com) - * @copyright Copyright 2023, WebDevNerdStuff + * @copyright Copyright 2024, WebDevNerdStuff * @homepage https://webdevnerdstuff.github.io/vuetify-inline-fields/ * @repository https://github.com/webdevnerdstuff/vuetify-inline-fields * @license MIT License */ -const Kt = Symbol("identifier"), Jt = { elevation: 5, variant: "flat" }, Bn = { cancelButtonColor: "default", cancelButtonSize: "x-small", cancelButtonTitle: "Cancel", cancelButtonVariant: "text", cancelIcon: void 0, cancelIconColor: "default", cardField: !1, cardOffsetX: 0, cardOffsetY: 0, cardProps: () => ({}), cell: !1, cellUnderlineFullWidth: !0, closeSiblings: !1, color: "primary", density: "compact", disabled: !1, displayAppendIcon: void 0, displayAppendIconColor: void 0, displayAppendIconSize: "x-small", displayAppendInnerIcon: void 0, displayAppendInnerIconColor: void 0, displayAppendInnerIconSize: "x-small", displayPrependIcon: void 0, displayPrependIconColor: void 0, displayPrependIconSize: "x-small", displayPrependInnerIcon: void 0, displayPrependInnerIconColor: void 0, displayPrependInnerIconSize: "x-small", emptyText: "empty", error: !1, fieldOnly: !1, hideCancelIcon: !1, hideDetails: !0, label: "", loading: !1, loadingWait: !0, name: "", tableField: !0, underlineColor: "primary", underlineStyle: "dotted", underlineWidth: "2px", underlined: !0, valueColor: "default" }, Ml = { autofocus: !0 }, xn = { hideCancelIcon: !1, hideSaveIcon: !1, loadingIcon: void 0, loadingIconColor: "primary", saveButtonColor: "primary", saveButtonSize: "x-small", saveButtonTitle: "Save", saveButtonVariant: "text", saveIcon: void 0, saveIconColor: "primary" }, oa = { falseValue: !1, iconFalse: void 0, iconFalseColor: "danger", iconFalseTitle: "No", iconTrue: void 0, iconTrueColor: "success", iconTrueTitle: "Yes", icons: !0, trueValue: !0 }, wi = { ...Bn, ...oa, ...xn, falseIcon: void 0, icons: !0, trueIcon: void 0 }, Fi = { ...Bn, ...Ml, ...xn, clearIcon: void 0, clearable: !1, hideSelected: !0, itemTitle: "title", itemValue: "value", items: () => [], menu: !0, variant: "underlined" }, Ai = { ...Bn, ...oa, ...xn, icons: !0, falseIcon: "" }, Vi = { ...Ml, ...xn, ...Bn, autoGrow: !0, rows: 1, truncateLength: void 0, truncateSuffix: "...", variant: "underlined" }, aa = { ...Bn, ...Ml, ...xn, truncateLength: void 0, truncateSuffix: "...", variant: "underlined" }, re = "v-inline-fields", Zt = (e) => { - const { cell: n = !1, field: t = "", density: l = "", disabled: o = !1, iconSet: a = "mdi", loading: c = !1, loadingWait: u, tableField: s = !1, variant: i } = e, p = l && i; - return { [`${re}`]: !0, [`${re}--container`]: !0, [`${re}--container-cell`]: n, [`${re}--container-disabled`]: r(o), [`${re}--container-table`]: s, [`${re}--container-icon-set-${a}`]: !0, [`${re}--container-loading`]: c && u, [`${re}--container-${t}`]: !0, [`${re}--container-${t}-${l}`]: !0, [`${re}--container-${t}-${l}-${i}`]: p, [`${re}--container-${t}-${i}`]: i, [`${re}--container-${t}-${i}-${l}`]: p, [`${re}--container-${l}`]: l, [`${re}--container-${l}-${t}`]: l, [`${re}--container-${l}-${i}`]: p, [`${re}--container-${i}`]: i, [`${re}--container-${i}-${l}`]: p, [`${re}--container-${i}-${t}`]: i }; -}, Qt = (e) => { +const jt = Symbol("identifier"), Gt = { elevation: 5, variant: "flat" }, dn = { cancelButtonColor: "default", cancelButtonSize: "x-small", cancelButtonTitle: "Cancel", cancelButtonVariant: "text", cancelIcon: void 0, cancelIconColor: "default", cardField: !1, cardOffsetX: 0, cardOffsetY: 0, cardProps: () => ({}), cell: !1, cellUnderlineFullWidth: !0, closeSiblings: !1, color: "primary", density: "compact", disabled: !1, displayAppendIcon: void 0, displayAppendIconColor: void 0, displayAppendIconSize: "x-small", displayAppendInnerIcon: void 0, displayAppendInnerIconColor: void 0, displayAppendInnerIconSize: "x-small", displayPrependIcon: void 0, displayPrependIconColor: void 0, displayPrependIconSize: "x-small", displayPrependInnerIcon: void 0, displayPrependInnerIconColor: void 0, displayPrependInnerIconSize: "x-small", emptyText: "empty", error: !1, fieldOnly: !1, hideCancelIcon: !1, hideDetails: !0, label: "", loading: !1, loadingWait: !0, name: "", required: !1, tableField: !0, underlineColor: "primary", underlineStyle: "dotted", underlineWidth: "2px", underlined: !0, valueColor: "default" }, pl = { autofocus: !0 }, pn = { hideCancelIcon: !1, hideSaveIcon: !1, loadingIcon: void 0, loadingIconColor: "primary", saveButtonColor: "primary", saveButtonSize: "x-small", saveButtonTitle: "Save", saveButtonVariant: "text", saveIcon: void 0, saveIconColor: "primary" }, ra = { falseValue: !1, iconFalse: void 0, iconFalseColor: "danger", iconFalseTitle: "No", iconTrue: void 0, iconTrueColor: "success", iconTrueTitle: "Yes", icons: !0, trueValue: !0 }, Ti = { ...dn, ...ra, ...pn, falseIcon: void 0, icons: !0, trueIcon: void 0 }, Ei = { ...dn, ...pl, ...pn, clearIcon: "$clear", clearable: !1, hideSelected: !0, itemTitle: "title", itemValue: "value", items: () => [], menu: !0, rules: () => [], variant: "underlined" }, zi = { ...dn, ...pl, ...pn, autoSelectFirst: !1, clearIcon: "$clear", clearable: !1, hideSelected: !0, itemTitle: "title", itemValue: "value", items: () => [], menu: !0, menuIcon: "$dropdown", rules: () => [], variant: "underlined" }, Di = { ...dn, ...ra, ...pn, icons: !0, falseIcon: "" }, Li = { ...pl, ...pn, ...dn, autoGrow: !0, clearIcon: "$clear", rows: 1, truncateLength: void 0, truncateSuffix: "...", variant: "underlined" }, sa = { ...dn, ...pl, ...pn, clearIcon: "$clear", truncateLength: void 0, truncateSuffix: "...", variant: "underlined" }, me = "v-inline-fields", Ut = (e) => { + const { cell: n = !1, field: t = "", density: l = "", disabled: o = !1, iconSet: i = "mdi", loading: c = !1, loadingWait: s, tableField: u = !1, variant: a } = e, p = l && a; + return { [`${me}`]: !0, [`${me}--container`]: !0, [`${me}--container-cell`]: n, [`${me}--container-disabled`]: r(o), [`${me}--container-table`]: u, [`${me}--container-icon-set-${i}`]: !0, [`${me}--container-loading`]: c && s, [`${me}--container-${t}`]: !0, [`${me}--container-${t}-${l}`]: !0, [`${me}--container-${t}-${l}-${a}`]: p, [`${me}--container-${t}-${a}`]: a, [`${me}--container-${t}-${a}-${l}`]: p, [`${me}--container-${l}`]: l, [`${me}--container-${l}-${t}`]: l, [`${me}--container-${l}-${a}`]: p, [`${me}--container-${a}`]: a, [`${me}--container-${a}-${l}`]: p, [`${me}--container-${a}-${t}`]: a }; +}, qt = (e) => { const { cell: n = !1, cellUnderlineFullWidth: t = !0, field: l = "", density: o = "" } = e; - return { [`${re}--display-container-cell`]: n, [`${re}--display-container-cell-underline-full-width`]: n && t, [`${re}--display-container`]: !0, [`${re}--display-wrapper-value`]: !0, [`${l}`]: !0, "v-input": !0, [`v-input--density-${o}`]: !0, "v-input--horizontal": !0 }; -}, al = (e) => { + return { [`${me}--display-container-cell`]: n, [`${me}--display-container-cell-underline-full-width`]: n && t, [`${me}--display-container`]: !0, [`${me}--display-wrapper-value`]: !0, [`${l}`]: !0, "v-input": !0, [`v-input--density-${o}`]: !0, "v-input--horizontal": !0 }; +}, Pn = (e) => { const { density: n = "", variant: t = "" } = e; return { "v-input": !0, "v-input--dirty": !0, "v-input--horizontal": !0, "v-text-field": !0, [`v-input--density-${n}`]: !0, [`v-text-field--plain-${t}`]: !0 }; -}, ia = (e) => { +}, ua = (e) => { const { density: n = "" } = e; - return { [`${re}--selection-control`]: !0, [`v-selection-control--density-${n}`]: !0 }; -}, Rl = (e, n, t) => { + return { [`${me}--selection-control`]: !0, [`v-selection-control--density-${n}`]: !0 }; +}, jl = (e, n, t) => { const { error: l = !1, empty: o = !1 } = t; - return { [`${re}`]: !0, [`${re}--display-value-${e}`]: !0, [`${re}--display-value`]: !0, [`${re}--display-value-empty`]: r(o), [`text-${n}`]: !r(l), "text-danger": r(l) }; -}, en = (e) => { + return { [`${me}`]: !0, [`${me}--display-value-${e}`]: !0, [`${me}--display-value`]: !0, [`${me}--display-value-empty`]: r(o), [`text-${n}`]: !r(l), "text-danger": r(l) }; +}, Ht = (e) => { const { name: n, active: t = !1 } = e; - return { [`${re}`]: !0, [`${re}--field`]: !0, [`${re}--field-${n}`]: !0, [`${re}--field-active`]: t }; -}, tn = (e) => { + return { [`${me}`]: !0, [`${me}--field`]: !0, [`${me}--field-${n}`]: !0, [`${me}--field-active`]: t }; +}, Kt = (e) => { const { name: n, showField: t } = e; - return { [`${re}--card-container`]: !0, [`${re}--card-container-${n}`]: !0, "d-none": !t }; -}, _i = { fa: { checkboxFalse: "$checkboxOff", checkboxTrue: "far fa-square-check", clear: "$clear", false: "$close", loading: "fa-circle-notch", save: "fa-floppy-disk", true: "$complete" }, mdi: { checkboxFalse: "$checkboxOff", checkboxTrue: "mdi:mdi-checkbox-outline", clear: "$clear", false: "$close", loading: "mdi-loading", save: "mdi-content-save", true: "$complete" } }, ot = (e) => { - const { icon: n, iconOptions: t, name: l } = e; - if (n) - return n; - const o = _i[t == null ? void 0 : t.defaultSet]; - if (!o) - throw new Error(`VInlineFields: No VInlineFields default ${t == null ? void 0 : t.defaultSet} icon set found for ${l}. Please set the icon prop.`); - const a = o[l]; - if (!a) - throw new Error(`VInlineFields: No ${l} icon found. Please set the icon prop, or set the default icon set to 'mdi' or 'fa'`); - return a; -}, Ke = typeof window < "u", Nl = Ke && "IntersectionObserver" in window; -function io(e, n, t) { + return { [`${me}--card-container`]: !0, [`${me}--card-container-${n}`]: !0, "d-none": !t }; +}; +function co(e) { + if (!e) + return 100; + if (e.toString().includes(".")) { + const n = 100 * Number(e); + return n >= 100 ? 100 : n; + } + return Number(e) >= 100 ? 100 : Number(e); +} +function po(e) { + let n = function(f) { + const y = { AliceBlue: "#F0F8FF", AntiqueWhite: "#FAEBD7", Aqua: "#00FFFF", Aquamarine: "#7FFFD4", Azure: "#F0FFFF", Beige: "#F5F5DC", Bisque: "#FFE4C4", Black: "#000000", BlanchedAlmond: "#FFEBCD", Blue: "#0000FF", BlueViolet: "#8A2BE2", Brown: "#A52A2A", BurlyWood: "#DEB887", CadetBlue: "#5F9EA0", Chartreuse: "#7FFF00", Chocolate: "#D2691E", Coral: "#FF7F50", CornflowerBlue: "#6495ED", Cornsilk: "#FFF8DC", Crimson: "#DC143C", Cyan: "#00FFFF", DarkBlue: "#00008B", DarkCyan: "#008B8B", DarkGoldenRod: "#B8860B", DarkGray: "#A9A9A9", DarkGreen: "#006400", DarkGrey: "#A9A9A9", DarkKhaki: "#BDB76B", DarkMagenta: "#8B008B", DarkOliveGreen: "#556B2F", DarkOrange: "#FF8C00", DarkOrchid: "#9932CC", DarkRed: "#8B0000", DarkSalmon: "#E9967A", DarkSeaGreen: "#8FBC8F", DarkSlateBlue: "#483D8B", DarkSlateGray: "#2F4F4F", DarkSlateGrey: "#2F4F4F", DarkTurquoise: "#00CED1", DarkViolet: "#9400D3", DeepPink: "#FF1493", DeepSkyBlue: "#00BFFF", DimGray: "#696969", DimGrey: "#696969", DodgerBlue: "#1E90FF", FireBrick: "#B22222", FloralWhite: "#FFFAF0", ForestGreen: "#228B22", Fuchsia: "#FF00FF", Gainsboro: "#DCDCDC", GhostWhite: "#F8F8FF", Gold: "#FFD700", GoldenRod: "#DAA520", Gray: "#808080", Green: "#008000", GreenYellow: "#ADFF2F", Grey: "#808080", HoneyDew: "#F0FFF0", HotPink: "#FF69B4", IndianRed: "#CD5C5C", Indigo: "#4B0082", Ivory: "#FFFFF0", Khaki: "#F0E68C", Lavender: "#E6E6FA", LavenderBlush: "#FFF0F5", LawnGreen: "#7CFC00", LemonChiffon: "#FFFACD", LightBlue: "#ADD8E6", LightCoral: "#F08080", LightCyan: "#E0FFFF", LightGoldenRodYellow: "#FAFAD2", LightGray: "#D3D3D3", LightGreen: "#90EE90", LightGrey: "#D3D3D3", LightPink: "#FFB6C1", LightSalmon: "#FFA07A", LightSeaGreen: "#20B2AA", LightSkyBlue: "#87CEFA", LightSlateGray: "#778899", LightSlateGrey: "#778899", LightSteelBlue: "#B0C4DE", LightYellow: "#FFFFE0", Lime: "#00FF00", LimeGreen: "#32CD32", Linen: "#FAF0E6", Magenta: "#FF00FF", Maroon: "#800000", MediumAquaMarine: "#66CDAA", MediumBlue: "#0000CD", MediumOrchid: "#BA55D3", MediumPurple: "#9370DB", MediumSeaGreen: "#3CB371", MediumSlateBlue: "#7B68EE", MediumSpringGreen: "#00FA9A", MediumTurquoise: "#48D1CC", MediumVioletRed: "#C71585", MidnightBlue: "#191970", MintCream: "#F5FFFA", MistyRose: "#FFE4E1", Moccasin: "#FFE4B5", NavajoWhite: "#FFDEAD", Navy: "#000080", OldLace: "#FDF5E6", Olive: "#808000", OliveDrab: "#6B8E23", Orange: "#FFA500", OrangeRed: "#FF4500", Orchid: "#DA70D6", PaleGoldenRod: "#EEE8AA", PaleGreen: "#98FB98", PaleTurquoise: "#AFEEEE", PaleVioletRed: "#DB7093", PapayaWhip: "#FFEFD5", PeachPuff: "#FFDAB9", Peru: "#CD853F", Pink: "#FFC0CB", Plum: "#DDA0DD", PowderBlue: "#B0E0E6", Purple: "#800080", RebeccaPurple: "#663399", Red: "#FF0000", RosyBrown: "#BC8F8F", RoyalBlue: "#4169E1", SaddleBrown: "#8B4513", Salmon: "#FA8072", SandyBrown: "#F4A460", SeaGreen: "#2E8B57", SeaShell: "#FFF5EE", Sienna: "#A0522D", Silver: "#C0C0C0", SkyBlue: "#87CEEB", SlateBlue: "#6A5ACD", SlateGray: "#708090", SlateGrey: "#708090", Snow: "#FFFAFA", SpringGreen: "#00FF7F", SteelBlue: "#4682B4", Tan: "#D2B48C", Teal: "#008080", Thistle: "#D8BFD8", Tomato: "#FF6347", Turquoise: "#40E0D0", Violet: "#EE82EE", Wheat: "#F5DEB3", White: "#FFFFFF", WhiteSmoke: "#F5F5F5", Yellow: "#FFFF00", YellowGreen: "#9ACD32" }; + let g = f; + return Object.entries(y).forEach(([b, m]) => { + f.toLowerCase() != b.toLowerCase() || (g = m); + }), g; + }(e), t = 0, l = 0, o = 0, i = 100, c = 0, s = 0, u = 0; + if (n.substring(0, 1) === "#") + n = function(f) { + let y = f.replace("#", ""); + y.length === 3 && (y = y.split("").map((I) => I + I).join("")); + const g = parseInt(y.substring(0, 2), 16), b = parseInt(y.substring(2, 4), 16), m = parseInt(y.substring(4, 6), 16); + return [g, b, m, 100]; + }(n); + else if (n.includes("rgb")) + n = [...n.matchAll(/[\d+.\d+]+/g)].map(Number); + else if (n.includes("hsl")) + return n = [...n.matchAll(/[\d+.\d+]+/g)].map(String), t = n[0], l = n[1], o = n[2], i = co(n[3]), `${t} ${l}% ${o}% / ${i}%`; + [c, s, u, i] = n, c /= 255, s /= 255, u /= 255, i = co(i); + const a = Math.max(c, s, u), p = Math.min(c, s, u); + if (a === null || !p === null || isNaN(a) || isNaN(p)) { + const f = "0 0% 100% / 12%"; + return console.warn(`[VuetifyInlineFields]: The "color" prop value using "${n}" doesn't exist. Using the value "hsl(${f})" in it's place.`), f; + } + if (t = (a + p) / 2, l = (a + p) / 2, o = (a + p) / 2, a == p) + t = l = 0; + else { + const f = a - p; + switch (l = o > 0.5 ? f / (2 - a - p) : f / (a + p), a) { + case c: + t = (s - u) / f + (s < u ? 6 : 0); + break; + case s: + t = (u - c) / f + 2; + break; + case u: + t = (c - s) / f + 4; + } + t /= 6; + } + return t = Math.round(360 * t), l = Math.round(100 * l), o = Math.round(100 * o), `${t} ${l}% ${o}% / ${i}%`; +} +const Wi = (e, n) => { + if (/* @__PURE__ */ function(l) { + return l === "transparent" || l === "none" || l === "inherit" || l === "currentColor" || l === "initial" || l === "unset"; + }(e)) + return e; + if (function(l) { + return l.includes("--v-theme"); + }(e)) + return `rgb(var(${e}))`; + const t = function(l, o) { + const i = o.global.current.value.colors; + return Object.entries(i).find(([c]) => c === l); + }(e, n); + return t ? `hsl(${po(t[1])})` : `hsl(${po(e)})`; +}, In = (e) => { + const { str: n, unit: t = "px" } = e; + if (n != null && n !== "") + return +n ? `${Number(n)}${t}` : String(n); +}, ca = (e) => { + var o; + const { modelValue: n, trueValue: t } = e, l = r(n); + return ((o = l == null ? void 0 : l.toLowerCase) == null ? void 0 : o.call(l)) === "true" || l === "1" || l == "1" || l === !0 || l == t || l === t; +}, Gl = (e) => { + const { underlineStyle: n, underlineWidth: t, color: l, error: o, theme: i, underlined: c } = e; + let { underlineColor: s } = e; + s = s || l; + const u = { "border-bottom-color": Wi(s, i), "border-bottom-style": n, "border-bottom-width": t }; + return r(o) && (u["border-bottom-color"] = "rgb(var(--v-theme-danger))"), c || (u["border-bottom"] = "none"), u; +}, xt = (e) => { + const { cardMinWidth: n, cardOffsetX: t, cardOffsetY: l, cardWidth: o, field: i, name: c = "" } = e, s = ((p) => { + const { cardOffsetX: f, cardOffsetY: y, field: g } = p; + if (!g) + return { bottom: 0, height: 0, left: 0, right: 0, top: 0, width: 0, x: 0, y: 0 }; + const { x: b, y: m } = g.getBoundingClientRect(), { width: h, height: I } = g.getBoundingClientRect(), { right: F, bottom: V } = g.getBoundingClientRect(); + return { bottom: In({ str: V + Number(y) }), height: I, left: In({ str: 0 + Number(f) }), right: In({ str: F + Number(f) }), top: In({ str: 2 + Number(y) }), width: In({ str: h }), x: b, y: m }; + })({ cardOffsetX: t, cardOffsetY: l, field: i }); + let u = n, a = o; + return a || (a = c === "checkbox" ? "fit-content" : s.width), u || (u = c === "checkbox" ? "fit-content" : s.width), { left: s.left, top: s.top, width: a, zIndex: 10 }; +}, Ke = typeof window < "u", Ul = Ke && "IntersectionObserver" in window; +function vo(e, n, t) { const l = n.length - 1; if (l < 0) return e === void 0 ? t : e; @@ -55,15 +135,15 @@ function io(e, n, t) { } return e == null || e[n[l]] === void 0 ? t : e[n[l]]; } -function nn(e, n) { +function vn(e, n) { if (e === n) return !0; if (e instanceof Date && n instanceof Date && e.getTime() !== n.getTime() || e !== Object(e) || n !== Object(n)) return !1; const t = Object.keys(e); - return t.length === Object.keys(n).length && t.every((l) => nn(e[l], n[l])); + return t.length === Object.keys(n).length && t.every((l) => vn(e[l], n[l])); } -function ct(e, n, t) { +function dt(e, n, t) { if (n === !0) return e === void 0 ? t : e; if (n == null || typeof n == "boolean") @@ -75,120 +155,120 @@ function ct(e, n, t) { return o === void 0 ? t : o; } if (typeof n == "string") - return function(o, a, c) { - return o != null && a && typeof a == "string" ? o[a] !== void 0 ? o[a] : io(o, (a = (a = a.replace(/\[(\w+)\]/g, ".$1")).replace(/^\./, "")).split("."), c) : c; + return function(o, i, c) { + return o != null && i && typeof i == "string" ? o[i] !== void 0 ? o[i] : vo(o, (i = (i = i.replace(/\[(\w+)\]/g, ".$1")).replace(/^\./, "")).split("."), c) : c; }(e, n, t); if (Array.isArray(n)) - return io(e, n, t); + return vo(e, n, t); if (typeof n != "function") return t; const l = n(e, t); return l === void 0 ? t : l; } -function ie(e) { +function ce(e) { let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "px"; return e == null || e === "" ? void 0 : isNaN(+e) ? String(e) : isFinite(+e) ? `${Number(e)}${n}` : void 0; } -function Sl(e) { +function wl(e) { return e !== null && typeof e == "object" && !Array.isArray(e); } -function Un(e) { +function Zn(e) { if (e && "$el" in e) { const n = e.$el; return (n == null ? void 0 : n.nodeType) === Node.TEXT_NODE ? n.nextElementSibling : n; } return e; } -const ro = Object.freeze({ enter: 13, tab: 9, delete: 46, esc: 27, space: 32, up: 38, down: 40, left: 37, right: 39, end: 35, home: 36, del: 46, backspace: 8, insert: 45, pageup: 33, pagedown: 34, shift: 16 }); -function vl(e, n) { +const fo = Object.freeze({ enter: 13, tab: 9, delete: 46, esc: 27, space: 32, up: 38, down: 40, left: 37, right: 39, end: 35, home: 36, del: 46, backspace: 8, insert: 45, pageup: 33, pagedown: 34, shift: 16 }); +function gl(e, n) { return n.every((t) => e.hasOwnProperty(t)); } -function ra(e, n) { +function da(e, n) { const t = {}, l = new Set(Object.keys(e)); for (const o of n) l.has(o) && (t[o] = e[o]); return t; } -function so(e, n, t) { +function yo(e, n, t) { const l = /* @__PURE__ */ Object.create(null), o = /* @__PURE__ */ Object.create(null); - for (const a in e) - n.some((c) => c instanceof RegExp ? c.test(a) : c === a) && !(t != null && t.some((c) => c === a)) ? l[a] = e[a] : o[a] = e[a]; + for (const i in e) + n.some((c) => c instanceof RegExp ? c.test(i) : c === i) && !(t != null && t.some((c) => c === i)) ? l[i] = e[i] : o[i] = e[i]; return [l, o]; } -function Tt(e, n) { +function Ot(e, n) { const t = { ...e }; return n.forEach((l) => delete t[l]), t; } -const sa = /^on[^a-z]/, Bl = (e) => sa.test(e), Oi = ["onAfterscriptexecute", "onAnimationcancel", "onAnimationend", "onAnimationiteration", "onAnimationstart", "onAuxclick", "onBeforeinput", "onBeforescriptexecute", "onChange", "onClick", "onCompositionend", "onCompositionstart", "onCompositionupdate", "onContextmenu", "onCopy", "onCut", "onDblclick", "onFocusin", "onFocusout", "onFullscreenchange", "onFullscreenerror", "onGesturechange", "onGestureend", "onGesturestart", "onGotpointercapture", "onInput", "onKeydown", "onKeypress", "onKeyup", "onLostpointercapture", "onMousedown", "onMousemove", "onMouseout", "onMouseover", "onMouseup", "onMousewheel", "onPaste", "onPointercancel", "onPointerdown", "onPointerenter", "onPointerleave", "onPointermove", "onPointerout", "onPointerover", "onPointerup", "onReset", "onSelect", "onSubmit", "onTouchcancel", "onTouchend", "onTouchmove", "onTouchstart", "onTransitioncancel", "onTransitionend", "onTransitionrun", "onTransitionstart", "onWheel"]; -function kn(e) { - const [n, t] = so(e, [sa]), l = Tt(n, Oi), [o, a] = so(t, ["class", "style", "id", /^data-/]); - return Object.assign(o, n), Object.assign(a, l), [o, a]; +const pa = /^on[^a-z]/, Fl = (e) => pa.test(e), Mi = ["onAfterscriptexecute", "onAnimationcancel", "onAnimationend", "onAnimationiteration", "onAnimationstart", "onAuxclick", "onBeforeinput", "onBeforescriptexecute", "onChange", "onClick", "onCompositionend", "onCompositionstart", "onCompositionupdate", "onContextmenu", "onCopy", "onCut", "onDblclick", "onFocusin", "onFocusout", "onFullscreenchange", "onFullscreenerror", "onGesturechange", "onGestureend", "onGesturestart", "onGotpointercapture", "onInput", "onKeydown", "onKeypress", "onKeyup", "onLostpointercapture", "onMousedown", "onMousemove", "onMouseout", "onMouseover", "onMouseup", "onMousewheel", "onPaste", "onPointercancel", "onPointerdown", "onPointerenter", "onPointerleave", "onPointermove", "onPointerout", "onPointerover", "onPointerup", "onReset", "onSelect", "onSubmit", "onTouchcancel", "onTouchend", "onTouchmove", "onTouchstart", "onTransitioncancel", "onTransitionend", "onTransitionrun", "onTransitionstart", "onWheel"]; +function $n(e) { + const [n, t] = yo(e, [pa]), l = Ot(n, Mi), [o, i] = yo(t, ["class", "style", "id", /^data-/]); + return Object.assign(o, n), Object.assign(i, l), [o, i]; } -function dt(e) { +function lt(e) { return e == null ? [] : Array.isArray(e) ? e : [e]; } -function jt(e) { +function on(e) { let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0, t = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : 1; return Math.max(n, Math.min(t, e)); } -function uo(e, n) { +function mo(e, n) { return e + (arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : "0").repeat(Math.max(0, n - e.length)); } -function Rt() { +function nn() { let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, t = arguments.length > 2 ? arguments[2] : void 0; const l = {}; for (const o in e) l[o] = e[o]; for (const o in n) { - const a = e[o], c = n[o]; - Sl(a) && Sl(c) ? l[o] = Rt(a, c, t) : Array.isArray(a) && Array.isArray(c) && t ? l[o] = t(a, c) : l[o] = c; + const i = e[o], c = n[o]; + wl(i) && wl(c) ? l[o] = nn(i, c, t) : Array.isArray(i) && Array.isArray(c) && t ? l[o] = t(i, c) : l[o] = c; } return l; } -function ua(e) { - return e.map((n) => n.type === Fe ? ua(n.children) : n).flat(); +function va(e) { + return e.map((n) => n.type === we ? va(n.children) : n).flat(); } -function kt() { +function zt() { let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : ""; - if (kt.cache.has(e)) - return kt.cache.get(e); + if (zt.cache.has(e)) + return zt.cache.get(e); const n = e.replace(/[^a-z]/gi, "-").replace(/\B([A-Z])/g, "-$1").toLowerCase(); - return kt.cache.set(e, n), n; + return zt.cache.set(e, n), n; } -function Rn(e, n) { +function Yn(e, n) { if (!n || typeof n != "object") return []; if (Array.isArray(n)) - return n.map((t) => Rn(e, t)).flat(1); + return n.map((t) => Yn(e, t)).flat(1); if (Array.isArray(n.children)) - return n.children.map((t) => Rn(e, t)).flat(1); + return n.children.map((t) => Yn(e, t)).flat(1); if (n.component) { if (Object.getOwnPropertySymbols(n.component.provides).includes(e)) return [n.component]; if (n.component.subTree) - return Rn(e, n.component.subTree).flat(1); + return Yn(e, n.component.subTree).flat(1); } return []; } -function jl(e) { - const n = lt({}), t = v(e); - return it(() => { +function ql(e) { + const n = Qe({}), t = v(e); + return ze(() => { for (const l in t.value) n[l] = t.value[l]; - }, { flush: "sync" }), Bt(n); + }, { flush: "sync" }), Ft(n); } -function qn(e, n) { +function el(e, n) { return e.includes(n); } -function co(e) { +function go(e) { return e[2].toLowerCase() + e.slice(3); } -kt.cache = /* @__PURE__ */ new Map(); -const at = () => [Function, Array]; -function po(e, n) { - return !!(e[n = "on" + ea(n)] || e[`${n}Once`] || e[`${n}Capture`] || e[`${n}OnceCapture`] || e[`${n}CaptureOnce`]); +zt.cache = /* @__PURE__ */ new Map(); +const pt = () => [Function, Array]; +function ho(e, n) { + return !!(e[n = "on" + oa(n)] || e[`${n}Once`] || e[`${n}Capture`] || e[`${n}OnceCapture`] || e[`${n}CaptureOnce`]); } -function ca(e) { +function fa(e) { for (var n = arguments.length, t = new Array(n > 1 ? n - 1 : 0), l = 1; l < n; l++) t[l - 1] = arguments[l]; if (Array.isArray(e)) @@ -197,37 +277,39 @@ function ca(e) { else typeof e == "function" && e(...t); } -function xl(e) { +function Al(e) { let n = !(arguments.length > 1 && arguments[1] !== void 0) || arguments[1]; const t = ["button", "[href]", 'input:not([type="hidden"])', "select", "textarea", "[tabindex]"].map((l) => `${l}${n ? ':not([tabindex="-1"])' : ""}:not([disabled])`).join(", "); return [...e.querySelectorAll(t)]; } -function da(e, n, t) { +function ya(e, n, t) { let l, o = e.indexOf(document.activeElement); - const a = n === "next" ? 1 : -1; + const i = n === "next" ? 1 : -1; do - o += a, l = e[o]; + o += i, l = e[o]; while ((!l || l.offsetParent == null || !((t == null ? void 0 : t(l)) ?? 1)) && o < e.length && o >= 0); return l; } -function Hn(e, n) { - var l, o, a, c; - const t = xl(e); +function tl(e, n) { + var l, o, i, c; + const t = Al(e); if (n) if (n === "first") (l = t[0]) == null || l.focus(); else if (n === "last") (o = t.at(-1)) == null || o.focus(); else if (typeof n == "number") - (a = t[n]) == null || a.focus(); + (i = t[n]) == null || i.focus(); else { - const u = da(t, n); - u ? u.focus() : Hn(e, n === "next" ? "first" : "last"); + const s = ya(t, n); + s ? s.focus() : tl(e, n === "next" ? "first" : "last"); } else e !== document.activeElement && e.contains(document.activeElement) || ((c = t[0]) == null || c.focus()); } -function Yn(e, n) { +function Ri() { +} +function an(e, n) { if (!(Ke && typeof CSS < "u" && CSS.supports !== void 0 && CSS.supports(`selector(${n})`))) return null; try { @@ -236,33 +318,33 @@ function Yn(e, n) { return null; } } -function pa(e) { - return e.some((n) => !gi(n) || n.type !== hi && (n.type !== Fe || pa(n.children))) ? e : null; +function Hl(e) { + return e.some((n) => !ki(n) || n.type !== wi && (n.type !== we || Hl(n.children))) ? e : null; } -const va = ["top", "bottom"], Pi = ["start", "end", "left", "right"]; -function kl(e, n) { +const ma = ["top", "bottom"], Ni = ["start", "end", "left", "right"]; +function Vl(e, n) { let [t, l] = e.split(" "); - return l || (l = qn(va, t) ? "start" : qn(Pi, t) ? "top" : "center"), { side: vo(t, n), align: vo(l, n) }; + return l || (l = el(ma, t) ? "start" : el(Ni, t) ? "top" : "center"), { side: bo(t, n), align: bo(l, n) }; } -function vo(e, n) { +function bo(e, n) { return e === "start" ? n ? "right" : "left" : e === "end" ? n ? "left" : "right" : e; } -function fl(e) { +function hl(e) { return { side: { center: "center", top: "bottom", bottom: "top", left: "right", right: "left" }[e.side], align: e.align }; } -function yl(e) { +function bl(e) { return { side: e.side, align: { center: "center", top: "bottom", bottom: "top", left: "right", right: "left" }[e.align] }; } -function fo(e) { +function Co(e) { return { side: e.align, align: e.side }; } -function yo(e) { - return qn(va, e.side) ? "y" : "x"; +function Io(e) { + return el(ma, e.side) ? "y" : "x"; } -class wt { +class Dt { constructor(n) { - let { x: t, y: l, width: o, height: a } = n; - this.x = t, this.y = l, this.width = o, this.height = a; + let { x: t, y: l, width: o, height: i } = n; + this.x = t, this.y = l, this.width = o, this.height = i; } get top() { return this.y; @@ -277,29 +359,29 @@ class wt { return this.x + this.width; } } -function mo(e, n) { +function So(e, n) { return { x: { before: Math.max(0, n.left - e.left), after: Math.max(0, e.right - n.right) }, y: { before: Math.max(0, n.top - e.top), after: Math.max(0, e.bottom - n.bottom) } }; } -function fa(e) { - return Array.isArray(e) ? new wt({ x: e[0], y: e[1], width: 0, height: 0 }) : e.getBoundingClientRect(); +function ga(e) { + return Array.isArray(e) ? new Dt({ x: e[0], y: e[1], width: 0, height: 0 }) : e.getBoundingClientRect(); } -function Gl(e) { +function Kl(e) { const n = e.getBoundingClientRect(), t = getComputedStyle(e), l = t.transform; if (l) { - let o, a, c, u, s; + let o, i, c, s, u; if (l.startsWith("matrix3d(")) - o = l.slice(9, -1).split(/, /), a = +o[0], c = +o[5], u = +o[12], s = +o[13]; + o = l.slice(9, -1).split(/, /), i = +o[0], c = +o[5], s = +o[12], u = +o[13]; else { if (!l.startsWith("matrix(")) - return new wt(n); - o = l.slice(7, -1).split(/, /), a = +o[0], c = +o[3], u = +o[4], s = +o[5]; + return new Dt(n); + o = l.slice(7, -1).split(/, /), i = +o[0], c = +o[3], s = +o[4], u = +o[5]; } - const i = t.transformOrigin, p = n.x - u - (1 - a) * parseFloat(i), y = n.y - s - (1 - c) * parseFloat(i.slice(i.indexOf(" ") + 1)), f = a ? n.width / a : e.offsetWidth + 1, m = c ? n.height / c : e.offsetHeight + 1; - return new wt({ x: p, y, width: f, height: m }); + const a = t.transformOrigin, p = n.x - s - (1 - i) * parseFloat(a), f = n.y - u - (1 - c) * parseFloat(a.slice(a.indexOf(" ") + 1)), y = i ? n.width / i : e.offsetWidth + 1, g = c ? n.height / c : e.offsetHeight + 1; + return new Dt({ x: p, y: f, width: y, height: g }); } - return new wt(n); + return new Dt(n); } -function Nt(e, n, t) { +function ln(e, n, t) { if (e.animate === void 0) return { finished: Promise.resolve() }; let l; @@ -314,180 +396,180 @@ function Nt(e, n, t) { }; })), l; } -const Dn = /* @__PURE__ */ new WeakMap(), Mt = 2.4, go = 0.2126729, ho = 0.7151522, bo = 0.072175, $i = 0.55, Ei = 0.58, Ti = 0.57, zi = 0.62, Ln = 0.03, Co = 1.45, Di = 5e-4, Li = 1.25, Wi = 1.25, Io = 0.078, So = 12.82051282051282, Wn = 0.06, Bo = 1e-3; -function xo(e, n) { - const t = (e.r / 255) ** Mt, l = (e.g / 255) ** Mt, o = (e.b / 255) ** Mt, a = (n.r / 255) ** Mt, c = (n.g / 255) ** Mt, u = (n.b / 255) ** Mt; - let s, i = t * go + l * ho + o * bo, p = a * go + c * ho + u * bo; - if (i <= Ln && (i += (Ln - i) ** Co), p <= Ln && (p += (Ln - p) ** Co), Math.abs(p - i) < Di) +const qn = /* @__PURE__ */ new WeakMap(), tn = 2.4, Bo = 0.2126729, xo = 0.7151522, ko = 0.072175, ji = 0.55, Gi = 0.58, Ui = 0.57, qi = 0.62, Hn = 0.03, wo = 1.45, Hi = 5e-4, Ki = 1.25, Xi = 1.25, Fo = 0.078, Ao = 12.82051282051282, Kn = 0.06, Vo = 1e-3; +function _o(e, n) { + const t = (e.r / 255) ** tn, l = (e.g / 255) ** tn, o = (e.b / 255) ** tn, i = (n.r / 255) ** tn, c = (n.g / 255) ** tn, s = (n.b / 255) ** tn; + let u, a = t * Bo + l * xo + o * ko, p = i * Bo + c * xo + s * ko; + if (a <= Hn && (a += (Hn - a) ** wo), p <= Hn && (p += (Hn - p) ** wo), Math.abs(p - a) < Hi) return 0; - if (p > i) { - const y = (p ** $i - i ** Ei) * Li; - s = y < Bo ? 0 : y < Io ? y - y * So * Wn : y - Wn; + if (p > a) { + const f = (p ** ji - a ** Gi) * Ki; + u = f < Vo ? 0 : f < Fo ? f - f * Ao * Kn : f - Kn; } else { - const y = (p ** zi - i ** Ti) * Wi; - s = y > -Bo ? 0 : y > -Io ? y - y * So * Wn : y + Wn; + const f = (p ** qi - a ** Ui) * Xi; + u = f > -Vo ? 0 : f > -Fo ? f - f * Ao * Kn : f + Kn; } - return 100 * s; + return 100 * u; } -function gn(e) { - ll(`Vuetify: ${e}`); +function xn(e) { + cl(`Vuetify: ${e}`); } -function ml(e) { +function Cl(e) { return !!e && /^(#|var\(--|(rgb|hsl)a?\()/.test(e); } -const ko = /^(?(?:rgb|hsl)a?)\((?.+)\)/, Mi = { rgb: (e, n, t, l) => ({ r: e, g: n, b: t, a: l }), rgba: (e, n, t, l) => ({ r: e, g: n, b: t, a: l }), hsl: (e, n, t, l) => wo({ h: e, s: n, l: t, a: l }), hsla: (e, n, t, l) => wo({ h: e, s: n, l: t, a: l }), hsv: (e, n, t, l) => hn({ h: e, s: n, v: t, a: l }), hsva: (e, n, t, l) => hn({ h: e, s: n, v: t, a: l }) }; -function fn(e) { +const Oo = /^(?(?:rgb|hsl)a?)\((?.+)\)/, Yi = { rgb: (e, n, t, l) => ({ r: e, g: n, b: t, a: l }), rgba: (e, n, t, l) => ({ r: e, g: n, b: t, a: l }), hsl: (e, n, t, l) => Po({ h: e, s: n, l: t, a: l }), hsla: (e, n, t, l) => Po({ h: e, s: n, l: t, a: l }), hsv: (e, n, t, l) => wn({ h: e, s: n, v: t, a: l }), hsva: (e, n, t, l) => wn({ h: e, s: n, v: t, a: l }) }; +function Sn(e) { if (typeof e == "number") - return (isNaN(e) || e < 0 || e > 16777215) && gn(`'${e}' is not a valid hex color`), { r: (16711680 & e) >> 16, g: (65280 & e) >> 8, b: 255 & e }; - if (typeof e == "string" && ko.test(e)) { - const { groups: n } = e.match(ko), { fn: t, values: l } = n, o = l.split(/,\s*/).map((a) => a.endsWith("%") && ["hsl", "hsla", "hsv", "hsva"].includes(t) ? parseFloat(a) / 100 : parseFloat(a)); - return Mi[t](...o); + return (isNaN(e) || e < 0 || e > 16777215) && xn(`'${e}' is not a valid hex color`), { r: (16711680 & e) >> 16, g: (65280 & e) >> 8, b: 255 & e }; + if (typeof e == "string" && Oo.test(e)) { + const { groups: n } = e.match(Oo), { fn: t, values: l } = n, o = l.split(/,\s*/).map((i) => i.endsWith("%") && ["hsl", "hsla", "hsv", "hsva"].includes(t) ? parseFloat(i) / 100 : parseFloat(i)); + return Yi[t](...o); } if (typeof e == "string") { let n = e.startsWith("#") ? e.slice(1) : e; - [3, 4].includes(n.length) ? n = n.split("").map((l) => l + l).join("") : [6, 8].includes(n.length) || gn(`'${e}' is not a valid hex(a) color`); + [3, 4].includes(n.length) ? n = n.split("").map((l) => l + l).join("") : [6, 8].includes(n.length) || xn(`'${e}' is not a valid hex(a) color`); const t = parseInt(n, 16); - return (isNaN(t) || t < 0 || t > 4294967295) && gn(`'${e}' is not a valid hex(a) color`), function(l) { - l = function(s) { - return s.startsWith("#") && (s = s.slice(1)), s = s.replace(/([^0-9a-f])/gi, "F"), (s.length === 3 || s.length === 4) && (s = s.split("").map((i) => i + i).join("")), s.length !== 6 && (s = uo(uo(s, 6), 8, "F")), s; + return (isNaN(t) || t < 0 || t > 4294967295) && xn(`'${e}' is not a valid hex(a) color`), function(l) { + l = function(u) { + return u.startsWith("#") && (u = u.slice(1)), u = u.replace(/([^0-9a-f])/gi, "F"), (u.length === 3 || u.length === 4) && (u = u.split("").map((a) => a + a).join("")), u.length !== 6 && (u = mo(mo(u, 6), 8, "F")), u; }(l); - let [o, a, c, u] = function(s) { - let i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 1; + let [o, i, c, s] = function(u) { + let a = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 1; const p = []; - let y = 0; - for (; y < s.length; ) - p.push(s.substr(y, i)), y += i; + let f = 0; + for (; f < u.length; ) + p.push(u.substr(f, a)), f += a; return p; - }(l, 2).map((s) => parseInt(s, 16)); - return u = u === void 0 ? u : u / 255, { r: o, g: a, b: c, a: u }; + }(l, 2).map((u) => parseInt(u, 16)); + return s = s === void 0 ? s : s / 255, { r: o, g: i, b: c, a: s }; }(n); } if (typeof e == "object") { - if (vl(e, ["r", "g", "b"])) + if (gl(e, ["r", "g", "b"])) return e; - if (vl(e, ["h", "s", "l"])) - return hn(ya(e)); - if (vl(e, ["h", "s", "v"])) - return hn(e); + if (gl(e, ["h", "s", "l"])) + return wn(ha(e)); + if (gl(e, ["h", "s", "v"])) + return wn(e); } throw new TypeError(`Invalid color: ${e == null ? e : String(e) || e.constructor.name} Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`); } -function hn(e) { - const { h: n, s: t, v: l, a: o } = e, a = (u) => { - const s = (u + n / 60) % 6; - return l - l * t * Math.max(Math.min(s, 4 - s, 1), 0); - }, c = [a(5), a(3), a(1)].map((u) => Math.round(255 * u)); +function wn(e) { + const { h: n, s: t, v: l, a: o } = e, i = (s) => { + const u = (s + n / 60) % 6; + return l - l * t * Math.max(Math.min(u, 4 - u, 1), 0); + }, c = [i(5), i(3), i(1)].map((s) => Math.round(255 * s)); return { r: c[0], g: c[1], b: c[2], a: o }; } -function wo(e) { - return hn(ya(e)); +function Po(e) { + return wn(ha(e)); } -function ya(e) { - const { h: n, s: t, l, a: o } = e, a = l + t * Math.min(l, 1 - l); - return { h: n, s: a === 0 ? 0 : 2 - 2 * l / a, v: a, a: o }; +function ha(e) { + const { h: n, s: t, l, a: o } = e, i = l + t * Math.min(l, 1 - l); + return { h: n, s: i === 0 ? 0 : 2 - 2 * l / i, v: i, a: o }; } function H(e, n) { return (t) => Object.keys(e).reduce((l, o) => { - const a = typeof e[o] == "object" && e[o] != null && !Array.isArray(e[o]) ? e[o] : { type: e[o] }; - return l[o] = t && o in t ? { ...a, default: t[o] } : a, n && !l[o].source && (l[o].source = n), l; + const i = typeof e[o] == "object" && e[o] != null && !Array.isArray(e[o]) ? e[o] : { type: e[o] }; + return l[o] = t && o in t ? { ...i, default: t[o] } : i, n && !l[o].source && (l[o].source = n), l; }, {}); } -const ye = H({ class: [String, Array], style: { type: [String, Array, Object], default: null } }, "component"), Xn = Symbol.for("vuetify:defaults"); -function Ul() { - const e = me(Xn); +const Se = H({ class: [String, Array], style: { type: [String, Array, Object], default: null } }, "component"), nl = Symbol.for("vuetify:defaults"); +function Xl() { + const e = Ie(nl); if (!e) throw new Error("[Vuetify] Could not find defaults instance"); return e; } -function ln(e, n) { - const t = Ul(), l = D(e), o = v(() => { +function fn(e, n) { + const t = Xl(), l = W(e), o = v(() => { if (r(n == null ? void 0 : n.disabled)) return t.value; - const a = r(n == null ? void 0 : n.scoped), c = r(n == null ? void 0 : n.reset), u = r(n == null ? void 0 : n.root); - if (l.value == null && !(a || c || u)) + const i = r(n == null ? void 0 : n.scoped), c = r(n == null ? void 0 : n.reset), s = r(n == null ? void 0 : n.root); + if (l.value == null && !(i || c || s)) return t.value; - let s = Rt(l.value, { prev: t.value }); - if (a) - return s; - if (c || u) { - const i = Number(c || 1 / 0); - for (let p = 0; p <= i && s && "prev" in s; p++) - s = s.prev; - return s && typeof u == "string" && u in s && (s = Rt(Rt(s, { prev: s }), s[u])), s; + let u = nn(l.value, { prev: t.value }); + if (i) + return u; + if (c || s) { + const a = Number(c || 1 / 0); + for (let p = 0; p <= a && u && "prev" in u; p++) + u = u.prev; + return u && typeof s == "string" && s in u && (u = nn(nn(u, { prev: u }), u[s])), u; } - return s.prev ? Rt(s.prev, s) : s; + return u.prev ? nn(u.prev, u) : u; }); - return tt(Xn, o), o; + return ot(nl, o), o; } -function Ri() { - let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, n = arguments.length > 1 ? arguments[1] : void 0, t = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : Ul(); - const l = We("useDefaults"); +function Ji() { + let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, n = arguments.length > 1 ? arguments[1] : void 0, t = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : Xl(); + const l = Ge("useDefaults"); if (n = n ?? l.type.name ?? l.type.__name, !n) throw new Error("[Vuetify] Could not determine component name"); const o = v(() => { - var u; - return (u = t.value) == null ? void 0 : u[e._as ?? n]; - }), a = new Proxy(e, { get(u, s) { - var p, y, f, m; - const i = Reflect.get(u, s); - return s === "class" || s === "style" ? [(p = o.value) == null ? void 0 : p[s], i].filter((h) => h != null) : typeof s != "string" || function(h, b) { - var g, I; - return ((g = h.props) == null ? void 0 : g[b]) !== void 0 || ((I = h.props) == null ? void 0 : I[kt(b)]) !== void 0; - }(l.vnode, s) ? i : ((y = o.value) == null ? void 0 : y[s]) ?? ((m = (f = t.value) == null ? void 0 : f.global) == null ? void 0 : m[s]) ?? i; - } }), c = de(); - return it(() => { + var s; + return (s = t.value) == null ? void 0 : s[e._as ?? n]; + }), i = new Proxy(e, { get(s, u) { + var p, f, y, g; + const a = Reflect.get(s, u); + return u === "class" || u === "style" ? [(p = o.value) == null ? void 0 : p[u], a].filter((b) => b != null) : typeof u != "string" || function(b, m) { + var h, I; + return ((h = b.props) == null ? void 0 : h[m]) !== void 0 || ((I = b.props) == null ? void 0 : I[zt(m)]) !== void 0; + }(l.vnode, u) ? a : ((f = o.value) == null ? void 0 : f[u]) ?? ((g = (y = t.value) == null ? void 0 : y.global) == null ? void 0 : g[u]) ?? a; + } }), c = ve(); + return ze(() => { if (o.value) { - const u = Object.entries(o.value).filter((s) => { - let [i] = s; - return i.startsWith(i[0].toUpperCase()); + const s = Object.entries(o.value).filter((u) => { + let [a] = u; + return a.startsWith(a[0].toUpperCase()); }); - c.value = u.length ? Object.fromEntries(u) : void 0; + c.value = s.length ? Object.fromEntries(s) : void 0; } else c.value = void 0; - }), { props: a, provideSubDefaults: function() { - const u = function(s) { - let i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : We("injectSelf"); - const { provides: p } = i; - if (p && s in p) - return p[s]; - }(Xn, l); - tt(Xn, v(() => c.value ? Rt((u == null ? void 0 : u.value) ?? {}, c.value) : u == null ? void 0 : u.value)); + }), { props: i, provideSubDefaults: function() { + const s = function(u) { + let a = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : Ge("injectSelf"); + const { provides: p } = a; + if (p && u in p) + return p[u]; + }(nl, l); + ot(nl, v(() => c.value ? nn((s == null ? void 0 : s.value) ?? {}, c.value) : s == null ? void 0 : s.value)); } }; } -function bn(e) { +function Fn(e) { if (e._setup = e._setup ?? e.setup, !e.name) - return gn("The component is missing an explicit name, unable to generate default prop value"), e; + return xn("The component is missing an explicit name, unable to generate default prop value"), e; if (e._setup) { e.props = H(e.props ?? {}, e.name)(); const n = Object.keys(e.props).filter((t) => t !== "class" && t !== "style"); e.filterProps = function(t) { - return ra(t, n); + return da(t, n); }, e.props._as = String, e.setup = function(t, l) { - const o = Ul(); + const o = Xl(); if (!o.value) return e._setup(t, l); - const { props: a, provideSubDefaults: c } = Ri(t, t._as ?? e.name, o), u = e._setup(a, l); - return c(), u; + const { props: i, provideSubDefaults: c } = Ji(t, t._as ?? e.name, o), s = e._setup(i, l); + return c(), s; }; } return e; } -function ee() { +function oe() { let e = !(arguments.length > 0 && arguments[0] !== void 0) || arguments[0]; - return (n) => (e ? bn : rt)(n); + return (n) => (e ? Fn : ct)(n); } -function wn(e) { +function Tn(e) { let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "div", t = arguments.length > 2 ? arguments[2] : void 0; - return ee()({ name: t ?? ea(ta(e.replace(/__/g, "-"))), props: { tag: { type: String, default: n }, ...ye() }, setup(l, o) { - let { slots: a } = o; + return oe()({ name: t ?? oa(aa(e.replace(/__/g, "-"))), props: { tag: { type: String, default: n }, ...Se() }, setup(l, o) { + let { slots: i } = o; return () => { var c; - return ol(l.tag, { class: [e, l.class], style: l.style }, (c = a.default) == null ? void 0 : c.call(a)); + return dl(l.tag, { class: [e, l.class], style: l.style }, (c = i.default) == null ? void 0 : c.call(i)); }; } }); } -function ma(e) { +function ba(e) { if (typeof e.getRootNode != "function") { for (; e.parentNode; ) e = e.parentNode; @@ -496,67 +578,181 @@ function ma(e) { const n = e.getRootNode(); return n !== document && n.getRootNode({ composed: !0 }) !== document ? null : n; } -const Kn = "cubic-bezier(0.4, 0, 0.2, 1)"; -function We(e, n) { - const t = bi(); +const ll = "cubic-bezier(0.4, 0, 0.2, 1)"; +function Ge(e, n) { + const t = Fi(); if (!t) throw new Error(`[Vuetify] ${e} ${n || "must be called from inside a setup function"}`); return t; } -function st() { - const e = We(arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "composables").type; - return kt((e == null ? void 0 : e.aliasName) || (e == null ? void 0 : e.name)); +function yt() { + const e = Ge(arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "composables").type; + return zt((e == null ? void 0 : e.aliasName) || (e == null ? void 0 : e.name)); } -let ga = 0, Nn = /* @__PURE__ */ new WeakMap(); -function nt() { - const e = We("getUid"); - if (Nn.has(e)) - return Nn.get(e); +let Ca = 0, Jn = /* @__PURE__ */ new WeakMap(); +function ut() { + const e = Ge("getUid"); + if (Jn.has(e)) + return Jn.get(e); { - const n = ga++; - return Nn.set(e, n), n; + const n = Ca++; + return Jn.set(e, n), n; } } -function ha(e) { +function Ia(e) { let n = arguments.length > 1 && arguments[1] !== void 0 && arguments[1]; for (; e; ) { - if (n ? Ni(e) : ql(e)) + if (n ? Qi(e) : Yl(e)) return e; e = e.parentElement; } return document.scrollingElement; } -function Jn(e, n) { +function ol(e, n) { const t = []; if (n && e && !n.contains(e)) return t; - for (; e && (ql(e) && t.push(e), e !== n); ) + for (; e && (Yl(e) && t.push(e), e !== n); ) e = e.parentElement; return t; } -function ql(e) { +function Yl(e) { if (!e || e.nodeType !== Node.ELEMENT_NODE) return !1; const n = window.getComputedStyle(e); return n.overflowY === "scroll" || n.overflowY === "auto" && e.scrollHeight > e.clientHeight; } -function Ni(e) { +function Qi(e) { if (!e || e.nodeType !== Node.ELEMENT_NODE) return !1; const n = window.getComputedStyle(e); return ["scroll", "auto"].includes(n.overflowY); } -function se(e) { - We("useRender").render = e; +function ge(e) { + Ge("useRender").render = e; +} +function Jl(e) { + return ql(() => { + const n = [], t = {}; + if (e.value.background) + if (Cl(e.value.background)) { + if (t.backgroundColor = e.value.background, !e.value.text && Cl(l = e.value.background) && !/^((rgb|hsl)a?\()?var\(--/.test(l)) { + const o = Sn(e.value.background); + if (o.a == null || o.a === 1) { + const i = function(c) { + const s = Math.abs(_o(Sn(0), Sn(c))); + return Math.abs(_o(Sn(16777215), Sn(c))) > Math.min(s, 50) ? "#fff" : "#000"; + }(o); + t.color = i, t.caretColor = i; + } + } + } else + n.push(`bg-${e.value.background}`); + var l; + return e.value.text && (Cl(e.value.text) ? (t.color = e.value.text, t.caretColor = e.value.text) : n.push(`text-${e.value.text}`)), { colorClasses: n, colorStyles: t }; + }); +} +function vt(e, n) { + const t = v(() => ({ text: Mt(e) ? e.value : n ? e[n] : null })), { colorClasses: l, colorStyles: o } = Jl(t); + return { textColorClasses: l, textColorStyles: o }; +} +function rn(e, n) { + const t = v(() => ({ background: Mt(e) ? e.value : n ? e[n] : null })), { colorClasses: l, colorStyles: o } = Jl(t); + return { backgroundColorClasses: l, backgroundColorStyles: o }; } -nt.reset = () => { - ga = 0, Nn = /* @__PURE__ */ new WeakMap(); +ut.reset = () => { + Ca = 0, Jn = /* @__PURE__ */ new WeakMap(); }; -const on = H({ border: [Boolean, Number, String] }, "border"); -function an(e) { - let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : st(); +const Ae = [String, Function, Object, Array], Zi = Symbol.for("vuetify:icons"), al = H({ icon: { type: Ae }, tag: { type: String, required: !0 } }, "icon"), $o = oe()({ name: "VComponentIcon", props: al(), setup(e, n) { + let { slots: t } = n; + return () => { + const l = e.icon; + return d(e.tag, null, { default: () => { + var o; + return [e.icon ? d(l, null, null) : (o = t.default) == null ? void 0 : o.call(t)]; + } }); + }; +} }), er = Fn({ name: "VSvgIcon", inheritAttrs: !1, props: al(), setup(e, n) { + let { attrs: t } = n; + return () => d(e.tag, ee(t, { style: null }), { default: () => [d("svg", { class: "v-icon__svg", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", role: "img", "aria-hidden": "true" }, [Array.isArray(e.icon) ? e.icon.map((l) => Array.isArray(l) ? d("path", { d: l[0], "fill-opacity": l[1] }, null) : d("path", { d: l }, null)) : d("path", { d: e.icon }, null)])] }); +} }); +Fn({ name: "VLigatureIcon", props: al(), setup: (e) => () => d(e.tag, null, { default: () => [e.icon] }) }), Fn({ name: "VClassIcon", props: al(), setup: (e) => () => d(e.tag, { class: e.icon }, null) }); +const tr = ["x-small", "small", "default", "large", "x-large"], En = H({ size: { type: [String, Number], default: "default" } }, "size"); +function zn(e) { + let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : yt(); + return ql(() => { + let t, l; + return el(tr, e.size) ? t = `${n}--size-${e.size}` : e.size && (l = { width: ce(e.size), height: ce(e.size) }), { sizeClasses: t, sizeStyles: l }; + }); +} +const nt = H({ tag: { type: String, default: "div" } }, "tag"), To = Symbol.for("vuetify:theme"), He = H({ theme: String }, "theme"); +function Ze(e) { + Ge("provideTheme"); + const n = Ie(To, null); + if (!n) + throw new Error("Could not find Vuetify theme injection"); + const t = v(() => e.theme ?? n.name.value), l = v(() => n.themes.value[t.value]), o = v(() => n.isDisabled ? void 0 : `v-theme--${t.value}`), i = { ...n, name: t, current: l, themeClasses: o }; + return ot(To, i), i; +} +const nr = H({ color: String, start: Boolean, end: Boolean, icon: Ae, ...Se(), ...En(), ...nt({ tag: "i" }), ...He() }, "VIcon"), Ve = oe()({ name: "VIcon", props: nr(), setup(e, n) { + let { attrs: t, slots: l } = n; + const o = W(), { themeClasses: i } = Ze(e), { iconData: c } = ((p) => { + const f = Ie(Zi); + if (!f) + throw new Error("Missing Vuetify Icons provide!"); + return { iconData: v(() => { + var h; + const y = r(p); + if (!y) + return { component: $o }; + let g = y; + if (typeof g == "string" && (g = g.trim(), g.startsWith("$") && (g = (h = f.aliases) == null ? void 0 : h[g.slice(1)])), !g) + throw new Error(`Could not find aliased icon "${y}"`); + if (Array.isArray(g)) + return { component: er, icon: g }; + if (typeof g != "string") + return { component: $o, icon: g }; + const b = Object.keys(f.sets).find((I) => typeof g == "string" && g.startsWith(`${I}:`)), m = b ? g.slice(b.length + 1) : g; + return { component: f.sets[b ?? f.defaultSet].component, icon: m }; + }) }; + })(v(() => o.value || e.icon)), { sizeClasses: s } = zn(e), { textColorClasses: u, textColorStyles: a } = vt(ue(e, "color")); + return ge(() => { + var f, y; + const p = (f = l.default) == null ? void 0 : f.call(l); + return p && (o.value = (y = va(p).filter((g) => g.type === Ai && g.children && typeof g.children == "string")[0]) == null ? void 0 : y.children), d(c.value.component, { tag: e.tag, icon: c.value.icon, class: ["v-icon", "notranslate", i.value, s.value, u.value, { "v-icon--clickable": !!t.onClick, "v-icon--start": e.start, "v-icon--end": e.end }, e.class], style: [s.value ? void 0 : { fontSize: ce(e.size), height: ce(e.size), width: ce(e.size) }, a.value, e.style], role: t.onClick ? "button" : void 0, "aria-hidden": !t.onClick }, { default: () => [p] }); + }), {}; +} }), Dn = ct({ __name: "DisplayedValue", props: { color: {}, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayValue: {}, empty: { type: Boolean }, error: { type: Boolean }, field: {}, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, emits: ["toggleField"], setup(e, { emit: n }) { + const t = gt(), l = n, o = e, i = At(), c = Nl(), s = Qe({ ...t, ...o }); + ze(() => { + Object.assign(s, { ...t, ...o }); + }); + const u = { displayValue: o.displayValue, empty: o.empty, error: o.error }, a = v(() => jl(o.field, o.valueColor, { empty: o.empty, error: o.error })), p = v(() => Gl({ color: o.color, error: o.error, theme: c, underlineColor: o.underlineColor, underlineStyle: o.underlineStyle, underlineWidth: o.underlineWidth, underlined: o.underlined })), f = v(() => ((b) => { + const { underlineWidth: m } = b; + return { borderBottom: `${m || "0px"} solid transparent` }; + })({ underlineWidth: o.underlineWidth })), y = (b, m = !1) => ((h) => { + const { inner: I = !1, position: F } = h; + return { [`${me}--display-icon`]: !I, [`${me}--display-${F}-icon`]: !I, [`${me}--display-${F}-inner-icon`]: I, "me-1": F === "prepend", "ms-1": F === "append" }; + })({ inner: m, position: b }); + function g() { + l("toggleField"); + } + return (b, m) => (Z(), fe("div", { class: "v-inline-fields--display-wrapper", onClick: g }, [b.displayPrependIcon || r(i)["display.prepend"] ? (Z(), fe("div", { key: 0, class: le(y("prepend")), style: We(r(f)) }, [r(i)["display.prepend"] ? Ue(b.$slots, "display.prepend", $e(ee({ key: 0 }, u))) : (Z(), Me(Ve, { key: 1, color: r(s).displayPrependIconColor, icon: r(s).displayPrependIcon, size: r(s).displayPrependIconSize }, null, 8, ["color", "icon", "size"]))], 6)) : Fe("", !0), je("div", { class: le(["d-inline-flex", r(a)]), style: We(r(p)) }, [b.displayPrependInnerIcon || r(i)["display.prependInner"] ? (Z(), fe("div", { key: 0, class: le(y("prepend", !0)) }, [r(i)["display.prependInner"] ? Ue(b.$slots, "display.prependInner", $e(ee({ key: 0 }, u))) : (Z(), Me(Ve, { key: 1, color: r(s).displayPrependInnerIconColor, icon: r(s).displayPrependInnerIcon, size: r(s).displayPrependInnerIconSize }, null, 8, ["color", "icon", "size"]))], 2)) : Fe("", !0), Ll(" " + Wl(b.displayValue) + " ", 1), b.displayAppendInnerIcon || r(i)["display.appendInner"] ? (Z(), fe("div", { key: 1, class: le(y("append", !0)) }, [r(i)["display.appendInner"] ? Ue(b.$slots, "display.appendInner", $e(ee({ key: 0 }, u))) : (Z(), Me(Ve, { key: 1, color: r(s).displayAppendInnerIconColor, icon: r(s).displayAppendInnerIcon, size: r(s).displayAppendInnerIconSize }, null, 8, ["color", "icon", "size"]))], 2)) : Fe("", !0)], 6), b.displayAppendIcon || r(i)["display.append"] ? (Z(), fe("div", { key: 1, class: le(y("append")), style: We(r(f)) }, [r(i)["display.append"] ? Ue(b.$slots, "display.append", $e(ee({ key: 0 }, u))) : (Z(), Me(Ve, { key: 1, color: r(s).displayAppendIconColor, icon: r(s).displayAppendIcon, size: r(s).displayAppendIconSize }, null, 8, ["color", "icon", "size"]))], 6)) : Fe("", !0)])); +} }), lr = { fa: { checkboxFalse: "$checkboxOff", checkboxTrue: "far fa-square-check", clear: "$clear", false: "$close", loading: "fa-circle-notch", save: "fa-floppy-disk", true: "$complete" }, mdi: { checkboxFalse: "$checkboxOff", checkboxTrue: "mdi:mdi-checkbox-outline", clear: "$clear", false: "$close", loading: "mdi-loading", save: "mdi-content-save", true: "$complete" } }, it = (e) => { + const { icon: n, iconOptions: t, name: l } = e; + if (n) + return n; + const o = lr[t == null ? void 0 : t.defaultSet]; + if (!o) + throw new Error(`[VInlineFields]: No default ${t == null ? void 0 : t.defaultSet} icon set found.`); + const i = o[l]; + if (!i) + throw new Error(`[VInlineFields]: No ${l} icon found.`); + return i; +}, yn = H({ border: [Boolean, Number, String] }, "border"); +function mn(e) { + let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : yt(); return { borderClasses: v(() => { - const t = _t(e) ? e.value : e.border, l = []; + const t = Mt(e) ? e.value : e.border, l = []; if (t === !0 || t === "") l.push(`${n}--border`); else if (typeof t == "string" || t === 0) @@ -565,26 +761,26 @@ function an(e) { return l; }) }; } -const ji = [null, "default", "comfortable", "compact"], ut = H({ density: { type: String, default: "default", validator: (e) => ji.includes(e) } }, "density"); -function gt(e) { - let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : st(); +const or = [null, "default", "comfortable", "compact"], mt = H({ density: { type: String, default: "default", validator: (e) => or.includes(e) } }, "density"); +function bt(e) { + let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : yt(); return { densityClasses: v(() => `${n}--density-${e.density}`) }; } -const rn = H({ elevation: { type: [Number, String], validator(e) { +const gn = H({ elevation: { type: [Number, String], validator(e) { const n = parseInt(e); return !isNaN(n) && n >= 0 && n <= 24; } } }, "elevation"); -function sn(e) { +function hn(e) { return { elevationClasses: v(() => { - const n = _t(e) ? e.value : e.elevation, t = []; + const n = Mt(e) ? e.value : e.elevation, t = []; return n == null || t.push(`elevation-${n}`), t; }) }; } -const ht = H({ rounded: { type: [Boolean, Number, String], default: void 0 } }, "rounded"); -function bt(e) { - let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : st(); +const Ct = H({ rounded: { type: [Boolean, Number, String], default: void 0 } }, "rounded"); +function It(e) { + let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : yt(); return { roundedClasses: v(() => { - const t = _t(e) ? e.value : e.rounded, l = []; + const t = Mt(e) ? e.value : e.rounded, l = []; if (t === !0 || t === "") l.push(`${n}--rounded`); else if (typeof t == "string" || t === 0) @@ -593,414 +789,327 @@ function bt(e) { return l; }) }; } -const et = H({ tag: { type: String, default: "div" } }, "tag"), Fo = Symbol.for("vuetify:theme"), Ne = H({ theme: String }, "theme"); -function Xe(e) { - We("provideTheme"); - const n = me(Fo, null); - if (!n) - throw new Error("Could not find Vuetify theme injection"); - const t = v(() => e.theme ?? n.name.value), l = v(() => n.themes.value[t.value]), o = v(() => n.isDisabled ? void 0 : `v-theme--${t.value}`), a = { ...n, name: t, current: l, themeClasses: o }; - return tt(Fo, a), a; -} -function Hl(e) { - return jl(() => { - const n = [], t = {}; - if (e.value.background) - if (ml(e.value.background)) { - if (t.backgroundColor = e.value.background, !e.value.text && ml(l = e.value.background) && !/^((rgb|hsl)a?\()?var\(--/.test(l)) { - const o = fn(e.value.background); - if (o.a == null || o.a === 1) { - const a = function(c) { - const u = Math.abs(xo(fn(0), fn(c))); - return Math.abs(xo(fn(16777215), fn(c))) > Math.min(u, 50) ? "#fff" : "#000"; - }(o); - t.color = a, t.caretColor = a; - } - } - } else - n.push(`bg-${e.value.background}`); - var l; - return e.value.text && (ml(e.value.text) ? (t.color = e.value.text, t.caretColor = e.value.text) : n.push(`text-${e.value.text}`)), { colorClasses: n, colorStyles: t }; - }); -} -function ft(e, n) { - const t = v(() => ({ text: _t(e) ? e.value : n ? e[n] : null })), { colorClasses: l, colorStyles: o } = Hl(t); - return { textColorClasses: l, textColorStyles: o }; -} -function Gt(e, n) { - const t = v(() => ({ background: _t(e) ? e.value : n ? e[n] : null })), { colorClasses: l, colorStyles: o } = Hl(t); - return { backgroundColorClasses: l, backgroundColorStyles: o }; -} -const Gi = ["elevated", "flat", "tonal", "outlined", "text", "plain"]; -function Fn(e, n) { - return d(Fe, null, [e && d("span", { key: "overlay", class: `${n}__overlay` }, null), d("span", { key: "underlay", class: `${n}__underlay` }, null)]); +const ar = ["elevated", "flat", "tonal", "outlined", "text", "plain"]; +function Ln(e, n) { + return d(we, null, [e && d("span", { key: "overlay", class: `${n}__overlay` }, null), d("span", { key: "underlay", class: `${n}__underlay` }, null)]); } -const xt = H({ color: String, variant: { type: String, default: "elevated", validator: (e) => Gi.includes(e) } }, "variant"); -function An(e) { - let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : st(); +const Pt = H({ color: String, variant: { type: String, default: "elevated", validator: (e) => ar.includes(e) } }, "variant"); +function Wn(e) { + let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : yt(); const t = v(() => { - const { variant: a } = r(e); - return `${n}--variant-${a}`; - }), { colorClasses: l, colorStyles: o } = Hl(v(() => { - const { variant: a, color: c } = r(e); - return { [["elevated", "flat"].includes(a) ? "background" : "text"]: c }; + const { variant: i } = r(e); + return `${n}--variant-${i}`; + }), { colorClasses: l, colorStyles: o } = Jl(v(() => { + const { variant: i, color: c } = r(e); + return { [["elevated", "flat"].includes(i) ? "background" : "text"]: c }; })); return { colorClasses: l, colorStyles: o, variantClasses: t }; } -const ba = H({ divided: Boolean, ...on(), ...ye(), ...ut(), ...rn(), ...ht(), ...et(), ...Ne(), ...xt() }, "VBtnGroup"), Ao = ee()({ name: "VBtnGroup", props: ba(), setup(e, n) { +const Sa = H({ divided: Boolean, ...yn(), ...Se(), ...mt(), ...gn(), ...Ct(), ...nt(), ...He(), ...Pt() }, "VBtnGroup"), Eo = oe()({ name: "VBtnGroup", props: Sa(), setup(e, n) { let { slots: t } = n; - const { themeClasses: l } = Xe(e), { densityClasses: o } = gt(e), { borderClasses: a } = an(e), { elevationClasses: c } = sn(e), { roundedClasses: u } = bt(e); - ln({ VBtn: { height: "auto", color: ae(e, "color"), density: ae(e, "density"), flat: !0, variant: ae(e, "variant") } }), se(() => d(e.tag, { class: ["v-btn-group", { "v-btn-group--divided": e.divided }, l.value, a.value, o.value, c.value, u.value, e.class], style: e.style }, t)); + const { themeClasses: l } = Ze(e), { densityClasses: o } = bt(e), { borderClasses: i } = mn(e), { elevationClasses: c } = hn(e), { roundedClasses: s } = It(e); + fn({ VBtn: { height: "auto", color: ue(e, "color"), density: ue(e, "density"), flat: !0, variant: ue(e, "variant") } }), ge(() => d(e.tag, { class: ["v-btn-group", { "v-btn-group--divided": e.divided }, l.value, i.value, o.value, c.value, s.value, e.class], style: e.style }, t)); } }); -function Ft(e, n) { +function Lt(e, n) { let t; function l() { - t = zl(), t.run(() => n.length ? n(() => { + t = Ml(), t.run(() => n.length ? n(() => { t == null || t.stop(), l(); }) : n()); } - J(e, (o) => { + Y(e, (o) => { o && !t ? l() : o || (t == null || t.stop(), t = void 0); - }, { immediate: !0 }), He(() => { + }, { immediate: !0 }), Je(() => { t == null || t.stop(); }); } -function $e(e, n, t) { +function Te(e, n, t) { let l = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : (p) => p, o = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : (p) => p; - const a = We("useProxiedModel"), c = D(e[n] !== void 0 ? e[n] : t), u = kt(n), s = v(u !== n ? () => { - var p, y, f, m; - return e[n], !(!((p = a.vnode.props) != null && p.hasOwnProperty(n)) && !((y = a.vnode.props) != null && y.hasOwnProperty(u)) || !((f = a.vnode.props) != null && f.hasOwnProperty(`onUpdate:${n}`)) && !((m = a.vnode.props) != null && m.hasOwnProperty(`onUpdate:${u}`))); + const i = Ge("useProxiedModel"), c = W(e[n] !== void 0 ? e[n] : t), s = zt(n), u = v(s !== n ? () => { + var p, f, y, g; + return e[n], !(!((p = i.vnode.props) != null && p.hasOwnProperty(n)) && !((f = i.vnode.props) != null && f.hasOwnProperty(s)) || !((y = i.vnode.props) != null && y.hasOwnProperty(`onUpdate:${n}`)) && !((g = i.vnode.props) != null && g.hasOwnProperty(`onUpdate:${s}`))); } : () => { - var p, y; - return e[n], !(!((p = a.vnode.props) != null && p.hasOwnProperty(n)) || !((y = a.vnode.props) != null && y.hasOwnProperty(`onUpdate:${n}`))); + var p, f; + return e[n], !(!((p = i.vnode.props) != null && p.hasOwnProperty(n)) || !((f = i.vnode.props) != null && f.hasOwnProperty(`onUpdate:${n}`))); }); - Ft(() => !s.value, () => { - J(() => e[n], (p) => { + Lt(() => !u.value, () => { + Y(() => e[n], (p) => { c.value = p; }); }); - const i = v({ get() { + const a = v({ get() { const p = e[n]; - return l(s.value ? p : c.value); + return l(u.value ? p : c.value); }, set(p) { - const y = o(p), f = It(s.value ? e[n] : c.value); - f !== y && l(f) !== p && (c.value = y, a == null || a.emit(`update:${n}`, y)); + const f = o(p), y = Bt(u.value ? e[n] : c.value); + y !== f && l(y) !== p && (c.value = f, i == null || i.emit(`update:${n}`, f)); } }); - return Object.defineProperty(i, "externalValue", { get: () => s.value ? e[n] : c.value }), i; + return Object.defineProperty(a, "externalValue", { get: () => u.value ? e[n] : c.value }), a; } -const Ca = H({ modelValue: { type: null, default: void 0 }, multiple: Boolean, mandatory: [Boolean, String], max: Number, selectedClass: String, disabled: Boolean }, "group"), Ia = H({ value: null, disabled: Boolean, selectedClass: String }, "group-item"); -function Sa(e, n) { +const Ba = H({ modelValue: { type: null, default: void 0 }, multiple: Boolean, mandatory: [Boolean, String], max: Number, selectedClass: String, disabled: Boolean }, "group"), xa = H({ value: null, disabled: Boolean, selectedClass: String }, "group-item"); +function ka(e, n) { let t = !(arguments.length > 2 && arguments[2] !== void 0) || arguments[2]; - const l = We("useGroupItem"); + const l = Ge("useGroupItem"); if (!l) throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function"); - const o = nt(); - tt(Symbol.for(`${n.description}:id`), o); - const a = me(n, null); - if (!a) { + const o = ut(); + ot(Symbol.for(`${n.description}:id`), o); + const i = Ie(n, null); + if (!i) { if (!t) - return a; + return i; throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${n.description}`); } - const c = ae(e, "value"), u = v(() => !(!a.disabled.value && !e.disabled)); - a.register({ id: o, value: c, disabled: u }, l), yt(() => { - a.unregister(o); + const c = ue(e, "value"), s = v(() => !(!i.disabled.value && !e.disabled)); + i.register({ id: o, value: c, disabled: s }, l), ft(() => { + i.unregister(o); }); - const s = v(() => a.isSelected(o)), i = v(() => s.value && [a.selectedClass.value, e.selectedClass]); - return J(s, (p) => { + const u = v(() => i.isSelected(o)), a = v(() => u.value && [i.selectedClass.value, e.selectedClass]); + return Y(u, (p) => { l.emit("group:selected", { value: p }); - }), { id: o, isSelected: s, toggle: () => a.select(o, !s.value), select: (p) => a.select(o, p), selectedClass: i, value: c, disabled: u, group: a }; + }), { id: o, isSelected: u, toggle: () => i.select(o, !u.value), select: (p) => i.select(o, p), selectedClass: a, value: c, disabled: s, group: i }; } -function Ba(e, n) { +function wa(e, n) { let t = !1; - const l = lt([]), o = $e(e, "modelValue", [], (i) => i == null ? [] : Vo(l, dt(i)), (i) => { - const p = function(y, f) { - const m = []; - return f.forEach((h) => { - const b = y.findIndex((g) => g.id === h); - if (~b) { - const g = y[b]; - m.push(g.value != null ? g.value : b); + const l = Qe([]), o = Te(e, "modelValue", [], (a) => a == null ? [] : zo(l, lt(a)), (a) => { + const p = function(f, y) { + const g = []; + return y.forEach((b) => { + const m = f.findIndex((h) => h.id === b); + if (~m) { + const h = f[m]; + g.push(h.value != null ? h.value : m); } - }), m; - }(l, i); + }), g; + }(l, a); return e.multiple ? p : p[0]; - }), a = We("useGroup"); + }), i = Ge("useGroup"); function c() { - const i = l.find((p) => !p.disabled); - i && e.mandatory === "force" && !o.value.length && (o.value = [i.id]); - } - function u(i) { - if (e.multiple && gn('This method is not supported when using "multiple" prop'), o.value.length) { - const p = o.value[0], y = l.findIndex((h) => h.id === p); - let f = (y + i) % l.length, m = l[f]; - for (; m.disabled && f !== y; ) - f = (f + i) % l.length, m = l[f]; - if (m.disabled) + const a = l.find((p) => !p.disabled); + a && e.mandatory === "force" && !o.value.length && (o.value = [a.id]); + } + function s(a) { + if (e.multiple && xn('This method is not supported when using "multiple" prop'), o.value.length) { + const p = o.value[0], f = l.findIndex((b) => b.id === p); + let y = (f + a) % l.length, g = l[y]; + for (; g.disabled && y !== f; ) + y = (y + a) % l.length, g = l[y]; + if (g.disabled) return; - o.value = [l[f].id]; + o.value = [l[y].id]; } else { - const p = l.find((y) => !y.disabled); + const p = l.find((f) => !f.disabled); p && (o.value = [p.id]); } } - qt(() => { + un(() => { c(); - }), yt(() => { + }), ft(() => { t = !0; }); - const s = { register: function(i, p) { - const y = i, f = Rn(Symbol.for(`${n.description}:id`), a == null ? void 0 : a.vnode).indexOf(p); - f > -1 ? l.splice(f, 0, y) : l.push(y); - }, unregister: function(i) { + const u = { register: function(a, p) { + const f = a, y = Yn(Symbol.for(`${n.description}:id`), i == null ? void 0 : i.vnode).indexOf(p); + y > -1 ? l.splice(y, 0, f) : l.push(f); + }, unregister: function(a) { if (t) return; c(); - const p = l.findIndex((y) => y.id === i); + const p = l.findIndex((f) => f.id === a); l.splice(p, 1); - }, selected: o, select: function(i, p) { - const y = l.find((f) => f.id === i); - if (!p || !(y != null && y.disabled)) + }, selected: o, select: function(a, p) { + const f = l.find((y) => y.id === a); + if (!p || !(f != null && f.disabled)) if (e.multiple) { - const f = o.value.slice(), m = f.findIndex((b) => b === i), h = ~m; - if (p = p ?? !h, h && e.mandatory && f.length <= 1 || !h && e.max != null && f.length + 1 > e.max) + const y = o.value.slice(), g = y.findIndex((m) => m === a), b = ~g; + if (p = p ?? !b, b && e.mandatory && y.length <= 1 || !b && e.max != null && y.length + 1 > e.max) return; - m < 0 && p ? f.push(i) : m >= 0 && !p && f.splice(m, 1), o.value = f; + g < 0 && p ? y.push(a) : g >= 0 && !p && y.splice(g, 1), o.value = y; } else { - const f = o.value.includes(i); - if (e.mandatory && f) + const y = o.value.includes(a); + if (e.mandatory && y) return; - o.value = p ?? !f ? [i] : []; + o.value = p ?? !y ? [a] : []; } - }, disabled: ae(e, "disabled"), prev: () => u(l.length - 1), next: () => u(1), isSelected: (i) => o.value.includes(i), selectedClass: v(() => e.selectedClass), items: v(() => l), getItemIndex: (i) => function(p, y) { - const f = Vo(p, [y]); - return f.length ? p.findIndex((m) => m.id === f[0]) : -1; - }(l, i) }; - return tt(n, s), s; + }, disabled: ue(e, "disabled"), prev: () => s(l.length - 1), next: () => s(1), isSelected: (a) => o.value.includes(a), selectedClass: v(() => e.selectedClass), items: v(() => l), getItemIndex: (a) => function(p, f) { + const y = zo(p, [f]); + return y.length ? p.findIndex((g) => g.id === y[0]) : -1; + }(l, a) }; + return ot(n, u), u; } -function Vo(e, n) { +function zo(e, n) { const t = []; return n.forEach((l) => { - const o = e.find((c) => nn(l, c.value)), a = e[l]; - (o == null ? void 0 : o.value) != null ? t.push(o.id) : a != null && t.push(a.id); + const o = e.find((c) => vn(l, c.value)), i = e[l]; + (o == null ? void 0 : o.value) != null ? t.push(o.id) : i != null && t.push(i.id); }), t; } -const xa = Symbol.for("vuetify:v-btn-toggle"), Ui = H({ ...ba(), ...Ca() }, "VBtnToggle"); -ee()({ name: "VBtnToggle", props: Ui(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { +const Fa = Symbol.for("vuetify:v-btn-toggle"), ir = H({ ...Sa(), ...Ba() }, "VBtnToggle"); +oe()({ name: "VBtnToggle", props: ir(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { let { slots: t } = n; - const { isSelected: l, next: o, prev: a, select: c, selected: u } = Ba(e, xa); - return se(() => { - const s = Ao.filterProps(e); - return d(Ao, Q({ class: ["v-btn-toggle", e.class] }, s, { style: e.style }), { default: () => { - var i; - return [(i = t.default) == null ? void 0 : i.call(t, { isSelected: l, next: o, prev: a, select: c, selected: u })]; + const { isSelected: l, next: o, prev: i, select: c, selected: s } = wa(e, Fa); + return ge(() => { + const u = Eo.filterProps(e); + return d(Eo, ee({ class: ["v-btn-toggle", e.class] }, u, { style: e.style }), { default: () => { + var a; + return [(a = t.default) == null ? void 0 : a.call(t, { isSelected: l, next: o, prev: i, select: c, selected: s })]; } }); - }), { next: o, prev: a, select: c }; + }), { next: o, prev: i, select: c }; } }); -const qi = H({ defaults: Object, disabled: Boolean, reset: [Number, String], root: [Boolean, String], scoped: Boolean }, "VDefaultsProvider"), je = ee(!1)({ name: "VDefaultsProvider", props: qi(), setup(e, n) { - let { slots: t } = n; - const { defaults: l, disabled: o, reset: a, root: c, scoped: u } = Bt(e); - return ln(l, { reset: a, root: c, scoped: u, disabled: o }), () => { - var s; - return (s = t.default) == null ? void 0 : s.call(t); - }; -} }), Ce = [String, Function, Object, Array], Hi = Symbol.for("vuetify:icons"), Zn = H({ icon: { type: Ce }, tag: { type: String, required: !0 } }, "icon"), _o = ee()({ name: "VComponentIcon", props: Zn(), setup(e, n) { +const rr = H({ defaults: Object, disabled: Boolean, reset: [Number, String], root: [Boolean, String], scoped: Boolean }, "VDefaultsProvider"), qe = oe(!1)({ name: "VDefaultsProvider", props: rr(), setup(e, n) { let { slots: t } = n; - return () => { - const l = e.icon; - return d(e.tag, null, { default: () => { - var o; - return [e.icon ? d(l, null, null) : (o = t.default) == null ? void 0 : o.call(t)]; - } }); + const { defaults: l, disabled: o, reset: i, root: c, scoped: s } = Ft(e); + return fn(l, { reset: i, root: c, scoped: s, disabled: o }), () => { + var u; + return (u = t.default) == null ? void 0 : u.call(t); }; -} }), Yi = bn({ name: "VSvgIcon", inheritAttrs: !1, props: Zn(), setup(e, n) { - let { attrs: t } = n; - return () => d(e.tag, Q(t, { style: null }), { default: () => [d("svg", { class: "v-icon__svg", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", role: "img", "aria-hidden": "true" }, [Array.isArray(e.icon) ? e.icon.map((l) => Array.isArray(l) ? d("path", { d: l[0], "fill-opacity": l[1] }, null) : d("path", { d: l }, null)) : d("path", { d: e.icon }, null)])] }); -} }); -bn({ name: "VLigatureIcon", props: Zn(), setup: (e) => () => d(e.tag, null, { default: () => [e.icon] }) }), bn({ name: "VClassIcon", props: Zn(), setup: (e) => () => d(e.tag, { class: e.icon }, null) }); -const Xi = ["x-small", "small", "default", "large", "x-large"], Vn = H({ size: { type: [String, Number], default: "default" } }, "size"); -function _n(e) { - let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : st(); - return jl(() => { - let t, l; - return qn(Xi, e.size) ? t = `${n}--size-${e.size}` : e.size && (l = { width: ie(e.size), height: ie(e.size) }), { sizeClasses: t, sizeStyles: l }; - }); -} -const Ki = H({ color: String, start: Boolean, end: Boolean, icon: Ce, ...ye(), ...Vn(), ...et({ tag: "i" }), ...Ne() }, "VIcon"), Se = ee()({ name: "VIcon", props: Ki(), setup(e, n) { - let { attrs: t, slots: l } = n; - const o = D(), { themeClasses: a } = Xe(e), { iconData: c } = ((p) => { - const y = me(Hi); - if (!y) - throw new Error("Missing Vuetify Icons provide!"); - return { iconData: v(() => { - var g; - const f = r(p); - if (!f) - return { component: _o }; - let m = f; - if (typeof m == "string" && (m = m.trim(), m.startsWith("$") && (m = (g = y.aliases) == null ? void 0 : g[m.slice(1)])), !m) - throw new Error(`Could not find aliased icon "${f}"`); - if (Array.isArray(m)) - return { component: Yi, icon: m }; - if (typeof m != "string") - return { component: _o, icon: m }; - const h = Object.keys(y.sets).find((I) => typeof m == "string" && m.startsWith(`${I}:`)), b = h ? m.slice(h.length + 1) : m; - return { component: y.sets[h ?? y.defaultSet].component, icon: b }; - }) }; - })(v(() => o.value || e.icon)), { sizeClasses: u } = _n(e), { textColorClasses: s, textColorStyles: i } = ft(ae(e, "color")); - return se(() => { - var y, f; - const p = (y = l.default) == null ? void 0 : y.call(l); - return p && (o.value = (f = ua(p).filter((m) => m.type === Ci && m.children && typeof m.children == "string")[0]) == null ? void 0 : f.children), d(c.value.component, { tag: e.tag, icon: c.value.icon, class: ["v-icon", "notranslate", a.value, u.value, s.value, { "v-icon--clickable": !!t.onClick, "v-icon--start": e.start, "v-icon--end": e.end }, e.class], style: [u.value ? void 0 : { fontSize: ie(e.size), height: ie(e.size), width: ie(e.size) }, i.value, e.style], role: t.onClick ? "button" : void 0, "aria-hidden": !t.onClick }, { default: () => [p] }); - }), {}; } }); -function ka(e, n) { - const t = D(), l = de(!1); - if (Nl) { - const o = new IntersectionObserver((a) => { - e == null || e(a, o), l.value = !!a.find((c) => c.isIntersecting); +function Aa(e, n) { + const t = W(), l = ve(!1); + if (Ul) { + const o = new IntersectionObserver((i) => { + e == null || e(i, o), l.value = !!i.find((c) => c.isIntersecting); }, n); - yt(() => { + ft(() => { o.disconnect(); - }), J(t, (a, c) => { - c && (o.unobserve(c), l.value = !1), a && o.observe(a); + }), Y(t, (i, c) => { + c && (o.unobserve(c), l.value = !1), i && o.observe(i); }, { flush: "post" }); } return { intersectionRef: t, isIntersecting: l }; } -function Yl(e) { +function Ql(e) { let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "content"; - const t = D(), l = D(); + const t = W(), l = W(); if (Ke) { - const o = new ResizeObserver((a) => { - e == null || e(a, o), a.length && (l.value = n === "content" ? a[0].contentRect : a[0].target.getBoundingClientRect()); + const o = new ResizeObserver((i) => { + e == null || e(i, o), i.length && (l.value = n === "content" ? i[0].contentRect : i[0].target.getBoundingClientRect()); }); - yt(() => { + ft(() => { o.disconnect(); - }), J(t, (a, c) => { - c && (o.unobserve(Un(c)), l.value = void 0), a && o.observe(Un(a)); + }), Y(t, (i, c) => { + c && (o.unobserve(Zn(c)), l.value = void 0), i && o.observe(Zn(i)); }, { flush: "post" }); } - return { resizeRef: t, contentRect: Dl(l) }; + return { resizeRef: t, contentRect: Rl(l) }; } -const Ji = H({ bgColor: String, color: String, indeterminate: [Boolean, String], modelValue: { type: [Number, String], default: 0 }, rotate: { type: [Number, String], default: 0 }, width: { type: [Number, String], default: 4 }, ...ye(), ...Vn(), ...et({ tag: "div" }), ...Ne() }, "VProgressCircular"), wa = ee()({ name: "VProgressCircular", props: Ji(), setup(e, n) { +const sr = H({ bgColor: String, color: String, indeterminate: [Boolean, String], modelValue: { type: [Number, String], default: 0 }, rotate: { type: [Number, String], default: 0 }, width: { type: [Number, String], default: 4 }, ...Se(), ...En(), ...nt({ tag: "div" }), ...He() }, "VProgressCircular"), Va = oe()({ name: "VProgressCircular", props: sr(), setup(e, n) { let { slots: t } = n; - const l = 2 * Math.PI * 20, o = D(), { themeClasses: a } = Xe(e), { sizeClasses: c, sizeStyles: u } = _n(e), { textColorClasses: s, textColorStyles: i } = ft(ae(e, "color")), { textColorClasses: p, textColorStyles: y } = ft(ae(e, "bgColor")), { intersectionRef: f, isIntersecting: m } = ka(), { resizeRef: h, contentRect: b } = Yl(), g = v(() => Math.max(0, Math.min(100, parseFloat(e.modelValue)))), I = v(() => Number(e.width)), k = v(() => u.value ? Number(e.size) : b.value ? b.value.width : Math.max(I.value, 32)), F = v(() => 20 / (1 - I.value / k.value) * 2), U = v(() => I.value / k.value * F.value), $ = v(() => ie((100 - g.value) / 100 * l)); - return it(() => { - f.value = o.value, h.value = o.value; - }), se(() => d(e.tag, { ref: o, class: ["v-progress-circular", { "v-progress-circular--indeterminate": !!e.indeterminate, "v-progress-circular--visible": m.value, "v-progress-circular--disable-shrink": e.indeterminate === "disable-shrink" }, a.value, c.value, s.value, e.class], style: [u.value, i.value, e.style], role: "progressbar", "aria-valuemin": "0", "aria-valuemax": "100", "aria-valuenow": e.indeterminate ? void 0 : g.value }, { default: () => [d("svg", { style: { transform: `rotate(calc(-90deg + ${Number(e.rotate)}deg))` }, xmlns: "http://www.w3.org/2000/svg", viewBox: `0 0 ${F.value} ${F.value}` }, [d("circle", { class: ["v-progress-circular__underlay", p.value], style: y.value, fill: "transparent", cx: "50%", cy: "50%", r: 20, "stroke-width": U.value, "stroke-dasharray": l, "stroke-dashoffset": 0 }, null), d("circle", { class: "v-progress-circular__overlay", fill: "transparent", cx: "50%", cy: "50%", r: 20, "stroke-width": U.value, "stroke-dasharray": l, "stroke-dashoffset": $.value }, null)]), t.default && d("div", { class: "v-progress-circular__content" }, [t.default({ value: g.value })])] })), {}; -} }), zt = H({ height: [Number, String], maxHeight: [Number, String], maxWidth: [Number, String], minHeight: [Number, String], minWidth: [Number, String], width: [Number, String] }, "dimension"); -function Dt(e) { - return { dimensionStyles: v(() => ({ height: ie(e.height), maxHeight: ie(e.maxHeight), maxWidth: ie(e.maxWidth), minHeight: ie(e.minHeight), minWidth: ie(e.minWidth), width: ie(e.width) })) }; -} -const Fa = Symbol.for("vuetify:locale"); -function Xl() { - const e = me(Fa); + const l = 2 * Math.PI * 20, o = W(), { themeClasses: i } = Ze(e), { sizeClasses: c, sizeStyles: s } = zn(e), { textColorClasses: u, textColorStyles: a } = vt(ue(e, "color")), { textColorClasses: p, textColorStyles: f } = vt(ue(e, "bgColor")), { intersectionRef: y, isIntersecting: g } = Aa(), { resizeRef: b, contentRect: m } = Ql(), h = v(() => Math.max(0, Math.min(100, parseFloat(e.modelValue)))), I = v(() => Number(e.width)), F = v(() => s.value ? Number(e.size) : m.value ? m.value.width : Math.max(I.value, 32)), V = v(() => 20 / (1 - I.value / F.value) * 2), N = v(() => I.value / F.value * V.value), w = v(() => ce((100 - h.value) / 100 * l)); + return ze(() => { + y.value = o.value, b.value = o.value; + }), ge(() => d(e.tag, { ref: o, class: ["v-progress-circular", { "v-progress-circular--indeterminate": !!e.indeterminate, "v-progress-circular--visible": g.value, "v-progress-circular--disable-shrink": e.indeterminate === "disable-shrink" }, i.value, c.value, u.value, e.class], style: [s.value, a.value, e.style], role: "progressbar", "aria-valuemin": "0", "aria-valuemax": "100", "aria-valuenow": e.indeterminate ? void 0 : h.value }, { default: () => [d("svg", { style: { transform: `rotate(calc(-90deg + ${Number(e.rotate)}deg))` }, xmlns: "http://www.w3.org/2000/svg", viewBox: `0 0 ${V.value} ${V.value}` }, [d("circle", { class: ["v-progress-circular__underlay", p.value], style: f.value, fill: "transparent", cx: "50%", cy: "50%", r: 20, "stroke-width": N.value, "stroke-dasharray": l, "stroke-dashoffset": 0 }, null), d("circle", { class: "v-progress-circular__overlay", fill: "transparent", cx: "50%", cy: "50%", r: 20, "stroke-width": N.value, "stroke-dasharray": l, "stroke-dashoffset": w.value }, null)]), t.default && d("div", { class: "v-progress-circular__content" }, [t.default({ value: h.value })])] })), {}; +} }), Xt = H({ height: [Number, String], maxHeight: [Number, String], maxWidth: [Number, String], minHeight: [Number, String], minWidth: [Number, String], width: [Number, String] }, "dimension"); +function Yt(e) { + return { dimensionStyles: v(() => ({ height: ce(e.height), maxHeight: ce(e.maxHeight), maxWidth: ce(e.maxWidth), minHeight: ce(e.minHeight), minWidth: ce(e.minWidth), width: ce(e.width) })) }; +} +const _a = Symbol.for("vuetify:locale"); +function vl() { + const e = Ie(_a); if (!e) throw new Error("[Vuetify] Could not find injected locale instance"); return e; } -function On() { - const e = me(Fa); +function Mn() { + const e = Ie(_a); if (!e) throw new Error("[Vuetify] Could not find injected rtl instance"); return { isRtl: e.isRtl, rtlClasses: e.rtlClasses }; } -const Oo = { center: "center", top: "bottom", bottom: "top", left: "right", right: "left" }, Kl = H({ location: String }, "location"); -function Jl(e) { +const Do = { center: "center", top: "bottom", bottom: "top", left: "right", right: "left" }, Zl = H({ location: String }, "location"); +function eo(e) { let n = arguments.length > 1 && arguments[1] !== void 0 && arguments[1], t = arguments.length > 2 ? arguments[2] : void 0; - const { isRtl: l } = On(); + const { isRtl: l } = Mn(); return { locationStyles: v(() => { if (!e.location) return {}; - const { side: a, align: c } = kl(e.location.split(" ").length > 1 ? e.location : `${e.location} center`, l.value); - function u(i) { - return t ? t(i) : 0; + const { side: i, align: c } = Vl(e.location.split(" ").length > 1 ? e.location : `${e.location} center`, l.value); + function s(a) { + return t ? t(a) : 0; } - const s = {}; - return a !== "center" && (n ? s[Oo[a]] = `calc(100% - ${u(a)}px)` : s[a] = 0), c !== "center" ? n ? s[Oo[c]] = `calc(100% - ${u(c)}px)` : s[c] = 0 : (a === "center" ? s.top = s.left = "50%" : s[{ top: "left", bottom: "left", left: "top", right: "top" }[a]] = "50%", s.transform = { top: "translateX(-50%)", bottom: "translateX(-50%)", left: "translateY(-50%)", right: "translateY(-50%)", center: "translate(-50%, -50%)" }[a]), s; + const u = {}; + return i !== "center" && (n ? u[Do[i]] = `calc(100% - ${s(i)}px)` : u[i] = 0), c !== "center" ? n ? u[Do[c]] = `calc(100% - ${s(c)}px)` : u[c] = 0 : (i === "center" ? u.top = u.left = "50%" : u[{ top: "left", bottom: "left", left: "top", right: "top" }[i]] = "50%", u.transform = { top: "translateX(-50%)", bottom: "translateX(-50%)", left: "translateY(-50%)", right: "translateY(-50%)", center: "translate(-50%, -50%)" }[i]), u; }) }; } -const Zi = H({ absolute: Boolean, active: { type: Boolean, default: !0 }, bgColor: String, bgOpacity: [Number, String], bufferValue: { type: [Number, String], default: 0 }, clickable: Boolean, color: String, height: { type: [Number, String], default: 4 }, indeterminate: Boolean, max: { type: [Number, String], default: 100 }, modelValue: { type: [Number, String], default: 0 }, reverse: Boolean, stream: Boolean, striped: Boolean, roundedBar: Boolean, ...ye(), ...Kl({ location: "top" }), ...ht(), ...et(), ...Ne() }, "VProgressLinear"), Qi = ee()({ name: "VProgressLinear", props: Zi(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { +const ur = H({ absolute: Boolean, active: { type: Boolean, default: !0 }, bgColor: String, bgOpacity: [Number, String], bufferValue: { type: [Number, String], default: 0 }, clickable: Boolean, color: String, height: { type: [Number, String], default: 4 }, indeterminate: Boolean, max: { type: [Number, String], default: 100 }, modelValue: { type: [Number, String], default: 0 }, reverse: Boolean, stream: Boolean, striped: Boolean, roundedBar: Boolean, ...Se(), ...Zl({ location: "top" }), ...Ct(), ...nt(), ...He() }, "VProgressLinear"), cr = oe()({ name: "VProgressLinear", props: ur(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { let { slots: t } = n; - const l = $e(e, "modelValue"), { isRtl: o, rtlClasses: a } = On(), { themeClasses: c } = Xe(e), { locationStyles: u } = Jl(e), { textColorClasses: s, textColorStyles: i } = ft(e, "color"), { backgroundColorClasses: p, backgroundColorStyles: y } = Gt(v(() => e.bgColor || e.color)), { backgroundColorClasses: f, backgroundColorStyles: m } = Gt(e, "color"), { roundedClasses: h } = bt(e), { intersectionRef: b, isIntersecting: g } = ka(), I = v(() => parseInt(e.max, 10)), k = v(() => parseInt(e.height, 10)), F = v(() => parseFloat(e.bufferValue) / I.value * 100), U = v(() => parseFloat(l.value) / I.value * 100), $ = v(() => o.value !== e.reverse), z = v(() => e.indeterminate ? "fade-transition" : "slide-x-transition"), L = v(() => e.bgOpacity == null ? e.bgOpacity : parseFloat(e.bgOpacity)); - function E(B) { - if (!b.value) + const l = Te(e, "modelValue"), { isRtl: o, rtlClasses: i } = Mn(), { themeClasses: c } = Ze(e), { locationStyles: s } = eo(e), { textColorClasses: u, textColorStyles: a } = vt(e, "color"), { backgroundColorClasses: p, backgroundColorStyles: f } = rn(v(() => e.bgColor || e.color)), { backgroundColorClasses: y, backgroundColorStyles: g } = rn(e, "color"), { roundedClasses: b } = It(e), { intersectionRef: m, isIntersecting: h } = Aa(), I = v(() => parseInt(e.max, 10)), F = v(() => parseInt(e.height, 10)), V = v(() => parseFloat(e.bufferValue) / I.value * 100), N = v(() => parseFloat(l.value) / I.value * 100), w = v(() => o.value !== e.reverse), L = v(() => e.indeterminate ? "fade-transition" : "slide-x-transition"), M = v(() => e.bgOpacity == null ? e.bgOpacity : parseFloat(e.bgOpacity)); + function E(S) { + if (!m.value) return; - const { left: _, right: C, width: O } = b.value.getBoundingClientRect(), w = $.value ? O - B.clientX + (C - O) : B.clientX - _; - l.value = Math.round(w / O * I.value); + const { left: k, right: C, width: _ } = m.value.getBoundingClientRect(), P = w.value ? _ - S.clientX + (C - _) : S.clientX - k; + l.value = Math.round(P / _ * I.value); } - return se(() => d(e.tag, { ref: b, class: ["v-progress-linear", { "v-progress-linear--absolute": e.absolute, "v-progress-linear--active": e.active && g.value, "v-progress-linear--reverse": $.value, "v-progress-linear--rounded": e.rounded, "v-progress-linear--rounded-bar": e.roundedBar, "v-progress-linear--striped": e.striped }, h.value, c.value, a.value, e.class], style: [{ bottom: e.location === "bottom" ? 0 : void 0, top: e.location === "top" ? 0 : void 0, height: e.active ? ie(k.value) : 0, "--v-progress-linear-height": ie(k.value), ...u.value }, e.style], role: "progressbar", "aria-hidden": e.active ? "false" : "true", "aria-valuemin": "0", "aria-valuemax": e.max, "aria-valuenow": e.indeterminate ? void 0 : U.value, onClick: e.clickable && E }, { default: () => [e.stream && d("div", { key: "stream", class: ["v-progress-linear__stream", s.value], style: { ...i.value, [$.value ? "left" : "right"]: ie(-k.value), borderTop: `${ie(k.value / 2)} dotted`, opacity: L.value, top: `calc(50% - ${ie(k.value / 4)})`, width: ie(100 - F.value, "%"), "--v-progress-linear-stream-to": ie(k.value * ($.value ? 1 : -1)) } }, null), d("div", { class: ["v-progress-linear__background", p.value], style: [y.value, { opacity: L.value, width: ie(e.stream ? F.value : 100, "%") }] }, null), d(At, { name: z.value }, { default: () => [e.indeterminate ? d("div", { class: "v-progress-linear__indeterminate" }, [["long", "short"].map((B) => d("div", { key: B, class: ["v-progress-linear__indeterminate", B, f.value], style: m.value }, null))]) : d("div", { class: ["v-progress-linear__determinate", f.value], style: [m.value, { width: ie(U.value, "%") }] }, null)] }), t.default && d("div", { class: "v-progress-linear__content" }, [t.default({ value: U.value, buffer: F.value })])] })), {}; -} }), Zl = H({ loading: [Boolean, String] }, "loader"); -function il(e) { - let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : st(); + return ge(() => d(e.tag, { ref: m, class: ["v-progress-linear", { "v-progress-linear--absolute": e.absolute, "v-progress-linear--active": e.active && h.value, "v-progress-linear--reverse": w.value, "v-progress-linear--rounded": e.rounded, "v-progress-linear--rounded-bar": e.roundedBar, "v-progress-linear--striped": e.striped }, b.value, c.value, i.value, e.class], style: [{ bottom: e.location === "bottom" ? 0 : void 0, top: e.location === "top" ? 0 : void 0, height: e.active ? ce(F.value) : 0, "--v-progress-linear-height": ce(F.value), ...s.value }, e.style], role: "progressbar", "aria-hidden": e.active ? "false" : "true", "aria-valuemin": "0", "aria-valuemax": e.max, "aria-valuenow": e.indeterminate ? void 0 : N.value, onClick: e.clickable && E }, { default: () => [e.stream && d("div", { key: "stream", class: ["v-progress-linear__stream", u.value], style: { ...a.value, [w.value ? "left" : "right"]: ce(-F.value), borderTop: `${ce(F.value / 2)} dotted`, opacity: M.value, top: `calc(50% - ${ce(F.value / 4)})`, width: ce(100 - V.value, "%"), "--v-progress-linear-stream-to": ce(F.value * (w.value ? 1 : -1)) } }, null), d("div", { class: ["v-progress-linear__background", p.value], style: [f.value, { opacity: M.value, width: ce(e.stream ? V.value : 100, "%") }] }, null), d(Wt, { name: L.value }, { default: () => [e.indeterminate ? d("div", { class: "v-progress-linear__indeterminate" }, [["long", "short"].map((S) => d("div", { key: S, class: ["v-progress-linear__indeterminate", S, y.value], style: g.value }, null))]) : d("div", { class: ["v-progress-linear__determinate", y.value], style: [g.value, { width: ce(N.value, "%") }] }, null)] }), t.default && d("div", { class: "v-progress-linear__content" }, [t.default({ value: N.value, buffer: V.value })])] })), {}; +} }), to = H({ loading: [Boolean, String] }, "loader"); +function fl(e) { + let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : yt(); return { loaderClasses: v(() => ({ [`${n}--loading`]: e.loading })) }; } -function Ql(e, n) { +function no(e, n) { var l; let { slots: t } = n; - return d("div", { class: `${e.name}__loader` }, [((l = t.default) == null ? void 0 : l.call(t, { color: e.color, isActive: e.active })) || d(Qi, { absolute: e.absolute, active: e.active, color: e.color, height: "2", indeterminate: !0 }, null)]); + return d("div", { class: `${e.name}__loader` }, [((l = t.default) == null ? void 0 : l.call(t, { color: e.color, isActive: e.active })) || d(cr, { absolute: e.absolute, active: e.active, color: e.color, height: "2", indeterminate: !0 }, null)]); } -const er = ["static", "relative", "fixed", "absolute", "sticky"], Aa = H({ position: { type: String, validator: (e) => er.includes(e) } }, "position"); -function Va(e) { - let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : st(); +const dr = ["static", "relative", "fixed", "absolute", "sticky"], Oa = H({ position: { type: String, validator: (e) => dr.includes(e) } }, "position"); +function Pa(e) { + let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : yt(); return { positionClasses: v(() => e.position ? `${n}--${e.position}` : void 0) }; } -function rl(e, n) { - const t = Ii("RouterLink"), l = v(() => !(!e.href && !e.to)), o = v(() => (l == null ? void 0 : l.value) || po(n, "click") || po(e, "click")); +function yl(e, n) { + const t = Vi("RouterLink"), l = v(() => !(!e.href && !e.to)), o = v(() => (l == null ? void 0 : l.value) || ho(n, "click") || ho(e, "click")); if (typeof t == "string") - return { isLink: l, isClickable: o, href: ae(e, "href") }; - const a = e.to ? t.useLink(e) : void 0, c = function() { - const u = We("useRoute"); + return { isLink: l, isClickable: o, href: ue(e, "href") }; + const i = e.to ? t.useLink(e) : void 0, c = function() { + const s = Ge("useRoute"); return v(() => { - var s; - return (s = u == null ? void 0 : u.proxy) == null ? void 0 : s.$route; + var u; + return (u = s == null ? void 0 : s.proxy) == null ? void 0 : u.$route; }); }(); - return { isLink: l, isClickable: o, route: a == null ? void 0 : a.route, navigate: a == null ? void 0 : a.navigate, isActive: a && v(() => { - var u, s, i; - return e.exact ? c.value ? ((u = a.isExactActive) == null ? void 0 : u.value) && nn(a.route.value.query, c.value.query) : (s = a.isExactActive) == null ? void 0 : s.value : (i = a.isActive) == null ? void 0 : i.value; - }), href: v(() => e.to ? a == null ? void 0 : a.route.value.href : e.href) }; -} -const sl = H({ href: String, replace: Boolean, to: [String, Object], exact: Boolean }, "router"); -let gl = !1; -const wl = Symbol("rippleStop"), tr = 80; -function Po(e, n) { + return { isLink: l, isClickable: o, route: i == null ? void 0 : i.route, navigate: i == null ? void 0 : i.navigate, isActive: i && v(() => { + var s, u, a; + return e.exact ? c.value ? ((s = i.isExactActive) == null ? void 0 : s.value) && vn(i.route.value.query, c.value.query) : (u = i.isExactActive) == null ? void 0 : u.value : (a = i.isActive) == null ? void 0 : a.value; + }), href: v(() => e.to ? i == null ? void 0 : i.route.value.href : e.href) }; +} +const ml = H({ href: String, replace: Boolean, to: [String, Object], exact: Boolean }, "router"); +let Il = !1; +const _l = Symbol("rippleStop"), pr = 80; +function Lo(e, n) { e.style.transform = n, e.style.webkitTransform = n; } -function Fl(e) { +function Ol(e) { return e.constructor.name === "TouchEvent"; } -function _a(e) { +function $a(e) { return e.constructor.name === "KeyboardEvent"; } -const Qn = { show(e, n) { - var m; +const il = { show(e, n) { + var g; let t = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}; - if (!((m = n == null ? void 0 : n._ripple) != null && m.enabled)) + if (!((g = n == null ? void 0 : n._ripple) != null && g.enabled)) return; const l = document.createElement("span"), o = document.createElement("span"); l.appendChild(o), l.className = "v-ripple__container", t.class && (l.className += ` ${t.class}`); - const { radius: a, scale: c, x: u, y: s, centerX: i, centerY: p } = function(h, b) { - var L; - let g = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, I = 0, k = 0; - if (!_a(h)) { - const E = b.getBoundingClientRect(), B = Fl(h) ? h.touches[h.touches.length - 1] : h; - I = B.clientX - E.left, k = B.clientY - E.top; + const { radius: i, scale: c, x: s, y: u, centerX: a, centerY: p } = function(b, m) { + var M; + let h = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, I = 0, F = 0; + if (!$a(b)) { + const E = m.getBoundingClientRect(), S = Ol(b) ? b.touches[b.touches.length - 1] : b; + I = S.clientX - E.left, F = S.clientY - E.top; } - let F = 0, U = 0.3; - (L = b._ripple) != null && L.circle ? (U = 0.15, F = b.clientWidth / 2, F = g.center ? F : F + Math.sqrt((I - F) ** 2 + (k - F) ** 2) / 4) : F = Math.sqrt(b.clientWidth ** 2 + b.clientHeight ** 2) / 2; - const $ = (b.clientWidth - 2 * F) / 2 + "px", z = (b.clientHeight - 2 * F) / 2 + "px"; - return { radius: F, scale: U, x: g.center ? $ : I - F + "px", y: g.center ? z : k - F + "px", centerX: $, centerY: z }; - }(e, n, t), y = 2 * a + "px"; - o.className = "v-ripple__animation", o.style.width = y, o.style.height = y, n.appendChild(l); - const f = window.getComputedStyle(n); - f && f.position === "static" && (n.style.position = "relative", n.dataset.previousPosition = "static"), o.classList.add("v-ripple__animation--enter"), o.classList.add("v-ripple__animation--visible"), Po(o, `translate(${u}, ${s}) scale3d(${c},${c},${c})`), o.dataset.activated = String(performance.now()), setTimeout(() => { - o.classList.remove("v-ripple__animation--enter"), o.classList.add("v-ripple__animation--in"), Po(o, `translate(${i}, ${p}) scale3d(1,1,1)`); + let V = 0, N = 0.3; + (M = m._ripple) != null && M.circle ? (N = 0.15, V = m.clientWidth / 2, V = h.center ? V : V + Math.sqrt((I - V) ** 2 + (F - V) ** 2) / 4) : V = Math.sqrt(m.clientWidth ** 2 + m.clientHeight ** 2) / 2; + const w = (m.clientWidth - 2 * V) / 2 + "px", L = (m.clientHeight - 2 * V) / 2 + "px"; + return { radius: V, scale: N, x: h.center ? w : I - V + "px", y: h.center ? L : F - V + "px", centerX: w, centerY: L }; + }(e, n, t), f = 2 * i + "px"; + o.className = "v-ripple__animation", o.style.width = f, o.style.height = f, n.appendChild(l); + const y = window.getComputedStyle(n); + y && y.position === "static" && (n.style.position = "relative", n.dataset.previousPosition = "static"), o.classList.add("v-ripple__animation--enter"), o.classList.add("v-ripple__animation--visible"), Lo(o, `translate(${s}, ${u}) scale3d(${c},${c},${c})`), o.dataset.activated = String(performance.now()), setTimeout(() => { + o.classList.remove("v-ripple__animation--enter"), o.classList.add("v-ripple__animation--in"), Lo(o, `translate(${a}, ${p}) scale3d(1,1,1)`); }, 0); }, hide(e) { - var a; - if (!((a = e == null ? void 0 : e._ripple) != null && a.enabled)) + var i; + if (!((i = e == null ? void 0 : e._ripple) != null && i.enabled)) return; const n = e.getElementsByClassName("v-ripple__animation"); if (n.length === 0) @@ -1017,666 +1126,697 @@ const Qn = { show(e, n) { }, 300); }, o); } }; -function Oa(e) { +function Ta(e) { return e === void 0 || !!e; } -function Cn(e) { +function An(e) { const n = {}, t = e.currentTarget; - if (t != null && t._ripple && !t._ripple.touched && !e[wl]) { - if (e[wl] = !0, Fl(e)) + if (t != null && t._ripple && !t._ripple.touched && !e[_l]) { + if (e[_l] = !0, Ol(e)) t._ripple.touched = !0, t._ripple.isTouch = !0; else if (t._ripple.isTouch) return; - if (n.center = t._ripple.centered || _a(e), t._ripple.class && (n.class = t._ripple.class), Fl(e)) { + if (n.center = t._ripple.centered || $a(e), t._ripple.class && (n.class = t._ripple.class), Ol(e)) { if (t._ripple.showTimerCommit) return; t._ripple.showTimerCommit = () => { - Qn.show(e, t, n); + il.show(e, t, n); }, t._ripple.showTimer = window.setTimeout(() => { var l; (l = t == null ? void 0 : t._ripple) != null && l.showTimerCommit && (t._ripple.showTimerCommit(), t._ripple.showTimerCommit = null); - }, tr); + }, pr); } else - Qn.show(e, t, n); + il.show(e, t, n); } } -function $o(e) { - e[wl] = !0; +function Wo(e) { + e[_l] = !0; } -function Ze(e) { +function tt(e) { const n = e.currentTarget; if (n != null && n._ripple) { if (window.clearTimeout(n._ripple.showTimer), e.type === "touchend" && n._ripple.showTimerCommit) return n._ripple.showTimerCommit(), n._ripple.showTimerCommit = null, void (n._ripple.showTimer = window.setTimeout(() => { - Ze(e); + tt(e); })); window.setTimeout(() => { n._ripple && (n._ripple.touched = !1); - }), Qn.hide(n); + }), il.hide(n); } } -function Pa(e) { +function Ea(e) { const n = e.currentTarget; n != null && n._ripple && (n._ripple.showTimerCommit && (n._ripple.showTimerCommit = null), window.clearTimeout(n._ripple.showTimer)); } -let In = !1; -function $a(e) { - In || e.keyCode !== ro.enter && e.keyCode !== ro.space || (In = !0, Cn(e)); +let Vn = !1; +function za(e) { + Vn || e.keyCode !== fo.enter && e.keyCode !== fo.space || (Vn = !0, An(e)); } -function Ea(e) { - In = !1, Ze(e); +function Da(e) { + Vn = !1, tt(e); } -function Ta(e) { - In && (In = !1, Ze(e)); +function La(e) { + Vn && (Vn = !1, tt(e)); } -function Eo(e, n, t) { - const { value: l, modifiers: o } = n, a = Oa(l); - if (a || Qn.hide(e), e._ripple = e._ripple ?? {}, e._ripple.enabled = a, e._ripple.centered = o.center, e._ripple.circle = o.circle, Sl(l) && l.class && (e._ripple.class = l.class), a && !t) { +function Mo(e, n, t) { + const { value: l, modifiers: o } = n, i = Ta(l); + if (i || il.hide(e), e._ripple = e._ripple ?? {}, e._ripple.enabled = i, e._ripple.centered = o.center, e._ripple.circle = o.circle, wl(l) && l.class && (e._ripple.class = l.class), i && !t) { if (o.stop) - return e.addEventListener("touchstart", $o, { passive: !0 }), void e.addEventListener("mousedown", $o); - e.addEventListener("touchstart", Cn, { passive: !0 }), e.addEventListener("touchend", Ze, { passive: !0 }), e.addEventListener("touchmove", Pa, { passive: !0 }), e.addEventListener("touchcancel", Ze), e.addEventListener("mousedown", Cn), e.addEventListener("mouseup", Ze), e.addEventListener("mouseleave", Ze), e.addEventListener("keydown", $a), e.addEventListener("keyup", Ea), e.addEventListener("blur", Ta), e.addEventListener("dragstart", Ze, { passive: !0 }); + return e.addEventListener("touchstart", Wo, { passive: !0 }), void e.addEventListener("mousedown", Wo); + e.addEventListener("touchstart", An, { passive: !0 }), e.addEventListener("touchend", tt, { passive: !0 }), e.addEventListener("touchmove", Ea, { passive: !0 }), e.addEventListener("touchcancel", tt), e.addEventListener("mousedown", An), e.addEventListener("mouseup", tt), e.addEventListener("mouseleave", tt), e.addEventListener("keydown", za), e.addEventListener("keyup", Da), e.addEventListener("blur", La), e.addEventListener("dragstart", tt, { passive: !0 }); } else - !a && t && za(e); + !i && t && Wa(e); } -function za(e) { - e.removeEventListener("mousedown", Cn), e.removeEventListener("touchstart", Cn), e.removeEventListener("touchend", Ze), e.removeEventListener("touchmove", Pa), e.removeEventListener("touchcancel", Ze), e.removeEventListener("mouseup", Ze), e.removeEventListener("mouseleave", Ze), e.removeEventListener("keydown", $a), e.removeEventListener("keyup", Ea), e.removeEventListener("dragstart", Ze), e.removeEventListener("blur", Ta); +function Wa(e) { + e.removeEventListener("mousedown", An), e.removeEventListener("touchstart", An), e.removeEventListener("touchend", tt), e.removeEventListener("touchmove", Ea), e.removeEventListener("touchcancel", tt), e.removeEventListener("mouseup", tt), e.removeEventListener("mouseleave", tt), e.removeEventListener("keydown", za), e.removeEventListener("keyup", Da), e.removeEventListener("dragstart", tt), e.removeEventListener("blur", La); } -const Pn = { mounted: function(e, n) { - Eo(e, n, !1); +const Rn = { mounted: function(e, n) { + Mo(e, n, !1); }, unmounted: function(e) { - delete e._ripple, za(e); + delete e._ripple, Wa(e); }, updated: function(e, n) { - n.value !== n.oldValue && Eo(e, n, Oa(n.oldValue)); -} }, nr = H({ active: { type: Boolean, default: void 0 }, symbol: { type: null, default: xa }, flat: Boolean, icon: [Boolean, String, Function, Object], prependIcon: Ce, appendIcon: Ce, block: Boolean, slim: Boolean, stacked: Boolean, ripple: { type: [Boolean, Object], default: !0 }, text: String, ...on(), ...ye(), ...ut(), ...zt(), ...rn(), ...Ia(), ...Zl(), ...Kl(), ...Aa(), ...ht(), ...sl(), ...Vn(), ...et({ tag: "button" }), ...Ne(), ...xt({ variant: "elevated" }) }, "VBtn"), To = ee()({ name: "VBtn", directives: { Ripple: Pn }, props: nr(), emits: { "group:selected": (e) => !0 }, setup(e, n) { + n.value !== n.oldValue && Mo(e, n, Ta(n.oldValue)); +} }, vr = H({ active: { type: Boolean, default: void 0 }, symbol: { type: null, default: Fa }, flat: Boolean, icon: [Boolean, String, Function, Object], prependIcon: Ae, appendIcon: Ae, block: Boolean, slim: Boolean, stacked: Boolean, ripple: { type: [Boolean, Object], default: !0 }, text: String, ...yn(), ...Se(), ...mt(), ...Xt(), ...gn(), ...xa(), ...to(), ...Zl(), ...Oa(), ...Ct(), ...ml(), ...En(), ...nt({ tag: "button" }), ...He(), ...Pt({ variant: "elevated" }) }, "VBtn"), Ro = oe()({ name: "VBtn", directives: { Ripple: Rn }, props: vr(), emits: { "group:selected": (e) => !0 }, setup(e, n) { let { attrs: t, slots: l } = n; - const { themeClasses: o } = Xe(e), { borderClasses: a } = an(e), { colorClasses: c, colorStyles: u, variantClasses: s } = An(e), { densityClasses: i } = gt(e), { dimensionStyles: p } = Dt(e), { elevationClasses: y } = sn(e), { loaderClasses: f } = il(e), { locationStyles: m } = Jl(e), { positionClasses: h } = Va(e), { roundedClasses: b } = bt(e), { sizeClasses: g, sizeStyles: I } = _n(e), k = Sa(e, e.symbol, !1), F = rl(e, t), U = v(() => { - var B; - return e.active !== void 0 ? e.active : F.isLink.value ? (B = F.isActive) == null ? void 0 : B.value : k == null ? void 0 : k.isSelected.value; - }), $ = v(() => (k == null ? void 0 : k.disabled.value) || e.disabled), z = v(() => e.variant === "elevated" && !(e.disabled || e.flat || e.border)), L = v(() => { + const { themeClasses: o } = Ze(e), { borderClasses: i } = mn(e), { colorClasses: c, colorStyles: s, variantClasses: u } = Wn(e), { densityClasses: a } = bt(e), { dimensionStyles: p } = Yt(e), { elevationClasses: f } = hn(e), { loaderClasses: y } = fl(e), { locationStyles: g } = eo(e), { positionClasses: b } = Pa(e), { roundedClasses: m } = It(e), { sizeClasses: h, sizeStyles: I } = zn(e), F = ka(e, e.symbol, !1), V = yl(e, t), N = v(() => { + var S; + return e.active !== void 0 ? e.active : V.isLink.value ? (S = V.isActive) == null ? void 0 : S.value : F == null ? void 0 : F.isSelected.value; + }), w = v(() => (F == null ? void 0 : F.disabled.value) || e.disabled), L = v(() => e.variant === "elevated" && !(e.disabled || e.flat || e.border)), M = v(() => { if (e.value !== void 0 && typeof e.value != "symbol") return Object(e.value) === e.value ? JSON.stringify(e.value, null, 0) : e.value; }); - function E(B) { - var _; - $.value || F.isLink.value && (B.metaKey || B.ctrlKey || B.shiftKey || B.button !== 0 || t.target === "_blank") || ((_ = F.navigate) == null || _.call(F, B), k == null || k.toggle()); + function E(S) { + var k; + w.value || V.isLink.value && (S.metaKey || S.ctrlKey || S.shiftKey || S.button !== 0 || t.target === "_blank") || ((k = V.navigate) == null || k.call(V, S), F == null || F.toggle()); } - return function(B, _) { - J(() => { + return function(S, k) { + Y(() => { var C; - return (C = B.isActive) == null ? void 0 : C.value; + return (C = S.isActive) == null ? void 0 : C.value; }, (C) => { - B.isLink.value && C && _ && Me(() => { - _(!0); + S.isLink.value && C && k && Ne(() => { + k(!0); }); }, { immediate: !0 }); - }(F, k == null ? void 0 : k.select), se(() => { - var M, V; - const B = F.isLink.value ? "a" : e.tag, _ = !(!e.prependIcon && !l.prepend), C = !(!e.appendIcon && !l.append), O = !(!e.icon || e.icon === !0), w = (k == null ? void 0 : k.isSelected.value) && (!F.isLink.value || ((M = F.isActive) == null ? void 0 : M.value)) || !k || ((V = F.isActive) == null ? void 0 : V.value); - return Ue(d(B, { type: B === "a" ? void 0 : "button", class: ["v-btn", k == null ? void 0 : k.selectedClass.value, { "v-btn--active": U.value, "v-btn--block": e.block, "v-btn--disabled": $.value, "v-btn--elevated": z.value, "v-btn--flat": e.flat, "v-btn--icon": !!e.icon, "v-btn--loading": e.loading, "v-btn--slim": e.slim, "v-btn--stacked": e.stacked }, o.value, a.value, w ? c.value : void 0, i.value, y.value, f.value, h.value, b.value, g.value, s.value, e.class], style: [w ? u.value : void 0, p.value, m.value, I.value, e.style], disabled: $.value || void 0, href: F.href.value, onClick: E, value: L.value }, { default: () => { - var A; - return [Fn(!0, "v-btn"), !e.icon && _ && d("span", { key: "prepend", class: "v-btn__prepend" }, [l.prepend ? d(je, { key: "prepend-defaults", disabled: !e.prependIcon, defaults: { VIcon: { icon: e.prependIcon } } }, l.prepend) : d(Se, { key: "prepend-icon", icon: e.prependIcon }, null)]), d("span", { class: "v-btn__content", "data-no-activator": "" }, [!l.default && O ? d(Se, { key: "content-icon", icon: e.icon }, null) : d(je, { key: "content-defaults", disabled: !O, defaults: { VIcon: { icon: e.icon } } }, { default: () => { - var P; - return [((P = l.default) == null ? void 0 : P.call(l)) ?? e.text]; - } })]), !e.icon && C && d("span", { key: "append", class: "v-btn__append" }, [l.append ? d(je, { key: "append-defaults", disabled: !e.appendIcon, defaults: { VIcon: { icon: e.appendIcon } } }, l.append) : d(Se, { key: "append-icon", icon: e.appendIcon }, null)]), !!e.loading && d("span", { key: "loader", class: "v-btn__loader" }, [((A = l.loader) == null ? void 0 : A.call(l)) ?? d(wa, { color: typeof e.loading == "boolean" ? void 0 : e.loading, indeterminate: !0, size: "23", width: "2" }, null)])]; - } }), [[mt("ripple"), !$.value && e.ripple, null]]); + }(V, F == null ? void 0 : F.select), ge(() => { + var G, $; + const S = V.isLink.value ? "a" : e.tag, k = !(!e.prependIcon && !l.prepend), C = !(!e.appendIcon && !l.append), _ = !(!e.icon || e.icon === !0), P = (F == null ? void 0 : F.isSelected.value) && (!V.isLink.value || ((G = V.isActive) == null ? void 0 : G.value)) || !F || (($ = V.isActive) == null ? void 0 : $.value); + return Xe(d(S, { type: S === "a" ? void 0 : "button", class: ["v-btn", F == null ? void 0 : F.selectedClass.value, { "v-btn--active": N.value, "v-btn--block": e.block, "v-btn--disabled": w.value, "v-btn--elevated": L.value, "v-btn--flat": e.flat, "v-btn--icon": !!e.icon, "v-btn--loading": e.loading, "v-btn--slim": e.slim, "v-btn--stacked": e.stacked }, o.value, i.value, P ? c.value : void 0, a.value, f.value, y.value, b.value, m.value, h.value, u.value, e.class], style: [P ? s.value : void 0, p.value, g.value, I.value, e.style], disabled: w.value || void 0, href: V.href.value, onClick: E, value: M.value }, { default: () => { + var O; + return [Ln(!0, "v-btn"), !e.icon && k && d("span", { key: "prepend", class: "v-btn__prepend" }, [l.prepend ? d(qe, { key: "prepend-defaults", disabled: !e.prependIcon, defaults: { VIcon: { icon: e.prependIcon } } }, l.prepend) : d(Ve, { key: "prepend-icon", icon: e.prependIcon }, null)]), d("span", { class: "v-btn__content", "data-no-activator": "" }, [!l.default && _ ? d(Ve, { key: "content-icon", icon: e.icon }, null) : d(qe, { key: "content-defaults", disabled: !_, defaults: { VIcon: { icon: e.icon } } }, { default: () => { + var T; + return [((T = l.default) == null ? void 0 : T.call(l)) ?? e.text]; + } })]), !e.icon && C && d("span", { key: "append", class: "v-btn__append" }, [l.append ? d(qe, { key: "append-defaults", disabled: !e.appendIcon, defaults: { VIcon: { icon: e.appendIcon } } }, l.append) : d(Ve, { key: "append-icon", icon: e.appendIcon }, null)]), !!e.loading && d("span", { key: "loader", class: "v-btn__loader" }, [((O = l.loader) == null ? void 0 : O.call(l)) ?? d(Va, { color: typeof e.loading == "boolean" ? void 0 : e.loading, indeterminate: !0, size: "23", width: "2" }, null)])]; + } }), [[ht("ripple"), !w.value && e.ripple, null]]); }), {}; -} }), un = rt({ __name: "SaveFieldButtons", props: { loading: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonVariant: {}, cancelButtonTitle: {}, cancelIconColor: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideSaveIcon: { type: Boolean }, cancelIcon: {}, loadingIcon: {}, loadingIconColor: {}, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIconColor: {}, saveIcon: {} }, emits: ["close", "save"], setup(e, { emit: n }) { - const t = Ot(), l = n, o = e, a = me(Symbol.for("vuetify:icons")), c = v(() => o.error), u = v(() => ({ [`${re}--save-fields-container`]: !0 })), s = v(() => o.loading), i = lt({ ...t, ...o }), p = v(() => (a == null ? void 0 : a.defaultSet) === "fa" ? "fa-spin" : (a == null ? void 0 : a.defaultSet) === "mdi" ? "mdi-spin" : ""), y = v(() => ((I) => { - const { cancelButtonVariant: k } = I; - return { "me-1": k === "elevated", "ms-1": !0 }; - })({ cancelButtonVariant: i.cancelButtonVariant })), f = v(() => ot({ icon: o.cancelIcon, iconOptions: a, name: "false" })), m = v(() => ot({ icon: o.loadingIcon, iconOptions: a, name: "loading" })), h = v(() => ot({ icon: o.saveIcon, iconOptions: a, name: "save" })); - function b() { +} }), Jt = ct({ __name: "SaveFieldButtons", props: { loading: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonVariant: {}, cancelButtonTitle: {}, cancelIconColor: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideSaveIcon: { type: Boolean }, cancelIcon: {}, loadingIcon: {}, loadingIconColor: {}, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIconColor: {}, saveIcon: {} }, emits: ["close", "save"], setup(e, { emit: n }) { + const t = gt(), l = n, o = e, i = Ie(Symbol.for("vuetify:icons")), c = v(() => o.error), s = v(() => ({ [`${me}--save-fields-container`]: !0 })), u = v(() => o.loading), a = Qe({ ...t, ...o }); + ze(() => { + Object.assign(a, { ...t, ...o }); + }); + const p = v(() => (i == null ? void 0 : i.defaultSet) === "fa" ? "fa-spin" : (i == null ? void 0 : i.defaultSet) === "mdi" ? "mdi-spin" : ""), f = v(() => ((I) => { + const { cancelButtonVariant: F } = I; + return { "me-1": F === "elevated", "ms-1": !0 }; + })({ cancelButtonVariant: a.cancelButtonVariant })), y = v(() => it({ icon: o.cancelIcon, iconOptions: i, name: "false" })), g = v(() => it({ icon: o.loadingIcon, iconOptions: i, name: "loading" })), b = v(() => it({ icon: o.saveIcon, iconOptions: i, name: "save" })); + function m() { l("close"); } - function g() { + function h() { l("save"); } - return (I, k) => (Z(), ce("div", Q({ class: r(u) }, I.$attrs), [r(i).hideSaveIcon ? xe("", !0) : (Z(), De(To, { key: 0, class: "ms-1", color: r(i).saveButtonColor, disabled: r(c), icon: "", size: r(i).saveButtonSize, title: r(s) ? "Loading" : r(i).saveButtonTitle, variant: r(i).saveButtonVariant, onClick: g }, { default: be(() => [r(s) ? (Z(), De(Se, { key: 1, class: oe(r(p)), color: r(i).loadingIconColor, icon: r(m) }, null, 8, ["class", "color", "icon"])) : (Z(), De(Se, { key: 0, color: r(c) ? "error" : r(i).saveIconColor, icon: r(h) }, null, 8, ["color", "icon"]))]), _: 1 }, 8, ["color", "disabled", "size", "title", "variant"])), r(i).hideCancelIcon ? xe("", !0) : (Z(), De(To, { key: 1, class: oe(r(y)), color: r(i).cancelButtonColor, icon: "", size: r(i).cancelButtonSize, title: r(i).cancelButtonTitle, variant: r(i).cancelButtonVariant, onClick: b }, { default: be(() => [r(i).hideSaveIcon && r(s) ? (Z(), De(Se, { key: 0, class: oe(r(p)), color: r(i).loadingIconColor, icon: r(m) }, null, 8, ["class", "color", "icon"])) : (Z(), De(Se, { key: 1, class: "text-default", color: r(i).cancelIconColor, icon: r(f) }, null, 8, ["color", "icon"]))]), _: 1 }, 8, ["class", "color", "size", "title", "variant"]))], 16)); -} }), lr = H({ disabled: Boolean, group: Boolean, hideOnLeave: Boolean, leaveAbsolute: Boolean, mode: String, origin: String }, "transition"); -function Je(e, n, t) { - return ee()({ name: e, props: lr({ mode: t, origin: n }), setup(l, o) { - let { slots: a } = o; - const c = { onBeforeEnter(u) { - l.origin && (u.style.transformOrigin = l.origin); - }, onLeave(u) { - if (l.leaveAbsolute) { - const { offsetTop: s, offsetLeft: i, offsetWidth: p, offsetHeight: y } = u; - u._transitionInitialStyles = { position: u.style.position, top: u.style.top, left: u.style.left, width: u.style.width, height: u.style.height }, u.style.position = "absolute", u.style.top = `${s}px`, u.style.left = `${i}px`, u.style.width = `${p}px`, u.style.height = `${y}px`; - } - l.hideOnLeave && u.style.setProperty("display", "none", "important"); - }, onAfterLeave(u) { - if (l.leaveAbsolute && (u != null && u._transitionInitialStyles)) { - const { position: s, top: i, left: p, width: y, height: f } = u._transitionInitialStyles; - delete u._transitionInitialStyles, u.style.position = s || "", u.style.top = i || "", u.style.left = p || "", u.style.width = y || "", u.style.height = f || ""; - } - } }; - return () => { - const u = l.group ? Si : At; - return ol(u, { name: l.disabled ? "" : e, css: !l.disabled, ...l.group ? void 0 : { mode: l.mode }, ...l.disabled ? {} : c }, a.default); - }; - } }); -} -function Da(e, n) { - let t = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : "in-out"; - return ee()({ name: e, props: { mode: { type: String, default: t }, disabled: Boolean }, setup(l, o) { - let { slots: a } = o; - return () => ol(At, { name: l.disabled ? "" : e, css: !l.disabled, ...l.disabled ? {} : n }, a.default); - } }); -} -function La() { - let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : ""; - const n = arguments.length > 1 && arguments[1] !== void 0 && arguments[1] ? "width" : "height", t = ta(`offset-${n}`); - return { onBeforeEnter(a) { - a._parent = a.parentNode, a._initialStyle = { transition: a.style.transition, overflow: a.style.overflow, [n]: a.style[n] }; - }, onEnter(a) { - const c = a._initialStyle; - a.style.setProperty("transition", "none", "important"), a.style.overflow = "hidden"; - const u = `${a[t]}px`; - a.style[n] = "0", a.offsetHeight, a.style.transition = c.transition, e && a._parent && a._parent.classList.add(e), requestAnimationFrame(() => { - a.style[n] = u; - }); - }, onAfterEnter: o, onEnterCancelled: o, onLeave(a) { - a._initialStyle = { transition: "", overflow: a.style.overflow, [n]: a.style[n] }, a.style.overflow = "hidden", a.style[n] = `${a[t]}px`, a.offsetHeight, requestAnimationFrame(() => a.style[n] = "0"); - }, onAfterLeave: l, onLeaveCancelled: l }; - function l(a) { - e && a._parent && a._parent.classList.remove(e), o(a); - } - function o(a) { - const c = a._initialStyle[n]; - a.style.overflow = a._initialStyle.overflow, c != null && (a.style[n] = c), delete a._initialStyle; + return (I, F) => (Z(), fe("div", ee({ class: r(s) }, I.$attrs), [r(a).hideSaveIcon ? Fe("", !0) : (Z(), Me(Ro, { key: 0, class: "ms-1", color: r(a).saveButtonColor, disabled: r(c), icon: "", size: r(a).saveButtonSize, title: r(u) ? "Loading" : r(a).saveButtonTitle, variant: r(a).saveButtonVariant, onClick: h }, { default: Ce(() => [r(u) ? (Z(), Me(Ve, { key: 1, class: le(r(p)), color: r(a).loadingIconColor, icon: r(g) }, null, 8, ["class", "color", "icon"])) : (Z(), Me(Ve, { key: 0, color: r(c) ? "error" : r(a).saveIconColor, icon: r(b) }, null, 8, ["color", "icon"]))]), _: 1 }, 8, ["color", "disabled", "size", "title", "variant"])), r(a).hideCancelIcon ? Fe("", !0) : (Z(), Me(Ro, { key: 1, class: le(r(f)), color: r(a).cancelButtonColor, icon: "", size: r(a).cancelButtonSize, title: r(a).cancelButtonTitle, variant: r(a).cancelButtonVariant, onClick: m }, { default: Ce(() => [r(a).hideSaveIcon && r(u) ? (Z(), Me(Ve, { key: 0, class: le(r(p)), color: r(a).loadingIconColor, icon: r(g) }, null, 8, ["class", "color", "icon"])) : (Z(), Me(Ve, { key: 1, class: "text-default", color: r(a).cancelIconColor, icon: r(y) }, null, 8, ["color", "icon"]))]), _: 1 }, 8, ["class", "color", "size", "title", "variant"]))], 16)); +} }), Nn = (e) => { + const { required: n, rules: t } = e; + let { value: l } = e; + l = r(l); + const o = []; + let i = !1; + if (n && !l) + return o.push("Field is required."), { errors: !0, results: o }; + if (t) { + for (const c of t) { + const s = (typeof c == "function" ? c : () => c)(l); + s !== !0 && (typeof s == "string" ? o.push(s) : console.warn(`${s} is not a valid value. Rule functions must return boolean true or a string.`)); + } + i = o.length > 0; } -} -const or = H({ target: [Object, Array] }, "v-dialog-transition"), Wa = ee()({ name: "VDialogTransition", props: or(), setup(e, n) { - let { slots: t } = n; - const l = { onBeforeEnter(o) { - o.style.pointerEvents = "none", o.style.visibility = "hidden"; - }, async onEnter(o, a) { - var f; - await new Promise((m) => requestAnimationFrame(m)), await new Promise((m) => requestAnimationFrame(m)), o.style.visibility = ""; - const { x: c, y: u, sx: s, sy: i, speed: p } = Do(e.target, o), y = Nt(o, [{ transform: `translate(${c}px, ${u}px) scale(${s}, ${i})`, opacity: 0 }, {}], { duration: 225 * p, easing: "cubic-bezier(0.0, 0, 0.2, 1)" }); - (f = zo(o)) == null || f.forEach((m) => { - Nt(m, [{ opacity: 0 }, { opacity: 0, offset: 0.33 }, {}], { duration: 450 * p, easing: Kn }); - }), y.finished.then(() => a()); - }, onAfterEnter(o) { - o.style.removeProperty("pointer-events"); - }, onBeforeLeave(o) { - o.style.pointerEvents = "none"; - }, async onLeave(o, a) { - var y; - await new Promise((f) => requestAnimationFrame(f)); - const { x: c, y: u, sx: s, sy: i, speed: p } = Do(e.target, o); - Nt(o, [{}, { transform: `translate(${c}px, ${u}px) scale(${s}, ${i})`, opacity: 0 }], { duration: 125 * p, easing: "cubic-bezier(0.4, 0, 1, 1)" }).finished.then(() => a()), (y = zo(o)) == null || y.forEach((f) => { - Nt(f, [{}, { opacity: 0, offset: 0.2 }, { opacity: 0 }], { duration: 250 * p, easing: Kn }); - }); - }, onAfterLeave(o) { - o.style.removeProperty("pointer-events"); - } }; - return () => e.target ? d(At, Q({ name: "dialog-transition" }, l, { css: !1 }), t) : d(At, { name: "dialog-transition" }, t); -} }); -function zo(e) { - var t; - const n = (t = e.querySelector(":scope > .v-card, :scope > .v-sheet, :scope > .v-list")) == null ? void 0 : t.children; - return n && [...n]; -} -function Do(e, n) { - const t = fa(e), l = Gl(n), [o, a] = getComputedStyle(n).transformOrigin.split(" ").map((I) => parseFloat(I)), [c, u] = getComputedStyle(n).getPropertyValue("--v-overlay-anchor-origin").split(" "); - let s = t.left + t.width / 2; - c === "left" || u === "left" ? s -= t.width / 2 : c !== "right" && u !== "right" || (s += t.width / 2); - let i = t.top + t.height / 2; - c === "top" || u === "top" ? i -= t.height / 2 : c !== "bottom" && u !== "bottom" || (i += t.height / 2); - const p = t.width / l.width, y = t.height / l.height, f = Math.max(1, p, y), m = p / f || 0, h = y / f || 0, b = l.width * l.height / (window.innerWidth * window.innerHeight), g = b > 0.12 ? Math.min(1.5, 10 * (b - 0.12) + 1) : 1; - return { x: s - (o + l.left), y: i - (a + l.top), sx: m, sy: h, speed: g }; -} -Je("fab-transition", "center center", "out-in"), Je("dialog-bottom-transition"), Je("dialog-top-transition"), Je("fade-transition"); -const ar = Je("scale-transition"); -Je("scroll-x-transition"), Je("scroll-x-reverse-transition"), Je("scroll-y-transition"), Je("scroll-y-reverse-transition"), Je("slide-x-transition"), Je("slide-x-reverse-transition"); -const Ma = Je("slide-y-transition"); -Je("slide-y-reverse-transition"); -const ir = Da("expand-transition", La()), Ra = Da("expand-x-transition", La("", !0)), Na = H({ aspectRatio: [String, Number], contentClass: String, inline: Boolean, ...ye(), ...zt() }, "VResponsive"), Lo = ee()({ name: "VResponsive", props: Na(), setup(e, n) { + return { errors: i, results: o }; +}, Qt = (e) => { + const { attrs: n, closeSiblings: t, fieldOnly: l, props: o, showField: i, timeOpened: c } = e; + let s = c; + return t && !l && (s = /* @__PURE__ */ new Date()), { settings: { ...n, ...o }, showField: !r(i), timeOpened: s }; +}, lo = (e) => { + const { length: n = 0 } = e; + let { suffix: t, text: l } = e; + return l = l.toString(), t = t || "...", l.length > n ? `${l.substring(0, n)}${t}` : l; +}, Zt = ["error", "update", "update:closeSiblingFields", "update:model-value"], fr = ["cancelButtonColor", "cancelButtonSize", "cancelButtonTitle", "cancelButtonVariant", "cancelIcon", "cancelIconColor", "closeSiblings", "displayAppendIcon", "displayAppendIconColor", "displayAppendIconSize", "displayAppendInnerIcon", "displayAppendInnerIconColor", "displayAppendInnerIconSize", "displayPrependIcon", "displayPrependIconColor", "displayPrependIconSize", "displayPrependInnerIcon", "displayPrependInnerIconColor", "displayPrependInnerIconSize", "emptyText", "fieldOnly", "hideSaveIcon", "loadingIcon", "loadingIconColor", "loadingWait", "saveButtonColor", "saveButtonSize", "saveButtonTitle", "saveButtonVariant", "saveIcon", "saveIconColor", "tableField", "truncateLength", "truncateSuffix", "underlineColor", "underlineStyle", "underlineWidth", "underlined", "valueColor"], bn = (e) => { + let n = e; + return n = Object.entries(n).filter(([t]) => !fr.includes(t)), Object.fromEntries(n); +}, Ma = H({ aspectRatio: [String, Number], contentClass: String, inline: Boolean, ...Se(), ...Xt() }, "VResponsive"), No = oe()({ name: "VResponsive", props: Ma(), setup(e, n) { let { slots: t } = n; - const { aspectStyles: l } = function(a) { + const { aspectStyles: l } = function(i) { return { aspectStyles: v(() => { - const c = Number(a.aspectRatio); + const c = Number(i.aspectRatio); return c ? { paddingBottom: String(1 / c * 100) + "%" } : void 0; }) }; - }(e), { dimensionStyles: o } = Dt(e); - return se(() => { - var a; - return d("div", { class: ["v-responsive", { "v-responsive--inline": e.inline }, e.class], style: [o.value, e.style] }, [d("div", { class: "v-responsive__sizer", style: l.value }, null), (a = t.additional) == null ? void 0 : a.call(t), t.default && d("div", { class: ["v-responsive__content", e.contentClass] }, [t.default()])]); + }(e), { dimensionStyles: o } = Yt(e); + return ge(() => { + var i; + return d("div", { class: ["v-responsive", { "v-responsive--inline": e.inline }, e.class], style: [o.value, e.style] }, [d("div", { class: "v-responsive__sizer", style: l.value }, null), (i = t.additional) == null ? void 0 : i.call(t), t.default && d("div", { class: ["v-responsive__content", e.contentClass] }, [t.default()])]); }), {}; -} }), $n = H({ transition: { type: [Boolean, String, Object], default: "fade-transition", validator: (e) => e !== !0 } }, "transition"), Ct = (e, n) => { +} }), Cn = H({ transition: { type: [Boolean, String, Object], default: "fade-transition", validator: (e) => e !== !0 } }, "transition"), St = (e, n) => { let { slots: t } = n; - const { transition: l, disabled: o, ...a } = e, { component: c = At, ...u } = typeof l == "object" ? l : {}; - return ol(c, Q(typeof l == "string" ? { name: o ? "" : l } : u, a, { disabled: o }), t); + const { transition: l, disabled: o, ...i } = e, { component: c = Wt, ...s } = typeof l == "object" ? l : {}; + return dl(c, ee(typeof l == "string" ? { name: o ? "" : l } : s, i, { disabled: o }), t); }; -function Wo(e, n) { +function jo(e, n) { var l; const t = (l = e._observe) == null ? void 0 : l[n.instance.$.uid]; t && (t.observer.unobserve(e), delete e._observe[n.instance.$.uid]); } -const eo = { mounted: function(e, n) { - if (!Nl) +const oo = { mounted: function(e, n) { + if (!Ul) return; - const t = n.modifiers || {}, l = n.value, { handler: o, options: a } = typeof l == "object" ? l : { handler: l, options: {} }, c = new IntersectionObserver(function() { - var y; - let u = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : [], s = arguments.length > 1 ? arguments[1] : void 0; - const i = (y = e._observe) == null ? void 0 : y[n.instance.$.uid]; - if (!i) + const t = n.modifiers || {}, l = n.value, { handler: o, options: i } = typeof l == "object" ? l : { handler: l, options: {} }, c = new IntersectionObserver(function() { + var f; + let s = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : [], u = arguments.length > 1 ? arguments[1] : void 0; + const a = (f = e._observe) == null ? void 0 : f[n.instance.$.uid]; + if (!a) return; - const p = u.some((f) => f.isIntersecting); - !o || t.quiet && !i.init || t.once && !p && !i.init || o(p, u, s), p && t.once ? Wo(e, n) : i.init = !0; - }, a); + const p = s.some((y) => y.isIntersecting); + !o || t.quiet && !a.init || t.once && !p && !a.init || o(p, s, u), p && t.once ? jo(e, n) : a.init = !0; + }, i); e._observe = Object(e._observe), e._observe[n.instance.$.uid] = { init: !1, observer: c }, c.observe(e); -}, unmounted: Wo }, rr = H({ alt: String, cover: Boolean, draggable: { type: [Boolean, String], default: void 0 }, eager: Boolean, gradient: String, lazySrc: String, options: { type: Object, default: () => ({ root: void 0, rootMargin: void 0, threshold: void 0 }) }, sizes: String, src: { type: [String, Object], default: "" }, crossorigin: String, referrerpolicy: String, srcset: String, position: String, ...Na(), ...ye(), ...$n() }, "VImg"), ja = ee()({ name: "VImg", directives: { intersect: eo }, props: rr(), emits: { loadstart: (e) => !0, load: (e) => !0, error: (e) => !0 }, setup(e, n) { +}, unmounted: jo }, yr = H({ alt: String, cover: Boolean, draggable: { type: [Boolean, String], default: void 0 }, eager: Boolean, gradient: String, lazySrc: String, options: { type: Object, default: () => ({ root: void 0, rootMargin: void 0, threshold: void 0 }) }, sizes: String, src: { type: [String, Object], default: "" }, crossorigin: String, referrerpolicy: String, srcset: String, position: String, ...Ma(), ...Se(), ...Cn() }, "VImg"), Ra = oe()({ name: "VImg", directives: { intersect: oo }, props: yr(), emits: { loadstart: (e) => !0, load: (e) => !0, error: (e) => !0 }, setup(e, n) { let { emit: t, slots: l } = n; - const o = We("VImg"), a = de(""), c = D(), u = de(e.eager ? "loading" : "idle"), s = de(), i = de(), p = v(() => e.src && typeof e.src == "object" ? { src: e.src.src, srcset: e.srcset || e.src.srcset, lazySrc: e.lazySrc || e.src.lazySrc, aspect: Number(e.aspectRatio || e.src.aspect || 0) } : { src: e.src, srcset: e.srcset, lazySrc: e.lazySrc, aspect: Number(e.aspectRatio || 0) }), y = v(() => p.value.aspect || s.value / i.value || 0); - function f(B) { - if ((!e.eager || !B) && (!Nl || B || e.eager)) { - if (u.value = "loading", p.value.lazySrc) { - const _ = new Image(); - _.src = p.value.lazySrc, I(_, null); + const o = Ge("VImg"), i = ve(""), c = W(), s = ve(e.eager ? "loading" : "idle"), u = ve(), a = ve(), p = v(() => e.src && typeof e.src == "object" ? { src: e.src.src, srcset: e.srcset || e.src.srcset, lazySrc: e.lazySrc || e.src.lazySrc, aspect: Number(e.aspectRatio || e.src.aspect || 0) } : { src: e.src, srcset: e.srcset, lazySrc: e.lazySrc, aspect: Number(e.aspectRatio || 0) }), f = v(() => p.value.aspect || u.value / a.value || 0); + function y(S) { + if ((!e.eager || !S) && (!Ul || S || e.eager)) { + if (s.value = "loading", p.value.lazySrc) { + const k = new Image(); + k.src = p.value.lazySrc, I(k, null); } - p.value.src && Me(() => { - var _; - t("loadstart", ((_ = c.value) == null ? void 0 : _.currentSrc) || p.value.src), setTimeout(() => { + p.value.src && Ne(() => { + var k; + t("loadstart", ((k = c.value) == null ? void 0 : k.currentSrc) || p.value.src), setTimeout(() => { var C; if (!o.isUnmounted) if ((C = c.value) != null && C.complete) { - if (c.value.naturalWidth || h(), u.value === "error") + if (c.value.naturalWidth || b(), s.value === "error") return; - y.value || I(c.value, null), u.value === "loading" && m(); + f.value || I(c.value, null), s.value === "loading" && g(); } else - y.value || I(c.value), b(); + f.value || I(c.value), m(); }); }); } } - function m() { - var B; - o.isUnmounted || (b(), I(c.value), u.value = "loaded", t("load", ((B = c.value) == null ? void 0 : B.currentSrc) || p.value.src)); - } - function h() { - var B; - o.isUnmounted || (u.value = "error", t("error", ((B = c.value) == null ? void 0 : B.currentSrc) || p.value.src)); + function g() { + var S; + o.isUnmounted || (m(), I(c.value), s.value = "loaded", t("load", ((S = c.value) == null ? void 0 : S.currentSrc) || p.value.src)); } function b() { - const B = c.value; - B && (a.value = B.currentSrc || B.src); - } - J(() => e.src, () => { - f(u.value !== "idle"); - }), J(y, (B, _) => { - !B && _ && c.value && I(c.value); - }), na(() => f()); - let g = -1; - function I(B) { - let _ = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 100; - const C = () => { - if (clearTimeout(g), o.isUnmounted) + var S; + o.isUnmounted || (s.value = "error", t("error", ((S = c.value) == null ? void 0 : S.currentSrc) || p.value.src)); + } + function m() { + const S = c.value; + S && (i.value = S.currentSrc || S.src); + } + Y(() => e.src, () => { + y(s.value !== "idle"); + }), Y(f, (S, k) => { + !S && k && c.value && I(c.value); + }), ia(() => y()); + let h = -1; + function I(S) { + let k = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 100; + const C = () => { + if (clearTimeout(h), o.isUnmounted) return; - const { naturalHeight: O, naturalWidth: w } = B; - O || w ? (s.value = w, i.value = O) : B.complete || u.value !== "loading" || _ == null ? (B.currentSrc.endsWith(".svg") || B.currentSrc.startsWith("data:image/svg+xml")) && (s.value = 1, i.value = 1) : g = window.setTimeout(C, _); + const { naturalHeight: _, naturalWidth: P } = S; + _ || P ? (u.value = P, a.value = _) : S.complete || s.value !== "loading" || k == null ? (S.currentSrc.endsWith(".svg") || S.currentSrc.startsWith("data:image/svg+xml")) && (u.value = 1, a.value = 1) : h = window.setTimeout(C, k); }; C(); } - yt(() => { - clearTimeout(g); + ft(() => { + clearTimeout(h); }); - const k = v(() => ({ "v-img__img--cover": e.cover, "v-img__img--contain": !e.cover })), F = () => { + const F = v(() => ({ "v-img__img--cover": e.cover, "v-img__img--contain": !e.cover })), V = () => { var C; - if (!p.value.src || u.value === "idle") + if (!p.value.src || s.value === "idle") return null; - const B = d("img", { class: ["v-img__img", k.value], style: { objectPosition: e.position }, src: p.value.src, srcset: p.value.srcset, alt: e.alt, crossorigin: e.crossorigin, referrerpolicy: e.referrerpolicy, draggable: e.draggable, sizes: e.sizes, ref: c, onLoad: m, onError: h }, null), _ = (C = l.sources) == null ? void 0 : C.call(l); - return d(Ct, { transition: e.transition, appear: !0 }, { default: () => [Ue(_ ? d("picture", { class: "v-img__picture" }, [_, B]) : B, [[Ht, u.value === "loaded"]])] }); - }, U = () => d(Ct, { transition: e.transition }, { default: () => [p.value.lazySrc && u.value !== "loaded" && d("img", { class: ["v-img__img", "v-img__img--preload", k.value], style: { objectPosition: e.position }, src: p.value.lazySrc, alt: e.alt, crossorigin: e.crossorigin, referrerpolicy: e.referrerpolicy, draggable: e.draggable }, null)] }), $ = () => l.placeholder ? d(Ct, { transition: e.transition, appear: !0 }, { default: () => [(u.value === "loading" || u.value === "error" && !l.error) && d("div", { class: "v-img__placeholder" }, [l.placeholder()])] }) : null, z = () => l.error ? d(Ct, { transition: e.transition, appear: !0 }, { default: () => [u.value === "error" && d("div", { class: "v-img__error" }, [l.error()])] }) : null, L = () => e.gradient ? d("div", { class: "v-img__gradient", style: { backgroundImage: `linear-gradient(${e.gradient})` } }, null) : null, E = de(!1); + const S = d("img", { class: ["v-img__img", F.value], style: { objectPosition: e.position }, src: p.value.src, srcset: p.value.srcset, alt: e.alt, crossorigin: e.crossorigin, referrerpolicy: e.referrerpolicy, draggable: e.draggable, sizes: e.sizes, ref: c, onLoad: g, onError: b }, null), k = (C = l.sources) == null ? void 0 : C.call(l); + return d(St, { transition: e.transition, appear: !0 }, { default: () => [Xe(k ? d("picture", { class: "v-img__picture" }, [k, S]) : S, [[cn, s.value === "loaded"]])] }); + }, N = () => d(St, { transition: e.transition }, { default: () => [p.value.lazySrc && s.value !== "loaded" && d("img", { class: ["v-img__img", "v-img__img--preload", F.value], style: { objectPosition: e.position }, src: p.value.lazySrc, alt: e.alt, crossorigin: e.crossorigin, referrerpolicy: e.referrerpolicy, draggable: e.draggable }, null)] }), w = () => l.placeholder ? d(St, { transition: e.transition, appear: !0 }, { default: () => [(s.value === "loading" || s.value === "error" && !l.error) && d("div", { class: "v-img__placeholder" }, [l.placeholder()])] }) : null, L = () => l.error ? d(St, { transition: e.transition, appear: !0 }, { default: () => [s.value === "error" && d("div", { class: "v-img__error" }, [l.error()])] }) : null, M = () => e.gradient ? d("div", { class: "v-img__gradient", style: { backgroundImage: `linear-gradient(${e.gradient})` } }, null) : null, E = ve(!1); { - const B = J(y, (_) => { - _ && (requestAnimationFrame(() => { + const S = Y(f, (k) => { + k && (requestAnimationFrame(() => { requestAnimationFrame(() => { E.value = !0; }); - }), B()); + }), S()); }); } - return se(() => { - const B = Lo.filterProps(e); - return Ue(d(Lo, Q({ class: ["v-img", { "v-img--booting": !E.value }, e.class], style: [{ width: ie(e.width === "auto" ? s.value : e.width) }, e.style] }, B, { aspectRatio: y.value, "aria-label": e.alt, role: e.alt ? "img" : void 0 }), { additional: () => d(Fe, null, [d(F, null, null), d(U, null, null), d(L, null, null), d($, null, null), d(z, null, null)]), default: l.default }), [[mt("intersect"), { handler: f, options: e.options }, null, { once: !0 }]]); - }), { currentSrc: a, image: c, state: u, naturalWidth: s, naturalHeight: i }; -} }), sr = H({ text: String, clickable: Boolean, ...ye(), ...Ne() }, "VLabel"), Ga = ee()({ name: "VLabel", props: sr(), setup(e, n) { + return ge(() => { + const S = No.filterProps(e); + return Xe(d(No, ee({ class: ["v-img", { "v-img--booting": !E.value }, e.class], style: [{ width: ce(e.width === "auto" ? u.value : e.width) }, e.style] }, S, { aspectRatio: f.value, "aria-label": e.alt, role: e.alt ? "img" : void 0 }), { additional: () => d(we, null, [d(V, null, null), d(N, null, null), d(M, null, null), d(w, null, null), d(L, null, null)]), default: l.default }), [[ht("intersect"), { handler: y, options: e.options }, null, { once: !0 }]]); + }), { currentSrc: i, image: c, state: s, naturalWidth: u, naturalHeight: a }; +} }), mr = H({ start: Boolean, end: Boolean, icon: Ae, image: String, text: String, ...Se(), ...mt(), ...Ct(), ...En(), ...nt(), ...He(), ...Pt({ variant: "flat" }) }, "VAvatar"), kt = oe()({ name: "VAvatar", props: mr(), setup(e, n) { let { slots: t } = n; - return se(() => { + const { themeClasses: l } = Ze(e), { colorClasses: o, colorStyles: i, variantClasses: c } = Wn(e), { densityClasses: s } = bt(e), { roundedClasses: u } = It(e), { sizeClasses: a, sizeStyles: p } = zn(e); + return ge(() => d(e.tag, { class: ["v-avatar", { "v-avatar--start": e.start, "v-avatar--end": e.end }, l.value, o.value, s.value, u.value, a.value, c.value, e.class], style: [i.value, p.value, e.style] }, { default: () => { + var f; + return [e.image ? d(Ra, { key: "image", src: e.image, alt: "", cover: !0 }, null) : e.icon ? d(Ve, { key: "icon", icon: e.icon }, null) : ((f = t.default) == null ? void 0 : f.call(t)) ?? e.text, Ln(!1, "v-avatar")]; + } })), {}; +} }), gr = H({ text: String, clickable: Boolean, ...Se(), ...He() }, "VLabel"), Na = oe()({ name: "VLabel", props: gr(), setup(e, n) { + let { slots: t } = n; + return ge(() => { var l; return d("label", { class: ["v-label", { "v-label--clickable": e.clickable }, e.class], style: e.style }, [e.text, (l = t.default) == null ? void 0 : l.call(t)]); }), {}; -} }), Ua = Symbol.for("vuetify:selection-control-group"), qa = H({ color: String, disabled: { type: Boolean, default: null }, defaultsTarget: String, error: Boolean, id: String, inline: Boolean, falseIcon: Ce, trueIcon: Ce, ripple: { type: Boolean, default: !0 }, multiple: { type: Boolean, default: null }, name: String, readonly: { type: Boolean, default: null }, modelValue: null, type: String, valueComparator: { type: Function, default: nn }, ...ye(), ...ut(), ...Ne() }, "SelectionControlGroup"), ur = H({ ...qa({ defaultsTarget: "VSelectionControl" }) }, "VSelectionControlGroup"); -ee()({ name: "VSelectionControlGroup", props: ur(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { +} }), ja = Symbol.for("vuetify:selection-control-group"), Ga = H({ color: String, disabled: { type: Boolean, default: null }, defaultsTarget: String, error: Boolean, id: String, inline: Boolean, falseIcon: Ae, trueIcon: Ae, ripple: { type: Boolean, default: !0 }, multiple: { type: Boolean, default: null }, name: String, readonly: { type: Boolean, default: null }, modelValue: null, type: String, valueComparator: { type: Function, default: vn }, ...Se(), ...mt(), ...He() }, "SelectionControlGroup"), hr = H({ ...Ga({ defaultsTarget: "VSelectionControl" }) }, "VSelectionControlGroup"); +oe()({ name: "VSelectionControlGroup", props: hr(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { let { slots: t } = n; - const l = $e(e, "modelValue"), o = nt(), a = v(() => e.id || `v-selection-control-group-${o}`), c = v(() => e.name || a.value), u = /* @__PURE__ */ new Set(); - return tt(Ua, { modelValue: l, forceUpdate: () => { - u.forEach((s) => s()); - }, onForceUpdate: (s) => { - u.add(s), He(() => { - u.delete(s); + const l = Te(e, "modelValue"), o = ut(), i = v(() => e.id || `v-selection-control-group-${o}`), c = v(() => e.name || i.value), s = /* @__PURE__ */ new Set(); + return ot(ja, { modelValue: l, forceUpdate: () => { + s.forEach((u) => u()); + }, onForceUpdate: (u) => { + s.add(u), Je(() => { + s.delete(u); }); - } }), ln({ [e.defaultsTarget]: { color: ae(e, "color"), disabled: ae(e, "disabled"), density: ae(e, "density"), error: ae(e, "error"), inline: ae(e, "inline"), modelValue: l, multiple: v(() => !!e.multiple || e.multiple == null && Array.isArray(l.value)), name: c, falseIcon: ae(e, "falseIcon"), trueIcon: ae(e, "trueIcon"), readonly: ae(e, "readonly"), ripple: ae(e, "ripple"), type: ae(e, "type"), valueComparator: ae(e, "valueComparator") } }), se(() => { - var s; - return d("div", { class: ["v-selection-control-group", { "v-selection-control-group--inline": e.inline }, e.class], style: e.style, role: e.type === "radio" ? "radiogroup" : void 0 }, [(s = t.default) == null ? void 0 : s.call(t)]); + } }), fn({ [e.defaultsTarget]: { color: ue(e, "color"), disabled: ue(e, "disabled"), density: ue(e, "density"), error: ue(e, "error"), inline: ue(e, "inline"), modelValue: l, multiple: v(() => !!e.multiple || e.multiple == null && Array.isArray(l.value)), name: c, falseIcon: ue(e, "falseIcon"), trueIcon: ue(e, "trueIcon"), readonly: ue(e, "readonly"), ripple: ue(e, "ripple"), type: ue(e, "type"), valueComparator: ue(e, "valueComparator") } }), ge(() => { + var u; + return d("div", { class: ["v-selection-control-group", { "v-selection-control-group--inline": e.inline }, e.class], style: e.style, role: e.type === "radio" ? "radiogroup" : void 0 }, [(u = t.default) == null ? void 0 : u.call(t)]); }), {}; } }); -const to = H({ label: String, baseColor: String, trueValue: null, falseValue: null, value: null, ...ye(), ...qa() }, "VSelectionControl"), el = ee()({ name: "VSelectionControl", directives: { Ripple: Pn }, inheritAttrs: !1, props: to(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { +const ao = H({ label: String, baseColor: String, trueValue: null, falseValue: null, value: null, ...Se(), ...Ga() }, "VSelectionControl"), rl = oe()({ name: "VSelectionControl", directives: { Ripple: Rn }, inheritAttrs: !1, props: ao(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { let { attrs: t, slots: l } = n; - const { group: o, densityClasses: a, icon: c, model: u, textColorClasses: s, textColorStyles: i, backgroundColorClasses: p, backgroundColorStyles: y, trueValue: f } = function($) { - const z = me(Ua, void 0), { densityClasses: L } = gt($), E = $e($, "modelValue"), B = v(() => $.trueValue !== void 0 ? $.trueValue : $.value === void 0 || $.value), _ = v(() => $.falseValue !== void 0 && $.falseValue), C = v(() => !!$.multiple || $.multiple == null && Array.isArray(E.value)), O = v({ get() { - const S = z ? z.modelValue.value : E.value; - return C.value ? dt(S).some((x) => $.valueComparator(x, B.value)) : $.valueComparator(S, B.value); - }, set(S) { - if ($.readonly) + const { group: o, densityClasses: i, icon: c, model: s, textColorClasses: u, textColorStyles: a, backgroundColorClasses: p, backgroundColorStyles: f, trueValue: y } = function(w) { + const L = Ie(ja, void 0), { densityClasses: M } = bt(w), E = Te(w, "modelValue"), S = v(() => w.trueValue !== void 0 ? w.trueValue : w.value === void 0 || w.value), k = v(() => w.falseValue !== void 0 && w.falseValue), C = v(() => !!w.multiple || w.multiple == null && Array.isArray(E.value)), _ = v({ get() { + const B = L ? L.modelValue.value : E.value; + return C.value ? lt(B).some((A) => w.valueComparator(A, S.value)) : w.valueComparator(B, S.value); + }, set(B) { + if (w.readonly) return; - const x = S ? B.value : _.value; - let W = x; - C.value && (W = S ? [...dt(E.value), x] : dt(E.value).filter((R) => !$.valueComparator(R, B.value))), z ? z.modelValue.value = W : E.value = W; - } }), { textColorClasses: w, textColorStyles: M } = ft(v(() => { - if (!$.error && !$.disabled) - return O.value ? $.color : $.baseColor; - })), { backgroundColorClasses: V, backgroundColorStyles: A } = Gt(v(() => !O.value || $.error || $.disabled ? void 0 : $.color)), P = v(() => O.value ? $.trueIcon : $.falseIcon); - return { group: z, densityClasses: L, trueValue: B, falseValue: _, model: O, textColorClasses: w, textColorStyles: M, backgroundColorClasses: V, backgroundColorStyles: A, icon: P }; - }(e), m = nt(), h = v(() => e.id || `input-${m}`), b = de(!1), g = de(!1), I = D(); - function k($) { - b.value = !0, Yn($.target, ":focus-visible") !== !1 && (g.value = !0); - } - function F() { - b.value = !1, g.value = !1; - } - function U($) { - e.readonly && o && Me(() => o.forceUpdate()), u.value = $.target.checked; + const A = B ? S.value : k.value; + let U = A; + C.value && (U = B ? [...lt(E.value), A] : lt(E.value).filter((j) => !w.valueComparator(j, S.value))), L ? L.modelValue.value = U : E.value = U; + } }), { textColorClasses: P, textColorStyles: G } = vt(v(() => { + if (!w.error && !w.disabled) + return _.value ? w.color : w.baseColor; + })), { backgroundColorClasses: $, backgroundColorStyles: O } = rn(v(() => !_.value || w.error || w.disabled ? void 0 : w.color)), T = v(() => _.value ? w.trueIcon : w.falseIcon); + return { group: L, densityClasses: M, trueValue: S, falseValue: k, model: _, textColorClasses: P, textColorStyles: G, backgroundColorClasses: $, backgroundColorStyles: O, icon: T }; + }(e), g = ut(), b = v(() => e.id || `input-${g}`), m = ve(!1), h = ve(!1), I = W(); + function F(w) { + m.value = !0, an(w.target, ":focus-visible") !== !1 && (h.value = !0); + } + function V() { + m.value = !1, h.value = !1; + } + function N(w) { + e.readonly && o && Ne(() => o.forceUpdate()), s.value = w.target.checked; } return o == null || o.onForceUpdate(() => { - I.value && (I.value.checked = u.value); - }), se(() => { - var B, _; - const $ = l.label ? l.label({ label: e.label, props: { for: h.value } }) : e.label, [z, L] = kn(t), E = d("input", Q({ ref: I, checked: u.value, disabled: !(!e.readonly && !e.disabled), id: h.value, onBlur: F, onFocus: k, onInput: U, "aria-disabled": !(!e.readonly && !e.disabled), type: e.type, value: f.value, name: e.name, "aria-checked": e.type === "checkbox" ? u.value : void 0 }, L), null); - return d("div", Q({ class: ["v-selection-control", { "v-selection-control--dirty": u.value, "v-selection-control--disabled": e.disabled, "v-selection-control--error": e.error, "v-selection-control--focused": b.value, "v-selection-control--focus-visible": g.value, "v-selection-control--inline": e.inline }, a.value, e.class] }, z, { style: e.style }), [d("div", { class: ["v-selection-control__wrapper", s.value], style: i.value }, [(B = l.default) == null ? void 0 : B.call(l, { backgroundColorClasses: p, backgroundColorStyles: y }), Ue(d("div", { class: ["v-selection-control__input"] }, [((_ = l.input) == null ? void 0 : _.call(l, { model: u, textColorClasses: s, textColorStyles: i, backgroundColorClasses: p, backgroundColorStyles: y, inputNode: E, icon: c.value, props: { onFocus: k, onBlur: F, id: h.value } })) ?? d(Fe, null, [c.value && d(Se, { key: "icon", icon: c.value }, null), E])]), [[mt("ripple"), e.ripple && [!e.disabled && !e.readonly, null, ["center", "circle"]]]])]), $ && d(Ga, { for: h.value, clickable: !0, onClick: (C) => C.stopPropagation() }, { default: () => [$] })]); - }), { isFocused: b, input: I }; -} }), Ha = H({ indeterminate: Boolean, indeterminateIcon: { type: Ce, default: "$checkboxIndeterminate" }, ...to({ falseIcon: "$checkboxOff", trueIcon: "$checkboxOn" }) }, "VCheckboxBtn"), Al = ee()({ name: "VCheckboxBtn", props: Ha(), emits: { "update:modelValue": (e) => !0, "update:indeterminate": (e) => !0 }, setup(e, n) { + I.value && (I.value.checked = s.value); + }), ge(() => { + var S, k; + const w = l.label ? l.label({ label: e.label, props: { for: b.value } }) : e.label, [L, M] = $n(t), E = d("input", ee({ ref: I, checked: s.value, disabled: !(!e.readonly && !e.disabled), id: b.value, onBlur: V, onFocus: F, onInput: N, "aria-disabled": !(!e.readonly && !e.disabled), type: e.type, value: y.value, name: e.name, "aria-checked": e.type === "checkbox" ? s.value : void 0 }, M), null); + return d("div", ee({ class: ["v-selection-control", { "v-selection-control--dirty": s.value, "v-selection-control--disabled": e.disabled, "v-selection-control--error": e.error, "v-selection-control--focused": m.value, "v-selection-control--focus-visible": h.value, "v-selection-control--inline": e.inline }, i.value, e.class] }, L, { style: e.style }), [d("div", { class: ["v-selection-control__wrapper", u.value], style: a.value }, [(S = l.default) == null ? void 0 : S.call(l, { backgroundColorClasses: p, backgroundColorStyles: f }), Xe(d("div", { class: ["v-selection-control__input"] }, [((k = l.input) == null ? void 0 : k.call(l, { model: s, textColorClasses: u, textColorStyles: a, backgroundColorClasses: p, backgroundColorStyles: f, inputNode: E, icon: c.value, props: { onFocus: F, onBlur: V, id: b.value } })) ?? d(we, null, [c.value && d(Ve, { key: "icon", icon: c.value }, null), E])]), [[ht("ripple"), e.ripple && [!e.disabled && !e.readonly, null, ["center", "circle"]]]])]), w && d(Na, { for: b.value, clickable: !0, onClick: (C) => C.stopPropagation() }, { default: () => [w] })]); + }), { isFocused: m, input: I }; +} }), Ua = H({ indeterminate: Boolean, indeterminateIcon: { type: Ae, default: "$checkboxIndeterminate" }, ...ao({ falseIcon: "$checkboxOff", trueIcon: "$checkboxOn" }) }, "VCheckboxBtn"), sl = oe()({ name: "VCheckboxBtn", props: Ua(), emits: { "update:modelValue": (e) => !0, "update:indeterminate": (e) => !0 }, setup(e, n) { let { slots: t } = n; - const l = $e(e, "indeterminate"), o = $e(e, "modelValue"); - function a(s) { + const l = Te(e, "indeterminate"), o = Te(e, "modelValue"); + function i(u) { l.value && (l.value = !1); } - const c = v(() => l.value ? e.indeterminateIcon : e.falseIcon), u = v(() => l.value ? e.indeterminateIcon : e.trueIcon); - return se(() => { - const s = Tt(el.filterProps(e), ["modelValue"]); - return d(el, Q(s, { modelValue: o.value, "onUpdate:modelValue": [(i) => o.value = i, a], class: ["v-checkbox-btn", e.class], style: e.style, type: "checkbox", falseIcon: c.value, trueIcon: u.value, "aria-checked": l.value ? "mixed" : void 0 }), t); + const c = v(() => l.value ? e.indeterminateIcon : e.falseIcon), s = v(() => l.value ? e.indeterminateIcon : e.trueIcon); + return ge(() => { + const u = Ot(rl.filterProps(e), ["modelValue"]); + return d(rl, ee(u, { modelValue: o.value, "onUpdate:modelValue": [(a) => o.value = a, i], class: ["v-checkbox-btn", e.class], style: e.style, type: "checkbox", falseIcon: c.value, trueIcon: s.value, "aria-checked": l.value ? "mixed" : void 0 }), t); }), {}; } }); -function Ya(e) { - const { t: n } = Xl(); +function qa(e) { + const { t: n } = vl(); return { InputIcon: function(t) { let { name: l } = t; - const o = { prepend: "prependAction", prependInner: "prependAction", append: "appendAction", appendInner: "appendAction", clear: "clear" }[l], a = e[`onClick:${l}`], c = a && o ? n(`$vuetify.input.${o}`, e.label ?? "") : void 0; - return d(Se, { icon: e[`${l}Icon`], "aria-label": c, onClick: a }, null); + const o = { prepend: "prependAction", prependInner: "prependAction", append: "appendAction", appendInner: "appendAction", clear: "clear" }[l], i = e[`onClick:${l}`], c = i && o ? n(`$vuetify.input.${o}`, e.label ?? "") : void 0; + return d(Ve, { icon: e[`${l}Icon`], "aria-label": c, onClick: i }, null); } }; } -const cr = H({ active: Boolean, color: String, messages: { type: [Array, String], default: () => [] }, ...ye(), ...$n({ transition: { component: Ma, leaveAbsolute: !0, group: !0 } }) }, "VMessages"), dr = ee()({ name: "VMessages", props: cr(), setup(e, n) { +const br = H({ disabled: Boolean, group: Boolean, hideOnLeave: Boolean, leaveAbsolute: Boolean, mode: String, origin: String }, "transition"); +function et(e, n, t) { + return oe()({ name: e, props: br({ mode: t, origin: n }), setup(l, o) { + let { slots: i } = o; + const c = { onBeforeEnter(s) { + l.origin && (s.style.transformOrigin = l.origin); + }, onLeave(s) { + if (l.leaveAbsolute) { + const { offsetTop: u, offsetLeft: a, offsetWidth: p, offsetHeight: f } = s; + s._transitionInitialStyles = { position: s.style.position, top: s.style.top, left: s.style.left, width: s.style.width, height: s.style.height }, s.style.position = "absolute", s.style.top = `${u}px`, s.style.left = `${a}px`, s.style.width = `${p}px`, s.style.height = `${f}px`; + } + l.hideOnLeave && s.style.setProperty("display", "none", "important"); + }, onAfterLeave(s) { + if (l.leaveAbsolute && (s != null && s._transitionInitialStyles)) { + const { position: u, top: a, left: p, width: f, height: y } = s._transitionInitialStyles; + delete s._transitionInitialStyles, s.style.position = u || "", s.style.top = a || "", s.style.left = p || "", s.style.width = f || "", s.style.height = y || ""; + } + } }; + return () => { + const s = l.group ? _i : Wt; + return dl(s, { name: l.disabled ? "" : e, css: !l.disabled, ...l.group ? void 0 : { mode: l.mode }, ...l.disabled ? {} : c }, i.default); + }; + } }); +} +function Ha(e, n) { + let t = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : "in-out"; + return oe()({ name: e, props: { mode: { type: String, default: t }, disabled: Boolean }, setup(l, o) { + let { slots: i } = o; + return () => dl(Wt, { name: l.disabled ? "" : e, css: !l.disabled, ...l.disabled ? {} : n }, i.default); + } }); +} +function Ka() { + let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : ""; + const n = arguments.length > 1 && arguments[1] !== void 0 && arguments[1] ? "width" : "height", t = aa(`offset-${n}`); + return { onBeforeEnter(i) { + i._parent = i.parentNode, i._initialStyle = { transition: i.style.transition, overflow: i.style.overflow, [n]: i.style[n] }; + }, onEnter(i) { + const c = i._initialStyle; + i.style.setProperty("transition", "none", "important"), i.style.overflow = "hidden"; + const s = `${i[t]}px`; + i.style[n] = "0", i.offsetHeight, i.style.transition = c.transition, e && i._parent && i._parent.classList.add(e), requestAnimationFrame(() => { + i.style[n] = s; + }); + }, onAfterEnter: o, onEnterCancelled: o, onLeave(i) { + i._initialStyle = { transition: "", overflow: i.style.overflow, [n]: i.style[n] }, i.style.overflow = "hidden", i.style[n] = `${i[t]}px`, i.offsetHeight, requestAnimationFrame(() => i.style[n] = "0"); + }, onAfterLeave: l, onLeaveCancelled: l }; + function l(i) { + e && i._parent && i._parent.classList.remove(e), o(i); + } + function o(i) { + const c = i._initialStyle[n]; + i.style.overflow = i._initialStyle.overflow, c != null && (i.style[n] = c), delete i._initialStyle; + } +} +const Cr = H({ target: [Object, Array] }, "v-dialog-transition"), Xa = oe()({ name: "VDialogTransition", props: Cr(), setup(e, n) { let { slots: t } = n; - const l = v(() => dt(e.messages)), { textColorClasses: o, textColorStyles: a } = ft(v(() => e.color)); - return se(() => d(Ct, { transition: e.transition, tag: "div", class: ["v-messages", o.value, e.class], style: [a.value, e.style], role: "alert", "aria-live": "polite" }, { default: () => [e.active && l.value.map((c, u) => d("div", { class: "v-messages__message", key: `${u}-${l.value}` }, [t.message ? t.message({ message: c }) : c]))] })), {}; -} }), Xa = H({ focused: Boolean, "onUpdate:focused": at() }, "focus"); -function En(e) { - let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : st(); - const t = $e(e, "focused"); + const l = { onBeforeEnter(o) { + o.style.pointerEvents = "none", o.style.visibility = "hidden"; + }, async onEnter(o, i) { + var y; + await new Promise((g) => requestAnimationFrame(g)), await new Promise((g) => requestAnimationFrame(g)), o.style.visibility = ""; + const { x: c, y: s, sx: u, sy: a, speed: p } = Uo(e.target, o), f = ln(o, [{ transform: `translate(${c}px, ${s}px) scale(${u}, ${a})`, opacity: 0 }, {}], { duration: 225 * p, easing: "cubic-bezier(0.0, 0, 0.2, 1)" }); + (y = Go(o)) == null || y.forEach((g) => { + ln(g, [{ opacity: 0 }, { opacity: 0, offset: 0.33 }, {}], { duration: 450 * p, easing: ll }); + }), f.finished.then(() => i()); + }, onAfterEnter(o) { + o.style.removeProperty("pointer-events"); + }, onBeforeLeave(o) { + o.style.pointerEvents = "none"; + }, async onLeave(o, i) { + var f; + await new Promise((y) => requestAnimationFrame(y)); + const { x: c, y: s, sx: u, sy: a, speed: p } = Uo(e.target, o); + ln(o, [{}, { transform: `translate(${c}px, ${s}px) scale(${u}, ${a})`, opacity: 0 }], { duration: 125 * p, easing: "cubic-bezier(0.4, 0, 1, 1)" }).finished.then(() => i()), (f = Go(o)) == null || f.forEach((y) => { + ln(y, [{}, { opacity: 0, offset: 0.2 }, { opacity: 0 }], { duration: 250 * p, easing: ll }); + }); + }, onAfterLeave(o) { + o.style.removeProperty("pointer-events"); + } }; + return () => e.target ? d(Wt, ee({ name: "dialog-transition" }, l, { css: !1 }), t) : d(Wt, { name: "dialog-transition" }, t); +} }); +function Go(e) { + var t; + const n = (t = e.querySelector(":scope > .v-card, :scope > .v-sheet, :scope > .v-list")) == null ? void 0 : t.children; + return n && [...n]; +} +function Uo(e, n) { + const t = ga(e), l = Kl(n), [o, i] = getComputedStyle(n).transformOrigin.split(" ").map((I) => parseFloat(I)), [c, s] = getComputedStyle(n).getPropertyValue("--v-overlay-anchor-origin").split(" "); + let u = t.left + t.width / 2; + c === "left" || s === "left" ? u -= t.width / 2 : c !== "right" && s !== "right" || (u += t.width / 2); + let a = t.top + t.height / 2; + c === "top" || s === "top" ? a -= t.height / 2 : c !== "bottom" && s !== "bottom" || (a += t.height / 2); + const p = t.width / l.width, f = t.height / l.height, y = Math.max(1, p, f), g = p / y || 0, b = f / y || 0, m = l.width * l.height / (window.innerWidth * window.innerHeight), h = m > 0.12 ? Math.min(1.5, 10 * (m - 0.12) + 1) : 1; + return { x: u - (o + l.left), y: a - (i + l.top), sx: g, sy: b, speed: h }; +} +et("fab-transition", "center center", "out-in"), et("dialog-bottom-transition"), et("dialog-top-transition"), et("fade-transition"); +const Ir = et("scale-transition"); +et("scroll-x-transition"), et("scroll-x-reverse-transition"), et("scroll-y-transition"), et("scroll-y-reverse-transition"), et("slide-x-transition"), et("slide-x-reverse-transition"); +const Ya = et("slide-y-transition"); +et("slide-y-reverse-transition"); +const Sr = Ha("expand-transition", Ka()), Ja = Ha("expand-x-transition", Ka("", !0)), Br = H({ active: Boolean, color: String, messages: { type: [Array, String], default: () => [] }, ...Se(), ...Cn({ transition: { component: Ya, leaveAbsolute: !0, group: !0 } }) }, "VMessages"), xr = oe()({ name: "VMessages", props: Br(), setup(e, n) { + let { slots: t } = n; + const l = v(() => lt(e.messages)), { textColorClasses: o, textColorStyles: i } = vt(v(() => e.color)); + return ge(() => d(St, { transition: e.transition, tag: "div", class: ["v-messages", o.value, e.class], style: [i.value, e.style], role: "alert", "aria-live": "polite" }, { default: () => [e.active && l.value.map((c, s) => d("div", { class: "v-messages__message", key: `${s}-${l.value}` }, [t.message ? t.message({ message: c }) : c]))] })), {}; +} }), Qa = H({ focused: Boolean, "onUpdate:focused": pt() }, "focus"); +function jn(e) { + let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : yt(); + const t = Te(e, "focused"); return { focusClasses: v(() => ({ [`${n}--focused`]: t.value })), isFocused: t, focus: function() { t.value = !0; }, blur: function() { t.value = !1; } }; } -const pr = Symbol.for("vuetify:form"); -function Ka() { - return me(pr, null); +const kr = Symbol.for("vuetify:form"); +function io() { + return Ie(kr, null); } -const vr = H({ disabled: { type: Boolean, default: null }, error: Boolean, errorMessages: { type: [Array, String], default: () => [] }, maxErrors: { type: [Number, String], default: 1 }, name: String, label: String, readonly: { type: Boolean, default: null }, rules: { type: Array, default: () => [] }, modelValue: null, validateOn: String, validationValue: null, ...Xa() }, "validation"), Tn = H({ id: String, appendIcon: Ce, centerAffix: { type: Boolean, default: !0 }, prependIcon: Ce, hideDetails: [Boolean, String], hideSpinButtons: Boolean, hint: String, persistentHint: Boolean, messages: { type: [Array, String], default: () => [] }, direction: { type: String, default: "horizontal", validator: (e) => ["horizontal", "vertical"].includes(e) }, "onClick:prepend": at(), "onClick:append": at(), ...ye(), ...ut(), ...vr() }, "VInput"), St = ee()({ name: "VInput", props: { ...Tn() }, emits: { "update:modelValue": (e) => !0 }, setup(e, n) { +const wr = H({ disabled: { type: Boolean, default: null }, error: Boolean, errorMessages: { type: [Array, String], default: () => [] }, maxErrors: { type: [Number, String], default: 1 }, name: String, label: String, readonly: { type: Boolean, default: null }, rules: { type: Array, default: () => [] }, modelValue: null, validateOn: String, validationValue: null, ...Qa() }, "validation"), Gn = H({ id: String, appendIcon: Ae, centerAffix: { type: Boolean, default: !0 }, prependIcon: Ae, hideDetails: [Boolean, String], hideSpinButtons: Boolean, hint: String, persistentHint: Boolean, messages: { type: [Array, String], default: () => [] }, direction: { type: String, default: "horizontal", validator: (e) => ["horizontal", "vertical"].includes(e) }, "onClick:prepend": pt(), "onClick:append": pt(), ...Se(), ...mt(), ...wr() }, "VInput"), wt = oe()({ name: "VInput", props: { ...Gn() }, emits: { "update:modelValue": (e) => !0 }, setup(e, n) { let { attrs: t, slots: l, emit: o } = n; - const { densityClasses: a } = gt(e), { rtlClasses: c } = On(), { InputIcon: u } = Ya(e), s = nt(), i = v(() => e.id || `input-${s}`), p = v(() => `${i.value}-messages`), { errorMessages: y, isDirty: f, isDisabled: m, isReadonly: h, isPristine: b, isValid: g, isValidating: I, reset: k, resetValidation: F, validate: U, validationClasses: $ } = function(E) { - let B = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : st(), _ = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : nt(); - const C = $e(E, "modelValue"), O = v(() => E.validationValue === void 0 ? C.value : E.validationValue), w = Ka(), M = D([]), V = de(!0), A = v(() => !(!dt(C.value === "" ? null : C.value).length && !dt(O.value === "" ? null : O.value).length)), P = v(() => !!(E.disabled ?? (w == null ? void 0 : w.isDisabled.value))), S = v(() => !!(E.readonly ?? (w == null ? void 0 : w.isReadonly.value))), x = v(() => { - var X; - return (X = E.errorMessages) != null && X.length ? dt(E.errorMessages).concat(M.value).slice(0, Math.max(0, +E.maxErrors)) : M.value; - }), W = v(() => { - let X = (E.validateOn ?? (w == null ? void 0 : w.validateOn.value)) || "input"; - X === "lazy" && (X = "input lazy"); - const te = new Set((X == null ? void 0 : X.split(" ")) ?? []); - return { blur: te.has("blur") || te.has("input"), input: te.has("input"), submit: te.has("submit"), lazy: te.has("lazy") }; - }), R = v(() => { - var X; - return !E.error && !((X = E.errorMessages) != null && X.length) && (!E.rules.length || (V.value ? !M.value.length && !W.value.lazy || null : !M.value.length)); - }), Y = de(!1), q = v(() => ({ [`${B}--error`]: R.value === !1, [`${B}--dirty`]: A.value, [`${B}--disabled`]: P.value, [`${B}--readonly`]: S.value })), T = v(() => E.name ?? r(_)); - function N() { - C.value = null, Me(j); + const { densityClasses: i } = bt(e), { rtlClasses: c } = Mn(), { InputIcon: s } = qa(e), u = ut(), a = v(() => e.id || `input-${u}`), p = v(() => `${a.value}-messages`), { errorMessages: f, isDirty: y, isDisabled: g, isReadonly: b, isPristine: m, isValid: h, isValidating: I, reset: F, resetValidation: V, validate: N, validationClasses: w } = function(E) { + let S = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : yt(), k = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : ut(); + const C = Te(E, "modelValue"), _ = v(() => E.validationValue === void 0 ? C.value : E.validationValue), P = io(), G = W([]), $ = ve(!0), O = v(() => !(!lt(C.value === "" ? null : C.value).length && !lt(_.value === "" ? null : _.value).length)), T = v(() => !!(E.disabled ?? (P == null ? void 0 : P.isDisabled.value))), B = v(() => !!(E.readonly ?? (P == null ? void 0 : P.isReadonly.value))), A = v(() => { + var x; + return (x = E.errorMessages) != null && x.length ? lt(E.errorMessages).concat(G.value).slice(0, Math.max(0, +E.maxErrors)) : G.value; + }), U = v(() => { + let x = (E.validateOn ?? (P == null ? void 0 : P.validateOn.value)) || "input"; + x === "lazy" && (x = "input lazy"); + const K = new Set((x == null ? void 0 : x.split(" ")) ?? []); + return { blur: K.has("blur") || K.has("input"), input: K.has("input"), submit: K.has("submit"), lazy: K.has("lazy") }; + }), j = v(() => { + var x; + return !E.error && !((x = E.errorMessages) != null && x.length) && (!E.rules.length || ($.value ? !G.value.length && !U.value.lazy || null : !G.value.length)); + }), X = ve(!1), q = v(() => ({ [`${S}--error`]: j.value === !1, [`${S}--dirty`]: O.value, [`${S}--disabled`]: T.value, [`${S}--readonly`]: B.value })), J = v(() => E.name ?? r(k)); + function R() { + C.value = null, Ne(z); } - function j() { - V.value = !0, W.value.lazy ? M.value = [] : G(!0); + function z() { + $.value = !0, U.value.lazy ? G.value = [] : D(!0); } - async function G() { - let X = arguments.length > 0 && arguments[0] !== void 0 && arguments[0]; - const te = []; - Y.value = !0; - for (const pe of E.rules) { - if (te.length >= +(E.maxErrors ?? 1)) + async function D() { + let x = arguments.length > 0 && arguments[0] !== void 0 && arguments[0]; + const K = []; + X.value = !0; + for (const te of E.rules) { + if (K.length >= +(E.maxErrors ?? 1)) break; - const ge = typeof pe == "function" ? pe : () => pe, he = await ge(O.value); - he !== !0 && (he === !1 || typeof he == "string" ? te.push(he || "") : console.warn(`${he} is not a valid value. Rule functions must return boolean true or a string.`)); + const re = typeof te == "function" ? te : () => te, Q = await re(_.value); + Q !== !0 && (Q === !1 || typeof Q == "string" ? K.push(Q || "") : console.warn(`${Q} is not a valid value. Rule functions must return boolean true or a string.`)); } - return M.value = te, Y.value = !1, V.value = X, M.value; + return G.value = K, X.value = !1, $.value = x, G.value; } - return na(() => { - w == null || w.register({ id: T.value, validate: G, reset: N, resetValidation: j }); - }), yt(() => { - w == null || w.unregister(T.value); - }), qt(async () => { - W.value.lazy || await G(!0), w == null || w.update(T.value, R.value, x.value); - }), Ft(() => W.value.input, () => { - J(O, () => { - if (O.value != null) - G(); + return ia(() => { + P == null || P.register({ id: J.value, validate: D, reset: R, resetValidation: z }); + }), ft(() => { + P == null || P.unregister(J.value); + }), un(async () => { + U.value.lazy || await D(!0), P == null || P.update(J.value, j.value, A.value); + }), Lt(() => U.value.input, () => { + Y(_, () => { + if (_.value != null) + D(); else if (E.focused) { - const X = J(() => E.focused, (te) => { - te || G(), X(); + const x = Y(() => E.focused, (K) => { + K || D(), x(); }); } }); - }), Ft(() => W.value.blur, () => { - J(() => E.focused, (X) => { - X || G(); + }), Lt(() => U.value.blur, () => { + Y(() => E.focused, (x) => { + x || D(); }); - }), J(R, () => { - w == null || w.update(T.value, R.value, x.value); - }), { errorMessages: x, isDirty: A, isDisabled: P, isReadonly: S, isPristine: V, isValid: R, isValidating: Y, reset: N, resetValidation: j, validate: G, validationClasses: q }; - }(e, "v-input", i), z = v(() => ({ id: i, messagesId: p, isDirty: f, isDisabled: m, isReadonly: h, isPristine: b, isValid: g, isValidating: I, reset: k, resetValidation: F, validate: U })), L = v(() => { + }), Y(j, () => { + P == null || P.update(J.value, j.value, A.value); + }), { errorMessages: A, isDirty: O, isDisabled: T, isReadonly: B, isPristine: $, isValid: j, isValidating: X, reset: R, resetValidation: z, validate: D, validationClasses: q }; + }(e, "v-input", a), L = v(() => ({ id: a, messagesId: p, isDirty: y, isDisabled: g, isReadonly: b, isPristine: m, isValid: h, isValidating: I, reset: F, resetValidation: V, validate: N })), M = v(() => { var E; - return (E = e.errorMessages) != null && E.length || !b.value && y.value.length ? y.value : e.hint && (e.persistentHint || e.focused) ? e.hint : e.messages; + return (E = e.errorMessages) != null && E.length || !m.value && f.value.length ? f.value : e.hint && (e.persistentHint || e.focused) ? e.hint : e.messages; }); - return se(() => { - var O, w, M, V; - const E = !(!l.prepend && !e.prependIcon), B = !(!l.append && !e.appendIcon), _ = L.value.length > 0, C = !e.hideDetails || e.hideDetails === "auto" && (_ || !!l.details); - return d("div", { class: ["v-input", `v-input--${e.direction}`, { "v-input--center-affix": e.centerAffix, "v-input--hide-spin-buttons": e.hideSpinButtons }, a.value, c.value, $.value, e.class], style: e.style }, [E && d("div", { key: "prepend", class: "v-input__prepend" }, [(O = l.prepend) == null ? void 0 : O.call(l, z.value), e.prependIcon && d(u, { key: "prepend-icon", name: "prepend" }, null)]), l.default && d("div", { class: "v-input__control" }, [(w = l.default) == null ? void 0 : w.call(l, z.value)]), B && d("div", { key: "append", class: "v-input__append" }, [e.appendIcon && d(u, { key: "append-icon", name: "append" }, null), (M = l.append) == null ? void 0 : M.call(l, z.value)]), C && d("div", { class: "v-input__details" }, [d(dr, { id: p.value, active: _, messages: L.value }, { message: l.message }), (V = l.details) == null ? void 0 : V.call(l, z.value)])]); - }), { reset: k, resetValidation: F, validate: U, isValid: g, errorMessages: y }; -} }), fr = H({ ...Tn(), ...Tt(Ha(), ["inline"]) }, "VCheckbox"), yr = ee()({ name: "VCheckbox", inheritAttrs: !1, props: fr(), emits: { "update:modelValue": (e) => !0, "update:focused": (e) => !0 }, setup(e, n) { + return ge(() => { + var _, P, G, $; + const E = !(!l.prepend && !e.prependIcon), S = !(!l.append && !e.appendIcon), k = M.value.length > 0, C = !e.hideDetails || e.hideDetails === "auto" && (k || !!l.details); + return d("div", { class: ["v-input", `v-input--${e.direction}`, { "v-input--center-affix": e.centerAffix, "v-input--hide-spin-buttons": e.hideSpinButtons }, i.value, c.value, w.value, e.class], style: e.style }, [E && d("div", { key: "prepend", class: "v-input__prepend" }, [(_ = l.prepend) == null ? void 0 : _.call(l, L.value), e.prependIcon && d(s, { key: "prepend-icon", name: "prepend" }, null)]), l.default && d("div", { class: "v-input__control" }, [(P = l.default) == null ? void 0 : P.call(l, L.value)]), S && d("div", { key: "append", class: "v-input__append" }, [e.appendIcon && d(s, { key: "append-icon", name: "append" }, null), (G = l.append) == null ? void 0 : G.call(l, L.value)]), C && d("div", { class: "v-input__details" }, [d(xr, { id: p.value, active: k, messages: M.value }, { message: l.message }), ($ = l.details) == null ? void 0 : $.call(l, L.value)])]); + }), { reset: F, resetValidation: V, validate: N, isValid: h, errorMessages: f }; +} }), Fr = H({ ...Gn(), ...Ot(Ua(), ["inline"]) }, "VCheckbox"), Ar = oe()({ name: "VCheckbox", inheritAttrs: !1, props: Fr(), emits: { "update:modelValue": (e) => !0, "update:focused": (e) => !0 }, setup(e, n) { let { attrs: t, slots: l } = n; - const o = $e(e, "modelValue"), { isFocused: a, focus: c, blur: u } = En(e), s = nt(), i = v(() => e.id || `checkbox-${s}`); - return se(() => { - const [p, y] = kn(t), f = St.filterProps(e), m = Al.filterProps(e); - return d(St, Q({ class: ["v-checkbox", e.class] }, p, f, { modelValue: o.value, "onUpdate:modelValue": (h) => o.value = h, id: i.value, focused: a.value, style: e.style }), { ...l, default: (h) => { - let { id: b, messagesId: g, isDisabled: I, isReadonly: k } = h; - return d(Al, Q(m, { id: b.value, "aria-describedby": g.value, disabled: I.value, readonly: k.value }, y, { modelValue: o.value, "onUpdate:modelValue": (F) => o.value = F, onFocus: c, onBlur: u }), l); + const o = Te(e, "modelValue"), { isFocused: i, focus: c, blur: s } = jn(e), u = ut(), a = v(() => e.id || `checkbox-${u}`); + return ge(() => { + const [p, f] = $n(t), y = wt.filterProps(e), g = sl.filterProps(e); + return d(wt, ee({ class: ["v-checkbox", e.class] }, p, y, { modelValue: o.value, "onUpdate:modelValue": (b) => o.value = b, id: a.value, focused: i.value, style: e.style }), { ...l, default: (b) => { + let { id: m, messagesId: h, isDisabled: I, isReadonly: F } = b; + return d(sl, ee(g, { id: m.value, "aria-describedby": h.value, disabled: I.value, readonly: F.value }, f, { modelValue: o.value, "onUpdate:modelValue": (V) => o.value = V, onFocus: c, onBlur: s }), l); } }); }), {}; -} }), mr = H({ start: Boolean, end: Boolean, icon: Ce, image: String, text: String, ...ye(), ...ut(), ...ht(), ...Vn(), ...et(), ...Ne(), ...xt({ variant: "flat" }) }, "VAvatar"), Ut = ee()({ name: "VAvatar", props: mr(), setup(e, n) { +} }), Za = Symbol.for("vuetify:v-chip-group"), Vr = H({ column: Boolean, filter: Boolean, valueComparator: { type: Function, default: vn }, ...Se(), ...Ba({ selectedClass: "v-chip--selected" }), ...nt(), ...He(), ...Pt({ variant: "tonal" }) }, "VChipGroup"); +oe()({ name: "VChipGroup", props: Vr(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { let { slots: t } = n; - const { themeClasses: l } = Xe(e), { colorClasses: o, colorStyles: a, variantClasses: c } = An(e), { densityClasses: u } = gt(e), { roundedClasses: s } = bt(e), { sizeClasses: i, sizeStyles: p } = _n(e); - return se(() => d(e.tag, { class: ["v-avatar", { "v-avatar--start": e.start, "v-avatar--end": e.end }, l.value, o.value, u.value, s.value, i.value, c.value, e.class], style: [a.value, p.value, e.style] }, { default: () => { - var y; - return [e.image ? d(ja, { key: "image", src: e.image, alt: "", cover: !0 }, null) : e.icon ? d(Se, { key: "icon", icon: e.icon }, null) : ((y = t.default) == null ? void 0 : y.call(t)) ?? e.text, Fn(!1, "v-avatar")]; - } })), {}; -} }), Ja = Symbol.for("vuetify:v-chip-group"), gr = H({ column: Boolean, filter: Boolean, valueComparator: { type: Function, default: nn }, ...ye(), ...Ca({ selectedClass: "v-chip--selected" }), ...et(), ...Ne(), ...xt({ variant: "tonal" }) }, "VChipGroup"); -ee()({ name: "VChipGroup", props: gr(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { - let { slots: t } = n; - const { themeClasses: l } = Xe(e), { isSelected: o, select: a, next: c, prev: u, selected: s } = Ba(e, Ja); - return ln({ VChip: { color: ae(e, "color"), disabled: ae(e, "disabled"), filter: ae(e, "filter"), variant: ae(e, "variant") } }), se(() => d(e.tag, { class: ["v-chip-group", { "v-chip-group--column": e.column }, l.value, e.class], style: e.style }, { default: () => { - var i; - return [(i = t.default) == null ? void 0 : i.call(t, { isSelected: o, select: a, next: c, prev: u, selected: s.value })]; + const { themeClasses: l } = Ze(e), { isSelected: o, select: i, next: c, prev: s, selected: u } = wa(e, Za); + return fn({ VChip: { color: ue(e, "color"), disabled: ue(e, "disabled"), filter: ue(e, "filter"), variant: ue(e, "variant") } }), ge(() => d(e.tag, { class: ["v-chip-group", { "v-chip-group--column": e.column }, l.value, e.class], style: e.style }, { default: () => { + var a; + return [(a = t.default) == null ? void 0 : a.call(t, { isSelected: o, select: i, next: c, prev: s, selected: u.value })]; } })), {}; } }); -const hr = H({ activeClass: String, appendAvatar: String, appendIcon: Ce, closable: Boolean, closeIcon: { type: Ce, default: "$delete" }, closeLabel: { type: String, default: "$vuetify.close" }, draggable: Boolean, filter: Boolean, filterIcon: { type: String, default: "$complete" }, label: Boolean, link: { type: Boolean, default: void 0 }, pill: Boolean, prependAvatar: String, prependIcon: Ce, ripple: { type: [Boolean, Object], default: !0 }, text: String, modelValue: { type: Boolean, default: !0 }, onClick: at(), onClickOnce: at(), ...on(), ...ye(), ...ut(), ...rn(), ...Ia(), ...ht(), ...sl(), ...Vn(), ...et({ tag: "span" }), ...Ne(), ...xt({ variant: "tonal" }) }, "VChip"), br = ee()({ name: "VChip", directives: { Ripple: Pn }, props: hr(), emits: { "click:close": (e) => !0, "update:modelValue": (e) => !0, "group:selected": (e) => !0, click: (e) => !0 }, setup(e, n) { +const _r = H({ activeClass: String, appendAvatar: String, appendIcon: Ae, closable: Boolean, closeIcon: { type: Ae, default: "$delete" }, closeLabel: { type: String, default: "$vuetify.close" }, draggable: Boolean, filter: Boolean, filterIcon: { type: String, default: "$complete" }, label: Boolean, link: { type: Boolean, default: void 0 }, pill: Boolean, prependAvatar: String, prependIcon: Ae, ripple: { type: [Boolean, Object], default: !0 }, text: String, modelValue: { type: Boolean, default: !0 }, onClick: pt(), onClickOnce: pt(), ...yn(), ...Se(), ...mt(), ...gn(), ...xa(), ...Ct(), ...ml(), ...En(), ...nt({ tag: "span" }), ...He(), ...Pt({ variant: "tonal" }) }, "VChip"), ei = oe()({ name: "VChip", directives: { Ripple: Rn }, props: _r(), emits: { "click:close": (e) => !0, "update:modelValue": (e) => !0, "group:selected": (e) => !0, click: (e) => !0 }, setup(e, n) { let { attrs: t, emit: l, slots: o } = n; - const { t: a } = Xl(), { borderClasses: c } = an(e), { colorClasses: u, colorStyles: s, variantClasses: i } = An(e), { densityClasses: p } = gt(e), { elevationClasses: y } = sn(e), { roundedClasses: f } = bt(e), { sizeClasses: m } = _n(e), { themeClasses: h } = Xe(e), b = $e(e, "modelValue"), g = Sa(e, Ja, !1), I = rl(e, t), k = v(() => e.link !== !1 && I.isLink.value), F = v(() => !e.disabled && e.link !== !1 && (!!g || e.link || I.isClickable.value)), U = v(() => ({ "aria-label": a(e.closeLabel), onClick(L) { - L.stopPropagation(), b.value = !1, l("click:close", L); + const { t: i } = vl(), { borderClasses: c } = mn(e), { colorClasses: s, colorStyles: u, variantClasses: a } = Wn(e), { densityClasses: p } = bt(e), { elevationClasses: f } = hn(e), { roundedClasses: y } = It(e), { sizeClasses: g } = zn(e), { themeClasses: b } = Ze(e), m = Te(e, "modelValue"), h = ka(e, Za, !1), I = yl(e, t), F = v(() => e.link !== !1 && I.isLink.value), V = v(() => !e.disabled && e.link !== !1 && (!!h || e.link || I.isClickable.value)), N = v(() => ({ "aria-label": i(e.closeLabel), onClick(M) { + M.stopPropagation(), m.value = !1, l("click:close", M); } })); - function $(L) { + function w(M) { var E; - l("click", L), F.value && ((E = I.navigate) == null || E.call(I, L), g == null || g.toggle()); + l("click", M), V.value && ((E = I.navigate) == null || E.call(I, M), h == null || h.toggle()); } - function z(L) { - L.key !== "Enter" && L.key !== " " || (L.preventDefault(), $(L)); + function L(M) { + M.key !== "Enter" && M.key !== " " || (M.preventDefault(), w(M)); } return () => { - const L = I.isLink.value ? "a" : e.tag, E = !(!e.appendIcon && !e.appendAvatar), B = !(!E && !o.append), _ = !(!o.close && !e.closable), C = !(!o.filter && !e.filter) && g, O = !(!e.prependIcon && !e.prependAvatar), w = !(!O && !o.prepend), M = !g || g.isSelected.value; - return b.value && Ue(d(L, { class: ["v-chip", { "v-chip--disabled": e.disabled, "v-chip--label": e.label, "v-chip--link": F.value, "v-chip--filter": C, "v-chip--pill": e.pill }, h.value, c.value, M ? u.value : void 0, p.value, y.value, f.value, m.value, i.value, g == null ? void 0 : g.selectedClass.value, e.class], style: [M ? s.value : void 0, e.style], disabled: e.disabled || void 0, draggable: e.draggable, href: I.href.value, tabindex: F.value ? 0 : void 0, onClick: $, onKeydown: F.value && !k.value && z }, { default: () => { - var V; - return [Fn(F.value, "v-chip"), C && d(Ra, { key: "filter" }, { default: () => [Ue(d("div", { class: "v-chip__filter" }, [o.filter ? d(je, { key: "filter-defaults", disabled: !e.filterIcon, defaults: { VIcon: { icon: e.filterIcon } } }, o.filter) : d(Se, { key: "filter-icon", icon: e.filterIcon }, null)]), [[Ht, g.isSelected.value]])] }), w && d("div", { key: "prepend", class: "v-chip__prepend" }, [o.prepend ? d(je, { key: "prepend-defaults", disabled: !O, defaults: { VAvatar: { image: e.prependAvatar, start: !0 }, VIcon: { icon: e.prependIcon, start: !0 } } }, o.prepend) : d(Fe, null, [e.prependIcon && d(Se, { key: "prepend-icon", icon: e.prependIcon, start: !0 }, null), e.prependAvatar && d(Ut, { key: "prepend-avatar", image: e.prependAvatar, start: !0 }, null)])]), d("div", { class: "v-chip__content" }, [((V = o.default) == null ? void 0 : V.call(o, { isSelected: g == null ? void 0 : g.isSelected.value, selectedClass: g == null ? void 0 : g.selectedClass.value, select: g == null ? void 0 : g.select, toggle: g == null ? void 0 : g.toggle, value: g == null ? void 0 : g.value.value, disabled: e.disabled })) ?? e.text]), B && d("div", { key: "append", class: "v-chip__append" }, [o.append ? d(je, { key: "append-defaults", disabled: !E, defaults: { VAvatar: { end: !0, image: e.appendAvatar }, VIcon: { end: !0, icon: e.appendIcon } } }, o.append) : d(Fe, null, [e.appendIcon && d(Se, { key: "append-icon", end: !0, icon: e.appendIcon }, null), e.appendAvatar && d(Ut, { key: "append-avatar", end: !0, image: e.appendAvatar }, null)])]), _ && d("button", Q({ key: "close", class: "v-chip__close" }, U.value), [o.close ? d(je, { key: "close-defaults", defaults: { VIcon: { icon: e.closeIcon, size: "x-small" } } }, o.close) : d(Se, { key: "close-icon", icon: e.closeIcon, size: "x-small" }, null)])]; - } }), [[mt("ripple"), F.value && e.ripple, null]]); + const M = I.isLink.value ? "a" : e.tag, E = !(!e.appendIcon && !e.appendAvatar), S = !(!E && !o.append), k = !(!o.close && !e.closable), C = !(!o.filter && !e.filter) && h, _ = !(!e.prependIcon && !e.prependAvatar), P = !(!_ && !o.prepend), G = !h || h.isSelected.value; + return m.value && Xe(d(M, { class: ["v-chip", { "v-chip--disabled": e.disabled, "v-chip--label": e.label, "v-chip--link": V.value, "v-chip--filter": C, "v-chip--pill": e.pill }, b.value, c.value, G ? s.value : void 0, p.value, f.value, y.value, g.value, a.value, h == null ? void 0 : h.selectedClass.value, e.class], style: [G ? u.value : void 0, e.style], disabled: e.disabled || void 0, draggable: e.draggable, href: I.href.value, tabindex: V.value ? 0 : void 0, onClick: w, onKeydown: V.value && !F.value && L }, { default: () => { + var $; + return [Ln(V.value, "v-chip"), C && d(Ja, { key: "filter" }, { default: () => [Xe(d("div", { class: "v-chip__filter" }, [o.filter ? d(qe, { key: "filter-defaults", disabled: !e.filterIcon, defaults: { VIcon: { icon: e.filterIcon } } }, o.filter) : d(Ve, { key: "filter-icon", icon: e.filterIcon }, null)]), [[cn, h.isSelected.value]])] }), P && d("div", { key: "prepend", class: "v-chip__prepend" }, [o.prepend ? d(qe, { key: "prepend-defaults", disabled: !_, defaults: { VAvatar: { image: e.prependAvatar, start: !0 }, VIcon: { icon: e.prependIcon, start: !0 } } }, o.prepend) : d(we, null, [e.prependIcon && d(Ve, { key: "prepend-icon", icon: e.prependIcon, start: !0 }, null), e.prependAvatar && d(kt, { key: "prepend-avatar", image: e.prependAvatar, start: !0 }, null)])]), d("div", { class: "v-chip__content" }, [(($ = o.default) == null ? void 0 : $.call(o, { isSelected: h == null ? void 0 : h.isSelected.value, selectedClass: h == null ? void 0 : h.selectedClass.value, select: h == null ? void 0 : h.select, toggle: h == null ? void 0 : h.toggle, value: h == null ? void 0 : h.value.value, disabled: e.disabled })) ?? e.text]), S && d("div", { key: "append", class: "v-chip__append" }, [o.append ? d(qe, { key: "append-defaults", disabled: !E, defaults: { VAvatar: { end: !0, image: e.appendAvatar }, VIcon: { end: !0, icon: e.appendIcon } } }, o.append) : d(we, null, [e.appendIcon && d(Ve, { key: "append-icon", end: !0, icon: e.appendIcon }, null), e.appendAvatar && d(kt, { key: "append-avatar", end: !0, image: e.appendAvatar }, null)])]), k && d("button", ee({ key: "close", class: "v-chip__close", type: "button" }, N.value), [o.close ? d(qe, { key: "close-defaults", defaults: { VIcon: { icon: e.closeIcon, size: "x-small" } } }, o.close) : d(Ve, { key: "close-icon", icon: e.closeIcon, size: "x-small" }, null)])]; + } }), [[ht("ripple"), V.value && e.ripple, null]]); }; -} }), Vl = Symbol.for("vuetify:list"); -function Za() { - const e = me(Vl, { hasPrepend: de(!1), updateHasPrepend: () => null }), n = { hasPrepend: de(!1), updateHasPrepend: (t) => { +} }), Pl = Symbol.for("vuetify:list"); +function ti() { + const e = Ie(Pl, { hasPrepend: ve(!1), updateHasPrepend: () => null }), n = { hasPrepend: ve(!1), updateHasPrepend: (t) => { t && (n.hasPrepend.value = t); } }; - return tt(Vl, n), e; + return ot(Pl, n), e; } -function Qa() { - return me(Vl, null); +function ni() { + return Ie(Pl, null); } -const Cr = { open: (e) => { +const Or = { open: (e) => { let { id: n, value: t, opened: l, parents: o } = e; if (t) { - const a = /* @__PURE__ */ new Set(); - a.add(n); + const i = /* @__PURE__ */ new Set(); + i.add(n); let c = o.get(n); for (; c != null; ) - a.add(c), c = o.get(c); - return a; + i.add(c), c = o.get(c); + return i; } return l.delete(n), l; -}, select: () => null }, ei = { open: (e) => { +}, select: () => null }, li = { open: (e) => { let { id: n, value: t, opened: l, parents: o } = e; if (t) { - let a = o.get(n); - for (l.add(n); a != null && a !== n; ) - l.add(a), a = o.get(a); + let i = o.get(n); + for (l.add(n); i != null && i !== n; ) + l.add(i), i = o.get(i); return l; } return l.delete(n), l; -}, select: () => null }, Ir = { open: ei.open, select: (e) => { +}, select: () => null }, Pr = { open: li.open, select: (e) => { let { id: n, value: t, opened: l, parents: o } = e; if (!t) return l; - const a = []; + const i = []; let c = o.get(n); for (; c != null; ) - a.push(c), c = o.get(c); - return new Set(a); -} }, _l = (e) => { + i.push(c), c = o.get(c); + return new Set(i); +} }, $l = (e) => { const n = { select: (t) => { - let { id: l, value: o, selected: a } = t; - if (l = It(l), e && !o) { - const c = Array.from(a.entries()).reduce((u, s) => { - let [i, p] = s; - return p === "on" ? [...u, i] : u; + let { id: l, value: o, selected: i } = t; + if (l = Bt(l), e && !o) { + const c = Array.from(i.entries()).reduce((s, u) => { + let [a, p] = u; + return p === "on" ? [...s, a] : s; }, []); if (c.length === 1 && c[0] === l) - return a; + return i; } - return a.set(l, o ? "on" : "off"), a; + return i.set(l, o ? "on" : "off"), i; }, in: (t, l, o) => { - let a = /* @__PURE__ */ new Map(); + let i = /* @__PURE__ */ new Map(); for (const c of t || []) - a = n.select({ id: c, value: !0, selected: new Map(a), children: l, parents: o }); - return a; + i = n.select({ id: c, value: !0, selected: new Map(i), children: l, parents: o }); + return i; }, out: (t) => { const l = []; - for (const [o, a] of t.entries()) - a === "on" && l.push(o); + for (const [o, i] of t.entries()) + i === "on" && l.push(o); return l; } }; return n; -}, Mo = (e) => { - const n = _l(e); +}, qo = (e) => { + const n = $l(e); return { select: (t) => { - let { selected: l, id: o, ...a } = t; - o = It(o); + let { selected: l, id: o, ...i } = t; + o = Bt(o); const c = l.has(o) ? /* @__PURE__ */ new Map([[o, l.get(o)]]) : /* @__PURE__ */ new Map(); - return n.select({ ...a, id: o, selected: c }); + return n.select({ ...i, id: o, selected: c }); }, in: (t, l, o) => { - let a = /* @__PURE__ */ new Map(); - return t != null && t.length && (a = n.in(t.slice(0, 1), l, o)), a; + let i = /* @__PURE__ */ new Map(); + return t != null && t.length && (i = n.in(t.slice(0, 1), l, o)), i; }, out: (t, l, o) => n.out(t, l, o) }; -}, Sn = Symbol.for("vuetify:nested"), ti = { id: de(), root: { register: () => null, unregister: () => null, parents: D(/* @__PURE__ */ new Map()), children: D(/* @__PURE__ */ new Map()), open: () => null, openOnSelect: () => null, select: () => null, opened: D(/* @__PURE__ */ new Set()), selected: D(/* @__PURE__ */ new Map()), selectedValues: D([]) } }, Sr = H({ selectStrategy: [String, Function], openStrategy: [String, Object], opened: Array, selected: Array, mandatory: Boolean }, "nested"), Br = (e) => { +}, _n = Symbol.for("vuetify:nested"), oi = { id: ve(), root: { register: () => null, unregister: () => null, parents: W(/* @__PURE__ */ new Map()), children: W(/* @__PURE__ */ new Map()), open: () => null, openOnSelect: () => null, select: () => null, opened: W(/* @__PURE__ */ new Set()), selected: W(/* @__PURE__ */ new Map()), selectedValues: W([]) } }, $r = H({ selectStrategy: [String, Function], openStrategy: [String, Object], opened: Array, selected: Array, mandatory: Boolean }, "nested"), Tr = (e) => { let n = !1; - const t = D(/* @__PURE__ */ new Map()), l = D(/* @__PURE__ */ new Map()), o = $e(e, "opened", e.opened, (y) => new Set(y), (y) => [...y.values()]), a = v(() => { + const t = W(/* @__PURE__ */ new Map()), l = W(/* @__PURE__ */ new Map()), o = Te(e, "opened", e.opened, (f) => new Set(f), (f) => [...f.values()]), i = v(() => { if (typeof e.selectStrategy == "object") return e.selectStrategy; switch (e.selectStrategy) { case "single-leaf": - return ((y) => { - const f = Mo(y); - return { select: (m) => { - let { id: h, selected: b, children: g, ...I } = m; - return h = It(h), g.has(h) ? b : f.select({ id: h, selected: b, children: g, ...I }); - }, in: f.in, out: f.out }; + return ((f) => { + const y = qo(f); + return { select: (g) => { + let { id: b, selected: m, children: h, ...I } = g; + return b = Bt(b), h.has(b) ? m : y.select({ id: b, selected: m, children: h, ...I }); + }, in: y.in, out: y.out }; })(e.mandatory); case "leaf": - return ((y) => { - const f = _l(y); - return { select: (m) => { - let { id: h, selected: b, children: g, ...I } = m; - return h = It(h), g.has(h) ? b : f.select({ id: h, selected: b, children: g, ...I }); - }, in: f.in, out: f.out }; + return ((f) => { + const y = $l(f); + return { select: (g) => { + let { id: b, selected: m, children: h, ...I } = g; + return b = Bt(b), h.has(b) ? m : y.select({ id: b, selected: m, children: h, ...I }); + }, in: y.in, out: y.out }; })(e.mandatory); case "independent": - return _l(e.mandatory); + return $l(e.mandatory); case "single-independent": - return Mo(e.mandatory); + return qo(e.mandatory); default: - return ((y) => { - const f = { select: (m) => { - let { id: h, value: b, selected: g, children: I, parents: k } = m; - h = It(h); - const F = new Map(g), U = [h]; - for (; U.length; ) { - const z = U.shift(); - g.set(z, b ? "on" : "off"), I.has(z) && U.push(...I.get(z)); + return /* @__PURE__ */ ((f) => { + const y = { select: (g) => { + let { id: b, value: m, selected: h, children: I, parents: F } = g; + b = Bt(b); + const V = new Map(h), N = [b]; + for (; N.length; ) { + const L = N.shift(); + h.set(L, m ? "on" : "off"), I.has(L) && N.push(...I.get(L)); } - let $ = k.get(h); - for (; $; ) { - const z = I.get($), L = z.every((B) => g.get(B) === "on"), E = z.every((B) => !g.has(B) || g.get(B) === "off"); - g.set($, L ? "on" : E ? "off" : "indeterminate"), $ = k.get($); + let w = F.get(b); + for (; w; ) { + const L = I.get(w), M = L.every((S) => h.get(S) === "on"), E = L.every((S) => !h.has(S) || h.get(S) === "off"); + h.set(w, M ? "on" : E ? "off" : "indeterminate"), w = F.get(w); } - return y && !b && Array.from(g.entries()).reduce((L, E) => { - let [B, _] = E; - return _ === "on" ? [...L, B] : L; - }, []).length === 0 ? F : g; - }, in: (m, h, b) => { - let g = /* @__PURE__ */ new Map(); - for (const I of m || []) - g = f.select({ id: I, value: !0, selected: new Map(g), children: h, parents: b }); - return g; - }, out: (m, h) => { - const b = []; - for (const [g, I] of m.entries()) - I !== "on" || h.has(g) || b.push(g); - return b; + return f && !m && Array.from(h.entries()).reduce((M, E) => { + let [S, k] = E; + return k === "on" ? [...M, S] : M; + }, []).length === 0 ? V : h; + }, in: (g, b, m) => { + let h = /* @__PURE__ */ new Map(); + for (const I of g || []) + h = y.select({ id: I, value: !0, selected: new Map(h), children: b, parents: m }); + return h; + }, out: (g, b) => { + const m = []; + for (const [h, I] of g.entries()) + I !== "on" || b.has(h) || m.push(h); + return m; } }; - return f; + return y; })(e.mandatory); } }), c = v(() => { @@ -1684,793 +1824,825 @@ const Cr = { open: (e) => { return e.openStrategy; switch (e.openStrategy) { case "list": - return Ir; + return Pr; case "single": - return Cr; + return Or; default: - return ei; + return li; } - }), u = $e(e, "selected", e.selected, (y) => a.value.in(y, t.value, l.value), (y) => a.value.out(y, t.value, l.value)); - function s(y) { - const f = []; - let m = y; - for (; m != null; ) - f.unshift(m), m = l.value.get(m); - return f; + }), s = Te(e, "selected", e.selected, (f) => i.value.in(f, t.value, l.value), (f) => i.value.out(f, t.value, l.value)); + function u(f) { + const y = []; + let g = f; + for (; g != null; ) + y.unshift(g), g = l.value.get(g); + return y; } - yt(() => { + ft(() => { n = !0; }); - const i = We("nested"), p = { id: de(), root: { opened: o, selected: u, selectedValues: v(() => { - const y = []; - for (const [f, m] of u.value.entries()) - m === "on" && y.push(f); - return y; - }), register: (y, f, m) => { - f && y !== f && l.value.set(y, f), m && t.value.set(y, []), f != null && t.value.set(f, [...t.value.get(f) || [], y]); - }, unregister: (y) => { + const a = Ge("nested"), p = { id: ve(), root: { opened: o, selected: s, selectedValues: v(() => { + const f = []; + for (const [y, g] of s.value.entries()) + g === "on" && f.push(y); + return f; + }), register: (f, y, g) => { + y && f !== y && l.value.set(f, y), g && t.value.set(f, []), y != null && t.value.set(y, [...t.value.get(y) || [], f]); + }, unregister: (f) => { if (n) return; - t.value.delete(y); - const f = l.value.get(y); - if (f) { - const m = t.value.get(f) ?? []; - t.value.set(f, m.filter((h) => h !== y)); + t.value.delete(f); + const y = l.value.get(f); + if (y) { + const g = t.value.get(y) ?? []; + t.value.set(y, g.filter((b) => b !== f)); } - l.value.delete(y), o.value.delete(y); - }, open: (y, f, m) => { - i.emit("click:open", { id: y, value: f, path: s(y), event: m }); - const h = c.value.open({ id: y, value: f, opened: new Set(o.value), children: t.value, parents: l.value, event: m }); - h && (o.value = h); - }, openOnSelect: (y, f, m) => { - const h = c.value.select({ id: y, value: f, selected: new Map(u.value), opened: new Set(o.value), children: t.value, parents: l.value, event: m }); - h && (o.value = h); - }, select: (y, f, m) => { - i.emit("click:select", { id: y, value: f, path: s(y), event: m }); - const h = a.value.select({ id: y, value: f, selected: new Map(u.value), children: t.value, parents: l.value, event: m }); - h && (u.value = h), p.root.openOnSelect(y, f, m); + l.value.delete(f), o.value.delete(f); + }, open: (f, y, g) => { + a.emit("click:open", { id: f, value: y, path: u(f), event: g }); + const b = c.value.open({ id: f, value: y, opened: new Set(o.value), children: t.value, parents: l.value, event: g }); + b && (o.value = b); + }, openOnSelect: (f, y, g) => { + const b = c.value.select({ id: f, value: y, selected: new Map(s.value), opened: new Set(o.value), children: t.value, parents: l.value, event: g }); + b && (o.value = b); + }, select: (f, y, g) => { + a.emit("click:select", { id: f, value: y, path: u(f), event: g }); + const b = i.value.select({ id: f, value: y, selected: new Map(s.value), children: t.value, parents: l.value, event: g }); + b && (s.value = b), p.root.openOnSelect(f, y, g); }, children: t, parents: l } }; - return tt(Sn, p), p.root; -}, ni = (e, n) => { - const t = me(Sn, ti), l = Symbol(nt()), o = v(() => e.value !== void 0 ? e.value : l), a = { ...t, id: o, open: (c, u) => t.root.open(o.value, c, u), openOnSelect: (c, u) => t.root.openOnSelect(o.value, c, u), isOpen: v(() => t.root.opened.value.has(o.value)), parent: v(() => t.root.parents.value.get(o.value)), select: (c, u) => t.root.select(o.value, c, u), isSelected: v(() => t.root.selected.value.get(It(o.value)) === "on"), isIndeterminate: v(() => t.root.selected.value.get(o.value) === "indeterminate"), isLeaf: v(() => !t.root.children.value.get(o.value)), isGroupActivator: t.isGroupActivator }; - return !t.isGroupActivator && t.root.register(o.value, t.id.value, n), yt(() => { + return ot(_n, p), p.root; +}, ai = (e, n) => { + const t = Ie(_n, oi), l = Symbol(ut()), o = v(() => e.value !== void 0 ? e.value : l), i = { ...t, id: o, open: (c, s) => t.root.open(o.value, c, s), openOnSelect: (c, s) => t.root.openOnSelect(o.value, c, s), isOpen: v(() => t.root.opened.value.has(o.value)), parent: v(() => t.root.parents.value.get(o.value)), select: (c, s) => t.root.select(o.value, c, s), isSelected: v(() => t.root.selected.value.get(Bt(o.value)) === "on"), isIndeterminate: v(() => t.root.selected.value.get(o.value) === "indeterminate"), isLeaf: v(() => !t.root.children.value.get(o.value)), isGroupActivator: t.isGroupActivator }; + return !t.isGroupActivator && t.root.register(o.value, t.id.value, n), ft(() => { !t.isGroupActivator && t.root.unregister(o.value); - }), n && tt(Sn, a), a; -}, xr = bn({ name: "VListGroupActivator", setup(e, n) { + }), n && ot(_n, i), i; +}, Er = Fn({ name: "VListGroupActivator", setup(e, n) { let { slots: t } = n; return (() => { - const l = me(Sn, ti); - tt(Sn, { ...l, isGroupActivator: !0 }); + const l = Ie(_n, oi); + ot(_n, { ...l, isGroupActivator: !0 }); })(), () => { var l; return (l = t.default) == null ? void 0 : l.call(t); }; -} }), kr = H({ activeColor: String, baseColor: String, color: String, collapseIcon: { type: Ce, default: "$collapse" }, expandIcon: { type: Ce, default: "$expand" }, prependIcon: Ce, appendIcon: Ce, fluid: Boolean, subgroup: Boolean, title: String, value: null, ...ye(), ...et() }, "VListGroup"), Ro = ee()({ name: "VListGroup", props: kr(), setup(e, n) { +} }), zr = H({ activeColor: String, baseColor: String, color: String, collapseIcon: { type: Ae, default: "$collapse" }, expandIcon: { type: Ae, default: "$expand" }, prependIcon: Ae, appendIcon: Ae, fluid: Boolean, subgroup: Boolean, title: String, value: null, ...Se(), ...nt() }, "VListGroup"), Ho = oe()({ name: "VListGroup", props: zr(), setup(e, n) { let { slots: t } = n; - const { isOpen: l, open: o, id: a } = ni(ae(e, "value"), !0), c = v(() => `v-list-group--id-${String(a.value)}`), u = Qa(), { isBooted: s } = function() { - const m = de(!1); - return qt(() => { + const { isOpen: l, open: o, id: i } = ai(ue(e, "value"), !0), c = v(() => `v-list-group--id-${String(i.value)}`), s = ni(), { isBooted: u } = function() { + const g = ve(!1); + return un(() => { window.requestAnimationFrame(() => { - m.value = !0; + g.value = !0; }); - }), { ssrBootStyles: v(() => m.value ? void 0 : { transition: "none !important" }), isBooted: Dl(m) }; + }), { ssrBootStyles: v(() => g.value ? void 0 : { transition: "none !important" }), isBooted: Rl(g) }; }(); - function i(m) { - o(!l.value, m); + function a(g) { + o(!l.value, g); } - const p = v(() => ({ onClick: i, class: "v-list-group__header", id: c.value })), y = v(() => l.value ? e.collapseIcon : e.expandIcon), f = v(() => ({ VListItem: { active: l.value, activeColor: e.activeColor, baseColor: e.baseColor, color: e.color, prependIcon: e.prependIcon || e.subgroup && y.value, appendIcon: e.appendIcon || !e.subgroup && y.value, title: e.title, value: e.value } })); - return se(() => d(e.tag, { class: ["v-list-group", { "v-list-group--prepend": u == null ? void 0 : u.hasPrepend.value, "v-list-group--fluid": e.fluid, "v-list-group--subgroup": e.subgroup, "v-list-group--open": l.value }, e.class], style: e.style }, { default: () => [t.activator && d(je, { defaults: f.value }, { default: () => [d(xr, null, { default: () => [t.activator({ props: p.value, isOpen: l.value })] })] }), d(Ct, { transition: { component: ir }, disabled: !s.value }, { default: () => { - var m; - return [Ue(d("div", { class: "v-list-group__items", role: "group", "aria-labelledby": c.value }, [(m = t.default) == null ? void 0 : m.call(t)]), [[Ht, l.value]])]; + const p = v(() => ({ onClick: a, class: "v-list-group__header", id: c.value })), f = v(() => l.value ? e.collapseIcon : e.expandIcon), y = v(() => ({ VListItem: { active: l.value, activeColor: e.activeColor, baseColor: e.baseColor, color: e.color, prependIcon: e.prependIcon || e.subgroup && f.value, appendIcon: e.appendIcon || !e.subgroup && f.value, title: e.title, value: e.value } })); + return ge(() => d(e.tag, { class: ["v-list-group", { "v-list-group--prepend": s == null ? void 0 : s.hasPrepend.value, "v-list-group--fluid": e.fluid, "v-list-group--subgroup": e.subgroup, "v-list-group--open": l.value }, e.class], style: e.style }, { default: () => [t.activator && d(qe, { defaults: y.value }, { default: () => [d(Er, null, { default: () => [t.activator({ props: p.value, isOpen: l.value })] })] }), d(St, { transition: { component: Sr }, disabled: !u.value }, { default: () => { + var g; + return [Xe(d("div", { class: "v-list-group__items", role: "group", "aria-labelledby": c.value }, [(g = t.default) == null ? void 0 : g.call(t)]), [[cn, l.value]])]; } })] })), {}; -} }), wr = wn("v-list-item-subtitle"), Fr = wn("v-list-item-title"), Ar = H({ active: { type: Boolean, default: void 0 }, activeClass: String, activeColor: String, appendAvatar: String, appendIcon: Ce, baseColor: String, disabled: Boolean, lines: String, link: { type: Boolean, default: void 0 }, nav: Boolean, prependAvatar: String, prependIcon: Ce, ripple: { type: [Boolean, Object], default: !0 }, slim: Boolean, subtitle: [String, Number], title: [String, Number], value: null, onClick: at(), onClickOnce: at(), ...on(), ...ye(), ...ut(), ...zt(), ...rn(), ...ht(), ...sl(), ...et(), ...Ne(), ...xt({ variant: "text" }) }, "VListItem"), tl = ee()({ name: "VListItem", directives: { Ripple: Pn }, props: Ar(), emits: { click: (e) => !0 }, setup(e, n) { +} }), Dr = Tn("v-list-item-subtitle"), Lr = Tn("v-list-item-title"), Wr = H({ active: { type: Boolean, default: void 0 }, activeClass: String, activeColor: String, appendAvatar: String, appendIcon: Ae, baseColor: String, disabled: Boolean, lines: String, link: { type: Boolean, default: void 0 }, nav: Boolean, prependAvatar: String, prependIcon: Ae, ripple: { type: [Boolean, Object], default: !0 }, slim: Boolean, subtitle: [String, Number], title: [String, Number], value: null, onClick: pt(), onClickOnce: pt(), ...yn(), ...Se(), ...mt(), ...Xt(), ...gn(), ...Ct(), ...ml(), ...nt(), ...He(), ...Pt({ variant: "text" }) }, "VListItem"), sn = oe()({ name: "VListItem", directives: { Ripple: Rn }, props: Wr(), emits: { click: (e) => !0 }, setup(e, n) { let { attrs: t, slots: l, emit: o } = n; - const a = rl(e, t), c = v(() => e.value === void 0 ? a.href.value : e.value), { select: u, isSelected: s, isIndeterminate: i, isGroupActivator: p, root: y, parent: f, openOnSelect: m } = ni(c, !1), h = Qa(), b = v(() => { - var S; - return e.active !== !1 && (e.active || ((S = a.isActive) == null ? void 0 : S.value) || s.value); - }), g = v(() => e.link !== !1 && a.isLink.value), I = v(() => !e.disabled && e.link !== !1 && (e.link || a.isClickable.value || e.value != null && !!h)), k = v(() => e.rounded || e.nav), F = v(() => e.color ?? e.activeColor), U = v(() => ({ color: b.value ? F.value ?? e.baseColor : e.baseColor, variant: e.variant })); - J(() => { - var S; - return (S = a.isActive) == null ? void 0 : S.value; - }, (S) => { - S && f.value != null && y.open(f.value, !0), S && m(S); + const i = yl(e, t), c = v(() => e.value === void 0 ? i.href.value : e.value), { select: s, isSelected: u, isIndeterminate: a, isGroupActivator: p, root: f, parent: y, openOnSelect: g } = ai(c, !1), b = ni(), m = v(() => { + var B; + return e.active !== !1 && (e.active || ((B = i.isActive) == null ? void 0 : B.value) || u.value); + }), h = v(() => e.link !== !1 && i.isLink.value), I = v(() => !e.disabled && e.link !== !1 && (e.link || i.isClickable.value || e.value != null && !!b)), F = v(() => e.rounded || e.nav), V = v(() => e.color ?? e.activeColor), N = v(() => ({ color: m.value ? V.value ?? e.baseColor : e.baseColor, variant: e.variant })); + Y(() => { + var B; + return (B = i.isActive) == null ? void 0 : B.value; + }, (B) => { + B && y.value != null && f.open(y.value, !0), B && g(B); }, { immediate: !0 }); - const { themeClasses: $ } = Xe(e), { borderClasses: z } = an(e), { colorClasses: L, colorStyles: E, variantClasses: B } = An(U), { densityClasses: _ } = gt(e), { dimensionStyles: C } = Dt(e), { elevationClasses: O } = sn(e), { roundedClasses: w } = bt(k), M = v(() => e.lines ? `v-list-item--${e.lines}-line` : void 0), V = v(() => ({ isActive: b.value, select: u, isSelected: s.value, isIndeterminate: i.value })); - function A(S) { - var x; - o("click", S), !p && I.value && ((x = a.navigate) == null || x.call(a, S), e.value != null && u(!s.value, S)); - } - function P(S) { - S.key !== "Enter" && S.key !== " " || (S.preventDefault(), A(S)); - } - return se(() => { - const S = g.value ? "a" : e.tag, x = l.title || e.title != null, W = l.subtitle || e.subtitle != null, R = !(!e.appendAvatar && !e.appendIcon), Y = !(!R && !l.append), q = !(!e.prependAvatar && !e.prependIcon), T = !(!q && !l.prepend); - var N, j; - return h == null || h.updateHasPrepend(T), e.activeColor && (N = "active-color", j = ["color", "base-color"], j = Array.isArray(j) ? j.slice(0, -1).map((G) => `'${G}'`).join(", ") + ` or '${j.at(-1)}'` : `'${j}'`, ll(`[Vuetify UPGRADE] '${N}' is deprecated, use ${j} instead.`)), Ue(d(S, { class: ["v-list-item", { "v-list-item--active": b.value, "v-list-item--disabled": e.disabled, "v-list-item--link": I.value, "v-list-item--nav": e.nav, "v-list-item--prepend": !T && (h == null ? void 0 : h.hasPrepend.value), "v-list-item--slim": e.slim, [`${e.activeClass}`]: e.activeClass && b.value }, $.value, z.value, L.value, _.value, O.value, M.value, w.value, B.value, e.class], style: [E.value, C.value, e.style], href: a.href.value, tabindex: I.value ? h ? -2 : 0 : void 0, onClick: A, onKeydown: I.value && !g.value && P }, { default: () => { - var G; - return [Fn(I.value || b.value, "v-list-item"), T && d("div", { key: "prepend", class: "v-list-item__prepend" }, [l.prepend ? d(je, { key: "prepend-defaults", disabled: !q, defaults: { VAvatar: { density: e.density, image: e.prependAvatar }, VIcon: { density: e.density, icon: e.prependIcon }, VListItemAction: { start: !0 } } }, { default: () => { - var X; - return [(X = l.prepend) == null ? void 0 : X.call(l, V.value)]; - } }) : d(Fe, null, [e.prependAvatar && d(Ut, { key: "prepend-avatar", density: e.density, image: e.prependAvatar }, null), e.prependIcon && d(Se, { key: "prepend-icon", density: e.density, icon: e.prependIcon }, null)]), d("div", { class: "v-list-item__spacer" }, null)]), d("div", { class: "v-list-item__content", "data-no-activator": "" }, [x && d(Fr, { key: "title" }, { default: () => { - var X; - return [((X = l.title) == null ? void 0 : X.call(l, { title: e.title })) ?? e.title]; - } }), W && d(wr, { key: "subtitle" }, { default: () => { - var X; - return [((X = l.subtitle) == null ? void 0 : X.call(l, { subtitle: e.subtitle })) ?? e.subtitle]; - } }), (G = l.default) == null ? void 0 : G.call(l, V.value)]), Y && d("div", { key: "append", class: "v-list-item__append" }, [l.append ? d(je, { key: "append-defaults", disabled: !R, defaults: { VAvatar: { density: e.density, image: e.appendAvatar }, VIcon: { density: e.density, icon: e.appendIcon }, VListItemAction: { end: !0 } } }, { default: () => { - var X; - return [(X = l.append) == null ? void 0 : X.call(l, V.value)]; - } }) : d(Fe, null, [e.appendIcon && d(Se, { key: "append-icon", density: e.density, icon: e.appendIcon }, null), e.appendAvatar && d(Ut, { key: "append-avatar", density: e.density, image: e.appendAvatar }, null)]), d("div", { class: "v-list-item__spacer" }, null)])]; - } }), [[mt("ripple"), I.value && e.ripple]]); + const { themeClasses: w } = Ze(e), { borderClasses: L } = mn(e), { colorClasses: M, colorStyles: E, variantClasses: S } = Wn(N), { densityClasses: k } = bt(e), { dimensionStyles: C } = Yt(e), { elevationClasses: _ } = hn(e), { roundedClasses: P } = It(F), G = v(() => e.lines ? `v-list-item--${e.lines}-line` : void 0), $ = v(() => ({ isActive: m.value, select: s, isSelected: u.value, isIndeterminate: a.value })); + function O(B) { + var A; + o("click", B), !p && I.value && ((A = i.navigate) == null || A.call(i, B), e.value != null && s(!u.value, B)); + } + function T(B) { + B.key !== "Enter" && B.key !== " " || (B.preventDefault(), O(B)); + } + return ge(() => { + const B = h.value ? "a" : e.tag, A = l.title || e.title != null, U = l.subtitle || e.subtitle != null, j = !(!e.appendAvatar && !e.appendIcon), X = !(!j && !l.append), q = !(!e.prependAvatar && !e.prependIcon), J = !(!q && !l.prepend); + var R, z; + return b == null || b.updateHasPrepend(J), e.activeColor && (R = "active-color", z = ["color", "base-color"], z = Array.isArray(z) ? z.slice(0, -1).map((D) => `'${D}'`).join(", ") + ` or '${z.at(-1)}'` : `'${z}'`, cl(`[Vuetify UPGRADE] '${R}' is deprecated, use ${z} instead.`)), Xe(d(B, { class: ["v-list-item", { "v-list-item--active": m.value, "v-list-item--disabled": e.disabled, "v-list-item--link": I.value, "v-list-item--nav": e.nav, "v-list-item--prepend": !J && (b == null ? void 0 : b.hasPrepend.value), "v-list-item--slim": e.slim, [`${e.activeClass}`]: e.activeClass && m.value }, w.value, L.value, M.value, k.value, _.value, G.value, P.value, S.value, e.class], style: [E.value, C.value, e.style], href: i.href.value, tabindex: I.value ? b ? -2 : 0 : void 0, onClick: O, onKeydown: I.value && !h.value && T }, { default: () => { + var D; + return [Ln(I.value || m.value, "v-list-item"), J && d("div", { key: "prepend", class: "v-list-item__prepend" }, [l.prepend ? d(qe, { key: "prepend-defaults", disabled: !q, defaults: { VAvatar: { density: e.density, image: e.prependAvatar }, VIcon: { density: e.density, icon: e.prependIcon }, VListItemAction: { start: !0 } } }, { default: () => { + var x; + return [(x = l.prepend) == null ? void 0 : x.call(l, $.value)]; + } }) : d(we, null, [e.prependAvatar && d(kt, { key: "prepend-avatar", density: e.density, image: e.prependAvatar }, null), e.prependIcon && d(Ve, { key: "prepend-icon", density: e.density, icon: e.prependIcon }, null)]), d("div", { class: "v-list-item__spacer" }, null)]), d("div", { class: "v-list-item__content", "data-no-activator": "" }, [A && d(Lr, { key: "title" }, { default: () => { + var x; + return [((x = l.title) == null ? void 0 : x.call(l, { title: e.title })) ?? e.title]; + } }), U && d(Dr, { key: "subtitle" }, { default: () => { + var x; + return [((x = l.subtitle) == null ? void 0 : x.call(l, { subtitle: e.subtitle })) ?? e.subtitle]; + } }), (D = l.default) == null ? void 0 : D.call(l, $.value)]), X && d("div", { key: "append", class: "v-list-item__append" }, [l.append ? d(qe, { key: "append-defaults", disabled: !j, defaults: { VAvatar: { density: e.density, image: e.appendAvatar }, VIcon: { density: e.density, icon: e.appendIcon }, VListItemAction: { end: !0 } } }, { default: () => { + var x; + return [(x = l.append) == null ? void 0 : x.call(l, $.value)]; + } }) : d(we, null, [e.appendIcon && d(Ve, { key: "append-icon", density: e.density, icon: e.appendIcon }, null), e.appendAvatar && d(kt, { key: "append-avatar", density: e.density, image: e.appendAvatar }, null)]), d("div", { class: "v-list-item__spacer" }, null)])]; + } }), [[ht("ripple"), I.value && e.ripple]]); }), {}; -} }), Vr = H({ color: String, inset: Boolean, sticky: Boolean, title: String, ...ye(), ...et() }, "VListSubheader"), _r = ee()({ name: "VListSubheader", props: Vr(), setup(e, n) { +} }), Mr = H({ color: String, inset: Boolean, sticky: Boolean, title: String, ...Se(), ...nt() }, "VListSubheader"), Rr = oe()({ name: "VListSubheader", props: Mr(), setup(e, n) { let { slots: t } = n; - const { textColorClasses: l, textColorStyles: o } = ft(ae(e, "color")); - return se(() => { - const a = !(!t.default && !e.title); + const { textColorClasses: l, textColorStyles: o } = vt(ue(e, "color")); + return ge(() => { + const i = !(!t.default && !e.title); return d(e.tag, { class: ["v-list-subheader", { "v-list-subheader--inset": e.inset, "v-list-subheader--sticky": e.sticky }, l.value, e.class], style: [{ textColorStyles: o }, e.style] }, { default: () => { var c; - return [a && d("div", { class: "v-list-subheader__text" }, [((c = t.default) == null ? void 0 : c.call(t)) ?? e.title])]; + return [i && d("div", { class: "v-list-subheader__text" }, [((c = t.default) == null ? void 0 : c.call(t)) ?? e.title])]; } }); }), {}; -} }), Or = H({ color: String, inset: Boolean, length: [Number, String], thickness: [Number, String], vertical: Boolean, ...ye(), ...Ne() }, "VDivider"), Pr = ee()({ name: "VDivider", props: Or(), setup(e, n) { +} }), Nr = H({ color: String, inset: Boolean, length: [Number, String], thickness: [Number, String], vertical: Boolean, ...Se(), ...He() }, "VDivider"), jr = oe()({ name: "VDivider", props: Nr(), setup(e, n) { let { attrs: t } = n; - const { themeClasses: l } = Xe(e), { textColorClasses: o, textColorStyles: a } = ft(ae(e, "color")), c = v(() => { - const u = {}; - return e.length && (u[e.vertical ? "maxHeight" : "maxWidth"] = ie(e.length)), e.thickness && (u[e.vertical ? "borderRightWidth" : "borderTopWidth"] = ie(e.thickness)), u; + const { themeClasses: l } = Ze(e), { textColorClasses: o, textColorStyles: i } = vt(ue(e, "color")), c = v(() => { + const s = {}; + return e.length && (s[e.vertical ? "maxHeight" : "maxWidth"] = ce(e.length)), e.thickness && (s[e.vertical ? "borderRightWidth" : "borderTopWidth"] = ce(e.thickness)), s; }); - return se(() => d("hr", { class: [{ "v-divider": !0, "v-divider--inset": e.inset, "v-divider--vertical": e.vertical }, l.value, o.value, e.class], style: [c.value, a.value, e.style], "aria-orientation": t.role && t.role !== "separator" ? void 0 : e.vertical ? "vertical" : "horizontal", role: `${t.role || "separator"}` }, null)), {}; -} }), $r = H({ items: Array, returnObject: Boolean }, "VListChildren"), li = ee()({ name: "VListChildren", props: $r(), setup(e, n) { + return ge(() => d("hr", { class: [{ "v-divider": !0, "v-divider--inset": e.inset, "v-divider--vertical": e.vertical }, l.value, o.value, e.class], style: [c.value, i.value, e.style], "aria-orientation": t.role && t.role !== "separator" ? void 0 : e.vertical ? "vertical" : "horizontal", role: `${t.role || "separator"}` }, null)), {}; +} }), Gr = H({ items: Array, returnObject: Boolean }, "VListChildren"), ii = oe()({ name: "VListChildren", props: Gr(), setup(e, n) { let { slots: t } = n; - return Za(), () => { + return ti(), () => { var l, o; - return ((l = t.default) == null ? void 0 : l.call(t)) ?? ((o = e.items) == null ? void 0 : o.map((a) => { - var f, m; - let { children: c, props: u, type: s, raw: i } = a; - if (s === "divider") - return ((f = t.divider) == null ? void 0 : f.call(t, { props: u })) ?? d(Pr, u, null); - if (s === "subheader") - return ((m = t.subheader) == null ? void 0 : m.call(t, { props: u })) ?? d(_r, u, null); - const p = { subtitle: t.subtitle ? (h) => { - var b; - return (b = t.subtitle) == null ? void 0 : b.call(t, { ...h, item: i }); - } : void 0, prepend: t.prepend ? (h) => { - var b; - return (b = t.prepend) == null ? void 0 : b.call(t, { ...h, item: i }); - } : void 0, append: t.append ? (h) => { - var b; - return (b = t.append) == null ? void 0 : b.call(t, { ...h, item: i }); - } : void 0, title: t.title ? (h) => { - var b; - return (b = t.title) == null ? void 0 : b.call(t, { ...h, item: i }); - } : void 0 }, y = Ro.filterProps(u); - return c ? d(Ro, Q({ value: u == null ? void 0 : u.value }, y), { activator: (h) => { - let { props: b } = h; - const g = { ...u, ...b, value: e.returnObject ? i : u.value }; - return t.header ? t.header({ props: g }) : d(tl, g, p); - }, default: () => d(li, { items: c }, t) }) : t.item ? t.item({ props: u }) : d(tl, Q(u, { value: e.returnObject ? i : u.value }), p); + return ((l = t.default) == null ? void 0 : l.call(t)) ?? ((o = e.items) == null ? void 0 : o.map((i) => { + var y, g; + let { children: c, props: s, type: u, raw: a } = i; + if (u === "divider") + return ((y = t.divider) == null ? void 0 : y.call(t, { props: s })) ?? d(jr, s, null); + if (u === "subheader") + return ((g = t.subheader) == null ? void 0 : g.call(t, { props: s })) ?? d(Rr, s, null); + const p = { subtitle: t.subtitle ? (b) => { + var m; + return (m = t.subtitle) == null ? void 0 : m.call(t, { ...b, item: a }); + } : void 0, prepend: t.prepend ? (b) => { + var m; + return (m = t.prepend) == null ? void 0 : m.call(t, { ...b, item: a }); + } : void 0, append: t.append ? (b) => { + var m; + return (m = t.append) == null ? void 0 : m.call(t, { ...b, item: a }); + } : void 0, title: t.title ? (b) => { + var m; + return (m = t.title) == null ? void 0 : m.call(t, { ...b, item: a }); + } : void 0 }, f = Ho.filterProps(s); + return c ? d(Ho, ee({ value: s == null ? void 0 : s.value }, f), { activator: (b) => { + let { props: m } = b; + const h = { ...s, ...m, value: e.returnObject ? a : s.value }; + return t.header ? t.header({ props: h }) : d(sn, h, p); + }, default: () => d(ii, { items: c }, t) }) : t.item ? t.item({ props: s }) : d(sn, ee(s, { value: e.returnObject ? a : s.value }), p); })); }; -} }), oi = H({ items: { type: Array, default: () => [] }, itemTitle: { type: [String, Array, Function], default: "title" }, itemValue: { type: [String, Array, Function], default: "value" }, itemChildren: { type: [Boolean, String, Array, Function], default: "children" }, itemProps: { type: [Boolean, String, Array, Function], default: "props" }, returnObject: Boolean, valueComparator: { type: Function, default: nn } }, "list-items"); -function Ol(e, n) { - const t = ct(n, e.itemTitle, n), l = ct(n, e.itemValue, t), o = ct(n, e.itemChildren), a = { title: t, value: l, ...e.itemProps === !0 ? typeof n != "object" || n == null || Array.isArray(n) ? void 0 : "children" in n ? Tt(n, ["children"]) : n : ct(n, e.itemProps) }; - return { title: String(a.title ?? ""), value: a.value, props: a, children: Array.isArray(o) ? ai(e, o) : void 0, raw: n }; +} }), ri = H({ items: { type: Array, default: () => [] }, itemTitle: { type: [String, Array, Function], default: "title" }, itemValue: { type: [String, Array, Function], default: "value" }, itemChildren: { type: [Boolean, String, Array, Function], default: "children" }, itemProps: { type: [Boolean, String, Array, Function], default: "props" }, returnObject: Boolean, valueComparator: { type: Function, default: vn } }, "list-items"); +function Tl(e, n) { + const t = dt(n, e.itemTitle, n), l = dt(n, e.itemValue, t), o = dt(n, e.itemChildren), i = { title: t, value: l, ...e.itemProps === !0 ? typeof n != "object" || n == null || Array.isArray(n) ? void 0 : "children" in n ? Ot(n, ["children"]) : n : dt(n, e.itemProps) }; + return { title: String(i.title ?? ""), value: i.value, props: i, children: Array.isArray(o) ? si(e, o) : void 0, raw: n }; } -function ai(e, n) { +function si(e, n) { const t = []; for (const l of n) - t.push(Ol(e, l)); + t.push(Tl(e, l)); return t; } -function Er(e, n) { - const t = ct(n, e.itemType, "item"), l = function(u) { - return typeof u == "string" || typeof u == "number" || typeof u == "boolean"; - }(n) ? n : ct(n, e.itemTitle), o = ct(n, e.itemValue, void 0), a = ct(n, e.itemChildren), c = { title: l, value: o, ...e.itemProps === !0 ? Tt(n, ["children"]) : ct(n, e.itemProps) }; - return { type: t, title: c.title, value: c.value, props: c, children: t === "item" && a ? ii(e, a) : void 0, raw: n }; +function ui(e) { + const n = v(() => si(e, e.items)), t = v(() => n.value.some((l) => l.value === null)); + return { items: n, transformIn: function(l) { + return t.value || (l = l.filter((o) => o !== null)), l.map((o) => e.returnObject && typeof o == "string" ? Tl(e, o) : n.value.find((i) => e.valueComparator(o, i.value)) || Tl(e, o)); + }, transformOut: function(l) { + return e.returnObject ? l.map((o) => { + let { raw: i } = o; + return i; + }) : l.map((o) => { + let { value: i } = o; + return i; + }); + } }; +} +function Ur(e, n) { + const t = dt(n, e.itemType, "item"), l = /* @__PURE__ */ function(s) { + return typeof s == "string" || typeof s == "number" || typeof s == "boolean"; + }(n) ? n : dt(n, e.itemTitle), o = dt(n, e.itemValue, void 0), i = dt(n, e.itemChildren), c = { title: l, value: o, ...e.itemProps === !0 ? Ot(n, ["children"]) : dt(n, e.itemProps) }; + return { type: t, title: c.title, value: c.value, props: c, children: t === "item" && i ? ci(e, i) : void 0, raw: n }; } -function ii(e, n) { +function ci(e, n) { const t = []; for (const l of n) - t.push(Er(e, l)); + t.push(Ur(e, l)); return t; } -const Tr = H({ baseColor: String, activeColor: String, activeClass: String, bgColor: String, disabled: Boolean, lines: { type: [Boolean, String], default: "one" }, slim: Boolean, nav: Boolean, ...Sr({ selectStrategy: "single-leaf", openStrategy: "list" }), ...on(), ...ye(), ...ut(), ...zt(), ...rn(), itemType: { type: String, default: "type" }, ...oi(), ...ht(), ...et(), ...Ne(), ...xt({ variant: "text" }) }, "VList"), zr = ee()({ name: "VList", props: Tr(), emits: { "update:selected": (e) => !0, "update:opened": (e) => !0, "click:open": (e) => !0, "click:select": (e) => !0 }, setup(e, n) { +const qr = H({ baseColor: String, activeColor: String, activeClass: String, bgColor: String, disabled: Boolean, lines: { type: [Boolean, String], default: "one" }, slim: Boolean, nav: Boolean, ...$r({ selectStrategy: "single-leaf", openStrategy: "list" }), ...yn(), ...Se(), ...mt(), ...Xt(), ...gn(), itemType: { type: String, default: "type" }, ...ri(), ...Ct(), ...nt(), ...He(), ...Pt({ variant: "text" }) }, "VList"), di = oe()({ name: "VList", props: qr(), emits: { "update:selected": (e) => !0, "update:opened": (e) => !0, "click:open": (e) => !0, "click:select": (e) => !0 }, setup(e, n) { let { slots: t } = n; - const { items: l } = function(B) { - return { items: v(() => ii(B, B.items)) }; - }(e), { themeClasses: o } = Xe(e), { backgroundColorClasses: a, backgroundColorStyles: c } = Gt(ae(e, "bgColor")), { borderClasses: u } = an(e), { densityClasses: s } = gt(e), { dimensionStyles: i } = Dt(e), { elevationClasses: p } = sn(e), { roundedClasses: y } = bt(e), { open: f, select: m } = Br(e), h = v(() => e.lines ? `v-list--${e.lines}-line` : void 0), b = ae(e, "activeColor"), g = ae(e, "baseColor"), I = ae(e, "color"); - Za(), ln({ VListGroup: { activeColor: b, baseColor: g, color: I }, VListItem: { activeClass: ae(e, "activeClass"), activeColor: b, baseColor: g, color: I, density: ae(e, "density"), disabled: ae(e, "disabled"), lines: ae(e, "lines"), nav: ae(e, "nav"), slim: ae(e, "slim"), variant: ae(e, "variant") } }); - const k = de(!1), F = D(); - function U(B) { - k.value = !0; - } - function $(B) { - k.value = !1; - } - function z(B) { - var _; - k.value || B.relatedTarget && ((_ = F.value) != null && _.contains(B.relatedTarget)) || E(); - } - function L(B) { - if (F.value) { - if (B.key === "ArrowDown") - E("next"); - else if (B.key === "ArrowUp") - E("prev"); - else if (B.key === "Home") - E("first"); + const { items: l } = function(k) { + return { items: v(() => ci(k, k.items)) }; + }(e), { themeClasses: o } = Ze(e), { backgroundColorClasses: i, backgroundColorStyles: c } = rn(ue(e, "bgColor")), { borderClasses: s } = mn(e), { densityClasses: u } = bt(e), { dimensionStyles: a } = Yt(e), { elevationClasses: p } = hn(e), { roundedClasses: f } = It(e), { open: y, select: g } = Tr(e), b = v(() => e.lines ? `v-list--${e.lines}-line` : void 0), m = ue(e, "activeColor"), h = ue(e, "baseColor"), I = ue(e, "color"); + ti(), fn({ VListGroup: { activeColor: m, baseColor: h, color: I }, VListItem: { activeClass: ue(e, "activeClass"), activeColor: m, baseColor: h, color: I, density: ue(e, "density"), disabled: ue(e, "disabled"), lines: ue(e, "lines"), nav: ue(e, "nav"), slim: ue(e, "slim"), variant: ue(e, "variant") } }); + const F = ve(!1), V = W(); + function N(k) { + F.value = !0; + } + function w(k) { + F.value = !1; + } + function L(k) { + var C; + F.value || k.relatedTarget && ((C = V.value) != null && C.contains(k.relatedTarget)) || S(); + } + function M(k) { + if (V.value) { + if (k.key === "ArrowDown") + S("next"); + else if (k.key === "ArrowUp") + S("prev"); + else if (k.key === "Home") + S("first"); else { - if (B.key !== "End") + if (k.key !== "End") return; - E("last"); + S("last"); } - B.preventDefault(); + k.preventDefault(); } } - function E(B) { - if (F.value) - return Hn(F.value, B); + function E(k) { + F.value = !0; } - return se(() => d(e.tag, { ref: F, class: ["v-list", { "v-list--disabled": e.disabled, "v-list--nav": e.nav }, o.value, a.value, u.value, s.value, p.value, h.value, y.value, e.class], style: [c.value, i.value, e.style], tabindex: e.disabled || k.value ? -1 : 0, role: "listbox", "aria-activedescendant": void 0, onFocusin: U, onFocusout: $, onFocus: z, onKeydown: L }, { default: () => [d(li, { items: l.value, returnObject: e.returnObject }, t)] })), { open: f, select: m, focus: E }; + function S(k) { + if (V.value) + return tl(V.value, k); + } + return ge(() => d(e.tag, { ref: V, class: ["v-list", { "v-list--disabled": e.disabled, "v-list--nav": e.nav, "v-list--slim": e.slim }, o.value, i.value, s.value, u.value, p.value, b.value, f.value, e.class], style: [c.value, a.value, e.style], tabindex: e.disabled || F.value ? -1 : 0, role: "listbox", "aria-activedescendant": void 0, onFocusin: N, onFocusout: w, onFocus: L, onKeydown: M, onMousedown: E }, { default: () => [d(ii, { items: l.value, returnObject: e.returnObject }, t)] })), { open: y, select: g, focus: S }; } }); -function hl(e, n) { +function Sl(e, n) { return { x: e.x + n.x, y: e.y + n.y }; } -function No(e, n) { +function Ko(e, n) { if (e.side === "top" || e.side === "bottom") { const { side: t, align: l } = e; - return hl({ x: l === "left" ? 0 : l === "center" ? n.width / 2 : l === "right" ? n.width : l, y: t === "top" ? 0 : t === "bottom" ? n.height : t }, n); + return Sl({ x: l === "left" ? 0 : l === "center" ? n.width / 2 : l === "right" ? n.width : l, y: t === "top" ? 0 : t === "bottom" ? n.height : t }, n); } if (e.side === "left" || e.side === "right") { const { side: t, align: l } = e; - return hl({ x: t === "left" ? 0 : t === "right" ? n.width : t, y: l === "top" ? 0 : l === "center" ? n.height / 2 : l === "bottom" ? n.height : l }, n); + return Sl({ x: t === "left" ? 0 : t === "right" ? n.width : t, y: l === "top" ? 0 : l === "center" ? n.height / 2 : l === "bottom" ? n.height : l }, n); } - return hl({ x: n.width / 2, y: n.height / 2 }, n); + return Sl({ x: n.width / 2, y: n.height / 2 }, n); } -const ri = { static: function() { +const pi = { static: function() { }, connected: function(e, n, t) { - (Array.isArray(e.target.value) || function(m) { - for (; m; ) { - if (window.getComputedStyle(m).position === "fixed") + (Array.isArray(e.target.value) || function(g) { + for (; g; ) { + if (window.getComputedStyle(g).position === "fixed") return !0; - m = m.offsetParent; + g = g.offsetParent; } return !1; }(e.target.value)) && Object.assign(t.value, { position: "fixed", top: 0, [e.isRtl.value ? "right" : "left"]: 0 }); - const { preferredAnchor: l, preferredOrigin: o } = jl(() => { - const m = kl(n.location, e.isRtl.value), h = n.origin === "overlap" ? m : n.origin === "auto" ? fl(m) : kl(n.origin, e.isRtl.value); - return m.side === h.side && m.align === yl(h).align ? { preferredAnchor: fo(m), preferredOrigin: fo(h) } : { preferredAnchor: m, preferredOrigin: h }; - }), [a, c, u, s] = ["minWidth", "minHeight", "maxWidth", "maxHeight"].map((m) => v(() => { - const h = parseFloat(n[m]); - return isNaN(h) ? 1 / 0 : h; - })), i = v(() => { + const { preferredAnchor: l, preferredOrigin: o } = ql(() => { + const g = Vl(n.location, e.isRtl.value), b = n.origin === "overlap" ? g : n.origin === "auto" ? hl(g) : Vl(n.origin, e.isRtl.value); + return g.side === b.side && g.align === bl(b).align ? { preferredAnchor: Co(g), preferredOrigin: Co(b) } : { preferredAnchor: g, preferredOrigin: b }; + }), [i, c, s, u] = ["minWidth", "minHeight", "maxWidth", "maxHeight"].map((g) => v(() => { + const b = parseFloat(n[g]); + return isNaN(b) ? 1 / 0 : b; + })), a = v(() => { if (Array.isArray(n.offset)) return n.offset; if (typeof n.offset == "string") { - const m = n.offset.split(" ").map(parseFloat); - return m.length < 2 && m.push(0), m; + const g = n.offset.split(" ").map(parseFloat); + return g.length < 2 && g.push(0), g; } return typeof n.offset == "number" ? [n.offset, 0] : [0, 0]; }); let p = !1; - const y = new ResizeObserver(() => { - p && f(); + const f = new ResizeObserver(() => { + p && y(); }); - function f() { + function y() { if (p = !1, requestAnimationFrame(() => { requestAnimationFrame(() => p = !0); }), !e.target.value || !e.contentEl.value) return; - const m = fa(e.target.value), h = function(B, _) { - _ ? B.style.removeProperty("left") : B.style.removeProperty("right"); - const C = Gl(B); - return _ ? C.x += parseFloat(B.style.right || 0) : C.x -= parseFloat(B.style.left || 0), C.y -= parseFloat(B.style.top || 0), C; - }(e.contentEl.value, e.isRtl.value), b = Jn(e.contentEl.value); - b.length || (b.push(document.documentElement), e.contentEl.value.style.top && e.contentEl.value.style.left || (h.x -= parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x") || 0), h.y -= parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y") || 0))); - const g = b.reduce((B, _) => { - const C = _.getBoundingClientRect(), O = new wt({ x: _ === document.documentElement ? 0 : C.x, y: _ === document.documentElement ? 0 : C.y, width: _.clientWidth, height: _.clientHeight }); - return B ? new wt({ x: Math.max(B.left, O.left), y: Math.max(B.top, O.top), width: Math.min(B.right, O.right) - Math.max(B.left, O.left), height: Math.min(B.bottom, O.bottom) - Math.max(B.top, O.top) }) : O; + const g = ga(e.target.value), b = function(S, k) { + k ? S.style.removeProperty("left") : S.style.removeProperty("right"); + const C = Kl(S); + return k ? C.x += parseFloat(S.style.right || 0) : C.x -= parseFloat(S.style.left || 0), C.y -= parseFloat(S.style.top || 0), C; + }(e.contentEl.value, e.isRtl.value), m = ol(e.contentEl.value); + m.length || (m.push(document.documentElement), e.contentEl.value.style.top && e.contentEl.value.style.left || (b.x -= parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x") || 0), b.y -= parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y") || 0))); + const h = m.reduce((S, k) => { + const C = k.getBoundingClientRect(), _ = new Dt({ x: k === document.documentElement ? 0 : C.x, y: k === document.documentElement ? 0 : C.y, width: k.clientWidth, height: k.clientHeight }); + return S ? new Dt({ x: Math.max(S.left, _.left), y: Math.max(S.top, _.top), width: Math.min(S.right, _.right) - Math.max(S.left, _.left), height: Math.min(S.bottom, _.bottom) - Math.max(S.top, _.top) }) : _; }, void 0); - g.x += 12, g.y += 12, g.width -= 24, g.height -= 24; + h.x += 12, h.y += 12, h.width -= 24, h.height -= 24; let I = { anchor: l.value, origin: o.value }; - function k(B) { - const _ = new wt(h), C = No(B.anchor, m), O = No(B.origin, _); - let { x: w, y: M } = (A = O, { x: (V = C).x - A.x, y: V.y - A.y }); - var V, A; - switch (B.anchor.side) { + function F(S) { + const k = new Dt(b), C = Ko(S.anchor, g), _ = Ko(S.origin, k); + let { x: P, y: G } = (O = _, { x: ($ = C).x - O.x, y: $.y - O.y }); + var $, O; + switch (S.anchor.side) { case "top": - M -= i.value[0]; + G -= a.value[0]; break; case "bottom": - M += i.value[0]; + G += a.value[0]; break; case "left": - w -= i.value[0]; + P -= a.value[0]; break; case "right": - w += i.value[0]; + P += a.value[0]; } - switch (B.anchor.align) { + switch (S.anchor.align) { case "top": - M -= i.value[1]; + G -= a.value[1]; break; case "bottom": - M += i.value[1]; + G += a.value[1]; break; case "left": - w -= i.value[1]; + P -= a.value[1]; break; case "right": - w += i.value[1]; + P += a.value[1]; } - return _.x += w, _.y += M, _.width = Math.min(_.width, u.value), _.height = Math.min(_.height, s.value), { overflows: mo(_, g), x: w, y: M }; + return k.x += P, k.y += G, k.width = Math.min(k.width, s.value), k.height = Math.min(k.height, u.value), { overflows: So(k, h), x: P, y: G }; } - let F = 0, U = 0; - const $ = { x: 0, y: 0 }, z = { x: !1, y: !1 }; - let L = -1; + let V = 0, N = 0; + const w = { x: 0, y: 0 }, L = { x: !1, y: !1 }; + let M = -1; for (; ; ) { - if (L++ > 10) { - ll("Vuetify error: Infinite loop detected in connectedLocationStrategy"); + if (M++ > 10) { + cl("Vuetify error: Infinite loop detected in connectedLocationStrategy"); break; } - const { x: B, y: _, overflows: C } = k(I); - F += B, U += _, h.x += B, h.y += _; + const { x: S, y: k, overflows: C } = F(I); + V += S, N += k, b.x += S, b.y += k; { - const O = yo(I.anchor), w = C.x.before || C.x.after, M = C.y.before || C.y.after; - let V = !1; - if (["x", "y"].forEach((A) => { - if (A === "x" && w && !z.x || A === "y" && M && !z.y) { - const P = { anchor: { ...I.anchor }, origin: { ...I.origin } }, S = A === "x" ? O === "y" ? yl : fl : O === "y" ? fl : yl; - P.anchor = S(P.anchor), P.origin = S(P.origin); - const { overflows: x } = k(P); - (x[A].before <= C[A].before && x[A].after <= C[A].after || x[A].before + x[A].after < (C[A].before + C[A].after) / 2) && (I = P, V = z[A] = !0); + const _ = Io(I.anchor), P = C.x.before || C.x.after, G = C.y.before || C.y.after; + let $ = !1; + if (["x", "y"].forEach((O) => { + if (O === "x" && P && !L.x || O === "y" && G && !L.y) { + const T = { anchor: { ...I.anchor }, origin: { ...I.origin } }, B = O === "x" ? _ === "y" ? bl : hl : _ === "y" ? hl : bl; + T.anchor = B(T.anchor), T.origin = B(T.origin); + const { overflows: A } = F(T); + (A[O].before <= C[O].before && A[O].after <= C[O].after || A[O].before + A[O].after < (C[O].before + C[O].after) / 2) && (I = T, $ = L[O] = !0); } - }), V) + }), $) continue; } - C.x.before && (F += C.x.before, h.x += C.x.before), C.x.after && (F -= C.x.after, h.x -= C.x.after), C.y.before && (U += C.y.before, h.y += C.y.before), C.y.after && (U -= C.y.after, h.y -= C.y.after); + C.x.before && (V += C.x.before, b.x += C.x.before), C.x.after && (V -= C.x.after, b.x -= C.x.after), C.y.before && (N += C.y.before, b.y += C.y.before), C.y.after && (N -= C.y.after, b.y -= C.y.after); { - const O = mo(h, g); - $.x = g.width - O.x.before - O.x.after, $.y = g.height - O.y.before - O.y.after, F += O.x.before, h.x += O.x.before, U += O.y.before, h.y += O.y.before; + const _ = So(b, h); + w.x = h.width - _.x.before - _.x.after, w.y = h.height - _.y.before - _.y.after, V += _.x.before, b.x += _.x.before, N += _.y.before, b.y += _.y.before; } break; } - const E = yo(I.anchor); - return Object.assign(t.value, { "--v-overlay-anchor-origin": `${I.anchor.side} ${I.anchor.align}`, transformOrigin: `${I.origin.side} ${I.origin.align}`, top: ie(bl(U)), left: e.isRtl.value ? void 0 : ie(bl(F)), right: e.isRtl.value ? ie(bl(-F)) : void 0, minWidth: ie(E === "y" ? Math.min(a.value, m.width) : a.value), maxWidth: ie(jo(jt($.x, a.value === 1 / 0 ? 0 : a.value, u.value))), maxHeight: ie(jo(jt($.y, c.value === 1 / 0 ? 0 : c.value, s.value))) }), { available: $, contentBox: h }; - } - return J([e.target, e.contentEl], (m, h) => { - let [b, g] = m, [I, k] = h; - I && !Array.isArray(I) && y.unobserve(I), b && !Array.isArray(b) && y.observe(b), k && y.unobserve(k), g && y.observe(g); - }, { immediate: !0 }), He(() => { - y.disconnect(); - }), J(() => [l.value, o.value, n.offset, n.minWidth, n.minHeight, n.maxWidth, n.maxHeight], () => f()), Me(() => { - const m = f(); - if (!m) + const E = Io(I.anchor); + return Object.assign(t.value, { "--v-overlay-anchor-origin": `${I.anchor.side} ${I.anchor.align}`, transformOrigin: `${I.origin.side} ${I.origin.align}`, top: ce(Bl(N)), left: e.isRtl.value ? void 0 : ce(Bl(V)), right: e.isRtl.value ? ce(Bl(-V)) : void 0, minWidth: ce(E === "y" ? Math.min(i.value, g.width) : i.value), maxWidth: ce(Xo(on(w.x, i.value === 1 / 0 ? 0 : i.value, s.value))), maxHeight: ce(Xo(on(w.y, c.value === 1 / 0 ? 0 : c.value, u.value))) }), { available: w, contentBox: b }; + } + return Y([e.target, e.contentEl], (g, b) => { + let [m, h] = g, [I, F] = b; + I && !Array.isArray(I) && f.unobserve(I), m && !Array.isArray(m) && f.observe(m), F && f.unobserve(F), h && f.observe(h); + }, { immediate: !0 }), Je(() => { + f.disconnect(); + }), Y(() => [l.value, o.value, n.offset, n.minWidth, n.minHeight, n.maxWidth, n.maxHeight], () => y()), Ne(() => { + const g = y(); + if (!g) return; - const { available: h, contentBox: b } = m; - b.height > h.y && requestAnimationFrame(() => { - f(), requestAnimationFrame(() => { - f(); + const { available: b, contentBox: m } = g; + m.height > b.y && requestAnimationFrame(() => { + y(), requestAnimationFrame(() => { + y(); }); }); - }), { updateLocation: f }; -} }, Dr = H({ locationStrategy: { type: [String, Function], default: "static", validator: (e) => typeof e == "function" || e in ri }, location: { type: String, default: "bottom" }, origin: { type: String, default: "auto" }, offset: [Number, String, Array] }, "VOverlay-location-strategies"); -function bl(e) { + }), { updateLocation: y }; +} }, Hr = H({ locationStrategy: { type: [String, Function], default: "static", validator: (e) => typeof e == "function" || e in pi }, location: { type: String, default: "bottom" }, origin: { type: String, default: "auto" }, offset: [Number, String, Array] }, "VOverlay-location-strategies"); +function Bl(e) { return Math.round(e * devicePixelRatio) / devicePixelRatio; } -function jo(e) { +function Xo(e) { return Math.ceil(e * devicePixelRatio) / devicePixelRatio; } -let Pl = !0; -const nl = []; -let Go = -1; -function $l() { - cancelAnimationFrame(Go), Go = requestAnimationFrame(() => { - const e = nl.shift(); - e && e(), nl.length ? $l() : Pl = !0; +let El = !0; +const ul = []; +let Yo = -1; +function zl() { + cancelAnimationFrame(Yo), Yo = requestAnimationFrame(() => { + const e = ul.shift(); + e && e(), ul.length ? zl() : El = !0; }); } -const jn = { none: null, close: function(e) { - Uo(e.targetEl.value ?? e.contentEl.value, function(n) { +const Qn = { none: null, close: function(e) { + Jo(e.targetEl.value ?? e.contentEl.value, function(n) { e.isActive.value = !1; }); }, block: function(e, n) { - var u; - const t = (u = e.root.value) == null ? void 0 : u.offsetParent, l = [.../* @__PURE__ */ new Set([...Jn(e.targetEl.value, n.contained ? t : void 0), ...Jn(e.contentEl.value, n.contained ? t : void 0)])].filter((s) => !s.classList.contains("v-overlay-scroll-blocked")), o = window.innerWidth - document.documentElement.offsetWidth, a = (c = t || document.documentElement, ql(c) && c); + var s; + const t = (s = e.root.value) == null ? void 0 : s.offsetParent, l = [.../* @__PURE__ */ new Set([...ol(e.targetEl.value, n.contained ? t : void 0), ...ol(e.contentEl.value, n.contained ? t : void 0)])].filter((u) => !u.classList.contains("v-overlay-scroll-blocked")), o = window.innerWidth - document.documentElement.offsetWidth, i = (c = t || document.documentElement, Yl(c) && c); var c; - a && e.root.value.classList.add("v-overlay--scroll-blocked"), l.forEach((s, i) => { - s.style.setProperty("--v-body-scroll-x", ie(-s.scrollLeft)), s.style.setProperty("--v-body-scroll-y", ie(-s.scrollTop)), s !== document.documentElement && s.style.setProperty("--v-scrollbar-offset", ie(o)), s.classList.add("v-overlay-scroll-blocked"); - }), He(() => { - l.forEach((s, i) => { - const p = parseFloat(s.style.getPropertyValue("--v-body-scroll-x")), y = parseFloat(s.style.getPropertyValue("--v-body-scroll-y")); - s.style.removeProperty("--v-body-scroll-x"), s.style.removeProperty("--v-body-scroll-y"), s.style.removeProperty("--v-scrollbar-offset"), s.classList.remove("v-overlay-scroll-blocked"), s.scrollLeft = -p, s.scrollTop = -y; - }), a && e.root.value.classList.remove("v-overlay--scroll-blocked"); + i && e.root.value.classList.add("v-overlay--scroll-blocked"), l.forEach((u, a) => { + u.style.setProperty("--v-body-scroll-x", ce(-u.scrollLeft)), u.style.setProperty("--v-body-scroll-y", ce(-u.scrollTop)), u !== document.documentElement && u.style.setProperty("--v-scrollbar-offset", ce(o)), u.classList.add("v-overlay-scroll-blocked"); + }), Je(() => { + l.forEach((u, a) => { + const p = parseFloat(u.style.getPropertyValue("--v-body-scroll-x")), f = parseFloat(u.style.getPropertyValue("--v-body-scroll-y")); + u.style.removeProperty("--v-body-scroll-x"), u.style.removeProperty("--v-body-scroll-y"), u.style.removeProperty("--v-scrollbar-offset"), u.classList.remove("v-overlay-scroll-blocked"), u.scrollLeft = -p, u.scrollTop = -f; + }), i && e.root.value.classList.remove("v-overlay--scroll-blocked"); }); }, reposition: function(e, n, t) { - let l = !1, o = -1, a = -1; - function c(u) { - var s; - s = () => { - var y, f; - const i = performance.now(); - (f = (y = e.updateLocation).value) == null || f.call(y, u), l = (performance.now() - i) / (1e3 / 60) > 2; - }, !Pl || nl.length ? (nl.push(s), $l()) : (Pl = !1, s(), $l()); + let l = !1, o = -1, i = -1; + function c(s) { + var u; + u = () => { + var f, y; + const a = performance.now(); + (y = (f = e.updateLocation).value) == null || y.call(f, s), l = (performance.now() - a) / (1e3 / 60) > 2; + }, !El || ul.length ? (ul.push(u), zl()) : (El = !1, u(), zl()); } - a = (typeof requestIdleCallback > "u" ? (u) => u() : requestIdleCallback)(() => { + i = (typeof requestIdleCallback > "u" ? (s) => s() : requestIdleCallback)(() => { t.run(() => { - Uo(e.targetEl.value ?? e.contentEl.value, (u) => { + Jo(e.targetEl.value ?? e.contentEl.value, (s) => { l ? (cancelAnimationFrame(o), o = requestAnimationFrame(() => { o = requestAnimationFrame(() => { - c(u); + c(s); }); - })) : c(u); + })) : c(s); }); }); - }), He(() => { - typeof cancelIdleCallback < "u" && cancelIdleCallback(a), cancelAnimationFrame(o); + }), Je(() => { + typeof cancelIdleCallback < "u" && cancelIdleCallback(i), cancelAnimationFrame(o); }); -} }, Lr = H({ scrollStrategy: { type: [String, Function], default: "block", validator: (e) => typeof e == "function" || e in jn } }, "VOverlay-scroll-strategies"); -function Uo(e, n) { - const t = [document, ...Jn(e)]; +} }, Kr = H({ scrollStrategy: { type: [String, Function], default: "block", validator: (e) => typeof e == "function" || e in Qn } }, "VOverlay-scroll-strategies"); +function Jo(e, n) { + const t = [document, ...ol(e)]; t.forEach((l) => { l.addEventListener("scroll", n, { passive: !0 }); - }), He(() => { + }), Je(() => { t.forEach((l) => { l.removeEventListener("scroll", n); }); }); } -const El = Symbol.for("vuetify:v-menu"), Wr = H({ closeDelay: [Number, String], openDelay: [Number, String] }, "delay"), Mr = H({ target: [String, Object], activator: [String, Object], activatorProps: { type: Object, default: () => ({}) }, openOnClick: { type: Boolean, default: void 0 }, openOnHover: Boolean, openOnFocus: { type: Boolean, default: void 0 }, closeOnContentClick: Boolean, ...Wr() }, "VOverlay-activator"); -function Rr(e, n) { - let { isActive: t, isTop: l } = n; - const o = We("useActivator"), a = D(); - let c = !1, u = !1, s = !0; - const i = v(() => e.openOnFocus || e.openOnFocus == null && e.openOnHover), p = v(() => e.openOnClick || e.openOnClick == null && !e.openOnHover && !i.value), { runOpenDelay: y, runCloseDelay: f } = function(C, O) { - const w = {}, M = (V) => () => { - if (!Ke) - return Promise.resolve(!0); - const A = V === "openDelay"; - return w.closeDelay && window.clearTimeout(w.closeDelay), delete w.closeDelay, w.openDelay && window.clearTimeout(w.openDelay), delete w.openDelay, new Promise((P) => { - const S = parseInt(C[V] ?? 0, 10); - w[V] = window.setTimeout(() => { - O == null || O(A), P(A); - }, S); +const Dl = Symbol.for("vuetify:v-menu"), Xr = H({ closeDelay: [Number, String], openDelay: [Number, String] }, "delay"); +function Yr(e, n) { + let t = () => { + }; + function l(o) { + t == null || t(); + const i = Number(o ? e.openDelay : e.closeDelay); + return new Promise((c) => { + t = function(s, u) { + if (!Ke || s === 0) + return u(), () => { + }; + const a = window.setTimeout(u, s); + return () => window.clearTimeout(a); + }(i, () => { + n == null || n(o), c(o); }); - }; - return { runCloseDelay: M("closeDelay"), runOpenDelay: M("openDelay") }; - }(e, (C) => { - C !== (e.openOnHover && c || i.value && u) || e.openOnHover && t.value && !l.value || (t.value !== C && (s = !0), t.value = C); - }), m = D(), h = (C) => { - C.stopPropagation(), a.value = C.currentTarget || C.target, t.value || (m.value = [C.clientX, C.clientY]), t.value = !t.value; - }, b = (C) => { - var O; - (O = C.sourceCapabilities) != null && O.firesTouchEvents || (c = !0, a.value = C.currentTarget || C.target, y()); - }, g = (C) => { - c = !1, f(); + }); + } + return { clearDelay: t, runOpenDelay: function() { + return l(!0); + }, runCloseDelay: function() { + return l(!1); + } }; +} +const Jr = H({ target: [String, Object], activator: [String, Object], activatorProps: { type: Object, default: () => ({}) }, openOnClick: { type: Boolean, default: void 0 }, openOnHover: Boolean, openOnFocus: { type: Boolean, default: void 0 }, closeOnContentClick: Boolean, ...Xr() }, "VOverlay-activator"); +function Qr(e, n) { + let { isActive: t, isTop: l } = n; + const o = Ge("useActivator"), i = W(); + let c = !1, s = !1, u = !0; + const a = v(() => e.openOnFocus || e.openOnFocus == null && e.openOnHover), p = v(() => e.openOnClick || e.openOnClick == null && !e.openOnHover && !a.value), { runOpenDelay: f, runCloseDelay: y } = Yr(e, (C) => { + C !== (e.openOnHover && c || a.value && s) || e.openOnHover && t.value && !l.value || (t.value !== C && (u = !0), t.value = C); + }), g = W(), b = (C) => { + C.stopPropagation(), i.value = C.currentTarget || C.target, t.value || (g.value = [C.clientX, C.clientY]), t.value = !t.value; + }, m = (C) => { + var _; + (_ = C.sourceCapabilities) != null && _.firesTouchEvents || (c = !0, i.value = C.currentTarget || C.target, f()); + }, h = (C) => { + c = !1, y(); }, I = (C) => { - Yn(C.target, ":focus-visible") !== !1 && (u = !0, C.stopPropagation(), a.value = C.currentTarget || C.target, y()); - }, k = (C) => { - u = !1, C.stopPropagation(), f(); - }, F = v(() => { + an(C.target, ":focus-visible") !== !1 && (s = !0, C.stopPropagation(), i.value = C.currentTarget || C.target, f()); + }, F = (C) => { + s = !1, C.stopPropagation(), y(); + }, V = v(() => { const C = {}; - return p.value && (C.onClick = h), e.openOnHover && (C.onMouseenter = b, C.onMouseleave = g), i.value && (C.onFocus = I, C.onBlur = k), C; - }), U = v(() => { + return p.value && (C.onClick = b), e.openOnHover && (C.onMouseenter = m, C.onMouseleave = h), a.value && (C.onFocus = I, C.onBlur = F), C; + }), N = v(() => { const C = {}; if (e.openOnHover && (C.onMouseenter = () => { - c = !0, y(); + c = !0, f(); }, C.onMouseleave = () => { - c = !1, f(); - }), i.value && (C.onFocusin = () => { - u = !0, y(); + c = !1, y(); + }), a.value && (C.onFocusin = () => { + s = !0, f(); }, C.onFocusout = () => { - u = !1, f(); + s = !1, y(); }), e.closeOnContentClick) { - const O = me(El, null); + const _ = Ie(Dl, null); C.onClick = () => { - t.value = !1, O == null || O.closeParents(); + t.value = !1, _ == null || _.closeParents(); }; } return C; - }), $ = v(() => { + }), w = v(() => { const C = {}; return e.openOnHover && (C.onMouseenter = () => { - s && (c = !0, s = !1, y()); + u && (c = !0, u = !1, f()); }, C.onMouseleave = () => { - c = !1, f(); + c = !1, y(); }), C; }); - J(l, (C) => { - !C || (!e.openOnHover || c || i.value && u) && (!i.value || u || e.openOnHover && c) || (t.value = !1); - }), J(t, (C) => { + Y(l, (C) => { + !C || (!e.openOnHover || c || a.value && s) && (!a.value || s || e.openOnHover && c) || (t.value = !1); + }), Y(t, (C) => { C || setTimeout(() => { - m.value = void 0; + g.value = void 0; }); }, { flush: "post" }); - const z = D(); - it(() => { - z.value && Me(() => { - a.value = Un(z.value); + const L = W(); + ze(() => { + L.value && Ne(() => { + i.value = Zn(L.value); }); }); - const L = D(), E = v(() => e.target === "cursor" && m.value ? m.value : L.value ? Un(L.value) : qo(e.target, o) || a.value), B = v(() => Array.isArray(E.value) ? void 0 : E.value); - let _; - return J(() => !!e.activator, (C) => { - C && Ke ? (_ = zl(), _.run(() => { - (function(O, w, M) { - let { activatorEl: V, activatorEvents: A } = M; - function P() { - let W = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : x(), R = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : O.activatorProps; - W && function(Y, q) { - Object.keys(q).forEach((T) => { - if (Bl(T)) { - const N = co(T), j = Dn.get(Y); - if (q[T] == null) - j == null || j.forEach((G) => { - const [X, te] = G; - X === N && (Y.removeEventListener(N, te), j.delete(G)); + const M = W(), E = v(() => e.target === "cursor" && g.value ? g.value : M.value ? Zn(M.value) : Qo(e.target, o) || i.value), S = v(() => Array.isArray(E.value) ? void 0 : E.value); + let k; + return Y(() => !!e.activator, (C) => { + C && Ke ? (k = Ml(), k.run(() => { + (function(_, P, G) { + let { activatorEl: $, activatorEvents: O } = G; + function T() { + let U = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : A(), j = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : _.activatorProps; + U && function(X, q) { + Object.keys(q).forEach((J) => { + if (Fl(J)) { + const R = go(J), z = qn.get(X); + if (q[J] == null) + z == null || z.forEach((D) => { + const [x, K] = D; + x === R && (X.removeEventListener(R, K), z.delete(D)); }); - else if (!j || ![...j].some((G) => G[0] === N && G[1] === q[T])) { - Y.addEventListener(N, q[T]); - const G = j || /* @__PURE__ */ new Set(); - G.add([N, q[T]]), Dn.has(Y) || Dn.set(Y, G); + else if (!z || ![...z].some((D) => D[0] === R && D[1] === q[J])) { + X.addEventListener(R, q[J]); + const D = z || /* @__PURE__ */ new Set(); + D.add([R, q[J]]), qn.has(X) || qn.set(X, D); } } else - q[T] == null ? Y.removeAttribute(T) : Y.setAttribute(T, q[T]); + q[J] == null ? X.removeAttribute(J) : X.setAttribute(J, q[J]); }); - }(W, Q(A.value, R)); + }(U, ee(O.value, j)); } - function S() { - let W = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : x(), R = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : O.activatorProps; - W && function(Y, q) { - Object.keys(q).forEach((T) => { - if (Bl(T)) { - const N = co(T), j = Dn.get(Y); - j == null || j.forEach((G) => { - const [X, te] = G; - X === N && (Y.removeEventListener(N, te), j.delete(G)); + function B() { + let U = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : A(), j = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : _.activatorProps; + U && function(X, q) { + Object.keys(q).forEach((J) => { + if (Fl(J)) { + const R = go(J), z = qn.get(X); + z == null || z.forEach((D) => { + const [x, K] = D; + x === R && (X.removeEventListener(R, K), z.delete(D)); }); } else - Y.removeAttribute(T); + X.removeAttribute(J); }); - }(W, Q(A.value, R)); + }(U, ee(O.value, j)); } - function x() { - const W = qo(arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : O.activator, w); - return V.value = (W == null ? void 0 : W.nodeType) === Node.ELEMENT_NODE ? W : void 0, V.value; + function A() { + const U = Qo(arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : _.activator, P); + return $.value = (U == null ? void 0 : U.nodeType) === Node.ELEMENT_NODE ? U : void 0, $.value; } - J(() => O.activator, (W, R) => { - if (R && W !== R) { - const Y = x(R); - Y && S(Y); + Y(() => _.activator, (U, j) => { + if (j && U !== j) { + const X = A(j); + X && B(X); } - W && Me(() => P()); - }, { immediate: !0 }), J(() => O.activatorProps, () => { - P(); - }), He(() => { - S(); + U && Ne(() => T()); + }, { immediate: !0 }), Y(() => _.activatorProps, () => { + T(); + }), Je(() => { + B(); }); - })(e, o, { activatorEl: a, activatorEvents: F }); - })) : _ && _.stop(); - }, { flush: "post", immediate: !0 }), He(() => { - _ == null || _.stop(); - }), { activatorEl: a, activatorRef: z, target: E, targetEl: B, targetRef: L, activatorEvents: F, contentEvents: U, scrimEvents: $ }; + })(e, o, { activatorEl: i, activatorEvents: V }); + })) : k && k.stop(); + }, { flush: "post", immediate: !0 }), Je(() => { + k == null || k.stop(); + }), { activatorEl: i, activatorRef: L, target: E, targetEl: S, targetRef: M, activatorEvents: V, contentEvents: N, scrimEvents: w }; } -function qo(e, n) { +function Qo(e, n) { var l, o; if (!e) return; let t; if (e === "parent") { - let a = (o = (l = n == null ? void 0 : n.proxy) == null ? void 0 : l.$el) == null ? void 0 : o.parentNode; - for (; a != null && a.hasAttribute("data-no-activator"); ) - a = a.parentNode; - t = a; + let i = (o = (l = n == null ? void 0 : n.proxy) == null ? void 0 : l.$el) == null ? void 0 : o.parentNode; + for (; i != null && i.hasAttribute("data-no-activator"); ) + i = i.parentNode; + t = i; } else t = typeof e == "string" ? document.querySelector(e) : "$el" in e ? e.$el : e; return t; } -const Nr = Symbol.for("vuetify:display"); -function si() { - let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : st(); - const t = me(Nr); +const Zr = Symbol.for("vuetify:display"); +function vi() { + let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : yt(); + const t = Ie(Zr); if (!t) throw new Error("Could not find Vuetify display injection"); const l = v(() => { if (!e.mobileBreakpoint) return t.mobile.value; - const a = typeof e.mobileBreakpoint == "number" ? e.mobileBreakpoint : t.thresholds.value[e.mobileBreakpoint]; - return t.width.value < a; + const i = typeof e.mobileBreakpoint == "number" ? e.mobileBreakpoint : t.thresholds.value[e.mobileBreakpoint]; + return t.width.value < i; }), o = v(() => n ? { [`${n}--mobile`]: l.value } : {}); return { ...t, displayClasses: o, mobile: l }; } -const jr = H({ eager: Boolean }, "lazy"); -function ui() { - const e = We("useScopeId").vnode.scopeId; +const es = H({ eager: Boolean }, "lazy"); +function fi() { + const e = Ge("useScopeId").vnode.scopeId; return { scopeId: e ? { [e]: "" } : void 0 }; } -const Ho = Symbol.for("vuetify:stack"), yn = lt([]); -function Gr() { +const Zo = Symbol.for("vuetify:stack"), Bn = Qe([]); +function ts() { return !0; } -function Yo(e, n, t) { - if (!e || ci(e, t) === !1) +function ea(e, n, t) { + if (!e || yi(e, t) === !1) return !1; - const l = ma(n); + const l = ba(n); if (typeof ShadowRoot < "u" && l instanceof ShadowRoot && l.host === e.target) return !1; const o = (typeof t.value == "object" && t.value.include || (() => []))(); - return o.push(n), !o.some((a) => a == null ? void 0 : a.contains(e.target)); + return o.push(n), !o.some((i) => i == null ? void 0 : i.contains(e.target)); } -function ci(e, n) { - return (typeof n.value == "object" && n.value.closeConditional || Gr)(e); +function yi(e, n) { + return (typeof n.value == "object" && n.value.closeConditional || ts)(e); } -function Xo(e, n) { - const t = ma(e); +function ta(e, n) { + const t = ba(e); n(document), typeof ShadowRoot < "u" && t instanceof ShadowRoot && n(t); } -const Ur = { mounted(e, n) { - const t = (o) => function(a, c, u) { - const s = typeof u.value == "function" ? u.value : u.value.handler; - c._clickOutside.lastMousedownWasOutside && Yo(a, c, u) && setTimeout(() => { - ci(a, u) && s && s(a); +const ns = { mounted(e, n) { + const t = (o) => function(i, c, s) { + const u = typeof s.value == "function" ? s.value : s.value.handler; + c._clickOutside.lastMousedownWasOutside && ea(i, c, s) && setTimeout(() => { + yi(i, s) && u && u(i); }, 0); }(o, e, n), l = (o) => { - e._clickOutside.lastMousedownWasOutside = Yo(o, e, n); + e._clickOutside.lastMousedownWasOutside = ea(o, e, n); }; - Xo(e, (o) => { + ta(e, (o) => { o.addEventListener("click", t, !0), o.addEventListener("mousedown", l, !0); }), e._clickOutside || (e._clickOutside = { lastMousedownWasOutside: !1 }), e._clickOutside[n.instance.$.uid] = { onClick: t, onMousedown: l }; }, unmounted(e, n) { - e._clickOutside && (Xo(e, (t) => { - var a; - if (!t || !((a = e._clickOutside) != null && a[n.instance.$.uid])) + e._clickOutside && (ta(e, (t) => { + var i; + if (!t || !((i = e._clickOutside) != null && i[n.instance.$.uid])) return; const { onClick: l, onMousedown: o } = e._clickOutside[n.instance.$.uid]; t.removeEventListener("click", l, !0), t.removeEventListener("mousedown", o, !0); }), delete e._clickOutside[n.instance.$.uid]); } }; -function qr(e) { +function ls(e) { const { modelValue: n, color: t, ...l } = e; - return d(At, { name: "fade-transition", appear: !0 }, { default: () => [e.modelValue && d("div", Q({ class: ["v-overlay__scrim", e.color.backgroundColorClasses.value], style: e.color.backgroundColorStyles.value }, l), null)] }); + return d(Wt, { name: "fade-transition", appear: !0 }, { default: () => [e.modelValue && d("div", ee({ class: ["v-overlay__scrim", e.color.backgroundColorClasses.value], style: e.color.backgroundColorStyles.value }, l), null)] }); } -const di = H({ absolute: Boolean, attach: [Boolean, String, Object], closeOnBack: { type: Boolean, default: !0 }, contained: Boolean, contentClass: null, contentProps: null, disabled: Boolean, noClickAnimation: Boolean, modelValue: Boolean, persistent: Boolean, scrim: { type: [Boolean, String], default: !0 }, zIndex: { type: [Number, String], default: 2e3 }, ...Mr(), ...ye(), ...zt(), ...jr(), ...Dr(), ...Lr(), ...Ne(), ...$n() }, "VOverlay"), Ko = ee()({ name: "VOverlay", directives: { ClickOutside: Ur }, inheritAttrs: !1, props: { _disableGlobalStack: Boolean, ...di() }, emits: { "click:outside": (e) => !0, "update:modelValue": (e) => !0, afterLeave: () => !0 }, setup(e, n) { - var Y, q; +const mi = H({ absolute: Boolean, attach: [Boolean, String, Object], closeOnBack: { type: Boolean, default: !0 }, contained: Boolean, contentClass: null, contentProps: null, disabled: Boolean, noClickAnimation: Boolean, modelValue: Boolean, persistent: Boolean, scrim: { type: [Boolean, String], default: !0 }, zIndex: { type: [Number, String], default: 2e3 }, ...Jr(), ...Se(), ...Xt(), ...es(), ...Hr(), ...Kr(), ...He(), ...Cn() }, "VOverlay"), na = oe()({ name: "VOverlay", directives: { ClickOutside: ns }, inheritAttrs: !1, props: { _disableGlobalStack: Boolean, ...mi() }, emits: { "click:outside": (e) => !0, "update:modelValue": (e) => !0, afterLeave: () => !0 }, setup(e, n) { + var q, J; let { slots: t, attrs: l, emit: o } = n; - const a = $e(e, "modelValue"), c = v({ get: () => a.value, set: (T) => { - T && e.disabled || (a.value = T); - } }), { teleportTarget: u } = function(T) { + const i = Te(e, "modelValue"), c = v({ get: () => i.value, set: (R) => { + R && e.disabled || (i.value = R); + } }), { teleportTarget: s } = function(R) { return { teleportTarget: v(() => { - const N = T.value; - if (N === !0 || !Ke) + const z = R.value; + if (z === !0 || !Ke) return; - const j = N === !1 ? document.body : typeof N == "string" ? document.querySelector(N) : N; - if (j == null) - return void ll(`Unable to locate target ${N}`); - let G = j.querySelector(":scope > .v-overlay-container"); - return G || (G = document.createElement("div"), G.className = "v-overlay-container", j.appendChild(G)), G; + const D = z === !1 ? document.body : typeof z == "string" ? document.querySelector(z) : z; + if (D == null) + return void cl(`Unable to locate target ${z}`); + let x = D.querySelector(":scope > .v-overlay-container"); + return x || (x = document.createElement("div"), x.className = "v-overlay-container", D.appendChild(x)), x; }) }; - }(v(() => e.attach || e.contained)), { themeClasses: s } = Xe(e), { rtlClasses: i, isRtl: p } = On(), { hasContent: y, onAfterLeave: f } = function(T, N) { - const j = de(!1), G = v(() => j.value || T.eager || N.value); - return J(N, () => j.value = !0), { isBooted: j, hasContent: G, onAfterLeave: function() { - T.eager || (j.value = !1); + }(v(() => e.attach || e.contained)), { themeClasses: u } = Ze(e), { rtlClasses: a, isRtl: p } = Mn(), { hasContent: f, onAfterLeave: y } = function(R, z) { + const D = ve(!1), x = v(() => D.value || R.eager || z.value); + return Y(z, () => D.value = !0), { isBooted: D, hasContent: x, onAfterLeave: function() { + R.eager || (D.value = !1); } }; - }(e, c), m = Gt(v(() => typeof e.scrim == "string" ? e.scrim : null)), { globalTop: h, localTop: b, stackStyles: g } = function(T, N, j) { - const G = We("useStack"), X = !j, te = me(Ho, void 0), pe = lt({ activeChildren: /* @__PURE__ */ new Set() }); - tt(Ho, pe); - const ge = de(+N.value); - Ft(T, () => { - var ke; - const Ae = (ke = yn.at(-1)) == null ? void 0 : ke[1]; - ge.value = Ae ? Ae + 10 : +N.value, X && yn.push([G.uid, ge.value]), te == null || te.activeChildren.add(G.uid), He(() => { - if (X) { - const Be = It(yn).findIndex((Oe) => Oe[0] === G.uid); - yn.splice(Be, 1); + }(e, c), g = rn(v(() => typeof e.scrim == "string" ? e.scrim : null)), { globalTop: b, localTop: m, stackStyles: h } = function(R, z, D) { + const x = Ge("useStack"), K = !D, te = Ie(Zo, void 0), re = Qe({ activeChildren: /* @__PURE__ */ new Set() }); + ot(Zo, re); + const Q = ve(+z.value); + Lt(R, () => { + var ae; + const he = (ae = Bn.at(-1)) == null ? void 0 : ae[1]; + Q.value = he ? he + 10 : +z.value, K && Bn.push([x.uid, Q.value]), te == null || te.activeChildren.add(x.uid), Je(() => { + if (K) { + const Be = Bt(Bn).findIndex((xe) => xe[0] === x.uid); + Bn.splice(Be, 1); } - te == null || te.activeChildren.delete(G.uid); + te == null || te.activeChildren.delete(x.uid); }); }); - const he = de(!0); - X && it(() => { - var ke; - const Ae = ((ke = yn.at(-1)) == null ? void 0 : ke[0]) === G.uid; - setTimeout(() => he.value = Ae); + const pe = ve(!0); + K && ze(() => { + var ae; + const he = ((ae = Bn.at(-1)) == null ? void 0 : ae[0]) === x.uid; + setTimeout(() => pe.value = he); }); - const ze = v(() => !pe.activeChildren.size); - return { globalTop: Dl(he), localTop: ze, stackStyles: v(() => ({ zIndex: ge.value })) }; - }(c, ae(e, "zIndex"), e._disableGlobalStack), { activatorEl: I, activatorRef: k, target: F, targetEl: U, targetRef: $, activatorEvents: z, contentEvents: L, scrimEvents: E } = Rr(e, { isActive: c, isTop: b }), { dimensionStyles: B } = Dt(e), _ = function() { + const de = v(() => !re.activeChildren.size); + return { globalTop: Rl(pe), localTop: de, stackStyles: v(() => ({ zIndex: Q.value })) }; + }(c, ue(e, "zIndex"), e._disableGlobalStack), { activatorEl: I, activatorRef: F, target: V, targetEl: N, targetRef: w, activatorEvents: L, contentEvents: M, scrimEvents: E } = Qr(e, { isActive: c, isTop: m }), { dimensionStyles: S } = Yt(e), k = function() { if (!Ke) - return de(!1); - const { ssr: T } = si(); - if (T) { - const N = de(!1); - return qt(() => { - N.value = !0; - }), N; + return ve(!1); + const { ssr: R } = vi(); + if (R) { + const z = ve(!1); + return un(() => { + z.value = !0; + }), z; } - return de(!0); - }(), { scopeId: C } = ui(); - J(() => e.disabled, (T) => { - T && (c.value = !1); + return ve(!0); + }(), { scopeId: C } = fi(); + Y(() => e.disabled, (R) => { + R && (c.value = !1); }); - const O = D(), w = D(), { contentStyles: M, updateLocation: V } = function(T, N) { - const j = D({}), G = D(); - function X(te) { - var pe; - (pe = G.value) == null || pe.call(G, te); + const _ = W(), P = W(), { contentStyles: G, updateLocation: $ } = function(R, z) { + const D = W({}), x = W(); + function K(te) { + var re; + (re = x.value) == null || re.call(x, te); } - return Ke && Ft(() => !(!N.isActive.value || !T.locationStrategy), (te) => { - var pe, ge; - J(() => T.locationStrategy, te), He(() => { - window.removeEventListener("resize", X), G.value = void 0; - }), window.addEventListener("resize", X, { passive: !0 }), typeof T.locationStrategy == "function" ? G.value = (pe = T.locationStrategy(N, T, j)) == null ? void 0 : pe.updateLocation : G.value = (ge = ri[T.locationStrategy](N, T, j)) == null ? void 0 : ge.updateLocation; - }), { contentStyles: j, updateLocation: G }; - }(e, { isRtl: p, contentEl: w, target: F, isActive: c }); - function A(T) { - o("click:outside", T), e.persistent ? R() : c.value = !1; - } - function P() { - return c.value && h.value; - } - function S(T) { - var N, j; - T.key === "Escape" && h.value && (e.persistent ? R() : (c.value = !1, (N = w.value) != null && N.contains(document.activeElement) && ((j = I.value) == null || j.focus()))); - } - (function(T, N) { + return Ke && Lt(() => !(!z.isActive.value || !R.locationStrategy), (te) => { + var re, Q; + Y(() => R.locationStrategy, te), Je(() => { + window.removeEventListener("resize", K), x.value = void 0; + }), window.addEventListener("resize", K, { passive: !0 }), typeof R.locationStrategy == "function" ? x.value = (re = R.locationStrategy(z, R, D)) == null ? void 0 : re.updateLocation : x.value = (Q = pi[R.locationStrategy](z, R, D)) == null ? void 0 : Q.updateLocation; + }), { contentStyles: D, updateLocation: x }; + }(e, { isRtl: p, contentEl: P, target: V, isActive: c }); + function O(R) { + o("click:outside", R), e.persistent ? j() : c.value = !1; + } + function T() { + return c.value && b.value; + } + function B(R) { + var z, D; + R.key === "Escape" && b.value && (e.persistent ? j() : (c.value = !1, (z = P.value) != null && z.contains(document.activeElement) && ((D = I.value) == null || D.focus()))); + } + (function(R, z) { if (!Ke) return; - let j; - it(async () => { - j == null || j.stop(), N.isActive.value && T.scrollStrategy && (j = zl(), await Me(), j.active && j.run(() => { - var G; - typeof T.scrollStrategy == "function" ? T.scrollStrategy(N, T, j) : (G = jn[T.scrollStrategy]) == null || G.call(jn, N, T, j); + let D; + ze(async () => { + D == null || D.stop(), z.isActive.value && R.scrollStrategy && (D = Ml(), await Ne(), D.active && D.run(() => { + var x; + typeof R.scrollStrategy == "function" ? R.scrollStrategy(z, R, D) : (x = Qn[R.scrollStrategy]) == null || x.call(Qn, z, R, D); })); - }), He(() => { - j == null || j.stop(); + }), Je(() => { + D == null || D.stop(); }); - })(e, { root: O, contentEl: w, targetEl: U, isActive: c, updateLocation: V }), Ke && J(c, (T) => { - T ? window.addEventListener("keydown", S) : window.removeEventListener("keydown", S); - }, { immediate: !0 }); - const x = (q = (Y = We("useRouter")) == null ? void 0 : Y.proxy) == null ? void 0 : q.$router; - Ft(() => e.closeOnBack, () => { - (function(T, N) { - let j, G, X = !1; - function te(pe) { - var ge; - (ge = pe.state) != null && ge.replaced || (X = !0, setTimeout(() => X = !1)); + })(e, { root: _, contentEl: P, targetEl: N, isActive: c, updateLocation: $ }), Ke && Y(c, (R) => { + R ? window.addEventListener("keydown", B) : window.removeEventListener("keydown", B); + }, { immediate: !0 }), ft(() => { + Ke && window.removeEventListener("keydown", B); + }); + const A = (J = (q = Ge("useRouter")) == null ? void 0 : q.proxy) == null ? void 0 : J.$router; + Lt(() => e.closeOnBack, () => { + (function(R, z) { + let D, x, K = !1; + function te(re) { + var Q; + (Q = re.state) != null && Q.replaced || (K = !0, setTimeout(() => K = !1)); } - Ke && (Me(() => { - window.addEventListener("popstate", te), j = T == null ? void 0 : T.beforeEach((pe, ge, he) => { - gl ? X ? N(he) : he() : setTimeout(() => X ? N(he) : he()), gl = !0; - }), G = T == null ? void 0 : T.afterEach(() => { - gl = !1; + Ke && (Ne(() => { + window.addEventListener("popstate", te), D = R == null ? void 0 : R.beforeEach((re, Q, pe) => { + Il ? K ? z(pe) : pe() : setTimeout(() => K ? z(pe) : pe()), Il = !0; + }), x = R == null ? void 0 : R.afterEach(() => { + Il = !1; }); - }), He(() => { - window.removeEventListener("popstate", te), j == null || j(), G == null || G(); + }), Je(() => { + window.removeEventListener("popstate", te), D == null || D(), x == null || x(); })); - })(x, (T) => { - h.value && c.value ? (T(!1), e.persistent ? R() : c.value = !1) : T(); + })(A, (R) => { + b.value && c.value ? (R(!1), e.persistent ? j() : c.value = !1) : R(); }); }); - const W = D(); - function R() { - e.noClickAnimation || w.value && Nt(w.value, [{ transformOrigin: "center" }, { transform: "scale(1.03)" }, { transformOrigin: "center" }], { duration: 150, easing: Kn }); - } - return J(() => c.value && (e.absolute || e.contained) && u.value == null, (T) => { - if (T) { - const N = ha(O.value); - N && N !== document.scrollingElement && (W.value = N.scrollTop); + const U = W(); + function j() { + e.noClickAnimation || P.value && ln(P.value, [{ transformOrigin: "center" }, { transform: "scale(1.03)" }, { transformOrigin: "center" }], { duration: 150, easing: ll }); + } + function X() { + y(), o("afterLeave"); + } + return Y(() => c.value && (e.absolute || e.contained) && s.value == null, (R) => { + if (R) { + const z = Ia(_.value); + z && z !== document.scrollingElement && (U.value = z.scrollTop); } - }), se(() => { - var T; - return d(Fe, null, [(T = t.activator) == null ? void 0 : T.call(t, { isActive: c.value, props: Q({ ref: k, targetRef: $ }, z.value, e.activatorProps) }), _.value && y.value && d(Pt, { disabled: !u.value, to: u.value }, { default: () => [d("div", Q({ class: ["v-overlay", { "v-overlay--absolute": e.absolute || e.contained, "v-overlay--active": c.value, "v-overlay--contained": e.contained }, s.value, i.value, e.class], style: [g.value, { top: ie(W.value) }, e.style], ref: O }, C, l), [d(qr, Q({ color: m, modelValue: c.value && !!e.scrim }, E.value), null), d(Ct, { appear: !0, persisted: !0, transition: e.transition, target: F.value, onAfterLeave: () => { - f(), o("afterLeave"); - } }, { default: () => { - var N; - return [Ue(d("div", Q({ ref: w, class: ["v-overlay__content", e.contentClass], style: [B.value, M.value] }, L.value, e.contentProps), [(N = t.default) == null ? void 0 : N.call(t, { isActive: c })]), [[Ht, c.value], [mt("click-outside"), { handler: A, closeConditional: P, include: () => [I.value] }]])]; + }), ge(() => { + var R; + return d(we, null, [(R = t.activator) == null ? void 0 : R.call(t, { isActive: c.value, props: ee({ ref: F, targetRef: w }, L.value, e.activatorProps) }), !e.disabled && k.value && f.value && d(Vt, { disabled: !s.value, to: s.value }, { default: () => [d("div", ee({ class: ["v-overlay", { "v-overlay--absolute": e.absolute || e.contained, "v-overlay--active": c.value, "v-overlay--contained": e.contained }, u.value, a.value, e.class], style: [h.value, { top: ce(U.value) }, e.style], ref: _ }, C, l), [d(ls, ee({ color: g, modelValue: !!e.scrim && c.value }, E.value), null), d(St, { appear: !0, persisted: !0, transition: e.transition, target: V.value, onAfterLeave: X }, { default: () => { + var z; + return [Xe(d("div", ee({ ref: P, class: ["v-overlay__content", e.contentClass], style: [S.value, G.value] }, M.value, e.contentProps), [(z = t.default) == null ? void 0 : z.call(t, { isActive: c })]), [[cn, c.value], [ht("click-outside"), { handler: O, closeConditional: T, include: () => [I.value] }]])]; } })])] })]); - }), { activatorEl: I, target: F, animateClick: R, contentEl: w, globalTop: h, localTop: b, updateLocation: V }; -} }), Cl = Symbol("Forwarded refs"); -function Il(e, n) { + }), { activatorEl: I, target: V, animateClick: j, contentEl: P, globalTop: b, localTop: m, updateLocation: $ }; +} }), xl = Symbol("Forwarded refs"); +function kl(e, n) { let t = e; for (; t; ) { const l = Reflect.getOwnPropertyDescriptor(t, n); @@ -2479,328 +2651,328 @@ function Il(e, n) { t = Object.getPrototypeOf(t); } } -function ul(e) { +function Un(e) { for (var n = arguments.length, t = new Array(n > 1 ? n - 1 : 0), l = 1; l < n; l++) t[l - 1] = arguments[l]; - return e[Cl] = t, new Proxy(e, { get(o, a) { - if (Reflect.has(o, a)) - return Reflect.get(o, a); - if (typeof a != "symbol" && !a.startsWith("$") && !a.startsWith("__")) { + return e[xl] = t, new Proxy(e, { get(o, i) { + if (Reflect.has(o, i)) + return Reflect.get(o, i); + if (typeof i != "symbol" && !i.startsWith("$") && !i.startsWith("__")) { for (const c of t) - if (c.value && Reflect.has(c.value, a)) { - const u = Reflect.get(c.value, a); - return typeof u == "function" ? u.bind(c.value) : u; + if (c.value && Reflect.has(c.value, i)) { + const s = Reflect.get(c.value, i); + return typeof s == "function" ? s.bind(c.value) : s; } } - }, has(o, a) { - if (Reflect.has(o, a)) + }, has(o, i) { + if (Reflect.has(o, i)) return !0; - if (typeof a == "symbol" || a.startsWith("$") || a.startsWith("__")) + if (typeof i == "symbol" || i.startsWith("$") || i.startsWith("__")) return !1; for (const c of t) - if (c.value && Reflect.has(c.value, a)) + if (c.value && Reflect.has(c.value, i)) return !0; return !1; - }, set(o, a, c) { - if (Reflect.has(o, a)) - return Reflect.set(o, a, c); - if (typeof a == "symbol" || a.startsWith("$") || a.startsWith("__")) + }, set(o, i, c) { + if (Reflect.has(o, i)) + return Reflect.set(o, i, c); + if (typeof i == "symbol" || i.startsWith("$") || i.startsWith("__")) return !1; - for (const u of t) - if (u.value && Reflect.has(u.value, a)) - return Reflect.set(u.value, a, c); + for (const s of t) + if (s.value && Reflect.has(s.value, i)) + return Reflect.set(s.value, i, c); return !1; - }, getOwnPropertyDescriptor(o, a) { - var u; - const c = Reflect.getOwnPropertyDescriptor(o, a); + }, getOwnPropertyDescriptor(o, i) { + var s; + const c = Reflect.getOwnPropertyDescriptor(o, i); if (c) return c; - if (typeof a != "symbol" && !a.startsWith("$") && !a.startsWith("__")) { - for (const s of t) { - if (!s.value) + if (typeof i != "symbol" && !i.startsWith("$") && !i.startsWith("__")) { + for (const u of t) { + if (!u.value) continue; - const i = Il(s.value, a) ?? ("_" in s.value ? Il((u = s.value._) == null ? void 0 : u.setupState, a) : void 0); - if (i) - return i; + const a = kl(u.value, i) ?? ("_" in u.value ? kl((s = u.value._) == null ? void 0 : s.setupState, i) : void 0); + if (a) + return a; } - for (const s of t) { - const i = s.value && s.value[Cl]; - if (!i) + for (const u of t) { + const a = u.value && u.value[xl]; + if (!a) continue; - const p = i.slice(); + const p = a.slice(); for (; p.length; ) { - const y = p.shift(), f = Il(y.value, a); - if (f) - return f; - const m = y.value && y.value[Cl]; - m && p.push(...m); + const f = p.shift(), y = kl(f.value, i); + if (y) + return y; + const g = f.value && f.value[xl]; + g && p.push(...g); } } } } }); } -const Hr = H({ id: String, ...Tt(di({ closeDelay: 250, closeOnContentClick: !0, locationStrategy: "connected", openDelay: 300, scrim: !1, scrollStrategy: "reposition", transition: { component: Wa } }), ["absolute"]) }, "VMenu"), Yr = ee()({ name: "VMenu", props: Hr(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { +const os = H({ id: String, ...Ot(mi({ closeDelay: 250, closeOnContentClick: !0, locationStrategy: "connected", openDelay: 300, scrim: !1, scrollStrategy: "reposition", transition: { component: Xa } }), ["absolute"]) }, "VMenu"), gi = oe()({ name: "VMenu", props: os(), emits: { "update:modelValue": (e) => !0 }, setup(e, n) { let { slots: t } = n; - const l = $e(e, "modelValue"), { scopeId: o } = ui(), a = nt(), c = v(() => e.id || `v-menu-${a}`), u = D(), s = me(El, null), i = de(0); - async function p(b) { - var k, F, U; - const g = b.relatedTarget, I = b.target; - await Me(), l.value && g !== I && ((k = u.value) != null && k.contentEl) && ((F = u.value) != null && F.globalTop) && ![document, u.value.contentEl].includes(I) && !u.value.contentEl.contains(I) && ((U = xl(u.value.contentEl)[0]) == null || U.focus()); + const l = Te(e, "modelValue"), { scopeId: o } = fi(), i = ut(), c = v(() => e.id || `v-menu-${i}`), s = W(), u = Ie(Dl, null), a = ve(0); + async function p(m) { + var F, V, N; + const h = m.relatedTarget, I = m.target; + await Ne(), l.value && h !== I && ((F = s.value) != null && F.contentEl) && ((V = s.value) != null && V.globalTop) && ![document, s.value.contentEl].includes(I) && !s.value.contentEl.contains(I) && ((N = Al(s.value.contentEl)[0]) == null || N.focus()); } - function y() { - s == null || s.closeParents(); + function f() { + u == null || u.closeParents(); } - function f(b) { - var g, I, k; - !e.disabled && b.key === "Tab" && (da(xl((g = u.value) == null ? void 0 : g.contentEl, !1), b.shiftKey ? "prev" : "next", (F) => F.tabIndex >= 0) || (l.value = !1, (k = (I = u.value) == null ? void 0 : I.activatorEl) == null || k.focus())); + function y(m) { + var h, I, F; + !e.disabled && m.key === "Tab" && (ya(Al((h = s.value) == null ? void 0 : h.contentEl, !1), m.shiftKey ? "prev" : "next", (V) => V.tabIndex >= 0) || (l.value = !1, (F = (I = s.value) == null ? void 0 : I.activatorEl) == null || F.focus())); } - function m(b) { + function g(m) { var I; if (e.disabled) return; - const g = (I = u.value) == null ? void 0 : I.contentEl; - g && l.value ? b.key === "ArrowDown" ? (b.preventDefault(), Hn(g, "next")) : b.key === "ArrowUp" && (b.preventDefault(), Hn(g, "prev")) : ["ArrowDown", "ArrowUp"].includes(b.key) && (l.value = !0, b.preventDefault(), setTimeout(() => setTimeout(() => m(b)))); + const h = (I = s.value) == null ? void 0 : I.contentEl; + h && l.value ? m.key === "ArrowDown" ? (m.preventDefault(), tl(h, "next")) : m.key === "ArrowUp" && (m.preventDefault(), tl(h, "prev")) : ["ArrowDown", "ArrowUp"].includes(m.key) && (l.value = !0, m.preventDefault(), setTimeout(() => setTimeout(() => g(m)))); } - tt(El, { register() { - ++i.value; + ot(Dl, { register() { + ++a.value; }, unregister() { - --i.value; + --a.value; }, closeParents() { setTimeout(() => { - i.value || (l.value = !1, s == null || s.closeParents()); + a.value || (l.value = !1, u == null || u.closeParents()); }, 40); - } }), J(l, (b) => { - b ? (s == null || s.register(), document.addEventListener("focusin", p, { once: !0 })) : (s == null || s.unregister(), document.removeEventListener("focusin", p)); + } }), Y(l, (m) => { + m ? (u == null || u.register(), document.addEventListener("focusin", p, { once: !0 })) : (u == null || u.unregister(), document.removeEventListener("focusin", p)); }); - const h = v(() => Q({ "aria-haspopup": "menu", "aria-expanded": String(l.value), "aria-owns": c.value, onKeydown: m }, e.activatorProps)); - return se(() => { - const b = Ko.filterProps(e); - return d(Ko, Q({ ref: u, class: ["v-menu", e.class], style: e.style }, b, { modelValue: l.value, "onUpdate:modelValue": (g) => l.value = g, absolute: !0, activatorProps: h.value, "onClick:outside": y, onKeydown: f }, o), { activator: t.activator, default: function() { - for (var g = arguments.length, I = new Array(g), k = 0; k < g; k++) - I[k] = arguments[k]; - return d(je, { root: "VMenu" }, { default: () => { - var F; - return [(F = t.default) == null ? void 0 : F.call(t, ...I)]; + const b = v(() => ee({ "aria-haspopup": "menu", "aria-expanded": String(l.value), "aria-owns": c.value, onKeydown: g }, e.activatorProps)); + return ge(() => { + const m = na.filterProps(e); + return d(na, ee({ ref: s, class: ["v-menu", e.class], style: e.style }, m, { modelValue: l.value, "onUpdate:modelValue": (h) => l.value = h, absolute: !0, activatorProps: b.value, "onClick:outside": f, onKeydown: y }, o), { activator: t.activator, default: function() { + for (var h = arguments.length, I = new Array(h), F = 0; F < h; F++) + I[F] = arguments[F]; + return d(qe, { root: "VMenu" }, { default: () => { + var V; + return [(V = t.default) == null ? void 0 : V.call(t, ...I)]; } }); } }); - }), ul({ id: c, ΨopenChildren: i }, u); -} }), Xr = H({ active: Boolean, max: [Number, String], value: { type: [Number, String], default: 0 }, ...ye(), ...$n({ transition: { component: Ma } }) }, "VCounter"), pi = ee()({ name: "VCounter", functional: !0, props: Xr(), setup(e, n) { + }), Un({ id: c, ΨopenChildren: a }, s); +} }), as = H({ active: Boolean, max: [Number, String], value: { type: [Number, String], default: 0 }, ...Se(), ...Cn({ transition: { component: Ya } }) }, "VCounter"), hi = oe()({ name: "VCounter", functional: !0, props: as(), setup(e, n) { let { slots: t } = n; const l = v(() => e.max ? `${e.value} / ${e.max}` : String(e.value)); - return se(() => d(Ct, { transition: e.transition }, { default: () => [Ue(d("div", { class: ["v-counter", e.class], style: e.style }, [t.default ? t.default({ counter: l.value, max: e.max, value: e.value }) : l.value]), [[Ht, e.active]])] })), {}; -} }), Kr = H({ floating: Boolean, ...ye() }, "VFieldLabel"), Mn = ee()({ name: "VFieldLabel", props: Kr(), setup(e, n) { + return ge(() => d(St, { transition: e.transition }, { default: () => [Xe(d("div", { class: ["v-counter", e.class], style: e.style }, [t.default ? t.default({ counter: l.value, max: e.max, value: e.value }) : l.value]), [[cn, e.active]])] })), {}; +} }), is = H({ floating: Boolean, ...Se() }, "VFieldLabel"), Xn = oe()({ name: "VFieldLabel", props: is(), setup(e, n) { let { slots: t } = n; - return se(() => d(Ga, { class: ["v-field-label", { "v-field-label--floating": e.floating }, e.class], style: e.style, "aria-hidden": e.floating || void 0 }, t)), {}; -} }), Jr = ["underlined", "outlined", "filled", "solo", "solo-inverted", "solo-filled", "plain"], no = H({ appendInnerIcon: Ce, bgColor: String, clearable: Boolean, clearIcon: { type: Ce, default: "$clear" }, active: Boolean, centerAffix: { type: Boolean, default: void 0 }, color: String, baseColor: String, dirty: Boolean, disabled: { type: Boolean, default: null }, error: Boolean, flat: Boolean, label: String, persistentClear: Boolean, prependInnerIcon: Ce, reverse: Boolean, singleLine: Boolean, variant: { type: String, default: "filled", validator: (e) => Jr.includes(e) }, "onClick:clear": at(), "onClick:appendInner": at(), "onClick:prependInner": at(), ...ye(), ...Zl(), ...ht(), ...Ne() }, "VField"), lo = ee()({ name: "VField", inheritAttrs: !1, props: { id: String, ...Xa(), ...no() }, emits: { "update:focused": (e) => !0, "update:modelValue": (e) => !0 }, setup(e, n) { + return ge(() => d(Na, { class: ["v-field-label", { "v-field-label--floating": e.floating }, e.class], style: e.style, "aria-hidden": e.floating || void 0 }, t)), {}; +} }), rs = ["underlined", "outlined", "filled", "solo", "solo-inverted", "solo-filled", "plain"], ro = H({ appendInnerIcon: Ae, bgColor: String, clearable: Boolean, clearIcon: { type: Ae, default: "$clear" }, active: Boolean, centerAffix: { type: Boolean, default: void 0 }, color: String, baseColor: String, dirty: Boolean, disabled: { type: Boolean, default: null }, error: Boolean, flat: Boolean, label: String, persistentClear: Boolean, prependInnerIcon: Ae, reverse: Boolean, singleLine: Boolean, variant: { type: String, default: "filled", validator: (e) => rs.includes(e) }, "onClick:clear": pt(), "onClick:appendInner": pt(), "onClick:prependInner": pt(), ...Se(), ...to(), ...Ct(), ...He() }, "VField"), so = oe()({ name: "VField", inheritAttrs: !1, props: { id: String, ...Qa(), ...ro() }, emits: { "update:focused": (e) => !0, "update:modelValue": (e) => !0 }, setup(e, n) { let { attrs: t, emit: l, slots: o } = n; - const { themeClasses: a } = Xe(e), { loaderClasses: c } = il(e), { focusClasses: u, isFocused: s, focus: i, blur: p } = En(e), { InputIcon: y } = Ya(e), { roundedClasses: f } = bt(e), { rtlClasses: m } = On(), h = v(() => e.dirty || e.active), b = v(() => !(e.singleLine || !e.label && !o.label)), g = nt(), I = v(() => e.id || `input-${g}`), k = v(() => `${I.value}-messages`), F = D(), U = D(), $ = D(), z = v(() => ["plain", "underlined"].includes(e.variant)), { backgroundColorClasses: L, backgroundColorStyles: E } = Gt(ae(e, "bgColor")), { textColorClasses: B, textColorStyles: _ } = ft(v(() => e.error || e.disabled ? void 0 : h.value && s.value ? e.color : e.baseColor)); - J(h, (w) => { - if (b.value) { - const M = F.value.$el, V = U.value.$el; + const { themeClasses: i } = Ze(e), { loaderClasses: c } = fl(e), { focusClasses: s, isFocused: u, focus: a, blur: p } = jn(e), { InputIcon: f } = qa(e), { roundedClasses: y } = It(e), { rtlClasses: g } = Mn(), b = v(() => e.dirty || e.active), m = v(() => !(e.singleLine || !e.label && !o.label)), h = ut(), I = v(() => e.id || `input-${h}`), F = v(() => `${I.value}-messages`), V = W(), N = W(), w = W(), L = v(() => ["plain", "underlined"].includes(e.variant)), { backgroundColorClasses: M, backgroundColorStyles: E } = rn(ue(e, "bgColor")), { textColorClasses: S, textColorStyles: k } = vt(v(() => e.error || e.disabled ? void 0 : b.value && u.value ? e.color : e.baseColor)); + Y(b, (P) => { + if (m.value) { + const G = V.value.$el, $ = N.value.$el; requestAnimationFrame(() => { - const A = Gl(M), P = V.getBoundingClientRect(), S = P.x - A.x, x = P.y - A.y - (A.height / 2 - P.height / 2), W = P.width / 0.75, R = Math.abs(W - A.width) > 1 ? { maxWidth: ie(W) } : void 0, Y = getComputedStyle(M), q = getComputedStyle(V), T = 1e3 * parseFloat(Y.transitionDuration) || 150, N = parseFloat(q.getPropertyValue("--v-field-label-scale")), j = q.getPropertyValue("color"); - M.style.visibility = "visible", V.style.visibility = "hidden", Nt(M, { transform: `translate(${S}px, ${x}px) scale(${N})`, color: j, ...R }, { duration: T, easing: Kn, direction: w ? "normal" : "reverse" }).finished.then(() => { - M.style.removeProperty("visibility"), V.style.removeProperty("visibility"); + const O = Kl(G), T = $.getBoundingClientRect(), B = T.x - O.x, A = T.y - O.y - (O.height / 2 - T.height / 2), U = T.width / 0.75, j = Math.abs(U - O.width) > 1 ? { maxWidth: ce(U) } : void 0, X = getComputedStyle(G), q = getComputedStyle($), J = 1e3 * parseFloat(X.transitionDuration) || 150, R = parseFloat(q.getPropertyValue("--v-field-label-scale")), z = q.getPropertyValue("color"); + G.style.visibility = "visible", $.style.visibility = "hidden", ln(G, { transform: `translate(${B}px, ${A}px) scale(${R})`, color: z, ...j }, { duration: J, easing: ll, direction: P ? "normal" : "reverse" }).finished.then(() => { + G.style.removeProperty("visibility"), $.style.removeProperty("visibility"); }); }); } }, { flush: "post" }); - const C = v(() => ({ isActive: h, isFocused: s, controlRef: $, blur: p, focus: i })); - function O(w) { - w.target !== document.activeElement && w.preventDefault(); - } - return se(() => { - var S, x, W; - const w = e.variant === "outlined", M = o["prepend-inner"] || e.prependInnerIcon, V = !(!e.clearable && !o.clear), A = !!(o["append-inner"] || e.appendInnerIcon || V), P = () => o.label ? o.label({ ...C.value, label: e.label, props: { for: I.value } }) : e.label; - return d("div", Q({ class: ["v-field", { "v-field--active": h.value, "v-field--appended": A, "v-field--center-affix": e.centerAffix ?? !z.value, "v-field--disabled": e.disabled, "v-field--dirty": e.dirty, "v-field--error": e.error, "v-field--flat": e.flat, "v-field--has-background": !!e.bgColor, "v-field--persistent-clear": e.persistentClear, "v-field--prepended": M, "v-field--reverse": e.reverse, "v-field--single-line": e.singleLine, "v-field--no-label": !P(), [`v-field--variant-${e.variant}`]: !0 }, a.value, L.value, u.value, c.value, f.value, m.value, e.class], style: [E.value, e.style], onClick: O }, t), [d("div", { class: "v-field__overlay" }, null), d(Ql, { name: "v-field", active: !!e.loading, color: e.error ? "error" : typeof e.loading == "string" ? e.loading : e.color }, { default: o.loader }), M && d("div", { key: "prepend", class: "v-field__prepend-inner" }, [e.prependInnerIcon && d(y, { key: "prepend-icon", name: "prependInner" }, null), (S = o["prepend-inner"]) == null ? void 0 : S.call(o, C.value)]), d("div", { class: "v-field__field", "data-no-activator": "" }, [["filled", "solo", "solo-inverted", "solo-filled"].includes(e.variant) && b.value && d(Mn, { key: "floating-label", ref: U, class: [B.value], floating: !0, for: I.value, style: _.value }, { default: () => [P()] }), d(Mn, { ref: F, for: I.value }, { default: () => [P()] }), (x = o.default) == null ? void 0 : x.call(o, { ...C.value, props: { id: I.value, class: "v-field__input", "aria-describedby": k.value }, focus: i, blur: p })]), V && d(Ra, { key: "clear" }, { default: () => [Ue(d("div", { class: "v-field__clearable", onMousedown: (R) => { - R.preventDefault(), R.stopPropagation(); - } }, [o.clear ? o.clear() : d(y, { name: "clear" }, null)]), [[Ht, e.dirty]])] }), A && d("div", { key: "append", class: "v-field__append-inner" }, [(W = o["append-inner"]) == null ? void 0 : W.call(o, C.value), e.appendInnerIcon && d(y, { key: "append-icon", name: "appendInner" }, null)]), d("div", { class: ["v-field__outline", B.value], style: _.value }, [w && d(Fe, null, [d("div", { class: "v-field__outline__start" }, null), b.value && d("div", { class: "v-field__outline__notch" }, [d(Mn, { ref: U, floating: !0, for: I.value }, { default: () => [P()] })]), d("div", { class: "v-field__outline__end" }, null)]), z.value && b.value && d(Mn, { ref: U, floating: !0, for: I.value }, { default: () => [P()] })])]); - }), { controlRef: $ }; + const C = v(() => ({ isActive: b, isFocused: u, controlRef: w, blur: p, focus: a })); + function _(P) { + P.target !== document.activeElement && P.preventDefault(); + } + return ge(() => { + var B, A, U; + const P = e.variant === "outlined", G = o["prepend-inner"] || e.prependInnerIcon, $ = !(!e.clearable && !o.clear), O = !!(o["append-inner"] || e.appendInnerIcon || $), T = () => o.label ? o.label({ ...C.value, label: e.label, props: { for: I.value } }) : e.label; + return d("div", ee({ class: ["v-field", { "v-field--active": b.value, "v-field--appended": O, "v-field--center-affix": e.centerAffix ?? !L.value, "v-field--disabled": e.disabled, "v-field--dirty": e.dirty, "v-field--error": e.error, "v-field--flat": e.flat, "v-field--has-background": !!e.bgColor, "v-field--persistent-clear": e.persistentClear, "v-field--prepended": G, "v-field--reverse": e.reverse, "v-field--single-line": e.singleLine, "v-field--no-label": !T(), [`v-field--variant-${e.variant}`]: !0 }, i.value, M.value, s.value, c.value, y.value, g.value, e.class], style: [E.value, e.style], onClick: _ }, t), [d("div", { class: "v-field__overlay" }, null), d(no, { name: "v-field", active: !!e.loading, color: e.error ? "error" : typeof e.loading == "string" ? e.loading : e.color }, { default: o.loader }), G && d("div", { key: "prepend", class: "v-field__prepend-inner" }, [e.prependInnerIcon && d(f, { key: "prepend-icon", name: "prependInner" }, null), (B = o["prepend-inner"]) == null ? void 0 : B.call(o, C.value)]), d("div", { class: "v-field__field", "data-no-activator": "" }, [["filled", "solo", "solo-inverted", "solo-filled"].includes(e.variant) && m.value && d(Xn, { key: "floating-label", ref: N, class: [S.value], floating: !0, for: I.value, style: k.value }, { default: () => [T()] }), d(Xn, { ref: V, for: I.value }, { default: () => [T()] }), (A = o.default) == null ? void 0 : A.call(o, { ...C.value, props: { id: I.value, class: "v-field__input", "aria-describedby": F.value }, focus: a, blur: p })]), $ && d(Ja, { key: "clear" }, { default: () => [Xe(d("div", { class: "v-field__clearable", onMousedown: (j) => { + j.preventDefault(), j.stopPropagation(); + } }, [o.clear ? o.clear() : d(f, { name: "clear" }, null)]), [[cn, e.dirty]])] }), O && d("div", { key: "append", class: "v-field__append-inner" }, [(U = o["append-inner"]) == null ? void 0 : U.call(o, C.value), e.appendInnerIcon && d(f, { key: "append-icon", name: "appendInner" }, null)]), d("div", { class: ["v-field__outline", S.value], style: k.value }, [P && d(we, null, [d("div", { class: "v-field__outline__start" }, null), m.value && d("div", { class: "v-field__outline__notch" }, [d(Xn, { ref: N, floating: !0, for: I.value }, { default: () => [T()] })]), d("div", { class: "v-field__outline__end" }, null)]), L.value && m.value && d(Xn, { ref: N, floating: !0, for: I.value }, { default: () => [T()] })])]); + }), { controlRef: w }; } }); -function vi(e) { - return ra(e, Object.keys(lo.props).filter((n) => !Bl(n) && n !== "class" && n !== "style")); +function bi(e) { + return da(e, Object.keys(so.props).filter((n) => !Fl(n) && n !== "class" && n !== "style")); } -const Zr = ["color", "file", "time", "date", "datetime-local", "week", "month"], fi = H({ autofocus: Boolean, counter: [Boolean, Number, String], counterValue: [Number, Function], prefix: String, placeholder: String, persistentPlaceholder: Boolean, persistentCounter: Boolean, suffix: String, role: String, type: { type: String, default: "text" }, modelModifiers: Object, ...Tn(), ...no() }, "VTextField"), Tl = ee()({ name: "VTextField", directives: { Intersect: eo }, inheritAttrs: !1, props: fi(), emits: { "click:control": (e) => !0, "mousedown:control": (e) => !0, "update:focused": (e) => !0, "update:modelValue": (e) => !0 }, setup(e, n) { +const ss = ["color", "file", "time", "date", "datetime-local", "week", "month"], uo = H({ autofocus: Boolean, counter: [Boolean, Number, String], counterValue: [Number, Function], prefix: String, placeholder: String, persistentPlaceholder: Boolean, persistentCounter: Boolean, suffix: String, role: String, type: { type: String, default: "text" }, modelModifiers: Object, ...Gn(), ...ro() }, "VTextField"), On = oe()({ name: "VTextField", directives: { Intersect: oo }, inheritAttrs: !1, props: uo(), emits: { "click:control": (e) => !0, "mousedown:control": (e) => !0, "update:focused": (e) => !0, "update:modelValue": (e) => !0 }, setup(e, n) { let { attrs: t, emit: l, slots: o } = n; - const a = $e(e, "modelValue"), { isFocused: c, focus: u, blur: s } = En(e), i = v(() => typeof e.counterValue == "function" ? e.counterValue(a.value) : typeof e.counterValue == "number" ? e.counterValue : (a.value ?? "").toString().length), p = v(() => t.maxlength ? t.maxlength : !e.counter || typeof e.counter != "number" && typeof e.counter != "string" ? void 0 : e.counter), y = v(() => ["plain", "underlined"].includes(e.variant)); - function f(z, L) { - var E, B; - e.autofocus && z && ((B = (E = L[0].target) == null ? void 0 : E.focus) == null || B.call(E)); + const i = Te(e, "modelValue"), { isFocused: c, focus: s, blur: u } = jn(e), a = v(() => typeof e.counterValue == "function" ? e.counterValue(i.value) : typeof e.counterValue == "number" ? e.counterValue : (i.value ?? "").toString().length), p = v(() => t.maxlength ? t.maxlength : !e.counter || typeof e.counter != "number" && typeof e.counter != "string" ? void 0 : e.counter), f = v(() => ["plain", "underlined"].includes(e.variant)); + function y(L, M) { + var E, S; + e.autofocus && L && ((S = (E = M[0].target) == null ? void 0 : E.focus) == null || S.call(E)); } - const m = D(), h = D(), b = D(), g = v(() => Zr.includes(e.type) || e.persistentPlaceholder || c.value || e.active); + const g = W(), b = W(), m = W(), h = v(() => ss.includes(e.type) || e.persistentPlaceholder || c.value || e.active); function I() { - var z; - b.value !== document.activeElement && ((z = b.value) == null || z.focus()), c.value || u(); + var L; + m.value !== document.activeElement && ((L = m.value) == null || L.focus()), c.value || s(); } - function k(z) { - l("mousedown:control", z), z.target !== b.value && (I(), z.preventDefault()); + function F(L) { + l("mousedown:control", L), L.target !== m.value && (I(), L.preventDefault()); } - function F(z) { - I(), l("click:control", z); + function V(L) { + I(), l("click:control", L); } - function U(z) { - z.stopPropagation(), I(), Me(() => { - a.value = null, ca(e["onClick:clear"], z); + function N(L) { + L.stopPropagation(), I(), Ne(() => { + i.value = null, fa(e["onClick:clear"], L); }); } - function $(z) { + function w(L) { var E; - const L = z.target; - if (a.value = L.value, ((E = e.modelModifiers) == null ? void 0 : E.trim) && ["text", "search", "password", "tel", "url"].includes(e.type)) { - const B = [L.selectionStart, L.selectionEnd]; - Me(() => { - L.selectionStart = B[0], L.selectionEnd = B[1]; + const M = L.target; + if (i.value = M.value, ((E = e.modelModifiers) == null ? void 0 : E.trim) && ["text", "search", "password", "tel", "url"].includes(e.type)) { + const S = [M.selectionStart, M.selectionEnd]; + Ne(() => { + M.selectionStart = S[0], M.selectionEnd = S[1]; }); } } - return se(() => { - const z = !!(o.counter || e.counter !== !1 && e.counter != null), L = !(!z && !o.details), [E, B] = kn(t), { modelValue: _, ...C } = St.filterProps(e), O = vi(e); - return d(St, Q({ ref: m, modelValue: a.value, "onUpdate:modelValue": (w) => a.value = w, class: ["v-text-field", { "v-text-field--prefixed": e.prefix, "v-text-field--suffixed": e.suffix, "v-input--plain-underlined": y.value }, e.class], style: e.style }, E, C, { centerAffix: !y.value, focused: c.value }), { ...o, default: (w) => { - let { id: M, isDisabled: V, isDirty: A, isReadonly: P, isValid: S } = w; - return d(lo, Q({ ref: h, onMousedown: k, onClick: F, "onClick:clear": U, "onClick:prependInner": e["onClick:prependInner"], "onClick:appendInner": e["onClick:appendInner"], role: e.role }, O, { id: M.value, active: g.value || A.value, dirty: A.value || e.dirty, disabled: V.value, focused: c.value, error: S.value === !1 }), { ...o, default: (x) => { - let { props: { class: W, ...R } } = x; - const Y = Ue(d("input", Q({ ref: b, value: a.value, onInput: $, autofocus: e.autofocus, readonly: P.value, disabled: V.value, name: e.name, placeholder: e.placeholder, size: 1, type: e.type, onFocus: I, onBlur: s }, R, B), null), [[mt("intersect"), { handler: f }, null, { once: !0 }]]); - return d(Fe, null, [e.prefix && d("span", { class: "v-text-field__prefix" }, [d("span", { class: "v-text-field__prefix__text" }, [e.prefix])]), o.default ? d("div", { class: W, "data-no-activator": "" }, [o.default(), Y]) : Bi(Y, { class: W }), e.suffix && d("span", { class: "v-text-field__suffix" }, [d("span", { class: "v-text-field__suffix__text" }, [e.suffix])])]); + return ge(() => { + const L = !!(o.counter || e.counter !== !1 && e.counter != null), M = !(!L && !o.details), [E, S] = $n(t), { modelValue: k, ...C } = wt.filterProps(e), _ = bi(e); + return d(wt, ee({ ref: g, modelValue: i.value, "onUpdate:modelValue": (P) => i.value = P, class: ["v-text-field", { "v-text-field--prefixed": e.prefix, "v-text-field--suffixed": e.suffix, "v-input--plain-underlined": f.value }, e.class], style: e.style }, E, C, { centerAffix: !f.value, focused: c.value }), { ...o, default: (P) => { + let { id: G, isDisabled: $, isDirty: O, isReadonly: T, isValid: B } = P; + return d(so, ee({ ref: b, onMousedown: F, onClick: V, "onClick:clear": N, "onClick:prependInner": e["onClick:prependInner"], "onClick:appendInner": e["onClick:appendInner"], role: e.role }, _, { id: G.value, active: h.value || O.value, dirty: O.value || e.dirty, disabled: $.value, focused: c.value, error: B.value === !1 }), { ...o, default: (A) => { + let { props: { class: U, ...j } } = A; + const X = Xe(d("input", ee({ ref: m, value: i.value, onInput: w, autofocus: e.autofocus, readonly: T.value, disabled: $.value, name: e.name, placeholder: e.placeholder, size: 1, type: e.type, onFocus: I, onBlur: u }, j, S), null), [[ht("intersect"), { handler: y }, null, { once: !0 }]]); + return d(we, null, [e.prefix && d("span", { class: "v-text-field__prefix" }, [d("span", { class: "v-text-field__prefix__text" }, [e.prefix])]), o.default ? d("div", { class: U, "data-no-activator": "" }, [o.default(), X]) : Oi(X, { class: U }), e.suffix && d("span", { class: "v-text-field__suffix" }, [d("span", { class: "v-text-field__suffix__text" }, [e.suffix])])]); } }); - }, details: L ? (w) => { - var M; - return d(Fe, null, [(M = o.details) == null ? void 0 : M.call(o, w), z && d(Fe, null, [d("span", null, null), d(pi, { active: e.persistentCounter || c.value, value: i.value, max: p.value }, o.counter)])]); + }, details: M ? (P) => { + var G; + return d(we, null, [(G = o.details) == null ? void 0 : G.call(o, P), L && d(we, null, [d("span", null, null), d(hi, { active: e.persistentCounter || c.value, value: a.value, max: p.value }, o.counter)])]); } : void 0 }); - }), ul({}, m, h, b); -} }), Qr = H({ renderless: Boolean, ...ye() }, "VVirtualScrollItem"), es = ee()({ name: "VVirtualScrollItem", inheritAttrs: !1, props: Qr(), emits: { "update:height": (e) => !0 }, setup(e, n) { + }), Un({}, g, b, m); +} }), us = H({ renderless: Boolean, ...Se() }, "VVirtualScrollItem"), cs = oe()({ name: "VVirtualScrollItem", inheritAttrs: !1, props: us(), emits: { "update:height": (e) => !0 }, setup(e, n) { let { attrs: t, emit: l, slots: o } = n; - const { resizeRef: a, contentRect: c } = Yl(void 0, "border"); - J(() => { - var u; - return (u = c.value) == null ? void 0 : u.height; - }, (u) => { - u != null && l("update:height", u); - }), se(() => { - var u, s; - return e.renderless ? d(Fe, null, [(u = o.default) == null ? void 0 : u.call(o, { itemRef: a })]) : d("div", Q({ ref: a, class: ["v-virtual-scroll__item", e.class], style: e.style }, t), [(s = o.default) == null ? void 0 : s.call(o)]); + const { resizeRef: i, contentRect: c } = Ql(void 0, "border"); + Y(() => { + var s; + return (s = c.value) == null ? void 0 : s.height; + }, (s) => { + s != null && l("update:height", s); + }), ge(() => { + var s, u; + return e.renderless ? d(we, null, [(s = o.default) == null ? void 0 : s.call(o, { itemRef: i })]) : d("div", ee({ ref: i, class: ["v-virtual-scroll__item", e.class], style: e.style }, t), [(u = o.default) == null ? void 0 : u.call(o)]); }); -} }), ts = H({ itemHeight: { type: [Number, String], default: null }, height: [Number, String] }, "virtual"); -function ns(e, n) { - const t = si(), l = de(0); - it(() => { +} }), ds = H({ itemHeight: { type: [Number, String], default: null }, height: [Number, String] }, "virtual"); +function ps(e, n) { + const t = vi(), l = ve(0); + ze(() => { l.value = parseFloat(e.itemHeight || 0); }); - const o = de(0), a = de(Math.ceil((parseInt(e.height) || t.height.value) / (l.value || 16)) || 1), c = de(0), u = de(0), s = D(), i = D(); + const o = ve(0), i = ve(Math.ceil((parseInt(e.height) || t.height.value) / (l.value || 16)) || 1), c = ve(0), s = ve(0), u = W(), a = W(); let p = 0; - const { resizeRef: y, contentRect: f } = Yl(); - it(() => { - y.value = s.value; + const { resizeRef: f, contentRect: y } = Ql(); + ze(() => { + f.value = u.value; }); - const m = v(() => { - var V; - return s.value === document.documentElement ? t.height.value : ((V = f.value) == null ? void 0 : V.height) || parseInt(e.height) || 0; - }), h = v(() => !!(s.value && i.value && m.value && l.value)); - let b = Array.from({ length: n.value.length }), g = Array.from({ length: n.value.length }); - const I = de(0); - let k = -1; - const F = function(V, A) { - let P = 0; - const S = function() { - for (var x = arguments.length, W = new Array(x), R = 0; R < x; R++) - W[R] = arguments[R]; - clearTimeout(P), P = setTimeout(() => V(...W), r(A)); + const g = v(() => { + var $; + return u.value === document.documentElement ? t.height.value : (($ = y.value) == null ? void 0 : $.height) || parseInt(e.height) || 0; + }), b = v(() => !!(u.value && a.value && g.value && l.value)); + let m = Array.from({ length: n.value.length }), h = Array.from({ length: n.value.length }); + const I = ve(0); + let F = -1; + const V = function($, O) { + let T = 0; + const B = function() { + for (var A = arguments.length, U = new Array(A), j = 0; j < A; j++) + U[j] = arguments[j]; + clearTimeout(T), T = setTimeout(() => $(...U), r(O)); }; - return S.clear = () => { - clearTimeout(P); - }, S.immediate = V, S; + return B.clear = () => { + clearTimeout(T); + }, B.immediate = $, B; }(() => { - const V = performance.now(); - g[0] = 0; - const A = n.value.length; - for (let P = 1; P <= A - 1; P++) - g[P] = (g[P - 1] || 0) + (b[P - 1] || l.value); - I.value = Math.max(I.value, performance.now() - V); - }, I), U = J(h, (V) => { - V && (U(), p = i.value.offsetTop, F.immediate(), C(), ~k && Me(() => { + const $ = performance.now(); + h[0] = 0; + const O = n.value.length; + for (let T = 1; T <= O - 1; T++) + h[T] = (h[T - 1] || 0) + (m[T - 1] || l.value); + I.value = Math.max(I.value, performance.now() - $); + }, I), N = Y(b, ($) => { + $ && (N(), p = a.value.offsetTop, V.immediate(), C(), ~F && Ne(() => { Ke && window.requestAnimationFrame(() => { - w(k), k = -1; + P(F), F = -1; }); })); }); - function $(V) { - return V = jt(V, 0, n.value.length - 1), g[V] || 0; - } - function z(V) { - return function(A, P) { - let S = A.length - 1, x = 0, W = 0, R = null, Y = -1; - if (A[S] < P) - return S; - for (; x <= S; ) - if (W = x + S >> 1, R = A[W], R > P) - S = W - 1; + function w($) { + return $ = on($, 0, n.value.length - 1), h[$] || 0; + } + function L($) { + return function(O, T) { + let B = O.length - 1, A = 0, U = 0, j = null, X = -1; + if (O[B] < T) + return B; + for (; A <= B; ) + if (U = A + B >> 1, j = O[U], j > T) + B = U - 1; else { - if (!(R < P)) - return R === P ? W : x; - Y = W, x = W + 1; + if (!(j < T)) + return j === T ? U : A; + X = U, A = U + 1; } - return Y; - }(g, V); + return X; + }(h, $); } - J(m, (V, A) => { - A && C(); - }), He(() => { - F.clear(); + Y(g, ($, O) => { + O && C(); + }), Je(() => { + V.clear(); }); - let L = 0, E = 0, B = 0, _ = -1; + let M = 0, E = 0, S = 0, k = -1; function C() { - cancelAnimationFrame(_), _ = requestAnimationFrame(O); + cancelAnimationFrame(k), k = requestAnimationFrame(_); } - function O() { - if (!s.value || !m.value) + function _() { + if (!u.value || !g.value) return; - const V = L - p, A = Math.sign(E), P = jt(z(Math.max(0, V - 100)), 0, n.value.length), S = jt(z(V + m.value + 100) + 1, P + 1, n.value.length); - if ((A !== -1 || P < o.value) && (A !== 1 || S > a.value)) { - const x = $(o.value) - $(P), W = $(S) - $(a.value); - Math.max(x, W) > 100 ? (o.value = P, a.value = S) : (P <= 0 && (o.value = P), S >= n.value.length && (a.value = S)); + const $ = M - p, O = Math.sign(E), T = on(L(Math.max(0, $ - 100)), 0, n.value.length), B = on(L($ + g.value + 100) + 1, T + 1, n.value.length); + if ((O !== -1 || T < o.value) && (O !== 1 || B > i.value)) { + const A = w(o.value) - w(T), U = w(B) - w(i.value); + Math.max(A, U) > 100 ? (o.value = T, i.value = B) : (T <= 0 && (o.value = T), B >= n.value.length && (i.value = B)); } - c.value = $(o.value), u.value = $(n.value.length) - $(a.value); + c.value = w(o.value), s.value = w(n.value.length) - w(i.value); } - function w(V) { - const A = $(V); - !s.value || V && !A ? k = V : s.value.scrollTop = A; + function P($) { + const O = w($); + !u.value || $ && !O ? F = $ : u.value.scrollTop = O; } - const M = v(() => n.value.slice(o.value, a.value).map((V, A) => ({ raw: V, index: A + o.value }))); - return J(n, () => { - b = Array.from({ length: n.value.length }), g = Array.from({ length: n.value.length }), F.immediate(), C(); - }, { deep: !0 }), { containerRef: s, markerRef: i, computedItems: M, paddingTop: c, paddingBottom: u, scrollToIndex: w, handleScroll: function() { - if (!s.value || !i.value) + const G = v(() => n.value.slice(o.value, i.value).map(($, O) => ({ raw: $, index: O + o.value }))); + return Y(n, () => { + m = Array.from({ length: n.value.length }), h = Array.from({ length: n.value.length }), V.immediate(), C(); + }, { deep: !0 }), { containerRef: u, markerRef: a, computedItems: G, paddingTop: c, paddingBottom: s, scrollToIndex: P, handleScroll: function() { + if (!u.value || !a.value) return; - const V = s.value.scrollTop, A = performance.now(); - A - B > 500 ? (E = Math.sign(V - L), p = i.value.offsetTop) : E = V - L, L = V, B = A, C(); + const $ = u.value.scrollTop, O = performance.now(); + O - S > 500 ? (E = Math.sign($ - M), p = a.value.offsetTop) : E = $ - M, M = $, S = O, C(); }, handleScrollend: function() { - s.value && i.value && (E = 0, B = 0, C()); - }, handleItemResize: function(V, A) { - const P = b[V], S = l.value; - l.value = S ? Math.min(l.value, A) : A, P === A && S === l.value || (b[V] = A, F()); + u.value && a.value && (E = 0, S = 0, C()); + }, handleItemResize: function($, O) { + const T = m[$], B = l.value; + l.value = B ? Math.min(l.value, O) : O, T === O && B === l.value || (m[$] = O, V()); } }; } -const ls = H({ items: { type: Array, default: () => [] }, renderless: Boolean, ...ts(), ...ye(), ...zt() }, "VVirtualScroll"), os = ee()({ name: "VVirtualScroll", props: ls(), setup(e, n) { +const vs = H({ items: { type: Array, default: () => [] }, renderless: Boolean, ...ds(), ...Se(), ...Xt() }, "VVirtualScroll"), Ci = oe()({ name: "VVirtualScroll", props: vs(), setup(e, n) { let { slots: t } = n; - const l = We("VVirtualScroll"), { dimensionStyles: o } = Dt(e), { containerRef: a, markerRef: c, handleScroll: u, handleScrollend: s, handleItemResize: i, scrollToIndex: p, paddingTop: y, paddingBottom: f, computedItems: m } = ns(e, ae(e, "items")); - return Ft(() => e.renderless, () => { - function h() { - var g, I; - const b = arguments.length > 0 && arguments[0] !== void 0 && arguments[0] ? "addEventListener" : "removeEventListener"; - a.value === document.documentElement ? (document[b]("scroll", u, { passive: !0 }), document[b]("scrollend", s)) : ((g = a.value) == null || g[b]("scroll", u, { passive: !0 }), (I = a.value) == null || I[b]("scrollend", s)); + const l = Ge("VVirtualScroll"), { dimensionStyles: o } = Yt(e), { containerRef: i, markerRef: c, handleScroll: s, handleScrollend: u, handleItemResize: a, scrollToIndex: p, paddingTop: f, paddingBottom: y, computedItems: g } = ps(e, ue(e, "items")); + return Lt(() => e.renderless, () => { + function b() { + var h, I; + const m = arguments.length > 0 && arguments[0] !== void 0 && arguments[0] ? "addEventListener" : "removeEventListener"; + i.value === document.documentElement ? (document[m]("scroll", s, { passive: !0 }), document[m]("scrollend", u)) : ((h = i.value) == null || h[m]("scroll", s, { passive: !0 }), (I = i.value) == null || I[m]("scrollend", u)); } - qt(() => { - a.value = ha(l.vnode.el, !0), h(!0); - }), He(h); - }), se(() => { - const h = m.value.map((b) => d(es, { key: b.index, renderless: e.renderless, "onUpdate:height": (g) => i(b.index, g) }, { default: (g) => { + un(() => { + i.value = Ia(l.vnode.el, !0), b(!0); + }), Je(b); + }), ge(() => { + const b = g.value.map((m) => d(cs, { key: m.index, renderless: e.renderless, "onUpdate:height": (h) => a(m.index, h) }, { default: (h) => { var I; - return (I = t.default) == null ? void 0 : I.call(t, { item: b.raw, index: b.index, ...g }); + return (I = t.default) == null ? void 0 : I.call(t, { item: m.raw, index: m.index, ...h }); } })); - return e.renderless ? d(Fe, null, [d("div", { ref: c, class: "v-virtual-scroll__spacer", style: { paddingTop: ie(y.value) } }, null), h, d("div", { class: "v-virtual-scroll__spacer", style: { paddingBottom: ie(f.value) } }, null)]) : d("div", { ref: a, class: ["v-virtual-scroll", e.class], onScrollPassive: u, onScrollend: s, style: [o.value, e.style] }, [d("div", { ref: c, class: "v-virtual-scroll__container", style: { paddingTop: ie(y.value), paddingBottom: ie(f.value) } }, [h])]); + return e.renderless ? d(we, null, [d("div", { ref: c, class: "v-virtual-scroll__spacer", style: { paddingTop: ce(f.value) } }, null), b, d("div", { class: "v-virtual-scroll__spacer", style: { paddingBottom: ce(y.value) } }, null)]) : d("div", { ref: i, class: ["v-virtual-scroll", e.class], onScrollPassive: s, onScrollend: u, style: [o.value, e.style] }, [d("div", { ref: c, class: "v-virtual-scroll__container", style: { paddingTop: ce(f.value), paddingBottom: ce(y.value) } }, [b])]); }), { scrollToIndex: p }; } }); -function as(e, n) { - const t = de(!1); +function Ii(e, n) { + const t = ve(!1); let l; return { onListScroll: function(o) { cancelAnimationFrame(l), t.value = !0, l = requestAnimationFrame(() => { @@ -2809,664 +2981,771 @@ function as(e, n) { }); }); }, onListKeydown: async function(o) { - var u, s; - if (o.key === "Tab" && ((u = n.value) == null || u.focus()), !["PageDown", "PageUp", "Home", "End"].includes(o.key)) + var s, u; + if (o.key === "Tab" && ((s = n.value) == null || s.focus()), !["PageDown", "PageUp", "Home", "End"].includes(o.key)) return; - const a = (s = e.value) == null ? void 0 : s.$el; - if (!a) + const i = (u = e.value) == null ? void 0 : u.$el; + if (!i) return; - o.key !== "Home" && o.key !== "End" || a.scrollTo({ top: o.key === "Home" ? 0 : a.scrollHeight, behavior: "smooth" }), await async function() { - await new Promise((i) => requestAnimationFrame(i)), await new Promise((i) => requestAnimationFrame(i)), await new Promise((i) => requestAnimationFrame(i)), await new Promise((i) => { + o.key !== "Home" && o.key !== "End" || i.scrollTo({ top: o.key === "Home" ? 0 : i.scrollHeight, behavior: "smooth" }), await async function() { + await new Promise((a) => requestAnimationFrame(a)), await new Promise((a) => requestAnimationFrame(a)), await new Promise((a) => requestAnimationFrame(a)), await new Promise((a) => { if (t.value) { - const p = J(t, () => { - p(), i(); + const p = Y(t, () => { + p(), a(); }); } else - i(); + a(); }); }(); - const c = a.querySelectorAll(":scope > :not(.v-virtual-scroll__spacer)"); + const c = i.querySelectorAll(":scope > :not(.v-virtual-scroll__spacer)"); if (o.key === "PageDown" || o.key === "Home") { - const i = a.getBoundingClientRect().top; + const a = i.getBoundingClientRect().top; for (const p of c) - if (p.getBoundingClientRect().top >= i) { + if (p.getBoundingClientRect().top >= a) { p.focus(); break; } } else { - const i = a.getBoundingClientRect().bottom; + const a = i.getBoundingClientRect().bottom; for (const p of [...c].reverse()) - if (p.getBoundingClientRect().bottom <= i) { + if (p.getBoundingClientRect().bottom <= a) { p.focus(); break; } } } }; } -const is = H({ chips: Boolean, closableChips: Boolean, closeText: { type: String, default: "$vuetify.close" }, openText: { type: String, default: "$vuetify.open" }, eager: Boolean, hideNoData: Boolean, hideSelected: Boolean, menu: Boolean, menuIcon: { type: Ce, default: "$dropdown" }, menuProps: { type: Object }, multiple: Boolean, noDataText: { type: String, default: "$vuetify.noDataText" }, openOnClear: Boolean, itemColor: String, ...oi({ itemChildren: !1 }) }, "Select"), rs = H({ ...is(), ...Tt(fi({ modelValue: null, role: "combobox" }), ["validationValue", "dirty", "appendInnerIcon"]), ...$n({ transition: { component: Wa } }) }, "VSelect"), ss = ee()({ name: "VSelect", props: rs(), emits: { "update:focused": (e) => !0, "update:modelValue": (e) => !0, "update:menu": (e) => !0 }, setup(e, n) { +const Si = H({ chips: Boolean, closableChips: Boolean, closeText: { type: String, default: "$vuetify.close" }, openText: { type: String, default: "$vuetify.open" }, eager: Boolean, hideNoData: Boolean, hideSelected: Boolean, menu: Boolean, menuIcon: { type: Ae, default: "$dropdown" }, menuProps: { type: Object }, multiple: Boolean, noDataText: { type: String, default: "$vuetify.noDataText" }, openOnClear: Boolean, itemColor: String, ...ri({ itemChildren: !1 }) }, "Select"), fs = H({ ...Si(), ...Ot(uo({ modelValue: null, role: "combobox" }), ["validationValue", "dirty", "appendInnerIcon"]), ...Cn({ transition: { component: Xa } }) }, "VSelect"), ys = oe()({ name: "VSelect", props: fs(), emits: { "update:focused": (e) => !0, "update:modelValue": (e) => !0, "update:menu": (e) => !0 }, setup(e, n) { let { slots: t } = n; - const { t: l } = Xl(), o = D(), a = D(), c = D(), u = $e(e, "menu"), s = v({ get: () => u.value, set: (S) => { - var x; - u.value && !S && ((x = a.value) != null && x.ΨopenChildren) || (u.value = S); - } }), { items: i, transformIn: p, transformOut: y } = function(S) { - const x = v(() => ai(S, S.items)), W = v(() => x.value.some((R) => R.value === null)); - return { items: x, transformIn: function(R) { - return W.value || (R = R.filter((Y) => Y !== null)), R.map((Y) => S.returnObject && typeof Y == "string" ? Ol(S, Y) : x.value.find((q) => S.valueComparator(Y, q.value)) || Ol(S, Y)); - }, transformOut: function(R) { - return S.returnObject ? R.map((Y) => { - let { raw: q } = Y; - return q; - }) : R.map((Y) => { - let { value: q } = Y; - return q; - }); - } }; - }(e), f = $e(e, "modelValue", [], (S) => p(S === null ? [null] : dt(S)), (S) => { - const x = y(S); - return e.multiple ? x : x[0] ?? null; - }), m = v(() => typeof e.counterValue == "function" ? e.counterValue(f.value) : typeof e.counterValue == "number" ? e.counterValue : f.value.length), h = Ka(), b = v(() => f.value.map((S) => S.value)), g = de(!1), I = v(() => s.value ? e.closeText : e.openText); - let k, F = ""; - const U = v(() => e.hideSelected ? i.value.filter((S) => !f.value.some((x) => x === S)) : i.value), $ = v(() => e.hideNoData && !i.value.length || e.readonly || (h == null ? void 0 : h.isReadonly.value)), z = v(() => { - var S; - return { ...e.menuProps, activatorProps: { ...((S = e.menuProps) == null ? void 0 : S.activatorProps) || {}, "aria-haspopup": "listbox" } }; - }), L = D(), { onListScroll: E, onListKeydown: B } = as(L, o); - function _(S) { - e.openOnClear && (s.value = !0); + const { t: l } = vl(), o = W(), i = W(), c = W(), s = Te(e, "menu"), u = v({ get: () => s.value, set: (B) => { + var A; + s.value && !B && ((A = i.value) != null && A.ΨopenChildren) || (s.value = B); + } }), { items: a, transformIn: p, transformOut: f } = ui(e), y = Te(e, "modelValue", [], (B) => p(B === null ? [null] : lt(B)), (B) => { + const A = f(B); + return e.multiple ? A : A[0] ?? null; + }), g = v(() => typeof e.counterValue == "function" ? e.counterValue(y.value) : typeof e.counterValue == "number" ? e.counterValue : y.value.length), b = io(), m = v(() => y.value.map((B) => B.value)), h = ve(!1), I = v(() => u.value ? e.closeText : e.openText); + let F, V = ""; + const N = v(() => e.hideSelected ? a.value.filter((B) => !y.value.some((A) => A === B)) : a.value), w = v(() => e.hideNoData && !N.value.length || e.readonly || (b == null ? void 0 : b.isReadonly.value)), L = v(() => { + var B; + return { ...e.menuProps, activatorProps: { ...((B = e.menuProps) == null ? void 0 : B.activatorProps) || {}, "aria-haspopup": "listbox" } }; + }), M = W(), { onListScroll: E, onListKeydown: S } = Ii(M, o); + function k(B) { + e.openOnClear && (u.value = !0); } function C() { - $.value || (s.value = !s.value); - } - function O(S) { - var R, Y; - if (!S.key || e.readonly || h != null && h.isReadonly.value || (["Enter", " ", "ArrowDown", "ArrowUp", "Home", "End"].includes(S.key) && S.preventDefault(), ["Enter", "ArrowDown", " "].includes(S.key) && (s.value = !0), ["Escape", "Tab"].includes(S.key) && (s.value = !1), S.key === "Home" ? (R = L.value) == null || R.focus("first") : S.key === "End" && ((Y = L.value) == null || Y.focus("last")), e.multiple || !function(q) { - const T = q.key.length === 1, N = !q.ctrlKey && !q.metaKey && !q.altKey; - return T && N; - }(S))) + w.value || (u.value = !u.value); + } + function _(B) { + var j, X; + if (!B.key || e.readonly || b != null && b.isReadonly.value || (["Enter", " ", "ArrowDown", "ArrowUp", "Home", "End"].includes(B.key) && B.preventDefault(), ["Enter", "ArrowDown", " "].includes(B.key) && (u.value = !0), ["Escape", "Tab"].includes(B.key) && (u.value = !1), B.key === "Home" ? (j = M.value) == null || j.focus("first") : B.key === "End" && ((X = M.value) == null || X.focus("last")), e.multiple || !function(q) { + const J = q.key.length === 1, R = !q.ctrlKey && !q.metaKey && !q.altKey; + return J && R; + }(B))) return; - const x = performance.now(); - x - k > 1e3 && (F = ""), F += S.key.toLowerCase(), k = x; - const W = i.value.find((q) => q.title.toLowerCase().startsWith(F)); - W !== void 0 && (f.value = [W]); + const A = performance.now(); + A - F > 1e3 && (V = ""), V += B.key.toLowerCase(), F = A; + const U = a.value.find((q) => q.title.toLowerCase().startsWith(V)); + U !== void 0 && (y.value = [U]); } - function w(S) { + function P(B) { if (e.multiple) { - const x = f.value.findIndex((W) => e.valueComparator(W.value, S.value)); - if (x === -1) - f.value = [...f.value, S]; + const A = y.value.findIndex((U) => e.valueComparator(U.value, B.value)); + if (A === -1) + y.value = [...y.value, B]; else { - const W = [...f.value]; - W.splice(x, 1), f.value = W; + const U = [...y.value]; + U.splice(A, 1), y.value = U; } } else - f.value = [S], s.value = !1; + y.value = [B], u.value = !1; } - function M(S) { - var x; - (x = L.value) != null && x.$el.contains(S.relatedTarget) || (s.value = !1); + function G(B) { + var A; + (A = M.value) != null && A.$el.contains(B.relatedTarget) || (u.value = !1); } - function V() { - var S; - g.value && ((S = o.value) == null || S.focus()); + function $() { + var B; + h.value && ((B = o.value) == null || B.focus()); } - function A(S) { - g.value = !0; + function O(B) { + h.value = !0; } - function P(S) { - if (S == null) - f.value = []; - else if (Yn(o.value, ":autofill") || Yn(o.value, ":-webkit-autofill")) { - const x = i.value.find((W) => W.title === S); - x && w(x); + function T(B) { + if (B == null) + y.value = []; + else if (an(o.value, ":autofill") || an(o.value, ":-webkit-autofill")) { + const A = a.value.find((U) => U.title === B); + A && P(A); } else o.value && (o.value.value = ""); } - return J(s, () => { - if (!e.hideSelected && s.value && f.value.length) { - const S = U.value.findIndex((x) => f.value.some((W) => e.valueComparator(W.value, x.value))); + return Y(u, () => { + if (!e.hideSelected && u.value && y.value.length) { + const B = N.value.findIndex((A) => y.value.some((U) => e.valueComparator(U.value, A.value))); Ke && window.requestAnimationFrame(() => { - var x; - S >= 0 && ((x = c.value) == null || x.scrollToIndex(S)); + var A; + B >= 0 && ((A = c.value) == null || A.scrollToIndex(B)); }); } - }), se(() => { - const S = !(!e.chips && !t.chip), x = !!(!e.hideNoData || U.value.length || t["prepend-item"] || t["append-item"] || t["no-data"]), W = f.value.length > 0, R = Tl.filterProps(e), Y = W || !g.value && e.label && !e.persistentPlaceholder ? void 0 : e.placeholder; - return d(Tl, Q({ ref: o }, R, { modelValue: f.value.map((q) => q.props.value).join(", "), "onUpdate:modelValue": P, focused: g.value, "onUpdate:focused": (q) => g.value = q, validationValue: f.externalValue, counterValue: m.value, dirty: W, class: ["v-select", { "v-select--active-menu": s.value, "v-select--chips": !!e.chips, ["v-select--" + (e.multiple ? "multiple" : "single")]: !0, "v-select--selected": f.value.length, "v-select--selection-slot": !!t.selection }, e.class], style: e.style, inputmode: "none", placeholder: Y, "onClick:clear": _, "onMousedown:control": C, onBlur: M, onKeydown: O, "aria-label": l(I.value), title: l(I.value) }), { ...t, default: () => d(Fe, null, [d(Yr, Q({ ref: a, modelValue: s.value, "onUpdate:modelValue": (q) => s.value = q, activator: "parent", contentClass: "v-select__content", disabled: $.value, eager: e.eager, maxHeight: 310, openOnClick: !1, closeOnContentClick: !1, transition: e.transition, onAfterLeave: V }, z.value), { default: () => [x && d(zr, { ref: L, selected: b.value, selectStrategy: e.multiple ? "independent" : "single-independent", onMousedown: (q) => q.preventDefault(), onKeydown: B, onFocusin: A, onScrollPassive: E, tabindex: "-1", color: e.itemColor ?? e.color }, { default: () => { - var q, T, N; - return [(q = t["prepend-item"]) == null ? void 0 : q.call(t), !U.value.length && !e.hideNoData && (((T = t["no-data"]) == null ? void 0 : T.call(t)) ?? d(tl, { title: l(e.noDataText) }, null)), d(os, { ref: c, renderless: !0, items: U.value }, { default: (j) => { - var ge; - let { item: G, index: X, itemRef: te } = j; - const pe = Q(G.props, { ref: te, key: X, onClick: () => w(G) }); - return ((ge = t.item) == null ? void 0 : ge.call(t, { item: G, index: X, props: pe })) ?? d(tl, Q(pe, { role: "option" }), { prepend: (he) => { - let { isSelected: ze } = he; - return d(Fe, null, [e.multiple && !e.hideSelected ? d(Al, { key: G.value, modelValue: ze, ripple: !1, tabindex: "-1" }, null) : void 0, G.props.prependIcon && d(Se, { icon: G.props.prependIcon }, null)]); + }), Y(N, (B, A) => { + h.value && (!B.length && e.hideNoData && (u.value = !1), !A.length && B.length && (u.value = !0)); + }), ge(() => { + const B = !(!e.chips && !t.chip), A = !!(!e.hideNoData || N.value.length || t["prepend-item"] || t["append-item"] || t["no-data"]), U = y.value.length > 0, j = On.filterProps(e), X = U || !h.value && e.label && !e.persistentPlaceholder ? void 0 : e.placeholder; + return d(On, ee({ ref: o }, j, { modelValue: y.value.map((q) => q.props.value).join(", "), "onUpdate:modelValue": T, focused: h.value, "onUpdate:focused": (q) => h.value = q, validationValue: y.externalValue, counterValue: g.value, dirty: U, class: ["v-select", { "v-select--active-menu": u.value, "v-select--chips": !!e.chips, ["v-select--" + (e.multiple ? "multiple" : "single")]: !0, "v-select--selected": y.value.length, "v-select--selection-slot": !!t.selection }, e.class], style: e.style, inputmode: "none", placeholder: X, "onClick:clear": k, "onMousedown:control": C, onBlur: G, onKeydown: _, "aria-label": l(I.value), title: l(I.value) }), { ...t, default: () => d(we, null, [d(gi, ee({ ref: i, modelValue: u.value, "onUpdate:modelValue": (q) => u.value = q, activator: "parent", contentClass: "v-select__content", disabled: w.value, eager: e.eager, maxHeight: 310, openOnClick: !1, closeOnContentClick: !1, transition: e.transition, onAfterLeave: $ }, L.value), { default: () => [A && d(di, { ref: M, selected: m.value, selectStrategy: e.multiple ? "independent" : "single-independent", onMousedown: (q) => q.preventDefault(), onKeydown: S, onFocusin: O, onScrollPassive: E, tabindex: "-1", "aria-live": "polite", color: e.itemColor ?? e.color }, { default: () => { + var q, J, R; + return [(q = t["prepend-item"]) == null ? void 0 : q.call(t), !N.value.length && !e.hideNoData && (((J = t["no-data"]) == null ? void 0 : J.call(t)) ?? d(sn, { title: l(e.noDataText) }, null)), d(Ci, { ref: c, renderless: !0, items: N.value }, { default: (z) => { + var re; + let { item: D, index: x, itemRef: K } = z; + const te = ee(D.props, { ref: K, key: x, onClick: () => P(D) }); + return ((re = t.item) == null ? void 0 : re.call(t, { item: D, index: x, props: te })) ?? d(sn, ee(te, { role: "option" }), { prepend: (Q) => { + let { isSelected: pe } = Q; + return d(we, null, [e.multiple && !e.hideSelected ? d(sl, { key: D.value, modelValue: pe, ripple: !1, tabindex: "-1" }, null) : void 0, D.props.prependAvatar && d(kt, { image: D.props.prependAvatar }, null), D.props.prependIcon && d(Ve, { icon: D.props.prependIcon }, null)]); } }); - } }), (N = t["append-item"]) == null ? void 0 : N.call(t)]; - } })] }), f.value.map((q, T) => { - const N = { "onClick:close": function(X) { - X.stopPropagation(), X.preventDefault(), w(q); - }, onMousedown(X) { - X.preventDefault(), X.stopPropagation(); - }, modelValue: !0, "onUpdate:modelValue": void 0 }, j = S ? !!t.chip : !!t.selection, G = j ? pa(S ? t.chip({ item: q, index: T, props: N }) : t.selection({ item: q, index: T })) : void 0; - if (!j || G) - return d("div", { key: q.value, class: "v-select__selection" }, [S ? t.chip ? d(je, { key: "chip-defaults", defaults: { VChip: { closable: e.closableChips, size: "small", text: q.title } } }, { default: () => [G] }) : d(br, Q({ key: "chip", closable: e.closableChips, size: "small", text: q.title, disabled: q.props.disabled }, N), null) : G ?? d("span", { class: "v-select__selection-text" }, [q.title, e.multiple && T < f.value.length - 1 && d("span", { class: "v-select__selection-comma" }, [la(",")])])]); + } }), (R = t["append-item"]) == null ? void 0 : R.call(t)]; + } })] }), y.value.map((q, J) => { + const R = { "onClick:close": function(x) { + x.stopPropagation(), x.preventDefault(), P(q); + }, onMousedown(x) { + x.preventDefault(), x.stopPropagation(); + }, modelValue: !0, "onUpdate:modelValue": void 0 }, z = B ? !!t.chip : !!t.selection, D = z ? Hl(B ? t.chip({ item: q, index: J, props: R }) : t.selection({ item: q, index: J })) : void 0; + if (!z || D) + return d("div", { key: q.value, class: "v-select__selection" }, [B ? t.chip ? d(qe, { key: "chip-defaults", defaults: { VChip: { closable: e.closableChips, size: "small", text: q.title } } }, { default: () => [D] }) : d(ei, ee({ key: "chip", closable: e.closableChips, size: "small", text: q.title, disabled: q.props.disabled }, R), null) : D ?? d("span", { class: "v-select__selection-text" }, [q.title, e.multiple && J < y.value.length - 1 && d("span", { class: "v-select__selection-comma" }, [Ll(",")])])]); })]), "append-inner": function() { - var j; - for (var q = arguments.length, T = new Array(q), N = 0; N < q; N++) - T[N] = arguments[N]; - return d(Fe, null, [(j = t["append-inner"]) == null ? void 0 : j.call(t, ...T), e.menuIcon ? d(Se, { class: "v-select__menu-icon", icon: e.menuIcon }, null) : void 0]); + var z; + for (var q = arguments.length, J = new Array(q), R = 0; R < q; R++) + J[R] = arguments[R]; + return d(we, null, [(z = t["append-inner"]) == null ? void 0 : z.call(t, ...J), e.menuIcon ? d(Ve, { class: "v-select__menu-icon", icon: e.menuIcon }, null) : void 0]); } }); - }), ul({ isFocused: g, menu: s, select: w }, o); -} }), us = ee()({ name: "VCardActions", props: ye(), setup(e, n) { + }), Un({ isFocused: h, menu: u, select: P }, o); +} }), ms = (e, n, t) => e == null || n == null ? -1 : e.toString().toLocaleLowerCase().indexOf(n.toString().toLocaleLowerCase()), gs = H({ customFilter: Function, customKeyFilter: Object, filterKeys: [Array, String], filterMode: { type: String, default: "intersection" }, noFilter: Boolean }, "filter"); +function hs(e, n, t, l) { + const o = W([]), i = W(/* @__PURE__ */ new Map()), c = v(() => l != null && l.transform ? r(n).map((s) => [s, l.transform(s)]) : r(n)); + return ze(() => { + const s = typeof t == "function" ? t() : r(t), u = typeof s != "string" && typeof s != "number" ? "" : String(s), a = function(g, b, m) { + var N; + const h = [], I = (m == null ? void 0 : m.default) ?? ms, F = !!(m != null && m.filterKeys) && lt(m.filterKeys), V = Object.keys((m == null ? void 0 : m.customKeyFilter) ?? {}).length; + if (!(g != null && g.length)) + return h; + e: + for (let w = 0; w < g.length; w++) { + const [L, M = L] = lt(g[w]), E = {}, S = {}; + let k = -1; + if (b && !(m != null && m.noFilter)) { + if (typeof L == "object") { + const P = F || Object.keys(M); + for (const G of P) { + const $ = dt(M, G, M), O = (N = m == null ? void 0 : m.customKeyFilter) == null ? void 0 : N[G]; + if (k = O ? O($, b, L) : I($, b, L), k !== -1 && k !== !1) + O ? E[G] = k : S[G] = k; + else if ((m == null ? void 0 : m.filterMode) === "every") + continue e; + } + } else + k = I(L, b, L), k !== -1 && k !== !1 && (S.title = k); + const C = Object.keys(S).length, _ = Object.keys(E).length; + if (!C && !_ || (m == null ? void 0 : m.filterMode) === "union" && _ !== V && !C || (m == null ? void 0 : m.filterMode) === "intersection" && (_ !== V || !C)) + continue; + } + h.push({ index: w, matches: { ...S, ...E } }); + } + return h; + }(c.value, u, { customKeyFilter: { ...e.customKeyFilter, ...r(l == null ? void 0 : l.customKeyFilter) }, default: e.customFilter, filterKeys: e.filterKeys, filterMode: e.filterMode, noFilter: e.noFilter }), p = r(n), f = [], y = /* @__PURE__ */ new Map(); + a.forEach((g) => { + let { index: b, matches: m } = g; + const h = p[b]; + f.push(h), y.set(h.value, m); + }), o.value = f, i.value = y; + }), { filteredItems: o, filteredMatches: i, getMatches: function(s) { + return i.value.get(s.value); + } }; +} +const bs = H({ autoSelectFirst: { type: [Boolean, String] }, search: String, ...gs({ filterKeys: ["title"] }), ...Si(), ...Ot(uo({ modelValue: null, role: "combobox" }), ["validationValue", "dirty", "appendInnerIcon"]), ...Cn({ transition: !1 }) }, "VAutocomplete"), Cs = oe()({ name: "VAutocomplete", props: bs(), emits: { "update:focused": (e) => !0, "update:search": (e) => !0, "update:modelValue": (e) => !0, "update:menu": (e) => !0 }, setup(e, n) { let { slots: t } = n; - return ln({ VBtn: { slim: !0, variant: "text" } }), se(() => { + const { t: l } = vl(), o = W(), i = ve(!1), c = ve(!0), s = ve(!1), u = W(), a = W(), p = Te(e, "menu"), f = v({ get: () => p.value, set: (x) => { + var K; + p.value && !x && ((K = u.value) != null && K.ΨopenChildren) || (p.value = x); + } }), y = ve(-1), g = v(() => { + var x; + return (x = o.value) == null ? void 0 : x.color; + }), b = v(() => f.value ? e.closeText : e.openText), { items: m, transformIn: h, transformOut: I } = ui(e), { textColorClasses: F, textColorStyles: V } = vt(g), N = Te(e, "search", ""), w = Te(e, "modelValue", [], (x) => h(x === null ? [null] : lt(x)), (x) => { + const K = I(x); + return e.multiple ? K : K[0] ?? null; + }), L = v(() => typeof e.counterValue == "function" ? e.counterValue(w.value) : typeof e.counterValue == "number" ? e.counterValue : w.value.length), M = io(), { filteredItems: E, getMatches: S } = hs(e, m, () => c.value ? "" : N.value), k = v(() => e.hideSelected ? E.value.filter((x) => !w.value.some((K) => K.value === x.value)) : E.value), C = v(() => w.value.map((x) => x.props.value)), _ = v(() => { + var x; + return (e.autoSelectFirst === !0 || e.autoSelectFirst === "exact" && N.value === ((x = k.value[0]) == null ? void 0 : x.title)) && k.value.length > 0 && !c.value && !s.value; + }), P = v(() => e.hideNoData && !k.value.length || e.readonly || (M == null ? void 0 : M.isReadonly.value)), G = W(), { onListScroll: $, onListKeydown: O } = Ii(G, o); + function T(x) { + e.openOnClear && (f.value = !0), N.value = ""; + } + function B() { + P.value || (f.value = !0); + } + function A(x) { + P.value || (i.value && (x.preventDefault(), x.stopPropagation()), f.value = !f.value); + } + function U(x) { + var re, Q, pe; + if (e.readonly || M != null && M.isReadonly.value) + return; + const K = o.value.selectionStart, te = w.value.length; + if ((y.value > -1 || ["Enter", "ArrowDown", "ArrowUp"].includes(x.key)) && x.preventDefault(), ["Enter", "ArrowDown"].includes(x.key) && (f.value = !0), ["Escape"].includes(x.key) && (f.value = !1), _.value && ["Enter", "Tab"].includes(x.key) && D(k.value[0]), x.key === "ArrowDown" && _.value && ((re = G.value) == null || re.focus("next")), e.multiple) { + if (["Backspace", "Delete"].includes(x.key)) { + if (y.value < 0) + return void (x.key !== "Backspace" || N.value || (y.value = te - 1)); + const de = y.value, he = w.value[y.value]; + he && !he.props.disabled && D(he), y.value = de >= te - 1 ? te - 2 : de; + } + if (x.key === "ArrowLeft") { + if (y.value < 0 && K > 0) + return; + const de = y.value > -1 ? y.value - 1 : te - 1; + w.value[de] ? y.value = de : (y.value = -1, o.value.setSelectionRange((Q = N.value) == null ? void 0 : Q.length, (pe = N.value) == null ? void 0 : pe.length)); + } + if (x.key === "ArrowRight") { + if (y.value < 0) + return; + const de = y.value + 1; + w.value[de] ? y.value = de : (y.value = -1, o.value.setSelectionRange(0, 0)); + } + } + } + function j(x) { + if (an(o.value, ":autofill") || an(o.value, ":-webkit-autofill")) { + const K = m.value.find((te) => te.title === x.target.value); + K && D(K); + } + } + function X() { + var x; + i.value && (c.value = !0, (x = o.value) == null || x.focus()); + } + function q(x) { + i.value = !0, setTimeout(() => { + s.value = !0; + }); + } + function J(x) { + s.value = !1; + } + function R(x) { + (x == null || x === "" && !e.multiple) && (w.value = []); + } + const z = ve(!1); + function D(x) { + let K = !(arguments.length > 1 && arguments[1] !== void 0) || arguments[1]; + if (!x.props.disabled) + if (e.multiple) { + const te = w.value.findIndex((re) => e.valueComparator(re.value, x.value)); + if (te === -1) + w.value = [...w.value, x]; + else { + const re = [...w.value]; + re.splice(te, 1), w.value = re; + } + } else + w.value = K ? [x] : [], z.value = !0, N.value = K ? x.title : "", f.value = !1, c.value = !0, Ne(() => z.value = !1); + } + return Y(i, (x, K) => { + var te; + x !== K && (x ? (z.value = !0, N.value = e.multiple ? "" : String(((te = w.value.at(-1)) == null ? void 0 : te.props.title) ?? ""), c.value = !0, Ne(() => z.value = !1)) : (e.multiple || N.value != null ? !_.value || s.value || w.value.some((re) => { + let { value: Q } = re; + return Q === k.value[0].value; + }) || D(k.value[0]) : w.value = [], f.value = !1, N.value = "", y.value = -1)); + }), Y(N, (x) => { + i.value && !z.value && (x && (f.value = !0), c.value = !x); + }), Y(f, () => { + if (!e.hideSelected && f.value && w.value.length) { + const x = k.value.findIndex((K) => w.value.some((te) => K.value === te.value)); + Ke && window.requestAnimationFrame(() => { + var K; + x >= 0 && ((K = a.value) == null || K.scrollToIndex(x)); + }); + } + }), Y(k, (x, K) => { + i.value && (!x.length && e.hideNoData && (f.value = !1), !K.length && x.length && (f.value = !0)); + }), ge(() => { + const x = !(!e.chips && !t.chip), K = !!(!e.hideNoData || k.value.length || t["prepend-item"] || t["append-item"] || t["no-data"]), te = w.value.length > 0, re = On.filterProps(e); + return d(On, ee({ ref: o }, re, { modelValue: N.value, "onUpdate:modelValue": [(Q) => N.value = Q, R], focused: i.value, "onUpdate:focused": (Q) => i.value = Q, validationValue: w.externalValue, counterValue: L.value, dirty: te, onChange: j, class: ["v-autocomplete", "v-autocomplete--" + (e.multiple ? "multiple" : "single"), { "v-autocomplete--active-menu": f.value, "v-autocomplete--chips": !!e.chips, "v-autocomplete--selection-slot": !!t.selection, "v-autocomplete--selecting-index": y.value > -1 }, e.class], style: e.style, readonly: e.readonly, placeholder: te ? void 0 : e.placeholder, "onClick:clear": T, "onMousedown:control": B, onKeydown: U }), { ...t, default: () => d(we, null, [d(gi, ee({ ref: u, modelValue: f.value, "onUpdate:modelValue": (Q) => f.value = Q, activator: "parent", contentClass: "v-autocomplete__content", disabled: P.value, eager: e.eager, maxHeight: 310, openOnClick: !1, closeOnContentClick: !1, transition: e.transition, onAfterLeave: X }, e.menuProps), { default: () => [K && d(di, { ref: G, selected: C.value, selectStrategy: e.multiple ? "independent" : "single-independent", onMousedown: (Q) => Q.preventDefault(), onKeydown: O, onFocusin: q, onFocusout: J, onScrollPassive: $, tabindex: "-1", "aria-live": "polite", color: e.itemColor ?? e.color }, { default: () => { + var Q, pe, de; + return [(Q = t["prepend-item"]) == null ? void 0 : Q.call(t), !k.value.length && !e.hideNoData && (((pe = t["no-data"]) == null ? void 0 : pe.call(t)) ?? d(sn, { title: l(e.noDataText) }, null)), d(Ci, { ref: a, renderless: !0, items: k.value }, { default: (he) => { + var Ee; + let { item: ae, index: Be, itemRef: xe } = he; + const Pe = ee(ae.props, { ref: xe, key: Be, active: !(!_.value || Be !== 0) || void 0, onClick: () => D(ae) }); + return ((Ee = t.item) == null ? void 0 : Ee.call(t, { item: ae, index: Be, props: Pe })) ?? d(sn, Pe, { prepend: (be) => { + let { isSelected: ie } = be; + return d(we, null, [e.multiple && !e.hideSelected ? d(sl, { key: ae.value, modelValue: ie, ripple: !1, tabindex: "-1" }, null) : void 0, ae.props.prependAvatar && d(kt, { image: ae.props.prependAvatar }, null), ae.props.prependIcon && d(Ve, { icon: ae.props.prependIcon }, null)]); + }, title: () => { + var be, ie; + return c.value ? ae.title : function(ye, Oe, _e) { + if (Oe == null) + return ye; + if (Array.isArray(Oe)) + throw new Error("Multiple matches is not implemented"); + return typeof Oe == "number" && ~Oe ? d(we, null, [d("span", { class: "v-autocomplete__unmask" }, [ye.substr(0, Oe)]), d("span", { class: "v-autocomplete__mask" }, [ye.substr(Oe, _e)]), d("span", { class: "v-autocomplete__unmask" }, [ye.substr(Oe + _e)])]) : ye; + }(ae.title, (be = S(ae)) == null ? void 0 : be.title, ((ie = N.value) == null ? void 0 : ie.length) ?? 0); + } }); + } }), (de = t["append-item"]) == null ? void 0 : de.call(t)]; + } })] }), w.value.map((Q, pe) => { + const de = { "onClick:close": function(Be) { + Be.stopPropagation(), Be.preventDefault(), D(Q, !1); + }, onMousedown(Be) { + Be.preventDefault(), Be.stopPropagation(); + }, modelValue: !0, "onUpdate:modelValue": void 0 }, he = x ? !!t.chip : !!t.selection, ae = he ? Hl(x ? t.chip({ item: Q, index: pe, props: de }) : t.selection({ item: Q, index: pe })) : void 0; + if (!he || ae) + return d("div", { key: Q.value, class: ["v-autocomplete__selection", pe === y.value && ["v-autocomplete__selection--selected", F.value]], style: pe === y.value ? V.value : {} }, [x ? t.chip ? d(qe, { key: "chip-defaults", defaults: { VChip: { closable: e.closableChips, size: "small", text: Q.title } } }, { default: () => [ae] }) : d(ei, ee({ key: "chip", closable: e.closableChips, size: "small", text: Q.title, disabled: Q.props.disabled }, de), null) : ae ?? d("span", { class: "v-autocomplete__selection-text" }, [Q.title, e.multiple && pe < w.value.length - 1 && d("span", { class: "v-autocomplete__selection-comma" }, [Ll(",")])])]); + })]), "append-inner": function() { + var he; + for (var Q = arguments.length, pe = new Array(Q), de = 0; de < Q; de++) + pe[de] = arguments[de]; + return d(we, null, [(he = t["append-inner"]) == null ? void 0 : he.call(t, ...pe), e.menuIcon ? d(Ve, { class: "v-autocomplete__menu-icon", icon: e.menuIcon, onMousedown: A, onClick: Ri, "aria-label": l(b.value), title: l(b.value) }, null) : void 0]); + } }); + }), Un({ isFocused: i, isPristine: c, menu: f, search: N, filteredItems: E, select: D }, o); +} }), Is = oe()({ name: "VCardActions", props: Se(), setup(e, n) { + let { slots: t } = n; + return fn({ VBtn: { slim: !0, variant: "text" } }), ge(() => { var l; return d("div", { class: ["v-card-actions", e.class], style: e.style }, [(l = t.default) == null ? void 0 : l.call(t)]); }), {}; -} }), cs = wn("v-card-subtitle"), ds = wn("v-card-title"), ps = H({ appendAvatar: String, appendIcon: Ce, prependAvatar: String, prependIcon: Ce, subtitle: [String, Number], title: [String, Number], ...ye(), ...ut() }, "VCardItem"), vs = ee()({ name: "VCardItem", props: ps(), setup(e, n) { +} }), Ss = Tn("v-card-subtitle"), Bs = Tn("v-card-title"), xs = H({ appendAvatar: String, appendIcon: Ae, prependAvatar: String, prependIcon: Ae, subtitle: [String, Number], title: [String, Number], ...Se(), ...mt() }, "VCardItem"), ks = oe()({ name: "VCardItem", props: xs(), setup(e, n) { let { slots: t } = n; - return se(() => { - var i; - const l = !(!e.prependAvatar && !e.prependIcon), o = !(!l && !t.prepend), a = !(!e.appendAvatar && !e.appendIcon), c = !(!a && !t.append), u = !(e.title == null && !t.title), s = !(e.subtitle == null && !t.subtitle); - return d("div", { class: ["v-card-item", e.class], style: e.style }, [o && d("div", { key: "prepend", class: "v-card-item__prepend" }, [t.prepend ? d(je, { key: "prepend-defaults", disabled: !l, defaults: { VAvatar: { density: e.density, icon: e.prependIcon, image: e.prependAvatar } } }, t.prepend) : l && d(Ut, { key: "prepend-avatar", density: e.density, icon: e.prependIcon, image: e.prependAvatar }, null)]), d("div", { class: "v-card-item__content" }, [u && d(ds, { key: "title" }, { default: () => { + return ge(() => { + var a; + const l = !(!e.prependAvatar && !e.prependIcon), o = !(!l && !t.prepend), i = !(!e.appendAvatar && !e.appendIcon), c = !(!i && !t.append), s = !(e.title == null && !t.title), u = !(e.subtitle == null && !t.subtitle); + return d("div", { class: ["v-card-item", e.class], style: e.style }, [o && d("div", { key: "prepend", class: "v-card-item__prepend" }, [t.prepend ? d(qe, { key: "prepend-defaults", disabled: !l, defaults: { VAvatar: { density: e.density, icon: e.prependIcon, image: e.prependAvatar } } }, t.prepend) : l && d(kt, { key: "prepend-avatar", density: e.density, icon: e.prependIcon, image: e.prependAvatar }, null)]), d("div", { class: "v-card-item__content" }, [s && d(Bs, { key: "title" }, { default: () => { var p; return [((p = t.title) == null ? void 0 : p.call(t)) ?? e.title]; - } }), s && d(cs, { key: "subtitle" }, { default: () => { + } }), u && d(Ss, { key: "subtitle" }, { default: () => { var p; return [((p = t.subtitle) == null ? void 0 : p.call(t)) ?? e.subtitle]; - } }), (i = t.default) == null ? void 0 : i.call(t)]), c && d("div", { key: "append", class: "v-card-item__append" }, [t.append ? d(je, { key: "append-defaults", disabled: !a, defaults: { VAvatar: { density: e.density, icon: e.appendIcon, image: e.appendAvatar } } }, t.append) : a && d(Ut, { key: "append-avatar", density: e.density, icon: e.appendIcon, image: e.appendAvatar }, null)])]); + } }), (a = t.default) == null ? void 0 : a.call(t)]), c && d("div", { key: "append", class: "v-card-item__append" }, [t.append ? d(qe, { key: "append-defaults", disabled: !i, defaults: { VAvatar: { density: e.density, icon: e.appendIcon, image: e.appendAvatar } } }, t.append) : i && d(kt, { key: "append-avatar", density: e.density, icon: e.appendIcon, image: e.appendAvatar }, null)])]); }), {}; -} }), Lt = wn("v-card-text"), fs = H({ appendAvatar: String, appendIcon: Ce, disabled: Boolean, flat: Boolean, hover: Boolean, image: String, link: { type: Boolean, default: void 0 }, prependAvatar: String, prependIcon: Ce, ripple: { type: [Boolean, Object], default: !0 }, subtitle: [String, Number], text: [String, Number], title: [String, Number], ...on(), ...ye(), ...ut(), ...zt(), ...rn(), ...Zl(), ...Kl(), ...Aa(), ...ht(), ...sl(), ...et(), ...Ne(), ...xt({ variant: "elevated" }) }, "VCard"), cn = ee()({ name: "VCard", directives: { Ripple: Pn }, props: fs(), setup(e, n) { +} }), $t = Tn("v-card-text"), ws = H({ appendAvatar: String, appendIcon: Ae, disabled: Boolean, flat: Boolean, hover: Boolean, image: String, link: { type: Boolean, default: void 0 }, prependAvatar: String, prependIcon: Ae, ripple: { type: [Boolean, Object], default: !0 }, subtitle: [String, Number], text: [String, Number], title: [String, Number], ...yn(), ...Se(), ...mt(), ...Xt(), ...gn(), ...to(), ...Zl(), ...Oa(), ...Ct(), ...ml(), ...nt(), ...He(), ...Pt({ variant: "elevated" }) }, "VCard"), en = oe()({ name: "VCard", directives: { Ripple: Rn }, props: ws(), setup(e, n) { let { attrs: t, slots: l } = n; - const { themeClasses: o } = Xe(e), { borderClasses: a } = an(e), { colorClasses: c, colorStyles: u, variantClasses: s } = An(e), { densityClasses: i } = gt(e), { dimensionStyles: p } = Dt(e), { elevationClasses: y } = sn(e), { loaderClasses: f } = il(e), { locationStyles: m } = Jl(e), { positionClasses: h } = Va(e), { roundedClasses: b } = bt(e), g = rl(e, t), I = v(() => e.link !== !1 && g.isLink.value), k = v(() => !e.disabled && e.link !== !1 && (e.link || g.isClickable.value)); - return se(() => { - const F = I.value ? "a" : e.tag, U = !(!l.title && e.title == null), $ = !(!l.subtitle && e.subtitle == null), z = U || $, L = !!(l.append || e.appendAvatar || e.appendIcon), E = !!(l.prepend || e.prependAvatar || e.prependIcon), B = !(!l.image && !e.image), _ = z || E || L, C = !(!l.text && e.text == null); - return Ue(d(F, { class: ["v-card", { "v-card--disabled": e.disabled, "v-card--flat": e.flat, "v-card--hover": e.hover && !(e.disabled || e.flat), "v-card--link": k.value }, o.value, a.value, c.value, i.value, y.value, f.value, h.value, b.value, s.value, e.class], style: [u.value, p.value, m.value, e.style], href: g.href.value, onClick: k.value && g.navigate, tabindex: e.disabled ? -1 : void 0 }, { default: () => { - var O; - return [B && d("div", { key: "image", class: "v-card__image" }, [l.image ? d(je, { key: "image-defaults", disabled: !e.image, defaults: { VImg: { cover: !0, src: e.image } } }, l.image) : d(ja, { key: "image-img", cover: !0, src: e.image }, null)]), d(Ql, { name: "v-card", active: !!e.loading, color: typeof e.loading == "boolean" ? void 0 : e.loading }, { default: l.loader }), _ && d(vs, { key: "item", prependAvatar: e.prependAvatar, prependIcon: e.prependIcon, title: e.title, subtitle: e.subtitle, appendAvatar: e.appendAvatar, appendIcon: e.appendIcon }, { default: l.item, prepend: l.prepend, title: l.title, subtitle: l.subtitle, append: l.append }), C && d(Lt, { key: "text" }, { default: () => { - var w; - return [((w = l.text) == null ? void 0 : w.call(l)) ?? e.text]; - } }), (O = l.default) == null ? void 0 : O.call(l), l.actions && d(us, null, { default: l.actions }), Fn(k.value, "v-card")]; - } }), [[mt("ripple"), k.value && e.ripple]]); + const { themeClasses: o } = Ze(e), { borderClasses: i } = mn(e), { colorClasses: c, colorStyles: s, variantClasses: u } = Wn(e), { densityClasses: a } = bt(e), { dimensionStyles: p } = Yt(e), { elevationClasses: f } = hn(e), { loaderClasses: y } = fl(e), { locationStyles: g } = eo(e), { positionClasses: b } = Pa(e), { roundedClasses: m } = It(e), h = yl(e, t), I = v(() => e.link !== !1 && h.isLink.value), F = v(() => !e.disabled && e.link !== !1 && (e.link || h.isClickable.value)); + return ge(() => { + const V = I.value ? "a" : e.tag, N = !(!l.title && e.title == null), w = !(!l.subtitle && e.subtitle == null), L = N || w, M = !!(l.append || e.appendAvatar || e.appendIcon), E = !!(l.prepend || e.prependAvatar || e.prependIcon), S = !(!l.image && !e.image), k = L || E || M, C = !(!l.text && e.text == null); + return Xe(d(V, { class: ["v-card", { "v-card--disabled": e.disabled, "v-card--flat": e.flat, "v-card--hover": e.hover && !(e.disabled || e.flat), "v-card--link": F.value }, o.value, i.value, c.value, a.value, f.value, y.value, b.value, m.value, u.value, e.class], style: [s.value, p.value, g.value, e.style], href: h.href.value, onClick: F.value && h.navigate, tabindex: e.disabled ? -1 : void 0 }, { default: () => { + var _; + return [S && d("div", { key: "image", class: "v-card__image" }, [l.image ? d(qe, { key: "image-defaults", disabled: !e.image, defaults: { VImg: { cover: !0, src: e.image } } }, l.image) : d(Ra, { key: "image-img", cover: !0, src: e.image }, null)]), d(no, { name: "v-card", active: !!e.loading, color: typeof e.loading == "boolean" ? void 0 : e.loading }, { default: l.loader }), k && d(ks, { key: "item", prependAvatar: e.prependAvatar, prependIcon: e.prependIcon, title: e.title, subtitle: e.subtitle, appendAvatar: e.appendAvatar, appendIcon: e.appendIcon }, { default: l.item, prepend: l.prepend, title: l.title, subtitle: l.subtitle, append: l.append }), C && d($t, { key: "text" }, { default: () => { + var P; + return [((P = l.text) == null ? void 0 : P.call(l)) ?? e.text]; + } }), (_ = l.default) == null ? void 0 : _.call(l), l.actions && d(Is, null, { default: l.actions }), Ln(F.value, "v-card")]; + } }), [[ht("ripple"), F.value && e.ripple]]); }), {}; -} }), ys = H({ indeterminate: Boolean, inset: Boolean, flat: Boolean, loading: { type: [Boolean, String], default: !1 }, ...Tn(), ...to() }, "VSwitch"), ms = ee()({ name: "VSwitch", inheritAttrs: !1, props: ys(), emits: { "update:focused": (e) => !0, "update:modelValue": (e) => !0, "update:indeterminate": (e) => !0 }, setup(e, n) { +} }), Bi = (e, n) => { + const t = e.__vccOpts || e; + for (const [l, o] of n) + t[l] = o; + return t; +}, Fs = Bi(ct({ __name: "VInlineAutocomplete", props: Ye(Rt({ autoSelectFirst: {}, clearIcon: {}, clearable: {}, density: {}, hideSelected: {}, itemTitle: {}, itemValue: {}, items: {}, menu: {}, menuIcon: {}, rules: {}, variant: {}, autofocus: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...zi }), { modelValue: {}, modelModifiers: {} }), emits: Ye([...Zt], ["update:modelValue"]), setup(e, { emit: n }) { + const t = _t(e, "modelValue"), l = gt(), o = At(), i = n, c = Ie(Tt, {}), s = Ie(Symbol.for("vuetify:icons")), u = e, a = Qe({ ...l, ...u, ...c }); + ze(() => { + Object.assign(a, { ...l, ...u, ...c }); + }); + const { cancelButtonColor: p, cancelButtonSize: f, cancelButtonTitle: y, cancelButtonVariant: g, cancelIcon: b, cancelIconColor: m, cardField: h, closeSiblings: I, color: F, fieldOnly: V, hideCancelIcon: N, hideDetails: w, hideSaveIcon: L, loadingIcon: M, loadingIconColor: E, saveButtonColor: S, saveButtonSize: k, saveButtonTitle: C, saveButtonVariant: _, saveIcon: P, saveIconColor: G, valueColor: $ } = Ft(a), O = v(() => u.disabled), T = v(() => u.loading), B = W(!1), A = W(!1), U = W(), j = W(!1), X = W(null); + let q = t.value; + Y(() => T.value, (ne, ke) => { + !ne && ke && j.value && Ee(); + }); + const J = v(() => it({ icon: u.clearIcon, iconOptions: s, name: "clear" })), R = v(() => t.value && t.value[a.itemTitle] ? (B.value = !1, t.value[a.itemTitle]) : t.value ? t.value : (B.value = !0, a.emptyText)), z = v(() => bn(a)), D = v(() => ({ color: a.color, displayAppendIcon: a.displayAppendIcon, displayAppendIconColor: a.displayAppendIconColor, displayAppendIconSize: a.displayAppendIconSize, displayAppendInnerIcon: a.displayAppendInnerIcon, displayAppendInnerIconColor: a.displayAppendInnerIconColor, displayAppendInnerIconSize: a.displayAppendInnerIconSize, displayPrependIcon: a.displayPrependIcon, displayPrependIconColor: a.displayPrependIconColor, displayPrependIconSize: a.displayPrependIconSize, displayPrependInnerIcon: a.displayPrependInnerIcon, displayPrependInnerIconColor: a.displayPrependInnerIconColor, displayPrependInnerIconSize: a.displayPrependInnerIconSize, displayValue: R.value, empty: B.value, error: A.value, field: "v-text-field", underlineColor: a.underlineColor, underlineStyle: a.underlineStyle, underlineWidth: a.underlineWidth, underlined: a.underlined, valueColor: $.value })), x = v(() => ({ ...Gt, ...u.cardProps })); + ze(() => { + U.value = a.items || []; + }); + const K = v(() => Ut({ cell: a.cell && !j.value, density: a.density, disabled: O.value, field: "v-select", iconSet: s == null ? void 0 : s.defaultSet, loading: T.value, loadingWait: a.loadingWait, tableField: a.tableField, variant: a.variant })), te = v(() => qt({ cell: a.cell, cellUnderlineFullWidth: a.cellUnderlineFullWidth, density: a.density, field: "v-select" })), re = Pn({ density: a.density, variant: a.variant }), Q = v(() => Ht({ active: j.value, name: "select" })), pe = v(() => Kt({ name: "select", showField: j.value })), de = v(() => ({})), he = v(() => Be.value); + function ae() { + A.value = !1, t.value = q, Ee(); + } + const Be = W(), xe = W(null), Pe = W("body"); + function Ee() { + var ke, Le; + if (O.value || a.loadingWait && T.value) + return; + Be.value = xt({ cardMinWidth: (ke = a.cardProps) == null ? void 0 : ke.minWidth, cardOffsetX: a.cardOffsetX, cardOffsetY: a.cardOffsetY, cardWidth: (Le = a.cardProps) == null ? void 0 : Le.width, field: xe.value }); + const ne = Qt({ attrs: l, closeSiblings: I.value, fieldOnly: a.fieldOnly, props: u, showField: j, timeOpened: X.value }); + j.value = ne.showField, X.value = ne.timeOpened, _e !== null && I.value && j.value && !a.fieldOnly && _e.emit(ne.timeOpened); + } + const be = W(), ie = v(() => be.value); + function ye() { + const ne = Nn({ required: a.required, rules: a.rules, value: t }); + return A.value = ne.errors, be.value = ne.results, ne.results; + } + function Oe() { + q = t.value, i("update", t.value), a.loadingWait || Ee(); + } + let _e, se; + function De(ne) { + i("update:closeSiblingFields", X), j.value && X.value !== ne && ae(); + } + return Y(() => j.value, () => { + j.value && ye(); + }), Y(() => t.value, () => { + j.value && ye(); + }), I.value && import("@vueuse/core").then(({ useEventBus: ne }) => { + _e = ne(jt), se = _e.on(De); + }), Nt(() => { + se !== void 0 && _e.off(De); + }), (ne, ke) => (Z(), fe("div", { ref_key: "inlineFieldsContainer", ref: xe, class: le(r(K)), style: We(r(de)) }, [!r(j) && !r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 0, class: le(r(te)) }, [je("div", { class: le(r(re)) }, [d(Dn, ee(r(D), { onToggleField: Ee }), rt({ _: 2 }, [st(r(o), (Le, at) => ({ name: at, fn: Ce((Et) => [Ue(ne.$slots, at, $e(Re({ ...Et })), void 0, !0)]) }))]), 1040)], 2)], 2)) : Fe("", !0), r(j) || r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 1, class: le(r(Q)) }, [(Z(), Me(Vt, { disabled: !r(h), to: r(Pe) }, [d(Cs, ee(r(z), { modelValue: t.value, "onUpdate:modelValue": ke[0] || (ke[0] = (Le) => t.value = Le), autofocus: !r(a).fieldOnly || r(a).autofocus, "clear-icon": r(J), clearable: r(a).clearable, color: r(F), density: r(a).density, disabled: r(T) || r(O), error: r(A), "error-messages": r(ie), "hide-details": r(w), "hide-selected": r(a).hideSelected, "item-title": r(a).itemTitle, "item-value": r(a).itemValue, items: r(U), label: r(a).label, loading: r(T), menu: r(a).menu && !r(a).fieldOnly && r(j), variant: r(a).variant, width: "100%", onKeyup: kn(ae, ["esc"]) }), rt({ _: 2 }, [st(r(o), (Le, at) => ({ name: at, fn: Ce((Et) => [Ue(ne.$slots, at, $e(Re({ ...Et })), void 0, !0)]) })), r(o).append ? void 0 : { name: "append", fn: Ce(() => [d(Jt, { "cancel-button-color": r(p), "cancel-button-size": r(f), "cancel-button-title": r(y), "cancel-button-variant": r(g), "cancel-icon": r(b), "cancel-icon-color": r(m), error: r(A), "field-only": r(V), "hide-cancel-icon": r(N), "hide-save-icon": r(L), loading: r(T), "loading-icon": r(M), "loading-icon-color": r(E), "save-button-color": r(S), "save-button-size": r(k), "save-button-title": r(C), "save-button-variant": r(_), "save-icon": r(P), "save-icon-color": r(G), onClose: ae, onSave: Oe }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "hide-save-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["modelValue", "autofocus", "clear-icon", "clearable", "color", "density", "disabled", "error", "error-messages", "hide-details", "hide-selected", "item-title", "item-value", "items", "label", "loading", "menu", "variant"])], 8, ["disabled", "to"]))], 2)) : Fe("", !0), r(h) ? (Z(), fe("div", { key: 2, class: le(r(pe)), style: We(r(he)) }, [d(en, $e(Re(r(x))), { default: Ce(() => [d($t, null, { default: Ce(() => [je("div", { ref_key: "cardFieldRef", ref: Pe }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : Fe("", !0)], 6)); +} }), [["__scopeId", "data-v-f9b47ea2"]]), As = H({ indeterminate: Boolean, inset: Boolean, flat: Boolean, loading: { type: [Boolean, String], default: !1 }, ...Gn(), ...ao() }, "VSwitch"), Vs = oe()({ name: "VSwitch", inheritAttrs: !1, props: As(), emits: { "update:focused": (e) => !0, "update:modelValue": (e) => !0, "update:indeterminate": (e) => !0 }, setup(e, n) { let { attrs: t, slots: l } = n; - const o = $e(e, "indeterminate"), a = $e(e, "modelValue"), { loaderClasses: c } = il(e), { isFocused: u, focus: s, blur: i } = En(e), p = D(), y = v(() => typeof e.loading == "string" && e.loading !== "" ? e.loading : e.color), f = nt(), m = v(() => e.id || `switch-${f}`); - function h() { + const o = Te(e, "indeterminate"), i = Te(e, "modelValue"), { loaderClasses: c } = fl(e), { isFocused: s, focus: u, blur: a } = jn(e), p = W(), f = v(() => typeof e.loading == "string" && e.loading !== "" ? e.loading : e.color), y = ut(), g = v(() => e.id || `switch-${y}`); + function b() { o.value && (o.value = !1); } - function b(g) { - var I, k; - g.stopPropagation(), g.preventDefault(), (k = (I = p.value) == null ? void 0 : I.input) == null || k.click(); - } - return se(() => { - const [g, I] = kn(t), k = St.filterProps(e), F = el.filterProps(e); - return d(St, Q({ class: ["v-switch", { "v-switch--inset": e.inset }, { "v-switch--indeterminate": o.value }, c.value, e.class] }, g, k, { modelValue: a.value, "onUpdate:modelValue": (U) => a.value = U, id: m.value, focused: u.value, style: e.style }), { ...l, default: (U) => { - let { id: $, messagesId: z, isDisabled: L, isReadonly: E, isValid: B } = U; - return d(el, Q({ ref: p }, F, { modelValue: a.value, "onUpdate:modelValue": [(_) => a.value = _, h], id: $.value, "aria-describedby": z.value, type: "checkbox", "aria-checked": o.value ? "mixed" : void 0, disabled: L.value, readonly: E.value, onFocus: s, onBlur: i }, I), { ...l, default: (_) => { - let { backgroundColorClasses: C, backgroundColorStyles: O } = _; - return d("div", { class: ["v-switch__track", ...C.value], style: O.value, onClick: b }, null); - }, input: (_) => { - let { inputNode: C, icon: O, backgroundColorClasses: w, backgroundColorStyles: M } = _; - return d(Fe, null, [C, d("div", { class: ["v-switch__thumb", { "v-switch__thumb--filled": O || e.loading }, e.inset ? void 0 : w.value], style: e.inset ? void 0 : M.value }, [d(ar, null, { default: () => [e.loading ? d(Ql, { name: "v-switch", active: !0, color: B.value === !1 ? void 0 : y.value }, { default: (V) => l.loader ? l.loader(V) : d(wa, { active: V.isActive, color: V.color, indeterminate: !0, size: "16", width: "2" }, null) }) : O && d(Se, { key: O, icon: O, size: "x-small" }, null)] })])]); + function m(h) { + var I, F; + h.stopPropagation(), h.preventDefault(), (F = (I = p.value) == null ? void 0 : I.input) == null || F.click(); + } + return ge(() => { + const [h, I] = $n(t), F = wt.filterProps(e), V = rl.filterProps(e); + return d(wt, ee({ class: ["v-switch", { "v-switch--inset": e.inset }, { "v-switch--indeterminate": o.value }, c.value, e.class] }, h, F, { modelValue: i.value, "onUpdate:modelValue": (N) => i.value = N, id: g.value, focused: s.value, style: e.style }), { ...l, default: (N) => { + let { id: w, messagesId: L, isDisabled: M, isReadonly: E, isValid: S } = N; + return d(rl, ee({ ref: p }, V, { modelValue: i.value, "onUpdate:modelValue": [(k) => i.value = k, b], id: w.value, "aria-describedby": L.value, type: "checkbox", "aria-checked": o.value ? "mixed" : void 0, disabled: M.value, readonly: E.value, onFocus: u, onBlur: a }, I), { ...l, default: (k) => { + let { backgroundColorClasses: C, backgroundColorStyles: _ } = k; + return d("div", { class: ["v-switch__track", ...C.value], style: _.value, onClick: m }, null); + }, input: (k) => { + let { inputNode: C, icon: _, backgroundColorClasses: P, backgroundColorStyles: G } = k; + return d(we, null, [C, d("div", { class: ["v-switch__thumb", { "v-switch__thumb--filled": _ || e.loading }, e.inset ? void 0 : P.value], style: e.inset ? void 0 : G.value }, [d(Ir, null, { default: () => [e.loading ? d(no, { name: "v-switch", active: !0, color: S.value === !1 ? void 0 : f.value }, { default: ($) => l.loader ? l.loader($) : d(Va, { active: $.isActive, color: $.color, indeterminate: !0, size: "16", width: "2" }, null) }) : _ && d(Ve, { key: _, icon: _, size: "x-small" }, null)] })])]); } }); } }); }), {}; -} }), gs = H({ autoGrow: Boolean, autofocus: Boolean, counter: [Boolean, Number, String], counterValue: Function, prefix: String, placeholder: String, persistentPlaceholder: Boolean, persistentCounter: Boolean, noResize: Boolean, rows: { type: [Number, String], default: 5, validator: (e) => !isNaN(parseFloat(e)) }, maxRows: { type: [Number, String], validator: (e) => !isNaN(parseFloat(e)) }, suffix: String, modelModifiers: Object, ...Tn(), ...no() }, "VTextarea"), hs = ee()({ name: "VTextarea", directives: { Intersect: eo }, inheritAttrs: !1, props: gs(), emits: { "click:control": (e) => !0, "mousedown:control": (e) => !0, "update:focused": (e) => !0, "update:modelValue": (e) => !0 }, setup(e, n) { +} }), _s = H({ autoGrow: Boolean, autofocus: Boolean, counter: [Boolean, Number, String], counterValue: Function, prefix: String, placeholder: String, persistentPlaceholder: Boolean, persistentCounter: Boolean, noResize: Boolean, rows: { type: [Number, String], default: 5, validator: (e) => !isNaN(parseFloat(e)) }, maxRows: { type: [Number, String], validator: (e) => !isNaN(parseFloat(e)) }, suffix: String, modelModifiers: Object, ...Gn(), ...ro() }, "VTextarea"), Os = oe()({ name: "VTextarea", directives: { Intersect: oo }, inheritAttrs: !1, props: _s(), emits: { "click:control": (e) => !0, "mousedown:control": (e) => !0, "update:focused": (e) => !0, "update:modelValue": (e) => !0 }, setup(e, n) { let { attrs: t, emit: l, slots: o } = n; - const a = $e(e, "modelValue"), { isFocused: c, focus: u, blur: s } = En(e), i = v(() => typeof e.counterValue == "function" ? e.counterValue(a.value) : (a.value || "").toString().length), p = v(() => t.maxlength ? t.maxlength : !e.counter || typeof e.counter != "number" && typeof e.counter != "string" ? void 0 : e.counter); - function y(C, O) { - var w, M; - e.autofocus && C && ((M = (w = O[0].target) == null ? void 0 : w.focus) == null || M.call(w)); + const i = Te(e, "modelValue"), { isFocused: c, focus: s, blur: u } = jn(e), a = v(() => typeof e.counterValue == "function" ? e.counterValue(i.value) : (i.value || "").toString().length), p = v(() => t.maxlength ? t.maxlength : !e.counter || typeof e.counter != "number" && typeof e.counter != "string" ? void 0 : e.counter); + function f(C, _) { + var P, G; + e.autofocus && C && ((G = (P = _[0].target) == null ? void 0 : P.focus) == null || G.call(P)); } - const f = D(), m = D(), h = de(""), b = D(), g = v(() => e.persistentPlaceholder || c.value || e.active); + const y = W(), g = W(), b = ve(""), m = W(), h = v(() => e.persistentPlaceholder || c.value || e.active); function I() { var C; - b.value !== document.activeElement && ((C = b.value) == null || C.focus()), c.value || u(); + m.value !== document.activeElement && ((C = m.value) == null || C.focus()), c.value || s(); } - function k(C) { + function F(C) { I(), l("click:control", C); } - function F(C) { + function V(C) { l("mousedown:control", C); } - function U(C) { - C.stopPropagation(), I(), Me(() => { - a.value = "", ca(e["onClick:clear"], C); + function N(C) { + C.stopPropagation(), I(), Ne(() => { + i.value = "", fa(e["onClick:clear"], C); }); } - function $(C) { - var w; - const O = C.target; - if (a.value = O.value, (w = e.modelModifiers) == null ? void 0 : w.trim) { - const M = [O.selectionStart, O.selectionEnd]; - Me(() => { - O.selectionStart = M[0], O.selectionEnd = M[1]; + function w(C) { + var P; + const _ = C.target; + if (i.value = _.value, (P = e.modelModifiers) == null ? void 0 : P.trim) { + const G = [_.selectionStart, _.selectionEnd]; + Ne(() => { + _.selectionStart = G[0], _.selectionEnd = G[1]; }); } } - const z = D(), L = D(+e.rows), E = v(() => ["plain", "underlined"].includes(e.variant)); - function B() { - e.autoGrow && Me(() => { - if (!z.value || !m.value) + const L = W(), M = W(+e.rows), E = v(() => ["plain", "underlined"].includes(e.variant)); + function S() { + e.autoGrow && Ne(() => { + if (!L.value || !g.value) return; - const C = getComputedStyle(z.value), O = getComputedStyle(m.value.$el), w = parseFloat(C.getPropertyValue("--v-field-padding-top")) + parseFloat(C.getPropertyValue("--v-input-padding-top")) + parseFloat(C.getPropertyValue("--v-field-padding-bottom")), M = z.value.scrollHeight, V = parseFloat(C.lineHeight), A = jt(M ?? 0, Math.max(parseFloat(e.rows) * V + w, parseFloat(O.getPropertyValue("--v-input-control-height"))), parseFloat(e.maxRows) * V + w || 1 / 0); - L.value = Math.floor((A - w) / V), h.value = ie(A); + const C = getComputedStyle(L.value), _ = getComputedStyle(g.value.$el), P = parseFloat(C.getPropertyValue("--v-field-padding-top")) + parseFloat(C.getPropertyValue("--v-input-padding-top")) + parseFloat(C.getPropertyValue("--v-field-padding-bottom")), G = L.value.scrollHeight, $ = parseFloat(C.lineHeight), O = on(G ?? 0, Math.max(parseFloat(e.rows) * $ + P, parseFloat(_.getPropertyValue("--v-input-control-height"))), parseFloat(e.maxRows) * $ + P || 1 / 0); + M.value = Math.floor((O - P) / $), b.value = ce(O); }); } - let _; - return it(() => { - e.autoGrow || (L.value = +e.rows); - }), qt(B), J(a, B), J(() => e.rows, B), J(() => e.maxRows, B), J(() => e.density, B), J(z, (C) => { - C ? (_ = new ResizeObserver(B), _.observe(z.value)) : _ == null || _.disconnect(); - }), yt(() => { - _ == null || _.disconnect(); - }), se(() => { - const C = !!(o.counter || e.counter || e.counterValue), O = !(!C && !o.details), [w, M] = kn(t), { modelValue: V, ...A } = St.filterProps(e), P = vi(e); - return d(St, Q({ ref: f, modelValue: a.value, "onUpdate:modelValue": (S) => a.value = S, class: ["v-textarea v-text-field", { "v-textarea--prefixed": e.prefix, "v-textarea--suffixed": e.suffix, "v-text-field--prefixed": e.prefix, "v-text-field--suffixed": e.suffix, "v-textarea--auto-grow": e.autoGrow, "v-textarea--no-resize": e.noResize || e.autoGrow, "v-input--plain-underlined": E.value }, e.class], style: e.style }, w, A, { centerAffix: L.value === 1 && !E.value, focused: c.value }), { ...o, default: (S) => { - let { id: x, isDisabled: W, isDirty: R, isReadonly: Y, isValid: q } = S; - return d(lo, Q({ ref: m, style: { "--v-textarea-control-height": h.value }, onClick: k, onMousedown: F, "onClick:clear": U, "onClick:prependInner": e["onClick:prependInner"], "onClick:appendInner": e["onClick:appendInner"] }, P, { id: x.value, active: g.value || R.value, centerAffix: L.value === 1 && !E.value, dirty: R.value || e.dirty, disabled: W.value, focused: c.value, error: q.value === !1 }), { ...o, default: (T) => { - let { props: { class: N, ...j } } = T; - return d(Fe, null, [e.prefix && d("span", { class: "v-text-field__prefix" }, [e.prefix]), Ue(d("textarea", Q({ ref: b, class: N, value: a.value, onInput: $, autofocus: e.autofocus, readonly: Y.value, disabled: W.value, placeholder: e.placeholder, rows: e.rows, name: e.name, onFocus: I, onBlur: s }, j, M), null), [[mt("intersect"), { handler: y }, null, { once: !0 }]]), e.autoGrow && Ue(d("textarea", { class: [N, "v-textarea__sizer"], id: `${j.id}-sizer`, "onUpdate:modelValue": (G) => a.value = G, ref: z, readonly: !0, "aria-hidden": "true" }, null), [[xi, a.value]]), e.suffix && d("span", { class: "v-text-field__suffix" }, [e.suffix])]); + let k; + return ze(() => { + e.autoGrow || (M.value = +e.rows); + }), un(S), Y(i, S), Y(() => e.rows, S), Y(() => e.maxRows, S), Y(() => e.density, S), Y(L, (C) => { + C ? (k = new ResizeObserver(S), k.observe(L.value)) : k == null || k.disconnect(); + }), ft(() => { + k == null || k.disconnect(); + }), ge(() => { + const C = !!(o.counter || e.counter || e.counterValue), _ = !(!C && !o.details), [P, G] = $n(t), { modelValue: $, ...O } = wt.filterProps(e), T = bi(e); + return d(wt, ee({ ref: y, modelValue: i.value, "onUpdate:modelValue": (B) => i.value = B, class: ["v-textarea v-text-field", { "v-textarea--prefixed": e.prefix, "v-textarea--suffixed": e.suffix, "v-text-field--prefixed": e.prefix, "v-text-field--suffixed": e.suffix, "v-textarea--auto-grow": e.autoGrow, "v-textarea--no-resize": e.noResize || e.autoGrow, "v-input--plain-underlined": E.value }, e.class], style: e.style }, P, O, { centerAffix: M.value === 1 && !E.value, focused: c.value }), { ...o, default: (B) => { + let { id: A, isDisabled: U, isDirty: j, isReadonly: X, isValid: q } = B; + return d(so, ee({ ref: g, style: { "--v-textarea-control-height": b.value }, onClick: F, onMousedown: V, "onClick:clear": N, "onClick:prependInner": e["onClick:prependInner"], "onClick:appendInner": e["onClick:appendInner"] }, T, { id: A.value, active: h.value || j.value, centerAffix: M.value === 1 && !E.value, dirty: j.value || e.dirty, disabled: U.value, focused: c.value, error: q.value === !1 }), { ...o, default: (J) => { + let { props: { class: R, ...z } } = J; + return d(we, null, [e.prefix && d("span", { class: "v-text-field__prefix" }, [e.prefix]), Xe(d("textarea", ee({ ref: m, class: R, value: i.value, onInput: w, autofocus: e.autofocus, readonly: X.value, disabled: U.value, placeholder: e.placeholder, rows: e.rows, name: e.name, onFocus: I, onBlur: u }, z, G), null), [[ht("intersect"), { handler: f }, null, { once: !0 }]]), e.autoGrow && Xe(d("textarea", { class: [R, "v-textarea__sizer"], id: `${z.id}-sizer`, "onUpdate:modelValue": (D) => i.value = D, ref: L, readonly: !0, "aria-hidden": "true" }, null), [[Pi, i.value]]), e.suffix && d("span", { class: "v-text-field__suffix" }, [e.suffix])]); } }); - }, details: O ? (S) => { - var x; - return d(Fe, null, [(x = o.details) == null ? void 0 : x.call(o, S), C && d(Fe, null, [d("span", null, null), d(pi, { active: e.persistentCounter || c.value, value: i.value, max: p.value }, o.counter)])]); + }, details: _ ? (B) => { + var A; + return d(we, null, [(A = o.details) == null ? void 0 : A.call(o, B), C && d(we, null, [d("span", null, null), d(hi, { active: e.persistentCounter || c.value, value: a.value, max: p.value }, o.counter)])]); } : void 0 }); - }), ul({}, f, m, b); -} }), yi = rt({ __name: "BooleanIcons", props: Qe({ iconFalseColor: {}, iconFalseTitle: {}, iconTrueColor: {}, iconTrueTitle: {}, iconFalse: {}, iconTrue: {} }, { modelValue: {} }), emits: ["update:modelValue"], setup(e) { - const n = e, t = me(Symbol.for("vuetify:icons")), l = $t(e, "modelValue"), o = v(() => ot({ icon: n.iconFalse, iconOptions: t, name: "false" })), a = v(() => ot({ icon: n.iconTrue, iconOptions: t, name: "true" })); - return (c, u) => l.value ? (Z(), De(r(Se), { key: 0, class: "v-inline-fields--boolean-icons fa-fw", color: c.iconTrueColor, icon: r(a), size: "x-small", title: c.iconTrueTitle }, null, 8, ["color", "icon", "title"])) : (Z(), De(r(Se), { key: 1, class: "v-inline-fields--boolean-icons fa-fw", color: c.iconFalseColor, icon: r(o), size: "x-small", title: c.iconFalseTitle }, null, 8, ["color", "icon", "title"])); -} }), mn = (e) => { - const { str: n, unit: t = "px" } = e; - if (n != null && n !== "") - return +n ? `${Number(n)}${t}` : String(n); -}, mi = (e) => { - var o; - const { modelValue: n, trueValue: t } = e, l = r(n); - return ((o = l == null ? void 0 : l.toLowerCase) == null ? void 0 : o.call(l)) === "true" || l === "1" || l == "1" || l === !0 || l == t || l === t; -}, cl = (e) => { - const { required: n, rules: t } = e; - let { value: l } = e; - l = r(l); - const o = []; - let a = !1; - if (n && !l) - return o.push("Field is required."), { errors: !0, results: o }; - if (t) { - for (const c of t) { - const u = (typeof c == "function" ? c : () => c)(l); - u !== !0 && (typeof u == "string" ? o.push(u) : console.warn(`${u} is not a valid value. Rule functions must return boolean true or a string.`)); - } - a = o.length > 0; - } - return { errors: a, results: o }; -}, dn = (e) => { - const { attrs: n, closeSiblings: t, fieldOnly: l, props: o, showField: a, timeOpened: c } = e; - let u = c; - return t && !l && (u = /* @__PURE__ */ new Date()), { settings: { ...n, ...o }, showField: !r(a), timeOpened: u }; -}, oo = (e) => { - const { length: n = 0 } = e; - let { suffix: t, text: l } = e; - return l = l.toString(), t = t || "...", l.length > n ? `${l.substring(0, n)}${t}` : l; -}; -function Jo(e) { - if (!e) - return 100; - if (e.toString().includes(".")) { - const n = 100 * Number(e); - return n >= 100 ? 100 : n; - } - return Number(e) >= 100 ? 100 : Number(e); -} -function Zo(e) { - let n = function(y) { - const f = { AliceBlue: "#F0F8FF", AntiqueWhite: "#FAEBD7", Aqua: "#00FFFF", Aquamarine: "#7FFFD4", Azure: "#F0FFFF", Beige: "#F5F5DC", Bisque: "#FFE4C4", Black: "#000000", BlanchedAlmond: "#FFEBCD", Blue: "#0000FF", BlueViolet: "#8A2BE2", Brown: "#A52A2A", BurlyWood: "#DEB887", CadetBlue: "#5F9EA0", Chartreuse: "#7FFF00", Chocolate: "#D2691E", Coral: "#FF7F50", CornflowerBlue: "#6495ED", Cornsilk: "#FFF8DC", Crimson: "#DC143C", Cyan: "#00FFFF", DarkBlue: "#00008B", DarkCyan: "#008B8B", DarkGoldenRod: "#B8860B", DarkGray: "#A9A9A9", DarkGreen: "#006400", DarkGrey: "#A9A9A9", DarkKhaki: "#BDB76B", DarkMagenta: "#8B008B", DarkOliveGreen: "#556B2F", DarkOrange: "#FF8C00", DarkOrchid: "#9932CC", DarkRed: "#8B0000", DarkSalmon: "#E9967A", DarkSeaGreen: "#8FBC8F", DarkSlateBlue: "#483D8B", DarkSlateGray: "#2F4F4F", DarkSlateGrey: "#2F4F4F", DarkTurquoise: "#00CED1", DarkViolet: "#9400D3", DeepPink: "#FF1493", DeepSkyBlue: "#00BFFF", DimGray: "#696969", DimGrey: "#696969", DodgerBlue: "#1E90FF", FireBrick: "#B22222", FloralWhite: "#FFFAF0", ForestGreen: "#228B22", Fuchsia: "#FF00FF", Gainsboro: "#DCDCDC", GhostWhite: "#F8F8FF", Gold: "#FFD700", GoldenRod: "#DAA520", Gray: "#808080", Green: "#008000", GreenYellow: "#ADFF2F", Grey: "#808080", HoneyDew: "#F0FFF0", HotPink: "#FF69B4", IndianRed: "#CD5C5C", Indigo: "#4B0082", Ivory: "#FFFFF0", Khaki: "#F0E68C", Lavender: "#E6E6FA", LavenderBlush: "#FFF0F5", LawnGreen: "#7CFC00", LemonChiffon: "#FFFACD", LightBlue: "#ADD8E6", LightCoral: "#F08080", LightCyan: "#E0FFFF", LightGoldenRodYellow: "#FAFAD2", LightGray: "#D3D3D3", LightGreen: "#90EE90", LightGrey: "#D3D3D3", LightPink: "#FFB6C1", LightSalmon: "#FFA07A", LightSeaGreen: "#20B2AA", LightSkyBlue: "#87CEFA", LightSlateGray: "#778899", LightSlateGrey: "#778899", LightSteelBlue: "#B0C4DE", LightYellow: "#FFFFE0", Lime: "#00FF00", LimeGreen: "#32CD32", Linen: "#FAF0E6", Magenta: "#FF00FF", Maroon: "#800000", MediumAquaMarine: "#66CDAA", MediumBlue: "#0000CD", MediumOrchid: "#BA55D3", MediumPurple: "#9370DB", MediumSeaGreen: "#3CB371", MediumSlateBlue: "#7B68EE", MediumSpringGreen: "#00FA9A", MediumTurquoise: "#48D1CC", MediumVioletRed: "#C71585", MidnightBlue: "#191970", MintCream: "#F5FFFA", MistyRose: "#FFE4E1", Moccasin: "#FFE4B5", NavajoWhite: "#FFDEAD", Navy: "#000080", OldLace: "#FDF5E6", Olive: "#808000", OliveDrab: "#6B8E23", Orange: "#FFA500", OrangeRed: "#FF4500", Orchid: "#DA70D6", PaleGoldenRod: "#EEE8AA", PaleGreen: "#98FB98", PaleTurquoise: "#AFEEEE", PaleVioletRed: "#DB7093", PapayaWhip: "#FFEFD5", PeachPuff: "#FFDAB9", Peru: "#CD853F", Pink: "#FFC0CB", Plum: "#DDA0DD", PowderBlue: "#B0E0E6", Purple: "#800080", RebeccaPurple: "#663399", Red: "#FF0000", RosyBrown: "#BC8F8F", RoyalBlue: "#4169E1", SaddleBrown: "#8B4513", Salmon: "#FA8072", SandyBrown: "#F4A460", SeaGreen: "#2E8B57", SeaShell: "#FFF5EE", Sienna: "#A0522D", Silver: "#C0C0C0", SkyBlue: "#87CEEB", SlateBlue: "#6A5ACD", SlateGray: "#708090", SlateGrey: "#708090", Snow: "#FFFAFA", SpringGreen: "#00FF7F", SteelBlue: "#4682B4", Tan: "#D2B48C", Teal: "#008080", Thistle: "#D8BFD8", Tomato: "#FF6347", Turquoise: "#40E0D0", Violet: "#EE82EE", Wheat: "#F5DEB3", White: "#FFFFFF", WhiteSmoke: "#F5F5F5", Yellow: "#FFFF00", YellowGreen: "#9ACD32" }; - let m = y; - return Object.entries(f).forEach(([h, b]) => { - y.toLowerCase() != h.toLowerCase() || (m = b); - }), m; - }(e), t = 0, l = 0, o = 0, a = 100, c = 0, u = 0, s = 0; - if (n.substring(0, 1) === "#") - n = function(y) { - let f = y.replace("#", ""); - f.length === 3 && (f = f.split("").map((I) => I + I).join("")); - const m = parseInt(f.substring(0, 2), 16), h = parseInt(f.substring(2, 4), 16), b = parseInt(f.substring(4, 6), 16); - return [m, h, b, 100]; - }(n); - else if (n.includes("rgb")) - n = [...n.matchAll(/[\d+.\d+]+/g)].map(Number); - else if (n.includes("hsl")) - return n = [...n.matchAll(/[\d+.\d+]+/g)].map(String), t = n[0], l = n[1], o = n[2], a = Jo(n[3]), `${t} ${l}% ${o}% / ${a}%`; - [c, u, s, a] = n, c /= 255, u /= 255, s /= 255, a = Jo(a); - const i = Math.max(c, u, s), p = Math.min(c, u, s); - if (i === null || !p === null || isNaN(i) || isNaN(p)) { - const y = "0 0% 100% / 12%"; - return console.warn(`[VuetifyInlineFields: The "color" prop value using "${n}" doesn't exist. Using the value "hsl(${y})" in it's place.`), y; - } - if (t = (i + p) / 2, l = (i + p) / 2, o = (i + p) / 2, i == p) - t = l = 0; - else { - const y = i - p; - switch (l = o > 0.5 ? y / (2 - i - p) : y / (i + p), i) { - case c: - t = (u - s) / y + (u < s ? 6 : 0); - break; - case u: - t = (s - c) / y + 2; - break; - case s: - t = (c - u) / y + 4; - } - t /= 6; + }), Un({}, y, g, m); +} }), xi = ct({ __name: "BooleanIcons", props: Ye({ iconFalseColor: {}, iconFalseTitle: {}, iconTrueColor: {}, iconTrueTitle: {}, iconFalse: {}, iconTrue: {} }, { modelValue: {}, modelModifiers: {} }), emits: ["update:modelValue"], setup(e) { + const n = e, t = Ie(Symbol.for("vuetify:icons")), l = Qe({ ...n }); + ze(() => { + Object.assign(l, { ...n }); + }); + const o = _t(e, "modelValue"), i = v(() => it({ icon: l.iconFalse, iconOptions: t, name: "false" })), c = v(() => it({ icon: l.iconTrue, iconOptions: t, name: "true" })); + return (s, u) => o.value ? (Z(), Me(r(Ve), { key: 0, class: "v-inline-fields--boolean-icons fa-fw", color: s.iconTrueColor, icon: r(c), size: "x-small", title: s.iconTrueTitle }, null, 8, ["color", "icon", "title"])) : (Z(), Me(r(Ve), { key: 1, class: "v-inline-fields--boolean-icons fa-fw", color: s.iconFalseColor, icon: r(i), size: "x-small", title: s.iconFalseTitle }, null, 8, ["color", "icon", "title"])); +} }), Ps = { class: "v-selection-control__wrapper" }, $s = ct({ __name: "VInlineCheckbox", props: Ye(Rt({ density: {}, falseIcon: {}, trueIcon: {}, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, falseValue: { type: [Boolean, String] }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, iconFalse: {}, iconFalseColor: {}, iconFalseTitle: {}, iconTrue: {}, iconTrueColor: {}, iconTrueTitle: {}, icons: { type: Boolean }, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, trueValue: { type: [Boolean, String] }, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...Ti }), { modelValue: {}, modelModifiers: {} }), emits: Ye([...Zt], ["update:modelValue"]), setup(e, { emit: n }) { + const t = _t(e, "modelValue"), l = gt(), o = At(), i = n, c = Ie(Tt, {}), s = Ie(Symbol.for("vuetify:icons")), u = Nl(), a = e, p = Qe({ ...l, ...a, ...c }); + ze(() => { + Object.assign(p, { ...l, ...a, ...c }); + }); + const f = v(() => a.disabled), y = v(() => a.loading), g = v(() => p.underlineColor), b = W(!1), m = W(!1), h = W(null), I = v(() => bn(p)), F = v(() => ({ ...Gt, ...a.cardProps })); + Y(() => y.value, (z, D) => { + !z && D && m.value && j(); + }); + const V = v(() => it({ icon: a.trueIcon, iconOptions: s, name: "checkboxFalse" })), N = v(() => it({ icon: a.iconTrue, iconOptions: s, name: "checkboxTrue" })), w = v(() => t.value == p.trueValue), L = v(() => ca({ modelValue: t, trueValue: p.trueValue })), M = v(() => Ut({ cell: p.cell && !m.value, density: p.density, disabled: f.value, field: "v-checkbox", loading: y.value, loadingWait: p.loadingWait, tableField: p.tableField })), E = v(() => qt({ cell: p.cell, cellUnderlineFullWidth: p.cellUnderlineFullWidth, density: p.density, field: "v-checkbox" })), S = ua({ density: p.density }), k = v(() => Ht({ active: m.value, name: "checkbox" })), C = v(() => jl("checkbox", p.valueColor, { error: b })), _ = v(() => Kt({ name: "checkbox", showField: m.value })), P = v(() => ({})), G = v(() => Gl({ color: p.color, error: b, theme: u, underlineColor: g.value, underlineStyle: p.underlineStyle, underlineWidth: p.underlineWidth, underlined: p.underlined })), $ = v(() => T.value); + function O() { + b.value = !1, j(); } - return t = Math.round(360 * t), l = Math.round(100 * l), o = Math.round(100 * o), `${t} ${l}% ${o}% / ${a}%`; -} -const bs = (e, n) => { - if (function(l) { - return l === "transparent" || l === "none" || l === "inherit" || l === "currentColor" || l === "initial" || l === "unset"; - }(e)) - return e; - if (function(l) { - return l.includes("--v-theme"); - }(e)) - return `rgb(var(${e}))`; - const t = function(l, o) { - const a = o.global.current.value.colors; - return Object.entries(a).find(([c]) => c === l); - }(e, n); - return t ? `hsl(${Zo(t[1])})` : `hsl(${Zo(e)})`; -}, ao = (e) => { - const { underlineStyle: n, underlineWidth: t, color: l, error: o, theme: a, underlined: c } = e; - let { underlineColor: u } = e; - u = u || l; - const s = { "border-bottom-color": bs(u, a), "border-bottom-style": n, "border-bottom-width": t }; - return r(o) && (s["border-bottom-color"] = "rgb(var(--v-theme-danger))"), c || (s["border-bottom"] = "none"), s; -}, Vt = (e) => { - const { cardMinWidth: n, cardOffsetX: t, cardOffsetY: l, cardWidth: o, field: a, name: c = "" } = e, u = ((p) => { - const { cardOffsetX: y, cardOffsetY: f, field: m } = p; - if (!m) - return { bottom: 0, height: 0, left: 0, right: 0, top: 0, width: 0, x: 0, y: 0 }; - const { x: h, y: b } = m.getBoundingClientRect(), { width: g, height: I } = m.getBoundingClientRect(), { right: k, bottom: F } = m.getBoundingClientRect(); - return { bottom: mn({ str: F + Number(f) }), height: I, left: mn({ str: 0 + Number(y) }), right: mn({ str: k + Number(y) }), top: mn({ str: 2 + Number(f) }), width: mn({ str: g }), x: h, y: b }; - })({ cardOffsetX: t, cardOffsetY: l, field: a }); - let s = n, i = o; - return i || (i = c === "checkbox" ? "fit-content" : u.width), s || (s = c === "checkbox" ? "fit-content" : u.width), { left: u.left, top: u.top, width: i, zIndex: 10 }; -}, pn = ["error", "update", "update:closeSiblingFields", "update:model-value"], Cs = ["cancelButtonColor", "cancelButtonSize", "cancelButtonTitle", "cancelButtonVariant", "cancelIcon", "cancelIconColor", "closeSiblings", "displayAppendIcon", "displayAppendIconColor", "displayAppendIconSize", "displayAppendInnerIcon", "displayAppendInnerIconColor", "displayAppendInnerIconSize", "displayPrependIcon", "displayPrependIconColor", "displayPrependIconSize", "displayPrependInnerIcon", "displayPrependInnerIconColor", "displayPrependInnerIconSize", "emptyText", "fieldOnly", "hideSaveIcon", "item", "loadingIcon", "loadingIconColor", "loadingWait", "saveButtonColor", "saveButtonSize", "saveButtonTitle", "saveButtonVariant", "saveIcon", "saveIconColor", "tableField", "truncateLength", "truncateSuffix", "underlineColor", "underlineStyle", "underlineWidth", "underlined", "valueColor"], zn = (e) => { - let n = e; - return n = Object.entries(n).filter(([t]) => !Cs.includes(t)), Object.fromEntries(n); -}, Is = { class: "v-selection-control__wrapper" }, Ss = rt({ __name: "VInlineCheckbox", props: Qe(Yt({ density: {}, falseIcon: {}, trueIcon: {}, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, falseValue: { type: [Boolean, String] }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, iconFalse: {}, iconFalseColor: {}, iconFalseTitle: {}, iconTrue: {}, iconTrueColor: {}, iconTrueTitle: {}, icons: { type: Boolean }, item: {}, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, trueValue: { type: [Boolean, String] }, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...wi }), { modelValue: {} }), emits: Qe([...pn], ["update:modelValue"]), setup(e, { emit: n }) { - const t = $t(e, "modelValue"), l = Ot(), o = Et(), a = n, c = me(Wt, {}), u = me(Symbol.for("vuetify:icons")), s = Wl(), i = e; - let p = lt({ ...l, ...i, ...c }); - const { cancelButtonColor: y, cancelButtonSize: f, cancelButtonTitle: m, cancelButtonVariant: h, cancelIcon: b, cancelIconColor: g, cardField: I, closeSiblings: k, color: F, fieldOnly: U, hideCancelIcon: $, hideDetails: z, loadingIcon: L, loadingIconColor: E, saveButtonColor: B, saveButtonSize: _, saveButtonTitle: C, saveButtonVariant: O, saveIcon: w, saveIconColor: M } = Bt(p), V = v(() => i.disabled), A = v(() => i.loading), P = D(!1), S = D(!1), x = D(null), W = v(() => zn(p)), R = v(() => ({ ...Jt, ...i.cardProps })); - J(() => A.value, (le, K) => { - !le && K && S.value && Ve(); + const T = W(), B = W(null), A = W("body"), U = $i(); + function j() { + var D, x; + if (f.value || p.loadingWait && y.value) + return; + T.value = xt({ cardMinWidth: (D = p.cardProps) == null ? void 0 : D.minWidth, cardOffsetX: p.cardOffsetX, cardOffsetY: p.cardOffsetY, cardWidth: (x = p.cardProps) == null ? void 0 : x.width, field: B.value, name: "checkbox" }); + const z = Qt({ attrs: l, closeSiblings: p.closeSiblings, fieldOnly: p.fieldOnly, props: a, showField: m, timeOpened: h.value }); + m.value = z.showField, h.value = z.timeOpened, q !== null && p.closeSiblings && m.value && !p.fieldOnly && q.emit(z.timeOpened); + } + function X(z) { + t.value = z, i("update", z), p.loadingWait || j(); + } + let q, J; + function R(z) { + i("update:closeSiblingFields", h), m.value && h.value !== z && j(); + } + return Y(() => U, () => { + var z, D; + T.value = xt({ cardMinWidth: (z = p.cardProps) == null ? void 0 : z.minWidth, cardOffsetX: p.cardOffsetX, cardOffsetY: p.cardOffsetY, cardWidth: (D = p.cardProps) == null ? void 0 : D.width, field: B.value, name: "checkbox" }); + }, { deep: !0 }), p.closeSiblings && import("@vueuse/core").then(({ useEventBus: z }) => { + q = z(jt), J = q.on(R); + }), Nt(() => { + J !== void 0 && q.off(R); + }), (z, D) => (Z(), fe("div", { ref_key: "inlineFieldsContainer", ref: B, class: le(r(M)), style: We(r(P)) }, [!r(m) && !r(p).fieldOnly || r(p).cardField ? (Z(), fe("div", { key: 0, class: le(r(E)), onClick: D[2] || (D[2] = (x) => r(p).cell ? j() : void 0) }, [je("div", { class: le(r(S)), onClick: D[1] || (D[1] = (x) => r(p).cell ? void 0 : j()) }, [je("div", Ps, [r(p).icons ? (Z(), fe("div", { key: 0, class: le(["v-inline-fields--boolean-icons-container", r(C)]), style: We(r(G)) }, [d(xi, { modelValue: r(L), "onUpdate:modelValue": D[0] || (D[0] = (x) => Mt(L) ? L.value = x : null), "icon-false": r(p).iconFalse, "icon-false-color": r(p).iconFalseColor, "icon-false-title": r(p).iconFalseTitle, "icon-true": r(p).iconTrue, "icon-true-color": r(p).iconTrueColor, "icon-true-title": r(p).iconTrueTitle }, null, 8, ["modelValue", "icon-false", "icon-false-color", "icon-false-title", "icon-true", "icon-true-color", "icon-true-title"])], 6)) : (Z(), fe("div", { key: 1, class: le(["d-inline-flex align-center justify-center", r(C)]), style: We(r(G)) }, Wl(r(w)), 7))])], 2)], 2)) : Fe("", !0), r(m) || r(p).fieldOnly || r(p).cardField ? (Z(), fe("div", { key: 1, class: le(r(k)) }, [(Z(), Me(Vt, { disabled: !r(p).cardField, to: r(A) }, [d(Ar, ee(r(I), { color: r(p).color, density: r(p).density, disabled: r(y) || r(f), error: r(b), "false-icon": r(V), "false-value": r(p).falseValue, "hide-details": r(p).hideDetails, label: r(p).label, "model-value": r(L), "true-icon": r(N), "true-value": r(p).trueValue, "onUpdate:modelValue": X }), rt({ _: 2 }, [st(r(o), (x, K) => ({ name: K, fn: Ce((te) => [Ue(z.$slots, K, $e(Re({ ...te })))]) })), r(o).append ? void 0 : { name: "append", fn: Ce(() => [d(Jt, { "cancel-button-color": r(p).cancelButtonColor, "cancel-button-size": r(p).cancelButtonSize, "cancel-button-title": r(p).cancelButtonTitle, "cancel-button-variant": r(p).cancelButtonVariant, "cancel-icon": r(p).cancelIcon, "cancel-icon-color": r(p).cancelIconColor, error: r(b), "field-only": r(p).fieldOnly, "hide-cancel-icon": r(p).hideCancelIcon, "hide-save-icon": !0, loading: r(y), "loading-icon": r(p).loadingIcon, "loading-icon-color": r(p).loadingIconColor, "save-button-color": r(p).saveButtonColor, "save-button-size": r(p).saveButtonSize, "save-button-title": r(p).saveButtonTitle, "save-button-variant": r(p).saveButtonVariant, "save-icon": r(p).saveIcon, "save-icon-color": r(p).saveIconColor, onClose: O, onSave: X }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["color", "density", "disabled", "error", "false-icon", "false-value", "hide-details", "label", "model-value", "true-icon", "true-value"])], 8, ["disabled", "to"]))], 2)) : Fe("", !0), r(p).cardField ? (Z(), fe("div", { key: 2, class: le(r(_)), style: We(r($)) }, [d(en, $e(Re(r(F))), { default: Ce(() => [d($t, null, { default: Ce(() => [je("div", { ref_key: "cardFieldRef", ref: A }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : Fe("", !0)], 6)); +} }), Ts = ct({ __name: "VInlineCustomField", props: Ye(Rt({ clearIcon: {}, density: {}, rules: {}, variant: {}, autofocus: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, truncateLength: {}, truncateSuffix: {}, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...sa }), { modelValue: {}, modelModifiers: {} }), emits: Ye([...Zt], ["update:modelValue"]), setup(e, { emit: n }) { + const t = _t(e, "modelValue"), l = gt(), o = At(), i = n, c = Ie(Tt, {}), s = Ie(Symbol.for("vuetify:icons")), u = e, a = Qe({ ...l, ...u, ...c }); + ze(() => { + Object.assign(a, { ...l, ...u, ...c }); + }); + const { cancelButtonColor: p, cancelButtonSize: f, cancelButtonTitle: y, cancelButtonVariant: g, cancelIcon: b, cancelIconColor: m, cardField: h, closeSiblings: I, fieldOnly: F, hideCancelIcon: V, hideSaveIcon: N, loadingIcon: w, loadingIconColor: L, saveButtonColor: M, saveButtonSize: E, saveButtonTitle: S, saveButtonVariant: k, saveIcon: C, saveIconColor: _ } = Ft(a), P = v(() => u.disabled), G = v(() => u.loading), $ = W(!1), O = W(!1), T = W(!1), B = W(null); + let A = t.value; + Y(() => G.value, (ie, ye) => { + !ie && ye && T.value && he(); }); - const Y = v(() => ot({ icon: i.trueIcon, iconOptions: u, name: "checkboxFalse" })), q = v(() => ot({ icon: i.iconTrue, iconOptions: u, name: "checkboxTrue" })), T = v(() => t.value == p.trueValue), N = v(() => mi({ modelValue: t, trueValue: p.trueValue })), j = v(() => Zt({ cell: p.cell && !S.value, density: p.density, disabled: V.value, field: "v-checkbox", loading: A.value, loadingWait: p.loadingWait, tableField: p.tableField })), G = v(() => Qt({ cell: p.cell, cellUnderlineFullWidth: p.cellUnderlineFullWidth, density: p.density, field: "v-checkbox" })), X = ia({ density: p.density }), te = v(() => en({ active: S.value, name: "checkbox" })), pe = v(() => Rl("checkbox", p.valueColor, { error: P })), ge = v(() => tn({ name: "checkbox", showField: S.value })), he = v(() => ({})), ze = v(() => ao({ color: p.color, error: P, theme: s, underlineColor: p.underlineColor, underlineStyle: p.underlineStyle, underlineWidth: p.underlineWidth, underlined: p.underlined })), Ae = v(() => Be.value); - function ke() { - P.value = !1, Ve(); - } - const Be = D(), Oe = D(null), we = D("body"), Ee = ki(); - function Ve() { - var K, Ie; - if (V.value || p.loadingWait && A.value) + const U = v(() => t.value ? ($.value = !1, a.truncateLength ? lo({ length: a.truncateLength, suffix: a.truncateSuffix, text: t.value }) : t.value) : ($.value = !0, a.emptyText)), j = v(() => ({ ...a, loading: G.value, modelValue: t.value, originalValue: A })), X = v(() => ({ color: a.color, displayAppendIcon: u.displayAppendIcon, displayAppendIconColor: u.displayAppendIconColor, displayAppendIconSize: u.displayAppendIconSize, displayAppendInnerIcon: u.displayAppendInnerIcon, displayAppendInnerIconColor: u.displayAppendInnerIconColor, displayAppendInnerIconSize: u.displayAppendInnerIconSize, displayPrependIcon: u.displayPrependIcon, displayPrependIconColor: u.displayPrependIconColor, displayPrependIconSize: u.displayPrependIconSize, displayPrependInnerIcon: u.displayPrependInnerIcon, displayPrependInnerIconColor: u.displayPrependInnerIconColor, displayPrependInnerIconSize: u.displayPrependInnerIconSize, displayValue: U.value, empty: $.value, error: O.value, field: "v-text-field", underlineColor: a.underlineColor, underlineStyle: a.underlineStyle, underlineWidth: a.underlineWidth, underlined: a.underlined, valueColor: a.valueColor })), q = v(() => ({ ...Gt, ...u.cardProps })), J = v(() => Ut({ cell: a.cell && !T.value, density: a.density, disabled: P.value, field: "v-text-field", iconSet: s == null ? void 0 : s.defaultSet, loading: G.value, loadingWait: a.loadingWait, tableField: a.tableField, variant: a.variant })), R = v(() => qt({ cell: a.cell, cellUnderlineFullWidth: a.cellUnderlineFullWidth, density: a.density, field: "v-text-field" })), z = Pn({ density: a.density, variant: a.variant }), D = v(() => Ht({ active: T.value, name: "text-field" })), x = v(() => Kt({ name: "custom-field", showField: T.value })), K = v(() => ({})), te = v(() => Q.value); + function re() { + O.value = !1, t.value = A, he(); + } + const Q = W(), pe = W(null), de = W("body"); + function he() { + var ye, Oe; + if (P.value || a.loadingWait && G.value) return; - Be.value = Vt({ cardMinWidth: (K = p.cardProps) == null ? void 0 : K.minWidth, cardOffsetX: p.cardOffsetX, cardOffsetY: p.cardOffsetY, cardWidth: (Ie = p.cardProps) == null ? void 0 : Ie.width, field: Oe.value, name: "checkbox" }); - const le = dn({ attrs: l, closeSiblings: k.value, fieldOnly: p.fieldOnly, props: i, showField: S, timeOpened: x.value }); - p = { ...p, ...le.settings }, S.value = le.showField, x.value = le.timeOpened, ne !== null && k.value && S.value && !p.fieldOnly && ne.emit(le.timeOpened); - } - function ve(le) { - t.value = le, a("update", le), p.loadingWait || Ve(); - } - let ne, fe; - function Le(le) { - a("update:closeSiblingFields", x), S.value && x.value !== le && Ve(); - } - return J(() => Ee, () => { - var le, K; - Be.value = Vt({ cardMinWidth: (le = p.cardProps) == null ? void 0 : le.minWidth, cardOffsetX: p.cardOffsetX, cardOffsetY: p.cardOffsetY, cardWidth: (K = p.cardProps) == null ? void 0 : K.width, field: Oe.value, name: "checkbox" }); - }, { deep: !0 }), k.value && import("@vueuse/core").then(({ useEventBus: le }) => { - ne = le(Kt), fe = ne.on(Le); - }), Xt(() => { - fe !== void 0 && ne.off(Le); - }), (le, K) => (Z(), ce("div", { ref_key: "inlineFieldsContainer", ref: Oe, class: oe(r(j)), style: Te(r(he)) }, [!r(S) && !r(U) || r(I) ? (Z(), ce("div", { key: 0, class: oe(r(G)), onClick: K[2] || (K[2] = (Ie) => r(p).cell ? Ve() : void 0) }, [Ge("div", { class: oe(r(X)), onClick: K[1] || (K[1] = (Ie) => r(p).cell ? void 0 : Ve()) }, [Ge("div", Is, [le.icons ? (Z(), ce("div", { key: 0, class: oe(["v-inline-fields--boolean-icons-container", r(pe)]), style: Te(r(ze)) }, [d(yi, { modelValue: r(N), "onUpdate:modelValue": K[0] || (K[0] = (Ie) => _t(N) ? N.value = Ie : null), "icon-false": le.iconFalse, "icon-false-color": le.iconFalseColor, "icon-false-title": le.iconFalseTitle, "icon-true": le.iconTrue, "icon-true-color": le.iconTrueColor, "icon-true-title": le.iconTrueTitle }, null, 8, ["modelValue", "icon-false", "icon-false-color", "icon-false-title", "icon-true", "icon-true-color", "icon-true-title"])], 6)) : (Z(), ce("div", { key: 1, class: oe(["d-inline-flex align-center justify-center", r(pe)]), style: Te(r(ze)) }, Ll(r(T)), 7))])], 2)], 2)) : xe("", !0), r(S) || r(U) || r(I) ? (Z(), ce("div", { key: 1, class: oe(r(te)) }, [(Z(), De(Pt, { disabled: !r(I), to: r(we) }, [d(yr, Q(r(W), { color: r(F), density: r(p).density, disabled: r(A) || r(V), error: r(P), "false-icon": r(Y), "false-value": r(p).falseValue, "hide-details": r(z), label: r(p).label, "model-value": r(N), "true-icon": r(q), "true-value": r(p).trueValue, "onUpdate:modelValue": ve }), pt({ _: 2 }, [vt(r(o), (Ie, ue) => ({ name: ue, fn: be((_e) => [Ye(le.$slots, ue, Pe(Re({ ..._e })))]) })), r(o).append ? void 0 : { name: "append", fn: be(() => [d(un, { "cancel-button-color": r(y), "cancel-button-size": r(f), "cancel-button-title": r(m), "cancel-button-variant": r(h), "cancel-icon": r(b), "cancel-icon-color": r(g), error: r(P), "field-only": r(U), "hide-cancel-icon": r($), "hide-save-icon": !0, loading: r(A), "loading-icon": r(L), "loading-icon-color": r(E), "save-button-color": r(B), "save-button-size": r(_), "save-button-title": r(C), "save-button-variant": r(O), "save-icon": r(w), "save-icon-color": r(M), onClose: ke, onSave: ve }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["color", "density", "disabled", "error", "false-icon", "false-value", "hide-details", "label", "model-value", "true-icon", "true-value"])], 8, ["disabled", "to"]))], 2)) : xe("", !0), r(I) ? (Z(), ce("div", { key: 2, class: oe(r(ge)), style: Te(r(Ae)) }, [d(cn, Pe(Re(r(R))), { default: be(() => [d(Lt, null, { default: be(() => [Ge("div", { ref_key: "cardFieldRef", ref: we }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : xe("", !0)], 6)); -} }), dl = rt({ __name: "DisplayedValue", props: { color: {}, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayValue: {}, empty: { type: Boolean }, error: { type: Boolean }, field: {}, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, emits: ["toggleField"], setup(e, { emit: n }) { - const t = n, l = e, o = Et(), a = Wl(), c = { displayValue: l.displayValue, empty: l.empty, error: l.error }, u = v(() => Rl(l.field, l.valueColor, { empty: l.empty, error: l.error })), s = v(() => ao({ color: l.color, error: l.error, theme: a, underlineColor: l.underlineColor, underlineStyle: l.underlineStyle, underlineWidth: l.underlineWidth, underlined: l.underlined })), i = v(() => ((f) => { - const { underlineWidth: m } = f; - return { borderBottom: `${m || "0px"} solid transparent` }; - })({ underlineWidth: l.underlineWidth })), p = (f, m = !1) => ((h) => { - const { inner: b = !1, position: g } = h; - return { [`${re}--display-icon`]: !b, [`${re}--display-${g}-icon`]: !b, [`${re}--display-${g}-inner-icon`]: b, "me-1": g === "prepend", "ms-1": g === "append" }; - })({ inner: m, position: f }); - function y() { - t("toggleField"); - } - return (f, m) => (Z(), ce("div", { class: "v-inline-fields--display-wrapper", onClick: y }, [f.displayPrependIcon || r(o)["display.prepend"] ? (Z(), ce("div", { key: 0, class: oe(p("prepend")), style: Te(r(i)) }, [r(o)["display.prepend"] ? Ye(f.$slots, "display.prepend", Pe(Q({ key: 0 }, c))) : (Z(), De(Se, { key: 1, color: f.displayPrependIconColor, icon: f.displayPrependIcon, size: "x-small" }, null, 8, ["color", "icon"]))], 6)) : xe("", !0), Ge("div", { class: oe(["d-inline-flex", r(u)]), style: Te(r(s)) }, [f.displayPrependInnerIcon || r(o)["display.prependInner"] ? (Z(), ce("div", { key: 0, class: oe(p("prepend", !0)) }, [r(o)["display.prependInner"] ? Ye(f.$slots, "display.prependInner", Pe(Q({ key: 0 }, c))) : (Z(), De(Se, { key: 1, color: f.displayPrependInnerIconColor, icon: f.displayPrependInnerIcon, size: "x-small" }, null, 8, ["color", "icon"]))], 2)) : xe("", !0), la(" " + Ll(f.displayValue) + " ", 1), f.displayAppendInnerIcon || r(o)["display.appendInner"] ? (Z(), ce("div", { key: 1, class: oe(p("append", !0)) }, [r(o)["display.appendInner"] ? Ye(f.$slots, "display.appendInner", Pe(Q({ key: 0 }, c))) : (Z(), De(Se, { key: 1, color: f.displayAppendInnerIconColor, icon: f.displayAppendInnerIcon, size: "x-small" }, null, 8, ["color", "icon"]))], 2)) : xe("", !0)], 6), f.displayAppendIcon || r(o)["display.append"] ? (Z(), ce("div", { key: 1, class: oe(p("append")), style: Te(r(i)) }, [r(o)["display.append"] ? Ye(f.$slots, "display.append", Pe(Q({ key: 0 }, c))) : (Z(), De(Se, { key: 1, color: f.displayAppendIconColor, icon: f.displayAppendIcon, size: "x-small" }, null, 8, ["color", "icon"]))], 6)) : xe("", !0)])); -} }), Bs = rt({ __name: "VInlineCustomField", props: Qe(Yt({ clearIcon: {}, density: {}, rules: {}, variant: {}, autofocus: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, item: {}, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, truncateLength: {}, truncateSuffix: {}, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...aa }), { modelValue: {} }), emits: Qe([...pn], ["update:modelValue"]), setup(e, { emit: n }) { - const t = $t(e, "modelValue"), l = Ot(), o = Et(), a = n, c = me(Wt, {}), u = me(Symbol.for("vuetify:icons")), s = e; - let i = lt({ ...l, ...s, ...c }); - const { cancelButtonColor: p, cancelButtonSize: y, cancelButtonTitle: f, cancelButtonVariant: m, cancelIcon: h, cancelIconColor: b, cardField: g, closeSiblings: I, fieldOnly: k, hideCancelIcon: F, hideSaveIcon: U, loadingIcon: $, loadingIconColor: z, saveButtonColor: L, saveButtonSize: E, saveButtonTitle: B, saveButtonVariant: _, saveIcon: C, saveIconColor: O } = Bt(i), w = v(() => s.disabled), M = v(() => s.loading), V = D(!1), A = D(!1), P = D(!1), S = D(null); - let x = t.value; - J(() => M.value, (ne, fe) => { - !ne && fe && P.value && ke(); + Q.value = xt({ cardMinWidth: (ye = a.cardProps) == null ? void 0 : ye.minWidth, cardOffsetX: a.cardOffsetX, cardOffsetY: a.cardOffsetY, cardWidth: (Oe = a.cardProps) == null ? void 0 : Oe.width, field: pe.value }); + const ie = Qt({ attrs: l, closeSiblings: I.value, fieldOnly: a.fieldOnly, props: u, showField: T, timeOpened: B.value }); + T.value = ie.showField, B.value = ie.timeOpened, Pe !== null && I.value && T.value && !a.fieldOnly && Pe.emit(ie.timeOpened); + } + const ae = W(); + function Be() { + const ie = Nn({ required: a.required, rules: a.rules, value: t }); + return O.value = ie.errors, ae.value = ie.results, ie.results; + } + function xe() { + O.value ? O.value = !0 : (A = t.value, i("update", t.value), a.loadingWait || he()); + } + let Pe, Ee; + function be(ie) { + i("update:closeSiblingFields", B), T.value && B.value !== ie && re(); + } + return Y(() => T.value, () => { + T.value && Be(); + }), Y(() => t.value, () => { + T.value && Be(); + }), I.value && import("@vueuse/core").then(({ useEventBus: ie }) => { + Pe = ie(jt), Ee = Pe.on(be); + }), Nt(() => { + Ee !== void 0 && Pe.off(be); + }), (ie, ye) => (Z(), fe("div", { ref_key: "inlineFieldsContainer", ref: pe, class: le(r(J)), style: We(r(K)) }, [!r(T) && !r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 0, class: le(r(R)) }, [je("div", { class: le(r(z)) }, [d(Dn, ee(r(X), { onToggleField: he }), rt({ _: 2 }, [st(r(o), (Oe, _e) => ({ name: _e, fn: Ce((se) => [Ue(ie.$slots, _e, $e(Re({ ...se })))]) }))]), 1040)], 2)], 2)) : Fe("", !0), r(T) || r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 1, class: le(["d-flex align-center py-2", r(D)]) }, [(Z(), Me(Vt, { disabled: !r(h), to: r(de) }, [Ue(ie.$slots, "default", $e(Re(r(j)))), d(Jt, { "cancel-button-color": r(p), "cancel-button-size": r(f), "cancel-button-title": r(y), "cancel-button-variant": r(g), "cancel-icon": r(b), "cancel-icon-color": r(m), error: r(O), "field-only": r(F), "hide-cancel-icon": r(V), "hide-save-icon": r(N), loading: r(G), "loading-icon": r(w), "loading-icon-color": r(L), "save-button-color": r(M), "save-button-size": r(E), "save-button-title": r(S), "save-button-variant": r(k), "save-icon": r(C), "save-icon-color": r(_), onClose: re, onSave: xe }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "hide-save-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])], 8, ["disabled", "to"]))], 2)) : Fe("", !0), r(h) ? (Z(), fe("div", { key: 2, class: le(r(x)), style: We(r(te)) }, [d(en, $e(Re(r(q))), { default: Ce(() => [d($t, null, { default: Ce(() => [je("div", { ref_key: "cardFieldRef", ref: de }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : Fe("", !0)], 6)); +} }), Es = Bi(ct({ __name: "VInlineSelect", props: Ye(Rt({ clearIcon: {}, clearable: {}, density: {}, hideSelected: {}, itemTitle: {}, itemValue: {}, items: {}, menu: {}, rules: {}, variant: {}, autofocus: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...Ei }), { modelValue: {}, modelModifiers: {} }), emits: Ye([...Zt], ["update:modelValue"]), setup(e, { emit: n }) { + const t = _t(e, "modelValue"), l = gt(), o = At(), i = n, c = Ie(Tt, {}), s = Ie(Symbol.for("vuetify:icons")), u = e, a = Qe({ ...l, ...u, ...c }); + ze(() => { + Object.assign(a, { ...l, ...u, ...c }); }); - const W = v(() => t.value ? (V.value = !1, i.truncateLength ? oo({ length: i.truncateLength, suffix: i.truncateSuffix, text: t.value }) : t.value) : (V.value = !0, i.emptyText)), R = v(() => ({ ...i, loading: M.value, modelValue: t.value, originalValue: x })), Y = v(() => ({ color: i.color, displayAppendIcon: s.displayAppendIcon, displayAppendIconColor: s.displayAppendIconColor, displayAppendIconSize: s.displayAppendIconSize, displayAppendInnerIcon: s.displayAppendInnerIcon, displayAppendInnerIconColor: s.displayAppendInnerIconColor, displayAppendInnerIconSize: s.displayAppendInnerIconSize, displayPrependIcon: s.displayPrependIcon, displayPrependIconColor: s.displayPrependIconColor, displayPrependIconSize: s.displayPrependIconSize, displayPrependInnerIcon: s.displayPrependInnerIcon, displayPrependInnerIconColor: s.displayPrependInnerIconColor, displayPrependInnerIconSize: s.displayPrependInnerIconSize, displayValue: W.value, empty: V.value, error: A.value, field: "v-text-field", underlineColor: i.underlineColor, underlineStyle: i.underlineStyle, underlineWidth: i.underlineWidth, underlined: i.underlined, valueColor: i.valueColor })), q = v(() => ({ ...Jt, ...s.cardProps })), T = v(() => Zt({ cell: i.cell && !P.value, density: i.density, disabled: w.value, field: "v-text-field", iconSet: u == null ? void 0 : u.defaultSet, loading: M.value, loadingWait: i.loadingWait, tableField: i.tableField, variant: i.variant })), N = v(() => Qt({ cell: i.cell, cellUnderlineFullWidth: i.cellUnderlineFullWidth, density: i.density, field: "v-text-field" })), j = al({ density: i.density, variant: i.variant }), G = v(() => en({ active: P.value, name: "text-field" })), X = v(() => tn({ name: "custom-field", showField: P.value })), te = v(() => ({})), pe = v(() => he.value); - function ge() { - A.value = !1, t.value = x, ke(); - } - const he = D(), ze = D(null), Ae = D("body"); - function ke() { - var fe, Le; - if (w.value || i.loadingWait && M.value) + const { cancelButtonColor: p, cancelButtonSize: f, cancelButtonTitle: y, cancelButtonVariant: g, cancelIcon: b, cancelIconColor: m, cardField: h, closeSiblings: I, color: F, fieldOnly: V, hideCancelIcon: N, hideDetails: w, hideSaveIcon: L, loadingIcon: M, loadingIconColor: E, saveButtonColor: S, saveButtonSize: k, saveButtonTitle: C, saveButtonVariant: _, saveIcon: P, saveIconColor: G, valueColor: $ } = Ft(a), O = v(() => u.disabled), T = v(() => u.loading), B = W(!1), A = W(!1), U = W(), j = W(!1), X = W(null); + let q = t.value; + Y(() => T.value, (ne, ke) => { + !ne && ke && j.value && Ee(); + }); + const J = v(() => it({ icon: u.clearIcon, iconOptions: s, name: "clear" })), R = v(() => t.value && t.value[a.itemTitle] ? (B.value = !1, t.value[a.itemTitle]) : t.value ? t.value : (B.value = !0, a.emptyText)), z = v(() => bn(a)), D = v(() => ({ color: a.color, displayAppendIcon: a.displayAppendIcon, displayAppendIconColor: a.displayAppendIconColor, displayAppendIconSize: a.displayAppendIconSize, displayAppendInnerIcon: a.displayAppendInnerIcon, displayAppendInnerIconColor: a.displayAppendInnerIconColor, displayAppendInnerIconSize: a.displayAppendInnerIconSize, displayPrependIcon: a.displayPrependIcon, displayPrependIconColor: a.displayPrependIconColor, displayPrependIconSize: a.displayPrependIconSize, displayPrependInnerIcon: a.displayPrependInnerIcon, displayPrependInnerIconColor: a.displayPrependInnerIconColor, displayPrependInnerIconSize: a.displayPrependInnerIconSize, displayValue: R.value, empty: B.value, error: A.value, field: "v-text-field", underlineColor: a.underlineColor, underlineStyle: a.underlineStyle, underlineWidth: a.underlineWidth, underlined: a.underlined, valueColor: $.value })), x = v(() => ({ ...Gt, ...u.cardProps })); + ze(() => { + U.value = a.items || []; + }); + const K = v(() => Ut({ cell: a.cell && !j.value, density: a.density, disabled: O.value, field: "v-select", iconSet: s == null ? void 0 : s.defaultSet, loading: T.value, loadingWait: a.loadingWait, tableField: a.tableField, variant: a.variant })), te = v(() => qt({ cell: a.cell, cellUnderlineFullWidth: a.cellUnderlineFullWidth, density: a.density, field: "v-select" })), re = Pn({ density: a.density, variant: a.variant }), Q = v(() => Ht({ active: j.value, name: "select" })), pe = v(() => Kt({ name: "select", showField: j.value })), de = v(() => ({})), he = v(() => Be.value); + function ae() { + A.value = !1, t.value = q, Ee(); + } + const Be = W(), xe = W(null), Pe = W("body"); + function Ee() { + var ke, Le; + if (O.value || a.loadingWait && T.value) return; - he.value = Vt({ cardMinWidth: (fe = i.cardProps) == null ? void 0 : fe.minWidth, cardOffsetX: i.cardOffsetX, cardOffsetY: i.cardOffsetY, cardWidth: (Le = i.cardProps) == null ? void 0 : Le.width, field: ze.value }); - const ne = dn({ attrs: l, closeSiblings: I.value, fieldOnly: i.fieldOnly, props: s, showField: P, timeOpened: S.value }); - i = { ...i, ...ne.settings }, P.value = ne.showField, S.value = ne.timeOpened, Ee !== null && I.value && P.value && !i.fieldOnly && Ee.emit(ne.timeOpened); + Be.value = xt({ cardMinWidth: (ke = a.cardProps) == null ? void 0 : ke.minWidth, cardOffsetX: a.cardOffsetX, cardOffsetY: a.cardOffsetY, cardWidth: (Le = a.cardProps) == null ? void 0 : Le.width, field: xe.value }); + const ne = Qt({ attrs: l, closeSiblings: I.value, fieldOnly: a.fieldOnly, props: u, showField: j, timeOpened: X.value }); + j.value = ne.showField, X.value = ne.timeOpened, _e !== null && I.value && j.value && !a.fieldOnly && _e.emit(ne.timeOpened); } - const Be = D(); - function Oe() { - const ne = cl({ required: i.required, rules: i.rules, value: t }); - return A.value = ne.errors, Be.value = ne.results, ne.results; + const be = W(), ie = v(() => be.value); + function ye() { + const ne = Nn({ required: a.required, rules: a.rules, value: t }); + return A.value = ne.errors, be.value = ne.results, ne.results; } - function we() { - A.value ? A.value = !0 : (x = t.value, a("update", t.value), i.loadingWait || ke()); + function Oe() { + q = t.value, i("update", t.value), a.loadingWait || Ee(); } - let Ee, Ve; - function ve(ne) { - a("update:closeSiblingFields", S), P.value && S.value !== ne && ge(); + let _e, se; + function De(ne) { + i("update:closeSiblingFields", X), j.value && X.value !== ne && ae(); } - return J(() => P.value, () => { - P.value && Oe(); - }), J(() => t.value, () => { - P.value && Oe(); + return Y(() => j.value, () => { + j.value && ye(); + }), Y(() => t.value, () => { + j.value && ye(); }), I.value && import("@vueuse/core").then(({ useEventBus: ne }) => { - Ee = ne(Kt), Ve = Ee.on(ve); - }), Xt(() => { - Ve !== void 0 && Ee.off(ve); - }), (ne, fe) => (Z(), ce("div", { ref_key: "inlineFieldsContainer", ref: ze, class: oe(r(T)), style: Te(r(te)) }, [!r(P) && !r(i).fieldOnly || r(g) ? (Z(), ce("div", { key: 0, class: oe(r(N)) }, [Ge("div", { class: oe(r(j)) }, [d(dl, Q(r(Y), { onToggleField: ke }), pt({ _: 2 }, [vt(r(o), (Le, le) => ({ name: le, fn: be((K) => [Ye(ne.$slots, le, Pe(Re({ ...K })))]) }))]), 1040)], 2)], 2)) : xe("", !0), r(P) || r(i).fieldOnly || r(g) ? (Z(), ce("div", { key: 1, class: oe(["d-flex align-center py-2", r(G)]) }, [(Z(), De(Pt, { disabled: !r(g), to: r(Ae) }, [Ye(ne.$slots, "default", Pe(Re(r(R)))), d(un, { "cancel-button-color": r(p), "cancel-button-size": r(y), "cancel-button-title": r(f), "cancel-button-variant": r(m), "cancel-icon": r(h), "cancel-icon-color": r(b), error: r(A), "field-only": r(k), "hide-cancel-icon": r(F), "hide-save-icon": r(U), loading: r(M), "loading-icon": r($), "loading-icon-color": r(z), "save-button-color": r(L), "save-button-size": r(E), "save-button-title": r(B), "save-button-variant": r(_), "save-icon": r(C), "save-icon-color": r(O), onClose: ge, onSave: we }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "hide-save-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])], 8, ["disabled", "to"]))], 2)) : xe("", !0), r(g) ? (Z(), ce("div", { key: 2, class: oe(r(X)), style: Te(r(pe)) }, [d(cn, Pe(Re(r(q))), { default: be(() => [d(Lt, null, { default: be(() => [Ge("div", { ref_key: "cardFieldRef", ref: Ae }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : xe("", !0)], 6)); -} }), xs = ((e, n) => { - const t = e.__vccOpts || e; - for (const [l, o] of n) - t[l] = o; - return t; -})(rt({ __name: "VInlineSelect", props: Qe(Yt({ clearIcon: {}, clearable: {}, density: {}, hideSelected: {}, itemTitle: {}, itemValue: {}, items: {}, menu: {}, rules: {}, variant: {}, autofocus: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, item: {}, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...Fi }), { modelValue: {} }), emits: Qe([...pn], ["update:modelValue"]), setup(e, { emit: n }) { - const t = $t(e, "modelValue"), l = Ot(), o = Et(), a = n, c = me(Wt, {}), u = me(Symbol.for("vuetify:icons")), s = e; - let i = lt({ ...l, ...s, ...c }); - const { cancelButtonColor: p, cancelButtonSize: y, cancelButtonTitle: f, cancelButtonVariant: m, cancelIcon: h, cancelIconColor: b, cardField: g, closeSiblings: I, color: k, fieldOnly: F, hideCancelIcon: U, hideDetails: $, hideSaveIcon: z, loadingIcon: L, loadingIconColor: E, saveButtonColor: B, saveButtonSize: _, saveButtonTitle: C, saveButtonVariant: O, saveIcon: w, saveIconColor: M, valueColor: V } = Bt(i), A = v(() => s.disabled), P = v(() => s.loading), S = D(!1), x = D(!1), W = D(), R = D(!1), Y = D(null); - let q = t.value; - J(() => P.value, (ue, _e) => { - !ue && _e && R.value && Ve(); + _e = ne(jt), se = _e.on(De); + }), Nt(() => { + se !== void 0 && _e.off(De); + }), (ne, ke) => (Z(), fe("div", { ref_key: "inlineFieldsContainer", ref: xe, class: le(r(K)), style: We(r(de)) }, [!r(j) && !r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 0, class: le(r(te)) }, [je("div", { class: le(r(re)) }, [d(Dn, ee(r(D), { onToggleField: Ee }), rt({ _: 2 }, [st(r(o), (Le, at) => ({ name: at, fn: Ce((Et) => [Ue(ne.$slots, at, $e(Re({ ...Et })), void 0, !0)]) }))]), 1040)], 2)], 2)) : Fe("", !0), r(j) || r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 1, class: le(r(Q)) }, [(Z(), Me(Vt, { disabled: !r(h), to: r(Pe) }, [d(ys, ee(r(z), { modelValue: t.value, "onUpdate:modelValue": ke[0] || (ke[0] = (Le) => t.value = Le), autofocus: !r(a).fieldOnly || r(a).autofocus, "clear-icon": r(J), clearable: r(a).clearable, color: r(F), density: r(a).density, disabled: r(T) || r(O), error: r(A), "error-messages": r(ie), "hide-details": r(w), "hide-selected": r(a).hideSelected, "item-title": r(a).itemTitle, "item-value": r(a).itemValue, items: r(U), label: r(a).label, loading: r(T), menu: r(a).menu && !r(a).fieldOnly && r(j), variant: r(a).variant, width: "100%", onKeyup: kn(ae, ["esc"]) }), rt({ _: 2 }, [st(r(o), (Le, at) => ({ name: at, fn: Ce((Et) => [Ue(ne.$slots, at, $e(Re({ ...Et })), void 0, !0)]) })), r(o).append ? void 0 : { name: "append", fn: Ce(() => [d(Jt, { "cancel-button-color": r(p), "cancel-button-size": r(f), "cancel-button-title": r(y), "cancel-button-variant": r(g), "cancel-icon": r(b), "cancel-icon-color": r(m), error: r(A), "field-only": r(V), "hide-cancel-icon": r(N), "hide-save-icon": r(L), loading: r(T), "loading-icon": r(M), "loading-icon-color": r(E), "save-button-color": r(S), "save-button-size": r(k), "save-button-title": r(C), "save-button-variant": r(_), "save-icon": r(P), "save-icon-color": r(G), onClose: ae, onSave: Oe }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "hide-save-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["modelValue", "autofocus", "clear-icon", "clearable", "color", "density", "disabled", "error", "error-messages", "hide-details", "hide-selected", "item-title", "item-value", "items", "label", "loading", "menu", "variant"])], 8, ["disabled", "to"]))], 2)) : Fe("", !0), r(h) ? (Z(), fe("div", { key: 2, class: le(r(pe)), style: We(r(he)) }, [d(en, $e(Re(r(x))), { default: Ce(() => [d($t, null, { default: Ce(() => [je("div", { ref_key: "cardFieldRef", ref: Pe }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : Fe("", !0)], 6)); +} }), [["__scopeId", "data-v-4f65a7ea"]]), zs = { class: "v-selection-control__wrapper" }, Ds = ct({ __name: "VInlineSwitch", props: Ye(Rt({ density: {}, falseIcon: {}, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, falseValue: { type: [Boolean, String] }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, iconFalse: {}, iconFalseColor: {}, iconFalseTitle: {}, iconTrue: {}, iconTrueColor: {}, iconTrueTitle: {}, icons: { type: Boolean }, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, trueValue: { type: [Boolean, String] }, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...Di }), { modelValue: {}, modelModifiers: {} }), emits: Ye([...Zt], ["update:modelValue"]), setup(e, { emit: n }) { + const t = _t(e, "modelValue"), l = gt(), o = At(), i = n, c = Ie(Tt, {}), s = Nl(), u = e, a = Qe({ ...l, ...u, ...c }); + ze(() => { + Object.assign(a, { ...l, ...u, ...c }); }); - const T = v(() => ot({ icon: s.clearIcon, iconOptions: u, name: "clear" })), N = v(() => t.value && t.value[i.itemTitle] ? (S.value = !1, t.value[i.itemTitle]) : t.value ? t.value : (S.value = !0, i.emptyText)), j = v(() => zn(i)), G = v(() => ({ color: i.color, displayAppendIcon: s.displayAppendIcon, displayAppendIconColor: s.displayAppendIconColor, displayAppendIconSize: s.displayAppendIconSize, displayAppendInnerIcon: s.displayAppendInnerIcon, displayAppendInnerIconColor: s.displayAppendInnerIconColor, displayAppendInnerIconSize: s.displayAppendInnerIconSize, displayPrependIcon: s.displayPrependIcon, displayPrependIconColor: s.displayPrependIconColor, displayPrependIconSize: s.displayPrependIconSize, displayPrependInnerIcon: s.displayPrependInnerIcon, displayPrependInnerIconColor: s.displayPrependInnerIconColor, displayPrependInnerIconSize: s.displayPrependInnerIconSize, displayValue: N.value, empty: S.value, error: x.value, field: "v-text-field", underlineColor: i.underlineColor, underlineStyle: i.underlineStyle, underlineWidth: i.underlineWidth, underlined: i.underlined, valueColor: V.value })), X = v(() => ({ ...Jt, ...s.cardProps })); - it(() => { - W.value = i.items || []; + const { cancelButtonColor: p, cancelButtonSize: f, cancelButtonTitle: y, cancelButtonVariant: g, cancelIcon: b, cancelIconColor: m, cardField: h, closeSiblings: I, color: F, fieldOnly: V, hideCancelIcon: N, hideDetails: w, loadingIcon: L, loadingIconColor: M, saveButtonColor: E, saveButtonSize: S, saveButtonTitle: k, saveButtonVariant: C, saveIcon: _, saveIconColor: P } = Ft(a), G = v(() => u.disabled), $ = v(() => u.loading), O = W(!1), T = W(!1), B = W(null), A = v(() => bn(a)), U = v(() => ({ ...Gt, ...u.cardProps })); + Y(() => $.value, (be, ie) => { + !be && ie && T.value && ae(); }); - const te = v(() => Zt({ cell: i.cell && !R.value, density: i.density, disabled: A.value, field: "v-select", iconSet: u == null ? void 0 : u.defaultSet, loading: P.value, loadingWait: i.loadingWait, tableField: i.tableField, variant: i.variant })), pe = v(() => Qt({ cell: i.cell, cellUnderlineFullWidth: i.cellUnderlineFullWidth, density: i.density, field: "v-select" })), ge = al({ density: i.density, variant: i.variant }), he = v(() => en({ active: R.value, name: "select" })), ze = v(() => tn({ name: "select", showField: R.value })), Ae = v(() => ({})), ke = v(() => Oe.value); - function Be() { - x.value = !1, t.value = q, Ve(); - } - const Oe = D(), we = D(null), Ee = D("body"); - function Ve() { - var _e, qe; - if (A.value || i.loadingWait && P.value) + const j = v(() => t.value == a.trueValue), X = v(() => ca({ modelValue: t, trueValue: a.trueValue })), q = v(() => Ut({ cell: a.cell && !T.value, density: a.density, disabled: G.value, field: "v-switch", loading: $.value, loadingWait: a.loadingWait, tableField: a.tableField })), J = v(() => qt({ cell: a.cell, cellUnderlineFullWidth: a.cellUnderlineFullWidth, density: a.density, field: "v-switch" })), R = ua({ density: a.density }), z = v(() => Ht({ active: T.value, name: "switch" })), D = v(() => jl("switch", a.valueColor, { error: O })), x = v(() => Kt({ name: "switch", showField: T.value })), K = v(() => ({})), te = v(() => Gl({ color: a.color, error: O, theme: s, underlineColor: a.underlineColor, underlineStyle: a.underlineStyle, underlineWidth: a.underlineWidth, underlined: a.underlined })), re = v(() => pe.value); + function Q() { + O.value = !1, ae(); + } + const pe = W(), de = W(null), he = W("body"); + function ae() { + var ie, ye; + if (G.value || a.loadingWait && $.value) return; - Oe.value = Vt({ cardMinWidth: (_e = i.cardProps) == null ? void 0 : _e.minWidth, cardOffsetX: i.cardOffsetX, cardOffsetY: i.cardOffsetY, cardWidth: (qe = i.cardProps) == null ? void 0 : qe.width, field: we.value }); - const ue = dn({ attrs: l, closeSiblings: I.value, fieldOnly: i.fieldOnly, props: s, showField: R, timeOpened: Y.value }); - i = { ...i, ...ue.settings }, R.value = ue.showField, Y.value = ue.timeOpened, le !== null && I.value && R.value && !i.fieldOnly && le.emit(ue.timeOpened); - } - const ve = D(), ne = v(() => ve.value); - function fe() { - const ue = cl({ required: i.required, rules: i.rules, value: t }); - return x.value = ue.errors, ve.value = ue.results, ue.results; - } - function Le() { - q = t.value, a("update", t.value), i.loadingWait || Ve(); - } - let le, K; - function Ie(ue) { - a("update:closeSiblingFields", Y), R.value && Y.value !== ue && Be(); - } - return J(() => R.value, () => { - R.value && fe(); - }), J(() => t.value, () => { - R.value && fe(); - }), I.value && import("@vueuse/core").then(({ useEventBus: ue }) => { - le = ue(Kt), K = le.on(Ie); - }), Xt(() => { - K !== void 0 && le.off(Ie); - }), (ue, _e) => (Z(), ce("div", { ref_key: "inlineFieldsContainer", ref: we, class: oe(r(te)), style: Te(r(Ae)) }, [!r(R) && !r(i).fieldOnly || r(g) ? (Z(), ce("div", { key: 0, class: oe(r(pe)) }, [Ge("div", { class: oe(r(ge)) }, [d(dl, Q(r(G), { onToggleField: Ve }), pt({ _: 2 }, [vt(r(o), (qe, vn) => ({ name: vn, fn: be((pl) => [Ye(ue.$slots, vn, Pe(Re({ ...pl })), void 0, !0)]) }))]), 1040)], 2)], 2)) : xe("", !0), r(R) || r(i).fieldOnly || r(g) ? (Z(), ce("div", { key: 1, class: oe(r(he)) }, [(Z(), De(Pt, { disabled: !r(g), to: r(Ee) }, [d(ss, Q(r(j), { modelValue: t.value, "onUpdate:modelValue": _e[0] || (_e[0] = (qe) => t.value = qe), autofocus: !r(i).fieldOnly || r(i).autofocus, "clear-icon": r(T), clearable: r(i).clearable, color: r(k), density: r(i).density, disabled: r(P) || r(A), error: r(x), "error-messages": r(ne), "hide-details": r($), "hide-selected": r(i).hideSelected, "item-title": r(i).itemTitle, "item-value": r(i).itemValue, items: r(W), label: r(i).label, loading: r(P), menu: r(i).menu && !r(i).fieldOnly && r(R), variant: r(i).variant, width: "100%", onKeyup: Gn(Be, ["esc"]) }), pt({ _: 2 }, [vt(r(o), (qe, vn) => ({ name: vn, fn: be((pl) => [Ye(ue.$slots, vn, Pe(Re({ ...pl })), void 0, !0)]) })), r(o).append ? void 0 : { name: "append", fn: be(() => [d(un, { "cancel-button-color": r(p), "cancel-button-size": r(y), "cancel-button-title": r(f), "cancel-button-variant": r(m), "cancel-icon": r(h), "cancel-icon-color": r(b), error: r(x), "field-only": r(F), "hide-cancel-icon": r(U), "hide-save-icon": r(z), loading: r(P), "loading-icon": r(L), "loading-icon-color": r(E), "save-button-color": r(B), "save-button-size": r(_), "save-button-title": r(C), "save-button-variant": r(O), "save-icon": r(w), "save-icon-color": r(M), onClose: Be, onSave: Le }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "hide-save-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["modelValue", "autofocus", "clear-icon", "clearable", "color", "density", "disabled", "error", "error-messages", "hide-details", "hide-selected", "item-title", "item-value", "items", "label", "loading", "menu", "variant"])], 8, ["disabled", "to"]))], 2)) : xe("", !0), r(g) ? (Z(), ce("div", { key: 2, class: oe(r(ze)), style: Te(r(ke)) }, [d(cn, Pe(Re(r(X))), { default: be(() => [d(Lt, null, { default: be(() => [Ge("div", { ref_key: "cardFieldRef", ref: Ee }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : xe("", !0)], 6)); -} }), [["__scopeId", "data-v-bf7fbbc3"]]), ks = { class: "v-selection-control__wrapper" }, ws = rt({ __name: "VInlineSwitch", props: Qe(Yt({ density: {}, falseIcon: {}, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, falseValue: { type: [Boolean, String] }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, iconFalse: {}, iconFalseColor: {}, iconFalseTitle: {}, iconTrue: {}, iconTrueColor: {}, iconTrueTitle: {}, icons: { type: Boolean }, item: {}, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, trueValue: { type: [Boolean, String] }, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...Ai }), { modelValue: {} }), emits: Qe([...pn], ["update:modelValue"]), setup(e, { emit: n }) { - const t = $t(e, "modelValue"), l = Ot(), o = Et(), a = n, c = me(Wt, {}), u = Wl(), s = e; - let i = lt({ ...l, ...s, ...c }); - const { cancelButtonColor: p, cancelButtonSize: y, cancelButtonTitle: f, cancelButtonVariant: m, cancelIcon: h, cancelIconColor: b, cardField: g, closeSiblings: I, color: k, fieldOnly: F, hideCancelIcon: U, hideDetails: $, loadingIcon: z, loadingIconColor: L, saveButtonColor: E, saveButtonSize: B, saveButtonTitle: _, saveButtonVariant: C, saveIcon: O, saveIconColor: w } = Bt(i), M = v(() => s.disabled), V = v(() => s.loading), A = D(!1), P = D(!1), S = D(null), x = v(() => zn(i)), W = v(() => ({ ...Jt, ...s.cardProps })); - J(() => V.value, (ve, ne) => { - !ve && ne && P.value && Be(); + pe.value = xt({ cardMinWidth: (ie = a.cardProps) == null ? void 0 : ie.minWidth, cardOffsetX: a.cardOffsetX, cardOffsetY: a.cardOffsetY, cardWidth: (ye = a.cardProps) == null ? void 0 : ye.width, field: de.value }); + const be = Qt({ attrs: l, closeSiblings: I.value, fieldOnly: a.fieldOnly, props: u, showField: T.value, timeOpened: B.value }); + T.value = be.showField, B.value = be.timeOpened, xe !== null && I.value && T.value && !a.fieldOnly && xe.emit(be.timeOpened); + } + function Be(be) { + t.value = be, i("update", be), a.loadingWait || ae(); + } + let xe, Pe; + function Ee(be) { + i("update:closeSiblingFields", B), T.value && B.value !== be && ae(); + } + return I.value && import("@vueuse/core").then(({ useEventBus: be }) => { + xe = be(jt), Pe = xe.on(Ee); + }), Nt(() => { + Pe !== void 0 && xe.off(Ee); + }), (be, ie) => (Z(), fe("div", { ref_key: "inlineFieldsContainer", ref: de, class: le(r(q)), style: We(r(K)) }, [!r(T) && !r(a).fieldOnly || r(a).cardField ? (Z(), fe("div", { key: 0, class: le(r(J)), onClick: ie[2] || (ie[2] = (ye) => r(a).cell ? ae() : void 0) }, [je("div", { class: le(r(R)), onClick: ie[1] || (ie[1] = (ye) => r(a).cell ? void 0 : ae()) }, [je("div", zs, [r(a).icons ? (Z(), fe("div", { key: 0, class: le(["v-inline-fields--boolean-icons-container", r(D)]), style: We(r(te)) }, [d(xi, { modelValue: r(X), "onUpdate:modelValue": ie[0] || (ie[0] = (ye) => Mt(X) ? X.value = ye : null), "icon-false": r(a).iconFalse, "icon-false-color": r(a).iconFalseColor, "icon-false-title": r(a).iconFalseTitle, "icon-true": r(a).iconTrue, "icon-true-color": r(a).iconTrueColor, "icon-true-title": r(a).iconTrueTitle }, null, 8, ["modelValue", "icon-false", "icon-false-color", "icon-false-title", "icon-true", "icon-true-color", "icon-true-title"])], 6)) : (Z(), fe("div", { key: 1, class: le(["d-inline-flex align-center justify-center", r(D)]), style: We(r(te)) }, Wl(r(j)), 7))])], 2)], 2)) : Fe("", !0), r(T) || r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 1, class: le(r(z)) }, [(Z(), Me(Vt, { disabled: !r(h), to: r(he) }, [d(Vs, ee(r(A), { color: r(F), density: r(a).density, disabled: r($) || r(G), error: r(O), "false-icon": r(a).falseIcon, "false-value": r(a).falseValue, "hide-details": r(w), label: r(a).label, loading: r($), "model-value": r(X), "true-value": r(a).trueValue, "onUpdate:modelValue": Be }), rt({ _: 2 }, [st(r(o), (ye, Oe) => ({ name: Oe, fn: Ce((_e) => [Ue(be.$slots, Oe, $e(Re({ ..._e })))]) })), r(o).append ? void 0 : { name: "append", fn: Ce(() => [d(Jt, { "cancel-button-color": r(p), "cancel-button-size": r(f), "cancel-button-title": r(y), "cancel-button-variant": r(g), "cancel-icon": r(b), "cancel-icon-color": r(m), class: "ms-3", error: r(O), "field-only": r(V), "hide-cancel-icon": r(N), "hide-save-icon": !0, loading: r($), "loading-icon": r(L), "loading-icon-color": r(M), "save-button-color": r(E), "save-button-size": r(S), "save-button-title": r(k), "save-button-variant": r(C), "save-icon": r(_), "save-icon-color": r(P), onClose: Q, onSave: Be }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["color", "density", "disabled", "error", "false-icon", "false-value", "hide-details", "label", "loading", "model-value", "true-value"])], 8, ["disabled", "to"]))], 2)) : Fe("", !0), r(h) ? (Z(), fe("div", { key: 2, class: le(r(x)), style: We(r(re)) }, [d(en, $e(Re(r(U))), { default: Ce(() => [d($t, null, { default: Ce(() => [je("div", { ref_key: "cardFieldRef", ref: he }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : Fe("", !0)], 6)); +} }), Ls = ct({ __name: "VInlineTextField", props: Ye(Rt({ clearIcon: {}, density: {}, rules: {}, variant: {}, autofocus: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, truncateLength: {}, truncateSuffix: {}, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...sa }), { modelValue: {}, modelModifiers: {} }), emits: Ye([...Zt], ["update:modelValue"]), setup(e, { emit: n }) { + const t = _t(e, "modelValue"), l = gt(), o = At(), i = n, c = Ie(Tt, {}), s = Ie(Symbol.for("vuetify:icons")), u = e, a = Qe({ ...l, ...u, ...c }); + ze(() => { + Object.assign(a, { ...l, ...u, ...c }); }); - const R = v(() => t.value == i.trueValue), Y = v(() => mi({ modelValue: t, trueValue: i.trueValue })), q = v(() => Zt({ cell: i.cell && !P.value, density: i.density, disabled: M.value, field: "v-switch", loading: V.value, loadingWait: i.loadingWait, tableField: i.tableField })), T = v(() => Qt({ cell: i.cell, cellUnderlineFullWidth: i.cellUnderlineFullWidth, density: i.density, field: "v-switch" })), N = ia({ density: i.density }), j = v(() => en({ active: P.value, name: "switch" })), G = v(() => Rl("switch", i.valueColor, { error: A })), X = v(() => tn({ name: "switch", showField: P.value })), te = v(() => ({})), pe = v(() => ao({ color: i.color, error: A, theme: u, underlineColor: i.underlineColor, underlineStyle: i.underlineStyle, underlineWidth: i.underlineWidth, underlined: i.underlined })), ge = v(() => ze.value); - function he() { - A.value = !1, Be(); - } - const ze = D(), Ae = D(null), ke = D("body"); - function Be() { - var ne, fe; - if (M.value || i.loadingWait && V.value) - return; - ze.value = Vt({ cardMinWidth: (ne = i.cardProps) == null ? void 0 : ne.minWidth, cardOffsetX: i.cardOffsetX, cardOffsetY: i.cardOffsetY, cardWidth: (fe = i.cardProps) == null ? void 0 : fe.width, field: Ae.value }); - const ve = dn({ attrs: l, closeSiblings: I.value, fieldOnly: i.fieldOnly, props: s, showField: P.value, timeOpened: S.value }); - i = { ...i, ...ve.settings }, P.value = ve.showField, S.value = ve.timeOpened, we !== null && I.value && P.value && !i.fieldOnly && we.emit(ve.timeOpened); - } - function Oe(ve) { - t.value = ve, a("update", ve), i.loadingWait || Be(); - } - let we, Ee; - function Ve(ve) { - a("update:closeSiblingFields", S), P.value && S.value !== ve && Be(); - } - return I.value && import("@vueuse/core").then(({ useEventBus: ve }) => { - we = ve(Kt), Ee = we.on(Ve); - }), Xt(() => { - Ee !== void 0 && we.off(Ve); - }), (ve, ne) => (Z(), ce("div", { ref_key: "inlineFieldsContainer", ref: Ae, class: oe(r(q)), style: Te(r(te)) }, [!r(P) && !r(i).fieldOnly || r(i).cardField ? (Z(), ce("div", { key: 0, class: oe(r(T)), onClick: ne[2] || (ne[2] = (fe) => r(i).cell ? Be() : void 0) }, [Ge("div", { class: oe(r(N)), onClick: ne[1] || (ne[1] = (fe) => r(i).cell ? void 0 : Be()) }, [Ge("div", ks, [ve.icons ? (Z(), ce("div", { key: 0, class: oe(["v-inline-fields--boolean-icons-container", r(G)]), style: Te(r(pe)) }, [d(yi, { modelValue: r(Y), "onUpdate:modelValue": ne[0] || (ne[0] = (fe) => _t(Y) ? Y.value = fe : null), "icon-false": r(i).iconFalse, "icon-false-color": r(i).iconFalseColor, "icon-false-title": r(i).iconFalseTitle, "icon-true": r(i).iconTrue, "icon-true-color": r(i).iconTrueColor, "icon-true-title": r(i).iconTrueTitle }, null, 8, ["modelValue", "icon-false", "icon-false-color", "icon-false-title", "icon-true", "icon-true-color", "icon-true-title"])], 6)) : (Z(), ce("div", { key: 1, class: oe(["d-inline-flex align-center justify-center", r(G)]), style: Te(r(pe)) }, Ll(r(R)), 7))])], 2)], 2)) : xe("", !0), r(P) || r(i).fieldOnly || r(g) ? (Z(), ce("div", { key: 1, class: oe(r(j)) }, [(Z(), De(Pt, { disabled: !r(g), to: r(ke) }, [d(ms, Q(r(x), { color: r(k), density: r(i).density, disabled: r(V) || r(M), error: r(A), "false-icon": r(i).falseIcon, "false-value": r(i).falseValue, "hide-details": r($), label: r(i).label, loading: r(V), "model-value": r(Y), "true-value": r(i).trueValue, "onUpdate:modelValue": Oe }), pt({ _: 2 }, [vt(r(o), (fe, Le) => ({ name: Le, fn: be((le) => [Ye(ve.$slots, Le, Pe(Re({ ...le })))]) })), r(o).append ? void 0 : { name: "append", fn: be(() => [d(un, { "cancel-button-color": r(p), "cancel-button-size": r(y), "cancel-button-title": r(f), "cancel-button-variant": r(m), "cancel-icon": r(h), "cancel-icon-color": r(b), class: "ms-3", error: r(A), "field-only": r(F), "hide-cancel-icon": r(U), "hide-save-icon": !0, loading: r(V), "loading-icon": r(z), "loading-icon-color": r(L), "save-button-color": r(E), "save-button-size": r(B), "save-button-title": r(_), "save-button-variant": r(C), "save-icon": r(O), "save-icon-color": r(w), onClose: he, onSave: Oe }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["color", "density", "disabled", "error", "false-icon", "false-value", "hide-details", "label", "loading", "model-value", "true-value"])], 8, ["disabled", "to"]))], 2)) : xe("", !0), r(g) ? (Z(), ce("div", { key: 2, class: oe(r(X)), style: Te(r(ge)) }, [d(cn, Pe(Re(r(W))), { default: be(() => [d(Lt, null, { default: be(() => [Ge("div", { ref_key: "cardFieldRef", ref: ke }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : xe("", !0)], 6)); -} }), Fs = rt({ __name: "VInlineTextField", props: Qe(Yt({ clearIcon: {}, density: {}, rules: {}, variant: {}, autofocus: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, item: {}, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, truncateLength: {}, truncateSuffix: {}, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...aa }), { modelValue: {} }), emits: Qe([...pn], ["update:modelValue"]), setup(e, { emit: n }) { - const t = $t(e, "modelValue"), l = Ot(), o = Et(), a = n, c = me(Wt, {}), u = me(Symbol.for("vuetify:icons")), s = e; - let i = lt({ ...l, ...s, ...c }); - const { cancelButtonColor: p, cancelButtonSize: y, cancelButtonTitle: f, cancelButtonVariant: m, cancelIcon: h, cancelIconColor: b, cardField: g, closeSiblings: I, color: k, fieldOnly: F, hideCancelIcon: U, hideDetails: $, hideSaveIcon: z, loadingIcon: L, loadingIconColor: E, saveButtonColor: B, saveButtonSize: _, saveButtonTitle: C, saveButtonVariant: O, saveIcon: w, saveIconColor: M } = Bt(i), V = v(() => s.disabled), A = v(() => s.loading), P = D(!1), S = D(!1), x = D(!1), W = D(null); - let R = t.value; - J(() => A.value, (K, Ie) => { - !K && Ie && x.value && we(); + const { cancelButtonColor: p, cancelButtonSize: f, cancelButtonTitle: y, cancelButtonVariant: g, cancelIcon: b, cancelIconColor: m, cardField: h, closeSiblings: I, color: F, fieldOnly: V, hideCancelIcon: N, hideDetails: w, hideSaveIcon: L, loadingIcon: M, loadingIconColor: E, saveButtonColor: S, saveButtonSize: k, saveButtonTitle: C, saveButtonVariant: _, saveIcon: P, saveIconColor: G } = Ft(a), $ = v(() => u.disabled), O = v(() => u.loading), T = W(!1), B = W(!1), A = W(!1), U = W(null); + let j = t.value; + Y(() => O.value, (se, De) => { + !se && De && A.value && xe(); }); - const Y = v(() => ot({ icon: s.clearIcon, iconOptions: u, name: "clear" })), q = v(() => t.value ? (P.value = !1, i.truncateLength ? oo({ length: i.truncateLength, suffix: i.truncateSuffix, text: t.value }) : t.value) : (P.value = !0, i.emptyText)), T = v(() => zn(i)), N = v(() => ({ color: i.color, displayAppendIcon: s.displayAppendIcon, displayAppendIconColor: s.displayAppendIconColor, displayAppendIconSize: s.displayAppendIconSize, displayAppendInnerIcon: s.displayAppendInnerIcon, displayAppendInnerIconColor: s.displayAppendInnerIconColor, displayAppendInnerIconSize: s.displayAppendInnerIconSize, displayPrependIcon: s.displayPrependIcon, displayPrependIconColor: s.displayPrependIconColor, displayPrependIconSize: s.displayPrependIconSize, displayPrependInnerIcon: s.displayPrependInnerIcon, displayPrependInnerIconColor: s.displayPrependInnerIconColor, displayPrependInnerIconSize: s.displayPrependInnerIconSize, displayValue: q.value, empty: P.value, error: S.value, field: "v-text-field", underlineColor: i.underlineColor, underlineStyle: i.underlineStyle, underlineWidth: i.underlineWidth, underlined: i.underlined, valueColor: i.valueColor })), j = v(() => ({ ...Jt, ...s.cardProps })), G = v(() => Zt({ cell: i.cell && !x.value, density: i.density, disabled: V.value, field: "v-text-field", iconSet: u == null ? void 0 : u.defaultSet, loading: A.value, loadingWait: i.loadingWait, tableField: i.tableField, variant: i.variant })), X = v(() => Qt({ cell: i.cell, cellUnderlineFullWidth: i.cellUnderlineFullWidth, density: i.density, field: "v-text-field" })), te = al({ density: i.density, variant: i.variant }), pe = v(() => en({ active: x.value, name: "text-field" })), ge = v(() => tn({ name: "text-field", showField: x.value })), he = v(() => ({})), ze = v(() => ke.value); - function Ae() { - S.value = !1, t.value = R, we(); - } - const ke = D(), Be = D(null), Oe = D("body"); - function we() { - var Ie, ue; - if (V.value || i.loadingWait && A.value) + const X = v(() => it({ icon: u.clearIcon, iconOptions: s, name: "clear" })), q = v(() => t.value ? (T.value = !1, a.truncateLength ? lo({ length: a.truncateLength, suffix: a.truncateSuffix, text: t.value }) : t.value) : (T.value = !0, a.emptyText)), J = v(() => bn(a)), R = v(() => ({ color: a.color, displayAppendIcon: a.displayAppendIcon, displayAppendIconColor: a.displayAppendIconColor, displayAppendIconSize: a.displayAppendIconSize, displayAppendInnerIcon: a.displayAppendInnerIcon, displayAppendInnerIconColor: a.displayAppendInnerIconColor, displayAppendInnerIconSize: a.displayAppendInnerIconSize, displayPrependIcon: a.displayPrependIcon, displayPrependIconColor: a.displayPrependIconColor, displayPrependIconSize: a.displayPrependIconSize, displayPrependInnerIcon: a.displayPrependInnerIcon, displayPrependInnerIconColor: a.displayPrependInnerIconColor, displayPrependInnerIconSize: a.displayPrependInnerIconSize, displayValue: q.value, empty: T.value, error: B.value, field: "v-text-field", underlineColor: a.underlineColor, underlineStyle: a.underlineStyle, underlineWidth: a.underlineWidth, underlined: a.underlined, valueColor: a.valueColor })), z = v(() => ({ ...Gt, ...u.cardProps })), D = v(() => Ut({ cell: a.cell && !A.value, density: a.density, disabled: $.value, field: "v-text-field", iconSet: s == null ? void 0 : s.defaultSet, loading: O.value, loadingWait: a.loadingWait, tableField: a.tableField, variant: a.variant })), x = v(() => qt({ cell: a.cell, cellUnderlineFullWidth: a.cellUnderlineFullWidth, density: a.density, field: "v-text-field" })), K = Pn({ density: a.density, variant: a.variant }), te = v(() => Ht({ active: A.value, name: "text-field" })), re = v(() => Kt({ name: "text-field", showField: A.value })), Q = v(() => ({})), pe = v(() => he.value); + function de() { + B.value = !1, t.value = j, xe(); + } + const he = W(), ae = W(null), Be = W("body"); + function xe() { + var De, ne; + if ($.value || a.loadingWait && O.value) return; - ke.value = Vt({ cardMinWidth: (Ie = i.cardProps) == null ? void 0 : Ie.minWidth, cardOffsetX: i.cardOffsetX, cardOffsetY: i.cardOffsetY, cardWidth: (ue = i.cardProps) == null ? void 0 : ue.width, field: Be.value }); - const K = dn({ attrs: l, closeSiblings: I.value, fieldOnly: i.fieldOnly, props: s, showField: x, timeOpened: W.value }); - i = { ...i, ...K.settings }, x.value = K.showField, W.value = K.timeOpened, fe !== null && I.value && x.value && !i.fieldOnly && fe.emit(K.timeOpened); - } - const Ee = D(), Ve = v(() => Ee.value); - function ve() { - const K = cl({ required: i.required, rules: i.rules, value: t }); - return S.value = K.errors, Ee.value = K.results, K.results; - } - function ne() { - S.value ? S.value = !0 : (R = t.value, a("update", t.value), i.loadingWait || we()); - } - let fe, Le; - function le(K) { - a("update:closeSiblingFields", W), x.value && W.value !== K && Ae(); - } - return J(() => x.value, () => { - x.value && ve(); - }), J(() => t.value, () => { - x.value && ve(); - }), I.value && import("@vueuse/core").then(({ useEventBus: K }) => { - fe = K(Kt), Le = fe.on(le); - }), Xt(() => { - Le !== void 0 && fe.off(le); - }), (K, Ie) => (Z(), ce("div", { ref_key: "inlineFieldsContainer", ref: Be, class: oe(r(G)), style: Te(r(he)) }, [!r(x) && !r(i).fieldOnly || r(g) ? (Z(), ce("div", { key: 0, class: oe(r(X)) }, [Ge("div", { class: oe(r(te)) }, [d(dl, Q(r(N), { onToggleField: we }), pt({ _: 2 }, [vt(r(o), (ue, _e) => ({ name: _e, fn: be((qe) => [Ye(K.$slots, _e, Pe(Re({ ...qe })))]) }))]), 1040)], 2)], 2)) : xe("", !0), r(x) || r(i).fieldOnly || r(g) ? (Z(), ce("div", { key: 1, class: oe(r(pe)) }, [(Z(), De(Pt, { disabled: !r(g), to: r(Oe) }, [d(Tl, Q(r(T), { modelValue: t.value, "onUpdate:modelValue": Ie[0] || (Ie[0] = (ue) => t.value = ue), autofocus: !r(i).fieldOnly || r(i).autofocus, "clear-icon": r(Y), color: r(k), density: r(i).density, disabled: r(A) || r(V), error: r(S), "error-messages": r(Ve), "hide-details": r($), label: r(i).label, loading: r(A), variant: r(i).variant, width: "100%", onKeyup: [Gn(ne, ["enter"]), Gn(Ae, ["esc"])] }), pt({ _: 2 }, [vt(r(o), (ue, _e) => ({ name: _e, fn: be((qe) => [Ye(K.$slots, _e, Pe(Re({ ...qe })))]) })), r(o).append ? void 0 : { name: "append", fn: be(() => [d(un, { "cancel-button-color": r(p), "cancel-button-size": r(y), "cancel-button-title": r(f), "cancel-button-variant": r(m), "cancel-icon": r(h), "cancel-icon-color": r(b), error: r(S), "field-only": r(F), "hide-cancel-icon": r(U), "hide-save-icon": r(z), loading: r(A), "loading-icon": r(L), "loading-icon-color": r(E), "save-button-color": r(B), "save-button-size": r(_), "save-button-title": r(C), "save-button-variant": r(O), "save-icon": r(w), "save-icon-color": r(M), onClose: Ae, onSave: ne }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "hide-save-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["modelValue", "autofocus", "clear-icon", "color", "density", "disabled", "error", "error-messages", "hide-details", "label", "loading", "variant"])], 8, ["disabled", "to"]))], 2)) : xe("", !0), r(g) ? (Z(), ce("div", { key: 2, class: oe(r(ge)), style: Te(r(ze)) }, [d(cn, Pe(Re(r(j))), { default: be(() => [d(Lt, null, { default: be(() => [Ge("div", { ref_key: "cardFieldRef", ref: Oe }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : xe("", !0)], 6)); -} }), As = rt({ __name: "VInlineTextarea", props: Qe(Yt({ autoGrow: {}, clearIcon: {}, density: {}, rows: {}, rules: {}, variant: {}, autofocus: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, item: {}, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, truncateLength: {}, truncateSuffix: {}, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...Vi }), { modelValue: {} }), emits: Qe([...pn], ["update:modelValue"]), setup(e, { emit: n }) { - const t = $t(e, "modelValue"), l = Ot(), o = Et(), a = n, c = me(Wt, {}), u = me(Symbol.for("vuetify:icons")), s = e; - let i = lt({ ...l, ...s, ...c }); - const { cancelButtonColor: p, cancelButtonSize: y, cancelButtonTitle: f, cancelButtonVariant: m, cancelIcon: h, cancelIconColor: b, cardField: g, closeSiblings: I, color: k, fieldOnly: F, hideCancelIcon: U, hideDetails: $, hideSaveIcon: z, loadingIcon: L, loadingIconColor: E, saveButtonColor: B, saveButtonSize: _, saveButtonTitle: C, saveButtonVariant: O, saveIcon: w, saveIconColor: M } = Bt(i), V = v(() => s.disabled), A = v(() => s.loading), P = D(!1), S = D(!1), x = D(!1), W = D(null); - let R = t.value; - J(() => A.value, (K, Ie) => { - !K && Ie && x.value && we(); + he.value = xt({ cardMinWidth: (De = a.cardProps) == null ? void 0 : De.minWidth, cardOffsetX: a.cardOffsetX, cardOffsetY: a.cardOffsetY, cardWidth: (ne = a.cardProps) == null ? void 0 : ne.width, field: ae.value }); + const se = Qt({ attrs: l, closeSiblings: I.value, fieldOnly: a.fieldOnly, props: u, showField: A, timeOpened: U.value }); + A.value = se.showField, U.value = se.timeOpened, ye !== null && I.value && A.value && !a.fieldOnly && ye.emit(se.timeOpened); + } + const Pe = W(), Ee = v(() => Pe.value); + function be() { + const se = Nn({ required: a.required, rules: a.rules, value: t }); + return B.value = se.errors, Pe.value = se.results, se.results; + } + function ie() { + B.value ? B.value = !0 : (j = t.value, i("update", t.value), a.loadingWait || xe()); + } + let ye, Oe; + function _e(se) { + i("update:closeSiblingFields", U), A.value && U.value !== se && de(); + } + return Y(() => A.value, () => { + A.value && be(); + }), Y(() => t.value, () => { + A.value && be(); + }), I.value && import("@vueuse/core").then(({ useEventBus: se }) => { + ye = se(jt), Oe = ye.on(_e); + }), Nt(() => { + Oe !== void 0 && ye.off(_e); + }), (se, De) => (Z(), fe("div", { ref_key: "inlineFieldsContainer", ref: ae, class: le(r(D)), style: We(r(Q)) }, [!r(A) && !r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 0, class: le(r(x)) }, [je("div", { class: le(r(K)) }, [d(Dn, ee(r(R), { onToggleField: xe }), rt({ _: 2 }, [st(r(o), (ne, ke) => ({ name: ke, fn: Ce((Le) => [Ue(se.$slots, ke, $e(Re({ ...Le })))]) }))]), 1040)], 2)], 2)) : Fe("", !0), r(A) || r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 1, class: le(r(te)) }, [(Z(), Me(Vt, { disabled: !r(h), to: r(Be) }, [d(On, ee(r(J), { modelValue: t.value, "onUpdate:modelValue": De[0] || (De[0] = (ne) => t.value = ne), autofocus: !r(a).fieldOnly || r(a).autofocus, "clear-icon": r(X), color: r(F), density: r(a).density, disabled: r(O) || r($), error: r(B), "error-messages": r(Ee), "hide-details": r(w), label: r(a).label, loading: r(O), variant: r(a).variant, width: "100%", onKeyup: [kn(ie, ["enter"]), kn(de, ["esc"])] }), rt({ _: 2 }, [st(r(o), (ne, ke) => ({ name: ke, fn: Ce((Le) => [Ue(se.$slots, ke, $e(Re({ ...Le })))]) })), r(o).append ? void 0 : { name: "append", fn: Ce(() => [d(Jt, { "cancel-button-color": r(p), "cancel-button-size": r(f), "cancel-button-title": r(y), "cancel-button-variant": r(g), "cancel-icon": r(b), "cancel-icon-color": r(m), error: r(B), "field-only": r(V), "hide-cancel-icon": r(N), "hide-save-icon": r(L), loading: r(O), "loading-icon": r(M), "loading-icon-color": r(E), "save-button-color": r(S), "save-button-size": r(k), "save-button-title": r(C), "save-button-variant": r(_), "save-icon": r(P), "save-icon-color": r(G), onClose: de, onSave: ie }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "hide-save-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["modelValue", "autofocus", "clear-icon", "color", "density", "disabled", "error", "error-messages", "hide-details", "label", "loading", "variant"])], 8, ["disabled", "to"]))], 2)) : Fe("", !0), r(h) ? (Z(), fe("div", { key: 2, class: le(r(re)), style: We(r(pe)) }, [d(en, $e(Re(r(z))), { default: Ce(() => [d($t, null, { default: Ce(() => [je("div", { ref_key: "cardFieldRef", ref: Be }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : Fe("", !0)], 6)); +} }), Ws = ct({ __name: "VInlineTextarea", props: Ye(Rt({ autoGrow: {}, clearIcon: {}, density: {}, rows: {}, rules: {}, variant: {}, autofocus: { type: Boolean }, cancelButtonColor: {}, cancelButtonSize: {}, cancelButtonTitle: {}, cancelButtonVariant: {}, cancelIcon: {}, cancelIconColor: {}, cardField: { type: Boolean }, cardOffsetX: {}, cardOffsetY: {}, cardProps: {}, cell: { type: Boolean }, cellUnderlineFullWidth: { type: Boolean }, closeSiblings: { type: Boolean }, color: {}, disabled: { type: Boolean }, displayAppendIcon: {}, displayAppendIconColor: {}, displayAppendIconSize: {}, displayAppendInnerIcon: {}, displayAppendInnerIconColor: {}, displayAppendInnerIconSize: {}, displayPrependIcon: {}, displayPrependIconColor: {}, displayPrependIconSize: {}, displayPrependInnerIcon: {}, displayPrependInnerIconColor: {}, displayPrependInnerIconSize: {}, emptyText: {}, error: { type: Boolean }, fieldOnly: { type: Boolean }, hideCancelIcon: { type: Boolean }, hideDetails: { type: Boolean }, hideSaveIcon: { type: Boolean }, label: {}, loading: { type: Boolean }, loadingIcon: {}, loadingIconColor: {}, loadingWait: { type: Boolean }, name: {}, required: { type: Boolean }, saveButtonColor: {}, saveButtonSize: {}, saveButtonTitle: {}, saveButtonVariant: {}, saveIcon: {}, saveIconColor: {}, tableField: { type: Boolean }, truncateLength: {}, truncateSuffix: {}, underlineColor: {}, underlineStyle: {}, underlineWidth: {}, underlined: { type: Boolean }, valueColor: {} }, { ...Li }), { modelValue: {}, modelModifiers: {} }), emits: Ye([...Zt], ["update:modelValue"]), setup(e, { emit: n }) { + const t = _t(e, "modelValue"), l = gt(), o = At(), i = n, c = Ie(Tt, {}), s = Ie(Symbol.for("vuetify:icons")), u = e, a = Qe({ ...l, ...u, ...c }); + ze(() => { + Object.assign(a, { ...l, ...u, ...c }); + }); + const { cancelButtonColor: p, cancelButtonSize: f, cancelButtonTitle: y, cancelButtonVariant: g, cancelIcon: b, cancelIconColor: m, cardField: h, closeSiblings: I, color: F, fieldOnly: V, hideCancelIcon: N, hideDetails: w, hideSaveIcon: L, loadingIcon: M, loadingIconColor: E, saveButtonColor: S, saveButtonSize: k, saveButtonTitle: C, saveButtonVariant: _, saveIcon: P, saveIconColor: G } = Ft(a), $ = v(() => u.disabled), O = v(() => u.loading), T = W(!1), B = W(!1), A = W(!1), U = W(null); + let j = t.value; + Y(() => O.value, (se, De) => { + !se && De && A.value && xe(); }); - const Y = v(() => ot({ icon: s.clearIcon, iconOptions: u, name: "clear" })), q = v(() => t.value ? (P.value = !1, i.truncateLength ? oo({ length: i.truncateLength, suffix: i.truncateSuffix, text: t.value }) : t.value) : (P.value = !0, i.emptyText)), T = v(() => zn(i)), N = v(() => ({ color: i.color, displayAppendIcon: s.displayAppendIcon, displayAppendIconColor: s.displayAppendIconColor, displayAppendIconSize: s.displayAppendIconSize, displayAppendInnerIcon: s.displayAppendInnerIcon, displayAppendInnerIconColor: s.displayAppendInnerIconColor, displayAppendInnerIconSize: s.displayAppendInnerIconSize, displayPrependIcon: s.displayPrependIcon, displayPrependIconColor: s.displayPrependIconColor, displayPrependIconSize: s.displayPrependIconSize, displayPrependInnerIcon: s.displayPrependInnerIcon, displayPrependInnerIconColor: s.displayPrependInnerIconColor, displayPrependInnerIconSize: s.displayPrependInnerIconSize, displayValue: q.value, empty: P.value, error: S.value, field: "v-text-field", underlineColor: i.underlineColor, underlineStyle: i.underlineStyle, underlineWidth: i.underlineWidth, underlined: i.underlined, valueColor: i.valueColor })), j = v(() => ({ ...Jt, ...s.cardProps })), G = v(() => Zt({ cell: i.cell && !x.value, density: i.density, disabled: V.value, field: "v-textarea", iconSet: u == null ? void 0 : u.defaultSet, loading: A.value, loadingWait: i.loadingWait, tableField: i.tableField, variant: i.variant })), X = v(() => Qt({ cell: i.cell, cellUnderlineFullWidth: i.cellUnderlineFullWidth, density: i.density, field: "v-textarea" })), te = al({ density: i.density, variant: i.variant }), pe = v(() => en({ active: x.value, name: "textarea" })), ge = v(() => tn({ name: "textarea", showField: x.value })), he = v(() => ({})), ze = v(() => ke.value); - function Ae() { - S.value = !1, t.value = R, we(); - } - const ke = D(), Be = D(null), Oe = D("body"); - function we() { - var Ie, ue; - if (V.value || i.loadingWait && A.value) + const X = v(() => it({ icon: u.clearIcon, iconOptions: s, name: "clear" })), q = v(() => t.value ? (T.value = !1, a.truncateLength ? lo({ length: a.truncateLength, suffix: a.truncateSuffix, text: t.value }) : t.value) : (T.value = !0, a.emptyText)), J = v(() => bn(a)), R = v(() => ({ color: a.color, displayAppendIcon: a.displayAppendIcon, displayAppendIconColor: a.displayAppendIconColor, displayAppendIconSize: a.displayAppendIconSize, displayAppendInnerIcon: a.displayAppendInnerIcon, displayAppendInnerIconColor: a.displayAppendInnerIconColor, displayAppendInnerIconSize: a.displayAppendInnerIconSize, displayPrependIcon: a.displayPrependIcon, displayPrependIconColor: a.displayPrependIconColor, displayPrependIconSize: a.displayPrependIconSize, displayPrependInnerIcon: a.displayPrependInnerIcon, displayPrependInnerIconColor: a.displayPrependInnerIconColor, displayPrependInnerIconSize: a.displayPrependInnerIconSize, displayValue: q.value, empty: T.value, error: B.value, field: "v-text-field", underlineColor: a.underlineColor, underlineStyle: a.underlineStyle, underlineWidth: a.underlineWidth, underlined: a.underlined, valueColor: a.valueColor })), z = v(() => ({ ...Gt, ...u.cardProps })), D = v(() => Ut({ cell: a.cell && !A.value, density: a.density, disabled: $.value, field: "v-textarea", iconSet: s == null ? void 0 : s.defaultSet, loading: O.value, loadingWait: a.loadingWait, tableField: a.tableField, variant: a.variant })), x = v(() => qt({ cell: a.cell, cellUnderlineFullWidth: a.cellUnderlineFullWidth, density: a.density, field: "v-textarea" })), K = Pn({ density: a.density, variant: a.variant }), te = v(() => Ht({ active: A.value, name: "textarea" })), re = v(() => Kt({ name: "textarea", showField: A.value })), Q = v(() => ({})), pe = v(() => he.value); + function de() { + B.value = !1, t.value = j, xe(); + } + const he = W(), ae = W(null), Be = W("body"); + function xe() { + var De, ne; + if ($.value || a.loadingWait && O.value) return; - ke.value = Vt({ cardMinWidth: (Ie = i.cardProps) == null ? void 0 : Ie.minWidth, cardOffsetX: i.cardOffsetX, cardOffsetY: i.cardOffsetY, cardWidth: (ue = i.cardProps) == null ? void 0 : ue.width, field: Be.value }); - const K = dn({ attrs: l, closeSiblings: I.value, fieldOnly: i.fieldOnly, props: s, showField: x, timeOpened: W.value }); - i = { ...i, ...K.settings }, x.value = K.showField, W.value = K.timeOpened, fe !== null && I.value && x.value && !i.fieldOnly && fe.emit(K.timeOpened); - } - const Ee = D(), Ve = v(() => Ee.value); - function ve() { - const K = cl({ required: i.required, rules: i.rules, value: t }); - return S.value = K.errors, Ee.value = K.results, K.results; - } - function ne() { - R = t.value, a("update", t.value), i.loadingWait || we(); - } - let fe, Le; - function le(K) { - a("update:closeSiblingFields", W), x.value && W.value !== K && Ae(); - } - return J(() => x.value, () => { - x.value && ve(); - }), J(() => t.value, () => { - x.value && ve(); - }), I.value && import("@vueuse/core").then(({ useEventBus: K }) => { - fe = K(Kt), Le = fe.on(le); - }), Xt(() => { - Le !== void 0 && fe.off(le); - }), (K, Ie) => (Z(), ce("div", { ref_key: "inlineFieldsContainer", ref: Be, class: oe(r(G)), style: Te(r(he)) }, [!r(x) && !r(i).fieldOnly || r(g) ? (Z(), ce("div", { key: 0, class: oe(r(X)) }, [Ge("div", { class: oe(r(te)) }, [d(dl, Q(r(N), { onToggleField: we }), pt({ _: 2 }, [vt(r(o), (ue, _e) => ({ name: _e, fn: be((qe) => [Ye(K.$slots, _e, Pe(Re({ ...qe })))]) }))]), 1040)], 2)], 2)) : xe("", !0), r(x) || r(i).fieldOnly || r(g) ? (Z(), ce("div", { key: 1, class: oe(r(pe)) }, [(Z(), De(Pt, { disabled: !r(g), to: r(Oe) }, [d(hs, Q(r(T), { modelValue: t.value, "onUpdate:modelValue": Ie[0] || (Ie[0] = (ue) => t.value = ue), "auto-grow": r(i).autoGrow, autofocus: !r(i).fieldOnly || r(i).autofocus, "clear-icon": r(Y), color: r(k), density: r(i).density, disabled: r(A) || r(V), error: r(S), "error-messages": r(Ve), "hide-details": r($), label: r(i).label, loading: r(A), rows: r(i).rows, variant: r(i).variant, width: "100%", onKeyup: Gn(Ae, ["esc"]) }), pt({ _: 2 }, [vt(r(o), (ue, _e) => ({ name: _e, fn: be((qe) => [Ye(K.$slots, _e, Pe(Re({ ...qe })))]) })), r(o).append ? void 0 : { name: "append", fn: be(() => [d(un, { "cancel-button-color": r(p), "cancel-button-size": r(y), "cancel-button-title": r(f), "cancel-button-variant": r(m), "cancel-icon": r(h), "cancel-icon-color": r(b), error: r(S), "field-only": r(F), "hide-cancel-icon": r(U), "hide-save-icon": r(z), loading: r(A), "loading-icon": r(L), "loading-icon-color": r(E), "save-button-color": r(B), "save-button-size": r(_), "save-button-title": r(C), "save-button-variant": r(O), "save-icon": r(w), "save-icon-color": r(M), onClose: Ae, onSave: ne }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "hide-save-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["modelValue", "auto-grow", "autofocus", "clear-icon", "color", "density", "disabled", "error", "error-messages", "hide-details", "label", "loading", "rows", "variant"])], 8, ["disabled", "to"]))], 2)) : xe("", !0), r(g) ? (Z(), ce("div", { key: 2, class: oe(r(ge)), style: Te(r(ze)) }, [d(cn, Pe(Re(r(j))), { default: be(() => [d(Lt, null, { default: be(() => [Ge("div", { ref_key: "cardFieldRef", ref: Oe }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : xe("", !0)], 6)); -} }), Qo = Object.freeze(Object.defineProperty({ __proto__: null, VInlineCheckbox: Ss, VInlineCustomField: Bs, VInlineSelect: xs, VInlineSwitch: ws, VInlineTextField: Fs, VInlineTextarea: As }, Symbol.toStringTag, { value: "Module" })), Wt = Symbol(); -function Ps(e = {}) { + he.value = xt({ cardMinWidth: (De = a.cardProps) == null ? void 0 : De.minWidth, cardOffsetX: a.cardOffsetX, cardOffsetY: a.cardOffsetY, cardWidth: (ne = a.cardProps) == null ? void 0 : ne.width, field: ae.value }); + const se = Qt({ attrs: l, closeSiblings: I.value, fieldOnly: a.fieldOnly, props: u, showField: A, timeOpened: U.value }); + A.value = se.showField, U.value = se.timeOpened, ye !== null && I.value && A.value && !a.fieldOnly && ye.emit(se.timeOpened); + } + const Pe = W(), Ee = v(() => Pe.value); + function be() { + const se = Nn({ required: a.required, rules: a.rules, value: t }); + return B.value = se.errors, Pe.value = se.results, se.results; + } + function ie() { + j = t.value, i("update", t.value), a.loadingWait || xe(); + } + let ye, Oe; + function _e(se) { + i("update:closeSiblingFields", U), A.value && U.value !== se && de(); + } + return Y(() => A.value, () => { + A.value && be(); + }), Y(() => t.value, () => { + A.value && be(); + }), I.value && import("@vueuse/core").then(({ useEventBus: se }) => { + ye = se(jt), Oe = ye.on(_e); + }), Nt(() => { + Oe !== void 0 && ye.off(_e); + }), (se, De) => (Z(), fe("div", { ref_key: "inlineFieldsContainer", ref: ae, class: le(r(D)), style: We(r(Q)) }, [!r(A) && !r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 0, class: le(r(x)) }, [je("div", { class: le(r(K)) }, [d(Dn, ee(r(R), { onToggleField: xe }), rt({ _: 2 }, [st(r(o), (ne, ke) => ({ name: ke, fn: Ce((Le) => [Ue(se.$slots, ke, $e(Re({ ...Le })))]) }))]), 1040)], 2)], 2)) : Fe("", !0), r(A) || r(a).fieldOnly || r(h) ? (Z(), fe("div", { key: 1, class: le(r(te)) }, [(Z(), Me(Vt, { disabled: !r(h), to: r(Be) }, [d(Os, ee(r(J), { modelValue: t.value, "onUpdate:modelValue": De[0] || (De[0] = (ne) => t.value = ne), "auto-grow": r(a).autoGrow, autofocus: !r(a).fieldOnly || r(a).autofocus, "clear-icon": r(X), color: r(F), density: r(a).density, disabled: r(O) || r($), error: r(B), "error-messages": r(Ee), "hide-details": r(w), label: r(a).label, loading: r(O), rows: r(a).rows, variant: r(a).variant, width: "100%", onKeyup: kn(de, ["esc"]) }), rt({ _: 2 }, [st(r(o), (ne, ke) => ({ name: ke, fn: Ce((Le) => [Ue(se.$slots, ke, $e(Re({ ...Le })))]) })), r(o).append ? void 0 : { name: "append", fn: Ce(() => [d(Jt, { "cancel-button-color": r(p), "cancel-button-size": r(f), "cancel-button-title": r(y), "cancel-button-variant": r(g), "cancel-icon": r(b), "cancel-icon-color": r(m), error: r(B), "field-only": r(V), "hide-cancel-icon": r(N), "hide-save-icon": r(L), loading: r(O), "loading-icon": r(M), "loading-icon-color": r(E), "save-button-color": r(S), "save-button-size": r(k), "save-button-title": r(C), "save-button-variant": r(_), "save-icon": r(P), "save-icon-color": r(G), onClose: de, onSave: ie }, null, 8, ["cancel-button-color", "cancel-button-size", "cancel-button-title", "cancel-button-variant", "cancel-icon", "cancel-icon-color", "error", "field-only", "hide-cancel-icon", "hide-save-icon", "loading", "loading-icon", "loading-icon-color", "save-button-color", "save-button-size", "save-button-title", "save-button-variant", "save-icon", "save-icon-color"])]), key: "0" }]), 1040, ["modelValue", "auto-grow", "autofocus", "clear-icon", "color", "density", "disabled", "error", "error-messages", "hide-details", "label", "loading", "rows", "variant"])], 8, ["disabled", "to"]))], 2)) : Fe("", !0), r(h) ? (Z(), fe("div", { key: 2, class: le(r(re)), style: We(r(pe)) }, [d(en, $e(Re(r(z))), { default: Ce(() => [d($t, null, { default: Ce(() => [je("div", { ref_key: "cardFieldRef", ref: Be }, null, 512)]), _: 1 })]), _: 1 }, 16)], 6)) : Fe("", !0)], 6)); +} }), la = Object.freeze(Object.defineProperty({ __proto__: null, VInlineAutocomplete: Fs, VInlineCheckbox: $s, VInlineCustomField: Ts, VInlineSelect: Es, VInlineSwitch: Ds, VInlineTextField: Ls, VInlineTextarea: Ws }, Symbol.toStringTag, { value: "Module" })), Tt = Symbol(); +function js(e = {}) { return { install: (n) => { - n.provide(Wt, e); - for (const t in Qo) - n.component(t, Qo[t]); + n.provide(Tt, e); + for (const t in la) + n.component(t, la[t]); } }; } export { - Ss as VInlineCheckbox, - Bs as VInlineCustomField, - xs as VInlineSelect, - ws as VInlineSwitch, - Fs as VInlineTextField, - As as VInlineTextarea, - Ps as createVInlineFields, - Qo as default, - Wt as globalOptions + Fs as VInlineAutocomplete, + $s as VInlineCheckbox, + Ts as VInlineCustomField, + Es as VInlineSelect, + Ds as VInlineSwitch, + Ls as VInlineTextField, + Ws as VInlineTextarea, + js as createVInlineFields, + la as default, + Tt as globalOptions }; -(function(){"use strict";try{if(typeof document<"u"){var i=document.createElement("style");i.appendChild(document.createTextNode(":root{--v-inline-fields-top-padding-compact: 13px;--v-inline-fields-top-padding-comfortable: 17px;--v-inline-fields-top-padding-default: 21px;--v-inline-fields-input-height: 24px;--v-inline-fields-density-compact-height: 32px;--v-inline-fields-density-comfortable-height: 40px;--v-inline-fields-grey: #909090}.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-input__append,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-input__append,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-input__append{padding-top:0!important}.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-input__append .v-icon{font-size:1rem!important}.v-inline-fields{position:relative}.v-inline-fields--display-container *{align-items:center;display:flex}.v-inline-fields--display-container-cell{cursor:pointer;display:block;max-height:unset!important}.v-inline-fields--display-container-cell>div{width:100%}.v-inline-fields--display-container-cell-underline-full-width .v-inline-fields--display-value{width:100%}.v-inline-fields--display-container-cell .v-inline-fields--selection-control .v-inline-fields--display-value{justify-content:center}.v-inline-fields--display-container-cell,.v-inline-fields--display-container-cell .v-input,.v-inline-fields--display-container-cell .v-inline-fields--display-wrapper,.v-inline-fields--display-container-cell .v-selection-control__wrapper{height:100%!important;width:100%}.v-inline-fields--display-value{cursor:pointer;letter-spacing:.009375em!important}.v-inline-fields--display-value-empty{color:var(--v-inline-fields-grey);font-style:italic}.v-inline-fields--display-value-checkbox,.v-inline-fields--display-value-switch{padding-bottom:2px;padding-top:6px}.v-inline-fields--display-append-icon,.v-inline-fields--display-prepend-icon,.v-inline-fields--display-append-inner-icon,.v-inline-fields--display-prepend-inner-icon{align-items:flex-end;display:inline-flex}.v-inline-fields--container-cell{height:100%;width:100%}.v-inline-fields--container-disabled .v-inline-fields--display-value{cursor:default!important;opacity:var(--v-disabled-opacity)}.v-inline-fields--container-loading .v-inline-fields--display-value{cursor:wait!important}.v-inline-fields--container-icon-set-fa .v-field__clearable{font-size:.8rem}.v-inline-fields--container-icon-set-fa .v-field__append-inner{align-items:flex-end;padding-bottom:0!important}.v-inline-fields--container-v-select-compact-plain .v-input,.v-inline-fields--container-v-select-compact-underlined .v-input,.v-inline-fields--container-v-text-field-compact-plain .v-input,.v-inline-fields--container-v-text-field-compact-underlined .v-input{height:var(--v-inline-fields-density-compact-height);max-height:var(--v-inline-fields-density-compact-height)}.v-inline-fields--container-v-select-compact-plain .v-input__control,.v-inline-fields--container-v-select-compact-underlined .v-input__control,.v-inline-fields--container-v-text-field-compact-plain .v-input__control,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control{padding-bottom:4px}.v-inline-fields--container-v-select-compact-plain .v-input>div,.v-inline-fields--container-v-select-compact-underlined .v-input>div,.v-inline-fields--container-v-text-field-compact-plain .v-input>div,.v-inline-fields--container-v-text-field-compact-underlined .v-input>div{height:inherit!important;max-height:inherit!important}.v-inline-fields--container-v-select-compact-plain .v-input .v-field__input,.v-inline-fields--container-v-select-compact-underlined .v-input .v-field__input,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-field__input,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-field__input{padding-top:0}.v-inline-fields--container-v-select-compact-plain .v-input .v-field__input input,.v-inline-fields--container-v-select-compact-underlined .v-input .v-field__input input,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-field__input input,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-field__input input{padding-bottom:10px}.v-inline-fields--container-v-select-compact-plain .v-input .v-select__selection,.v-inline-fields--container-v-select-compact-underlined .v-input .v-select__selection,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-select__selection,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-select__selection{align-items:center;padding-bottom:10px}.v-inline-fields--container-v-select-comfortable-plain .v-input,.v-inline-fields--container-v-select-comfortable-underlined .v-input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input{height:var(--v-inline-fields-density-comfortable-height);max-height:var(--v-inline-fields-density-comfortable-height)}.v-inline-fields--container-v-select-comfortable-plain .v-input__control,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control{padding-bottom:8px}.v-inline-fields--container-v-select-comfortable-plain .v-input>div,.v-inline-fields--container-v-select-comfortable-underlined .v-input>div,.v-inline-fields--container-v-text-field-comfortable-plain .v-input>div,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input>div{height:inherit!important;max-height:inherit!important}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-field__input,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-field__input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-field__input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-field__input{padding-top:0}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-field__input input,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-field__input input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-field__input input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-field__input input{padding-bottom:6px}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-select__selection,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-select__selection,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-select__selection,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-select__selection{align-items:center;padding-bottom:6px}.v-inline-fields--container-v-select-compact-plain .v-field__append-inner,.v-inline-fields--container-v-select-compact-underlined .v-field__append-inner{padding-top:4px!important}.v-inline-fields--container-v-select-comfortable-plain .v-field__append-inner,.v-inline-fields--container-v-select-comfortable-underlined .v-field__append-inner{padding-top:8px!important}.v-inline-fields--container-v-textarea .v-inline-fields--save-fields-container{align-items:flex-end}.v-inline-fields--container-v-select,.v-inline-fields--container-v-textarea,.v-inline-fields--container-v-text-field{width:100%}.v-inline-fields--container-v-checkbox .v-input,.v-inline-fields--container-v-switch .v-input{align-items:center;display:flex;padding-bottom:0}.v-inline-fields--container-v-checkbox .v-input__append,.v-inline-fields--container-v-switch .v-input__append{margin-inline-start:0!important;margin-left:0;padding-bottom:0!important}.v-inline-fields--container-v-checkbox .v-selection-control,.v-inline-fields--container-v-switch .v-selection-control{min-height:unset}.v-inline-fields--container-v-checkbox .v-inline-fields--save-fields-container,.v-inline-fields--container-v-switch .v-inline-fields--save-fields-container{align-items:center!important}.v-inline-fields--container .v-input__append,.v-inline-fields--container .v-input__prepend,.v-inline-fields--container .v-field__append-inner,.v-inline-fields--container .v-field__prepend-inner{padding-top:0!important}.v-inline-fields--container .v-input__append .v-icon,.v-inline-fields--container .v-input__prepend .v-icon,.v-inline-fields--container .v-field__append-inner .v-icon,.v-inline-fields--container .v-field__prepend-inner .v-icon{font-size:1rem!important}.v-inline-fields--container .v-field__append-inner,.v-inline-fields--container .v-field__prepend-inner{padding-bottom:10px!important}.v-inline-fields--container-compact .v-input__append,.v-inline-fields--container-compact .v-input__prepend,.v-inline-fields--container-compact .v-field__append-inner,.v-inline-fields--container-compact .v-field__prepend-inner{align-items:center!important}.v-inline-fields--container-compact .v-field__append-inner,.v-inline-fields--container-compact .v-field__prepend-inner{padding-bottom:10px!important}.v-inline-fields--container-comfortable .v-input__append,.v-inline-fields--container-comfortable .v-input__prepend,.v-inline-fields--container-comfortable .v-field__append-inner,.v-inline-fields--container-comfortable .v-field__prepend-inner{align-items:center!important}.v-inline-fields--container-comfortable .v-field__append-inner,.v-inline-fields--container-comfortable .v-field__prepend-inner{padding-bottom:6px!important}.v-inline-fields--container-default .v-input__append,.v-inline-fields--container-default .v-input__prepend,.v-inline-fields--container-default .v-field__append-inner,.v-inline-fields--container-default .v-field__prepend-inner{align-items:flex-end!important;padding-bottom:0!important}.v-inline-fields--container-default .v-input__append .v-icon,.v-inline-fields--container-default .v-input__prepend .v-icon,.v-inline-fields--container-default .v-field__append-inner .v-icon,.v-inline-fields--container-default .v-field__prepend-inner .v-icon{font-size:calc(var(--v-icon-size-multiplier) * 1.5em)!important}.v-inline-fields--container-default .v-inline-fields--save-fields-container{align-items:flex-end!important}.v-inline-fields--card-container{height:fit-content;min-width:fit-content!important;position:absolute}.v-inline-fields--card-container .v-card{border:1px solid hsla(0,0%,50%,.5)}.v-inline-fields--card-container .v-card .v-card-text{padding:5px 10px}.v-inline-fields--card-container .v-card .v-card-text>div{align-items:center;display:flex}.v-inline-fields--card-container-checkbox .v-card .v-card-text .v-input__append{margin-inline-start:0}.v-inline-fields--save-fields-container{align-items:center;display:flex;height:100%;margin-left:.1rem}.v-inline-fields--boolean-icons{font-size:calc(var(--v-icon-size-multiplier) * 1em)}.v-inline-fields .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:250px}.v-inline-fields .v-input__append{padding-top:0}[data-v-bf7fbbc3] .v-field__field{align-items:flex-end!important}")),document.head.appendChild(i)}}catch(n){console.error("vite-plugin-css-injected-by-js",n)}})(); +(function(){"use strict";try{if(typeof document<"u"){var i=document.createElement("style");i.appendChild(document.createTextNode(":root{--v-inline-fields-top-padding-compact: 13px;--v-inline-fields-top-padding-comfortable: 17px;--v-inline-fields-top-padding-default: 21px;--v-inline-fields-input-height: 24px;--v-inline-fields-density-compact-height: 32px;--v-inline-fields-density-comfortable-height: 40px;--v-inline-fields-grey: #909090}.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-field__clearable,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-field__clearable,.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-input__append,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-input__append,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-input__append,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-input__append{padding-top:0!important}.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-field__clearable .v-icon,.v-inline-fields--container-v-select-comfortable-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-compact-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-select-compact-underlined .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-compact-plain .v-input__control .v-input__append .v-icon,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control .v-input__append .v-icon{font-size:1rem!important}.v-inline-fields{position:relative}.v-inline-fields--display-container *{align-items:center;display:flex}.v-inline-fields--display-container-cell{cursor:pointer;display:block;max-height:unset!important}.v-inline-fields--display-container-cell>div{width:100%}.v-inline-fields--display-container-cell-underline-full-width .v-inline-fields--display-value{width:100%}.v-inline-fields--display-container-cell .v-inline-fields--selection-control .v-inline-fields--display-value{justify-content:center}.v-inline-fields--display-container-cell,.v-inline-fields--display-container-cell .v-input,.v-inline-fields--display-container-cell .v-inline-fields--display-wrapper,.v-inline-fields--display-container-cell .v-selection-control__wrapper{height:100%!important;width:100%}.v-inline-fields--display-value{cursor:pointer;letter-spacing:.009375em!important}.v-inline-fields--display-value-empty{color:var(--v-inline-fields-grey);font-style:italic}.v-inline-fields--display-value-checkbox,.v-inline-fields--display-value-switch{padding-bottom:2px;padding-top:6px}.v-inline-fields--display-append-icon,.v-inline-fields--display-prepend-icon,.v-inline-fields--display-append-inner-icon,.v-inline-fields--display-prepend-inner-icon{align-items:flex-end;display:inline-flex}.v-inline-fields--container-cell{height:100%;width:100%}.v-inline-fields--container-disabled .v-inline-fields--display-value{cursor:default!important;opacity:var(--v-disabled-opacity)}.v-inline-fields--container-loading .v-inline-fields--display-value{cursor:wait!important}.v-inline-fields--container-icon-set-fa .v-field__clearable{font-size:.8rem}.v-inline-fields--container-icon-set-fa .v-field__append-inner{align-items:flex-end;padding-bottom:0!important}.v-inline-fields--container-v-select-compact-plain .v-input,.v-inline-fields--container-v-select-compact-underlined .v-input,.v-inline-fields--container-v-text-field-compact-plain .v-input,.v-inline-fields--container-v-text-field-compact-underlined .v-input{height:var(--v-inline-fields-density-compact-height);max-height:var(--v-inline-fields-density-compact-height)}.v-inline-fields--container-v-select-compact-plain .v-input__control,.v-inline-fields--container-v-select-compact-underlined .v-input__control,.v-inline-fields--container-v-text-field-compact-plain .v-input__control,.v-inline-fields--container-v-text-field-compact-underlined .v-input__control{padding-bottom:4px}.v-inline-fields--container-v-select-compact-plain .v-input>div,.v-inline-fields--container-v-select-compact-underlined .v-input>div,.v-inline-fields--container-v-text-field-compact-plain .v-input>div,.v-inline-fields--container-v-text-field-compact-underlined .v-input>div{height:inherit!important;max-height:inherit!important}.v-inline-fields--container-v-select-compact-plain .v-input .v-field__input,.v-inline-fields--container-v-select-compact-underlined .v-input .v-field__input,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-field__input,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-field__input{padding-top:0}.v-inline-fields--container-v-select-compact-plain .v-input .v-field__input input,.v-inline-fields--container-v-select-compact-underlined .v-input .v-field__input input,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-field__input input,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-field__input input{padding-bottom:10px}.v-inline-fields--container-v-select-compact-plain .v-input .v-select__selection,.v-inline-fields--container-v-select-compact-underlined .v-input .v-select__selection,.v-inline-fields--container-v-text-field-compact-plain .v-input .v-select__selection,.v-inline-fields--container-v-text-field-compact-underlined .v-input .v-select__selection{align-items:center;padding-bottom:10px}.v-inline-fields--container-v-select-comfortable-plain .v-input,.v-inline-fields--container-v-select-comfortable-underlined .v-input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input{height:var(--v-inline-fields-density-comfortable-height);max-height:var(--v-inline-fields-density-comfortable-height)}.v-inline-fields--container-v-select-comfortable-plain .v-input__control,.v-inline-fields--container-v-select-comfortable-underlined .v-input__control,.v-inline-fields--container-v-text-field-comfortable-plain .v-input__control,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input__control{padding-bottom:8px}.v-inline-fields--container-v-select-comfortable-plain .v-input>div,.v-inline-fields--container-v-select-comfortable-underlined .v-input>div,.v-inline-fields--container-v-text-field-comfortable-plain .v-input>div,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input>div{height:inherit!important;max-height:inherit!important}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-field__input,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-field__input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-field__input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-field__input{padding-top:0}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-field__input input,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-field__input input,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-field__input input,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-field__input input{padding-bottom:6px}.v-inline-fields--container-v-select-comfortable-plain .v-input .v-select__selection,.v-inline-fields--container-v-select-comfortable-underlined .v-input .v-select__selection,.v-inline-fields--container-v-text-field-comfortable-plain .v-input .v-select__selection,.v-inline-fields--container-v-text-field-comfortable-underlined .v-input .v-select__selection{align-items:center;padding-bottom:6px}.v-inline-fields--container-v-select-compact-plain .v-field__append-inner,.v-inline-fields--container-v-select-compact-underlined .v-field__append-inner{padding-top:4px!important}.v-inline-fields--container-v-select-comfortable-plain .v-field__append-inner,.v-inline-fields--container-v-select-comfortable-underlined .v-field__append-inner{padding-top:8px!important}.v-inline-fields--container-v-textarea .v-inline-fields--save-fields-container{align-items:flex-end}.v-inline-fields--container-v-select,.v-inline-fields--container-v-textarea,.v-inline-fields--container-v-text-field{width:100%}.v-inline-fields--container-v-checkbox .v-input,.v-inline-fields--container-v-switch .v-input{align-items:center;display:flex;padding-bottom:0}.v-inline-fields--container-v-checkbox .v-input__append,.v-inline-fields--container-v-switch .v-input__append{margin-inline-start:0!important;margin-left:0;padding-bottom:0!important}.v-inline-fields--container-v-checkbox .v-selection-control,.v-inline-fields--container-v-switch .v-selection-control{min-height:unset}.v-inline-fields--container-v-checkbox .v-inline-fields--save-fields-container,.v-inline-fields--container-v-switch .v-inline-fields--save-fields-container{align-items:center!important}.v-inline-fields--container .v-input__append,.v-inline-fields--container .v-input__prepend,.v-inline-fields--container .v-field__append-inner,.v-inline-fields--container .v-field__prepend-inner{padding-top:0!important}.v-inline-fields--container .v-input__append .v-icon,.v-inline-fields--container .v-input__prepend .v-icon,.v-inline-fields--container .v-field__append-inner .v-icon,.v-inline-fields--container .v-field__prepend-inner .v-icon{font-size:1rem!important}.v-inline-fields--container .v-field__append-inner,.v-inline-fields--container .v-field__prepend-inner{padding-bottom:10px!important}.v-inline-fields--container-compact .v-input__append,.v-inline-fields--container-compact .v-input__prepend,.v-inline-fields--container-compact .v-field__append-inner,.v-inline-fields--container-compact .v-field__prepend-inner{align-items:center!important}.v-inline-fields--container-compact .v-field__append-inner,.v-inline-fields--container-compact .v-field__prepend-inner{padding-bottom:10px!important}.v-inline-fields--container-comfortable .v-input__append,.v-inline-fields--container-comfortable .v-input__prepend,.v-inline-fields--container-comfortable .v-field__append-inner,.v-inline-fields--container-comfortable .v-field__prepend-inner{align-items:center!important}.v-inline-fields--container-comfortable .v-field__append-inner,.v-inline-fields--container-comfortable .v-field__prepend-inner{padding-bottom:6px!important}.v-inline-fields--container-default .v-input__append,.v-inline-fields--container-default .v-input__prepend,.v-inline-fields--container-default .v-field__append-inner,.v-inline-fields--container-default .v-field__prepend-inner{align-items:flex-end!important;padding-bottom:0!important}.v-inline-fields--container-default .v-input__append .v-icon,.v-inline-fields--container-default .v-input__prepend .v-icon,.v-inline-fields--container-default .v-field__append-inner .v-icon,.v-inline-fields--container-default .v-field__prepend-inner .v-icon{font-size:calc(var(--v-icon-size-multiplier) * 1.5em)!important}.v-inline-fields--container-default .v-inline-fields--save-fields-container{align-items:flex-end!important}.v-inline-fields--card-container{height:fit-content;min-width:fit-content!important;position:absolute}.v-inline-fields--card-container .v-card{border:1px solid hsla(0,0%,50%,.5)}.v-inline-fields--card-container .v-card .v-card-text{padding:5px 10px}.v-inline-fields--card-container .v-card .v-card-text>div{align-items:center;display:flex}.v-inline-fields--card-container-checkbox .v-card .v-card-text .v-input__append{margin-inline-start:0}.v-inline-fields--save-fields-container{align-items:center;display:flex;height:100%;margin-left:.1rem}.v-inline-fields--boolean-icons{font-size:calc(var(--v-icon-size-multiplier) * 1em)}.v-inline-fields .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:250px}.v-inline-fields .v-input__append{padding-top:0}[data-v-f9b47ea2] .v-field__field,[data-v-4f65a7ea] .v-field__field{align-items:flex-end!important}")),document.head.appendChild(i)}}catch(n){console.error("vite-plugin-css-injected-by-js",n)}})(); diff --git a/package.json b/package.json index 463829d..0a288ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@wdns/vuetify-inline-fields", - "version": "1.0.4", + "version": "1.0.5", "description": "Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications.", "private": false, "publishConfig": { @@ -10,9 +10,9 @@ "module": "dist/vuetify-inline-fields.es.js", "types": "dist/plugin/types/index.d.ts", "scripts": { - "dev": "vite", + "dev": "NODE_OPTIONS='--no-warnings' vite", "watch": "pnpm dev", - "play": "sh src/playground/configs/build.sh && NODE_ENV=playground vite", + "play": "sh src/playground/configs/build.sh && NODE_ENV=playground pnpm dev", "build": "vue-tsc && npm run test:build && vite build --config vite.build.config.mts", "build:docs": "vite build", "predeploy": "npm run build", @@ -20,7 +20,7 @@ "prepublishOnly": "npm run build", "lint": "eslint src/**/*.{ts,vue} --max-warnings 20", "prepare": "husky install", - "test:dev": "vitest", + "test:dev": "NODE_OPTIONS='--no-warnings' vitest", "test:all": "vitest --run", "test:build": "vitest --run --bail 1" }, @@ -55,11 +55,15 @@ "vuetify-inline-fields", "vuetify", "vuetify3", + "autocomplete", "checkbox", + "form", + "forms", + "input", "select", "switch", - "text-field", "textarea", + "textfield", "vue", "vue3", "component", @@ -69,9 +73,9 @@ "wdns" ], "dependencies": { - "@vueuse/core": "^10.7.0", - "vue": "^3.3.12", - "vuetify": "^3.4.7" + "@vueuse/core": "^10.7.1", + "vue": "^3.4.8", + "vuetify": "^3.4.10" }, "devDependencies": { "@fortawesome/fontawesome-svg-core": "^6.5.1", @@ -79,17 +83,17 @@ "@fortawesome/free-regular-svg-icons": "^6.5.1", "@fortawesome/free-solid-svg-icons": "^6.5.1", "@fortawesome/vue-fontawesome": "^3.0.5", - "@mdi/font": "^7.3.67", + "@mdi/font": "^7.4.47", "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-terser": "^0.4.4", - "@types/node": "^20.10.5", - "@typescript-eslint/eslint-plugin": "^6.15.0", - "@typescript-eslint/parser": "^6.15.0", - "@vitejs/plugin-vue": "^4.5.2", + "@stylistic/stylelint-plugin": "^2.0.0", + "@types/node": "^20.10.8", + "@typescript-eslint/eslint-plugin": "^6.18.1", + "@typescript-eslint/parser": "^6.18.1", + "@vitejs/plugin-vue": "^5.0.3", "@vue/cli-plugin-eslint": "^5.0.8", "@vue/cli-service": "^5.0.8", - "@vue/compiler-sfc": "^3.3.12", "@vue/eslint-config-typescript": "^12.0.0", "@vue/test-utils": "^2.4.3", "@wdns/vue-code-block": "^2.3.1", @@ -97,42 +101,42 @@ "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", - "eslint-plugin-prettier": "^5.0.1", - "eslint-plugin-vue": "^9.19.2", - "gh-pages": "^6.1.0", + "eslint-plugin-prettier": "^5.1.3", + "eslint-plugin-vue": "^9.20.0", + "gh-pages": "^6.1.1", "husky": "^8.0.3", - "jsdom": "^23.0.1", + "jsdom": "^23.2.0", "lint-staged": "^15.2.0", "miragejs": "^0.1.48", "pinia": "^2.1.7", - "postcss": "^8.4.32", + "postcss": "^8.4.33", "postcss-html": "^1.5.0", "postcss-scss": "^4.0.9", "prettier": "^3.1.1", "prismjs": "^1.29.0", "roboto-fontface": "^0.10.0", - "rollup": "^4.9.1", + "rollup": "^4.9.4", "rollup-plugin-polyfill-node": "^0.13.0", "rollup-plugin-postcss": "^4.0.2", "rollup-plugin-scss": "^4.0.0", "rollup-plugin-typescript2": "^0.36.0", - "sass": "^1.69.5", - "stylelint": "^15.11.0", - "stylelint-config-standard": "^34.0.0", - "stylelint-order": "^6.0.3", - "stylelint-scss": "^5.3.1", + "sass": "^1.69.7", + "stylelint": "^16.1.0", + "stylelint-config-standard": "^36.0.0", + "stylelint-order": "^6.0.4", + "stylelint-scss": "^6.0.0", "typescript": "^5.3.3", - "unplugin-auto-import": "^0.17.2", - "vite": "^4.5.0", - "vite-plugin-babel": "^1.1.3", - "vite-plugin-css-injected-by-js": "^3.3.0", - "vite-plugin-dts": "^3.6.4", + "unplugin-auto-import": "^0.17.3", + "vite": "^5.0.11", + "vite-plugin-babel": "^1.2.0", + "vite-plugin-css-injected-by-js": "^3.3.1", + "vite-plugin-dts": "^3.7.0", "vite-plugin-eslint": "^1.8.1", - "vite-plugin-static-copy": "^0.17.1", - "vite-plugin-stylelint": "^5.3.0", - "vite-plugin-vuetify": "^1.0.2", - "vitest": "^1.0.4", - "vue-tsc": "^1.8.25", + "vite-plugin-static-copy": "^1.0.0", + "vite-plugin-stylelint": "^5.3.1", + "vite-plugin-vuetify": "^2.0.1", + "vitest": "^1.1.3", + "vue-tsc": "^1.8.27", "webfontloader": "^1.6.28" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 88de5f6..2e7a0bb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,14 +6,14 @@ settings: dependencies: '@vueuse/core': - specifier: ^10.7.0 - version: 10.7.0(vue@3.3.12) + specifier: ^10.7.1 + version: 10.7.1(vue@3.4.10) vue: - specifier: ^3.3.12 - version: 3.3.12(typescript@5.3.3) + specifier: ^3.4.8 + version: 3.4.10(typescript@5.3.3) vuetify: - specifier: ^3.4.7 - version: 3.4.7(typescript@5.3.3)(vite-plugin-vuetify@1.0.2)(vue@3.3.12) + specifier: ^3.4.10 + version: 3.4.10(typescript@5.3.3)(vite-plugin-vuetify@2.0.1)(vue@3.4.10) devDependencies: '@fortawesome/fontawesome-svg-core': @@ -30,52 +30,52 @@ devDependencies: version: 6.5.1 '@fortawesome/vue-fontawesome': specifier: ^3.0.5 - version: 3.0.5(@fortawesome/fontawesome-svg-core@6.5.1)(vue@3.3.12) + version: 3.0.5(@fortawesome/fontawesome-svg-core@6.5.1)(vue@3.4.10) '@mdi/font': - specifier: ^7.3.67 - version: 7.3.67 + specifier: ^7.4.47 + version: 7.4.47 '@rollup/plugin-commonjs': specifier: ^25.0.7 - version: 25.0.7(rollup@4.9.1) + version: 25.0.7(rollup@4.9.4) '@rollup/plugin-node-resolve': specifier: ^15.2.3 - version: 15.2.3(rollup@4.9.1) + version: 15.2.3(rollup@4.9.4) '@rollup/plugin-terser': specifier: ^0.4.4 - version: 0.4.4(rollup@4.9.1) + version: 0.4.4(rollup@4.9.4) + '@stylistic/stylelint-plugin': + specifier: ^2.0.0 + version: 2.0.0(stylelint@16.1.0) '@types/node': - specifier: ^20.10.5 - version: 20.10.5 + specifier: ^20.10.8 + version: 20.11.0 '@typescript-eslint/eslint-plugin': - specifier: ^6.15.0 - version: 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3) + specifier: ^6.18.1 + version: 6.18.1(@typescript-eslint/parser@6.18.1)(eslint@8.56.0)(typescript@5.3.3) '@typescript-eslint/parser': - specifier: ^6.15.0 - version: 6.15.0(eslint@8.56.0)(typescript@5.3.3) + specifier: ^6.18.1 + version: 6.18.1(eslint@8.56.0)(typescript@5.3.3) '@vitejs/plugin-vue': - specifier: ^4.5.2 - version: 4.5.2(vite@4.5.0)(vue@3.3.12) + specifier: ^5.0.3 + version: 5.0.3(vite@5.0.11)(vue@3.4.10) '@vue/cli-plugin-eslint': specifier: ^5.0.8 version: 5.0.8(@vue/cli-service@5.0.8)(eslint@8.56.0) '@vue/cli-service': specifier: ^5.0.8 - version: 5.0.8(@babel/core@7.23.6)(@vue/compiler-sfc@3.3.12)(prettier@3.1.1)(vue@3.3.12) - '@vue/compiler-sfc': - specifier: ^3.3.12 - version: 3.3.12 + version: 5.0.8(@babel/core@7.23.7)(prettier@3.1.1)(vue@3.4.10) '@vue/eslint-config-typescript': specifier: ^12.0.0 - version: 12.0.0(eslint-plugin-vue@9.19.2)(eslint@8.56.0)(typescript@5.3.3) + version: 12.0.0(eslint-plugin-vue@9.20.0)(eslint@8.56.0)(typescript@5.3.3) '@vue/test-utils': specifier: ^2.4.3 - version: 2.4.3(vue@3.3.12) + version: 2.4.3(vue@3.4.10) '@wdns/vue-code-block': specifier: ^2.3.1 version: 2.3.1(typescript@5.3.3) autoprefixer: specifier: ^10.4.16 - version: 10.4.16(postcss@8.4.32) + version: 10.4.16(postcss@8.4.33) eslint: specifier: ^8.56.0 version: 8.56.0 @@ -84,22 +84,22 @@ devDependencies: version: 9.1.0(eslint@8.56.0) eslint-plugin-import: specifier: ^2.29.1 - version: 2.29.1(@typescript-eslint/parser@6.15.0)(eslint@8.56.0) + version: 2.29.1(@typescript-eslint/parser@6.18.1)(eslint@8.56.0) eslint-plugin-prettier: - specifier: ^5.0.1 - version: 5.0.1(eslint-config-prettier@9.1.0)(eslint@8.56.0)(prettier@3.1.1) + specifier: ^5.1.3 + version: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.56.0)(prettier@3.1.1) eslint-plugin-vue: - specifier: ^9.19.2 - version: 9.19.2(eslint@8.56.0) + specifier: ^9.20.0 + version: 9.20.0(eslint@8.56.0) gh-pages: - specifier: ^6.1.0 - version: 6.1.0 + specifier: ^6.1.1 + version: 6.1.1 husky: specifier: ^8.0.3 version: 8.0.3 jsdom: - specifier: ^23.0.1 - version: 23.0.1 + specifier: ^23.2.0 + version: 23.2.0 lint-staged: specifier: ^15.2.0 version: 15.2.0 @@ -108,16 +108,16 @@ devDependencies: version: 0.1.48 pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.3.12) + version: 2.1.7(typescript@5.3.3)(vue@3.4.10) postcss: - specifier: ^8.4.32 - version: 8.4.32 + specifier: ^8.4.33 + version: 8.4.33 postcss-html: specifier: ^1.5.0 version: 1.5.0 postcss-scss: specifier: ^4.0.9 - version: 4.0.9(postcss@8.4.32) + version: 4.0.9(postcss@8.4.33) prettier: specifier: ^3.1.1 version: 3.1.1 @@ -128,71 +128,71 @@ devDependencies: specifier: ^0.10.0 version: 0.10.0 rollup: - specifier: ^4.9.1 - version: 4.9.1 + specifier: ^4.9.4 + version: 4.9.4 rollup-plugin-polyfill-node: specifier: ^0.13.0 - version: 0.13.0(rollup@4.9.1) + version: 0.13.0(rollup@4.9.4) rollup-plugin-postcss: specifier: ^4.0.2 - version: 4.0.2(postcss@8.4.32) + version: 4.0.2(postcss@8.4.33) rollup-plugin-scss: specifier: ^4.0.0 version: 4.0.0 rollup-plugin-typescript2: specifier: ^0.36.0 - version: 0.36.0(rollup@4.9.1)(typescript@5.3.3) + version: 0.36.0(rollup@4.9.4)(typescript@5.3.3) sass: - specifier: ^1.69.5 - version: 1.69.5 + specifier: ^1.69.7 + version: 1.69.7 stylelint: - specifier: ^15.11.0 - version: 15.11.0(typescript@5.3.3) + specifier: ^16.1.0 + version: 16.1.0(typescript@5.3.3) stylelint-config-standard: - specifier: ^34.0.0 - version: 34.0.0(stylelint@15.11.0) + specifier: ^36.0.0 + version: 36.0.0(stylelint@16.1.0) stylelint-order: - specifier: ^6.0.3 - version: 6.0.3(stylelint@15.11.0) + specifier: ^6.0.4 + version: 6.0.4(stylelint@16.1.0) stylelint-scss: - specifier: ^5.3.1 - version: 5.3.1(stylelint@15.11.0) + specifier: ^6.0.0 + version: 6.0.0(stylelint@16.1.0) typescript: specifier: ^5.3.3 version: 5.3.3 unplugin-auto-import: - specifier: ^0.17.2 - version: 0.17.2(@vueuse/core@10.7.0)(rollup@4.9.1) + specifier: ^0.17.3 + version: 0.17.3(@vueuse/core@10.7.1)(rollup@4.9.4) vite: - specifier: ^4.5.0 - version: 4.5.0(@types/node@20.10.5)(sass@1.69.5) + specifier: ^5.0.11 + version: 5.0.11(@types/node@20.11.0)(sass@1.69.7) vite-plugin-babel: - specifier: ^1.1.3 - version: 1.1.3(@babel/core@7.23.6)(vite@4.5.0) + specifier: ^1.2.0 + version: 1.2.0(@babel/core@7.23.7)(vite@5.0.11) vite-plugin-css-injected-by-js: - specifier: ^3.3.0 - version: 3.3.0(vite@4.5.0) + specifier: ^3.3.1 + version: 3.3.1(vite@5.0.11) vite-plugin-dts: - specifier: ^3.6.4 - version: 3.6.4(@types/node@20.10.5)(rollup@4.9.1)(typescript@5.3.3)(vite@4.5.0) + specifier: ^3.7.0 + version: 3.7.0(@types/node@20.11.0)(rollup@4.9.4)(typescript@5.3.3)(vite@5.0.11) vite-plugin-eslint: specifier: ^1.8.1 - version: 1.8.1(eslint@8.56.0)(vite@4.5.0) + version: 1.8.1(eslint@8.56.0)(vite@5.0.11) vite-plugin-static-copy: - specifier: ^0.17.1 - version: 0.17.1(vite@4.5.0) + specifier: ^1.0.0 + version: 1.0.0(vite@5.0.11) vite-plugin-stylelint: - specifier: ^5.3.0 - version: 5.3.0(postcss@8.4.32)(rollup@4.9.1)(stylelint@15.11.0)(vite@4.5.0) + specifier: ^5.3.1 + version: 5.3.1(postcss@8.4.33)(rollup@4.9.4)(stylelint@16.1.0)(vite@5.0.11) vite-plugin-vuetify: - specifier: ^1.0.2 - version: 1.0.2(vite@4.5.0)(vue@3.3.12)(vuetify@3.4.7) + specifier: ^2.0.1 + version: 2.0.1(vite@5.0.11)(vue@3.4.10)(vuetify@3.4.10) vitest: - specifier: ^1.0.4 - version: 1.0.4(@types/node@20.10.5)(jsdom@23.0.1)(sass@1.69.5) + specifier: ^1.1.3 + version: 1.1.3(@types/node@20.11.0)(jsdom@23.2.0)(sass@1.69.7) vue-tsc: - specifier: ^1.8.25 - version: 1.8.25(typescript@5.3.3) + specifier: ^1.8.27 + version: 1.8.27(typescript@5.3.3) webfontloader: specifier: ^1.6.28 version: 1.6.28 @@ -221,8 +221,16 @@ packages: '@jridgewell/trace-mapping': 0.3.20 dev: true - /@antfu/utils@0.7.6: - resolution: {integrity: sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==} + /@antfu/utils@0.7.7: + resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==} + dev: true + + /@asamuzakjp/dom-selector@2.0.1: + resolution: {integrity: sha512-QJAJffmCiymkv6YyQ7voyQb5caCth6jzZsQncYCpHXrJ7RqdYG5y43+is8mnFcYubdOkr7cn1+na9BdFMxqw7w==} + dependencies: + bidi-js: 1.0.3 + css-tree: 2.3.1 + is-potential-custom-element-name: 1.0.1 dev: true /@babel/code-frame@7.22.13: @@ -251,19 +259,19 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/core@7.23.6: - resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==} + /@babel/core@7.23.7: + resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.23.5 '@babel/generator': 7.23.6 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6) - '@babel/helpers': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helpers': 7.23.8 '@babel/parser': 7.23.6 '@babel/template': 7.22.15 - '@babel/traverse': 7.23.6 + '@babel/traverse': 7.23.7 '@babel/types': 7.23.6 convert-source-map: 2.0.0 debug: 4.3.4 @@ -284,14 +292,14 @@ packages: jsesc: 2.5.2 dev: true - /@babel/helper-compilation-targets@7.21.5(@babel/core@7.23.6): + /@babel/helper-compilation-targets@7.21.5(@babel/core@7.23.7): resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.23.2 - '@babel/core': 7.23.6 + '@babel/core': 7.23.7 '@babel/helper-validator-option': 7.22.15 browserslist: 4.21.5 lru-cache: 5.1.1 @@ -336,13 +344,13 @@ packages: '@babel/types': 7.23.6 dev: true - /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.6): + /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7): resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.6 + '@babel/core': 7.23.7 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 @@ -382,12 +390,12 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helpers@7.23.6: - resolution: {integrity: sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==} + /@babel/helpers@7.23.8: + resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.15 - '@babel/traverse': 7.23.6 + '@babel/traverse': 7.23.7 '@babel/types': 7.23.6 transitivePeerDependencies: - supports-color @@ -411,14 +419,6 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/parser@7.23.5: - resolution: {integrity: sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.23.5 - dev: true - /@babel/parser@7.23.6: resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} engines: {node: '>=6.0.0'} @@ -435,8 +435,8 @@ packages: '@babel/types': 7.23.6 dev: true - /@babel/traverse@7.23.6: - resolution: {integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==} + /@babel/traverse@7.23.7: + resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.23.5 @@ -453,15 +453,6 @@ packages: - supports-color dev: true - /@babel/types@7.23.5: - resolution: {integrity: sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 - dev: true - /@babel/types@7.23.6: resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} engines: {node: '>=6.9.0'} @@ -470,38 +461,38 @@ packages: '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 - /@csstools/css-parser-algorithms@2.3.2(@csstools/css-tokenizer@2.2.1): - resolution: {integrity: sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA==} + /@csstools/css-parser-algorithms@2.5.0(@csstools/css-tokenizer@2.2.3): + resolution: {integrity: sha512-abypo6m9re3clXA00eu5syw+oaPHbJTPapu9C4pzNsJ4hdZDzushT50Zhu+iIYXgEe1CxnRMn7ngsbV+MLrlpQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - '@csstools/css-tokenizer': ^2.2.1 + '@csstools/css-tokenizer': ^2.2.3 dependencies: - '@csstools/css-tokenizer': 2.2.1 + '@csstools/css-tokenizer': 2.2.3 dev: true - /@csstools/css-tokenizer@2.2.1: - resolution: {integrity: sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg==} + /@csstools/css-tokenizer@2.2.3: + resolution: {integrity: sha512-pp//EvZ9dUmGuGtG1p+n17gTHEOqu9jO+FiCUjNN3BDmyhdA2Jq9QsVeR7K8/2QCK17HSsioPlTW9ZkzoWb3Lg==} engines: {node: ^14 || ^16 || >=18} dev: true - /@csstools/media-query-list-parser@2.1.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.1): - resolution: {integrity: sha512-IxVBdYzR8pYe89JiyXQuYk4aVVoCPhMJkz6ElRwlVysjwURTsTk/bmY/z4FfeRE+CRBMlykPwXEVUg8lThv7AQ==} + /@csstools/media-query-list-parser@2.1.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3): + resolution: {integrity: sha512-lHPKJDkPUECsyAvD60joYfDmp8UERYxHGkFfyLJFTVK/ERJe0sVlIFLXU5XFxdjNDTerp5L4KeaKG+Z5S94qxQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - '@csstools/css-parser-algorithms': ^2.3.2 - '@csstools/css-tokenizer': ^2.2.1 + '@csstools/css-parser-algorithms': ^2.5.0 + '@csstools/css-tokenizer': ^2.2.3 dependencies: - '@csstools/css-parser-algorithms': 2.3.2(@csstools/css-tokenizer@2.2.1) - '@csstools/css-tokenizer': 2.2.1 + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 dev: true - /@csstools/selector-specificity@3.0.0(postcss-selector-parser@6.0.13): - resolution: {integrity: sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==} + /@csstools/selector-specificity@3.0.1(postcss-selector-parser@6.0.15): + resolution: {integrity: sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss-selector-parser: ^6.0.13 dependencies: - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.15 dev: true /@discoveryjs/json-ext@0.5.7: @@ -509,380 +500,190 @@ packages: engines: {node: '>=10.0.0'} dev: true - /@esbuild/android-arm64@0.18.20: - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + /@esbuild/aix-ppc64@0.19.11: + resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==} engines: {node: '>=12'} - cpu: [arm64] - os: [android] + cpu: [ppc64] + os: [aix] requiresBuild: true optional: true - /@esbuild/android-arm64@0.19.9: - resolution: {integrity: sha512-q4cR+6ZD0938R19MyEW3jEsMzbb/1rulLXiNAJQADD/XYp7pT+rOS5JGxvpRW8dFDEfjW4wLgC/3FXIw4zYglQ==} + /@esbuild/android-arm64@0.19.11: + resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true - dev: true optional: true - /@esbuild/android-arm@0.18.20: - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + /@esbuild/android-arm@0.19.11: + resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} engines: {node: '>=12'} cpu: [arm] os: [android] requiresBuild: true optional: true - /@esbuild/android-arm@0.19.9: - resolution: {integrity: sha512-jkYjjq7SdsWuNI6b5quymW0oC83NN5FdRPuCbs9HZ02mfVdAP8B8eeqLSYU3gb6OJEaY5CQabtTFbqBf26H3GA==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-x64@0.18.20: - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + /@esbuild/android-x64@0.19.11: + resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} engines: {node: '>=12'} cpu: [x64] os: [android] requiresBuild: true optional: true - /@esbuild/android-x64@0.19.9: - resolution: {integrity: sha512-KOqoPntWAH6ZxDwx1D6mRntIgZh9KodzgNOy5Ebt9ghzffOk9X2c1sPwtM9P+0eXbefnDhqYfkh5PLP5ULtWFA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-arm64@0.18.20: - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + /@esbuild/darwin-arm64@0.19.11: + resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /@esbuild/darwin-arm64@0.19.9: - resolution: {integrity: sha512-KBJ9S0AFyLVx2E5D8W0vExqRW01WqRtczUZ8NRu+Pi+87opZn5tL4Y0xT0mA4FtHctd0ZgwNoN639fUUGlNIWw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-x64@0.18.20: - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + /@esbuild/darwin-x64@0.19.11: + resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /@esbuild/darwin-x64@0.19.9: - resolution: {integrity: sha512-vE0VotmNTQaTdX0Q9dOHmMTao6ObjyPm58CHZr1UK7qpNleQyxlFlNCaHsHx6Uqv86VgPmR4o2wdNq3dP1qyDQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-arm64@0.18.20: - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true - - /@esbuild/freebsd-arm64@0.19.9: - resolution: {integrity: sha512-uFQyd/o1IjiEk3rUHSwUKkqZwqdvuD8GevWF065eqgYfexcVkxh+IJgwTaGZVu59XczZGcN/YMh9uF1fWD8j1g==} + /@esbuild/freebsd-arm64@0.19.11: + resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-x64@0.18.20: - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true optional: true - /@esbuild/freebsd-x64@0.19.9: - resolution: {integrity: sha512-WMLgWAtkdTbTu1AWacY7uoj/YtHthgqrqhf1OaEWnZb7PQgpt8eaA/F3LkV0E6K/Lc0cUr/uaVP/49iE4M4asA==} + /@esbuild/freebsd-x64@0.19.11: + resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true - dev: true optional: true - /@esbuild/linux-arm64@0.18.20: - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + /@esbuild/linux-arm64@0.19.11: + resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-arm64@0.19.9: - resolution: {integrity: sha512-PiPblfe1BjK7WDAKR1Cr9O7VVPqVNpwFcPWgfn4xu0eMemzRp442hXyzF/fSwgrufI66FpHOEJk0yYdPInsmyQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm@0.18.20: - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + /@esbuild/linux-arm@0.19.11: + resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-arm@0.19.9: - resolution: {integrity: sha512-C/ChPohUYoyUaqn1h17m/6yt6OB14hbXvT8EgM1ZWaiiTYz7nWZR0SYmMnB5BzQA4GXl3BgBO1l8MYqL/He3qw==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ia32@0.18.20: - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true - - /@esbuild/linux-ia32@0.19.9: - resolution: {integrity: sha512-f37i/0zE0MjDxijkPSQw1CO/7C27Eojqb+r3BbHVxMLkj8GCa78TrBZzvPyA/FNLUMzP3eyHCVkAopkKVja+6Q==} + /@esbuild/linux-ia32@0.19.11: + resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true - dev: true optional: true - /@esbuild/linux-loong64@0.18.20: - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + /@esbuild/linux-loong64@0.19.11: + resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} engines: {node: '>=12'} cpu: [loong64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-loong64@0.19.9: - resolution: {integrity: sha512-t6mN147pUIf3t6wUt3FeumoOTPfmv9Cc6DQlsVBpB7eCpLOqQDyWBP1ymXn1lDw4fNUSb/gBcKAmvTP49oIkaA==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-mips64el@0.18.20: - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + /@esbuild/linux-mips64el@0.19.11: + resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-mips64el@0.19.9: - resolution: {integrity: sha512-jg9fujJTNTQBuDXdmAg1eeJUL4Jds7BklOTkkH80ZgQIoCTdQrDaHYgbFZyeTq8zbY+axgptncko3v9p5hLZtw==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ppc64@0.18.20: - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + /@esbuild/linux-ppc64@0.19.11: + resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-ppc64@0.19.9: - resolution: {integrity: sha512-tkV0xUX0pUUgY4ha7z5BbDS85uI7ABw3V1d0RNTii7E9lbmV8Z37Pup2tsLV46SQWzjOeyDi1Q7Wx2+QM8WaCQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-riscv64@0.18.20: - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + /@esbuild/linux-riscv64@0.19.11: + resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-riscv64@0.19.9: - resolution: {integrity: sha512-DfLp8dj91cufgPZDXr9p3FoR++m3ZJ6uIXsXrIvJdOjXVREtXuQCjfMfvmc3LScAVmLjcfloyVtpn43D56JFHg==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-s390x@0.18.20: - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + /@esbuild/linux-s390x@0.19.11: + resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-s390x@0.19.9: - resolution: {integrity: sha512-zHbglfEdC88KMgCWpOl/zc6dDYJvWGLiUtmPRsr1OgCViu3z5GncvNVdf+6/56O2Ca8jUU+t1BW261V6kp8qdw==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-x64@0.18.20: - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - - /@esbuild/linux-x64@0.19.9: - resolution: {integrity: sha512-JUjpystGFFmNrEHQnIVG8hKwvA2DN5o7RqiO1CVX8EN/F/gkCjkUMgVn6hzScpwnJtl2mPR6I9XV1oW8k9O+0A==} + /@esbuild/linux-x64@0.19.11: + resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true - dev: true optional: true - /@esbuild/netbsd-x64@0.18.20: - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + /@esbuild/netbsd-x64@0.19.11: + resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true optional: true - /@esbuild/netbsd-x64@0.19.9: - resolution: {integrity: sha512-GThgZPAwOBOsheA2RUlW5UeroRfESwMq/guy8uEe3wJlAOjpOXuSevLRd70NZ37ZrpO6RHGHgEHvPg1h3S1Jug==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-x64@0.18.20: - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + /@esbuild/openbsd-x64@0.19.11: + resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true optional: true - /@esbuild/openbsd-x64@0.19.9: - resolution: {integrity: sha512-Ki6PlzppaFVbLnD8PtlVQfsYw4S9n3eQl87cqgeIw+O3sRr9IghpfSKY62mggdt1yCSZ8QWvTZ9jo9fjDSg9uw==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/sunos-x64@0.18.20: - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true - - /@esbuild/sunos-x64@0.19.9: - resolution: {integrity: sha512-MLHj7k9hWh4y1ddkBpvRj2b9NCBhfgBt3VpWbHQnXRedVun/hC7sIyTGDGTfsGuXo4ebik2+3ShjcPbhtFwWDw==} + /@esbuild/sunos-x64@0.19.11: + resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true - dev: true optional: true - /@esbuild/win32-arm64@0.18.20: - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + /@esbuild/win32-arm64@0.19.11: + resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true optional: true - /@esbuild/win32-arm64@0.19.9: - resolution: {integrity: sha512-GQoa6OrQ8G08guMFgeXPH7yE/8Dt0IfOGWJSfSH4uafwdC7rWwrfE6P9N8AtPGIjUzdo2+7bN8Xo3qC578olhg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-ia32@0.18.20: - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + /@esbuild/win32-ia32@0.19.11: + resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true optional: true - /@esbuild/win32-ia32@0.19.9: - resolution: {integrity: sha512-UOozV7Ntykvr5tSOlGCrqU3NBr3d8JqPes0QWN2WOXfvkWVGRajC+Ym0/Wj88fUgecUCLDdJPDF0Nna2UK3Qtg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-x64@0.18.20: - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + /@esbuild/win32-x64@0.19.11: + resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true optional: true - /@esbuild/win32-x64@0.19.9: - resolution: {integrity: sha512-oxoQgglOP7RH6iasDrhY+R/3cHrfwIDvRlT4CGChflq6twk8iENeVvMJjmvBb94Ik1Z+93iGO27err7w6l54GQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -958,14 +759,14 @@ packages: '@fortawesome/fontawesome-common-types': 6.5.1 dev: true - /@fortawesome/vue-fontawesome@3.0.5(@fortawesome/fontawesome-svg-core@6.5.1)(vue@3.3.12): + /@fortawesome/vue-fontawesome@3.0.5(@fortawesome/fontawesome-svg-core@6.5.1)(vue@3.4.10): resolution: {integrity: sha512-isZZ4+utQH9qg9cWxWYHQ9GwI3r5FeO7GnmzKYV+gbjxcptQhh+F99iZXi1Y9AvFUEgy8kRpAdvDlbb3drWFrw==} peerDependencies: '@fortawesome/fontawesome-svg-core': ~1 || ~6 vue: '>= 3.0.0 < 4' dependencies: '@fortawesome/fontawesome-svg-core': 6.5.1 - vue: 3.3.12(typescript@5.3.3) + vue: 3.4.10(typescript@5.3.3) dev: true /@hapi/hoek@9.3.0: @@ -1057,28 +858,28 @@ packages: resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} dev: true - /@mdi/font@7.3.67: - resolution: {integrity: sha512-SWxvzRbUQRfewlIV+OF4/YF4DkeTjMWoT8Hh9yeU/5UBVdJZj9Uf4a9+cXjknSIhIaMxZ/4N1O/s7ojApOOGjg==} + /@mdi/font@7.4.47: + resolution: {integrity: sha512-43MtGpd585SNzHZPcYowu/84Vz2a2g31TvPMTm9uTiCSWzaheQySUcSyUH/46fPnuPQWof2yd0pGBtzee/IQWw==} dev: true - /@microsoft/api-extractor-model@7.28.2(@types/node@20.10.5): - resolution: {integrity: sha512-vkojrM2fo3q4n4oPh4uUZdjJ2DxQ2+RnDQL/xhTWSRUNPF6P4QyrvY357HBxbnltKcYu+nNNolVqc6TIGQ73Ig==} + /@microsoft/api-extractor-model@7.28.3(@types/node@20.11.0): + resolution: {integrity: sha512-wT/kB2oDbdZXITyDh2SQLzaWwTOFbV326fP0pUwNW00WeliARs0qjmXBWmGWardEzp2U3/axkO3Lboqun6vrig==} dependencies: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 3.61.0(@types/node@20.10.5) + '@rushstack/node-core-library': 3.62.0(@types/node@20.11.0) transitivePeerDependencies: - '@types/node' dev: true - /@microsoft/api-extractor@7.38.4(@types/node@20.10.5): - resolution: {integrity: sha512-0SW3Of6os4bAYlHdiD1hJx/ygXr7vRZi92E1pREufNERH87aZ0B9Vhku/4Mj2Oxp58gyV5d18t7uZold6HCSEw==} + /@microsoft/api-extractor@7.39.0(@types/node@20.11.0): + resolution: {integrity: sha512-PuXxzadgnvp+wdeZFPonssRAj/EW4Gm4s75TXzPk09h3wJ8RS3x7typf95B4vwZRrPTQBGopdUl+/vHvlPdAcg==} hasBin: true dependencies: - '@microsoft/api-extractor-model': 7.28.2(@types/node@20.10.5) + '@microsoft/api-extractor-model': 7.28.3(@types/node@20.11.0) '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 3.61.0(@types/node@20.10.5) + '@rushstack/node-core-library': 3.62.0(@types/node@20.11.0) '@rushstack/rig-package': 0.5.1 '@rushstack/ts-command-line': 4.17.1 colors: 1.2.5 @@ -1086,7 +887,7 @@ packages: resolve: 1.22.8 semver: 7.5.4 source-map: 0.6.1 - typescript: 5.0.4 + typescript: 5.3.3 transitivePeerDependencies: - '@types/node' dev: true @@ -1147,23 +948,16 @@ packages: dev: true optional: true - /@pkgr/utils@2.4.2: - resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==} + /@pkgr/core@0.1.0: + resolution: {integrity: sha512-Zwq5OCzuwJC2jwqmpEQt7Ds1DTi6BWSwoGkbb1n9pO3hzb35BoJELx7c0T23iDkBGkh2e7tvOtjF3tr3OaQHDQ==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - dependencies: - cross-spawn: 7.0.3 - fast-glob: 3.3.2 - is-glob: 4.0.3 - open: 9.1.0 - picocolors: 1.0.0 - tslib: 2.6.2 dev: true /@polka/url@1.0.0-next.21: resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} dev: true - /@rollup/plugin-commonjs@25.0.7(rollup@4.9.1): + /@rollup/plugin-commonjs@25.0.7(rollup@4.9.4): resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==} engines: {node: '>=14.0.0'} peerDependencies: @@ -1172,16 +966,16 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.5(rollup@4.9.1) + '@rollup/pluginutils': 5.0.5(rollup@4.9.4) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.30.5 - rollup: 4.9.1 + rollup: 4.9.4 dev: true - /@rollup/plugin-inject@5.0.5(rollup@4.9.1): + /@rollup/plugin-inject@5.0.5(rollup@4.9.4): resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -1190,13 +984,13 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.9.1) + '@rollup/pluginutils': 5.1.0(rollup@4.9.4) estree-walker: 2.0.2 magic-string: 0.30.5 - rollup: 4.9.1 + rollup: 4.9.4 dev: true - /@rollup/plugin-node-resolve@15.2.3(rollup@4.9.1): + /@rollup/plugin-node-resolve@15.2.3(rollup@4.9.4): resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} engines: {node: '>=14.0.0'} peerDependencies: @@ -1205,16 +999,16 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.5(rollup@4.9.1) + '@rollup/pluginutils': 5.0.5(rollup@4.9.4) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 - rollup: 4.9.1 + rollup: 4.9.4 dev: true - /@rollup/plugin-terser@0.4.4(rollup@4.9.1): + /@rollup/plugin-terser@0.4.4(rollup@4.9.4): resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} engines: {node: '>=14.0.0'} peerDependencies: @@ -1223,7 +1017,7 @@ packages: rollup: optional: true dependencies: - rollup: 4.9.1 + rollup: 4.9.4 serialize-javascript: 6.0.1 smob: 1.4.1 terser: 5.22.0 @@ -1237,7 +1031,7 @@ packages: picomatch: 2.3.1 dev: true - /@rollup/pluginutils@5.0.5(rollup@4.9.1): + /@rollup/pluginutils@5.0.5(rollup@4.9.4): resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==} engines: {node: '>=14.0.0'} peerDependencies: @@ -1249,10 +1043,10 @@ packages: '@types/estree': 1.0.3 estree-walker: 2.0.2 picomatch: 2.3.1 - rollup: 4.9.1 + rollup: 4.9.4 dev: true - /@rollup/pluginutils@5.1.0(rollup@4.9.1): + /@rollup/pluginutils@5.1.0(rollup@4.9.4): resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} engines: {node: '>=14.0.0'} peerDependencies: @@ -1264,122 +1058,109 @@ packages: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 - rollup: 4.9.1 + rollup: 4.9.4 dev: true - /@rollup/rollup-android-arm-eabi@4.9.1: - resolution: {integrity: sha512-6vMdBZqtq1dVQ4CWdhFwhKZL6E4L1dV6jUjuBvsavvNJSppzi6dLBbuV+3+IyUREaj9ZFvQefnQm28v4OCXlig==} + /@rollup/rollup-android-arm-eabi@4.9.4: + resolution: {integrity: sha512-ub/SN3yWqIv5CWiAZPHVS1DloyZsJbtXmX4HxUTIpS0BHm9pW5iYBo2mIZi+hE3AeiTzHz33blwSnhdUo+9NpA==} cpu: [arm] os: [android] requiresBuild: true - dev: true optional: true - /@rollup/rollup-android-arm64@4.9.1: - resolution: {integrity: sha512-Jto9Fl3YQ9OLsTDWtLFPtaIMSL2kwGyGoVCmPC8Gxvym9TCZm4Sie+cVeblPO66YZsYH8MhBKDMGZ2NDxuk/XQ==} + /@rollup/rollup-android-arm64@4.9.4: + resolution: {integrity: sha512-ehcBrOR5XTl0W0t2WxfTyHCR/3Cq2jfb+I4W+Ch8Y9b5G+vbAecVv0Fx/J1QKktOrgUYsIKxWAKgIpvw56IFNA==} cpu: [arm64] os: [android] requiresBuild: true - dev: true optional: true - /@rollup/rollup-darwin-arm64@4.9.1: - resolution: {integrity: sha512-LtYcLNM+bhsaKAIGwVkh5IOWhaZhjTfNOkGzGqdHvhiCUVuJDalvDxEdSnhFzAn+g23wgsycmZk1vbnaibZwwA==} + /@rollup/rollup-darwin-arm64@4.9.4: + resolution: {integrity: sha512-1fzh1lWExwSTWy8vJPnNbNM02WZDS8AW3McEOb7wW+nPChLKf3WG2aG7fhaUmfX5FKw9zhsF5+MBwArGyNM7NA==} cpu: [arm64] os: [darwin] requiresBuild: true - dev: true optional: true - /@rollup/rollup-darwin-x64@4.9.1: - resolution: {integrity: sha512-KyP/byeXu9V+etKO6Lw3E4tW4QdcnzDG/ake031mg42lob5tN+5qfr+lkcT/SGZaH2PdW4Z1NX9GHEkZ8xV7og==} + /@rollup/rollup-darwin-x64@4.9.4: + resolution: {integrity: sha512-Gc6cukkF38RcYQ6uPdiXi70JB0f29CwcQ7+r4QpfNpQFVHXRd0DfWFidoGxjSx1DwOETM97JPz1RXL5ISSB0pA==} cpu: [x64] os: [darwin] requiresBuild: true - dev: true optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.9.1: - resolution: {integrity: sha512-Yqz/Doumf3QTKplwGNrCHe/B2p9xqDghBZSlAY0/hU6ikuDVQuOUIpDP/YcmoT+447tsZTmirmjgG3znvSCR0Q==} + /@rollup/rollup-linux-arm-gnueabihf@4.9.4: + resolution: {integrity: sha512-g21RTeFzoTl8GxosHbnQZ0/JkuFIB13C3T7Y0HtKzOXmoHhewLbVTFBQZu+z5m9STH6FZ7L/oPgU4Nm5ErN2fw==} cpu: [arm] os: [linux] requiresBuild: true - dev: true optional: true - /@rollup/rollup-linux-arm64-gnu@4.9.1: - resolution: {integrity: sha512-u3XkZVvxcvlAOlQJ3UsD1rFvLWqu4Ef/Ggl40WAVCuogf4S1nJPHh5RTgqYFpCOvuGJ7H5yGHabjFKEZGExk5Q==} + /@rollup/rollup-linux-arm64-gnu@4.9.4: + resolution: {integrity: sha512-TVYVWD/SYwWzGGnbfTkrNpdE4HON46orgMNHCivlXmlsSGQOx/OHHYiQcMIOx38/GWgwr/po2LBn7wypkWw/Mg==} cpu: [arm64] os: [linux] requiresBuild: true - dev: true optional: true - /@rollup/rollup-linux-arm64-musl@4.9.1: - resolution: {integrity: sha512-0XSYN/rfWShW+i+qjZ0phc6vZ7UWI8XWNz4E/l+6edFt+FxoEghrJHjX1EY/kcUGCnZzYYRCl31SNdfOi450Aw==} + /@rollup/rollup-linux-arm64-musl@4.9.4: + resolution: {integrity: sha512-XcKvuendwizYYhFxpvQ3xVpzje2HHImzg33wL9zvxtj77HvPStbSGI9czrdbfrf8DGMcNNReH9pVZv8qejAQ5A==} cpu: [arm64] os: [linux] requiresBuild: true - dev: true optional: true - /@rollup/rollup-linux-riscv64-gnu@4.9.1: - resolution: {integrity: sha512-LmYIO65oZVfFt9t6cpYkbC4d5lKHLYv5B4CSHRpnANq0VZUQXGcCPXHzbCXCz4RQnx7jvlYB1ISVNCE/omz5cw==} + /@rollup/rollup-linux-riscv64-gnu@4.9.4: + resolution: {integrity: sha512-LFHS/8Q+I9YA0yVETyjonMJ3UA+DczeBd/MqNEzsGSTdNvSJa1OJZcSH8GiXLvcizgp9AlHs2walqRcqzjOi3A==} cpu: [riscv64] os: [linux] requiresBuild: true - dev: true optional: true - /@rollup/rollup-linux-x64-gnu@4.9.1: - resolution: {integrity: sha512-kr8rEPQ6ns/Lmr/hiw8sEVj9aa07gh1/tQF2Y5HrNCCEPiCBGnBUt9tVusrcBBiJfIt1yNaXN6r1CCmpbFEDpg==} + /@rollup/rollup-linux-x64-gnu@4.9.4: + resolution: {integrity: sha512-dIYgo+j1+yfy81i0YVU5KnQrIJZE8ERomx17ReU4GREjGtDW4X+nvkBak2xAUpyqLs4eleDSj3RrV72fQos7zw==} cpu: [x64] os: [linux] requiresBuild: true - dev: true optional: true - /@rollup/rollup-linux-x64-musl@4.9.1: - resolution: {integrity: sha512-t4QSR7gN+OEZLG0MiCgPqMWZGwmeHhsM4AkegJ0Kiy6TnJ9vZ8dEIwHw1LcZKhbHxTY32hp9eVCMdR3/I8MGRw==} + /@rollup/rollup-linux-x64-musl@4.9.4: + resolution: {integrity: sha512-RoaYxjdHQ5TPjaPrLsfKqR3pakMr3JGqZ+jZM0zP2IkDtsGa4CqYaWSfQmZVgFUCgLrTnzX+cnHS3nfl+kB6ZQ==} cpu: [x64] os: [linux] requiresBuild: true - dev: true optional: true - /@rollup/rollup-win32-arm64-msvc@4.9.1: - resolution: {integrity: sha512-7XI4ZCBN34cb+BH557FJPmh0kmNz2c25SCQeT9OiFWEgf8+dL6ZwJ8f9RnUIit+j01u07Yvrsuu1rZGxJCc51g==} + /@rollup/rollup-win32-arm64-msvc@4.9.4: + resolution: {integrity: sha512-T8Q3XHV+Jjf5e49B4EAaLKV74BbX7/qYBRQ8Wop/+TyyU0k+vSjiLVSHNWdVd1goMjZcbhDmYZUYW5RFqkBNHQ==} cpu: [arm64] os: [win32] requiresBuild: true - dev: true optional: true - /@rollup/rollup-win32-ia32-msvc@4.9.1: - resolution: {integrity: sha512-yE5c2j1lSWOH5jp+Q0qNL3Mdhr8WuqCNVjc6BxbVfS5cAS6zRmdiw7ktb8GNpDCEUJphILY6KACoFoRtKoqNQg==} + /@rollup/rollup-win32-ia32-msvc@4.9.4: + resolution: {integrity: sha512-z+JQ7JirDUHAsMecVydnBPWLwJjbppU+7LZjffGf+Jvrxq+dVjIE7By163Sc9DKc3ADSU50qPVw0KonBS+a+HQ==} cpu: [ia32] os: [win32] requiresBuild: true - dev: true optional: true - /@rollup/rollup-win32-x64-msvc@4.9.1: - resolution: {integrity: sha512-PyJsSsafjmIhVgaI1Zdj7m8BB8mMckFah/xbpplObyHfiXzKcI5UOUXRyOdHW7nz4DpMCuzLnF7v5IWHenCwYA==} + /@rollup/rollup-win32-x64-msvc@4.9.4: + resolution: {integrity: sha512-LfdGXCV9rdEify1oxlN9eamvDSjv9md9ZVMAbNHA87xqIfFCxImxan9qZ8+Un54iK2nnqPlbnSi4R54ONtbWBw==} cpu: [x64] os: [win32] requiresBuild: true - dev: true optional: true - /@rushstack/node-core-library@3.61.0(@types/node@20.10.5): - resolution: {integrity: sha512-tdOjdErme+/YOu4gPed3sFS72GhtWCgNV9oDsHDnoLY5oDfwjKUc9Z+JOZZ37uAxcm/OCahDHfuu2ugqrfWAVQ==} + /@rushstack/node-core-library@3.62.0(@types/node@20.11.0): + resolution: {integrity: sha512-88aJn2h8UpSvdwuDXBv1/v1heM6GnBf3RjEy6ZPP7UnzHNCqOHA2Ut+ScYUbXcqIdfew9JlTAe3g+cnX9xQ/Aw==} peerDependencies: '@types/node': '*' peerDependenciesMeta: '@types/node': optional: true dependencies: - '@types/node': 20.10.5 + '@types/node': 20.11.0 colors: 1.2.5 fs-extra: 7.0.1 import-lazy: 4.0.0 @@ -1440,6 +1221,22 @@ packages: resolution: {integrity: sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==} dev: true + /@stylistic/stylelint-plugin@2.0.0(stylelint@16.1.0): + resolution: {integrity: sha512-dHKuT6PGd1WGZLOTuozAM7GdQzdmlmnFXYzvV1jYJXXpcCpV/OJ3+n8TXpMkoOeKHpJydY43EOoZTO1W/FOA4Q==} + engines: {node: ^18.12 || >=20.9} + peerDependencies: + stylelint: ^16.0.2 + dependencies: + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/media-query-list-parser': 2.1.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + is-plain-object: 5.0.0 + postcss-selector-parser: 6.0.15 + postcss-value-parser: 4.2.0 + style-search: 0.1.0 + stylelint: 16.1.0(typescript@5.3.3) + dev: true + /@trysound/sax@0.2.0: resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} engines: {node: '>=10.13.0'} @@ -1453,26 +1250,26 @@ packages: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 20.10.5 + '@types/node': 20.11.0 dev: true /@types/bonjour@3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: - '@types/node': 20.10.5 + '@types/node': 20.11.0 dev: true /@types/connect-history-api-fallback@1.5.0: resolution: {integrity: sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==} dependencies: '@types/express-serve-static-core': 4.17.35 - '@types/node': 20.10.5 + '@types/node': 20.11.0 dev: true /@types/connect@3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 20.10.5 + '@types/node': 20.11.0 dev: true /@types/eslint-scope@3.7.4: @@ -1485,7 +1282,7 @@ packages: /@types/eslint@8.37.0: resolution: {integrity: sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==} dependencies: - '@types/estree': 1.0.1 + '@types/estree': 1.0.5 '@types/json-schema': 7.0.11 dev: true @@ -1499,12 +1296,11 @@ packages: /@types/estree@1.0.5: resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - dev: true /@types/express-serve-static-core@4.17.35: resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==} dependencies: - '@types/node': 20.10.5 + '@types/node': 20.11.0 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 '@types/send': 0.17.1 @@ -1526,7 +1322,7 @@ packages: /@types/http-proxy@1.17.11: resolution: {integrity: sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==} dependencies: - '@types/node': 20.10.5 + '@types/node': 20.11.0 dev: true /@types/json-schema@7.0.11: @@ -1557,12 +1353,8 @@ packages: resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} dev: true - /@types/minimist@1.2.4: - resolution: {integrity: sha512-Kfe/D3hxHTusnPNRbycJE1N77WHDsdS4AjUYIzlDzhDrS47NrwuL3YW4VITxwR7KCVpzwgy4Rbj829KSSQmwXQ==} - dev: true - - /@types/node@20.10.5: - resolution: {integrity: sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==} + /@types/node@20.11.0: + resolution: {integrity: sha512-o9bjXmDNcF7GbM4CNQpmi+TutCgap/K3w1JyKgxAjqx41zp9qlIAVFi0IhCNsJcXolEqLWhbFbEeL0PvYm4pcQ==} dependencies: undici-types: 5.26.5 @@ -1570,10 +1362,6 @@ packages: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} dev: true - /@types/normalize-package-data@2.4.3: - resolution: {integrity: sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==} - dev: true - /@types/parse-json@4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} dev: true @@ -1602,7 +1390,7 @@ packages: resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==} dependencies: '@types/mime': 1.3.2 - '@types/node': 20.10.5 + '@types/node': 20.11.0 dev: true /@types/serve-index@1.9.1: @@ -1615,13 +1403,13 @@ packages: resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==} dependencies: '@types/mime': 3.0.1 - '@types/node': 20.10.5 + '@types/node': 20.11.0 dev: true /@types/sockjs@0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: - '@types/node': 20.10.5 + '@types/node': 20.11.0 dev: true /@types/web-bluetooth@0.0.20: @@ -1630,11 +1418,11 @@ packages: /@types/ws@8.5.4: resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==} dependencies: - '@types/node': 20.10.5 + '@types/node': 20.11.0 dev: true - /@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3): - resolution: {integrity: sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==} + /@typescript-eslint/eslint-plugin@6.18.1(@typescript-eslint/parser@6.18.1)(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-nISDRYnnIpk7VCFrGcu1rnZfM1Dh9LRHnfgdkjcbi/l7g16VYRri3TjXi9Ir4lOZSw5N/gnV/3H7jIPQ8Q4daA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha @@ -1645,11 +1433,11 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.3) - '@typescript-eslint/scope-manager': 6.15.0 - '@typescript-eslint/type-utils': 6.15.0(eslint@8.56.0)(typescript@5.3.3) - '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@5.3.3) - '@typescript-eslint/visitor-keys': 6.15.0 + '@typescript-eslint/parser': 6.18.1(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/scope-manager': 6.18.1 + '@typescript-eslint/type-utils': 6.18.1(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/utils': 6.18.1(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/visitor-keys': 6.18.1 debug: 4.3.4 eslint: 8.56.0 graphemer: 1.4.0 @@ -1662,8 +1450,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.3.3): - resolution: {integrity: sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==} + /@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-zct/MdJnVaRRNy9e84XnVtRv9Vf91/qqe+hZJtKanjojud4wAVy/7lXxJmMyX6X6J+xc6c//YEWvpeif8cAhWA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -1672,10 +1460,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 6.15.0 - '@typescript-eslint/types': 6.15.0 - '@typescript-eslint/typescript-estree': 6.15.0(typescript@5.3.3) - '@typescript-eslint/visitor-keys': 6.15.0 + '@typescript-eslint/scope-manager': 6.18.1 + '@typescript-eslint/types': 6.18.1 + '@typescript-eslint/typescript-estree': 6.18.1(typescript@5.3.3) + '@typescript-eslint/visitor-keys': 6.18.1 debug: 4.3.4 eslint: 8.56.0 typescript: 5.3.3 @@ -1683,16 +1471,16 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager@6.15.0: - resolution: {integrity: sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==} + /@typescript-eslint/scope-manager@6.18.1: + resolution: {integrity: sha512-BgdBwXPFmZzaZUuw6wKiHKIovms97a7eTImjkXCZE04TGHysG+0hDQPmygyvgtkoB/aOQwSM/nWv3LzrOIQOBw==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.15.0 - '@typescript-eslint/visitor-keys': 6.15.0 + '@typescript-eslint/types': 6.18.1 + '@typescript-eslint/visitor-keys': 6.18.1 dev: true - /@typescript-eslint/type-utils@6.15.0(eslint@8.56.0)(typescript@5.3.3): - resolution: {integrity: sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==} + /@typescript-eslint/type-utils@6.18.1(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-wyOSKhuzHeU/5pcRDP2G2Ndci+4g653V43gXTpt4nbyoIOAASkGDA9JIAgbQCdCkcr1MvpSYWzxTz0olCn8+/Q==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -1701,8 +1489,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.15.0(typescript@5.3.3) - '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/typescript-estree': 6.18.1(typescript@5.3.3) + '@typescript-eslint/utils': 6.18.1(eslint@8.56.0)(typescript@5.3.3) debug: 4.3.4 eslint: 8.56.0 ts-api-utils: 1.0.3(typescript@5.3.3) @@ -1711,13 +1499,13 @@ packages: - supports-color dev: true - /@typescript-eslint/types@6.15.0: - resolution: {integrity: sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==} + /@typescript-eslint/types@6.18.1: + resolution: {integrity: sha512-4TuMAe+tc5oA7wwfqMtB0Y5OrREPF1GeJBAjqwgZh1lEMH5PJQgWgHGfYufVB51LtjD+peZylmeyxUXPfENLCw==} engines: {node: ^16.0.0 || >=18.0.0} dev: true - /@typescript-eslint/typescript-estree@6.15.0(typescript@5.3.3): - resolution: {integrity: sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==} + /@typescript-eslint/typescript-estree@6.18.1(typescript@5.3.3): + resolution: {integrity: sha512-fv9B94UAhywPRhUeeV/v+3SBDvcPiLxRZJw/xZeeGgRLQZ6rLMG+8krrJUyIf6s1ecWTzlsbp0rlw7n9sjufHA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' @@ -1725,11 +1513,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 6.15.0 - '@typescript-eslint/visitor-keys': 6.15.0 + '@typescript-eslint/types': 6.18.1 + '@typescript-eslint/visitor-keys': 6.18.1 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 + minimatch: 9.0.3 semver: 7.5.4 ts-api-utils: 1.0.3(typescript@5.3.3) typescript: 5.3.3 @@ -1737,8 +1526,8 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@6.15.0(eslint@8.56.0)(typescript@5.3.3): - resolution: {integrity: sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==} + /@typescript-eslint/utils@6.18.1(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-zZmTuVZvD1wpoceHvoQpOiewmWu3uP9FuTWo8vqpy2ffsmfCE8mklRPi+vmnIYAIk9t/4kOThri2QCDgor+OpQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -1746,9 +1535,9 @@ packages: '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.6 - '@typescript-eslint/scope-manager': 6.15.0 - '@typescript-eslint/types': 6.15.0 - '@typescript-eslint/typescript-estree': 6.15.0(typescript@5.3.3) + '@typescript-eslint/scope-manager': 6.18.1 + '@typescript-eslint/types': 6.18.1 + '@typescript-eslint/typescript-estree': 6.18.1(typescript@5.3.3) eslint: 8.56.0 semver: 7.5.4 transitivePeerDependencies: @@ -1756,11 +1545,11 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys@6.15.0: - resolution: {integrity: sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==} + /@typescript-eslint/visitor-keys@6.18.1: + resolution: {integrity: sha512-/kvt0C5lRqGoCfsbmm7/CwMqoSkY3zzHLIjdhHZQW3VFrnz7ATecOHR7nb7V+xn4286MBxfnQfQhAmCI0u+bJA==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.15.0 + '@typescript-eslint/types': 6.18.1 eslint-visitor-keys: 3.4.3 dev: true @@ -1768,51 +1557,52 @@ packages: resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} dev: true - /@vitejs/plugin-vue@4.5.2(vite@4.5.0)(vue@3.3.12): - resolution: {integrity: sha512-UGR3DlzLi/SaVBPX0cnSyE37vqxU3O6chn8l0HJNzQzDia6/Au2A4xKv+iIJW8w2daf80G7TYHhi1pAUjdZ0bQ==} - engines: {node: ^14.18.0 || >=16.0.0} + /@vitejs/plugin-vue@5.0.3(vite@5.0.11)(vue@3.4.10): + resolution: {integrity: sha512-b8S5dVS40rgHdDrw+DQi/xOM9ed+kSRZzfm1T74bMmBDCd8XO87NKlFYInzCtwvtWwXZvo1QxE2OSspTATWrbA==} + engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: - vite: ^4.0.0 || ^5.0.0 + vite: ^5.0.0 vue: ^3.2.25 dependencies: - vite: 4.5.0(@types/node@20.10.5)(sass@1.69.5) - vue: 3.3.12(typescript@5.3.3) + vite: 5.0.11(@types/node@20.11.0)(sass@1.69.7) + vue: 3.4.10(typescript@5.3.3) dev: true - /@vitest/expect@1.0.4: - resolution: {integrity: sha512-/NRN9N88qjg3dkhmFcCBwhn/Ie4h064pY3iv7WLRsDJW7dXnEgeoa8W9zy7gIPluhz6CkgqiB3HmpIXgmEY5dQ==} + /@vitest/expect@1.1.3: + resolution: {integrity: sha512-MnJqsKc1Ko04lksF9XoRJza0bGGwTtqfbyrsYv5on4rcEkdo+QgUdITenBQBUltKzdxW7K3rWh+nXRULwsdaVg==} dependencies: - '@vitest/spy': 1.0.4 - '@vitest/utils': 1.0.4 - chai: 4.3.10 + '@vitest/spy': 1.1.3 + '@vitest/utils': 1.1.3 + chai: 4.4.0 dev: true - /@vitest/runner@1.0.4: - resolution: {integrity: sha512-rhOQ9FZTEkV41JWXozFM8YgOqaG9zA7QXbhg5gy6mFOVqh4PcupirIJ+wN7QjeJt8S8nJRYuZH1OjJjsbxAXTQ==} + /@vitest/runner@1.1.3: + resolution: {integrity: sha512-Va2XbWMnhSdDEh/OFxyUltgQuuDRxnarK1hW5QNN4URpQrqq6jtt8cfww/pQQ4i0LjoYxh/3bYWvDFlR9tU73g==} dependencies: - '@vitest/utils': 1.0.4 + '@vitest/utils': 1.1.3 p-limit: 5.0.0 - pathe: 1.1.1 + pathe: 1.1.2 dev: true - /@vitest/snapshot@1.0.4: - resolution: {integrity: sha512-vkfXUrNyNRA/Gzsp2lpyJxh94vU2OHT1amoD6WuvUAA12n32xeVZQ0KjjQIf8F6u7bcq2A2k969fMVxEsxeKYA==} + /@vitest/snapshot@1.1.3: + resolution: {integrity: sha512-U0r8pRXsLAdxSVAyGNcqOU2H3Z4Y2dAAGGelL50O0QRMdi1WWeYHdrH/QWpN1e8juWfVKsb8B+pyJwTC+4Gy9w==} dependencies: magic-string: 0.30.5 - pathe: 1.1.1 + pathe: 1.1.2 pretty-format: 29.7.0 dev: true - /@vitest/spy@1.0.4: - resolution: {integrity: sha512-9ojTFRL1AJVh0hvfzAQpm0QS6xIS+1HFIw94kl/1ucTfGCaj1LV/iuJU4Y6cdR03EzPDygxTHwE1JOm+5RCcvA==} + /@vitest/spy@1.1.3: + resolution: {integrity: sha512-Ec0qWyGS5LhATFQtldvChPTAHv08yHIOZfiNcjwRQbFPHpkih0md9KAbs7TfeIfL7OFKoe7B/6ukBTqByubXkQ==} dependencies: tinyspy: 2.2.0 dev: true - /@vitest/utils@1.0.4: - resolution: {integrity: sha512-gsswWDXxtt0QvtK/y/LWukN7sGMYmnCcv1qv05CsY6cU/Y1zpGX1QuvLs+GO1inczpE6Owixeel3ShkjhYtGfA==} + /@vitest/utils@1.1.3: + resolution: {integrity: sha512-Dyt3UMcdElTll2H75vhxfpZu03uFpXRCHxWnzcrFjZxT1kTbq8ALUYIeBgGolo1gldVdI0YSlQRacsqxTwNqwg==} dependencies: diff-sequences: 29.6.3 + estree-walker: 3.0.3 loupe: 2.3.7 pretty-format: 29.7.0 dev: true @@ -1846,7 +1636,7 @@ packages: '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 eslint: '>=7.5.0' dependencies: - '@vue/cli-service': 5.0.8(@babel/core@7.23.6)(@vue/compiler-sfc@3.3.12)(prettier@3.1.1)(vue@3.3.12) + '@vue/cli-service': 5.0.8(@babel/core@7.23.7)(prettier@3.1.1)(vue@3.4.10) '@vue/cli-shared-utils': 5.0.8 eslint: 8.56.0 eslint-webpack-plugin: 3.2.0(eslint@8.56.0)(webpack@5.82.1) @@ -1866,7 +1656,7 @@ packages: peerDependencies: '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 dependencies: - '@vue/cli-service': 5.0.8(@babel/core@7.23.6)(@vue/compiler-sfc@3.3.12)(prettier@3.1.1)(vue@3.3.12) + '@vue/cli-service': 5.0.8(@babel/core@7.23.7)(prettier@3.1.1)(vue@3.4.10) '@vue/cli-shared-utils': 5.0.8 transitivePeerDependencies: - encoding @@ -1877,10 +1667,10 @@ packages: peerDependencies: '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 dependencies: - '@vue/cli-service': 5.0.8(@babel/core@7.23.6)(@vue/compiler-sfc@3.3.12)(prettier@3.1.1)(vue@3.3.12) + '@vue/cli-service': 5.0.8(@babel/core@7.23.7)(prettier@3.1.1)(vue@3.4.10) dev: true - /@vue/cli-service@5.0.8(@babel/core@7.23.6)(@vue/compiler-sfc@3.3.12)(prettier@3.1.1)(vue@3.3.12): + /@vue/cli-service@5.0.8(@babel/core@7.23.7)(prettier@3.1.1)(vue@3.4.10): resolution: {integrity: sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw==} engines: {node: ^12.0.0 || >= 14.0.0} hasBin: true @@ -1911,7 +1701,7 @@ packages: webpack-sources: optional: true dependencies: - '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.23.6) + '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.23.7) '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.82.1) '@soda/get-current-script': 1.0.2 '@types/minimist': 1.2.2 @@ -1920,12 +1710,12 @@ packages: '@vue/cli-plugin-vuex': 5.0.8(@vue/cli-service@5.0.8) '@vue/cli-shared-utils': 5.0.8 '@vue/component-compiler-utils': 3.3.0 - '@vue/vue-loader-v15': /vue-loader@15.11.1(@vue/compiler-sfc@3.3.12)(css-loader@6.7.3)(prettier@3.1.1)(webpack@5.82.1) + '@vue/vue-loader-v15': /vue-loader@15.11.1(css-loader@6.7.3)(prettier@3.1.1)(webpack@5.82.1) '@vue/web-component-wrapper': 1.3.0 acorn: 8.8.2 acorn-walk: 8.2.0 address: 1.2.2 - autoprefixer: 10.4.16(postcss@8.4.32) + autoprefixer: 10.4.16(postcss@8.4.33) browserslist: 4.21.5 case-sensitive-paths-webpack-plugin: 2.4.0 cli-highlight: 2.1.11 @@ -1934,7 +1724,7 @@ packages: copy-webpack-plugin: 9.1.0(webpack@5.82.1) css-loader: 6.7.3(webpack@5.82.1) css-minimizer-webpack-plugin: 3.4.1(webpack@5.82.1) - cssnano: 5.1.15(postcss@8.4.32) + cssnano: 5.1.15(postcss@8.4.33) debug: 4.3.4 default-gateway: 6.0.3 dotenv: 10.0.0 @@ -1951,13 +1741,13 @@ packages: minimist: 1.2.8 module-alias: 2.2.2 portfinder: 1.0.32 - postcss: 8.4.32 - postcss-loader: 6.2.1(postcss@8.4.32)(webpack@5.82.1) + postcss: 8.4.33 + postcss-loader: 6.2.1(postcss@8.4.33)(webpack@5.82.1) progress-webpack-plugin: 1.0.16(webpack@5.82.1) ssri: 8.0.1 terser-webpack-plugin: 5.3.8(webpack@5.82.1) thread-loader: 3.0.4(webpack@5.82.1) - vue-loader: 17.1.1(@vue/compiler-sfc@3.3.12)(vue@3.3.12)(webpack@5.82.1) + vue-loader: 17.1.1(vue@3.4.10)(webpack@5.82.1) vue-style-loader: 4.1.3 webpack: 5.82.1 webpack-bundle-analyzer: 4.8.0 @@ -2056,55 +1846,56 @@ packages: - encoding dev: true - /@vue/compiler-core@3.3.10: - resolution: {integrity: sha512-doe0hODR1+i1menPkRzJ5MNR6G+9uiZHIknK3Zn5OcIztu6GGw7u0XUzf3AgB8h/dfsZC9eouzoLo3c3+N/cVA==} + /@vue/compiler-core@3.4.10: + resolution: {integrity: sha512-53vxh7K9qbx+JILnGEhrFRyr7H7e4NdT8RuTNU3m6HhJKFvcAqFTNXpYMHnyuAzzRGdsbsYHBgQC3H6xEXTG6w==} dependencies: - '@babel/parser': 7.23.5 - '@vue/shared': 3.3.10 + '@babel/parser': 7.23.6 + '@vue/shared': 3.4.10 + entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.0.2 - dev: true - /@vue/compiler-core@3.3.12: - resolution: {integrity: sha512-qAtjyG3GBLG0chzp5xGCyRLLe6wFCHmjI82aGzwuGKyznNP+GJJMxjc0wOYWDB2YKfho7niJFdoFpo0CZZQg9w==} + /@vue/compiler-core@3.4.8: + resolution: {integrity: sha512-GjAwOydZV6UyVBi1lYW5v4jjfU6wOeyi3vBATKJOwV7muYF0/nZi4kfdJc0pwdT5lXwbbx57lyA2Y356rFpw1A==} dependencies: '@babel/parser': 7.23.6 - '@vue/shared': 3.3.12 + '@vue/shared': 3.4.8 + entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.0.2 + dev: true - /@vue/compiler-dom@3.3.10: - resolution: {integrity: sha512-NCrqF5fm10GXZIK0GrEAauBqdy+F2LZRt3yNHzrYjpYBuRssQbuPLtSnSNjyR9luHKkWSH8we5LMB3g+4z2HvA==} + /@vue/compiler-dom@3.4.10: + resolution: {integrity: sha512-QAALBJksIFpXGYuo74rtMgnwpVZDvd3kYbUa4gYX9s/5QiqEvZSgbKtOdUGydXcxKPt3ifC+0/bhPVHXN2694A==} dependencies: - '@vue/compiler-core': 3.3.10 - '@vue/shared': 3.3.10 - dev: true + '@vue/compiler-core': 3.4.10 + '@vue/shared': 3.4.10 - /@vue/compiler-dom@3.3.12: - resolution: {integrity: sha512-RdJU9oEYaoPKUdGXCy0l+i4clesdDeLmbvRlszoc9iagsnBnMmQtYfCPVQ5BHB6o7K4SCucDdJM2Dh3oXB0D6g==} + /@vue/compiler-dom@3.4.8: + resolution: {integrity: sha512-GsPyji42zmkSJlaDFKXvwB97ukTlHzlFH/iVzPFYz/APnSzuhu/CMFQbsYmrtsnc2yscF39eC4rKzvKR27aBug==} dependencies: - '@vue/compiler-core': 3.3.12 - '@vue/shared': 3.3.12 + '@vue/compiler-core': 3.4.8 + '@vue/shared': 3.4.8 + dev: true - /@vue/compiler-sfc@3.3.12: - resolution: {integrity: sha512-yy5b9e7b79dsGbMmglCe/YnhCQgBkHO7Uf6JfjWPSf2/5XH+MKn18LhzhHyxbHdJgnA4lZCqtXzLaJz8Pd8lMw==} + /@vue/compiler-sfc@3.4.10: + resolution: {integrity: sha512-sTOssaQySgrMjrhZxmAqdp6n+E51VteIVIDaOR537H2P63DyzMmig21U0XXFxiXmMIfrK91lAInnc+bIAYemGw==} dependencies: '@babel/parser': 7.23.6 - '@vue/compiler-core': 3.3.12 - '@vue/compiler-dom': 3.3.12 - '@vue/compiler-ssr': 3.3.12 - '@vue/reactivity-transform': 3.3.12 - '@vue/shared': 3.3.12 + '@vue/compiler-core': 3.4.10 + '@vue/compiler-dom': 3.4.10 + '@vue/compiler-ssr': 3.4.10 + '@vue/shared': 3.4.10 estree-walker: 2.0.2 magic-string: 0.30.5 - postcss: 8.4.32 + postcss: 8.4.33 source-map-js: 1.0.2 - /@vue/compiler-ssr@3.3.12: - resolution: {integrity: sha512-adCiMJPznfWcQyk/9HSuXGja859IaMV+b8UNSVzDatqv7h0PvT9BEeS22+gjkWofDiSg5d78/ZLls3sLA+cn3A==} + /@vue/compiler-ssr@3.4.10: + resolution: {integrity: sha512-Y90TL1abretWbUiK5rv+9smS1thCHE5sSuhZgiLh6cxgZ2Pcy3BEvDd3reID0iwNcTdMbTeE6NI3Aq4Mux6hqQ==} dependencies: - '@vue/compiler-dom': 3.3.12 - '@vue/shared': 3.3.12 + '@vue/compiler-dom': 3.4.10 + '@vue/shared': 3.4.10 /@vue/component-compiler-utils@3.3.0: resolution: {integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==} @@ -2114,7 +1905,7 @@ packages: lru-cache: 4.1.5 merge-source-map: 1.1.0 postcss: 7.0.39 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.15 source-map: 0.6.1 vue-template-es2015-compiler: 1.9.1 optionalDependencies: @@ -2179,7 +1970,7 @@ packages: resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==} dev: true - /@vue/eslint-config-typescript@12.0.0(eslint-plugin-vue@9.19.2)(eslint@8.56.0)(typescript@5.3.3): + /@vue/eslint-config-typescript@12.0.0(eslint-plugin-vue@9.20.0)(eslint@8.56.0)(typescript@5.3.3): resolution: {integrity: sha512-StxLFet2Qe97T8+7L8pGlhYBBr8Eg05LPuTDVopQV6il+SK6qqom59BA/rcFipUef2jD8P2X44Vd8tMFytfvlg==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -2190,18 +1981,18 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3) - '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/eslint-plugin': 6.18.1(@typescript-eslint/parser@6.18.1)(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/parser': 6.18.1(eslint@8.56.0)(typescript@5.3.3) eslint: 8.56.0 - eslint-plugin-vue: 9.19.2(eslint@8.56.0) + eslint-plugin-vue: 9.20.0(eslint@8.56.0) typescript: 5.3.3 vue-eslint-parser: 9.3.1(eslint@8.56.0) transitivePeerDependencies: - supports-color dev: true - /@vue/language-core@1.8.25(typescript@5.3.3): - resolution: {integrity: sha512-NJk/5DnAZlpvXX8BdWmHI45bWGLViUaS3R/RMrmFSvFMSbJKuEODpM4kR0F0Ofv5SFzCWuNiMhxameWpVdQsnA==} + /@vue/language-core@1.8.27(typescript@5.3.3): + resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -2210,60 +2001,51 @@ packages: dependencies: '@volar/language-core': 1.11.1 '@volar/source-map': 1.11.1 - '@vue/compiler-dom': 3.3.10 - '@vue/shared': 3.3.10 + '@vue/compiler-dom': 3.4.8 + '@vue/shared': 3.4.8 computeds: 0.0.1 minimatch: 9.0.3 muggle-string: 0.3.1 path-browserify: 1.0.1 typescript: 5.3.3 - vue-template-compiler: 2.7.15 + vue-template-compiler: 2.7.16 dev: true - /@vue/reactivity-transform@3.3.12: - resolution: {integrity: sha512-g5TijmML7FyKkLt6QnpqNmA4KD7K/T5SbXa88Bhq+hydNQEkzA8veVXWAQuNqg9rjaFYD0rPf0a9NofKA0ENgg==} + /@vue/reactivity@3.4.10: + resolution: {integrity: sha512-SmGGpo37LzPcAFTopHNIJRNVOQfma9YgyPkAzx9/TJ01lbCCYigS28hEcY1hjiJ1PRK8iVX62Ov5yzmUgYH/pQ==} dependencies: - '@babel/parser': 7.23.6 - '@vue/compiler-core': 3.3.12 - '@vue/shared': 3.3.12 - estree-walker: 2.0.2 - magic-string: 0.30.5 - - /@vue/reactivity@3.3.12: - resolution: {integrity: sha512-vOJORzO8DlIx88cgTnMLIf2GlLYpoXAKsuoQsK6SGdaqODjxO129pVPTd2s/N/Mb6KKZEFIHIEwWGmtN4YPs+g==} - dependencies: - '@vue/shared': 3.3.12 + '@vue/shared': 3.4.10 - /@vue/runtime-core@3.3.12: - resolution: {integrity: sha512-5iL4w7MZrSGKEZU2wFAYhDZdZmgn+s//73EfgDXW1M+ZUOl36md7tlWp1QFK/ladiq4FvQ82shVjo0KiPDPr0A==} + /@vue/runtime-core@3.4.10: + resolution: {integrity: sha512-Ri2Cz9sFr66AEUewGUK8IXhIUAhshTHVUGuJR8pqMbtjIds+zPa8QPO5UZImGMQ8HTY7eEpKwztCct9V3+Iqug==} dependencies: - '@vue/reactivity': 3.3.12 - '@vue/shared': 3.3.12 + '@vue/reactivity': 3.4.10 + '@vue/shared': 3.4.10 - /@vue/runtime-dom@3.3.12: - resolution: {integrity: sha512-8mMzqiIdl+IYa/OXwKwk6/4ebLq7cYV1pUcwCSwBK2KerUa6cwGosen5xrCL9f8o2DJ9TfPFwbPEvH7OXzUpoA==} + /@vue/runtime-dom@3.4.10: + resolution: {integrity: sha512-ROsdi5M2niRDmjXJNZ8KKiGwXyG1FO8l9n6sCN0kaJEHbjWkuigu96YAI3fK/AWUZPSXXEcMEBVPC6rL3mmUuA==} dependencies: - '@vue/runtime-core': 3.3.12 - '@vue/shared': 3.3.12 + '@vue/runtime-core': 3.4.10 + '@vue/shared': 3.4.10 csstype: 3.1.3 - /@vue/server-renderer@3.3.12(vue@3.3.12): - resolution: {integrity: sha512-OZ0IEK5TU5GXb5J8/wSplyxvGGdIcwEmS8EIO302Vz8K6fGSgSJTU54X0Sb6PaefzZdiN3vHsLXO8XIeF8crQQ==} + /@vue/server-renderer@3.4.10(vue@3.4.10): + resolution: {integrity: sha512-WpCBAhesLq44JKWfdFqb+Bi4ACUW0d8x1z90GnE0spccsAlEDMXV5nm+pwXLyW0OdP2iPrO/n/QMJh4B1v9Ciw==} peerDependencies: - vue: 3.3.12 + vue: 3.4.10 dependencies: - '@vue/compiler-ssr': 3.3.12 - '@vue/shared': 3.3.12 - vue: 3.3.12(typescript@5.3.3) + '@vue/compiler-ssr': 3.4.10 + '@vue/shared': 3.4.10 + vue: 3.4.10(typescript@5.3.3) - /@vue/shared@3.3.10: - resolution: {integrity: sha512-2y3Y2J1a3RhFa0WisHvACJR2ncvWiVHcP8t0Inxo+NKz+8RKO4ZV8eZgCxRgQoA6ITfV12L4E6POOL9HOU5nqw==} - dev: true + /@vue/shared@3.4.10: + resolution: {integrity: sha512-C0mIVhwW1xQLMFyqMJxnhq6fWyE02lCgcE+TDdtGpg6B3H6kh/0YcqS54qYc76UJNlWegf3VgsLqgk6D9hBmzQ==} - /@vue/shared@3.3.12: - resolution: {integrity: sha512-6p0Yin0pclvnER7BLNOQuod9Z+cxSYh8pSh7CzHnWNjAIP6zrTlCdHRvSCb1aYEx6i3Q3kvfuWU7nG16CgG1ag==} + /@vue/shared@3.4.8: + resolution: {integrity: sha512-ChLCWzXiJboQ009oVkemhEoUdrxHme7v3ip+Kh+/kDDeF1WtHWGt0knRLGm1Y4YqCRTSs9QxsZIY8paJj5Szrw==} + dev: true - /@vue/test-utils@2.4.3(vue@3.3.12): + /@vue/test-utils@2.4.3(vue@3.4.10): resolution: {integrity: sha512-F4K7mF+ad++VlTrxMJVRnenKSJmO6fkQt2wpRDiKDesQMkfpniGWsqEi/JevxGBo2qEkwwjvTUAoiGJLNx++CA==} peerDependencies: '@vue/server-renderer': ^3.0.1 @@ -2273,7 +2055,7 @@ packages: optional: true dependencies: js-beautify: 1.14.11 - vue: 3.3.12(typescript@5.3.3) + vue: 3.4.10(typescript@5.3.3) vue-component-type-helpers: 1.8.25 dev: true @@ -2281,35 +2063,34 @@ packages: resolution: {integrity: sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==} dev: true - /@vuetify/loader-shared@1.7.1(vue@3.3.12)(vuetify@3.4.7): - resolution: {integrity: sha512-kLUvuAed6RCvkeeTNJzuy14pqnkur8lTuner7v7pNE/kVhPR97TuyXwBSBMR1cJeiLiOfu6SF5XlCYbXByEx1g==} + /@vuetify/loader-shared@2.0.1(vue@3.4.10)(vuetify@3.4.10): + resolution: {integrity: sha512-zy5/ohEO7RcJaWYu2Xiy8TBEOkTb42XvWvSAJwXAtY8OlwqyGhzzBp9OvMVjLGIuFXumBpXKlsaVIkeN0OWWSw==} peerDependencies: vue: ^3.0.0 - vuetify: ^3.0.0-beta.4 + vuetify: ^3.0.0 dependencies: - find-cache-dir: 3.3.2 upath: 2.0.1 - vue: 3.3.12(typescript@5.3.3) - vuetify: 3.4.7(typescript@5.3.3)(vite-plugin-vuetify@1.0.2)(vue@3.3.12) + vue: 3.4.10(typescript@5.3.3) + vuetify: 3.4.10(typescript@5.3.3)(vite-plugin-vuetify@2.0.1)(vue@3.4.10) - /@vueuse/core@10.7.0(vue@3.3.12): - resolution: {integrity: sha512-4EUDESCHtwu44ZWK3Gc/hZUVhVo/ysvdtwocB5vcauSV4B7NiGY5972WnsojB3vRNdxvAt7kzJWE2h9h7C9d5w==} + /@vueuse/core@10.7.1(vue@3.4.10): + resolution: {integrity: sha512-74mWHlaesJSWGp1ihg76vAnfVq9NTv1YT0SYhAQ6zwFNdBkkP+CKKJmVOEHcdSnLXCXYiL5e7MaewblfiYLP7g==} dependencies: '@types/web-bluetooth': 0.0.20 - '@vueuse/metadata': 10.7.0 - '@vueuse/shared': 10.7.0(vue@3.3.12) - vue-demi: 0.14.6(vue@3.3.12) + '@vueuse/metadata': 10.7.1 + '@vueuse/shared': 10.7.1(vue@3.4.10) + vue-demi: 0.14.6(vue@3.4.10) transitivePeerDependencies: - '@vue/composition-api' - vue - /@vueuse/metadata@10.7.0: - resolution: {integrity: sha512-GlaH7tKP2iBCZ3bHNZ6b0cl9g0CJK8lttkBNUX156gWvNYhTKEtbweWLm9rxCPIiwzYcr/5xML6T8ZUEt+DkvA==} + /@vueuse/metadata@10.7.1: + resolution: {integrity: sha512-jX8MbX5UX067DYVsbtrmKn6eG6KMcXxLRLlurGkZku5ZYT3vxgBjui2zajvUZ18QLIjrgBkFRsu7CqTAg18QFw==} - /@vueuse/shared@10.7.0(vue@3.3.12): - resolution: {integrity: sha512-kc00uV6CiaTdc3i1CDC4a3lBxzaBE9AgYNtFN87B5OOscqeWElj/uza8qVDmk7/U8JbqoONLbtqiLJ5LGRuqlw==} + /@vueuse/shared@10.7.1(vue@3.4.10): + resolution: {integrity: sha512-v0jbRR31LSgRY/C5i5X279A/WQjD6/JsMzGa+eqt658oJ75IvQXAeONmwvEMrvJQKnRElq/frzBR7fhmWY5uLw==} dependencies: - vue-demi: 0.14.6(vue@3.3.12) + vue-demi: 0.14.6(vue@3.4.10) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -2320,7 +2101,7 @@ packages: highlight.js: 11.9.0 prismjs: 1.29.0 ua-parser-js: 1.0.37 - vue: 3.3.12(typescript@5.3.3) + vue: 3.4.10(typescript@5.3.3) transitivePeerDependencies: - typescript dev: true @@ -2484,6 +2265,12 @@ packages: hasBin: true dev: true + /acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + /acorn@8.8.2: resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} engines: {node: '>=0.4.0'} @@ -2719,11 +2506,6 @@ packages: is-shared-array-buffer: 1.0.2 dev: true - /arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - dev: true - /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} dev: true @@ -2752,7 +2534,7 @@ packages: engines: {node: '>= 4.0.0'} dev: true - /autoprefixer@10.4.16(postcss@8.4.32): + /autoprefixer@10.4.16(postcss@8.4.33): resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -2764,7 +2546,7 @@ packages: fraction.js: 4.3.6 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true @@ -2789,9 +2571,10 @@ packages: resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} dev: true - /big-integer@1.6.51: - resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} - engines: {node: '>=0.6'} + /bidi-js@1.0.3: + resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==} + dependencies: + require-from-string: 2.0.2 dev: true /big.js@5.2.2: @@ -2847,13 +2630,6 @@ packages: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} dev: true - /bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} - dependencies: - big-integer: 1.6.51 - dev: true - /brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: @@ -2900,8 +2676,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001570 - electron-to-chromium: 1.4.615 + caniuse-lite: 1.0.30001576 + electron-to-chromium: 1.4.628 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.22.2) dev: true @@ -2922,13 +2698,6 @@ packages: engines: {node: '>=6'} dev: true - /bundle-name@3.0.0: - resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} - engines: {node: '>=12'} - dependencies: - run-applescript: 5.0.0 - dev: true - /bytes@3.0.0: resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} engines: {node: '>= 0.8'} @@ -2964,21 +2733,6 @@ packages: tslib: 2.6.2 dev: true - /camelcase-keys@7.0.2: - resolution: {integrity: sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==} - engines: {node: '>=12'} - dependencies: - camelcase: 6.3.0 - map-obj: 4.3.0 - quick-lru: 5.1.1 - type-fest: 1.4.0 - dev: true - - /camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} - dev: true - /caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: @@ -2992,8 +2746,8 @@ packages: resolution: {integrity: sha512-bLOsqxDgTqUBkzxbNlSBt8annkDpQB9NdzdTbO2ooJ+eC/IQcvDspDc058g84ejCelF7vHUx57KIOjEecOHXaw==} dev: true - /caniuse-lite@1.0.30001570: - resolution: {integrity: sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==} + /caniuse-lite@1.0.30001576: + resolution: {integrity: sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==} dev: true /case-sensitive-paths-webpack-plugin@2.4.0: @@ -3001,8 +2755,8 @@ packages: engines: {node: '>=4'} dev: true - /chai@4.3.10: - resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==} + /chai@4.4.0: + resolution: {integrity: sha512-x9cHNq1uvkCdU+5xTkNh5WtgD4e4yDFCsp9jVc7N7qVeKeftv3gO/ZrviX5d+3ZfxdYnZXZYujjRInu1RogU6A==} engines: {node: '>=4'} dependencies: assertion-error: 1.1.0 @@ -3232,6 +2986,7 @@ packages: /commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + dev: true /compressible@2.0.18: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} @@ -3504,8 +3259,8 @@ packages: yaml: 1.10.2 dev: true - /cosmiconfig@8.3.6(typescript@5.3.3): - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + /cosmiconfig@9.0.0(typescript@5.3.3): + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} engines: {node: '>=14'} peerDependencies: typescript: '>=4.9.5' @@ -3513,10 +3268,10 @@ packages: typescript: optional: true dependencies: + env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 - path-type: 4.0.0 typescript: 5.3.3 dev: true @@ -3548,13 +3303,13 @@ packages: which: 2.0.2 dev: true - /css-declaration-sorter@6.4.0(postcss@8.4.32): + /css-declaration-sorter@6.4.0(postcss@8.4.33): resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==} engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true /css-functions-list@3.2.1: @@ -3568,12 +3323,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.32) - postcss: 8.4.32 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.32) - postcss-modules-local-by-default: 4.0.0(postcss@8.4.32) - postcss-modules-scope: 3.0.0(postcss@8.4.32) - postcss-modules-values: 4.0.0(postcss@8.4.32) + icss-utils: 5.1.0(postcss@8.4.33) + postcss: 8.4.33 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.33) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.33) + postcss-modules-scope: 3.0.0(postcss@8.4.33) + postcss-modules-values: 4.0.0(postcss@8.4.33) postcss-value-parser: 4.2.0 semver: 7.5.4 webpack: 5.82.1 @@ -3598,9 +3353,9 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.15(postcss@8.4.32) + cssnano: 5.1.15(postcss@8.4.33) jest-worker: 27.5.1 - postcss: 8.4.32 + postcss: 8.4.33 schema-utils: 4.0.1 serialize-javascript: 6.0.1 source-map: 0.6.1 @@ -3644,62 +3399,62 @@ packages: hasBin: true dev: true - /cssnano-preset-default@5.2.14(postcss@8.4.32): + /cssnano-preset-default@5.2.14(postcss@8.4.33): resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.4.0(postcss@8.4.32) - cssnano-utils: 3.1.0(postcss@8.4.32) - postcss: 8.4.32 - postcss-calc: 8.2.4(postcss@8.4.32) - postcss-colormin: 5.3.1(postcss@8.4.32) - postcss-convert-values: 5.1.3(postcss@8.4.32) - postcss-discard-comments: 5.1.2(postcss@8.4.32) - postcss-discard-duplicates: 5.1.0(postcss@8.4.32) - postcss-discard-empty: 5.1.1(postcss@8.4.32) - postcss-discard-overridden: 5.1.0(postcss@8.4.32) - postcss-merge-longhand: 5.1.7(postcss@8.4.32) - postcss-merge-rules: 5.1.4(postcss@8.4.32) - postcss-minify-font-values: 5.1.0(postcss@8.4.32) - postcss-minify-gradients: 5.1.1(postcss@8.4.32) - postcss-minify-params: 5.1.4(postcss@8.4.32) - postcss-minify-selectors: 5.2.1(postcss@8.4.32) - postcss-normalize-charset: 5.1.0(postcss@8.4.32) - postcss-normalize-display-values: 5.1.0(postcss@8.4.32) - postcss-normalize-positions: 5.1.1(postcss@8.4.32) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.32) - postcss-normalize-string: 5.1.0(postcss@8.4.32) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.32) - postcss-normalize-unicode: 5.1.1(postcss@8.4.32) - postcss-normalize-url: 5.1.0(postcss@8.4.32) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.32) - postcss-ordered-values: 5.1.3(postcss@8.4.32) - postcss-reduce-initial: 5.1.2(postcss@8.4.32) - postcss-reduce-transforms: 5.1.0(postcss@8.4.32) - postcss-svgo: 5.1.0(postcss@8.4.32) - postcss-unique-selectors: 5.1.1(postcss@8.4.32) - dev: true - - /cssnano-utils@3.1.0(postcss@8.4.32): + css-declaration-sorter: 6.4.0(postcss@8.4.33) + cssnano-utils: 3.1.0(postcss@8.4.33) + postcss: 8.4.33 + postcss-calc: 8.2.4(postcss@8.4.33) + postcss-colormin: 5.3.1(postcss@8.4.33) + postcss-convert-values: 5.1.3(postcss@8.4.33) + postcss-discard-comments: 5.1.2(postcss@8.4.33) + postcss-discard-duplicates: 5.1.0(postcss@8.4.33) + postcss-discard-empty: 5.1.1(postcss@8.4.33) + postcss-discard-overridden: 5.1.0(postcss@8.4.33) + postcss-merge-longhand: 5.1.7(postcss@8.4.33) + postcss-merge-rules: 5.1.4(postcss@8.4.33) + postcss-minify-font-values: 5.1.0(postcss@8.4.33) + postcss-minify-gradients: 5.1.1(postcss@8.4.33) + postcss-minify-params: 5.1.4(postcss@8.4.33) + postcss-minify-selectors: 5.2.1(postcss@8.4.33) + postcss-normalize-charset: 5.1.0(postcss@8.4.33) + postcss-normalize-display-values: 5.1.0(postcss@8.4.33) + postcss-normalize-positions: 5.1.1(postcss@8.4.33) + postcss-normalize-repeat-style: 5.1.1(postcss@8.4.33) + postcss-normalize-string: 5.1.0(postcss@8.4.33) + postcss-normalize-timing-functions: 5.1.0(postcss@8.4.33) + postcss-normalize-unicode: 5.1.1(postcss@8.4.33) + postcss-normalize-url: 5.1.0(postcss@8.4.33) + postcss-normalize-whitespace: 5.1.1(postcss@8.4.33) + postcss-ordered-values: 5.1.3(postcss@8.4.33) + postcss-reduce-initial: 5.1.2(postcss@8.4.33) + postcss-reduce-transforms: 5.1.0(postcss@8.4.33) + postcss-svgo: 5.1.0(postcss@8.4.33) + postcss-unique-selectors: 5.1.1(postcss@8.4.33) + dev: true + + /cssnano-utils@3.1.0(postcss@8.4.33): resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true - /cssnano@5.1.15(postcss@8.4.32): + /cssnano@5.1.15(postcss@8.4.33): resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.14(postcss@8.4.32) + cssnano-preset-default: 5.2.14(postcss@8.4.33) lilconfig: 2.1.0 - postcss: 8.4.32 + postcss: 8.4.33 yaml: 1.10.2 dev: true @@ -3710,9 +3465,9 @@ packages: css-tree: 1.1.3 dev: true - /cssstyle@3.0.0: - resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==} - engines: {node: '>=14'} + /cssstyle@4.0.1: + resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==} + engines: {node: '>=18'} dependencies: rrweb-cssom: 0.6.0 dev: true @@ -3761,27 +3516,9 @@ packages: supports-color: '*' peerDependenciesMeta: supports-color: - optional: true - dependencies: - ms: 2.1.2 - - /decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} - dependencies: - decamelize: 1.2.0 - map-obj: 1.0.1 - dev: true - - /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - dev: true - - /decamelize@5.0.1: - resolution: {integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==} - engines: {node: '>=10'} - dev: true + optional: true + dependencies: + ms: 2.1.2 /decimal.js@10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} @@ -3808,24 +3545,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} - dependencies: - bplist-parser: 0.2.0 - untildify: 4.0.0 - dev: true - - /default-browser@4.0.0: - resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} - engines: {node: '>=14.16'} - dependencies: - bundle-name: 3.0.0 - default-browser-id: 3.0.0 - execa: 7.2.0 - titleize: 3.0.0 - dev: true - /default-gateway@6.0.3: resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} engines: {node: '>= 10'} @@ -3853,11 +3572,6 @@ packages: engines: {node: '>=8'} dev: true - /define-lazy-prop@3.0.0: - resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} - engines: {node: '>=12'} - dev: true - /define-properties@1.2.1: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} @@ -4036,8 +3750,8 @@ packages: resolution: {integrity: sha512-W1+g9qs9hviII0HAwOdehGYkr+zt7KKdmCcJcjH0mYg6oL8+ioT3Skjmt7BLoAQqXhjf40AXd+HlR4oAWMlXjA==} dev: true - /electron-to-chromium@1.4.615: - resolution: {integrity: sha512-/bKPPcgZVUziECqDc+0HkT87+0zhaWSZHNXqF8FLd2lQcptpmUFwoCSWjCdOng9Gdq+afKArPdEg/0ZW461Eng==} + /electron-to-chromium@1.4.628: + resolution: {integrity: sha512-2k7t5PHvLsufpP6Zwk0nof62yLOsCf032wZx7/q0mv8gwlXjhcxI3lz6f0jBr0GrnWKcm3burXzI3t5IrcdUxw==} dev: true /email-addresses@5.0.0: @@ -4087,6 +3801,10 @@ packages: /entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} + + /env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} dev: true /error-ex@1.3.2: @@ -4174,64 +3892,35 @@ packages: is-symbol: 1.0.4 dev: true - /esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + /esbuild@0.19.11: + resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.18.20 - '@esbuild/android-arm64': 0.18.20 - '@esbuild/android-x64': 0.18.20 - '@esbuild/darwin-arm64': 0.18.20 - '@esbuild/darwin-x64': 0.18.20 - '@esbuild/freebsd-arm64': 0.18.20 - '@esbuild/freebsd-x64': 0.18.20 - '@esbuild/linux-arm': 0.18.20 - '@esbuild/linux-arm64': 0.18.20 - '@esbuild/linux-ia32': 0.18.20 - '@esbuild/linux-loong64': 0.18.20 - '@esbuild/linux-mips64el': 0.18.20 - '@esbuild/linux-ppc64': 0.18.20 - '@esbuild/linux-riscv64': 0.18.20 - '@esbuild/linux-s390x': 0.18.20 - '@esbuild/linux-x64': 0.18.20 - '@esbuild/netbsd-x64': 0.18.20 - '@esbuild/openbsd-x64': 0.18.20 - '@esbuild/sunos-x64': 0.18.20 - '@esbuild/win32-arm64': 0.18.20 - '@esbuild/win32-ia32': 0.18.20 - '@esbuild/win32-x64': 0.18.20 - - /esbuild@0.19.9: - resolution: {integrity: sha512-U9CHtKSy+EpPsEBa+/A2gMs/h3ylBC0H0KSqIg7tpztHerLi6nrrcoUJAkNCEPumx8yJ+Byic4BVwHgRbN0TBg==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': 0.19.9 - '@esbuild/android-arm64': 0.19.9 - '@esbuild/android-x64': 0.19.9 - '@esbuild/darwin-arm64': 0.19.9 - '@esbuild/darwin-x64': 0.19.9 - '@esbuild/freebsd-arm64': 0.19.9 - '@esbuild/freebsd-x64': 0.19.9 - '@esbuild/linux-arm': 0.19.9 - '@esbuild/linux-arm64': 0.19.9 - '@esbuild/linux-ia32': 0.19.9 - '@esbuild/linux-loong64': 0.19.9 - '@esbuild/linux-mips64el': 0.19.9 - '@esbuild/linux-ppc64': 0.19.9 - '@esbuild/linux-riscv64': 0.19.9 - '@esbuild/linux-s390x': 0.19.9 - '@esbuild/linux-x64': 0.19.9 - '@esbuild/netbsd-x64': 0.19.9 - '@esbuild/openbsd-x64': 0.19.9 - '@esbuild/sunos-x64': 0.19.9 - '@esbuild/win32-arm64': 0.19.9 - '@esbuild/win32-ia32': 0.19.9 - '@esbuild/win32-x64': 0.19.9 - dev: true + '@esbuild/aix-ppc64': 0.19.11 + '@esbuild/android-arm': 0.19.11 + '@esbuild/android-arm64': 0.19.11 + '@esbuild/android-x64': 0.19.11 + '@esbuild/darwin-arm64': 0.19.11 + '@esbuild/darwin-x64': 0.19.11 + '@esbuild/freebsd-arm64': 0.19.11 + '@esbuild/freebsd-x64': 0.19.11 + '@esbuild/linux-arm': 0.19.11 + '@esbuild/linux-arm64': 0.19.11 + '@esbuild/linux-ia32': 0.19.11 + '@esbuild/linux-loong64': 0.19.11 + '@esbuild/linux-mips64el': 0.19.11 + '@esbuild/linux-ppc64': 0.19.11 + '@esbuild/linux-riscv64': 0.19.11 + '@esbuild/linux-s390x': 0.19.11 + '@esbuild/linux-x64': 0.19.11 + '@esbuild/netbsd-x64': 0.19.11 + '@esbuild/openbsd-x64': 0.19.11 + '@esbuild/sunos-x64': 0.19.11 + '@esbuild/win32-arm64': 0.19.11 + '@esbuild/win32-ia32': 0.19.11 + '@esbuild/win32-x64': 0.19.11 /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -4276,7 +3965,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.15.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -4297,7 +3986,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/parser': 6.18.1(eslint@8.56.0)(typescript@5.3.3) debug: 3.2.7 eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 @@ -4305,7 +3994,7 @@ packages: - supports-color dev: true - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.15.0)(eslint@8.56.0): + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.18.1)(eslint@8.56.0): resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} engines: {node: '>=4'} peerDependencies: @@ -4315,7 +4004,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/parser': 6.18.1(eslint@8.56.0)(typescript@5.3.3) array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.2 @@ -4324,7 +4013,7 @@ packages: doctrine: 2.1.0 eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.15.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) hasown: 2.0.0 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -4340,8 +4029,8 @@ packages: - supports-color dev: true - /eslint-plugin-prettier@5.0.1(eslint-config-prettier@9.1.0)(eslint@8.56.0)(prettier@3.1.1): - resolution: {integrity: sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==} + /eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0)(eslint@8.56.0)(prettier@3.1.1): + resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: '@types/eslint': '>=8.0.0' @@ -4358,11 +4047,11 @@ packages: eslint-config-prettier: 9.1.0(eslint@8.56.0) prettier: 3.1.1 prettier-linter-helpers: 1.0.0 - synckit: 0.8.5 + synckit: 0.8.8 dev: true - /eslint-plugin-vue@9.19.2(eslint@8.56.0): - resolution: {integrity: sha512-CPDqTOG2K4Ni2o4J5wixkLVNwgctKXFu6oBpVJlpNq7f38lh9I80pRTouZSJ2MAebPJlINU/KTFSXyQfBUlymA==} + /eslint-plugin-vue@9.20.0(eslint@8.56.0): + resolution: {integrity: sha512-9/DV5CM7ItfgWmXjL6j3zyDtVTrslYdnEm+rnYNajdElx17b3erxi/Wc6FY7t3BQ6dgo0t/UBpgiWCOKtJyN8Q==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 @@ -4371,9 +4060,9 @@ packages: eslint: 8.56.0 natural-compare: 1.4.0 nth-check: 2.1.1 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.15 semver: 7.5.4 - vue-eslint-parser: 9.3.2(eslint@8.56.0) + vue-eslint-parser: 9.4.0(eslint@8.56.0) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color @@ -4503,6 +4192,12 @@ packages: /estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + /estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + dependencies: + '@types/estree': 1.0.5 + dev: true + /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} @@ -4572,21 +4267,6 @@ packages: strip-final-newline: 2.0.0 dev: true - /execa@7.2.0: - resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} - engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 4.3.1 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.1.0 - onetime: 6.0.0 - signal-exit: 3.0.7 - strip-final-newline: 3.0.0 - dev: true - /execa@8.0.1: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} @@ -4664,17 +4344,6 @@ packages: micromatch: 4.0.5 dev: true - /fast-glob@3.3.1: - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} - engines: {node: '>=8.6.0'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 - dev: true - /fast-glob@3.3.2: resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} engines: {node: '>=8.6.0'} @@ -4726,11 +4395,11 @@ packages: flat-cache: 3.2.0 dev: true - /file-entry-cache@7.0.1: - resolution: {integrity: sha512-uLfFktPmRetVCbHe5UPuekWrQ6hENufnA46qEGbfACkK5drjTTdQYUragRgMjHldcbYG+nslUerqMPjbBSHXjQ==} - engines: {node: '>=12.0.0'} + /file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} dependencies: - flat-cache: 3.1.1 + flat-cache: 4.0.0 dev: true /filename-reserved-regex@2.0.0: @@ -4775,6 +4444,7 @@ packages: commondir: 1.0.1 make-dir: 3.1.0 pkg-dir: 4.2.0 + dev: true /find-up@4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} @@ -4782,6 +4452,7 @@ packages: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 + dev: true /find-up@5.0.0: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} @@ -4791,22 +4462,22 @@ packages: path-exists: 4.0.0 dev: true - /flat-cache@3.1.1: - resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==} - engines: {node: '>=12.0.0'} + /flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: flatted: 3.2.9 keyv: 4.5.4 rimraf: 3.0.2 dev: true - /flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + /flat-cache@4.0.0: + resolution: {integrity: sha512-EryKbCE/wxpxKniQlyas6PY1I9vwtF3uCBweX+N8KYTCn3Y12RTGtQAJ/bd5pl7kxUAc8v/R3Ake/N17OZiFqA==} + engines: {node: '>=16'} dependencies: flatted: 3.2.9 keyv: 4.5.4 - rimraf: 3.0.2 + rimraf: 5.0.5 dev: true /flatted@3.2.9: @@ -4896,7 +4567,7 @@ packages: at-least-node: 1.0.0 graceful-fs: 4.2.11 jsonfile: 6.1.0 - universalify: 2.0.0 + universalify: 2.0.1 dev: true /fs-monkey@1.0.3: @@ -5000,8 +4671,8 @@ packages: get-intrinsic: 1.2.2 dev: true - /gh-pages@6.1.0: - resolution: {integrity: sha512-MdXigvqN3I66Y+tAZsQJMzpBWQOI1snD6BYuECmP+GEdryYMMOQvzn4AConk/+qNg/XIuQhB1xNGrl3Rmj1iow==} + /gh-pages@6.1.1: + resolution: {integrity: sha512-upnohfjBwN5hBP9w2dPE7HO5JJTHzSGMV1JrLrHvNuqmjoYHg6TBrCcnEoorjG/e0ejbuvnwyKMdTyM40PEByw==} engines: {node: '>=10'} hasBin: true dependencies: @@ -5152,11 +4823,6 @@ packages: resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} dev: true - /hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - dev: true - /has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} dev: true @@ -5234,13 +4900,6 @@ packages: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} dev: true - /hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} - dependencies: - lru-cache: 6.0.0 - dev: true - /hpack.js@2.1.6: resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} dependencies: @@ -5396,11 +5055,6 @@ packages: engines: {node: '>=10.17.0'} dev: true - /human-signals@4.3.1: - resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} - engines: {node: '>=14.18.0'} - dev: true - /human-signals@5.0.0: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} engines: {node: '>=16.17.0'} @@ -5430,13 +5084,13 @@ packages: resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} dev: true - /icss-utils@5.1.0(postcss@8.4.32): + /icss-utils@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true /ieee754@1.2.1: @@ -5488,11 +5142,6 @@ packages: engines: {node: '>=0.8.19'} dev: true - /indent-string@5.0.0: - resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} - engines: {node: '>=12'} - dev: true - /inflected@2.1.0: resolution: {integrity: sha512-hAEKNxvHf2Iq3H60oMBHkB4wl5jn3TPF3+fXek/sRwAB5gP9xWs4r7aweSF95f99HFoz69pnZTcu8f0SIHV18w==} dev: true @@ -5611,12 +5260,6 @@ packages: hasBin: true dev: true - /is-docker@3.0.0: - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true - dev: true - /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -5655,14 +5298,6 @@ packages: dependencies: is-extglob: 2.1.1 - /is-inside-container@1.0.0: - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} - engines: {node: '>=14.16'} - hasBin: true - dependencies: - is-docker: 3.0.0 - dev: true - /is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} @@ -5693,11 +5328,6 @@ packages: engines: {node: '>=8'} dev: true - /is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - dev: true - /is-plain-obj@3.0.0: resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} engines: {node: '>=10'} @@ -5827,7 +5457,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 20.10.5 + '@types/node': 20.11.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -5836,7 +5466,7 @@ packages: resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@types/node': 20.10.5 + '@types/node': 20.11.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -5886,8 +5516,8 @@ packages: argparse: 2.0.1 dev: true - /jsdom@23.0.1: - resolution: {integrity: sha512-2i27vgvlUsGEBO9+/kJQRbtqtm+191b5zAZrU/UezVmnC2dlDAFLgDYJvAEi94T4kjsRKkezEtLQTgsNEsW2lQ==} + /jsdom@23.2.0: + resolution: {integrity: sha512-L88oL7D/8ufIES+Zjz7v0aes+oBMh2Xnh3ygWvL0OaICOomKEPKuPnIfBJekiXr+BHbbMjrWn/xqrDQuxFTeyA==} engines: {node: '>=18'} peerDependencies: canvas: ^2.11.2 @@ -5895,7 +5525,8 @@ packages: canvas: optional: true dependencies: - cssstyle: 3.0.0 + '@asamuzakjp/dom-selector': 2.0.1 + cssstyle: 4.0.1 data-urls: 5.0.0 decimal.js: 10.4.3 form-data: 4.0.0 @@ -5903,7 +5534,6 @@ packages: http-proxy-agent: 7.0.0 https-proxy-agent: 7.0.2 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.7 parse5: 7.1.2 rrweb-cssom: 0.6.0 saxes: 6.0.0 @@ -5914,7 +5544,7 @@ packages: whatwg-encoding: 3.1.1 whatwg-mimetype: 4.0.0 whatwg-url: 14.0.0 - ws: 8.14.2 + ws: 8.16.0 xml-name-validator: 5.0.0 transitivePeerDependencies: - bufferutil @@ -6114,6 +5744,7 @@ packages: engines: {node: '>=8'} dependencies: p-locate: 4.1.0 + dev: true /locate-path@6.0.0: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} @@ -6238,15 +5869,6 @@ packages: engines: {node: '>=8'} dependencies: semver: 6.3.1 - - /map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} - dev: true - - /map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} dev: true /mathml-tag-names@2.1.3: @@ -6273,22 +5895,9 @@ packages: fs-monkey: 1.0.3 dev: true - /meow@10.1.5: - resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - '@types/minimist': 1.2.4 - camelcase-keys: 7.0.2 - decamelize: 5.0.1 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 3.0.3 - read-pkg-up: 8.0.0 - redent: 4.0.0 - trim-newlines: 4.1.1 - type-fest: 1.4.0 - yargs-parser: 20.2.9 + /meow@13.1.0: + resolution: {integrity: sha512-o5R/R3Tzxq0PJ3v3qcQJtSvSE9nKOLSAaDuuoMzDVuGTwHdccMWcYomh9Xolng2tjT6O/Y83d+0coVGof6tqmA==} + engines: {node: '>=18'} dev: true /merge-descriptors@1.0.1: @@ -6356,11 +5965,6 @@ packages: engines: {node: '>=12'} dev: true - /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - dev: true - /mini-css-extract-plugin@2.7.5(webpack@5.82.1): resolution: {integrity: sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==} engines: {node: '>= 12.13.0'} @@ -6402,15 +6006,6 @@ packages: brace-expansion: 2.0.1 dev: true - /minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} - dependencies: - arrify: 1.0.1 - is-plain-obj: 1.1.0 - kind-of: 6.0.3 - dev: true - /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} dev: true @@ -6447,8 +6042,8 @@ packages: /mlly@1.4.2: resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==} dependencies: - acorn: 8.11.2 - pathe: 1.1.1 + acorn: 8.11.3 + pathe: 1.1.2 pkg-types: 1.0.3 ufo: 1.3.2 dev: true @@ -6568,16 +6163,6 @@ packages: validate-npm-package-license: 3.0.4 dev: true - /normalize-package-data@3.0.3: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: '>=10'} - dependencies: - hosted-git-info: 4.1.0 - is-core-module: 2.13.1 - semver: 7.5.4 - validate-npm-package-license: 3.0.4 - dev: true - /normalize-path@1.0.0: resolution: {integrity: sha512-7WyT0w8jhpDStXRq5836AMmihQwq2nrUVQrgjvUo/p/NZf9uy/MeJ246lBJVmWuYXMlJuG9BNZHF0hWjfTbQUA==} engines: {node: '>=0.10.0'} @@ -6624,10 +6209,6 @@ packages: boolbase: 1.0.0 dev: true - /nwsapi@2.2.7: - resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} - dev: true - /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -6735,16 +6316,6 @@ packages: is-wsl: 2.2.0 dev: true - /open@9.1.0: - resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} - engines: {node: '>=14.16'} - dependencies: - default-browser: 4.0.0 - define-lazy-prop: 3.0.0 - is-inside-container: 1.0.0 - is-wsl: 2.2.0 - dev: true - /opener@1.5.2: resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true @@ -6787,6 +6358,7 @@ packages: engines: {node: '>=6'} dependencies: p-try: 2.2.0 + dev: true /p-limit@3.1.0: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} @@ -6807,6 +6379,7 @@ packages: engines: {node: '>=8'} dependencies: p-limit: 2.3.0 + dev: true /p-locate@5.0.0: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} @@ -6841,6 +6414,7 @@ packages: /p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} + dev: true /param-case@3.0.4: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} @@ -6905,6 +6479,7 @@ packages: /path-exists@4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} + dev: true /path-is-absolute@1.0.1: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} @@ -6947,8 +6522,8 @@ packages: engines: {node: '>=8'} dev: true - /pathe@1.1.1: - resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} + /pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} dev: true /pathval@1.1.1: @@ -6982,7 +6557,7 @@ packages: engines: {node: '>=10'} dev: true - /pinia@2.1.7(typescript@5.3.3)(vue@3.3.12): + /pinia@2.1.7(typescript@5.3.3)(vue@3.4.10): resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==} peerDependencies: '@vue/composition-api': ^1.4.0 @@ -6996,8 +6571,8 @@ packages: dependencies: '@vue/devtools-api': 6.5.1 typescript: 5.3.3 - vue: 3.3.12(typescript@5.3.3) - vue-demi: 0.14.6(vue@3.3.12) + vue: 3.4.10(typescript@5.3.3) + vue-demi: 0.14.6(vue@3.4.10) dev: true /pinkie-promise@2.0.1: @@ -7017,13 +6592,14 @@ packages: engines: {node: '>=8'} dependencies: find-up: 4.1.0 + dev: true /pkg-types@1.0.3: resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} dependencies: jsonc-parser: 3.2.0 mlly: 1.4.2 - pathe: 1.1.1 + pathe: 1.1.2 dev: true /portfinder@1.0.32: @@ -7037,17 +6613,17 @@ packages: - supports-color dev: true - /postcss-calc@8.2.4(postcss@8.4.32): + /postcss-calc@8.2.4(postcss@8.4.33): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 postcss-value-parser: 4.2.0 dev: true - /postcss-colormin@5.3.1(postcss@8.4.32): + /postcss-colormin@5.3.1(postcss@8.4.33): resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -7056,55 +6632,55 @@ packages: browserslist: 4.21.5 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-convert-values@5.1.3(postcss@8.4.32): + /postcss-convert-values@5.1.3(postcss@8.4.33): resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.5 - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-discard-comments@5.1.2(postcss@8.4.32): + /postcss-discard-comments@5.1.2(postcss@8.4.33): resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true - /postcss-discard-duplicates@5.1.0(postcss@8.4.32): + /postcss-discard-duplicates@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true - /postcss-discard-empty@5.1.1(postcss@8.4.32): + /postcss-discard-empty@5.1.1(postcss@8.4.33): resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true - /postcss-discard-overridden@5.1.0(postcss@8.4.32): + /postcss-discard-overridden@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true /postcss-html@1.5.0: @@ -7113,11 +6689,11 @@ packages: dependencies: htmlparser2: 8.0.2 js-tokens: 8.0.1 - postcss: 8.4.32 - postcss-safe-parser: 6.0.0(postcss@8.4.32) + postcss: 8.4.33 + postcss-safe-parser: 6.0.0(postcss@8.4.33) dev: true - /postcss-load-config@3.1.4(postcss@8.4.32): + /postcss-load-config@3.1.4(postcss@8.4.33): resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -7130,11 +6706,11 @@ packages: optional: true dependencies: lilconfig: 2.1.0 - postcss: 8.4.32 + postcss: 8.4.33 yaml: 1.10.2 dev: true - /postcss-loader@6.2.1(postcss@8.4.32)(webpack@5.82.1): + /postcss-loader@6.2.1(postcss@8.4.33)(webpack@5.82.1): resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -7143,7 +6719,7 @@ packages: dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 - postcss: 8.4.32 + postcss: 8.4.33 semver: 7.5.4 webpack: 5.82.1 dev: true @@ -7152,18 +6728,18 @@ packages: resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} dev: true - /postcss-merge-longhand@5.1.7(postcss@8.4.32): + /postcss-merge-longhand@5.1.7(postcss@8.4.33): resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1(postcss@8.4.32) + stylehacks: 5.1.1(postcss@8.4.33) dev: true - /postcss-merge-rules@5.1.4(postcss@8.4.32): + /postcss-merge-rules@5.1.4(postcss@8.4.33): resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -7171,97 +6747,97 @@ packages: dependencies: browserslist: 4.21.5 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.32) - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + cssnano-utils: 3.1.0(postcss@8.4.33) + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 dev: true - /postcss-minify-font-values@5.1.0(postcss@8.4.32): + /postcss-minify-font-values@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-gradients@5.1.1(postcss@8.4.32): + /postcss-minify-gradients@5.1.1(postcss@8.4.33): resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0(postcss@8.4.32) - postcss: 8.4.32 + cssnano-utils: 3.1.0(postcss@8.4.33) + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-params@5.1.4(postcss@8.4.32): + /postcss-minify-params@5.1.4(postcss@8.4.33): resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.5 - cssnano-utils: 3.1.0(postcss@8.4.32) - postcss: 8.4.32 + cssnano-utils: 3.1.0(postcss@8.4.33) + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-selectors@5.2.1(postcss@8.4.32): + /postcss-minify-selectors@5.2.1(postcss@8.4.33): resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 dev: true - /postcss-modules-extract-imports@3.0.0(postcss@8.4.32): + /postcss-modules-extract-imports@3.0.0(postcss@8.4.33): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true - /postcss-modules-local-by-default@4.0.0(postcss@8.4.32): + /postcss-modules-local-by-default@4.0.0(postcss@8.4.33): resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.32) - postcss: 8.4.32 + icss-utils: 5.1.0(postcss@8.4.33) + postcss: 8.4.33 postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 dev: true - /postcss-modules-scope@3.0.0(postcss@8.4.32): + /postcss-modules-scope@3.0.0(postcss@8.4.33): resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-selector-parser: 6.0.13 dev: true - /postcss-modules-values@4.0.0(postcss@8.4.32): + /postcss-modules-values@4.0.0(postcss@8.4.33): resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.32) - postcss: 8.4.32 + icss-utils: 5.1.0(postcss@8.4.33) + postcss: 8.4.33 dev: true - /postcss-modules@4.3.1(postcss@8.4.32): + /postcss-modules@4.3.1(postcss@8.4.33): resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} peerDependencies: postcss: ^8.0.0 @@ -7269,117 +6845,117 @@ packages: generic-names: 4.0.0 icss-replace-symbols: 1.1.0 lodash.camelcase: 4.3.0 - postcss: 8.4.32 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.32) - postcss-modules-local-by-default: 4.0.0(postcss@8.4.32) - postcss-modules-scope: 3.0.0(postcss@8.4.32) - postcss-modules-values: 4.0.0(postcss@8.4.32) + postcss: 8.4.33 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.33) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.33) + postcss-modules-scope: 3.0.0(postcss@8.4.33) + postcss-modules-values: 4.0.0(postcss@8.4.33) string-hash: 1.1.3 dev: true - /postcss-normalize-charset@5.1.0(postcss@8.4.32): + /postcss-normalize-charset@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true - /postcss-normalize-display-values@5.1.0(postcss@8.4.32): + /postcss-normalize-display-values@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-positions@5.1.1(postcss@8.4.32): + /postcss-normalize-positions@5.1.1(postcss@8.4.33): resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.32): + /postcss-normalize-repeat-style@5.1.1(postcss@8.4.33): resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-string@5.1.0(postcss@8.4.32): + /postcss-normalize-string@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.32): + /postcss-normalize-timing-functions@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-unicode@5.1.1(postcss@8.4.32): + /postcss-normalize-unicode@5.1.1(postcss@8.4.33): resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.5 - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-url@5.1.0(postcss@8.4.32): + /postcss-normalize-url@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-whitespace@5.1.1(postcss@8.4.32): + /postcss-normalize-whitespace@5.1.1(postcss@8.4.33): resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-ordered-values@5.1.3(postcss@8.4.32): + /postcss-ordered-values@5.1.3(postcss@8.4.33): resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0(postcss@8.4.32) - postcss: 8.4.32 + cssnano-utils: 3.1.0(postcss@8.4.33) + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true - /postcss-reduce-initial@5.1.2(postcss@8.4.32): + /postcss-reduce-initial@5.1.2(postcss@8.4.33): resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -7387,16 +6963,16 @@ packages: dependencies: browserslist: 4.21.5 caniuse-api: 3.0.0 - postcss: 8.4.32 + postcss: 8.4.33 dev: true - /postcss-reduce-transforms@5.1.0(postcss@8.4.32): + /postcss-reduce-transforms@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 dev: true @@ -7404,22 +6980,31 @@ packages: resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} dev: true - /postcss-safe-parser@6.0.0(postcss@8.4.32): + /postcss-safe-parser@6.0.0(postcss@8.4.33): resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.3.3 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 + dev: true + + /postcss-safe-parser@7.0.0(postcss@8.4.33): + resolution: {integrity: sha512-ovehqRNVCpuFzbXoTb4qLtyzK3xn3t/CUBxOs8LsnQjQrShaB4lKiHoVqY8ANaC0hBMHq5QVWk77rwGklFUDrg==} + engines: {node: '>=18.0'} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.33 dev: true - /postcss-scss@4.0.9(postcss@8.4.32): + /postcss-scss@4.0.9(postcss@8.4.33): resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.4.29 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true /postcss-selector-parser@6.0.13: @@ -7430,33 +7015,41 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss-sorting@8.0.2(postcss@8.4.32): + /postcss-selector-parser@6.0.15: + resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + + /postcss-sorting@8.0.2(postcss@8.4.33): resolution: {integrity: sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==} peerDependencies: postcss: ^8.4.20 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 dev: true - /postcss-svgo@5.1.0(postcss@8.4.32): + /postcss-svgo@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 + postcss: 8.4.33 postcss-value-parser: 4.2.0 svgo: 2.8.0 dev: true - /postcss-unique-selectors@5.1.1(postcss@8.4.32): + /postcss-unique-selectors@5.1.1(postcss@8.4.33): resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 dev: true /postcss-value-parser@4.2.0: @@ -7471,8 +7064,8 @@ packages: source-map: 0.6.1 dev: true - /postcss@8.4.32: - resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==} + /postcss@8.4.33: + resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.7 @@ -7606,11 +7199,6 @@ packages: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true - /quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - dev: true - /randombytes@2.1.0: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: @@ -7645,15 +7233,6 @@ packages: type-fest: 0.8.1 dev: true - /read-pkg-up@8.0.0: - resolution: {integrity: sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==} - engines: {node: '>=12'} - dependencies: - find-up: 5.0.0 - read-pkg: 6.0.0 - type-fest: 1.4.0 - dev: true - /read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} @@ -7664,16 +7243,6 @@ packages: type-fest: 0.6.0 dev: true - /read-pkg@6.0.0: - resolution: {integrity: sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==} - engines: {node: '>=12'} - dependencies: - '@types/normalize-package-data': 2.4.3 - normalize-package-data: 3.0.3 - parse-json: 5.2.0 - type-fest: 1.4.0 - dev: true - /readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} dependencies: @@ -7701,14 +7270,6 @@ packages: dependencies: picomatch: 2.3.1 - /redent@4.0.0: - resolution: {integrity: sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==} - engines: {node: '>=12'} - dependencies: - indent-string: 5.0.0 - strip-indent: 4.0.0 - dev: true - /regexp.prototype.flags@1.5.1: resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} engines: {node: '>= 0.4'} @@ -7827,20 +7388,28 @@ packages: glob: 7.2.3 dev: true + /rimraf@5.0.5: + resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==} + engines: {node: '>=14'} + hasBin: true + dependencies: + glob: 10.3.10 + dev: true + /roboto-fontface@0.10.0: resolution: {integrity: sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g==} dev: true - /rollup-plugin-polyfill-node@0.13.0(rollup@4.9.1): + /rollup-plugin-polyfill-node@0.13.0(rollup@4.9.4): resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 dependencies: - '@rollup/plugin-inject': 5.0.5(rollup@4.9.1) - rollup: 4.9.1 + '@rollup/plugin-inject': 5.0.5(rollup@4.9.4) + rollup: 4.9.4 dev: true - /rollup-plugin-postcss@4.0.2(postcss@8.4.32): + /rollup-plugin-postcss@4.0.2(postcss@8.4.33): resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} engines: {node: '>=10'} peerDependencies: @@ -7848,13 +7417,13 @@ packages: dependencies: chalk: 4.1.2 concat-with-sourcemaps: 1.1.0 - cssnano: 5.1.15(postcss@8.4.32) + cssnano: 5.1.15(postcss@8.4.33) import-cwd: 3.0.0 p-queue: 6.6.2 pify: 5.0.0 - postcss: 8.4.32 - postcss-load-config: 3.1.4(postcss@8.4.32) - postcss-modules: 4.3.1(postcss@8.4.32) + postcss: 8.4.33 + postcss-load-config: 3.1.4(postcss@8.4.33) + postcss-modules: 4.3.1(postcss@8.4.33) promise.series: 0.2.0 resolve: 1.22.2 rollup-pluginutils: 2.8.2 @@ -7870,7 +7439,7 @@ packages: rollup-pluginutils: 2.8.2 dev: true - /rollup-plugin-typescript2@0.36.0(rollup@4.9.1)(typescript@5.3.3): + /rollup-plugin-typescript2@0.36.0(rollup@4.9.4)(typescript@5.3.3): resolution: {integrity: sha512-NB2CSQDxSe9+Oe2ahZbf+B4bh7pHwjV5L+RSYpCu7Q5ROuN94F9b6ioWwKfz3ueL3KTtmX4o2MUH2cgHDIEUsw==} peerDependencies: rollup: '>=1.26.3' @@ -7879,7 +7448,7 @@ packages: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - rollup: 4.9.1 + rollup: 4.9.4 semver: 7.5.4 tslib: 2.6.2 typescript: 5.3.3 @@ -7899,33 +7468,27 @@ packages: fsevents: 2.3.3 dev: true - /rollup@3.29.4: - resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.3 - - /rollup@4.9.1: - resolution: {integrity: sha512-pgPO9DWzLoW/vIhlSoDByCzcpX92bKEorbgXuZrqxByte3JFk2xSW2JEeAcyLc9Ru9pqcNNW+Ob7ntsk2oT/Xw==} + /rollup@4.9.4: + resolution: {integrity: sha512-2ztU7pY/lrQyXSCnnoU4ICjT/tCG9cdH3/G25ERqE3Lst6vl2BCM5hL2Nw+sslAvAf+ccKsAq1SkKQALyqhR7g==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + dependencies: + '@types/estree': 1.0.5 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.9.1 - '@rollup/rollup-android-arm64': 4.9.1 - '@rollup/rollup-darwin-arm64': 4.9.1 - '@rollup/rollup-darwin-x64': 4.9.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.9.1 - '@rollup/rollup-linux-arm64-gnu': 4.9.1 - '@rollup/rollup-linux-arm64-musl': 4.9.1 - '@rollup/rollup-linux-riscv64-gnu': 4.9.1 - '@rollup/rollup-linux-x64-gnu': 4.9.1 - '@rollup/rollup-linux-x64-musl': 4.9.1 - '@rollup/rollup-win32-arm64-msvc': 4.9.1 - '@rollup/rollup-win32-ia32-msvc': 4.9.1 - '@rollup/rollup-win32-x64-msvc': 4.9.1 + '@rollup/rollup-android-arm-eabi': 4.9.4 + '@rollup/rollup-android-arm64': 4.9.4 + '@rollup/rollup-darwin-arm64': 4.9.4 + '@rollup/rollup-darwin-x64': 4.9.4 + '@rollup/rollup-linux-arm-gnueabihf': 4.9.4 + '@rollup/rollup-linux-arm64-gnu': 4.9.4 + '@rollup/rollup-linux-arm64-musl': 4.9.4 + '@rollup/rollup-linux-riscv64-gnu': 4.9.4 + '@rollup/rollup-linux-x64-gnu': 4.9.4 + '@rollup/rollup-linux-x64-musl': 4.9.4 + '@rollup/rollup-win32-arm64-msvc': 4.9.4 + '@rollup/rollup-win32-ia32-msvc': 4.9.4 + '@rollup/rollup-win32-x64-msvc': 4.9.4 fsevents: 2.3.3 - dev: true /route-recognizer@0.3.4: resolution: {integrity: sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==} @@ -7935,13 +7498,6 @@ packages: resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} dev: true - /run-applescript@5.0.0: - resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} - engines: {node: '>=12'} - dependencies: - execa: 5.1.1 - dev: true - /run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: @@ -7982,8 +7538,8 @@ packages: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true - /sass@1.69.5: - resolution: {integrity: sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==} + /sass@1.69.7: + resolution: {integrity: sha512-rzj2soDeZ8wtE2egyLXgOOHQvaC2iosZrkF6v3EUG+tBwEvhqUCzm0VP3k9gHF9LXbSrRhT5SksoI56Iw8NPnQ==} engines: {node: '>=14.0.0'} hasBin: true dependencies: @@ -8017,8 +7573,8 @@ packages: ajv-keywords: 5.1.0(ajv@8.12.0) dev: true - /scule@1.1.1: - resolution: {integrity: sha512-sHtm/SsIK9BUBI3EFT/Gnp9VoKfY6QLvlkvAE6YK7454IF8FSgJEAnJpVdSC7K5/pjI5NfxhzBLW2JAfYA/shQ==} + /scule@1.2.0: + resolution: {integrity: sha512-CRCmi5zHQnSoeCik9565PONMg0kfkvYmcSqrbOJY4txFfy1wvVULV4FDaiXhUblUgahdqz3F2NwHZ8i4eBTwUw==} dev: true /select-hose@2.0.0: @@ -8040,6 +7596,7 @@ packages: /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true + dev: true /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} @@ -8335,8 +7892,8 @@ packages: engines: {node: '>= 0.8'} dev: true - /std-env@3.6.0: - resolution: {integrity: sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==} + /std-env@3.7.0: + resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} dev: true /string-argv@0.3.2: @@ -8466,13 +8023,6 @@ packages: engines: {node: '>=4'} dev: true - /strip-indent@4.0.0: - resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} - engines: {node: '>=12'} - dependencies: - min-indent: 1.0.1 - dev: true - /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} @@ -8499,100 +8049,99 @@ packages: resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} dev: true - /stylehacks@5.1.1(postcss@8.4.32): + /stylehacks@5.1.1(postcss@8.4.33): resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.5 - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 dev: true - /stylelint-config-recommended@13.0.0(stylelint@15.11.0): - resolution: {integrity: sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==} - engines: {node: ^14.13.1 || >=16.0.0} + /stylelint-config-recommended@14.0.0(stylelint@16.1.0): + resolution: {integrity: sha512-jSkx290CglS8StmrLp2TxAppIajzIBZKYm3IxT89Kg6fGlxbPiTiyH9PS5YUuVAFwaJLl1ikiXX0QWjI0jmgZQ==} + engines: {node: '>=18.12.0'} peerDependencies: - stylelint: ^15.10.0 + stylelint: ^16.0.0 dependencies: - stylelint: 15.11.0(typescript@5.3.3) + stylelint: 16.1.0(typescript@5.3.3) dev: true - /stylelint-config-standard@34.0.0(stylelint@15.11.0): - resolution: {integrity: sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==} - engines: {node: ^14.13.1 || >=16.0.0} + /stylelint-config-standard@36.0.0(stylelint@16.1.0): + resolution: {integrity: sha512-3Kjyq4d62bYFp/Aq8PMKDwlgUyPU4nacXsjDLWJdNPRUgpuxALu1KnlAHIj36cdtxViVhXexZij65yM0uNIHug==} + engines: {node: '>=18.12.0'} peerDependencies: - stylelint: ^15.10.0 + stylelint: ^16.1.0 dependencies: - stylelint: 15.11.0(typescript@5.3.3) - stylelint-config-recommended: 13.0.0(stylelint@15.11.0) + stylelint: 16.1.0(typescript@5.3.3) + stylelint-config-recommended: 14.0.0(stylelint@16.1.0) dev: true - /stylelint-order@6.0.3(stylelint@15.11.0): - resolution: {integrity: sha512-1j1lOb4EU/6w49qZeT2SQVJXm0Ht+Qnq9GMfUa3pMwoyojIWfuA+JUDmoR97Bht1RLn4ei0xtLGy87M7d29B1w==} + /stylelint-order@6.0.4(stylelint@16.1.0): + resolution: {integrity: sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA==} peerDependencies: - stylelint: ^14.0.0 || ^15.0.0 + stylelint: ^14.0.0 || ^15.0.0 || ^16.0.1 dependencies: - postcss: 8.4.32 - postcss-sorting: 8.0.2(postcss@8.4.32) - stylelint: 15.11.0(typescript@5.3.3) + postcss: 8.4.33 + postcss-sorting: 8.0.2(postcss@8.4.33) + stylelint: 16.1.0(typescript@5.3.3) dev: true - /stylelint-scss@5.3.1(stylelint@15.11.0): - resolution: {integrity: sha512-5I9ZDIm77BZrjOccma5WyW2nJEKjXDd4Ca8Kk+oBapSO4pewSlno3n+OyimcyVJJujQZkBN2D+xuMkIamSc6hA==} + /stylelint-scss@6.0.0(stylelint@16.1.0): + resolution: {integrity: sha512-N1xV/Ef5PNRQQt9E45unzGvBUN1KZxCI8B4FgN/pMfmyRYbZGVN4y9qWlvOMdScU17c8VVCnjIHTVn38Bb6qSA==} + engines: {node: '>=18.12.0'} peerDependencies: - stylelint: ^14.5.1 || ^15.0.0 + stylelint: ^16.0.2 dependencies: known-css-properties: 0.29.0 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.15 postcss-value-parser: 4.2.0 - stylelint: 15.11.0(typescript@5.3.3) + stylelint: 16.1.0(typescript@5.3.3) dev: true - /stylelint@15.11.0(typescript@5.3.3): - resolution: {integrity: sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==} - engines: {node: ^14.13.1 || >=16.0.0} + /stylelint@16.1.0(typescript@5.3.3): + resolution: {integrity: sha512-Sh1rRV0lN1qxz/QsuuooLWsIZ/ona7NKw/fRZd6y6PyXYdD2W0EAzJ8yJcwSx4Iw/muz0CF09VZ+z4EiTAcKmg==} + engines: {node: '>=18.12.0'} hasBin: true dependencies: - '@csstools/css-parser-algorithms': 2.3.2(@csstools/css-tokenizer@2.2.1) - '@csstools/css-tokenizer': 2.2.1 - '@csstools/media-query-list-parser': 2.1.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.1) - '@csstools/selector-specificity': 3.0.0(postcss-selector-parser@6.0.13) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/media-query-list-parser': 2.1.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/selector-specificity': 3.0.1(postcss-selector-parser@6.0.15) balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 8.3.6(typescript@5.3.3) + cosmiconfig: 9.0.0(typescript@5.3.3) css-functions-list: 3.2.1 css-tree: 2.3.1 debug: 4.3.4 - fast-glob: 3.3.1 + fast-glob: 3.3.2 fastest-levenshtein: 1.0.16 - file-entry-cache: 7.0.1 + file-entry-cache: 8.0.0 global-modules: 2.0.0 globby: 11.1.0 globjoin: 0.1.4 html-tags: 3.3.1 - ignore: 5.2.4 - import-lazy: 4.0.0 + ignore: 5.3.0 imurmurhash: 0.1.4 is-plain-object: 5.0.0 known-css-properties: 0.29.0 mathml-tag-names: 2.1.3 - meow: 10.1.5 + meow: 13.1.0 micromatch: 4.0.5 normalize-path: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.32 + postcss: 8.4.33 postcss-resolve-nested-selector: 0.1.1 - postcss-safe-parser: 6.0.0(postcss@8.4.32) - postcss-selector-parser: 6.0.13 + postcss-safe-parser: 7.0.0(postcss@8.4.33) + postcss-selector-parser: 6.0.15 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 - strip-ansi: 6.0.1 - style-search: 0.1.0 + strip-ansi: 7.1.0 supports-hyperlinks: 3.0.0 svg-tags: 1.0.0 table: 6.8.1 @@ -8658,11 +8207,11 @@ packages: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} dev: true - /synckit@0.8.5: - resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} + /synckit@0.8.8: + resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==} engines: {node: ^14.18.0 || >=16.0.0} dependencies: - '@pkgr/utils': 2.4.2 + '@pkgr/core': 0.1.0 tslib: 2.6.2 dev: true @@ -8766,11 +8315,6 @@ packages: engines: {node: '>=14.0.0'} dev: true - /titleize@3.0.0: - resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} - engines: {node: '>=12'} - dev: true - /to-fast-properties@2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} @@ -8796,7 +8340,7 @@ packages: engines: {node: '>=6'} dependencies: psl: 1.9.0 - punycode: 2.3.0 + punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 dev: true @@ -8812,11 +8356,6 @@ packages: punycode: 2.3.1 dev: true - /trim-newlines@4.1.1: - resolution: {integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==} - engines: {node: '>=12'} - dev: true - /trim-repeated@1.0.0: resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==} engines: {node: '>=0.10.0'} @@ -8873,11 +8412,6 @@ packages: engines: {node: '>=8'} dev: true - /type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - dev: true - /type-fest@3.13.1: resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} engines: {node: '>=14.16'} @@ -8929,12 +8463,6 @@ packages: is-typed-array: 1.1.12 dev: true - /typescript@5.0.4: - resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} - engines: {node: '>=12.20'} - hasBin: true - dev: true - /typescript@5.3.3: resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} engines: {node: '>=14.17'} @@ -8960,20 +8488,22 @@ packages: /undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - /unimport@3.6.1(rollup@4.9.1): - resolution: {integrity: sha512-zKzbp8AQ+l8QK3XrONtUBdgBbMI8TkGh8hBYF77ZkVqMLLIAHwGSwJRFolPQMBx/5pezeRKvmu2gzlqnxRZeqQ==} + /unimport@3.7.1(rollup@4.9.4): + resolution: {integrity: sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==} dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.9.1) + '@rollup/pluginutils': 5.1.0(rollup@4.9.4) + acorn: 8.11.3 escape-string-regexp: 5.0.0 + estree-walker: 3.0.3 fast-glob: 3.3.2 local-pkg: 0.5.0 magic-string: 0.30.5 mlly: 1.4.2 - pathe: 1.1.1 + pathe: 1.1.2 pkg-types: 1.0.3 - scule: 1.1.1 + scule: 1.2.0 strip-literal: 1.3.0 - unplugin: 1.5.1 + unplugin: 1.6.0 transitivePeerDependencies: - rollup dev: true @@ -9003,8 +8533,8 @@ packages: engines: {node: '>= 0.8'} dev: true - /unplugin-auto-import@0.17.2(@vueuse/core@10.7.0)(rollup@4.9.1): - resolution: {integrity: sha512-Eu/xWI6SH4jTWXvzOfXQWAxRtiz/gMObm7wXtgMj7wBjHQKLgHTmHd4R4oha87KYGah1aKMqiqDeAxiPmfSoTg==} + /unplugin-auto-import@0.17.3(@vueuse/core@10.7.1)(rollup@4.9.4): + resolution: {integrity: sha512-0cn0wr8X579TtdZKUAps0dDVrYzttx38ImdxZjmCeNlMDJX8UuSjO83vFqgS4ClNDIGWAute+xl9j5vRSX+vsw==} engines: {node: '>=14'} peerDependencies: '@nuxt/kit': ^3.2.2 @@ -9015,33 +8545,28 @@ packages: '@vueuse/core': optional: true dependencies: - '@antfu/utils': 0.7.6 - '@rollup/pluginutils': 5.1.0(rollup@4.9.1) - '@vueuse/core': 10.7.0(vue@3.3.12) + '@antfu/utils': 0.7.7 + '@rollup/pluginutils': 5.1.0(rollup@4.9.4) + '@vueuse/core': 10.7.1(vue@3.4.10) fast-glob: 3.3.2 local-pkg: 0.5.0 magic-string: 0.30.5 minimatch: 9.0.3 - unimport: 3.6.1(rollup@4.9.1) - unplugin: 1.5.1 + unimport: 3.7.1(rollup@4.9.4) + unplugin: 1.6.0 transitivePeerDependencies: - rollup dev: true - /unplugin@1.5.1: - resolution: {integrity: sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==} + /unplugin@1.6.0: + resolution: {integrity: sha512-BfJEpWBu3aE/AyHx8VaNE/WgouoQxgH9baAiH82JjX8cqVyi3uJQstqwD5J+SZxIK326SZIhsSZlALXVBCknTQ==} dependencies: - acorn: 8.11.2 + acorn: 8.11.3 chokidar: 3.5.3 webpack-sources: 3.2.3 webpack-virtual-modules: 0.6.1 dev: true - /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - dev: true - /upath@2.0.1: resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} engines: {node: '>=4'} @@ -9127,16 +8652,16 @@ packages: engines: {node: '>= 0.8'} dev: true - /vite-node@1.0.4(@types/node@20.10.5)(sass@1.69.5): - resolution: {integrity: sha512-9xQQtHdsz5Qn8hqbV7UKqkm8YkJhzT/zr41Dmt5N7AlD8hJXw/Z7y0QiD5I8lnTthV9Rvcvi0QW7PI0Fq83ZPg==} + /vite-node@1.1.3(@types/node@20.11.0)(sass@1.69.7): + resolution: {integrity: sha512-BLSO72YAkIUuNrOx+8uznYICJfTEbvBAmWClY3hpath5+h1mbPS5OMn42lrTxXuyCazVyZoDkSRnju78GiVCqA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true dependencies: cac: 6.7.14 debug: 4.3.4 - pathe: 1.1.1 + pathe: 1.1.2 picocolors: 1.0.0 - vite: 5.0.10(@types/node@20.10.5)(sass@1.69.5) + vite: 5.0.11(@types/node@20.11.0)(sass@1.69.7) transitivePeerDependencies: - '@types/node' - less @@ -9148,26 +8673,26 @@ packages: - terser dev: true - /vite-plugin-babel@1.1.3(@babel/core@7.23.6)(vite@4.5.0): - resolution: {integrity: sha512-WE8ORQm8530kj0geiDL1r/+P2MaU0b+5wL5E8Jq07aounFwRIUeJXziGiMr2DFQs78vaefB5GRKh257M8Z6gFQ==} + /vite-plugin-babel@1.2.0(@babel/core@7.23.7)(vite@5.0.11): + resolution: {integrity: sha512-ltAnq535Ubf9sDbVCkztAdkwx5aQbNrwPFs+iZTJ5FaAhTdxjqmLGpxsAaRfJWEKBJ/kFf9KwMoTdArm0IRUUw==} peerDependencies: '@babel/core': ^7.0.0 - vite: ^2.7.0 || ^3.0.0 || ^4.0.0 + vite: ^2.7.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 dependencies: - '@babel/core': 7.23.6 - vite: 4.5.0(@types/node@20.10.5)(sass@1.69.5) + '@babel/core': 7.23.7 + vite: 5.0.11(@types/node@20.11.0)(sass@1.69.7) dev: true - /vite-plugin-css-injected-by-js@3.3.0(vite@4.5.0): - resolution: {integrity: sha512-xG+jyHNCmUqi/TXp6q88wTJGeAOrNLSyUUTp4qEQ9QZLGcHWQQsCsSSKa59rPMQr8sOzfzmWDd8enGqfH/dBew==} + /vite-plugin-css-injected-by-js@3.3.1(vite@5.0.11): + resolution: {integrity: sha512-PjM/X45DR3/V1K1fTRs8HtZHEQ55kIfdrn+dzaqNBFrOYO073SeSNCxp4j7gSYhV9NffVHaEnOL4myoko0ePAg==} peerDependencies: vite: '>2.0.0-0' dependencies: - vite: 4.5.0(@types/node@20.10.5)(sass@1.69.5) + vite: 5.0.11(@types/node@20.11.0)(sass@1.69.7) dev: true - /vite-plugin-dts@3.6.4(@types/node@20.10.5)(rollup@4.9.1)(typescript@5.3.3)(vite@4.5.0): - resolution: {integrity: sha512-yOVhUI/kQhtS6lCXRYYLv2UUf9bftcwQK9ROxCX2ul17poLQs02ctWX7+vXB8GPRzH8VCK3jebEFtPqqijXx6w==} + /vite-plugin-dts@3.7.0(@types/node@20.11.0)(rollup@4.9.4)(typescript@5.3.3)(vite@5.0.11): + resolution: {integrity: sha512-np1uPaYzu98AtPReB8zkMnbjwcNHOABsLhqVOf81b3ol9b5M2wPcAVs8oqPnOpr6Us+7yDXVauwkxsk5+ldmRA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -9176,21 +8701,21 @@ packages: vite: optional: true dependencies: - '@microsoft/api-extractor': 7.38.4(@types/node@20.10.5) - '@rollup/pluginutils': 5.1.0(rollup@4.9.1) - '@vue/language-core': 1.8.25(typescript@5.3.3) + '@microsoft/api-extractor': 7.39.0(@types/node@20.11.0) + '@rollup/pluginutils': 5.1.0(rollup@4.9.4) + '@vue/language-core': 1.8.27(typescript@5.3.3) debug: 4.3.4 kolorist: 1.8.0 typescript: 5.3.3 - vite: 4.5.0(@types/node@20.10.5)(sass@1.69.5) - vue-tsc: 1.8.25(typescript@5.3.3) + vite: 5.0.11(@types/node@20.11.0)(sass@1.69.7) + vue-tsc: 1.8.27(typescript@5.3.3) transitivePeerDependencies: - '@types/node' - rollup - supports-color dev: true - /vite-plugin-eslint@1.8.1(eslint@8.56.0)(vite@4.5.0): + /vite-plugin-eslint@1.8.1(eslint@8.56.0)(vite@5.0.11): resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==} peerDependencies: eslint: '>=7' @@ -9200,24 +8725,24 @@ packages: '@types/eslint': 8.37.0 eslint: 8.56.0 rollup: 2.79.1 - vite: 4.5.0(@types/node@20.10.5)(sass@1.69.5) + vite: 5.0.11(@types/node@20.11.0)(sass@1.69.7) dev: true - /vite-plugin-static-copy@0.17.1(vite@4.5.0): - resolution: {integrity: sha512-9h3iaVs0bqnqZOM5YHJXGHqdC5VAVlTZ2ARYsuNpzhEJUHmFqXY7dAK4ZFpjEQ4WLFKcaN8yWbczr81n01U4sQ==} - engines: {node: ^14.18.0 || >=16.0.0} + /vite-plugin-static-copy@1.0.0(vite@5.0.11): + resolution: {integrity: sha512-kMlrB3WDtC5GzFedNIPkpjnOAr8M11PfWOiUaONrUZ3AqogTsOmIhTt6w7Fh311wl8pN81ld7sfuOEogFJ9N8A==} + engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + vite: ^5.0.0 dependencies: chokidar: 3.5.3 fast-glob: 3.3.2 fs-extra: 11.2.0 picocolors: 1.0.0 - vite: 4.5.0(@types/node@20.10.5)(sass@1.69.5) + vite: 5.0.11(@types/node@20.11.0)(sass@1.69.7) dev: true - /vite-plugin-stylelint@5.3.0(postcss@8.4.32)(rollup@4.9.1)(stylelint@15.11.0)(vite@4.5.0): - resolution: {integrity: sha512-pbZ0qNikukazwZK6rItIjuTcABc7wfDBKQSQaVTPBYqGEJTVzFzuPJcxR4OMwlddIIk1Xp7vPMQTu9m2pGZ5HQ==} + /vite-plugin-stylelint@5.3.1(postcss@8.4.33)(rollup@4.9.4)(stylelint@16.1.0)(vite@5.0.11): + resolution: {integrity: sha512-M/hSdfOwnOVghbJDeuuYIU2xO/MMukYR8QcEyNKFPG8ro1L+DlTdViix2B2d/FvAw14WPX88ckA5A7NvUjJz8w==} engines: {node: '>=14.18'} peerDependencies: '@types/stylelint': ^13.0.0 @@ -9233,71 +8758,36 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.9.1) + '@rollup/pluginutils': 5.1.0(rollup@4.9.4) chokidar: 3.5.3 debug: 4.3.4 - postcss: 8.4.32 - rollup: 4.9.1 - stylelint: 15.11.0(typescript@5.3.3) - vite: 4.5.0(@types/node@20.10.5)(sass@1.69.5) + postcss: 8.4.33 + rollup: 4.9.4 + stylelint: 16.1.0(typescript@5.3.3) + vite: 5.0.11(@types/node@20.11.0)(sass@1.69.7) transitivePeerDependencies: - supports-color dev: true - /vite-plugin-vuetify@1.0.2(vite@4.5.0)(vue@3.3.12)(vuetify@3.4.7): - resolution: {integrity: sha512-MubIcKD33O8wtgQXlbEXE7ccTEpHZ8nPpe77y9Wy3my2MWw/PgehP9VqTp92BLqr0R1dSL970Lynvisx3UxBFw==} - engines: {node: '>=12'} + /vite-plugin-vuetify@2.0.1(vite@5.0.11)(vue@3.4.10)(vuetify@3.4.10): + resolution: {integrity: sha512-GlRVAruohE8b0FqmeYYh1cYg3n8THGOv066uMA44qLv9uhUxSLw55CS7fi2yU0wH363TJ2vq36zUsPTjRFrjGQ==} + engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: - vite: ^2.7.0 || ^3.0.0 || ^4.0.0 - vuetify: ^3.0.0-beta.4 + vite: '>=5' + vue: ^3.0.0 + vuetify: ^3.0.0 dependencies: - '@vuetify/loader-shared': 1.7.1(vue@3.3.12)(vuetify@3.4.7) + '@vuetify/loader-shared': 2.0.1(vue@3.4.10)(vuetify@3.4.10) debug: 4.3.4 upath: 2.0.1 - vite: 4.5.0(@types/node@20.10.5)(sass@1.69.5) - vuetify: 3.4.7(typescript@5.3.3)(vite-plugin-vuetify@1.0.2)(vue@3.3.12) + vite: 5.0.11(@types/node@20.11.0)(sass@1.69.7) + vue: 3.4.10(typescript@5.3.3) + vuetify: 3.4.10(typescript@5.3.3)(vite-plugin-vuetify@2.0.1)(vue@3.4.10) transitivePeerDependencies: - supports-color - - vue - - /vite@4.5.0(@types/node@20.10.5)(sass@1.69.5): - resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - lightningcss: ^1.21.0 - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - '@types/node': 20.10.5 - esbuild: 0.18.20 - postcss: 8.4.32 - rollup: 3.29.4 - sass: 1.69.5 - optionalDependencies: - fsevents: 2.3.3 - /vite@5.0.10(@types/node@20.10.5)(sass@1.69.5): - resolution: {integrity: sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw==} + /vite@5.0.11(@types/node@20.11.0)(sass@1.69.7): + resolution: {integrity: sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -9324,17 +8814,16 @@ packages: terser: optional: true dependencies: - '@types/node': 20.10.5 - esbuild: 0.19.9 - postcss: 8.4.32 - rollup: 4.9.1 - sass: 1.69.5 + '@types/node': 20.11.0 + esbuild: 0.19.11 + postcss: 8.4.33 + rollup: 4.9.4 + sass: 1.69.7 optionalDependencies: fsevents: 2.3.3 - dev: true - /vitest@1.0.4(@types/node@20.10.5)(jsdom@23.0.1)(sass@1.69.5): - resolution: {integrity: sha512-s1GQHp/UOeWEo4+aXDOeFBJwFzL6mjycbQwwKWX2QcYfh/7tIerS59hWQ20mxzupTJluA2SdwiBuWwQHH67ckg==} + /vitest@1.1.3(@types/node@20.11.0)(jsdom@23.2.0)(sass@1.69.7): + resolution: {integrity: sha512-2l8om1NOkiA90/Y207PsEvJLYygddsOyr81wLQ20Ra8IlLKbyQncWsGZjnbkyG2KwwuTXLQjEPOJuxGMG8qJBQ==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -9358,28 +8847,28 @@ packages: jsdom: optional: true dependencies: - '@types/node': 20.10.5 - '@vitest/expect': 1.0.4 - '@vitest/runner': 1.0.4 - '@vitest/snapshot': 1.0.4 - '@vitest/spy': 1.0.4 - '@vitest/utils': 1.0.4 + '@types/node': 20.11.0 + '@vitest/expect': 1.1.3 + '@vitest/runner': 1.1.3 + '@vitest/snapshot': 1.1.3 + '@vitest/spy': 1.1.3 + '@vitest/utils': 1.1.3 acorn-walk: 8.3.1 cac: 6.7.14 - chai: 4.3.10 + chai: 4.4.0 debug: 4.3.4 execa: 8.0.1 - jsdom: 23.0.1 + jsdom: 23.2.0 local-pkg: 0.5.0 magic-string: 0.30.5 - pathe: 1.1.1 + pathe: 1.1.2 picocolors: 1.0.0 - std-env: 3.6.0 + std-env: 3.7.0 strip-literal: 1.3.0 tinybench: 2.5.1 tinypool: 0.8.1 - vite: 5.0.10(@types/node@20.10.5)(sass@1.69.5) - vite-node: 1.0.4(@types/node@20.10.5)(sass@1.69.5) + vite: 5.0.11(@types/node@20.11.0)(sass@1.69.7) + vite-node: 1.1.3(@types/node@20.11.0)(sass@1.69.7) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -9395,7 +8884,7 @@ packages: resolution: {integrity: sha512-NCA6sekiJIMnMs4DdORxATXD+/NRkQpS32UC+I1KQJUasx+Z7MZUb3Y+MsKsFmX+PgyTYSteb73JW77AibaCCw==} dev: true - /vue-demi@0.14.6(vue@3.3.12): + /vue-demi@0.14.6(vue@3.4.10): resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==} engines: {node: '>=12'} hasBin: true @@ -9407,7 +8896,7 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.3.12(typescript@5.3.3) + vue: 3.4.10(typescript@5.3.3) /vue-eslint-parser@9.3.1(eslint@8.56.0): resolution: {integrity: sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g==} @@ -9427,8 +8916,8 @@ packages: - supports-color dev: true - /vue-eslint-parser@9.3.2(eslint@8.56.0): - resolution: {integrity: sha512-q7tWyCVaV9f8iQyIA5Mkj/S6AoJ9KBN8IeUSf3XEmBrOtxOZnfTg5s4KClbZBCK3GtnT/+RyCLZyDHuZwTuBjg==} + /vue-eslint-parser@9.4.0(eslint@8.56.0): + resolution: {integrity: sha512-7KsNBb6gHFA75BtneJsoK/dbZ281whUIwFYdQxA68QrCrGMXYzUMbPDHGcOQ0OocIVKrWSKWXZ4mL7tonCXoUw==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' @@ -9449,7 +8938,7 @@ packages: resolution: {integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==} dev: true - /vue-loader@15.11.1(@vue/compiler-sfc@3.3.12)(css-loader@6.7.3)(prettier@3.1.1)(webpack@5.82.1): + /vue-loader@15.11.1(css-loader@6.7.3)(prettier@3.1.1)(webpack@5.82.1): resolution: {integrity: sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==} peerDependencies: '@vue/compiler-sfc': ^3.0.8 @@ -9468,7 +8957,6 @@ packages: vue-template-compiler: optional: true dependencies: - '@vue/compiler-sfc': 3.3.12 '@vue/component-compiler-utils': 3.3.0 css-loader: 6.7.3(webpack@5.82.1) hash-sum: 1.0.2 @@ -9533,7 +9021,7 @@ packages: - whiskers dev: true - /vue-loader@17.1.1(@vue/compiler-sfc@3.3.12)(vue@3.3.12)(webpack@5.82.1): + /vue-loader@17.1.1(vue@3.4.10)(webpack@5.82.1): resolution: {integrity: sha512-qpqEVkKdrAsgyIBMHaiXurDeCuBWqRyKqg2GI4aG3NbggEls+BLqTZdqahbJJh7fm83sz+iz3gg6eDWdbNlG7Q==} peerDependencies: '@vue/compiler-sfc': '*' @@ -9545,10 +9033,9 @@ packages: vue: optional: true dependencies: - '@vue/compiler-sfc': 3.3.12 chalk: 4.1.2 hash-sum: 2.0.0 - vue: 3.3.12(typescript@5.3.3) + vue: 3.4.10(typescript@5.3.3) watchpack: 2.4.0 webpack: 5.82.1 dev: true @@ -9560,8 +9047,8 @@ packages: loader-utils: 1.4.2 dev: true - /vue-template-compiler@2.7.15: - resolution: {integrity: sha512-yQxjxMptBL7UAog00O8sANud99C6wJF+7kgbcwqkvA38vCGF7HWE66w0ZFnS/kX5gSoJr/PQ4/oS3Ne2pW37Og==} + /vue-template-compiler@2.7.16: + resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} dependencies: de-indent: 1.0.2 he: 1.2.0 @@ -9571,35 +9058,35 @@ packages: resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==} dev: true - /vue-tsc@1.8.25(typescript@5.3.3): - resolution: {integrity: sha512-lHsRhDc/Y7LINvYhZ3pv4elflFADoEOo67vfClAfF2heVHpHmVquLSjojgCSIwzA4F0Pc4vowT/psXCYcfk+iQ==} + /vue-tsc@1.8.27(typescript@5.3.3): + resolution: {integrity: sha512-WesKCAZCRAbmmhuGl3+VrdWItEvfoFIPXOvUJkjULi+x+6G/Dy69yO3TBRJDr9eUlmsNAwVmxsNZxvHKzbkKdg==} hasBin: true peerDependencies: typescript: '*' dependencies: '@volar/typescript': 1.11.1 - '@vue/language-core': 1.8.25(typescript@5.3.3) + '@vue/language-core': 1.8.27(typescript@5.3.3) semver: 7.5.4 typescript: 5.3.3 dev: true - /vue@3.3.12(typescript@5.3.3): - resolution: {integrity: sha512-jYNv2QmET2OTHsFzfWHMnqgCfqL4zfo97QwofdET+GBRCHhSCHuMTTvNIgeSn0/xF3JRT5OGah6MDwUFN7MPlg==} + /vue@3.4.10(typescript@5.3.3): + resolution: {integrity: sha512-c+O8qGqdWPF9joTCzMGeDDedViooh6c8RY3+eW5+6GCAIY8YjChmU06LsUu0PnMZbIk1oKUoJTqKzmghYtFypw==} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@vue/compiler-dom': 3.3.12 - '@vue/compiler-sfc': 3.3.12 - '@vue/runtime-dom': 3.3.12 - '@vue/server-renderer': 3.3.12(vue@3.3.12) - '@vue/shared': 3.3.12 + '@vue/compiler-dom': 3.4.10 + '@vue/compiler-sfc': 3.4.10 + '@vue/runtime-dom': 3.4.10 + '@vue/server-renderer': 3.4.10(vue@3.4.10) + '@vue/shared': 3.4.10 typescript: 5.3.3 - /vuetify@3.4.7(typescript@5.3.3)(vite-plugin-vuetify@1.0.2)(vue@3.3.12): - resolution: {integrity: sha512-K++yer5H94Yi/uzgKDOTYRPA9qipVntomEohRsegfAnRqmFyw2x9clHVEoTRa/Fvk3nkHti0zn90Mp7mSUwVnw==} + /vuetify@3.4.10(typescript@5.3.3)(vite-plugin-vuetify@2.0.1)(vue@3.4.10): + resolution: {integrity: sha512-tObGoumCJxuK26OpS/CLZZIJAgDtN2cnd31vJscVhpuf6jeMD7wh8IsgfZownAOXU1FcKWVQwn1RSDsoXk5cJA==} engines: {node: ^12.20 || >=14.13} peerDependencies: typescript: '>=4.7' @@ -9618,8 +9105,8 @@ packages: optional: true dependencies: typescript: 5.3.3 - vite-plugin-vuetify: 1.0.2(vite@4.5.0)(vue@3.3.12)(vuetify@3.4.7) - vue: 3.3.12(typescript@5.3.3) + vite-plugin-vuetify: 2.0.1(vite@5.0.11)(vue@3.4.10)(vuetify@3.4.10) + vue: 3.4.10(typescript@5.3.3) /w3c-xmlserializer@5.0.0: resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} @@ -9746,7 +9233,7 @@ packages: spdy: 4.0.2 webpack: 5.82.1 webpack-dev-middleware: 5.3.3(webpack@5.82.1) - ws: 8.13.0 + ws: 8.16.0 transitivePeerDependencies: - bufferutil - debug @@ -9969,21 +9456,8 @@ packages: optional: true dev: true - /ws@8.13.0: - resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - dev: true - - /ws@8.14.2: - resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==} + /ws@8.16.0: + resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 diff --git a/src/App.vue b/src/App.vue index e3776ef..bd3302d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -101,13 +101,13 @@ html { margin: 0 -0.7em; position: absolute; - &:not(:hover):not(:focus) { + &:not(:hover, :focus) { opacity: 0; } } } -.name-item:not(:hover):not(:focus) span { +.name-item:not(:hover, :focus) span { opacity: 0; } diff --git a/src/documentation/DocsPage.vue b/src/documentation/DocsPage.vue index b6238b2..3de05aa 100644 --- a/src/documentation/DocsPage.vue +++ b/src/documentation/DocsPage.vue @@ -143,7 +143,7 @@ provide('classes', classes); diff --git a/src/plugin/components/VInlineAutocomplete/__tests__/VInlineAutocomplete.spec.ts b/src/plugin/components/VInlineAutocomplete/__tests__/VInlineAutocomplete.spec.ts new file mode 100644 index 0000000..baab64a --- /dev/null +++ b/src/plugin/components/VInlineAutocomplete/__tests__/VInlineAutocomplete.spec.ts @@ -0,0 +1,30 @@ +import VInlineAutocomplete from '../VInlineAutocomplete.vue'; +import { createVuetify } from 'vuetify'; +import { describe, it, expect } from 'vitest'; +import { mount } from '@vue/test-utils'; +import { selectProps } from '../../../utils/props'; + + +const vuetify = createVuetify(); + +const componentProps = Object.assign(selectProps, { + autoSelectFirst: false, + cardProps: {}, + items: [], + menuIcon: '$dropdown', + rules: [], +}); + +describe('VInlineSelect', () => { + const wrapper = mount(VInlineAutocomplete, { + global: { + plugins: [vuetify], + }, + }); + + it('testing default component props', () => { + const returnedProps = wrapper.getComponent(VInlineAutocomplete).props(); + + expect(returnedProps).toEqual(componentProps); + }); +}); diff --git a/src/plugin/components/VInlineAutocomplete/index.ts b/src/plugin/components/VInlineAutocomplete/index.ts new file mode 100644 index 0000000..33030bd --- /dev/null +++ b/src/plugin/components/VInlineAutocomplete/index.ts @@ -0,0 +1,26 @@ +import type { VAutocomplete } from 'vuetify/components'; +import type { SharedProps } from '@/plugin/types'; +import type VInlineAutocomplete from './VInlineAutocomplete.vue'; + + +export interface VInlineAutocompleteProps extends Omit { + autoSelectFirst?: VAutocomplete['$props']['autoSelectFirst']; + clearIcon?: VAutocomplete['$props']['clearIcon']; + clearable?: VAutocomplete['$props']['clearable']; + density?: VAutocomplete['$props']['density']; + hideSelected?: VAutocomplete['$props']['hideSelected']; + itemTitle?: VAutocomplete['$props']['itemTitle']; + itemValue?: VAutocomplete['$props']['itemValue']; + items?: VAutocomplete['$props']['items']; + menu?: VAutocomplete['$props']['menu']; + menuIcon?: VAutocomplete['$props']['menuIcon']; + rules?: VAutocomplete['$props']['rules']; + variant?: VAutocomplete['$props']['variant']; +} + + +export type VInlineAutocomplete = InstanceType; + +export default VInlineAutocomplete; diff --git a/src/plugin/components/VInlineCheckbox/VInlineCheckbox.vue b/src/plugin/components/VInlineCheckbox/VInlineCheckbox.vue index 284229d..ad3b395 100644 --- a/src/plugin/components/VInlineCheckbox/VInlineCheckbox.vue +++ b/src/plugin/components/VInlineCheckbox/VInlineCheckbox.vue @@ -5,7 +5,7 @@ :style="inlineFieldsContainerStyle" >
@@ -15,19 +15,19 @@ >
@@ -44,22 +44,22 @@
@@ -111,7 +111,7 @@
@@ -172,31 +172,15 @@ const iconOptions = inject(Symbol.for('vuetify:icons')); const theme = useTheme(); const props = withDefaults(defineProps(), { ...checkboxProps }); -let settings = reactive({ ...attrs, ...props, ...injectedOptions }); - -const { cancelButtonColor, - cancelButtonSize, - cancelButtonTitle, - cancelButtonVariant, - cancelIcon, - cancelIconColor, - cardField, - closeSiblings, - color, - fieldOnly, - hideCancelIcon, - hideDetails, - loadingIcon, - loadingIconColor, - saveButtonColor, - saveButtonSize, - saveButtonTitle, - saveButtonVariant, - saveIcon, - saveIconColor } = toRefs(settings); +const settings = reactive({ ...attrs, ...props, ...injectedOptions }); + +watchEffect(() => { + Object.assign(settings, { ...attrs, ...props, ...injectedOptions }); +}); const disabled = computed(() => props.disabled); const loadingProp = computed(() => props.loading); +const underlineColor = computed(() => settings.underlineColor); const error = ref(false); const showField = ref(false); @@ -293,7 +277,7 @@ const displayValueStyle = computed(() => useDisplayValueStyles({ color: settings.color, error, theme, - underlineColor: settings.underlineColor, + underlineColor: underlineColor.value, underlineStyle: settings.underlineStyle, underlineWidth: settings.underlineWidth, underlined: settings.underlined, @@ -346,18 +330,17 @@ function toggleField() { const response = useToggleField({ attrs, - closeSiblings: closeSiblings.value, + closeSiblings: settings.closeSiblings, fieldOnly: settings.fieldOnly, props, showField, timeOpened: timeOpened.value, }); - settings = { ...settings, ...response.settings }; showField.value = response.showField; timeOpened.value = response.timeOpened; - if (closeSiblingsBus !== null && closeSiblings.value && showField.value && !settings.fieldOnly) { + if (closeSiblingsBus !== null && settings.closeSiblings && showField.value && !settings.fieldOnly) { closeSiblingsBus.emit(response.timeOpened); } } @@ -381,7 +364,7 @@ function saveValue(value: any) { let closeSiblingsBus: unknown | any; let unsubscribeBus: () => void; -if (closeSiblings.value) { +if (settings.closeSiblings) { import('@vueuse/core').then(({ useEventBus }) => { closeSiblingsBus = useEventBus(CloseSiblingsBus); unsubscribeBus = closeSiblingsBus.on(closeSiblingsListener); diff --git a/src/plugin/components/VInlineCheckbox/__tests__/VInlineCheckbox.test.ts b/src/plugin/components/VInlineCheckbox/__tests__/VInlineCheckbox.test.ts index 0b8d241..b297e2c 100644 --- a/src/plugin/components/VInlineCheckbox/__tests__/VInlineCheckbox.test.ts +++ b/src/plugin/components/VInlineCheckbox/__tests__/VInlineCheckbox.test.ts @@ -9,9 +9,7 @@ const vuetify = createVuetify(); const componentProps = Object.assign(checkboxProps, { cardProps: {}, - item: undefined, modelValue: undefined, - required: false, }); describe('VInlineCheckbox', () => { diff --git a/src/plugin/components/VInlineCustomField/VInlineCustomField.vue b/src/plugin/components/VInlineCustomField/VInlineCustomField.vue index c058c11..4c1ade3 100644 --- a/src/plugin/components/VInlineCustomField/VInlineCustomField.vue +++ b/src/plugin/components/VInlineCustomField/VInlineCustomField.vue @@ -127,7 +127,11 @@ const injectedOptions = inject(globalOptions, {}); const iconOptions = inject(Symbol.for('vuetify:icons')); const props = withDefaults(defineProps(), { ...textFieldProps }); -let settings = reactive({ ...attrs, ...props, ...injectedOptions }); +const settings = reactive({ ...attrs, ...props, ...injectedOptions }); + +watchEffect(() => { + Object.assign(settings, { ...attrs, ...props, ...injectedOptions }); +}); const { cancelButtonColor, cancelButtonSize, @@ -307,7 +311,6 @@ function toggleField() { timeOpened: timeOpened.value, }); - settings = { ...settings, ...response.settings }; showField.value = response.showField; timeOpened.value = response.timeOpened; diff --git a/src/plugin/components/VInlineCustomField/__tests__/VInlineCustomField.spec.ts b/src/plugin/components/VInlineCustomField/__tests__/VInlineCustomField.spec.ts index 3e7fa4c..72f46b7 100644 --- a/src/plugin/components/VInlineCustomField/__tests__/VInlineCustomField.spec.ts +++ b/src/plugin/components/VInlineCustomField/__tests__/VInlineCustomField.spec.ts @@ -9,7 +9,6 @@ const vuetify = createVuetify(); const componentProps = Object.assign(textFieldProps, { cardProps: {}, - required: false, }); describe('VInlineTextField', () => { diff --git a/src/plugin/components/VInlineSelect/VInlineSelect.vue b/src/plugin/components/VInlineSelect/VInlineSelect.vue index 4b0f5ed..3863cc1 100644 --- a/src/plugin/components/VInlineSelect/VInlineSelect.vue +++ b/src/plugin/components/VInlineSelect/VInlineSelect.vue @@ -164,7 +164,11 @@ const injectedOptions = inject(globalOptions, {}); const iconOptions = inject(Symbol.for('vuetify:icons')); const props = withDefaults(defineProps(), { ...selectProps }); -let settings = reactive({ ...attrs, ...props, ...injectedOptions }); +const settings = reactive({ ...attrs, ...props, ...injectedOptions }); + +watchEffect(() => { + Object.assign(settings, { ...attrs, ...props, ...injectedOptions }); +}); const { cancelButtonColor, cancelButtonSize, @@ -240,18 +244,18 @@ const bindingSettings = computed(() => useBindingSettings(settings)); const bindingDisplay = computed(() => { return { color: settings.color, - displayAppendIcon: props.displayAppendIcon, - displayAppendIconColor: props.displayAppendIconColor, - displayAppendIconSize: props.displayAppendIconSize, - displayAppendInnerIcon: props.displayAppendInnerIcon, - displayAppendInnerIconColor: props.displayAppendInnerIconColor, - displayAppendInnerIconSize: props.displayAppendInnerIconSize, - displayPrependIcon: props.displayPrependIcon, - displayPrependIconColor: props.displayPrependIconColor, - displayPrependIconSize: props.displayPrependIconSize, - displayPrependInnerIcon: props.displayPrependInnerIcon, - displayPrependInnerIconColor: props.displayPrependInnerIconColor, - displayPrependInnerIconSize: props.displayPrependInnerIconSize, + displayAppendIcon: settings.displayAppendIcon, + displayAppendIconColor: settings.displayAppendIconColor, + displayAppendIconSize: settings.displayAppendIconSize, + displayAppendInnerIcon: settings.displayAppendInnerIcon, + displayAppendInnerIconColor: settings.displayAppendInnerIconColor, + displayAppendInnerIconSize: settings.displayAppendInnerIconSize, + displayPrependIcon: settings.displayPrependIcon, + displayPrependIconColor: settings.displayPrependIconColor, + displayPrependIconSize: settings.displayPrependIconSize, + displayPrependInnerIcon: settings.displayPrependInnerIcon, + displayPrependInnerIconColor: settings.displayPrependInnerIconColor, + displayPrependInnerIconSize: settings.displayPrependInnerIconSize, displayValue: displayValue.value, empty: empty.value, error: error.value, @@ -352,7 +356,6 @@ function toggleField() { timeOpened: timeOpened.value, }); - settings = { ...settings, ...response.settings }; showField.value = response.showField; timeOpened.value = response.timeOpened; diff --git a/src/plugin/components/VInlineSelect/__tests__/VInlineSelect.spec.ts b/src/plugin/components/VInlineSelect/__tests__/VInlineSelect.spec.ts index bc06300..f78a25c 100644 --- a/src/plugin/components/VInlineSelect/__tests__/VInlineSelect.spec.ts +++ b/src/plugin/components/VInlineSelect/__tests__/VInlineSelect.spec.ts @@ -10,7 +10,7 @@ const vuetify = createVuetify(); const componentProps = Object.assign(selectProps, { cardProps: {}, items: [], - required: false, + rules: [], }); describe('VInlineSelect', () => { diff --git a/src/plugin/components/VInlineSelect/index.ts b/src/plugin/components/VInlineSelect/index.ts index 6539ce4..6a6218a 100644 --- a/src/plugin/components/VInlineSelect/index.ts +++ b/src/plugin/components/VInlineSelect/index.ts @@ -6,7 +6,7 @@ import type VInlineSelect from './VInlineSelect.vue'; export interface VInlineSelectProps extends Omit { - clearIcon?: string | undefined; + clearIcon?: VSelect['$props']['clearIcon']; clearable?: VSelect['$props']['clearable']; density?: VSelect['$props']['density']; hideSelected?: VSelect['$props']['hideSelected']; diff --git a/src/plugin/components/VInlineSwitch/VInlineSwitch.vue b/src/plugin/components/VInlineSwitch/VInlineSwitch.vue index b5ea26c..53b004c 100644 --- a/src/plugin/components/VInlineSwitch/VInlineSwitch.vue +++ b/src/plugin/components/VInlineSwitch/VInlineSwitch.vue @@ -15,7 +15,7 @@ >
(), { ...switchProps }); -let settings = reactive({ ...attrs, ...props, ...injectedOptions }); +const settings = reactive({ ...attrs, ...props, ...injectedOptions }); + +watchEffect(() => { + Object.assign(settings, { ...attrs, ...props, ...injectedOptions }); +}); const { cancelButtonColor, cancelButtonSize, @@ -319,7 +323,6 @@ function toggleField() { timeOpened: timeOpened.value, }); - settings = { ...settings, ...response.settings }; showField.value = response.showField; timeOpened.value = response.timeOpened; diff --git a/src/plugin/components/VInlineSwitch/__tests__/VInlineSwitch.test.ts b/src/plugin/components/VInlineSwitch/__tests__/VInlineSwitch.test.ts index aa0eb5a..227d840 100644 --- a/src/plugin/components/VInlineSwitch/__tests__/VInlineSwitch.test.ts +++ b/src/plugin/components/VInlineSwitch/__tests__/VInlineSwitch.test.ts @@ -9,9 +9,7 @@ const vuetify = createVuetify(); const componentProps = Object.assign(switchProps, { cardProps: {}, - item: undefined, modelValue: undefined, - required: false, }); describe('VInlineSwitch', () => { diff --git a/src/plugin/components/VInlineTextField/VInlineTextField.vue b/src/plugin/components/VInlineTextField/VInlineTextField.vue index b876678..3aad9d1 100644 --- a/src/plugin/components/VInlineTextField/VInlineTextField.vue +++ b/src/plugin/components/VInlineTextField/VInlineTextField.vue @@ -159,7 +159,11 @@ const injectedOptions = inject(globalOptions, {}); const iconOptions = inject(Symbol.for('vuetify:icons')); const props = withDefaults(defineProps(), { ...textFieldProps }); -let settings = reactive({ ...attrs, ...props, ...injectedOptions }); +const settings = reactive({ ...attrs, ...props, ...injectedOptions }); + +watchEffect(() => { + Object.assign(settings, { ...attrs, ...props, ...injectedOptions }); +}); const { cancelButtonColor, cancelButtonSize, @@ -238,18 +242,18 @@ const bindingSettings = computed(() => useBindingSettings(settings)); const bindingDisplay = computed(() => { return { color: settings.color, - displayAppendIcon: props.displayAppendIcon, - displayAppendIconColor: props.displayAppendIconColor, - displayAppendIconSize: props.displayAppendIconSize, - displayAppendInnerIcon: props.displayAppendInnerIcon, - displayAppendInnerIconColor: props.displayAppendInnerIconColor, - displayAppendInnerIconSize: props.displayAppendInnerIconSize, - displayPrependIcon: props.displayPrependIcon, - displayPrependIconColor: props.displayPrependIconColor, - displayPrependIconSize: props.displayPrependIconSize, - displayPrependInnerIcon: props.displayPrependInnerIcon, - displayPrependInnerIconColor: props.displayPrependInnerIconColor, - displayPrependInnerIconSize: props.displayPrependInnerIconSize, + displayAppendIcon: settings.displayAppendIcon, + displayAppendIconColor: settings.displayAppendIconColor, + displayAppendIconSize: settings.displayAppendIconSize, + displayAppendInnerIcon: settings.displayAppendInnerIcon, + displayAppendInnerIconColor: settings.displayAppendInnerIconColor, + displayAppendInnerIconSize: settings.displayAppendInnerIconSize, + displayPrependIcon: settings.displayPrependIcon, + displayPrependIconColor: settings.displayPrependIconColor, + displayPrependIconSize: settings.displayPrependIconSize, + displayPrependInnerIcon: settings.displayPrependInnerIcon, + displayPrependInnerIconColor: settings.displayPrependInnerIconColor, + displayPrependInnerIconSize: settings.displayPrependInnerIconSize, displayValue: displayValue.value, empty: empty.value, error: error.value, @@ -344,7 +348,6 @@ function toggleField() { timeOpened: timeOpened.value, }); - settings = { ...settings, ...response.settings }; showField.value = response.showField; timeOpened.value = response.timeOpened; diff --git a/src/plugin/components/VInlineTextField/__tests__/VInlineTextField.test.ts b/src/plugin/components/VInlineTextField/__tests__/VInlineTextField.test.ts index 28f869b..281935a 100644 --- a/src/plugin/components/VInlineTextField/__tests__/VInlineTextField.test.ts +++ b/src/plugin/components/VInlineTextField/__tests__/VInlineTextField.test.ts @@ -9,7 +9,6 @@ const vuetify = createVuetify(); const componentProps = Object.assign(textFieldProps, { cardProps: {}, - required: false, }); describe('VInlineTextField', () => { diff --git a/src/plugin/components/VInlineTextField/index.ts b/src/plugin/components/VInlineTextField/index.ts index 5bc2eba..44262b5 100644 --- a/src/plugin/components/VInlineTextField/index.ts +++ b/src/plugin/components/VInlineTextField/index.ts @@ -6,7 +6,7 @@ import type VInlineTextField from './VInlineTextField.vue'; export interface VInlineTextFieldProps extends Omit { - clearIcon?: string | undefined; + clearIcon?: VTextField['$props']['clearIcon']; density?: VTextField['$props']['density']; rules?: VTextField['$props']['rules']; variant?: VTextField['$props']['variant']; diff --git a/src/plugin/components/VInlineTextarea/VInlineTextarea.vue b/src/plugin/components/VInlineTextarea/VInlineTextarea.vue index 6a918b9..617a0e3 100644 --- a/src/plugin/components/VInlineTextarea/VInlineTextarea.vue +++ b/src/plugin/components/VInlineTextarea/VInlineTextarea.vue @@ -160,7 +160,11 @@ const injectedOptions = inject(globalOptions, {}); const iconOptions = inject(Symbol.for('vuetify:icons')); const props = withDefaults(defineProps(), { ...textareaProps }); -let settings = reactive({ ...attrs, ...props, ...injectedOptions }); +const settings = reactive({ ...attrs, ...props, ...injectedOptions }); + +watchEffect(() => { + Object.assign(settings, { ...attrs, ...props, ...injectedOptions }); +}); const { cancelButtonColor, cancelButtonSize, @@ -239,18 +243,18 @@ const bindingSettings = computed(() => useBindingSettings(settings)); const bindingDisplay = computed(() => { return { color: settings.color, - displayAppendIcon: props.displayAppendIcon, - displayAppendIconColor: props.displayAppendIconColor, - displayAppendIconSize: props.displayAppendIconSize, - displayAppendInnerIcon: props.displayAppendInnerIcon, - displayAppendInnerIconColor: props.displayAppendInnerIconColor, - displayAppendInnerIconSize: props.displayAppendInnerIconSize, - displayPrependIcon: props.displayPrependIcon, - displayPrependIconColor: props.displayPrependIconColor, - displayPrependIconSize: props.displayPrependIconSize, - displayPrependInnerIcon: props.displayPrependInnerIcon, - displayPrependInnerIconColor: props.displayPrependInnerIconColor, - displayPrependInnerIconSize: props.displayPrependInnerIconSize, + displayAppendIcon: settings.displayAppendIcon, + displayAppendIconColor: settings.displayAppendIconColor, + displayAppendIconSize: settings.displayAppendIconSize, + displayAppendInnerIcon: settings.displayAppendInnerIcon, + displayAppendInnerIconColor: settings.displayAppendInnerIconColor, + displayAppendInnerIconSize: settings.displayAppendInnerIconSize, + displayPrependIcon: settings.displayPrependIcon, + displayPrependIconColor: settings.displayPrependIconColor, + displayPrependIconSize: settings.displayPrependIconSize, + displayPrependInnerIcon: settings.displayPrependInnerIcon, + displayPrependInnerIconColor: settings.displayPrependInnerIconColor, + displayPrependInnerIconSize: settings.displayPrependInnerIconSize, displayValue: displayValue.value, empty: empty.value, error: error.value, @@ -344,7 +348,6 @@ function toggleField() { timeOpened: timeOpened.value, }); - settings = { ...settings, ...response.settings }; showField.value = response.showField; timeOpened.value = response.timeOpened; diff --git a/src/plugin/components/VInlineTextarea/__tests__/VInlineTextarea.test.ts b/src/plugin/components/VInlineTextarea/__tests__/VInlineTextarea.test.ts index 132e86e..e99edc3 100644 --- a/src/plugin/components/VInlineTextarea/__tests__/VInlineTextarea.test.ts +++ b/src/plugin/components/VInlineTextarea/__tests__/VInlineTextarea.test.ts @@ -9,7 +9,6 @@ const vuetify = createVuetify(); const componentProps = Object.assign(textareaProps, { cardProps: {}, - required: false, }); describe('VInlineTextarea', () => { diff --git a/src/plugin/components/VInlineTextarea/index.ts b/src/plugin/components/VInlineTextarea/index.ts index 0d7498d..f769821 100644 --- a/src/plugin/components/VInlineTextarea/index.ts +++ b/src/plugin/components/VInlineTextarea/index.ts @@ -7,7 +7,7 @@ export interface VInlineTextareaProps extends Omit { autoGrow?: VTextarea['$props']['autoGrow']; - clearIcon?: string | undefined; + clearIcon?: VTextarea['$props']['clearIcon']; density?: VTextarea['$props']['density']; rows?: VTextarea['$props']['rows']; rules?: VTextarea['$props']['rules']; diff --git a/src/plugin/components/common/BooleanIcons.vue b/src/plugin/components/common/BooleanIcons.vue index 20bc2ca..e7c2ec0 100644 --- a/src/plugin/components/common/BooleanIcons.vue +++ b/src/plugin/components/common/BooleanIcons.vue @@ -28,11 +28,17 @@ import { VIcon } from 'vuetify/components'; const props = withDefaults(defineProps(), {}); const iconOptions = inject(Symbol.for('vuetify:icons')); +const settings = reactive({ ...props }); + +watchEffect(() => { + Object.assign(settings, { ...props }); +}); + const modelValue = defineModel(); const theFalseIcon = computed(() => { return useGetIcon({ - icon: props.iconFalse, + icon: settings.iconFalse, iconOptions, name: 'false', }); @@ -40,7 +46,7 @@ const theFalseIcon = computed(() => { const theTrueIcon = computed(() => { return useGetIcon({ - icon: props.iconTrue, + icon: settings.iconTrue, iconOptions, name: 'true', }); diff --git a/src/plugin/components/common/DisplayedValue.vue b/src/plugin/components/common/DisplayedValue.vue index 4c89e5f..1e0e8ca 100644 --- a/src/plugin/components/common/DisplayedValue.vue +++ b/src/plugin/components/common/DisplayedValue.vue @@ -17,9 +17,9 @@ />
@@ -59,9 +59,9 @@ />
@@ -79,9 +79,9 @@ />
@@ -101,11 +101,18 @@ import { } from '@composables/styles'; +const attrs = useAttrs(); const emit = defineEmits(['toggleField']); const props = defineProps(); const slots = useSlots(); const theme = useTheme(); +const settings = reactive({ ...attrs, ...props }); + +watchEffect(() => { + Object.assign(settings, { ...attrs, ...props }); +}); + const slotBindings = { displayValue: props.displayValue, empty: props.empty, diff --git a/src/plugin/components/common/SaveFieldButtons.vue b/src/plugin/components/common/SaveFieldButtons.vue index f77f29c..9acf71c 100644 --- a/src/plugin/components/common/SaveFieldButtons.vue +++ b/src/plugin/components/common/SaveFieldButtons.vue @@ -77,6 +77,10 @@ const loading = computed(() => props.loading); const settings = reactive({ ...attrs, ...props }); +watchEffect(() => { + Object.assign(settings, { ...attrs, ...props }); +}); + const loadingIconClasses = computed(() => { if (iconOptions?.defaultSet === 'fa') { return 'fa-spin'; diff --git a/src/plugin/components/common/__tests__/common.test.ts b/src/plugin/components/common/__tests__/common.test.ts index c3be1cd..0a931e8 100644 --- a/src/plugin/components/common/__tests__/common.test.ts +++ b/src/plugin/components/common/__tests__/common.test.ts @@ -5,7 +5,7 @@ import SaveFieldButtons from '../SaveFieldButtons.vue'; import { createVuetify } from 'vuetify'; import { describe, it, expect } from 'vitest'; import { mount } from '@vue/test-utils'; -import { selectProps } from '@/plugin/utils/props'; +import { selectProps } from '../../../utils/props'; const vuetify = createVuetify(); diff --git a/src/plugin/components/index.ts b/src/plugin/components/index.ts index 844fd26..165ccba 100644 --- a/src/plugin/components/index.ts +++ b/src/plugin/components/index.ts @@ -1,3 +1,4 @@ +import VInlineAutocomplete from './VInlineAutocomplete/VInlineAutocomplete.vue'; import VInlineCheckbox from './VInlineCheckbox/VInlineCheckbox.vue'; import VInlineCustomField from './VInlineCustomField/VInlineCustomField.vue'; import VInlineSelect from './VInlineSelect/VInlineSelect.vue'; @@ -7,6 +8,7 @@ import VInlineTextarea from './VInlineTextarea/VInlineTextarea.vue'; export { + VInlineAutocomplete, VInlineCheckbox, VInlineCustomField, VInlineSelect, @@ -15,6 +17,7 @@ export { VInlineTextarea, }; +export * from './VInlineAutocomplete'; export * from './VInlineCheckbox'; export * from './VInlineCustomField'; export * from './VInlineSelect'; diff --git a/src/plugin/composables/__tests__/colors.test.ts b/src/plugin/composables/__tests__/colors.test.ts index d1ee5bd..9c7e137 100644 --- a/src/plugin/composables/__tests__/colors.test.ts +++ b/src/plugin/composables/__tests__/colors.test.ts @@ -1,4 +1,4 @@ -import { describe, it, expect } from 'vitest'; +import { describe, it, expect, vi } from 'vitest'; import { createVuetify } from 'vuetify'; import { useGetColor } from '../colors'; import defaultThemes from '../../../plugins/theme'; @@ -34,6 +34,9 @@ describe('Colors Composable', () => { }); }); + // console.warn tests // + const logSpy = vi.spyOn(console, 'warn').mockImplementation(() => undefined); + it('should return HSLA default value if color not found', () => { const responseColor = useGetColor('foobar', theme); @@ -45,5 +48,23 @@ describe('Colors Composable', () => { expect(responseColor).toMatchInlineSnapshot(`"rgb(var(--v-theme-primary))"`); }); + + it('should console warn when color prop "foobar" doesn\'t exist in colors', () => { + logSpy.mockReset(); + + useGetColor('foobar', theme); + + expect(logSpy).toHaveBeenCalled(); + expect(logSpy).toHaveBeenCalledTimes(1); + }); + + it('should console warn when color prop "--v-foobar" doesn\'t exist in colors', () => { + logSpy.mockReset(); + + useGetColor('--v-foobar', theme); + + expect(logSpy).toHaveBeenCalled(); + expect(logSpy).toHaveBeenCalledTimes(1); + }); }); }); diff --git a/src/plugin/composables/__tests__/icons.test.ts b/src/plugin/composables/__tests__/icons.test.ts index 0aa7678..9f3f808 100644 --- a/src/plugin/composables/__tests__/icons.test.ts +++ b/src/plugin/composables/__tests__/icons.test.ts @@ -1,5 +1,4 @@ import { describe, it, expect } from 'vitest'; -// import { inject } from 'vue'; import { useGetIcon } from '../icons'; @@ -37,7 +36,7 @@ describe('Icon Composable', () => { icon: undefined, iconOptions: {}, name: 'loading', - })).toThrowError('VInlineFields: No VInlineFields default undefined icon set found for loading. Please set the icon prop.'); + })).toThrowError('[VInlineFields]: No default undefined icon set found.'); }); it('throws error if supplied name not found', () => { @@ -45,7 +44,7 @@ describe('Icon Composable', () => { icon: undefined, iconOptions, name: 'foobar', - })).toThrowError(`VInlineFields: No foobar icon found. Please set the icon prop, or set the default icon set to 'mdi' or 'fa'`); + })).toThrowError('[VInlineFields]: No foobar icon found.'); }); }); }); diff --git a/src/plugin/composables/bindings.ts b/src/plugin/composables/bindings.ts index 11fe3f1..43ff863 100644 --- a/src/plugin/composables/bindings.ts +++ b/src/plugin/composables/bindings.ts @@ -21,7 +21,6 @@ const excludedSettings: string[] = [ 'emptyText', 'fieldOnly', 'hideSaveIcon', - 'item', 'loadingIcon', 'loadingIconColor', 'loadingWait', diff --git a/src/plugin/composables/colors.ts b/src/plugin/composables/colors.ts index f2e39fb..2069453 100644 --- a/src/plugin/composables/colors.ts +++ b/src/plugin/composables/colors.ts @@ -93,7 +93,7 @@ function convertToHSL(color: string): string { if (max === null || !min === null || isNaN(max) || isNaN(min)) { const defaultColor = '0 0% 100% / 12%'; - console.warn(`[VuetifyInlineFields: The "color" prop value using "${newColor}" doesn't exist. Using the value "hsl(${defaultColor})" in it's place.`); + console.warn(`[VuetifyInlineFields]: The "color" prop value using "${newColor}" doesn't exist. Using the value "hsl(${defaultColor})" in it's place.`); return defaultColor; } diff --git a/src/plugin/composables/icons.ts b/src/plugin/composables/icons.ts index 25d79c3..9919762 100644 --- a/src/plugin/composables/icons.ts +++ b/src/plugin/composables/icons.ts @@ -31,13 +31,13 @@ export const useGetIcon: UseGetIcon = (options) => { const iconSet = defaultIcons[iconOptions?.defaultSet as string]; if (!iconSet) { - throw new Error(`VInlineFields: No VInlineFields default ${iconOptions?.defaultSet} icon set found for ${name}. Please set the icon prop.`); + throw new Error(`[VInlineFields]: No default ${iconOptions?.defaultSet} icon set found.`); } const newIcon = iconSet[name]; if (!newIcon) { - throw new Error(`VInlineFields: No ${name} icon found. Please set the icon prop, or set the default icon set to 'mdi' or 'fa'`); + throw new Error(`[VInlineFields]: No ${name} icon found.`); } return newIcon; diff --git a/src/plugin/styles/main.scss b/src/plugin/styles/main.scss index fd6461a..728c014 100644 --- a/src/plugin/styles/main.scss +++ b/src/plugin/styles/main.scss @@ -342,7 +342,7 @@ position: absolute; .v-card { - border: 1px solid hsla(0, 0%, 50%, 50%); + border: 1px solid hsl(0deg 0% 50% / 50%); .v-card-text { padding: 5px 10px; diff --git a/src/plugin/types/index.ts b/src/plugin/types/index.ts index c4447bd..e8e5eeb 100644 --- a/src/plugin/types/index.ts +++ b/src/plugin/types/index.ts @@ -16,6 +16,7 @@ import type { VTextarea, } from 'vuetify/components'; import type { + VInlineAutocomplete, VInlineCheckbox, VInlineCustomField, VInlineSelect, @@ -100,7 +101,6 @@ export interface SharedProps { iconTrueColor?: string; iconTrueTitle?: string | undefined; icons?: boolean; - item?: Record; label?: string; loading?: boolean; loadingIcon?: string | undefined; @@ -125,6 +125,7 @@ export interface SharedProps { valueColor?: string; } + // -------------------------------------------------- Components // export interface UseCardContainerStyle { ( @@ -266,7 +267,7 @@ export interface UseCardContainerClass { export interface UseGetIcon { ( options: { - icon: string | undefined, + icon: VIconValue, iconOptions: IconOptions | undefined, name: string, } @@ -352,10 +353,10 @@ export interface UseTruthyModelValue { export * from '../index'; -export * from '@components/index'; declare module 'vue' { export interface GlobalComponents { + VInlineAutocomplete: typeof VInlineAutocomplete; VInlineCheckbox: typeof VInlineCheckbox; VInlineCustomField: typeof VInlineCustomField; VInlineSelect: typeof VInlineSelect; diff --git a/src/plugin/types/vue-shim.d.ts b/src/plugin/types/vue-shim.d.ts index 30fc40a..11e5b7a 100644 --- a/src/plugin/types/vue-shim.d.ts +++ b/src/plugin/types/vue-shim.d.ts @@ -1,6 +1,6 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ declare module '*.vue' { - import type { DefineComponent } from 'vue'; - const component: DefineComponent<{}, {}, any>; + import { defineComponent } from 'vue'; + const component: ReturnType; export default component; } diff --git a/src/plugin/utils/props.ts b/src/plugin/utils/props.ts index 5528b04..1bdf9c4 100644 --- a/src/plugin/utils/props.ts +++ b/src/plugin/utils/props.ts @@ -43,6 +43,7 @@ export const sharedProps = { loading: false, loadingWait: true, name: '', + required: false, tableField: true, underlineColor: 'primary', underlineStyle: 'dotted', @@ -108,13 +109,34 @@ const selectProps = { ...autofocus, ...saveAndLoadingIconProps, ...{ - clearIcon: undefined, + clearIcon: '$clear', clearable: false, hideSelected: true, itemTitle: 'title', itemValue: 'value', items: () => ([]), menu: true, + rules: () => ([]), + variant: 'underlined' as const, + }, +}; + +// v-autocomplete // +const autocompleteProps = { + ...sharedProps, + ...autofocus, + ...saveAndLoadingIconProps, + ...{ + autoSelectFirst: false, + clearIcon: '$clear', + clearable: false, + hideSelected: true, + itemTitle: 'title', + itemValue: 'value', + items: () => ([]), + menu: true, + menuIcon: '$dropdown', + rules: () => ([]), variant: 'underlined' as const, }, }; @@ -137,6 +159,7 @@ const textareaProps = { ...sharedProps, ...{ autoGrow: true, + clearIcon: '$clear', rows: 1, truncateLength: undefined, truncateSuffix: '...', @@ -150,6 +173,7 @@ const textFieldProps = { ...autofocus, ...saveAndLoadingIconProps, ...{ + clearIcon: '$clear', truncateLength: undefined, truncateSuffix: '...', variant: 'underlined' as const, @@ -159,6 +183,7 @@ const textFieldProps = { // Export // export { + autocompleteProps, checkboxProps, selectProps, switchProps, diff --git a/src/stores/menu.ts b/src/stores/menu.ts index dd41149..567bfb1 100644 --- a/src/stores/menu.ts +++ b/src/stores/menu.ts @@ -7,6 +7,14 @@ export const useMenuStore = defineStore('menu', () => { const links = coreStore.links; const componentItems = [ + // { + // href: '#components-v-inline-autocomplete', + // icon: 'mdi:mdi-playlist-edit', + // key: 'v-inline-checkbox', + // link: `${links.vuetify}en/api/v-autocomplete/`, + // title: 'VInlineCheckbox', + // topTitle: 'VAutocomplete', + // }, { href: '#components-v-inline-checkbox', icon: 'mdi:mdi-checkbox-outline', @@ -14,7 +22,6 @@ export const useMenuStore = defineStore('menu', () => { link: `${links.vuetify}en/api/v-checkbox/`, title: 'VInlineCheckbox', topTitle: 'VCheckbox', - }, { href: '#components-v-inline-select', diff --git a/stylelint.config.js b/stylelint.config.js index 2dfce49..fc427d2 100644 --- a/stylelint.config.js +++ b/stylelint.config.js @@ -2,15 +2,17 @@ const namePattern = '^[a-z]+([a-z0-9-]+[a-z0-9]+)?$'; module.exports = { + extends: ['stylelint-config-standard'], plugins: [ 'stylelint-order', 'stylelint-scss', + '@stylistic/stylelint-plugin', ], - customSyntax: "postcss-scss", + customSyntax: 'postcss-scss', overrides: [ { - "files": ["**/*.vue"], - "customSyntax": "postcss-html" + 'files': ['**/*.vue'], + 'customSyntax': 'postcss-html', }, ], rules: { @@ -75,7 +77,6 @@ module.exports = 'no-duplicate-at-import-rules': true, 'no-duplicate-selectors': true, 'no-empty-source': null, - 'no-extra-semicolons': true, 'no-invalid-double-slash-comments': true, // ---------------------------- Limit language features @@ -85,6 +86,7 @@ module.exports = // Function 'function-disallowed-list': [], + 'function-no-unknown': null, 'function-url-no-scheme-relative': true, 'function-url-scheme-disallowed-list': [], 'function-url-scheme-allowed-list': null, @@ -97,7 +99,7 @@ module.exports = 'number-max-precision': 10, // Time - 'time-min-milliseconds': 025, + 'time-min-milliseconds': 25, // Unit 'unit-disallowed-list': [], @@ -150,7 +152,6 @@ module.exports = 'selector-max-class': null, 'selector-max-combinators': null, 'selector-max-compound-selectors': null, - 'selector-max-empty-lines': 0, 'selector-max-id': 8, 'selector-max-pseudo-class': null, 'selector-max-specificity': null, @@ -188,7 +189,6 @@ module.exports = // ---------------------------- Stylistic issues // Color - 'color-hex-case': 'lower', 'color-hex-length': 'short', // Font family @@ -198,57 +198,24 @@ module.exports = 'font-weight-notation': null, // Function - 'function-comma-newline-after': null, - 'function-comma-newline-before': 'always-multi-line', - 'function-comma-space-after': 'always', - 'function-comma-space-before': 'never', - 'function-max-empty-lines': 0, 'function-name-case': [ 'lower', { ignoreFunctions: ['DXImageTransform.Microsoft.gradient'], }, ], - 'function-parentheses-newline-inside': 'never-multi-line', - 'function-parentheses-space-inside': 'never', 'function-url-quotes': 'always', - 'function-whitespace-after': 'always', - - // Number - 'number-leading-zero': null, - 'number-no-trailing-zeros': true, - - // String - 'string-quotes': 'single', // Length 'length-zero-no-unit': true, - // Unit - 'unit-case': 'lower', - // Value 'value-keyword-case': 'lower', - // Value list - 'value-list-comma-newline-after': null, - 'value-list-comma-newline-before': 'never-multi-line', - 'value-list-comma-space-after': 'always-single-line', - 'value-list-comma-space-before': 'never', - 'value-list-max-empty-lines': 0, - // Custom property 'custom-property-empty-line-before': 'never', - // Property - 'property-case': 'lower', - // Declaration - 'declaration-bang-space-after': 'never', - 'declaration-bang-space-before': 'always', - 'declaration-colon-newline-after': null, - 'declaration-colon-space-after': 'always', - 'declaration-colon-space-before': 'never', 'declaration-empty-line-before': [ 'always', { @@ -256,44 +223,11 @@ module.exports = }, ], - // Declaration block - 'declaration-block-semicolon-newline-after': 'always', - 'declaration-block-semicolon-newline-before': 'never-multi-line', - 'declaration-block-semicolon-space-after': 'always-single-line', - 'declaration-block-semicolon-space-before': 'never', - 'declaration-block-trailing-semicolon': 'always', - - // Block - 'block-closing-brace-empty-line-before': 'never', - 'block-closing-brace-newline-after': 'always', - 'block-closing-brace-newline-before': 'always', - 'block-closing-brace-space-after': 'always-single-line', - 'block-closing-brace-space-before': 'always-single-line', - 'block-opening-brace-newline-after': 'always', - 'block-opening-brace-newline-before': 'never-single-line', - 'block-opening-brace-space-after': 'never-single-line', - 'block-opening-brace-space-before': 'always', - // Selector - 'selector-attribute-brackets-space-inside': 'never', - 'selector-attribute-operator-space-after': 'never', - 'selector-attribute-operator-space-before': 'never', 'selector-attribute-quotes': 'always', - 'selector-combinator-space-after': 'always', - 'selector-combinator-space-before': 'always', - 'selector-descendant-combinator-no-non-space': true, - 'selector-pseudo-class-case': 'lower', - 'selector-pseudo-class-parentheses-space-inside': 'never', - 'selector-pseudo-element-case': 'lower', 'selector-pseudo-element-colon-notation': 'double', 'selector-type-case': 'lower', - // Selector list - 'selector-list-comma-newline-after': 'always', - 'selector-list-comma-newline-before': 'never-multi-line', - 'selector-list-comma-space-after': 'never-single-line', - 'selector-list-comma-space-before': 'never', - // Rule 'rule-empty-line-before': [ 'always', @@ -303,41 +237,125 @@ module.exports = }, ], - // Media feature - 'media-feature-colon-space-after': 'always', - 'media-feature-colon-space-before': 'never', - 'media-feature-name-case': 'lower', - 'media-feature-parentheses-space-inside': 'never', - 'media-feature-range-operator-space-after': 'always', - 'media-feature-range-operator-space-before': 'never', - - // Media query list - 'media-query-list-comma-newline-after': 'always-multi-line', - 'media-query-list-comma-newline-before': 'never-multi-line', - 'media-query-list-comma-space-after': 'always', - 'media-query-list-comma-space-before': 'never', - // At-rule 'at-rule-empty-line-before': null, - 'at-rule-name-case': 'lower', - 'at-rule-name-newline-after': null, - 'at-rule-name-space-after': 'always', - 'at-rule-semicolon-newline-after': 'always', - 'at-rule-semicolon-space-before': 'never', // Comment 'comment-empty-line-before': 'always', 'comment-whitespace-inside': 'always', + + // ------------------------------------------------------ Stylistic + // Selector + '@stylistic/selector-max-empty-lines': 0, + + // Color + '@stylistic/color-hex-case': 'lower', + + // Function + '@stylistic/function-comma-newline-after': null, + '@stylistic/function-comma-newline-before': 'always-multi-line', + '@stylistic/function-comma-space-after': 'always', + '@stylistic/function-comma-space-before': 'never', + '@stylistic/function-max-empty-lines': 0, + '@stylistic/function-parentheses-newline-inside': 'never-multi-line', + '@stylistic/function-parentheses-space-inside': 'never', + '@stylistic/function-whitespace-after': 'always', + + // Number + '@stylistic/number-leading-zero': null, + '@stylistic/number-no-trailing-zeros': true, + + // String + '@stylistic/string-quotes': 'single', + + // Unit + '@stylistic/unit-case': 'lower', + + // Value list + '@stylistic/value-list-comma-newline-after': null, + '@stylistic/value-list-comma-newline-before': 'never-multi-line', + '@stylistic/value-list-comma-space-after': 'always-single-line', + '@stylistic/value-list-comma-space-before': 'never', + '@stylistic/value-list-max-empty-lines': 0, + + // Property + '@stylistic/property-case': 'lower', + + // Declaration + '@stylistic/declaration-bang-space-after': 'never', + '@stylistic/declaration-bang-space-before': 'always', + '@stylistic/declaration-colon-newline-after': null, + '@stylistic/declaration-colon-space-after': 'always', + '@stylistic/declaration-colon-space-before': 'never', + + // Declaration block + '@stylistic/declaration-block-semicolon-newline-after': 'always', + '@stylistic/declaration-block-semicolon-newline-before': 'never-multi-line', + '@stylistic/declaration-block-semicolon-space-after': 'always-single-line', + '@stylistic/declaration-block-semicolon-space-before': 'never', + '@stylistic/declaration-block-trailing-semicolon': 'always', + + // Block + '@stylistic/block-closing-brace-empty-line-before': 'never', + '@stylistic/block-closing-brace-newline-after': 'always', + '@stylistic/block-closing-brace-newline-before': 'always', + '@stylistic/block-closing-brace-space-after': 'always-single-line', + '@stylistic/block-closing-brace-space-before': 'always-single-line', + '@stylistic/block-opening-brace-newline-after': 'always', + '@stylistic/block-opening-brace-newline-before': 'never-single-line', + '@stylistic/block-opening-brace-space-after': 'never-single-line', + '@stylistic/block-opening-brace-space-before': 'always', + + // Selector + '@stylistic/selector-attribute-brackets-space-inside': 'never', + '@stylistic/selector-attribute-operator-space-after': 'never', + '@stylistic/selector-attribute-operator-space-before': 'never', + '@stylistic/selector-combinator-space-after': 'always', + '@stylistic/selector-combinator-space-before': 'always', + '@stylistic/selector-descendant-combinator-no-non-space': true, + '@stylistic/selector-pseudo-class-case': 'lower', + '@stylistic/selector-pseudo-class-parentheses-space-inside': 'never', + '@stylistic/selector-pseudo-element-case': 'lower', + + // Selector list + '@stylistic/selector-list-comma-newline-after': 'always', + '@stylistic/selector-list-comma-newline-before': 'never-multi-line', + '@stylistic/selector-list-comma-space-after': 'never-single-line', + '@stylistic/selector-list-comma-space-before': 'never', + + // Media feature + '@stylistic/media-feature-colon-space-after': 'always', + '@stylistic/media-feature-colon-space-before': 'never', + '@stylistic/media-feature-name-case': 'lower', + '@stylistic/media-feature-parentheses-space-inside': 'never', + '@stylistic/media-feature-range-operator-space-after': 'always', + '@stylistic/media-feature-range-operator-space-before': 'never', + + // Media query list + '@stylistic/media-query-list-comma-newline-after': 'always-multi-line', + '@stylistic/media-query-list-comma-newline-before': 'never-multi-line', + '@stylistic/media-query-list-comma-space-after': 'always', + '@stylistic/media-query-list-comma-space-before': 'never', + + // At-rule + 'at-rule-empty-line-before': null, + '@stylistic/at-rule-name-case': 'lower', + '@stylistic/at-rule-name-newline-after': null, + '@stylistic/at-rule-name-space-after': 'always', + '@stylistic/at-rule-semicolon-newline-after': 'always', + '@stylistic/at-rule-semicolon-space-before': 'never', + // General / Sheet - indentation: 'tab', - linebreaks: 'unix', - 'max-empty-lines': 2, - 'max-line-length': null, - 'no-eol-whitespace': true, - 'no-missing-end-of-source-newline': true, - 'no-empty-first-line': true, - 'unicode-bom': 'never', + '@stylistic/indentation': 'tab', + '@stylistic/linebreaks': 'unix', + '@stylistic/max-empty-lines': 2, + '@stylistic/max-line-length': null, + '@stylistic/no-eol-whitespace': true, + '@stylistic/no-missing-end-of-source-newline': true, + '@stylistic/no-empty-first-line': true, + '@stylistic/no-extra-semicolons': true, + '@stylistic/unicode-bom': 'never', // ------------------------------------------------------ SCSS @@ -346,6 +364,8 @@ module.exports = * Stylelint SCSS Rules Reference: https://github.com/kristerkari/stylelint-scss */ + 'scss/load-no-partial-leading-underscore': true, + // @-each 'scss/at-each-key-value-single-line': true, @@ -369,7 +389,6 @@ module.exports = 'scss/at-if-no-null': true, // @-import - 'scss/at-import-no-partial-leading-underscore': true, 'scss/at-import-partial-extension': null, 'scss/at-import-partial-extension-blacklist': null, 'scss/at-import-partial-extension-whitelist': null, @@ -385,8 +404,8 @@ module.exports = 'scss/at-rule-no-unknown': [ true, { - 'ignoreAtRules': ['tailwind'] - } + 'ignoreAtRules': ['tailwind'], + }, ], // $-variable diff --git a/tsconfig.json b/tsconfig.json index cd1c48e..b3296d9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -62,8 +62,6 @@ "src/documentation/**/*.vue", "src/main.ts", "src/playground/**/*.ts", - "src/plugin/components/VInlineAutocomplete/**/*.ts", - "src/plugin/components/VInlineAutocomplete/**/*.vue", "src/plugins/**/*.ts", "src/stores/**/*.ts", "node_modules" diff --git a/vite.build.config.mts b/vite.build.config.mts index 0fab0c6..c3111a9 100644 --- a/vite.build.config.mts +++ b/vite.build.config.mts @@ -45,6 +45,7 @@ export default defineConfig({ ], output: { banner, + exports: 'named', }, }, }, diff --git a/vite.config.mts b/vite.config.mts index 312bea7..81a984a 100644 --- a/vite.config.mts +++ b/vite.config.mts @@ -1,6 +1,5 @@ import vue from '@vitejs/plugin-vue'; import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'; -import babel from 'vite-plugin-babel'; import eslint from 'vite-plugin-eslint'; import stylelint from 'vite-plugin-stylelint'; import { defineConfig } from 'vite'; @@ -20,7 +19,6 @@ export default defineConfig({ eslint({ fix: true, }), - babel(), stylelint({ cache: false, fix: true, @@ -42,9 +40,6 @@ export default defineConfig({ vueTemplate: true, }), vue({ - script: { - defineModel: true, - }, template: { transformAssetUrls } }), vuetify({ diff --git a/vitest.config.mts b/vitest.config.mts index fbb0196..7f8b99d 100644 --- a/vitest.config.mts +++ b/vitest.config.mts @@ -10,7 +10,6 @@ export default mergeConfig( exclude: [ ...configDefaults.exclude, './src/plugin/components/common/__tests__/common.test.ts', - './src/plugin/components/VInlineAutocomplete' ], root: fileURLToPath(new URL('./', import.meta.url)), server: {