Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
33
VApp/node_modules/vuetify/lib/components/VBottomSheet/VBottomSheet.css
generated
vendored
Normal file
33
VApp/node_modules/vuetify/lib/components/VBottomSheet/VBottomSheet.css
generated
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
.bottom-sheet-transition-enter-from {
|
||||
transform: translateY(100%);
|
||||
}
|
||||
.bottom-sheet-transition-leave-to {
|
||||
transform: translateY(100%);
|
||||
}
|
||||
|
||||
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
||||
align-self: flex-end;
|
||||
border-radius: 0;
|
||||
flex: 0 1 auto;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin-inline: 0;
|
||||
margin-bottom: 0;
|
||||
transition-duration: 0.2s;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
overflow: visible;
|
||||
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
||||
}
|
||||
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
||||
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
||||
border-radius: 0;
|
||||
}
|
||||
.v-bottom-sheet.v-bottom-sheet--inset {
|
||||
max-width: none;
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
.v-bottom-sheet.v-bottom-sheet--inset {
|
||||
max-width: 70%;
|
||||
}
|
||||
}
|
41
VApp/node_modules/vuetify/lib/components/VBottomSheet/VBottomSheet.mjs
generated
vendored
Normal file
41
VApp/node_modules/vuetify/lib/components/VBottomSheet/VBottomSheet.mjs
generated
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
import { createVNode as _createVNode, mergeProps as _mergeProps, resolveDirective as _resolveDirective } from "vue";
|
||||
// Styles
|
||||
import "./VBottomSheet.css";
|
||||
|
||||
// Components
|
||||
import { makeVDialogProps, VDialog } from "../VDialog/VDialog.mjs"; // Composables
|
||||
import { useProxiedModel } from "../../composables/proxiedModel.mjs"; // Utilities
|
||||
import { genericComponent, propsFactory, useRender } from "../../util/index.mjs"; // Types
|
||||
export const makeVBottomSheetProps = propsFactory({
|
||||
inset: Boolean,
|
||||
...makeVDialogProps({
|
||||
transition: 'bottom-sheet-transition'
|
||||
})
|
||||
}, 'VBottomSheet');
|
||||
export const VBottomSheet = genericComponent()({
|
||||
name: 'VBottomSheet',
|
||||
props: makeVBottomSheetProps(),
|
||||
emits: {
|
||||
'update:modelValue': value => true
|
||||
},
|
||||
setup(props, _ref) {
|
||||
let {
|
||||
slots
|
||||
} = _ref;
|
||||
const isActive = useProxiedModel(props, 'modelValue');
|
||||
useRender(() => {
|
||||
const dialogProps = VDialog.filterProps(props);
|
||||
return _createVNode(VDialog, _mergeProps(dialogProps, {
|
||||
"contentClass": ['v-bottom-sheet__content', props.contentClass],
|
||||
"modelValue": isActive.value,
|
||||
"onUpdate:modelValue": $event => isActive.value = $event,
|
||||
"class": ['v-bottom-sheet', {
|
||||
'v-bottom-sheet--inset': props.inset
|
||||
}, props.class],
|
||||
"style": props.style
|
||||
}), slots);
|
||||
});
|
||||
return {};
|
||||
}
|
||||
});
|
||||
//# sourceMappingURL=VBottomSheet.mjs.map
|
1
VApp/node_modules/vuetify/lib/components/VBottomSheet/VBottomSheet.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/components/VBottomSheet/VBottomSheet.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"VBottomSheet.mjs","names":["makeVDialogProps","VDialog","useProxiedModel","genericComponent","propsFactory","useRender","makeVBottomSheetProps","inset","Boolean","transition","VBottomSheet","name","props","emits","value","setup","_ref","slots","isActive","dialogProps","filterProps","_createVNode","_mergeProps","contentClass","$event","class","style"],"sources":["../../../src/components/VBottomSheet/VBottomSheet.tsx"],"sourcesContent":["// Styles\nimport './VBottomSheet.sass'\n\n// Components\nimport { makeVDialogProps, VDialog } from '@/components/VDialog/VDialog'\n\n// Composables\nimport { useProxiedModel } from '@/composables/proxiedModel'\n\n// Utilities\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { OverlaySlots } from '@/components/VOverlay/VOverlay'\n\nexport const makeVBottomSheetProps = propsFactory({\n inset: Boolean,\n\n ...makeVDialogProps({\n transition: 'bottom-sheet-transition',\n }),\n}, 'VBottomSheet')\n\nexport const VBottomSheet = genericComponent<OverlaySlots>()({\n name: 'VBottomSheet',\n\n props: makeVBottomSheetProps(),\n\n emits: {\n 'update:modelValue': (value: boolean) => true,\n },\n\n setup (props, { slots }) {\n const isActive = useProxiedModel(props, 'modelValue')\n\n useRender(() => {\n const dialogProps = VDialog.filterProps(props)\n\n return (\n <VDialog\n { ...dialogProps }\n contentClass={[\n 'v-bottom-sheet__content',\n props.contentClass,\n ]}\n v-model={ isActive.value }\n class={[\n 'v-bottom-sheet',\n {\n 'v-bottom-sheet--inset': props.inset,\n },\n props.class,\n ]}\n style={ props.style }\n v-slots={ slots }\n />\n )\n })\n\n return {}\n },\n})\n\nexport type VBottomSheet = InstanceType<typeof VBottomSheet>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,gBAAgB,EAAEC,OAAO,kCAElC;AAAA,SACSC,eAAe,8CAExB;AAAA,SACSC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS,gCAElD;AAGA,OAAO,MAAMC,qBAAqB,GAAGF,YAAY,CAAC;EAChDG,KAAK,EAAEC,OAAO;EAEd,GAAGR,gBAAgB,CAAC;IAClBS,UAAU,EAAE;EACd,CAAC;AACH,CAAC,EAAE,cAAc,CAAC;AAElB,OAAO,MAAMC,YAAY,GAAGP,gBAAgB,CAAe,CAAC,CAAC;EAC3DQ,IAAI,EAAE,cAAc;EAEpBC,KAAK,EAAEN,qBAAqB,CAAC,CAAC;EAE9BO,KAAK,EAAE;IACL,mBAAmB,EAAGC,KAAc,IAAK;EAC3C,CAAC;EAEDC,KAAKA,CAAEH,KAAK,EAAAI,IAAA,EAAa;IAAA,IAAX;MAAEC;IAAM,CAAC,GAAAD,IAAA;IACrB,MAAME,QAAQ,GAAGhB,eAAe,CAACU,KAAK,EAAE,YAAY,CAAC;IAErDP,SAAS,CAAC,MAAM;MACd,MAAMc,WAAW,GAAGlB,OAAO,CAACmB,WAAW,CAACR,KAAK,CAAC;MAE9C,OAAAS,YAAA,CAAApB,OAAA,EAAAqB,WAAA,CAESH,WAAW;QAAA,gBACF,CACZ,yBAAyB,EACzBP,KAAK,CAACW,YAAY,CACnB;QAAA,cACSL,QAAQ,CAACJ,KAAK;QAAA,uBAAAU,MAAA,IAAdN,QAAQ,CAACJ,KAAK,GAAAU,MAAA;QAAA,SACjB,CACL,gBAAgB,EAChB;UACE,uBAAuB,EAAEZ,KAAK,CAACL;QACjC,CAAC,EACDK,KAAK,CAACa,KAAK,CACZ;QAAA,SACOb,KAAK,CAACc;MAAK,IACTT,KAAK;IAGrB,CAAC,CAAC;IAEF,OAAO,CAAC,CAAC;EACX;AACF,CAAC,CAAC"}
|
38
VApp/node_modules/vuetify/lib/components/VBottomSheet/VBottomSheet.sass
generated
vendored
Normal file
38
VApp/node_modules/vuetify/lib/components/VBottomSheet/VBottomSheet.sass
generated
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
@use '../../styles/settings'
|
||||
@use '../../styles/tools'
|
||||
@use './variables' as *
|
||||
|
||||
// Transition
|
||||
.bottom-sheet-transition
|
||||
&-enter-from
|
||||
transform: translateY(100%)
|
||||
|
||||
&-leave-to
|
||||
transform: translateY(100%)
|
||||
|
||||
// Block
|
||||
.v-bottom-sheet
|
||||
> .v-bottom-sheet__content.v-overlay__content
|
||||
align-self: flex-end
|
||||
border-radius: 0
|
||||
flex: 0 1 auto
|
||||
left: 0
|
||||
right: 0
|
||||
margin-inline: 0
|
||||
margin-bottom: 0
|
||||
transition-duration: $bottom-sheet-transition-duration
|
||||
width: 100%
|
||||
max-width: 100%
|
||||
overflow: visible
|
||||
|
||||
@include tools.elevation($bottom-sheet-elevation)
|
||||
|
||||
> .v-card,
|
||||
> .v-sheet
|
||||
border-radius: $bottom-sheet-border-radius
|
||||
|
||||
&.v-bottom-sheet--inset
|
||||
max-width: none
|
||||
|
||||
@media #{map-get(settings.$display-breakpoints, 'sm-and-up')}
|
||||
max-width: $bottom-sheet-inset-width
|
6
VApp/node_modules/vuetify/lib/components/VBottomSheet/_variables.scss
generated
vendored
Normal file
6
VApp/node_modules/vuetify/lib/components/VBottomSheet/_variables.scss
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
@use '../../styles/settings';
|
||||
|
||||
$bottom-sheet-elevation: 12 !default;
|
||||
$bottom-sheet-inset-width: 70% !default;
|
||||
$bottom-sheet-border-radius: 0 !default;
|
||||
$bottom-sheet-transition-duration: .2s !default;
|
790
VApp/node_modules/vuetify/lib/components/VBottomSheet/index.d.mts
generated
vendored
Normal file
790
VApp/node_modules/vuetify/lib/components/VBottomSheet/index.d.mts
generated
vendored
Normal file
@ -0,0 +1,790 @@
|
||||
import * as vue from 'vue';
|
||||
import { ComponentPropsOptions, ExtractPropTypes, Ref, EffectScope } from 'vue';
|
||||
|
||||
declare const block: readonly ["top", "bottom"];
|
||||
declare const inline: readonly ["start", "end", "left", "right"];
|
||||
type Tblock = typeof block[number];
|
||||
type Tinline = typeof inline[number];
|
||||
type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
|
||||
|
||||
declare class Box {
|
||||
x: number;
|
||||
y: number;
|
||||
width: number;
|
||||
height: number;
|
||||
constructor({ x, y, width, height }: {
|
||||
x: number;
|
||||
y: number;
|
||||
width: number;
|
||||
height: number;
|
||||
});
|
||||
get top(): number;
|
||||
get bottom(): number;
|
||||
get left(): number;
|
||||
get right(): number;
|
||||
}
|
||||
|
||||
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
||||
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
||||
}
|
||||
|
||||
interface LocationStrategyData {
|
||||
contentEl: Ref<HTMLElement | undefined>;
|
||||
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
||||
isActive: Ref<boolean>;
|
||||
isRtl: Ref<boolean>;
|
||||
}
|
||||
type LocationStrategyFn = (data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
||||
updateLocation: (e: Event) => void;
|
||||
};
|
||||
declare const locationStrategies: {
|
||||
static: typeof staticLocationStrategy;
|
||||
connected: typeof connectedLocationStrategy;
|
||||
};
|
||||
interface StrategyProps$1 {
|
||||
locationStrategy: keyof typeof locationStrategies | LocationStrategyFn;
|
||||
location: Anchor;
|
||||
origin: Anchor | 'auto' | 'overlap';
|
||||
offset?: number | string | number[];
|
||||
maxHeight?: number | string;
|
||||
maxWidth?: number | string;
|
||||
minHeight?: number | string;
|
||||
minWidth?: number | string;
|
||||
}
|
||||
declare function staticLocationStrategy(): void;
|
||||
declare function connectedLocationStrategy(data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>): {
|
||||
updateLocation: () => {
|
||||
available: {
|
||||
x: number;
|
||||
y: number;
|
||||
};
|
||||
contentBox: Box;
|
||||
} | undefined;
|
||||
};
|
||||
|
||||
interface ScrollStrategyData {
|
||||
root: Ref<HTMLElement | undefined>;
|
||||
contentEl: Ref<HTMLElement | undefined>;
|
||||
targetEl: Ref<HTMLElement | undefined>;
|
||||
isActive: Ref<boolean>;
|
||||
updateLocation: Ref<((e: Event) => void) | undefined>;
|
||||
}
|
||||
type ScrollStrategyFn = (data: ScrollStrategyData, props: StrategyProps, scope: EffectScope) => void;
|
||||
declare const scrollStrategies: {
|
||||
none: null;
|
||||
close: typeof closeScrollStrategy;
|
||||
block: typeof blockScrollStrategy;
|
||||
reposition: typeof repositionScrollStrategy;
|
||||
};
|
||||
interface StrategyProps {
|
||||
scrollStrategy: keyof typeof scrollStrategies | ScrollStrategyFn;
|
||||
contained: boolean | undefined;
|
||||
}
|
||||
declare function closeScrollStrategy(data: ScrollStrategyData): void;
|
||||
declare function blockScrollStrategy(data: ScrollStrategyData, props: StrategyProps): void;
|
||||
declare function repositionScrollStrategy(data: ScrollStrategyData, props: StrategyProps, scope: EffectScope): void;
|
||||
|
||||
declare const VBottomSheet: {
|
||||
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
||||
absolute: boolean;
|
||||
location: Anchor;
|
||||
origin: NonNullable<"auto" | Anchor | "overlap">;
|
||||
inset: boolean;
|
||||
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
zIndex: NonNullable<string | number>;
|
||||
style: vue.StyleValue;
|
||||
eager: boolean;
|
||||
disabled: boolean;
|
||||
modelValue: boolean;
|
||||
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => {
|
||||
updateLocation: (e: Event) => void;
|
||||
} | undefined);
|
||||
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
activatorProps: Record<string, any>;
|
||||
openOnHover: boolean;
|
||||
closeOnContentClick: boolean;
|
||||
closeOnBack: boolean;
|
||||
contained: boolean;
|
||||
noClickAnimation: boolean;
|
||||
persistent: boolean;
|
||||
scrim: string | boolean;
|
||||
fullscreen: boolean;
|
||||
retainFocus: boolean;
|
||||
scrollable: boolean;
|
||||
} & {
|
||||
offset?: string | number | number[] | undefined;
|
||||
height?: string | number | undefined;
|
||||
width?: string | number | undefined;
|
||||
maxHeight?: string | number | undefined;
|
||||
maxWidth?: string | number | undefined;
|
||||
minHeight?: string | number | undefined;
|
||||
minWidth?: string | number | undefined;
|
||||
opacity?: string | number | undefined;
|
||||
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||||
class?: any;
|
||||
theme?: string | undefined;
|
||||
contentClass?: any;
|
||||
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||||
closeDelay?: string | number | undefined;
|
||||
openDelay?: string | number | undefined;
|
||||
openOnClick?: boolean | undefined;
|
||||
openOnFocus?: boolean | undefined;
|
||||
contentProps?: any;
|
||||
attach?: string | boolean | Element | undefined;
|
||||
} & {
|
||||
$children?: vue.VNodeChild | {
|
||||
default?: ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
activator?: ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild);
|
||||
'v-slots'?: {
|
||||
default?: false | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
activator?: false | ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} | undefined;
|
||||
} & {
|
||||
"v-slot:default"?: false | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
"v-slot:activator"?: false | ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} & {
|
||||
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||||
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
||||
'update:modelValue': (value: boolean) => boolean;
|
||||
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
||||
absolute: boolean;
|
||||
location: Anchor;
|
||||
origin: NonNullable<"auto" | Anchor | "overlap">;
|
||||
inset: boolean;
|
||||
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
zIndex: NonNullable<string | number>;
|
||||
style: vue.StyleValue;
|
||||
eager: boolean;
|
||||
disabled: boolean;
|
||||
modelValue: boolean;
|
||||
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => {
|
||||
updateLocation: (e: Event) => void;
|
||||
} | undefined);
|
||||
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
activatorProps: Record<string, any>;
|
||||
openOnHover: boolean;
|
||||
closeOnContentClick: boolean;
|
||||
closeOnBack: boolean;
|
||||
contained: boolean;
|
||||
noClickAnimation: boolean;
|
||||
persistent: boolean;
|
||||
scrim: string | boolean;
|
||||
fullscreen: boolean;
|
||||
retainFocus: boolean;
|
||||
scrollable: boolean;
|
||||
} & {
|
||||
offset?: string | number | number[] | undefined;
|
||||
height?: string | number | undefined;
|
||||
width?: string | number | undefined;
|
||||
maxHeight?: string | number | undefined;
|
||||
maxWidth?: string | number | undefined;
|
||||
minHeight?: string | number | undefined;
|
||||
minWidth?: string | number | undefined;
|
||||
opacity?: string | number | undefined;
|
||||
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||||
class?: any;
|
||||
theme?: string | undefined;
|
||||
contentClass?: any;
|
||||
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||||
closeDelay?: string | number | undefined;
|
||||
openDelay?: string | number | undefined;
|
||||
openOnClick?: boolean | undefined;
|
||||
openOnFocus?: boolean | undefined;
|
||||
contentProps?: any;
|
||||
attach?: string | boolean | Element | undefined;
|
||||
} & {
|
||||
$children?: vue.VNodeChild | {
|
||||
default?: ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
activator?: ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild);
|
||||
'v-slots'?: {
|
||||
default?: false | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
activator?: false | ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} | undefined;
|
||||
} & {
|
||||
"v-slot:default"?: false | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
"v-slot:activator"?: false | ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} & {
|
||||
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||||
}, {
|
||||
absolute: boolean;
|
||||
location: Anchor;
|
||||
origin: NonNullable<"auto" | Anchor | "overlap">;
|
||||
inset: boolean;
|
||||
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
zIndex: NonNullable<string | number>;
|
||||
style: vue.StyleValue;
|
||||
eager: boolean;
|
||||
disabled: boolean;
|
||||
modelValue: boolean;
|
||||
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => {
|
||||
updateLocation: (e: Event) => void;
|
||||
} | undefined);
|
||||
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
activatorProps: Record<string, any>;
|
||||
openOnClick: boolean;
|
||||
openOnHover: boolean;
|
||||
openOnFocus: boolean;
|
||||
closeOnContentClick: boolean;
|
||||
closeOnBack: boolean;
|
||||
contained: boolean;
|
||||
noClickAnimation: boolean;
|
||||
persistent: boolean;
|
||||
scrim: string | boolean;
|
||||
fullscreen: boolean;
|
||||
retainFocus: boolean;
|
||||
scrollable: boolean;
|
||||
}, true, {}, vue.SlotsType<Partial<{
|
||||
default: (arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
activator: (arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
}>>, {
|
||||
P: {};
|
||||
B: {};
|
||||
D: {};
|
||||
C: {};
|
||||
M: {};
|
||||
Defaults: {};
|
||||
}, {
|
||||
absolute: boolean;
|
||||
location: Anchor;
|
||||
origin: NonNullable<"auto" | Anchor | "overlap">;
|
||||
inset: boolean;
|
||||
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
zIndex: NonNullable<string | number>;
|
||||
style: vue.StyleValue;
|
||||
eager: boolean;
|
||||
disabled: boolean;
|
||||
modelValue: boolean;
|
||||
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => {
|
||||
updateLocation: (e: Event) => void;
|
||||
} | undefined);
|
||||
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
activatorProps: Record<string, any>;
|
||||
openOnHover: boolean;
|
||||
closeOnContentClick: boolean;
|
||||
closeOnBack: boolean;
|
||||
contained: boolean;
|
||||
noClickAnimation: boolean;
|
||||
persistent: boolean;
|
||||
scrim: string | boolean;
|
||||
fullscreen: boolean;
|
||||
retainFocus: boolean;
|
||||
scrollable: boolean;
|
||||
} & {
|
||||
offset?: string | number | number[] | undefined;
|
||||
height?: string | number | undefined;
|
||||
width?: string | number | undefined;
|
||||
maxHeight?: string | number | undefined;
|
||||
maxWidth?: string | number | undefined;
|
||||
minHeight?: string | number | undefined;
|
||||
minWidth?: string | number | undefined;
|
||||
opacity?: string | number | undefined;
|
||||
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||||
class?: any;
|
||||
theme?: string | undefined;
|
||||
contentClass?: any;
|
||||
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||||
closeDelay?: string | number | undefined;
|
||||
openDelay?: string | number | undefined;
|
||||
openOnClick?: boolean | undefined;
|
||||
openOnFocus?: boolean | undefined;
|
||||
contentProps?: any;
|
||||
attach?: string | boolean | Element | undefined;
|
||||
} & {
|
||||
$children?: vue.VNodeChild | {
|
||||
default?: ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
activator?: ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild);
|
||||
'v-slots'?: {
|
||||
default?: false | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
activator?: false | ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} | undefined;
|
||||
} & {
|
||||
"v-slot:default"?: false | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
"v-slot:activator"?: false | ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} & {
|
||||
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||||
}, {}, {}, {}, {}, {
|
||||
absolute: boolean;
|
||||
location: Anchor;
|
||||
origin: NonNullable<"auto" | Anchor | "overlap">;
|
||||
inset: boolean;
|
||||
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
zIndex: NonNullable<string | number>;
|
||||
style: vue.StyleValue;
|
||||
eager: boolean;
|
||||
disabled: boolean;
|
||||
modelValue: boolean;
|
||||
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => {
|
||||
updateLocation: (e: Event) => void;
|
||||
} | undefined);
|
||||
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
activatorProps: Record<string, any>;
|
||||
openOnClick: boolean;
|
||||
openOnHover: boolean;
|
||||
openOnFocus: boolean;
|
||||
closeOnContentClick: boolean;
|
||||
closeOnBack: boolean;
|
||||
contained: boolean;
|
||||
noClickAnimation: boolean;
|
||||
persistent: boolean;
|
||||
scrim: string | boolean;
|
||||
fullscreen: boolean;
|
||||
retainFocus: boolean;
|
||||
scrollable: boolean;
|
||||
}>;
|
||||
__isFragment?: undefined;
|
||||
__isTeleport?: undefined;
|
||||
__isSuspense?: undefined;
|
||||
} & vue.ComponentOptionsBase<{
|
||||
absolute: boolean;
|
||||
location: Anchor;
|
||||
origin: NonNullable<"auto" | Anchor | "overlap">;
|
||||
inset: boolean;
|
||||
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
zIndex: NonNullable<string | number>;
|
||||
style: vue.StyleValue;
|
||||
eager: boolean;
|
||||
disabled: boolean;
|
||||
modelValue: boolean;
|
||||
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => {
|
||||
updateLocation: (e: Event) => void;
|
||||
} | undefined);
|
||||
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
activatorProps: Record<string, any>;
|
||||
openOnHover: boolean;
|
||||
closeOnContentClick: boolean;
|
||||
closeOnBack: boolean;
|
||||
contained: boolean;
|
||||
noClickAnimation: boolean;
|
||||
persistent: boolean;
|
||||
scrim: string | boolean;
|
||||
fullscreen: boolean;
|
||||
retainFocus: boolean;
|
||||
scrollable: boolean;
|
||||
} & {
|
||||
offset?: string | number | number[] | undefined;
|
||||
height?: string | number | undefined;
|
||||
width?: string | number | undefined;
|
||||
maxHeight?: string | number | undefined;
|
||||
maxWidth?: string | number | undefined;
|
||||
minHeight?: string | number | undefined;
|
||||
minWidth?: string | number | undefined;
|
||||
opacity?: string | number | undefined;
|
||||
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
||||
class?: any;
|
||||
theme?: string | undefined;
|
||||
contentClass?: any;
|
||||
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
||||
closeDelay?: string | number | undefined;
|
||||
openDelay?: string | number | undefined;
|
||||
openOnClick?: boolean | undefined;
|
||||
openOnFocus?: boolean | undefined;
|
||||
contentProps?: any;
|
||||
attach?: string | boolean | Element | undefined;
|
||||
} & {
|
||||
$children?: vue.VNodeChild | {
|
||||
default?: ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
activator?: ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild);
|
||||
'v-slots'?: {
|
||||
default?: false | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
activator?: false | ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} | undefined;
|
||||
} & {
|
||||
"v-slot:default"?: false | ((arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
"v-slot:activator"?: false | ((arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNodeChild) | undefined;
|
||||
} & {
|
||||
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
||||
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
||||
'update:modelValue': (value: boolean) => boolean;
|
||||
}, string, {
|
||||
absolute: boolean;
|
||||
location: Anchor;
|
||||
origin: NonNullable<"auto" | Anchor | "overlap">;
|
||||
inset: boolean;
|
||||
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
zIndex: NonNullable<string | number>;
|
||||
style: vue.StyleValue;
|
||||
eager: boolean;
|
||||
disabled: boolean;
|
||||
modelValue: boolean;
|
||||
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => {
|
||||
updateLocation: (e: Event) => void;
|
||||
} | undefined);
|
||||
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
activatorProps: Record<string, any>;
|
||||
openOnClick: boolean;
|
||||
openOnHover: boolean;
|
||||
openOnFocus: boolean;
|
||||
closeOnContentClick: boolean;
|
||||
closeOnBack: boolean;
|
||||
contained: boolean;
|
||||
noClickAnimation: boolean;
|
||||
persistent: boolean;
|
||||
scrim: string | boolean;
|
||||
fullscreen: boolean;
|
||||
retainFocus: boolean;
|
||||
scrollable: boolean;
|
||||
}, {}, string, vue.SlotsType<Partial<{
|
||||
default: (arg: {
|
||||
isActive: vue.Ref<boolean>;
|
||||
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
activator: (arg: {
|
||||
isActive: boolean;
|
||||
props: Record<string, any>;
|
||||
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}>[];
|
||||
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
||||
transition: Omit<Omit<{
|
||||
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})>;
|
||||
default: string;
|
||||
validator: (val: unknown) => boolean;
|
||||
}, "type" | "default"> & {
|
||||
type: vue.PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
};
|
||||
}, "type" | "default"> & {
|
||||
type: vue.PropType<NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>>;
|
||||
default: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
};
|
||||
theme: StringConstructor;
|
||||
scrollStrategy: Omit<{
|
||||
type: vue.PropType<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
default: string;
|
||||
validator: (val: any) => boolean;
|
||||
}, "type" | "default"> & {
|
||||
type: vue.PropType<NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">>;
|
||||
default: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
};
|
||||
locationStrategy: {
|
||||
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => {
|
||||
updateLocation: (e: Event) => void;
|
||||
} | undefined)>;
|
||||
default: string;
|
||||
validator: (val: any) => boolean;
|
||||
};
|
||||
location: {
|
||||
type: vue.PropType<Anchor>;
|
||||
default: string;
|
||||
};
|
||||
origin: Omit<{
|
||||
type: vue.PropType<"auto" | Anchor | "overlap">;
|
||||
default: string;
|
||||
}, "type" | "default"> & {
|
||||
type: vue.PropType<NonNullable<"auto" | Anchor | "overlap">>;
|
||||
default: NonNullable<"auto" | Anchor | "overlap">;
|
||||
};
|
||||
offset: vue.PropType<string | number | number[] | undefined>;
|
||||
eager: BooleanConstructor;
|
||||
height: (StringConstructor | NumberConstructor)[];
|
||||
maxHeight: (StringConstructor | NumberConstructor)[];
|
||||
maxWidth: (StringConstructor | NumberConstructor)[];
|
||||
minHeight: (StringConstructor | NumberConstructor)[];
|
||||
minWidth: (StringConstructor | NumberConstructor)[];
|
||||
width: (StringConstructor | NumberConstructor)[];
|
||||
class: vue.PropType<any>;
|
||||
style: {
|
||||
type: vue.PropType<vue.StyleValue>;
|
||||
default: null;
|
||||
};
|
||||
closeDelay: (StringConstructor | NumberConstructor)[];
|
||||
openDelay: (StringConstructor | NumberConstructor)[];
|
||||
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
||||
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
||||
activatorProps: {
|
||||
type: vue.PropType<Record<string, any>>;
|
||||
default: () => {};
|
||||
};
|
||||
openOnClick: {
|
||||
type: BooleanConstructor;
|
||||
default: undefined;
|
||||
};
|
||||
openOnHover: BooleanConstructor;
|
||||
openOnFocus: {
|
||||
type: BooleanConstructor;
|
||||
default: undefined;
|
||||
};
|
||||
closeOnContentClick: BooleanConstructor;
|
||||
absolute: BooleanConstructor;
|
||||
attach: vue.PropType<string | boolean | Element>;
|
||||
closeOnBack: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
contained: BooleanConstructor;
|
||||
contentClass: null;
|
||||
contentProps: null;
|
||||
disabled: BooleanConstructor;
|
||||
opacity: (StringConstructor | NumberConstructor)[];
|
||||
noClickAnimation: BooleanConstructor;
|
||||
modelValue: BooleanConstructor;
|
||||
persistent: BooleanConstructor;
|
||||
scrim: {
|
||||
type: (StringConstructor | BooleanConstructor)[];
|
||||
default: boolean;
|
||||
};
|
||||
zIndex: Omit<{
|
||||
type: (StringConstructor | NumberConstructor)[];
|
||||
default: number;
|
||||
}, "type" | "default"> & {
|
||||
type: vue.PropType<NonNullable<string | number>>;
|
||||
default: NonNullable<string | number>;
|
||||
};
|
||||
fullscreen: BooleanConstructor;
|
||||
retainFocus: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
scrollable: BooleanConstructor;
|
||||
inset: BooleanConstructor;
|
||||
}, vue.ExtractPropTypes<{
|
||||
transition: Omit<Omit<{
|
||||
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})>;
|
||||
default: string;
|
||||
validator: (val: unknown) => boolean;
|
||||
}, "type" | "default"> & {
|
||||
type: vue.PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
};
|
||||
}, "type" | "default"> & {
|
||||
type: vue.PropType<NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>>;
|
||||
default: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
||||
component?: vue.Component | undefined;
|
||||
})> | {
|
||||
component: vue.Component;
|
||||
}>;
|
||||
};
|
||||
theme: StringConstructor;
|
||||
scrollStrategy: Omit<{
|
||||
type: vue.PropType<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
default: string;
|
||||
validator: (val: any) => boolean;
|
||||
}, "type" | "default"> & {
|
||||
type: vue.PropType<NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">>;
|
||||
default: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition">;
|
||||
};
|
||||
locationStrategy: {
|
||||
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => {
|
||||
updateLocation: (e: Event) => void;
|
||||
} | undefined)>;
|
||||
default: string;
|
||||
validator: (val: any) => boolean;
|
||||
};
|
||||
location: {
|
||||
type: vue.PropType<Anchor>;
|
||||
default: string;
|
||||
};
|
||||
origin: Omit<{
|
||||
type: vue.PropType<"auto" | Anchor | "overlap">;
|
||||
default: string;
|
||||
}, "type" | "default"> & {
|
||||
type: vue.PropType<NonNullable<"auto" | Anchor | "overlap">>;
|
||||
default: NonNullable<"auto" | Anchor | "overlap">;
|
||||
};
|
||||
offset: vue.PropType<string | number | number[] | undefined>;
|
||||
eager: BooleanConstructor;
|
||||
height: (StringConstructor | NumberConstructor)[];
|
||||
maxHeight: (StringConstructor | NumberConstructor)[];
|
||||
maxWidth: (StringConstructor | NumberConstructor)[];
|
||||
minHeight: (StringConstructor | NumberConstructor)[];
|
||||
minWidth: (StringConstructor | NumberConstructor)[];
|
||||
width: (StringConstructor | NumberConstructor)[];
|
||||
class: vue.PropType<any>;
|
||||
style: {
|
||||
type: vue.PropType<vue.StyleValue>;
|
||||
default: null;
|
||||
};
|
||||
closeDelay: (StringConstructor | NumberConstructor)[];
|
||||
openDelay: (StringConstructor | NumberConstructor)[];
|
||||
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
||||
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
||||
activatorProps: {
|
||||
type: vue.PropType<Record<string, any>>;
|
||||
default: () => {};
|
||||
};
|
||||
openOnClick: {
|
||||
type: BooleanConstructor;
|
||||
default: undefined;
|
||||
};
|
||||
openOnHover: BooleanConstructor;
|
||||
openOnFocus: {
|
||||
type: BooleanConstructor;
|
||||
default: undefined;
|
||||
};
|
||||
closeOnContentClick: BooleanConstructor;
|
||||
absolute: BooleanConstructor;
|
||||
attach: vue.PropType<string | boolean | Element>;
|
||||
closeOnBack: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
contained: BooleanConstructor;
|
||||
contentClass: null;
|
||||
contentProps: null;
|
||||
disabled: BooleanConstructor;
|
||||
opacity: (StringConstructor | NumberConstructor)[];
|
||||
noClickAnimation: BooleanConstructor;
|
||||
modelValue: BooleanConstructor;
|
||||
persistent: BooleanConstructor;
|
||||
scrim: {
|
||||
type: (StringConstructor | BooleanConstructor)[];
|
||||
default: boolean;
|
||||
};
|
||||
zIndex: Omit<{
|
||||
type: (StringConstructor | NumberConstructor)[];
|
||||
default: number;
|
||||
}, "type" | "default"> & {
|
||||
type: vue.PropType<NonNullable<string | number>>;
|
||||
default: NonNullable<string | number>;
|
||||
};
|
||||
fullscreen: BooleanConstructor;
|
||||
retainFocus: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
scrollable: BooleanConstructor;
|
||||
inset: BooleanConstructor;
|
||||
}>>;
|
||||
type VBottomSheet = InstanceType<typeof VBottomSheet>;
|
||||
|
||||
export { VBottomSheet };
|
2
VApp/node_modules/vuetify/lib/components/VBottomSheet/index.mjs
generated
vendored
Normal file
2
VApp/node_modules/vuetify/lib/components/VBottomSheet/index.mjs
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
export { VBottomSheet } from "./VBottomSheet.mjs";
|
||||
//# sourceMappingURL=index.mjs.map
|
1
VApp/node_modules/vuetify/lib/components/VBottomSheet/index.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/components/VBottomSheet/index.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.mjs","names":["VBottomSheet"],"sources":["../../../src/components/VBottomSheet/index.ts"],"sourcesContent":["export { VBottomSheet } from './VBottomSheet'\n"],"mappings":"SAASA,YAAY"}
|
Reference in New Issue
Block a user