@firstnoodle-ui/bui 0.0.46 → 0.0.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { Placement } from '@floating-ui/dom';
1
+ import { Placement } from '../../types/floating-ui';
2
2
  import { ButtonVariant, TIcon } from '../types';
3
3
  type __VLS_Props = {
4
4
  variant?: ButtonVariant;
@@ -0,0 +1,454 @@
1
+ import { Placement } from '../../types/floating-ui';
2
+ import { CalendarViewProps } from '../calendar-view/types';
3
+ type PopCalendarProps = {
4
+ mode?: "immediate" | "confirmation";
5
+ disabled?: boolean;
6
+ placement?: Placement;
7
+ } & CalendarViewProps;
8
+ declare function __VLS_template(): {
9
+ attrs: Partial<{}>;
10
+ slots: {
11
+ trigger?(_: {
12
+ visible: boolean;
13
+ }): any;
14
+ };
15
+ refs: {
16
+ popperRef: ({
17
+ $: import('vue').ComponentInternalInstance;
18
+ $data: {};
19
+ $props: {
20
+ readonly closeDelay?: number | undefined;
21
+ readonly disabled?: boolean | undefined;
22
+ readonly flipOptions?: Partial<import('@floating-ui/dom').FlipOptions> | undefined;
23
+ readonly limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions> | undefined;
24
+ readonly offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions> | undefined;
25
+ readonly shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions> | undefined;
26
+ readonly openDelay?: number | undefined;
27
+ readonly placement?: Placement | undefined;
28
+ readonly popperWidthClass?: string | undefined;
29
+ readonly rootClass?: string | string[] | undefined;
30
+ readonly sameWidthAsElement?: HTMLElement | undefined;
31
+ readonly sameWidthAsTrigger?: boolean | undefined;
32
+ readonly show?: boolean | undefined;
33
+ readonly trigger?: import('..').TPopperTrigger | undefined;
34
+ readonly triggerClass?: string | string[] | undefined;
35
+ readonly useOverlay?: boolean | undefined;
36
+ readonly onClose?: ((...args: any[]) => any) | undefined;
37
+ readonly onOpen?: ((...args: any[]) => any) | undefined;
38
+ readonly onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
39
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
40
+ $attrs: {
41
+ [x: string]: unknown;
42
+ };
43
+ $refs: {
44
+ [x: string]: unknown;
45
+ } & {
46
+ containerRef: HTMLDivElement;
47
+ triggerRef: HTMLDivElement;
48
+ popperRef: HTMLDivElement;
49
+ };
50
+ $slots: Readonly<{
51
+ [name: string]: import('vue').Slot<any> | undefined;
52
+ }>;
53
+ $root: import('vue').ComponentPublicInstance | null;
54
+ $parent: import('vue').ComponentPublicInstance | null;
55
+ $host: Element | null;
56
+ $emit: ((event: "close", ...args: any[]) => void) & ((event: "open", ...args: any[]) => void) & ((event: "updateClickOutside", ...args: any[]) => void);
57
+ $el: HTMLDivElement;
58
+ $options: import('vue').ComponentOptionsBase<Readonly<{
59
+ closeDelay?: number;
60
+ disabled?: boolean;
61
+ flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
62
+ limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
63
+ offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions>;
64
+ shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
65
+ openDelay?: number;
66
+ placement?: Placement;
67
+ popperWidthClass?: string;
68
+ rootClass?: string | string[];
69
+ sameWidthAsElement?: HTMLElement;
70
+ sameWidthAsTrigger?: boolean;
71
+ show?: boolean;
72
+ trigger?: import('..').TPopperTrigger;
73
+ triggerClass?: string | string[];
74
+ useOverlay?: boolean;
75
+ }> & Readonly<{
76
+ onClose?: ((...args: any[]) => any) | undefined;
77
+ onOpen?: ((...args: any[]) => any) | undefined;
78
+ onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
79
+ }>, {
80
+ close: () => void;
81
+ containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
82
+ open: () => Promise<void>;
83
+ updateClickOutsideTargets: (targets: HTMLElement[]) => void;
84
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
85
+ close: (...args: any[]) => void;
86
+ open: (...args: any[]) => void;
87
+ updateClickOutside: (...args: any[]) => void;
88
+ }, string, {
89
+ disabled: boolean;
90
+ placement: Placement;
91
+ trigger: import('..').TPopperTrigger;
92
+ closeDelay: number;
93
+ flipOptions: Partial<{
94
+ mainAxis?: boolean | undefined;
95
+ crossAxis?: boolean | "alignment" | undefined;
96
+ fallbackPlacements?: Array<Placement> | undefined;
97
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
98
+ fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
99
+ flipAlignment?: boolean | undefined;
100
+ rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
101
+ elementContext?: import('@floating-ui/core').ElementContext | undefined;
102
+ altBoundary?: boolean | undefined;
103
+ padding?: import('@floating-ui/core').Padding | undefined;
104
+ boundary?: import('@floating-ui/dom').Boundary | undefined;
105
+ }>;
106
+ offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
107
+ shiftOptions: Partial<{
108
+ mainAxis?: boolean | undefined;
109
+ crossAxis?: boolean | undefined;
110
+ rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
111
+ elementContext?: import('@floating-ui/core').ElementContext | undefined;
112
+ altBoundary?: boolean | undefined;
113
+ padding?: import('@floating-ui/core').Padding | undefined;
114
+ limiter?: {
115
+ fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
116
+ options?: any;
117
+ } | undefined;
118
+ boundary?: import('@floating-ui/dom').Boundary | undefined;
119
+ }>;
120
+ openDelay: number;
121
+ rootClass: string | string[];
122
+ sameWidthAsTrigger: boolean;
123
+ show: boolean;
124
+ triggerClass: string | string[];
125
+ useOverlay: boolean;
126
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
127
+ beforeCreate?: (() => void) | (() => void)[];
128
+ created?: (() => void) | (() => void)[];
129
+ beforeMount?: (() => void) | (() => void)[];
130
+ mounted?: (() => void) | (() => void)[];
131
+ beforeUpdate?: (() => void) | (() => void)[];
132
+ updated?: (() => void) | (() => void)[];
133
+ activated?: (() => void) | (() => void)[];
134
+ deactivated?: (() => void) | (() => void)[];
135
+ beforeDestroy?: (() => void) | (() => void)[];
136
+ beforeUnmount?: (() => void) | (() => void)[];
137
+ destroyed?: (() => void) | (() => void)[];
138
+ unmounted?: (() => void) | (() => void)[];
139
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
140
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
141
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
142
+ };
143
+ $forceUpdate: () => void;
144
+ $nextTick: typeof import('vue').nextTick;
145
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
146
+ } & Readonly<{
147
+ disabled: boolean;
148
+ placement: Placement;
149
+ trigger: import('..').TPopperTrigger;
150
+ closeDelay: number;
151
+ flipOptions: Partial<{
152
+ mainAxis?: boolean | undefined;
153
+ crossAxis?: boolean | "alignment" | undefined;
154
+ fallbackPlacements?: Array<Placement> | undefined;
155
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
156
+ fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
157
+ flipAlignment?: boolean | undefined;
158
+ rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
159
+ elementContext?: import('@floating-ui/core').ElementContext | undefined;
160
+ altBoundary?: boolean | undefined;
161
+ padding?: import('@floating-ui/core').Padding | undefined;
162
+ boundary?: import('@floating-ui/dom').Boundary | undefined;
163
+ }>;
164
+ offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
165
+ shiftOptions: Partial<{
166
+ mainAxis?: boolean | undefined;
167
+ crossAxis?: boolean | undefined;
168
+ rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
169
+ elementContext?: import('@floating-ui/core').ElementContext | undefined;
170
+ altBoundary?: boolean | undefined;
171
+ padding?: import('@floating-ui/core').Padding | undefined;
172
+ limiter?: {
173
+ fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
174
+ options?: any;
175
+ } | undefined;
176
+ boundary?: import('@floating-ui/dom').Boundary | undefined;
177
+ }>;
178
+ openDelay: number;
179
+ rootClass: string | string[];
180
+ sameWidthAsTrigger: boolean;
181
+ show: boolean;
182
+ triggerClass: string | string[];
183
+ useOverlay: boolean;
184
+ }> & Omit<Readonly<{
185
+ closeDelay?: number;
186
+ disabled?: boolean;
187
+ flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
188
+ limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
189
+ offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions>;
190
+ shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
191
+ openDelay?: number;
192
+ placement?: Placement;
193
+ popperWidthClass?: string;
194
+ rootClass?: string | string[];
195
+ sameWidthAsElement?: HTMLElement;
196
+ sameWidthAsTrigger?: boolean;
197
+ show?: boolean;
198
+ trigger?: import('..').TPopperTrigger;
199
+ triggerClass?: string | string[];
200
+ useOverlay?: boolean;
201
+ }> & Readonly<{
202
+ onClose?: ((...args: any[]) => any) | undefined;
203
+ onOpen?: ((...args: any[]) => any) | undefined;
204
+ onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
205
+ }>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "placement" | "trigger" | "closeDelay" | "flipOptions" | "offsetOptions" | "shiftOptions" | "openDelay" | "rootClass" | "sameWidthAsTrigger" | "show" | "triggerClass" | "useOverlay")> & import('vue').ShallowUnwrapRef<{
206
+ close: () => void;
207
+ containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
208
+ open: () => Promise<void>;
209
+ updateClickOutsideTargets: (targets: HTMLElement[]) => void;
210
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
211
+ $slots: {
212
+ default?(_: {
213
+ visible: boolean;
214
+ }): any;
215
+ content?(_: {
216
+ close: () => void;
217
+ isOpen: true;
218
+ }): any;
219
+ content?(_: {
220
+ close: () => void;
221
+ isOpen: true;
222
+ }): any;
223
+ };
224
+ }) | null;
225
+ };
226
+ rootEl: HTMLDivElement;
227
+ };
228
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
229
+ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
230
+ close: () => any;
231
+ open: (targets: HTMLElement[]) => any;
232
+ change: (value: Date | null) => any;
233
+ }, string, import('vue').PublicProps, Readonly<PopCalendarProps> & Readonly<{
234
+ onClose?: (() => any) | undefined;
235
+ onOpen?: ((targets: HTMLElement[]) => any) | undefined;
236
+ onChange?: ((value: Date | null) => any) | undefined;
237
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
238
+ popperRef: ({
239
+ $: import('vue').ComponentInternalInstance;
240
+ $data: {};
241
+ $props: {
242
+ readonly closeDelay?: number | undefined;
243
+ readonly disabled?: boolean | undefined;
244
+ readonly flipOptions?: Partial<import('@floating-ui/dom').FlipOptions> | undefined;
245
+ readonly limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions> | undefined;
246
+ readonly offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions> | undefined;
247
+ readonly shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions> | undefined;
248
+ readonly openDelay?: number | undefined;
249
+ readonly placement?: Placement | undefined;
250
+ readonly popperWidthClass?: string | undefined;
251
+ readonly rootClass?: string | string[] | undefined;
252
+ readonly sameWidthAsElement?: HTMLElement | undefined;
253
+ readonly sameWidthAsTrigger?: boolean | undefined;
254
+ readonly show?: boolean | undefined;
255
+ readonly trigger?: import('..').TPopperTrigger | undefined;
256
+ readonly triggerClass?: string | string[] | undefined;
257
+ readonly useOverlay?: boolean | undefined;
258
+ readonly onClose?: ((...args: any[]) => any) | undefined;
259
+ readonly onOpen?: ((...args: any[]) => any) | undefined;
260
+ readonly onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
261
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
262
+ $attrs: {
263
+ [x: string]: unknown;
264
+ };
265
+ $refs: {
266
+ [x: string]: unknown;
267
+ } & {
268
+ containerRef: HTMLDivElement;
269
+ triggerRef: HTMLDivElement;
270
+ popperRef: HTMLDivElement;
271
+ };
272
+ $slots: Readonly<{
273
+ [name: string]: import('vue').Slot<any> | undefined;
274
+ }>;
275
+ $root: import('vue').ComponentPublicInstance | null;
276
+ $parent: import('vue').ComponentPublicInstance | null;
277
+ $host: Element | null;
278
+ $emit: ((event: "close", ...args: any[]) => void) & ((event: "open", ...args: any[]) => void) & ((event: "updateClickOutside", ...args: any[]) => void);
279
+ $el: HTMLDivElement;
280
+ $options: import('vue').ComponentOptionsBase<Readonly<{
281
+ closeDelay?: number;
282
+ disabled?: boolean;
283
+ flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
284
+ limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
285
+ offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions>;
286
+ shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
287
+ openDelay?: number;
288
+ placement?: Placement;
289
+ popperWidthClass?: string;
290
+ rootClass?: string | string[];
291
+ sameWidthAsElement?: HTMLElement;
292
+ sameWidthAsTrigger?: boolean;
293
+ show?: boolean;
294
+ trigger?: import('..').TPopperTrigger;
295
+ triggerClass?: string | string[];
296
+ useOverlay?: boolean;
297
+ }> & Readonly<{
298
+ onClose?: ((...args: any[]) => any) | undefined;
299
+ onOpen?: ((...args: any[]) => any) | undefined;
300
+ onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
301
+ }>, {
302
+ close: () => void;
303
+ containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
304
+ open: () => Promise<void>;
305
+ updateClickOutsideTargets: (targets: HTMLElement[]) => void;
306
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
307
+ close: (...args: any[]) => void;
308
+ open: (...args: any[]) => void;
309
+ updateClickOutside: (...args: any[]) => void;
310
+ }, string, {
311
+ disabled: boolean;
312
+ placement: Placement;
313
+ trigger: import('..').TPopperTrigger;
314
+ closeDelay: number;
315
+ flipOptions: Partial<{
316
+ mainAxis?: boolean | undefined;
317
+ crossAxis?: boolean | "alignment" | undefined;
318
+ fallbackPlacements?: Array<Placement> | undefined;
319
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
320
+ fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
321
+ flipAlignment?: boolean | undefined;
322
+ rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
323
+ elementContext?: import('@floating-ui/core').ElementContext | undefined;
324
+ altBoundary?: boolean | undefined;
325
+ padding?: import('@floating-ui/core').Padding | undefined;
326
+ boundary?: import('@floating-ui/dom').Boundary | undefined;
327
+ }>;
328
+ offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
329
+ shiftOptions: Partial<{
330
+ mainAxis?: boolean | undefined;
331
+ crossAxis?: boolean | undefined;
332
+ rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
333
+ elementContext?: import('@floating-ui/core').ElementContext | undefined;
334
+ altBoundary?: boolean | undefined;
335
+ padding?: import('@floating-ui/core').Padding | undefined;
336
+ limiter?: {
337
+ fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
338
+ options?: any;
339
+ } | undefined;
340
+ boundary?: import('@floating-ui/dom').Boundary | undefined;
341
+ }>;
342
+ openDelay: number;
343
+ rootClass: string | string[];
344
+ sameWidthAsTrigger: boolean;
345
+ show: boolean;
346
+ triggerClass: string | string[];
347
+ useOverlay: boolean;
348
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
349
+ beforeCreate?: (() => void) | (() => void)[];
350
+ created?: (() => void) | (() => void)[];
351
+ beforeMount?: (() => void) | (() => void)[];
352
+ mounted?: (() => void) | (() => void)[];
353
+ beforeUpdate?: (() => void) | (() => void)[];
354
+ updated?: (() => void) | (() => void)[];
355
+ activated?: (() => void) | (() => void)[];
356
+ deactivated?: (() => void) | (() => void)[];
357
+ beforeDestroy?: (() => void) | (() => void)[];
358
+ beforeUnmount?: (() => void) | (() => void)[];
359
+ destroyed?: (() => void) | (() => void)[];
360
+ unmounted?: (() => void) | (() => void)[];
361
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
362
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
363
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
364
+ };
365
+ $forceUpdate: () => void;
366
+ $nextTick: typeof import('vue').nextTick;
367
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
368
+ } & Readonly<{
369
+ disabled: boolean;
370
+ placement: Placement;
371
+ trigger: import('..').TPopperTrigger;
372
+ closeDelay: number;
373
+ flipOptions: Partial<{
374
+ mainAxis?: boolean | undefined;
375
+ crossAxis?: boolean | "alignment" | undefined;
376
+ fallbackPlacements?: Array<Placement> | undefined;
377
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
378
+ fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
379
+ flipAlignment?: boolean | undefined;
380
+ rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
381
+ elementContext?: import('@floating-ui/core').ElementContext | undefined;
382
+ altBoundary?: boolean | undefined;
383
+ padding?: import('@floating-ui/core').Padding | undefined;
384
+ boundary?: import('@floating-ui/dom').Boundary | undefined;
385
+ }>;
386
+ offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
387
+ shiftOptions: Partial<{
388
+ mainAxis?: boolean | undefined;
389
+ crossAxis?: boolean | undefined;
390
+ rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
391
+ elementContext?: import('@floating-ui/core').ElementContext | undefined;
392
+ altBoundary?: boolean | undefined;
393
+ padding?: import('@floating-ui/core').Padding | undefined;
394
+ limiter?: {
395
+ fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
396
+ options?: any;
397
+ } | undefined;
398
+ boundary?: import('@floating-ui/dom').Boundary | undefined;
399
+ }>;
400
+ openDelay: number;
401
+ rootClass: string | string[];
402
+ sameWidthAsTrigger: boolean;
403
+ show: boolean;
404
+ triggerClass: string | string[];
405
+ useOverlay: boolean;
406
+ }> & Omit<Readonly<{
407
+ closeDelay?: number;
408
+ disabled?: boolean;
409
+ flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
410
+ limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
411
+ offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions>;
412
+ shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
413
+ openDelay?: number;
414
+ placement?: Placement;
415
+ popperWidthClass?: string;
416
+ rootClass?: string | string[];
417
+ sameWidthAsElement?: HTMLElement;
418
+ sameWidthAsTrigger?: boolean;
419
+ show?: boolean;
420
+ trigger?: import('..').TPopperTrigger;
421
+ triggerClass?: string | string[];
422
+ useOverlay?: boolean;
423
+ }> & Readonly<{
424
+ onClose?: ((...args: any[]) => any) | undefined;
425
+ onOpen?: ((...args: any[]) => any) | undefined;
426
+ onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
427
+ }>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "placement" | "trigger" | "closeDelay" | "flipOptions" | "offsetOptions" | "shiftOptions" | "openDelay" | "rootClass" | "sameWidthAsTrigger" | "show" | "triggerClass" | "useOverlay")> & import('vue').ShallowUnwrapRef<{
428
+ close: () => void;
429
+ containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
430
+ open: () => Promise<void>;
431
+ updateClickOutsideTargets: (targets: HTMLElement[]) => void;
432
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
433
+ $slots: {
434
+ default?(_: {
435
+ visible: boolean;
436
+ }): any;
437
+ content?(_: {
438
+ close: () => void;
439
+ isOpen: true;
440
+ }): any;
441
+ content?(_: {
442
+ close: () => void;
443
+ isOpen: true;
444
+ }): any;
445
+ };
446
+ }) | null;
447
+ }, HTMLDivElement>;
448
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
449
+ export default _default;
450
+ type __VLS_WithTemplateSlots<T, S> = T & {
451
+ new (): {
452
+ $slots: S;
453
+ };
454
+ };