index.d.mts 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154
  1. import * as vue from 'vue';
  2. import { Ref, EffectScope, ComponentPropsOptions, ExtractPropTypes, ComponentPublicInstance, nextTick } from 'vue';
  3. type ClassValue = any;
  4. interface ScrollStrategyData {
  5. root: Ref<HTMLElement | undefined>;
  6. contentEl: Ref<HTMLElement | undefined>;
  7. targetEl: Ref<HTMLElement | undefined>;
  8. isActive: Ref<boolean>;
  9. updateLocation: Ref<((e: Event) => void) | undefined>;
  10. }
  11. type ScrollStrategyFn = (data: ScrollStrategyData, props: StrategyProps$1, scope: EffectScope) => void;
  12. declare const scrollStrategies: {
  13. none: null;
  14. close: typeof closeScrollStrategy;
  15. block: typeof blockScrollStrategy;
  16. reposition: typeof repositionScrollStrategy;
  17. };
  18. interface StrategyProps$1 {
  19. scrollStrategy: keyof typeof scrollStrategies | ScrollStrategyFn;
  20. contained: boolean | undefined;
  21. }
  22. declare function closeScrollStrategy(data: ScrollStrategyData): void;
  23. declare function blockScrollStrategy(data: ScrollStrategyData, props: StrategyProps$1): void;
  24. declare function repositionScrollStrategy(data: ScrollStrategyData, props: StrategyProps$1, scope: EffectScope): void;
  25. declare const block: readonly ["top", "bottom"];
  26. declare const inline: readonly ["start", "end", "left", "right"];
  27. type Tblock = typeof block[number];
  28. type Tinline = typeof inline[number];
  29. type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
  30. declare class Box {
  31. x: number;
  32. y: number;
  33. width: number;
  34. height: number;
  35. constructor({ x, y, width, height }: {
  36. x: number;
  37. y: number;
  38. width: number;
  39. height: number;
  40. });
  41. get top(): number;
  42. get bottom(): number;
  43. get left(): number;
  44. get right(): number;
  45. }
  46. interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
  47. filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
  48. }
  49. type TemplateRef = {
  50. (target: Element | ComponentPublicInstance | null): void;
  51. value: HTMLElement | ComponentPublicInstance | null | undefined;
  52. readonly el: HTMLElement | undefined;
  53. };
  54. declare const allowedVariants: readonly ["elevated", "flat", "tonal", "outlined", "text", "plain"];
  55. type Variant = typeof allowedVariants[number];
  56. interface LocationStrategyData {
  57. contentEl: Ref<HTMLElement | undefined>;
  58. target: Ref<HTMLElement | [x: number, y: number] | undefined>;
  59. isActive: Ref<boolean>;
  60. isRtl: Ref<boolean>;
  61. }
  62. type LocationStrategyFn = (data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  63. updateLocation: (e?: Event) => void;
  64. };
  65. declare const locationStrategies: {
  66. static: typeof staticLocationStrategy;
  67. connected: typeof connectedLocationStrategy;
  68. };
  69. interface StrategyProps {
  70. locationStrategy: keyof typeof locationStrategies | LocationStrategyFn;
  71. location: Anchor;
  72. origin: Anchor | 'auto' | 'overlap';
  73. offset?: number | string | number[];
  74. maxHeight?: number | string;
  75. maxWidth?: number | string;
  76. minHeight?: number | string;
  77. minWidth?: number | string;
  78. }
  79. declare function staticLocationStrategy(): void;
  80. declare function connectedLocationStrategy(data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>): {
  81. updateLocation: () => {
  82. available: {
  83. x: number;
  84. y: number;
  85. };
  86. contentBox: Box;
  87. } | undefined;
  88. };
  89. declare const VSnackbar: {
  90. new (...args: any[]): vue.CreateComponentPublicInstance<{
  91. variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
  92. absolute: boolean;
  93. location: Anchor;
  94. origin: "auto" | Anchor | "overlap";
  95. transition: string | boolean | (vue.TransitionProps & {
  96. component?: vue.Component;
  97. });
  98. zIndex: string | number;
  99. style: vue.StyleValue;
  100. eager: boolean;
  101. disabled: boolean;
  102. timeout: string | number;
  103. vertical: boolean;
  104. modelValue: boolean;
  105. tile: boolean;
  106. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  107. updateLocation: (e?: Event) => void;
  108. });
  109. activatorProps: Record<string, any>;
  110. openOnHover: boolean;
  111. closeOnContentClick: boolean;
  112. closeOnBack: boolean;
  113. contained: boolean;
  114. multiLine: boolean;
  115. } & {
  116. offset?: string | number | number[] | undefined;
  117. height?: string | number | undefined;
  118. width?: string | number | undefined;
  119. color?: string | undefined;
  120. maxHeight?: string | number | undefined;
  121. maxWidth?: string | number | undefined;
  122. minHeight?: string | number | undefined;
  123. minWidth?: string | number | undefined;
  124. opacity?: string | number | undefined;
  125. position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
  126. text?: string | undefined;
  127. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  128. class?: any;
  129. theme?: string | undefined;
  130. timer?: string | boolean | undefined;
  131. rounded?: string | number | boolean | undefined;
  132. contentClass?: any;
  133. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  134. closeDelay?: string | number | undefined;
  135. openDelay?: string | number | undefined;
  136. openOnClick?: boolean | undefined;
  137. openOnFocus?: boolean | undefined;
  138. contentProps?: any;
  139. attach?: string | boolean | Element | undefined;
  140. } & {
  141. $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
  142. activator?: ((arg: {
  143. isActive: boolean;
  144. props: Record<string, any>;
  145. }) => vue.VNodeChild) | undefined;
  146. default?: (() => vue.VNodeChild) | undefined;
  147. actions?: ((arg: {
  148. isActive: Ref<boolean>;
  149. }) => vue.VNodeChild) | undefined;
  150. text?: (() => vue.VNodeChild) | undefined;
  151. };
  152. 'v-slots'?: {
  153. activator?: false | ((arg: {
  154. isActive: boolean;
  155. props: Record<string, any>;
  156. }) => vue.VNodeChild) | undefined;
  157. default?: false | (() => vue.VNodeChild) | undefined;
  158. actions?: false | ((arg: {
  159. isActive: Ref<boolean>;
  160. }) => vue.VNodeChild) | undefined;
  161. text?: false | (() => vue.VNodeChild) | undefined;
  162. } | undefined;
  163. } & {
  164. "v-slot:activator"?: false | ((arg: {
  165. isActive: boolean;
  166. props: Record<string, any>;
  167. }) => vue.VNodeChild) | undefined;
  168. "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
  169. "v-slot:actions"?: false | ((arg: {
  170. isActive: Ref<boolean>;
  171. }) => vue.VNodeChild) | undefined;
  172. "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
  173. } & {
  174. "onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
  175. }, Omit<Omit<{
  176. $: vue.ComponentInternalInstance;
  177. $data: {};
  178. $props: Partial<{
  179. absolute: boolean;
  180. location: Anchor;
  181. origin: "auto" | Anchor | "overlap";
  182. transition: string | boolean | (vue.TransitionProps & {
  183. component?: vue.Component;
  184. });
  185. zIndex: string | number;
  186. style: vue.StyleValue;
  187. eager: boolean;
  188. disabled: boolean;
  189. persistent: boolean;
  190. modelValue: boolean;
  191. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  192. updateLocation: (e?: Event) => void;
  193. });
  194. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  195. activatorProps: Record<string, any>;
  196. openOnClick: boolean;
  197. openOnHover: boolean;
  198. openOnFocus: boolean;
  199. closeOnContentClick: boolean;
  200. closeOnBack: boolean;
  201. contained: boolean;
  202. noClickAnimation: boolean;
  203. scrim: string | boolean;
  204. _disableGlobalStack: boolean;
  205. }> & Omit<{
  206. absolute: boolean;
  207. location: Anchor;
  208. origin: "auto" | Anchor | "overlap";
  209. transition: string | boolean | (vue.TransitionProps & {
  210. component?: vue.Component;
  211. });
  212. zIndex: string | number;
  213. style: vue.StyleValue;
  214. eager: boolean;
  215. disabled: boolean;
  216. persistent: boolean;
  217. modelValue: boolean;
  218. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  219. updateLocation: (e?: Event) => void;
  220. });
  221. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  222. activatorProps: Record<string, any>;
  223. openOnHover: boolean;
  224. closeOnContentClick: boolean;
  225. closeOnBack: boolean;
  226. contained: boolean;
  227. noClickAnimation: boolean;
  228. scrim: string | boolean;
  229. _disableGlobalStack: boolean;
  230. offset?: string | number | number[] | undefined;
  231. height?: string | number | undefined;
  232. width?: string | number | undefined;
  233. maxHeight?: string | number | undefined;
  234. maxWidth?: string | number | undefined;
  235. minHeight?: string | number | undefined;
  236. minWidth?: string | number | undefined;
  237. opacity?: string | number | undefined;
  238. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  239. class?: any;
  240. theme?: string | undefined;
  241. contentClass?: any;
  242. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  243. closeDelay?: string | number | undefined;
  244. openDelay?: string | number | undefined;
  245. openOnClick?: boolean | undefined;
  246. openOnFocus?: boolean | undefined;
  247. contentProps?: any;
  248. attach?: string | boolean | Element | undefined;
  249. $children?: vue.VNodeChild | {
  250. default?: ((arg: {
  251. isActive: Ref<boolean>;
  252. }) => vue.VNodeChild) | undefined;
  253. activator?: ((arg: {
  254. isActive: boolean;
  255. props: Record<string, any>;
  256. targetRef: TemplateRef;
  257. }) => vue.VNodeChild) | undefined;
  258. } | ((arg: {
  259. isActive: Ref<boolean>;
  260. }) => vue.VNodeChild);
  261. 'v-slots'?: {
  262. default?: false | ((arg: {
  263. isActive: Ref<boolean>;
  264. }) => vue.VNodeChild) | undefined;
  265. activator?: false | ((arg: {
  266. isActive: boolean;
  267. props: Record<string, any>;
  268. targetRef: TemplateRef;
  269. }) => vue.VNodeChild) | undefined;
  270. } | undefined;
  271. "v-slot:default"?: false | ((arg: {
  272. isActive: Ref<boolean>;
  273. }) => vue.VNodeChild) | undefined;
  274. "v-slot:activator"?: false | ((arg: {
  275. isActive: boolean;
  276. props: Record<string, any>;
  277. targetRef: TemplateRef;
  278. }) => vue.VNodeChild) | undefined;
  279. onAfterEnter?: (() => any) | undefined;
  280. onAfterLeave?: (() => any) | undefined;
  281. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  282. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  283. } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
  284. absolute: boolean;
  285. location: Anchor;
  286. origin: "auto" | Anchor | "overlap";
  287. transition: string | boolean | (vue.TransitionProps & {
  288. component?: vue.Component;
  289. });
  290. zIndex: string | number;
  291. style: vue.StyleValue;
  292. eager: boolean;
  293. disabled: boolean;
  294. persistent: boolean;
  295. modelValue: boolean;
  296. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  297. updateLocation: (e?: Event) => void;
  298. });
  299. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  300. activatorProps: Record<string, any>;
  301. openOnHover: boolean;
  302. closeOnContentClick: boolean;
  303. closeOnBack: boolean;
  304. contained: boolean;
  305. noClickAnimation: boolean;
  306. scrim: string | boolean;
  307. _disableGlobalStack: boolean;
  308. } & {
  309. offset?: string | number | number[] | undefined;
  310. height?: string | number | undefined;
  311. width?: string | number | undefined;
  312. maxHeight?: string | number | undefined;
  313. maxWidth?: string | number | undefined;
  314. minHeight?: string | number | undefined;
  315. minWidth?: string | number | undefined;
  316. opacity?: string | number | undefined;
  317. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  318. class?: any;
  319. theme?: string | undefined;
  320. contentClass?: any;
  321. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  322. closeDelay?: string | number | undefined;
  323. openDelay?: string | number | undefined;
  324. openOnClick?: boolean | undefined;
  325. openOnFocus?: boolean | undefined;
  326. contentProps?: any;
  327. attach?: string | boolean | Element | undefined;
  328. } & {
  329. $children?: vue.VNodeChild | {
  330. default?: ((arg: {
  331. isActive: Ref<boolean>;
  332. }) => vue.VNodeChild) | undefined;
  333. activator?: ((arg: {
  334. isActive: boolean;
  335. props: Record<string, any>;
  336. targetRef: TemplateRef;
  337. }) => vue.VNodeChild) | undefined;
  338. } | ((arg: {
  339. isActive: Ref<boolean>;
  340. }) => vue.VNodeChild);
  341. 'v-slots'?: {
  342. default?: false | ((arg: {
  343. isActive: Ref<boolean>;
  344. }) => vue.VNodeChild) | undefined;
  345. activator?: false | ((arg: {
  346. isActive: boolean;
  347. props: Record<string, any>;
  348. targetRef: TemplateRef;
  349. }) => vue.VNodeChild) | undefined;
  350. } | undefined;
  351. } & {
  352. "v-slot:default"?: false | ((arg: {
  353. isActive: Ref<boolean>;
  354. }) => vue.VNodeChild) | undefined;
  355. "v-slot:activator"?: false | ((arg: {
  356. isActive: boolean;
  357. props: Record<string, any>;
  358. targetRef: TemplateRef;
  359. }) => vue.VNodeChild) | undefined;
  360. } & {
  361. onAfterEnter?: (() => any) | undefined;
  362. onAfterLeave?: (() => any) | undefined;
  363. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  364. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  365. }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
  366. $attrs: {
  367. [x: string]: unknown;
  368. };
  369. $refs: {
  370. [x: string]: unknown;
  371. };
  372. $slots: Readonly<{
  373. default?: ((arg: {
  374. isActive: Ref<boolean>;
  375. }) => vue.VNode[]) | undefined;
  376. activator?: ((arg: {
  377. isActive: boolean;
  378. props: Record<string, any>;
  379. targetRef: TemplateRef;
  380. }) => vue.VNode[]) | undefined;
  381. }>;
  382. $root: vue.ComponentPublicInstance | null;
  383. $parent: vue.ComponentPublicInstance | null;
  384. $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
  385. $el: any;
  386. $options: vue.ComponentOptionsBase<{
  387. absolute: boolean;
  388. location: Anchor;
  389. origin: "auto" | Anchor | "overlap";
  390. transition: string | boolean | (vue.TransitionProps & {
  391. component?: vue.Component;
  392. });
  393. zIndex: string | number;
  394. style: vue.StyleValue;
  395. eager: boolean;
  396. disabled: boolean;
  397. persistent: boolean;
  398. modelValue: boolean;
  399. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  400. updateLocation: (e?: Event) => void;
  401. });
  402. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  403. activatorProps: Record<string, any>;
  404. openOnHover: boolean;
  405. closeOnContentClick: boolean;
  406. closeOnBack: boolean;
  407. contained: boolean;
  408. noClickAnimation: boolean;
  409. scrim: string | boolean;
  410. _disableGlobalStack: boolean;
  411. } & {
  412. offset?: string | number | number[] | undefined;
  413. height?: string | number | undefined;
  414. width?: string | number | undefined;
  415. maxHeight?: string | number | undefined;
  416. maxWidth?: string | number | undefined;
  417. minHeight?: string | number | undefined;
  418. minWidth?: string | number | undefined;
  419. opacity?: string | number | undefined;
  420. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  421. class?: any;
  422. theme?: string | undefined;
  423. contentClass?: any;
  424. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  425. closeDelay?: string | number | undefined;
  426. openDelay?: string | number | undefined;
  427. openOnClick?: boolean | undefined;
  428. openOnFocus?: boolean | undefined;
  429. contentProps?: any;
  430. attach?: string | boolean | Element | undefined;
  431. } & {
  432. $children?: vue.VNodeChild | {
  433. default?: ((arg: {
  434. isActive: Ref<boolean>;
  435. }) => vue.VNodeChild) | undefined;
  436. activator?: ((arg: {
  437. isActive: boolean;
  438. props: Record<string, any>;
  439. targetRef: TemplateRef;
  440. }) => vue.VNodeChild) | undefined;
  441. } | ((arg: {
  442. isActive: Ref<boolean>;
  443. }) => vue.VNodeChild);
  444. 'v-slots'?: {
  445. default?: false | ((arg: {
  446. isActive: Ref<boolean>;
  447. }) => vue.VNodeChild) | undefined;
  448. activator?: false | ((arg: {
  449. isActive: boolean;
  450. props: Record<string, any>;
  451. targetRef: TemplateRef;
  452. }) => vue.VNodeChild) | undefined;
  453. } | undefined;
  454. } & {
  455. "v-slot:default"?: false | ((arg: {
  456. isActive: Ref<boolean>;
  457. }) => vue.VNodeChild) | undefined;
  458. "v-slot:activator"?: false | ((arg: {
  459. isActive: boolean;
  460. props: Record<string, any>;
  461. targetRef: TemplateRef;
  462. }) => vue.VNodeChild) | undefined;
  463. } & {
  464. onAfterEnter?: (() => any) | undefined;
  465. onAfterLeave?: (() => any) | undefined;
  466. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  467. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  468. }, {
  469. activatorEl: Ref<HTMLElement | undefined>;
  470. scrimEl: Ref<HTMLElement | undefined>;
  471. target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
  472. animateClick: () => void;
  473. contentEl: Ref<HTMLElement | undefined>;
  474. globalTop: Readonly<Ref<boolean>>;
  475. localTop: vue.ComputedRef<boolean>;
  476. updateLocation: Ref<((e: Event) => void) | undefined>;
  477. }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
  478. 'click:outside': (e: MouseEvent) => true;
  479. 'update:modelValue': (value: boolean) => true;
  480. afterEnter: () => true;
  481. afterLeave: () => true;
  482. }, string, {
  483. absolute: boolean;
  484. location: Anchor;
  485. origin: "auto" | Anchor | "overlap";
  486. transition: string | boolean | (vue.TransitionProps & {
  487. component?: vue.Component;
  488. });
  489. zIndex: string | number;
  490. style: vue.StyleValue;
  491. eager: boolean;
  492. disabled: boolean;
  493. persistent: boolean;
  494. modelValue: boolean;
  495. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  496. updateLocation: (e?: Event) => void;
  497. });
  498. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  499. activatorProps: Record<string, any>;
  500. openOnClick: boolean;
  501. openOnHover: boolean;
  502. openOnFocus: boolean;
  503. closeOnContentClick: boolean;
  504. closeOnBack: boolean;
  505. contained: boolean;
  506. noClickAnimation: boolean;
  507. scrim: string | boolean;
  508. _disableGlobalStack: boolean;
  509. }, {}, string, vue.SlotsType<Partial<{
  510. default: (arg: {
  511. isActive: Ref<boolean>;
  512. }) => vue.VNode[];
  513. activator: (arg: {
  514. isActive: boolean;
  515. props: Record<string, any>;
  516. targetRef: TemplateRef;
  517. }) => vue.VNode[];
  518. }>>> & {
  519. beforeCreate?: (() => void) | (() => void)[];
  520. created?: (() => void) | (() => void)[];
  521. beforeMount?: (() => void) | (() => void)[];
  522. mounted?: (() => void) | (() => void)[];
  523. beforeUpdate?: (() => void) | (() => void)[];
  524. updated?: (() => void) | (() => void)[];
  525. activated?: (() => void) | (() => void)[];
  526. deactivated?: (() => void) | (() => void)[];
  527. beforeDestroy?: (() => void) | (() => void)[];
  528. beforeUnmount?: (() => void) | (() => void)[];
  529. destroyed?: (() => void) | (() => void)[];
  530. unmounted?: (() => void) | (() => void)[];
  531. renderTracked?: ((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[];
  532. renderTriggered?: ((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[];
  533. errorCaptured?: ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void)[];
  534. };
  535. $forceUpdate: () => void;
  536. $nextTick: typeof nextTick;
  537. $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R]) => any : (...args: any) => any, options?: vue.WatchOptions): vue.WatchStopHandle;
  538. } & Omit<{
  539. absolute: boolean;
  540. location: Anchor;
  541. origin: "auto" | Anchor | "overlap";
  542. transition: string | boolean | (vue.TransitionProps & {
  543. component?: vue.Component;
  544. });
  545. zIndex: string | number;
  546. style: vue.StyleValue;
  547. eager: boolean;
  548. disabled: boolean;
  549. persistent: boolean;
  550. modelValue: boolean;
  551. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  552. updateLocation: (e?: Event) => void;
  553. });
  554. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  555. activatorProps: Record<string, any>;
  556. openOnHover: boolean;
  557. closeOnContentClick: boolean;
  558. closeOnBack: boolean;
  559. contained: boolean;
  560. noClickAnimation: boolean;
  561. scrim: string | boolean;
  562. _disableGlobalStack: boolean;
  563. } & {
  564. offset?: string | number | number[] | undefined;
  565. height?: string | number | undefined;
  566. width?: string | number | undefined;
  567. maxHeight?: string | number | undefined;
  568. maxWidth?: string | number | undefined;
  569. minHeight?: string | number | undefined;
  570. minWidth?: string | number | undefined;
  571. opacity?: string | number | undefined;
  572. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  573. class?: any;
  574. theme?: string | undefined;
  575. contentClass?: any;
  576. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  577. closeDelay?: string | number | undefined;
  578. openDelay?: string | number | undefined;
  579. openOnClick?: boolean | undefined;
  580. openOnFocus?: boolean | undefined;
  581. contentProps?: any;
  582. attach?: string | boolean | Element | undefined;
  583. } & {
  584. $children?: vue.VNodeChild | {
  585. default?: ((arg: {
  586. isActive: Ref<boolean>;
  587. }) => vue.VNodeChild) | undefined;
  588. activator?: ((arg: {
  589. isActive: boolean;
  590. props: Record<string, any>;
  591. targetRef: TemplateRef;
  592. }) => vue.VNodeChild) | undefined;
  593. } | ((arg: {
  594. isActive: Ref<boolean>;
  595. }) => vue.VNodeChild);
  596. 'v-slots'?: {
  597. default?: false | ((arg: {
  598. isActive: Ref<boolean>;
  599. }) => vue.VNodeChild) | undefined;
  600. activator?: false | ((arg: {
  601. isActive: boolean;
  602. props: Record<string, any>;
  603. targetRef: TemplateRef;
  604. }) => vue.VNodeChild) | undefined;
  605. } | undefined;
  606. } & {
  607. "v-slot:default"?: false | ((arg: {
  608. isActive: Ref<boolean>;
  609. }) => vue.VNodeChild) | undefined;
  610. "v-slot:activator"?: false | ((arg: {
  611. isActive: boolean;
  612. props: Record<string, any>;
  613. targetRef: TemplateRef;
  614. }) => vue.VNodeChild) | undefined;
  615. } & {
  616. onAfterEnter?: (() => any) | undefined;
  617. onAfterLeave?: (() => any) | undefined;
  618. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  619. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  620. }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
  621. activatorEl: Ref<HTMLElement | undefined>;
  622. scrimEl: Ref<HTMLElement | undefined>;
  623. target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
  624. animateClick: () => void;
  625. contentEl: Ref<HTMLElement | undefined>;
  626. globalTop: Readonly<Ref<boolean>>;
  627. localTop: vue.ComputedRef<boolean>;
  628. updateLocation: Ref<((e: Event) => void) | undefined>;
  629. }> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
  630. _allExposed: {
  631. activatorEl: Ref<HTMLElement | undefined>;
  632. scrimEl: Ref<HTMLElement | undefined>;
  633. target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
  634. animateClick: () => void;
  635. contentEl: Ref<HTMLElement | undefined>;
  636. globalTop: Readonly<Ref<boolean>>;
  637. localTop: vue.ComputedRef<boolean>;
  638. updateLocation: Ref<((e: Event) => void) | undefined>;
  639. } | {};
  640. }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
  641. 'update:modelValue': (v: boolean) => true;
  642. }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
  643. variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
  644. absolute: boolean;
  645. location: Anchor;
  646. origin: "auto" | Anchor | "overlap";
  647. transition: string | boolean | (vue.TransitionProps & {
  648. component?: vue.Component;
  649. });
  650. zIndex: string | number;
  651. style: vue.StyleValue;
  652. eager: boolean;
  653. disabled: boolean;
  654. timeout: string | number;
  655. vertical: boolean;
  656. modelValue: boolean;
  657. tile: boolean;
  658. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  659. updateLocation: (e?: Event) => void;
  660. });
  661. activatorProps: Record<string, any>;
  662. openOnHover: boolean;
  663. closeOnContentClick: boolean;
  664. closeOnBack: boolean;
  665. contained: boolean;
  666. multiLine: boolean;
  667. } & {
  668. offset?: string | number | number[] | undefined;
  669. height?: string | number | undefined;
  670. width?: string | number | undefined;
  671. color?: string | undefined;
  672. maxHeight?: string | number | undefined;
  673. maxWidth?: string | number | undefined;
  674. minHeight?: string | number | undefined;
  675. minWidth?: string | number | undefined;
  676. opacity?: string | number | undefined;
  677. position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
  678. text?: string | undefined;
  679. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  680. class?: any;
  681. theme?: string | undefined;
  682. timer?: string | boolean | undefined;
  683. rounded?: string | number | boolean | undefined;
  684. contentClass?: any;
  685. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  686. closeDelay?: string | number | undefined;
  687. openDelay?: string | number | undefined;
  688. openOnClick?: boolean | undefined;
  689. openOnFocus?: boolean | undefined;
  690. contentProps?: any;
  691. attach?: string | boolean | Element | undefined;
  692. } & {
  693. $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
  694. activator?: ((arg: {
  695. isActive: boolean;
  696. props: Record<string, any>;
  697. }) => vue.VNodeChild) | undefined;
  698. default?: (() => vue.VNodeChild) | undefined;
  699. actions?: ((arg: {
  700. isActive: Ref<boolean>;
  701. }) => vue.VNodeChild) | undefined;
  702. text?: (() => vue.VNodeChild) | undefined;
  703. };
  704. 'v-slots'?: {
  705. activator?: false | ((arg: {
  706. isActive: boolean;
  707. props: Record<string, any>;
  708. }) => vue.VNodeChild) | undefined;
  709. default?: false | (() => vue.VNodeChild) | undefined;
  710. actions?: false | ((arg: {
  711. isActive: Ref<boolean>;
  712. }) => vue.VNodeChild) | undefined;
  713. text?: false | (() => vue.VNodeChild) | undefined;
  714. } | undefined;
  715. } & {
  716. "v-slot:activator"?: false | ((arg: {
  717. isActive: boolean;
  718. props: Record<string, any>;
  719. }) => vue.VNodeChild) | undefined;
  720. "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
  721. "v-slot:actions"?: false | ((arg: {
  722. isActive: Ref<boolean>;
  723. }) => vue.VNodeChild) | undefined;
  724. "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
  725. } & {
  726. "onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
  727. }, {
  728. variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
  729. absolute: boolean;
  730. location: Anchor;
  731. origin: "auto" | Anchor | "overlap";
  732. transition: string | boolean | (vue.TransitionProps & {
  733. component?: vue.Component;
  734. });
  735. zIndex: string | number;
  736. style: vue.StyleValue;
  737. eager: boolean;
  738. disabled: boolean;
  739. timeout: string | number;
  740. vertical: boolean;
  741. modelValue: boolean;
  742. rounded: string | number | boolean;
  743. tile: boolean;
  744. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  745. updateLocation: (e?: Event) => void;
  746. });
  747. activatorProps: Record<string, any>;
  748. openOnClick: boolean;
  749. openOnHover: boolean;
  750. openOnFocus: boolean;
  751. closeOnContentClick: boolean;
  752. closeOnBack: boolean;
  753. contained: boolean;
  754. multiLine: boolean;
  755. }, true, {}, vue.SlotsType<Partial<{
  756. activator: (arg: {
  757. isActive: boolean;
  758. props: Record<string, any>;
  759. }) => vue.VNode[];
  760. default: () => vue.VNode[];
  761. actions: (arg: {
  762. isActive: Ref<boolean>;
  763. }) => vue.VNode[];
  764. text: () => vue.VNode[];
  765. }>>, {
  766. P: {};
  767. B: {};
  768. D: {};
  769. C: {};
  770. M: {};
  771. Defaults: {};
  772. }, {
  773. variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
  774. absolute: boolean;
  775. location: Anchor;
  776. origin: "auto" | Anchor | "overlap";
  777. transition: string | boolean | (vue.TransitionProps & {
  778. component?: vue.Component;
  779. });
  780. zIndex: string | number;
  781. style: vue.StyleValue;
  782. eager: boolean;
  783. disabled: boolean;
  784. timeout: string | number;
  785. vertical: boolean;
  786. modelValue: boolean;
  787. tile: boolean;
  788. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  789. updateLocation: (e?: Event) => void;
  790. });
  791. activatorProps: Record<string, any>;
  792. openOnHover: boolean;
  793. closeOnContentClick: boolean;
  794. closeOnBack: boolean;
  795. contained: boolean;
  796. multiLine: boolean;
  797. } & {
  798. offset?: string | number | number[] | undefined;
  799. height?: string | number | undefined;
  800. width?: string | number | undefined;
  801. color?: string | undefined;
  802. maxHeight?: string | number | undefined;
  803. maxWidth?: string | number | undefined;
  804. minHeight?: string | number | undefined;
  805. minWidth?: string | number | undefined;
  806. opacity?: string | number | undefined;
  807. position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
  808. text?: string | undefined;
  809. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  810. class?: any;
  811. theme?: string | undefined;
  812. timer?: string | boolean | undefined;
  813. rounded?: string | number | boolean | undefined;
  814. contentClass?: any;
  815. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  816. closeDelay?: string | number | undefined;
  817. openDelay?: string | number | undefined;
  818. openOnClick?: boolean | undefined;
  819. openOnFocus?: boolean | undefined;
  820. contentProps?: any;
  821. attach?: string | boolean | Element | undefined;
  822. } & {
  823. $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
  824. activator?: ((arg: {
  825. isActive: boolean;
  826. props: Record<string, any>;
  827. }) => vue.VNodeChild) | undefined;
  828. default?: (() => vue.VNodeChild) | undefined;
  829. actions?: ((arg: {
  830. isActive: Ref<boolean>;
  831. }) => vue.VNodeChild) | undefined;
  832. text?: (() => vue.VNodeChild) | undefined;
  833. };
  834. 'v-slots'?: {
  835. activator?: false | ((arg: {
  836. isActive: boolean;
  837. props: Record<string, any>;
  838. }) => vue.VNodeChild) | undefined;
  839. default?: false | (() => vue.VNodeChild) | undefined;
  840. actions?: false | ((arg: {
  841. isActive: Ref<boolean>;
  842. }) => vue.VNodeChild) | undefined;
  843. text?: false | (() => vue.VNodeChild) | undefined;
  844. } | undefined;
  845. } & {
  846. "v-slot:activator"?: false | ((arg: {
  847. isActive: boolean;
  848. props: Record<string, any>;
  849. }) => vue.VNodeChild) | undefined;
  850. "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
  851. "v-slot:actions"?: false | ((arg: {
  852. isActive: Ref<boolean>;
  853. }) => vue.VNodeChild) | undefined;
  854. "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
  855. } & {
  856. "onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
  857. }, Omit<Omit<{
  858. $: vue.ComponentInternalInstance;
  859. $data: {};
  860. $props: Partial<{
  861. absolute: boolean;
  862. location: Anchor;
  863. origin: "auto" | Anchor | "overlap";
  864. transition: string | boolean | (vue.TransitionProps & {
  865. component?: vue.Component;
  866. });
  867. zIndex: string | number;
  868. style: vue.StyleValue;
  869. eager: boolean;
  870. disabled: boolean;
  871. persistent: boolean;
  872. modelValue: boolean;
  873. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  874. updateLocation: (e?: Event) => void;
  875. });
  876. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  877. activatorProps: Record<string, any>;
  878. openOnClick: boolean;
  879. openOnHover: boolean;
  880. openOnFocus: boolean;
  881. closeOnContentClick: boolean;
  882. closeOnBack: boolean;
  883. contained: boolean;
  884. noClickAnimation: boolean;
  885. scrim: string | boolean;
  886. _disableGlobalStack: boolean;
  887. }> & Omit<{
  888. absolute: boolean;
  889. location: Anchor;
  890. origin: "auto" | Anchor | "overlap";
  891. transition: string | boolean | (vue.TransitionProps & {
  892. component?: vue.Component;
  893. });
  894. zIndex: string | number;
  895. style: vue.StyleValue;
  896. eager: boolean;
  897. disabled: boolean;
  898. persistent: boolean;
  899. modelValue: boolean;
  900. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  901. updateLocation: (e?: Event) => void;
  902. });
  903. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  904. activatorProps: Record<string, any>;
  905. openOnHover: boolean;
  906. closeOnContentClick: boolean;
  907. closeOnBack: boolean;
  908. contained: boolean;
  909. noClickAnimation: boolean;
  910. scrim: string | boolean;
  911. _disableGlobalStack: boolean;
  912. offset?: string | number | number[] | undefined;
  913. height?: string | number | undefined;
  914. width?: string | number | undefined;
  915. maxHeight?: string | number | undefined;
  916. maxWidth?: string | number | undefined;
  917. minHeight?: string | number | undefined;
  918. minWidth?: string | number | undefined;
  919. opacity?: string | number | undefined;
  920. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  921. class?: any;
  922. theme?: string | undefined;
  923. contentClass?: any;
  924. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  925. closeDelay?: string | number | undefined;
  926. openDelay?: string | number | undefined;
  927. openOnClick?: boolean | undefined;
  928. openOnFocus?: boolean | undefined;
  929. contentProps?: any;
  930. attach?: string | boolean | Element | undefined;
  931. $children?: vue.VNodeChild | {
  932. default?: ((arg: {
  933. isActive: Ref<boolean>;
  934. }) => vue.VNodeChild) | undefined;
  935. activator?: ((arg: {
  936. isActive: boolean;
  937. props: Record<string, any>;
  938. targetRef: TemplateRef;
  939. }) => vue.VNodeChild) | undefined;
  940. } | ((arg: {
  941. isActive: Ref<boolean>;
  942. }) => vue.VNodeChild);
  943. 'v-slots'?: {
  944. default?: false | ((arg: {
  945. isActive: Ref<boolean>;
  946. }) => vue.VNodeChild) | undefined;
  947. activator?: false | ((arg: {
  948. isActive: boolean;
  949. props: Record<string, any>;
  950. targetRef: TemplateRef;
  951. }) => vue.VNodeChild) | undefined;
  952. } | undefined;
  953. "v-slot:default"?: false | ((arg: {
  954. isActive: Ref<boolean>;
  955. }) => vue.VNodeChild) | undefined;
  956. "v-slot:activator"?: false | ((arg: {
  957. isActive: boolean;
  958. props: Record<string, any>;
  959. targetRef: TemplateRef;
  960. }) => vue.VNodeChild) | undefined;
  961. onAfterEnter?: (() => any) | undefined;
  962. onAfterLeave?: (() => any) | undefined;
  963. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  964. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  965. } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
  966. absolute: boolean;
  967. location: Anchor;
  968. origin: "auto" | Anchor | "overlap";
  969. transition: string | boolean | (vue.TransitionProps & {
  970. component?: vue.Component;
  971. });
  972. zIndex: string | number;
  973. style: vue.StyleValue;
  974. eager: boolean;
  975. disabled: boolean;
  976. persistent: boolean;
  977. modelValue: boolean;
  978. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  979. updateLocation: (e?: Event) => void;
  980. });
  981. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  982. activatorProps: Record<string, any>;
  983. openOnHover: boolean;
  984. closeOnContentClick: boolean;
  985. closeOnBack: boolean;
  986. contained: boolean;
  987. noClickAnimation: boolean;
  988. scrim: string | boolean;
  989. _disableGlobalStack: boolean;
  990. } & {
  991. offset?: string | number | number[] | undefined;
  992. height?: string | number | undefined;
  993. width?: string | number | undefined;
  994. maxHeight?: string | number | undefined;
  995. maxWidth?: string | number | undefined;
  996. minHeight?: string | number | undefined;
  997. minWidth?: string | number | undefined;
  998. opacity?: string | number | undefined;
  999. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  1000. class?: any;
  1001. theme?: string | undefined;
  1002. contentClass?: any;
  1003. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  1004. closeDelay?: string | number | undefined;
  1005. openDelay?: string | number | undefined;
  1006. openOnClick?: boolean | undefined;
  1007. openOnFocus?: boolean | undefined;
  1008. contentProps?: any;
  1009. attach?: string | boolean | Element | undefined;
  1010. } & {
  1011. $children?: vue.VNodeChild | {
  1012. default?: ((arg: {
  1013. isActive: Ref<boolean>;
  1014. }) => vue.VNodeChild) | undefined;
  1015. activator?: ((arg: {
  1016. isActive: boolean;
  1017. props: Record<string, any>;
  1018. targetRef: TemplateRef;
  1019. }) => vue.VNodeChild) | undefined;
  1020. } | ((arg: {
  1021. isActive: Ref<boolean>;
  1022. }) => vue.VNodeChild);
  1023. 'v-slots'?: {
  1024. default?: false | ((arg: {
  1025. isActive: Ref<boolean>;
  1026. }) => vue.VNodeChild) | undefined;
  1027. activator?: false | ((arg: {
  1028. isActive: boolean;
  1029. props: Record<string, any>;
  1030. targetRef: TemplateRef;
  1031. }) => vue.VNodeChild) | undefined;
  1032. } | undefined;
  1033. } & {
  1034. "v-slot:default"?: false | ((arg: {
  1035. isActive: Ref<boolean>;
  1036. }) => vue.VNodeChild) | undefined;
  1037. "v-slot:activator"?: false | ((arg: {
  1038. isActive: boolean;
  1039. props: Record<string, any>;
  1040. targetRef: TemplateRef;
  1041. }) => vue.VNodeChild) | undefined;
  1042. } & {
  1043. onAfterEnter?: (() => any) | undefined;
  1044. onAfterLeave?: (() => any) | undefined;
  1045. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  1046. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  1047. }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
  1048. $attrs: {
  1049. [x: string]: unknown;
  1050. };
  1051. $refs: {
  1052. [x: string]: unknown;
  1053. };
  1054. $slots: Readonly<{
  1055. default?: ((arg: {
  1056. isActive: Ref<boolean>;
  1057. }) => vue.VNode[]) | undefined;
  1058. activator?: ((arg: {
  1059. isActive: boolean;
  1060. props: Record<string, any>;
  1061. targetRef: TemplateRef;
  1062. }) => vue.VNode[]) | undefined;
  1063. }>;
  1064. $root: vue.ComponentPublicInstance | null;
  1065. $parent: vue.ComponentPublicInstance | null;
  1066. $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
  1067. $el: any;
  1068. $options: vue.ComponentOptionsBase<{
  1069. absolute: boolean;
  1070. location: Anchor;
  1071. origin: "auto" | Anchor | "overlap";
  1072. transition: string | boolean | (vue.TransitionProps & {
  1073. component?: vue.Component;
  1074. });
  1075. zIndex: string | number;
  1076. style: vue.StyleValue;
  1077. eager: boolean;
  1078. disabled: boolean;
  1079. persistent: boolean;
  1080. modelValue: boolean;
  1081. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1082. updateLocation: (e?: Event) => void;
  1083. });
  1084. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  1085. activatorProps: Record<string, any>;
  1086. openOnHover: boolean;
  1087. closeOnContentClick: boolean;
  1088. closeOnBack: boolean;
  1089. contained: boolean;
  1090. noClickAnimation: boolean;
  1091. scrim: string | boolean;
  1092. _disableGlobalStack: boolean;
  1093. } & {
  1094. offset?: string | number | number[] | undefined;
  1095. height?: string | number | undefined;
  1096. width?: string | number | undefined;
  1097. maxHeight?: string | number | undefined;
  1098. maxWidth?: string | number | undefined;
  1099. minHeight?: string | number | undefined;
  1100. minWidth?: string | number | undefined;
  1101. opacity?: string | number | undefined;
  1102. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  1103. class?: any;
  1104. theme?: string | undefined;
  1105. contentClass?: any;
  1106. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  1107. closeDelay?: string | number | undefined;
  1108. openDelay?: string | number | undefined;
  1109. openOnClick?: boolean | undefined;
  1110. openOnFocus?: boolean | undefined;
  1111. contentProps?: any;
  1112. attach?: string | boolean | Element | undefined;
  1113. } & {
  1114. $children?: vue.VNodeChild | {
  1115. default?: ((arg: {
  1116. isActive: Ref<boolean>;
  1117. }) => vue.VNodeChild) | undefined;
  1118. activator?: ((arg: {
  1119. isActive: boolean;
  1120. props: Record<string, any>;
  1121. targetRef: TemplateRef;
  1122. }) => vue.VNodeChild) | undefined;
  1123. } | ((arg: {
  1124. isActive: Ref<boolean>;
  1125. }) => vue.VNodeChild);
  1126. 'v-slots'?: {
  1127. default?: false | ((arg: {
  1128. isActive: Ref<boolean>;
  1129. }) => vue.VNodeChild) | undefined;
  1130. activator?: false | ((arg: {
  1131. isActive: boolean;
  1132. props: Record<string, any>;
  1133. targetRef: TemplateRef;
  1134. }) => vue.VNodeChild) | undefined;
  1135. } | undefined;
  1136. } & {
  1137. "v-slot:default"?: false | ((arg: {
  1138. isActive: Ref<boolean>;
  1139. }) => vue.VNodeChild) | undefined;
  1140. "v-slot:activator"?: false | ((arg: {
  1141. isActive: boolean;
  1142. props: Record<string, any>;
  1143. targetRef: TemplateRef;
  1144. }) => vue.VNodeChild) | undefined;
  1145. } & {
  1146. onAfterEnter?: (() => any) | undefined;
  1147. onAfterLeave?: (() => any) | undefined;
  1148. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  1149. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  1150. }, {
  1151. activatorEl: Ref<HTMLElement | undefined>;
  1152. scrimEl: Ref<HTMLElement | undefined>;
  1153. target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
  1154. animateClick: () => void;
  1155. contentEl: Ref<HTMLElement | undefined>;
  1156. globalTop: Readonly<Ref<boolean>>;
  1157. localTop: vue.ComputedRef<boolean>;
  1158. updateLocation: Ref<((e: Event) => void) | undefined>;
  1159. }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
  1160. 'click:outside': (e: MouseEvent) => true;
  1161. 'update:modelValue': (value: boolean) => true;
  1162. afterEnter: () => true;
  1163. afterLeave: () => true;
  1164. }, string, {
  1165. absolute: boolean;
  1166. location: Anchor;
  1167. origin: "auto" | Anchor | "overlap";
  1168. transition: string | boolean | (vue.TransitionProps & {
  1169. component?: vue.Component;
  1170. });
  1171. zIndex: string | number;
  1172. style: vue.StyleValue;
  1173. eager: boolean;
  1174. disabled: boolean;
  1175. persistent: boolean;
  1176. modelValue: boolean;
  1177. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1178. updateLocation: (e?: Event) => void;
  1179. });
  1180. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  1181. activatorProps: Record<string, any>;
  1182. openOnClick: boolean;
  1183. openOnHover: boolean;
  1184. openOnFocus: boolean;
  1185. closeOnContentClick: boolean;
  1186. closeOnBack: boolean;
  1187. contained: boolean;
  1188. noClickAnimation: boolean;
  1189. scrim: string | boolean;
  1190. _disableGlobalStack: boolean;
  1191. }, {}, string, vue.SlotsType<Partial<{
  1192. default: (arg: {
  1193. isActive: Ref<boolean>;
  1194. }) => vue.VNode[];
  1195. activator: (arg: {
  1196. isActive: boolean;
  1197. props: Record<string, any>;
  1198. targetRef: TemplateRef;
  1199. }) => vue.VNode[];
  1200. }>>> & {
  1201. beforeCreate?: (() => void) | (() => void)[];
  1202. created?: (() => void) | (() => void)[];
  1203. beforeMount?: (() => void) | (() => void)[];
  1204. mounted?: (() => void) | (() => void)[];
  1205. beforeUpdate?: (() => void) | (() => void)[];
  1206. updated?: (() => void) | (() => void)[];
  1207. activated?: (() => void) | (() => void)[];
  1208. deactivated?: (() => void) | (() => void)[];
  1209. beforeDestroy?: (() => void) | (() => void)[];
  1210. beforeUnmount?: (() => void) | (() => void)[];
  1211. destroyed?: (() => void) | (() => void)[];
  1212. unmounted?: (() => void) | (() => void)[];
  1213. renderTracked?: ((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[];
  1214. renderTriggered?: ((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[];
  1215. errorCaptured?: ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void)[];
  1216. };
  1217. $forceUpdate: () => void;
  1218. $nextTick: typeof nextTick;
  1219. $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R]) => any : (...args: any) => any, options?: vue.WatchOptions): vue.WatchStopHandle;
  1220. } & Omit<{
  1221. absolute: boolean;
  1222. location: Anchor;
  1223. origin: "auto" | Anchor | "overlap";
  1224. transition: string | boolean | (vue.TransitionProps & {
  1225. component?: vue.Component;
  1226. });
  1227. zIndex: string | number;
  1228. style: vue.StyleValue;
  1229. eager: boolean;
  1230. disabled: boolean;
  1231. persistent: boolean;
  1232. modelValue: boolean;
  1233. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1234. updateLocation: (e?: Event) => void;
  1235. });
  1236. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  1237. activatorProps: Record<string, any>;
  1238. openOnHover: boolean;
  1239. closeOnContentClick: boolean;
  1240. closeOnBack: boolean;
  1241. contained: boolean;
  1242. noClickAnimation: boolean;
  1243. scrim: string | boolean;
  1244. _disableGlobalStack: boolean;
  1245. } & {
  1246. offset?: string | number | number[] | undefined;
  1247. height?: string | number | undefined;
  1248. width?: string | number | undefined;
  1249. maxHeight?: string | number | undefined;
  1250. maxWidth?: string | number | undefined;
  1251. minHeight?: string | number | undefined;
  1252. minWidth?: string | number | undefined;
  1253. opacity?: string | number | undefined;
  1254. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  1255. class?: any;
  1256. theme?: string | undefined;
  1257. contentClass?: any;
  1258. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  1259. closeDelay?: string | number | undefined;
  1260. openDelay?: string | number | undefined;
  1261. openOnClick?: boolean | undefined;
  1262. openOnFocus?: boolean | undefined;
  1263. contentProps?: any;
  1264. attach?: string | boolean | Element | undefined;
  1265. } & {
  1266. $children?: vue.VNodeChild | {
  1267. default?: ((arg: {
  1268. isActive: Ref<boolean>;
  1269. }) => vue.VNodeChild) | undefined;
  1270. activator?: ((arg: {
  1271. isActive: boolean;
  1272. props: Record<string, any>;
  1273. targetRef: TemplateRef;
  1274. }) => vue.VNodeChild) | undefined;
  1275. } | ((arg: {
  1276. isActive: Ref<boolean>;
  1277. }) => vue.VNodeChild);
  1278. 'v-slots'?: {
  1279. default?: false | ((arg: {
  1280. isActive: Ref<boolean>;
  1281. }) => vue.VNodeChild) | undefined;
  1282. activator?: false | ((arg: {
  1283. isActive: boolean;
  1284. props: Record<string, any>;
  1285. targetRef: TemplateRef;
  1286. }) => vue.VNodeChild) | undefined;
  1287. } | undefined;
  1288. } & {
  1289. "v-slot:default"?: false | ((arg: {
  1290. isActive: Ref<boolean>;
  1291. }) => vue.VNodeChild) | undefined;
  1292. "v-slot:activator"?: false | ((arg: {
  1293. isActive: boolean;
  1294. props: Record<string, any>;
  1295. targetRef: TemplateRef;
  1296. }) => vue.VNodeChild) | undefined;
  1297. } & {
  1298. onAfterEnter?: (() => any) | undefined;
  1299. onAfterLeave?: (() => any) | undefined;
  1300. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  1301. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  1302. }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
  1303. activatorEl: Ref<HTMLElement | undefined>;
  1304. scrimEl: Ref<HTMLElement | undefined>;
  1305. target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
  1306. animateClick: () => void;
  1307. contentEl: Ref<HTMLElement | undefined>;
  1308. globalTop: Readonly<Ref<boolean>>;
  1309. localTop: vue.ComputedRef<boolean>;
  1310. updateLocation: Ref<((e: Event) => void) | undefined>;
  1311. }> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
  1312. _allExposed: {
  1313. activatorEl: Ref<HTMLElement | undefined>;
  1314. scrimEl: Ref<HTMLElement | undefined>;
  1315. target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
  1316. animateClick: () => void;
  1317. contentEl: Ref<HTMLElement | undefined>;
  1318. globalTop: Readonly<Ref<boolean>>;
  1319. localTop: vue.ComputedRef<boolean>;
  1320. updateLocation: Ref<((e: Event) => void) | undefined>;
  1321. } | {};
  1322. }, {}, {}, {}, {
  1323. variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
  1324. absolute: boolean;
  1325. location: Anchor;
  1326. origin: "auto" | Anchor | "overlap";
  1327. transition: string | boolean | (vue.TransitionProps & {
  1328. component?: vue.Component;
  1329. });
  1330. zIndex: string | number;
  1331. style: vue.StyleValue;
  1332. eager: boolean;
  1333. disabled: boolean;
  1334. timeout: string | number;
  1335. vertical: boolean;
  1336. modelValue: boolean;
  1337. rounded: string | number | boolean;
  1338. tile: boolean;
  1339. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1340. updateLocation: (e?: Event) => void;
  1341. });
  1342. activatorProps: Record<string, any>;
  1343. openOnClick: boolean;
  1344. openOnHover: boolean;
  1345. openOnFocus: boolean;
  1346. closeOnContentClick: boolean;
  1347. closeOnBack: boolean;
  1348. contained: boolean;
  1349. multiLine: boolean;
  1350. }>;
  1351. __isFragment?: never;
  1352. __isTeleport?: never;
  1353. __isSuspense?: never;
  1354. } & vue.ComponentOptionsBase<{
  1355. variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
  1356. absolute: boolean;
  1357. location: Anchor;
  1358. origin: "auto" | Anchor | "overlap";
  1359. transition: string | boolean | (vue.TransitionProps & {
  1360. component?: vue.Component;
  1361. });
  1362. zIndex: string | number;
  1363. style: vue.StyleValue;
  1364. eager: boolean;
  1365. disabled: boolean;
  1366. timeout: string | number;
  1367. vertical: boolean;
  1368. modelValue: boolean;
  1369. tile: boolean;
  1370. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1371. updateLocation: (e?: Event) => void;
  1372. });
  1373. activatorProps: Record<string, any>;
  1374. openOnHover: boolean;
  1375. closeOnContentClick: boolean;
  1376. closeOnBack: boolean;
  1377. contained: boolean;
  1378. multiLine: boolean;
  1379. } & {
  1380. offset?: string | number | number[] | undefined;
  1381. height?: string | number | undefined;
  1382. width?: string | number | undefined;
  1383. color?: string | undefined;
  1384. maxHeight?: string | number | undefined;
  1385. maxWidth?: string | number | undefined;
  1386. minHeight?: string | number | undefined;
  1387. minWidth?: string | number | undefined;
  1388. opacity?: string | number | undefined;
  1389. position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
  1390. text?: string | undefined;
  1391. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  1392. class?: any;
  1393. theme?: string | undefined;
  1394. timer?: string | boolean | undefined;
  1395. rounded?: string | number | boolean | undefined;
  1396. contentClass?: any;
  1397. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  1398. closeDelay?: string | number | undefined;
  1399. openDelay?: string | number | undefined;
  1400. openOnClick?: boolean | undefined;
  1401. openOnFocus?: boolean | undefined;
  1402. contentProps?: any;
  1403. attach?: string | boolean | Element | undefined;
  1404. } & {
  1405. $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
  1406. activator?: ((arg: {
  1407. isActive: boolean;
  1408. props: Record<string, any>;
  1409. }) => vue.VNodeChild) | undefined;
  1410. default?: (() => vue.VNodeChild) | undefined;
  1411. actions?: ((arg: {
  1412. isActive: Ref<boolean>;
  1413. }) => vue.VNodeChild) | undefined;
  1414. text?: (() => vue.VNodeChild) | undefined;
  1415. };
  1416. 'v-slots'?: {
  1417. activator?: false | ((arg: {
  1418. isActive: boolean;
  1419. props: Record<string, any>;
  1420. }) => vue.VNodeChild) | undefined;
  1421. default?: false | (() => vue.VNodeChild) | undefined;
  1422. actions?: false | ((arg: {
  1423. isActive: Ref<boolean>;
  1424. }) => vue.VNodeChild) | undefined;
  1425. text?: false | (() => vue.VNodeChild) | undefined;
  1426. } | undefined;
  1427. } & {
  1428. "v-slot:activator"?: false | ((arg: {
  1429. isActive: boolean;
  1430. props: Record<string, any>;
  1431. }) => vue.VNodeChild) | undefined;
  1432. "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
  1433. "v-slot:actions"?: false | ((arg: {
  1434. isActive: Ref<boolean>;
  1435. }) => vue.VNodeChild) | undefined;
  1436. "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
  1437. } & {
  1438. "onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
  1439. }, Omit<Omit<{
  1440. $: vue.ComponentInternalInstance;
  1441. $data: {};
  1442. $props: Partial<{
  1443. absolute: boolean;
  1444. location: Anchor;
  1445. origin: "auto" | Anchor | "overlap";
  1446. transition: string | boolean | (vue.TransitionProps & {
  1447. component?: vue.Component;
  1448. });
  1449. zIndex: string | number;
  1450. style: vue.StyleValue;
  1451. eager: boolean;
  1452. disabled: boolean;
  1453. persistent: boolean;
  1454. modelValue: boolean;
  1455. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1456. updateLocation: (e?: Event) => void;
  1457. });
  1458. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  1459. activatorProps: Record<string, any>;
  1460. openOnClick: boolean;
  1461. openOnHover: boolean;
  1462. openOnFocus: boolean;
  1463. closeOnContentClick: boolean;
  1464. closeOnBack: boolean;
  1465. contained: boolean;
  1466. noClickAnimation: boolean;
  1467. scrim: string | boolean;
  1468. _disableGlobalStack: boolean;
  1469. }> & Omit<{
  1470. absolute: boolean;
  1471. location: Anchor;
  1472. origin: "auto" | Anchor | "overlap";
  1473. transition: string | boolean | (vue.TransitionProps & {
  1474. component?: vue.Component;
  1475. });
  1476. zIndex: string | number;
  1477. style: vue.StyleValue;
  1478. eager: boolean;
  1479. disabled: boolean;
  1480. persistent: boolean;
  1481. modelValue: boolean;
  1482. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1483. updateLocation: (e?: Event) => void;
  1484. });
  1485. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  1486. activatorProps: Record<string, any>;
  1487. openOnHover: boolean;
  1488. closeOnContentClick: boolean;
  1489. closeOnBack: boolean;
  1490. contained: boolean;
  1491. noClickAnimation: boolean;
  1492. scrim: string | boolean;
  1493. _disableGlobalStack: boolean;
  1494. offset?: string | number | number[] | undefined;
  1495. height?: string | number | undefined;
  1496. width?: string | number | undefined;
  1497. maxHeight?: string | number | undefined;
  1498. maxWidth?: string | number | undefined;
  1499. minHeight?: string | number | undefined;
  1500. minWidth?: string | number | undefined;
  1501. opacity?: string | number | undefined;
  1502. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  1503. class?: any;
  1504. theme?: string | undefined;
  1505. contentClass?: any;
  1506. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  1507. closeDelay?: string | number | undefined;
  1508. openDelay?: string | number | undefined;
  1509. openOnClick?: boolean | undefined;
  1510. openOnFocus?: boolean | undefined;
  1511. contentProps?: any;
  1512. attach?: string | boolean | Element | undefined;
  1513. $children?: vue.VNodeChild | {
  1514. default?: ((arg: {
  1515. isActive: Ref<boolean>;
  1516. }) => vue.VNodeChild) | undefined;
  1517. activator?: ((arg: {
  1518. isActive: boolean;
  1519. props: Record<string, any>;
  1520. targetRef: TemplateRef;
  1521. }) => vue.VNodeChild) | undefined;
  1522. } | ((arg: {
  1523. isActive: Ref<boolean>;
  1524. }) => vue.VNodeChild);
  1525. 'v-slots'?: {
  1526. default?: false | ((arg: {
  1527. isActive: Ref<boolean>;
  1528. }) => vue.VNodeChild) | undefined;
  1529. activator?: false | ((arg: {
  1530. isActive: boolean;
  1531. props: Record<string, any>;
  1532. targetRef: TemplateRef;
  1533. }) => vue.VNodeChild) | undefined;
  1534. } | undefined;
  1535. "v-slot:default"?: false | ((arg: {
  1536. isActive: Ref<boolean>;
  1537. }) => vue.VNodeChild) | undefined;
  1538. "v-slot:activator"?: false | ((arg: {
  1539. isActive: boolean;
  1540. props: Record<string, any>;
  1541. targetRef: TemplateRef;
  1542. }) => vue.VNodeChild) | undefined;
  1543. onAfterEnter?: (() => any) | undefined;
  1544. onAfterLeave?: (() => any) | undefined;
  1545. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  1546. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  1547. } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
  1548. absolute: boolean;
  1549. location: Anchor;
  1550. origin: "auto" | Anchor | "overlap";
  1551. transition: string | boolean | (vue.TransitionProps & {
  1552. component?: vue.Component;
  1553. });
  1554. zIndex: string | number;
  1555. style: vue.StyleValue;
  1556. eager: boolean;
  1557. disabled: boolean;
  1558. persistent: boolean;
  1559. modelValue: boolean;
  1560. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1561. updateLocation: (e?: Event) => void;
  1562. });
  1563. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  1564. activatorProps: Record<string, any>;
  1565. openOnHover: boolean;
  1566. closeOnContentClick: boolean;
  1567. closeOnBack: boolean;
  1568. contained: boolean;
  1569. noClickAnimation: boolean;
  1570. scrim: string | boolean;
  1571. _disableGlobalStack: boolean;
  1572. } & {
  1573. offset?: string | number | number[] | undefined;
  1574. height?: string | number | undefined;
  1575. width?: string | number | undefined;
  1576. maxHeight?: string | number | undefined;
  1577. maxWidth?: string | number | undefined;
  1578. minHeight?: string | number | undefined;
  1579. minWidth?: string | number | undefined;
  1580. opacity?: string | number | undefined;
  1581. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  1582. class?: any;
  1583. theme?: string | undefined;
  1584. contentClass?: any;
  1585. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  1586. closeDelay?: string | number | undefined;
  1587. openDelay?: string | number | undefined;
  1588. openOnClick?: boolean | undefined;
  1589. openOnFocus?: boolean | undefined;
  1590. contentProps?: any;
  1591. attach?: string | boolean | Element | undefined;
  1592. } & {
  1593. $children?: vue.VNodeChild | {
  1594. default?: ((arg: {
  1595. isActive: Ref<boolean>;
  1596. }) => vue.VNodeChild) | undefined;
  1597. activator?: ((arg: {
  1598. isActive: boolean;
  1599. props: Record<string, any>;
  1600. targetRef: TemplateRef;
  1601. }) => vue.VNodeChild) | undefined;
  1602. } | ((arg: {
  1603. isActive: Ref<boolean>;
  1604. }) => vue.VNodeChild);
  1605. 'v-slots'?: {
  1606. default?: false | ((arg: {
  1607. isActive: Ref<boolean>;
  1608. }) => vue.VNodeChild) | undefined;
  1609. activator?: false | ((arg: {
  1610. isActive: boolean;
  1611. props: Record<string, any>;
  1612. targetRef: TemplateRef;
  1613. }) => vue.VNodeChild) | undefined;
  1614. } | undefined;
  1615. } & {
  1616. "v-slot:default"?: false | ((arg: {
  1617. isActive: Ref<boolean>;
  1618. }) => vue.VNodeChild) | undefined;
  1619. "v-slot:activator"?: false | ((arg: {
  1620. isActive: boolean;
  1621. props: Record<string, any>;
  1622. targetRef: TemplateRef;
  1623. }) => vue.VNodeChild) | undefined;
  1624. } & {
  1625. onAfterEnter?: (() => any) | undefined;
  1626. onAfterLeave?: (() => any) | undefined;
  1627. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  1628. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  1629. }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
  1630. $attrs: {
  1631. [x: string]: unknown;
  1632. };
  1633. $refs: {
  1634. [x: string]: unknown;
  1635. };
  1636. $slots: Readonly<{
  1637. default?: ((arg: {
  1638. isActive: Ref<boolean>;
  1639. }) => vue.VNode[]) | undefined;
  1640. activator?: ((arg: {
  1641. isActive: boolean;
  1642. props: Record<string, any>;
  1643. targetRef: TemplateRef;
  1644. }) => vue.VNode[]) | undefined;
  1645. }>;
  1646. $root: vue.ComponentPublicInstance | null;
  1647. $parent: vue.ComponentPublicInstance | null;
  1648. $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
  1649. $el: any;
  1650. $options: vue.ComponentOptionsBase<{
  1651. absolute: boolean;
  1652. location: Anchor;
  1653. origin: "auto" | Anchor | "overlap";
  1654. transition: string | boolean | (vue.TransitionProps & {
  1655. component?: vue.Component;
  1656. });
  1657. zIndex: string | number;
  1658. style: vue.StyleValue;
  1659. eager: boolean;
  1660. disabled: boolean;
  1661. persistent: boolean;
  1662. modelValue: boolean;
  1663. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1664. updateLocation: (e?: Event) => void;
  1665. });
  1666. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  1667. activatorProps: Record<string, any>;
  1668. openOnHover: boolean;
  1669. closeOnContentClick: boolean;
  1670. closeOnBack: boolean;
  1671. contained: boolean;
  1672. noClickAnimation: boolean;
  1673. scrim: string | boolean;
  1674. _disableGlobalStack: boolean;
  1675. } & {
  1676. offset?: string | number | number[] | undefined;
  1677. height?: string | number | undefined;
  1678. width?: string | number | undefined;
  1679. maxHeight?: string | number | undefined;
  1680. maxWidth?: string | number | undefined;
  1681. minHeight?: string | number | undefined;
  1682. minWidth?: string | number | undefined;
  1683. opacity?: string | number | undefined;
  1684. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  1685. class?: any;
  1686. theme?: string | undefined;
  1687. contentClass?: any;
  1688. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  1689. closeDelay?: string | number | undefined;
  1690. openDelay?: string | number | undefined;
  1691. openOnClick?: boolean | undefined;
  1692. openOnFocus?: boolean | undefined;
  1693. contentProps?: any;
  1694. attach?: string | boolean | Element | undefined;
  1695. } & {
  1696. $children?: vue.VNodeChild | {
  1697. default?: ((arg: {
  1698. isActive: Ref<boolean>;
  1699. }) => vue.VNodeChild) | undefined;
  1700. activator?: ((arg: {
  1701. isActive: boolean;
  1702. props: Record<string, any>;
  1703. targetRef: TemplateRef;
  1704. }) => vue.VNodeChild) | undefined;
  1705. } | ((arg: {
  1706. isActive: Ref<boolean>;
  1707. }) => vue.VNodeChild);
  1708. 'v-slots'?: {
  1709. default?: false | ((arg: {
  1710. isActive: Ref<boolean>;
  1711. }) => vue.VNodeChild) | undefined;
  1712. activator?: false | ((arg: {
  1713. isActive: boolean;
  1714. props: Record<string, any>;
  1715. targetRef: TemplateRef;
  1716. }) => vue.VNodeChild) | undefined;
  1717. } | undefined;
  1718. } & {
  1719. "v-slot:default"?: false | ((arg: {
  1720. isActive: Ref<boolean>;
  1721. }) => vue.VNodeChild) | undefined;
  1722. "v-slot:activator"?: false | ((arg: {
  1723. isActive: boolean;
  1724. props: Record<string, any>;
  1725. targetRef: TemplateRef;
  1726. }) => vue.VNodeChild) | undefined;
  1727. } & {
  1728. onAfterEnter?: (() => any) | undefined;
  1729. onAfterLeave?: (() => any) | undefined;
  1730. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  1731. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  1732. }, {
  1733. activatorEl: Ref<HTMLElement | undefined>;
  1734. scrimEl: Ref<HTMLElement | undefined>;
  1735. target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
  1736. animateClick: () => void;
  1737. contentEl: Ref<HTMLElement | undefined>;
  1738. globalTop: Readonly<Ref<boolean>>;
  1739. localTop: vue.ComputedRef<boolean>;
  1740. updateLocation: Ref<((e: Event) => void) | undefined>;
  1741. }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
  1742. 'click:outside': (e: MouseEvent) => true;
  1743. 'update:modelValue': (value: boolean) => true;
  1744. afterEnter: () => true;
  1745. afterLeave: () => true;
  1746. }, string, {
  1747. absolute: boolean;
  1748. location: Anchor;
  1749. origin: "auto" | Anchor | "overlap";
  1750. transition: string | boolean | (vue.TransitionProps & {
  1751. component?: vue.Component;
  1752. });
  1753. zIndex: string | number;
  1754. style: vue.StyleValue;
  1755. eager: boolean;
  1756. disabled: boolean;
  1757. persistent: boolean;
  1758. modelValue: boolean;
  1759. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1760. updateLocation: (e?: Event) => void;
  1761. });
  1762. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  1763. activatorProps: Record<string, any>;
  1764. openOnClick: boolean;
  1765. openOnHover: boolean;
  1766. openOnFocus: boolean;
  1767. closeOnContentClick: boolean;
  1768. closeOnBack: boolean;
  1769. contained: boolean;
  1770. noClickAnimation: boolean;
  1771. scrim: string | boolean;
  1772. _disableGlobalStack: boolean;
  1773. }, {}, string, vue.SlotsType<Partial<{
  1774. default: (arg: {
  1775. isActive: Ref<boolean>;
  1776. }) => vue.VNode[];
  1777. activator: (arg: {
  1778. isActive: boolean;
  1779. props: Record<string, any>;
  1780. targetRef: TemplateRef;
  1781. }) => vue.VNode[];
  1782. }>>> & {
  1783. beforeCreate?: (() => void) | (() => void)[];
  1784. created?: (() => void) | (() => void)[];
  1785. beforeMount?: (() => void) | (() => void)[];
  1786. mounted?: (() => void) | (() => void)[];
  1787. beforeUpdate?: (() => void) | (() => void)[];
  1788. updated?: (() => void) | (() => void)[];
  1789. activated?: (() => void) | (() => void)[];
  1790. deactivated?: (() => void) | (() => void)[];
  1791. beforeDestroy?: (() => void) | (() => void)[];
  1792. beforeUnmount?: (() => void) | (() => void)[];
  1793. destroyed?: (() => void) | (() => void)[];
  1794. unmounted?: (() => void) | (() => void)[];
  1795. renderTracked?: ((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[];
  1796. renderTriggered?: ((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[];
  1797. errorCaptured?: ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void)[];
  1798. };
  1799. $forceUpdate: () => void;
  1800. $nextTick: typeof nextTick;
  1801. $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R]) => any : (...args: any) => any, options?: vue.WatchOptions): vue.WatchStopHandle;
  1802. } & Omit<{
  1803. absolute: boolean;
  1804. location: Anchor;
  1805. origin: "auto" | Anchor | "overlap";
  1806. transition: string | boolean | (vue.TransitionProps & {
  1807. component?: vue.Component;
  1808. });
  1809. zIndex: string | number;
  1810. style: vue.StyleValue;
  1811. eager: boolean;
  1812. disabled: boolean;
  1813. persistent: boolean;
  1814. modelValue: boolean;
  1815. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1816. updateLocation: (e?: Event) => void;
  1817. });
  1818. scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition";
  1819. activatorProps: Record<string, any>;
  1820. openOnHover: boolean;
  1821. closeOnContentClick: boolean;
  1822. closeOnBack: boolean;
  1823. contained: boolean;
  1824. noClickAnimation: boolean;
  1825. scrim: string | boolean;
  1826. _disableGlobalStack: boolean;
  1827. } & {
  1828. offset?: string | number | number[] | undefined;
  1829. height?: string | number | undefined;
  1830. width?: string | number | undefined;
  1831. maxHeight?: string | number | undefined;
  1832. maxWidth?: string | number | undefined;
  1833. minHeight?: string | number | undefined;
  1834. minWidth?: string | number | undefined;
  1835. opacity?: string | number | undefined;
  1836. target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
  1837. class?: any;
  1838. theme?: string | undefined;
  1839. contentClass?: any;
  1840. activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
  1841. closeDelay?: string | number | undefined;
  1842. openDelay?: string | number | undefined;
  1843. openOnClick?: boolean | undefined;
  1844. openOnFocus?: boolean | undefined;
  1845. contentProps?: any;
  1846. attach?: string | boolean | Element | undefined;
  1847. } & {
  1848. $children?: vue.VNodeChild | {
  1849. default?: ((arg: {
  1850. isActive: Ref<boolean>;
  1851. }) => vue.VNodeChild) | undefined;
  1852. activator?: ((arg: {
  1853. isActive: boolean;
  1854. props: Record<string, any>;
  1855. targetRef: TemplateRef;
  1856. }) => vue.VNodeChild) | undefined;
  1857. } | ((arg: {
  1858. isActive: Ref<boolean>;
  1859. }) => vue.VNodeChild);
  1860. 'v-slots'?: {
  1861. default?: false | ((arg: {
  1862. isActive: Ref<boolean>;
  1863. }) => vue.VNodeChild) | undefined;
  1864. activator?: false | ((arg: {
  1865. isActive: boolean;
  1866. props: Record<string, any>;
  1867. targetRef: TemplateRef;
  1868. }) => vue.VNodeChild) | undefined;
  1869. } | undefined;
  1870. } & {
  1871. "v-slot:default"?: false | ((arg: {
  1872. isActive: Ref<boolean>;
  1873. }) => vue.VNodeChild) | undefined;
  1874. "v-slot:activator"?: false | ((arg: {
  1875. isActive: boolean;
  1876. props: Record<string, any>;
  1877. targetRef: TemplateRef;
  1878. }) => vue.VNodeChild) | undefined;
  1879. } & {
  1880. onAfterEnter?: (() => any) | undefined;
  1881. onAfterLeave?: (() => any) | undefined;
  1882. "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
  1883. "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
  1884. }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
  1885. activatorEl: Ref<HTMLElement | undefined>;
  1886. scrimEl: Ref<HTMLElement | undefined>;
  1887. target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
  1888. animateClick: () => void;
  1889. contentEl: Ref<HTMLElement | undefined>;
  1890. globalTop: Readonly<Ref<boolean>>;
  1891. localTop: vue.ComputedRef<boolean>;
  1892. updateLocation: Ref<((e: Event) => void) | undefined>;
  1893. }> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
  1894. _allExposed: {
  1895. activatorEl: Ref<HTMLElement | undefined>;
  1896. scrimEl: Ref<HTMLElement | undefined>;
  1897. target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
  1898. animateClick: () => void;
  1899. contentEl: Ref<HTMLElement | undefined>;
  1900. globalTop: Readonly<Ref<boolean>>;
  1901. localTop: vue.ComputedRef<boolean>;
  1902. updateLocation: Ref<((e: Event) => void) | undefined>;
  1903. } | {};
  1904. }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
  1905. 'update:modelValue': (v: boolean) => true;
  1906. }, string, {
  1907. variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
  1908. absolute: boolean;
  1909. location: Anchor;
  1910. origin: "auto" | Anchor | "overlap";
  1911. transition: string | boolean | (vue.TransitionProps & {
  1912. component?: vue.Component;
  1913. });
  1914. zIndex: string | number;
  1915. style: vue.StyleValue;
  1916. eager: boolean;
  1917. disabled: boolean;
  1918. timeout: string | number;
  1919. vertical: boolean;
  1920. modelValue: boolean;
  1921. rounded: string | number | boolean;
  1922. tile: boolean;
  1923. locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
  1924. updateLocation: (e?: Event) => void;
  1925. });
  1926. activatorProps: Record<string, any>;
  1927. openOnClick: boolean;
  1928. openOnHover: boolean;
  1929. openOnFocus: boolean;
  1930. closeOnContentClick: boolean;
  1931. closeOnBack: boolean;
  1932. contained: boolean;
  1933. multiLine: boolean;
  1934. }, {}, string, vue.SlotsType<Partial<{
  1935. activator: (arg: {
  1936. isActive: boolean;
  1937. props: Record<string, any>;
  1938. }) => vue.VNode[];
  1939. default: () => vue.VNode[];
  1940. actions: (arg: {
  1941. isActive: Ref<boolean>;
  1942. }) => vue.VNode[];
  1943. text: () => vue.VNode[];
  1944. }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
  1945. offset: vue.PropType<StrategyProps["offset"]>;
  1946. absolute: BooleanConstructor;
  1947. location: {
  1948. type: vue.PropType<StrategyProps["location"]>;
  1949. default: string;
  1950. };
  1951. origin: {
  1952. type: vue.PropType<StrategyProps["origin"]>;
  1953. default: string;
  1954. };
  1955. height: (StringConstructor | NumberConstructor)[];
  1956. width: (StringConstructor | NumberConstructor)[];
  1957. maxHeight: (StringConstructor | NumberConstructor)[];
  1958. maxWidth: (StringConstructor | NumberConstructor)[];
  1959. minHeight: (StringConstructor | NumberConstructor)[];
  1960. minWidth: (StringConstructor | NumberConstructor)[];
  1961. opacity: (StringConstructor | NumberConstructor)[];
  1962. transition: Omit<{
  1963. type: vue.PropType<string | boolean | (vue.TransitionProps & {
  1964. component?: vue.Component;
  1965. })>;
  1966. default: string;
  1967. validator: (val: unknown) => boolean;
  1968. }, "type" | "default"> & {
  1969. type: vue.PropType<string | boolean | (vue.TransitionProps & {
  1970. component?: vue.Component;
  1971. })>;
  1972. default: NonNullable<string | boolean | (vue.TransitionProps & {
  1973. component?: vue.Component;
  1974. })>;
  1975. };
  1976. zIndex: {
  1977. type: (StringConstructor | NumberConstructor)[];
  1978. default: number;
  1979. };
  1980. style: {
  1981. type: vue.PropType<vue.StyleValue>;
  1982. default: null;
  1983. };
  1984. target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
  1985. eager: BooleanConstructor;
  1986. disabled: BooleanConstructor;
  1987. class: vue.PropType<ClassValue>;
  1988. theme: StringConstructor;
  1989. modelValue: BooleanConstructor;
  1990. contentClass: null;
  1991. activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
  1992. locationStrategy: {
  1993. type: vue.PropType<StrategyProps["locationStrategy"]>;
  1994. default: string;
  1995. validator: (val: any) => boolean;
  1996. };
  1997. closeDelay: (StringConstructor | NumberConstructor)[];
  1998. openDelay: (StringConstructor | NumberConstructor)[];
  1999. activatorProps: {
  2000. type: vue.PropType<Record<string, any>>;
  2001. default: () => {};
  2002. };
  2003. openOnClick: {
  2004. type: BooleanConstructor;
  2005. default: undefined;
  2006. };
  2007. openOnHover: BooleanConstructor;
  2008. openOnFocus: {
  2009. type: BooleanConstructor;
  2010. default: undefined;
  2011. };
  2012. closeOnContentClick: BooleanConstructor;
  2013. closeOnBack: {
  2014. type: BooleanConstructor;
  2015. default: boolean;
  2016. };
  2017. contained: BooleanConstructor;
  2018. contentProps: null;
  2019. attach: vue.PropType<boolean | string | Element>;
  2020. color: StringConstructor;
  2021. variant: {
  2022. type: vue.PropType<Variant>;
  2023. default: string;
  2024. validator: (v: any) => boolean;
  2025. };
  2026. rounded: {
  2027. type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
  2028. default: undefined;
  2029. };
  2030. tile: BooleanConstructor;
  2031. position: {
  2032. type: vue.PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
  2033. validator: (v: any) => boolean;
  2034. };
  2035. multiLine: BooleanConstructor;
  2036. text: StringConstructor;
  2037. timer: (StringConstructor | BooleanConstructor)[];
  2038. timeout: {
  2039. type: (StringConstructor | NumberConstructor)[];
  2040. default: number;
  2041. };
  2042. vertical: BooleanConstructor;
  2043. }, vue.ExtractPropTypes<{
  2044. offset: vue.PropType<StrategyProps["offset"]>;
  2045. absolute: BooleanConstructor;
  2046. location: {
  2047. type: vue.PropType<StrategyProps["location"]>;
  2048. default: string;
  2049. };
  2050. origin: {
  2051. type: vue.PropType<StrategyProps["origin"]>;
  2052. default: string;
  2053. };
  2054. height: (StringConstructor | NumberConstructor)[];
  2055. width: (StringConstructor | NumberConstructor)[];
  2056. maxHeight: (StringConstructor | NumberConstructor)[];
  2057. maxWidth: (StringConstructor | NumberConstructor)[];
  2058. minHeight: (StringConstructor | NumberConstructor)[];
  2059. minWidth: (StringConstructor | NumberConstructor)[];
  2060. opacity: (StringConstructor | NumberConstructor)[];
  2061. transition: Omit<{
  2062. type: vue.PropType<string | boolean | (vue.TransitionProps & {
  2063. component?: vue.Component;
  2064. })>;
  2065. default: string;
  2066. validator: (val: unknown) => boolean;
  2067. }, "type" | "default"> & {
  2068. type: vue.PropType<string | boolean | (vue.TransitionProps & {
  2069. component?: vue.Component;
  2070. })>;
  2071. default: NonNullable<string | boolean | (vue.TransitionProps & {
  2072. component?: vue.Component;
  2073. })>;
  2074. };
  2075. zIndex: {
  2076. type: (StringConstructor | NumberConstructor)[];
  2077. default: number;
  2078. };
  2079. style: {
  2080. type: vue.PropType<vue.StyleValue>;
  2081. default: null;
  2082. };
  2083. target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
  2084. eager: BooleanConstructor;
  2085. disabled: BooleanConstructor;
  2086. class: vue.PropType<ClassValue>;
  2087. theme: StringConstructor;
  2088. modelValue: BooleanConstructor;
  2089. contentClass: null;
  2090. activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
  2091. locationStrategy: {
  2092. type: vue.PropType<StrategyProps["locationStrategy"]>;
  2093. default: string;
  2094. validator: (val: any) => boolean;
  2095. };
  2096. closeDelay: (StringConstructor | NumberConstructor)[];
  2097. openDelay: (StringConstructor | NumberConstructor)[];
  2098. activatorProps: {
  2099. type: vue.PropType<Record<string, any>>;
  2100. default: () => {};
  2101. };
  2102. openOnClick: {
  2103. type: BooleanConstructor;
  2104. default: undefined;
  2105. };
  2106. openOnHover: BooleanConstructor;
  2107. openOnFocus: {
  2108. type: BooleanConstructor;
  2109. default: undefined;
  2110. };
  2111. closeOnContentClick: BooleanConstructor;
  2112. closeOnBack: {
  2113. type: BooleanConstructor;
  2114. default: boolean;
  2115. };
  2116. contained: BooleanConstructor;
  2117. contentProps: null;
  2118. attach: vue.PropType<boolean | string | Element>;
  2119. color: StringConstructor;
  2120. variant: {
  2121. type: vue.PropType<Variant>;
  2122. default: string;
  2123. validator: (v: any) => boolean;
  2124. };
  2125. rounded: {
  2126. type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
  2127. default: undefined;
  2128. };
  2129. tile: BooleanConstructor;
  2130. position: {
  2131. type: vue.PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
  2132. validator: (v: any) => boolean;
  2133. };
  2134. multiLine: BooleanConstructor;
  2135. text: StringConstructor;
  2136. timer: (StringConstructor | BooleanConstructor)[];
  2137. timeout: {
  2138. type: (StringConstructor | NumberConstructor)[];
  2139. default: number;
  2140. };
  2141. vertical: BooleanConstructor;
  2142. }>>;
  2143. type VSnackbar = InstanceType<typeof VSnackbar>;
  2144. export { VSnackbar };