@firstnoodle-ui/bui 0.0.75 → 0.0.76
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.
- package/dist/components/button/Button.vue.d.ts +6 -6
- package/dist/components/inline-form-wrapper/InlineFormWrapper.vue.d.ts +1 -11
- package/dist/components/pop-calendar/PopCalendar.vue.d.ts +12 -12
- package/dist/components/pop-confirm/PopConfirm.vue.d.ts +12 -12
- package/dist/components/popper/Popper.vue.d.ts +3 -3
- package/dist/components/tag-input/TagInput.vue.d.ts +2 -0
- package/dist/components/text-editor/components/InserLink.vue.d.ts +13 -13
- package/dist/components/tooltip/Tooltip.vue.d.ts +12 -12
- package/dist/index.mjs +772 -796
- package/package.json +2 -2
|
@@ -159,7 +159,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
159
159
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
160
160
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
161
161
|
altBoundary?: boolean | undefined;
|
|
162
|
-
padding?: import('@floating-ui/
|
|
162
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
163
163
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
164
164
|
}>;
|
|
165
165
|
shiftOptions: Partial<{
|
|
@@ -168,9 +168,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
168
168
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
169
169
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
170
170
|
altBoundary?: boolean | undefined;
|
|
171
|
-
padding?: import('@floating-ui/
|
|
171
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
172
172
|
limiter?: {
|
|
173
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
173
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
174
174
|
options?: any;
|
|
175
175
|
} | undefined;
|
|
176
176
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -218,7 +218,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
218
218
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
219
219
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
220
220
|
altBoundary?: boolean | undefined;
|
|
221
|
-
padding?: import('@floating-ui/
|
|
221
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
222
222
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
223
223
|
}>;
|
|
224
224
|
shiftOptions: Partial<{
|
|
@@ -227,9 +227,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
227
227
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
228
228
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
229
229
|
altBoundary?: boolean | undefined;
|
|
230
|
-
padding?: import('@floating-ui/
|
|
230
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
231
231
|
limiter?: {
|
|
232
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
232
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
233
233
|
options?: any;
|
|
234
234
|
} | undefined;
|
|
235
235
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
import { ConfirmCancelProps } from '..';
|
|
2
|
-
type __VLS_Props = ConfirmCancelProps & {
|
|
3
|
-
loading?: boolean;
|
|
4
|
-
};
|
|
5
1
|
declare function __VLS_template(): {
|
|
6
2
|
attrs: Partial<{}>;
|
|
7
3
|
slots: {
|
|
@@ -13,13 +9,7 @@ declare function __VLS_template(): {
|
|
|
13
9
|
rootEl: any;
|
|
14
10
|
};
|
|
15
11
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
17
|
-
confirm: () => any;
|
|
18
|
-
cancel: () => any;
|
|
19
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
20
|
-
onConfirm?: (() => any) | undefined;
|
|
21
|
-
onCancel?: (() => any) | undefined;
|
|
22
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
23
13
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
14
|
export default _default;
|
|
25
15
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -104,7 +104,7 @@ declare function __VLS_template(): {
|
|
|
104
104
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
105
105
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
106
106
|
altBoundary?: boolean | undefined;
|
|
107
|
-
padding?: import('@floating-ui/
|
|
107
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
108
108
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
109
109
|
}>;
|
|
110
110
|
shiftOptions: Partial<{
|
|
@@ -113,9 +113,9 @@ declare function __VLS_template(): {
|
|
|
113
113
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
114
114
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
115
115
|
altBoundary?: boolean | undefined;
|
|
116
|
-
padding?: import('@floating-ui/
|
|
116
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
117
117
|
limiter?: {
|
|
118
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
118
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
119
119
|
options?: any;
|
|
120
120
|
} | undefined;
|
|
121
121
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -163,7 +163,7 @@ declare function __VLS_template(): {
|
|
|
163
163
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
164
164
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
165
165
|
altBoundary?: boolean | undefined;
|
|
166
|
-
padding?: import('@floating-ui/
|
|
166
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
167
167
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
168
168
|
}>;
|
|
169
169
|
shiftOptions: Partial<{
|
|
@@ -172,9 +172,9 @@ declare function __VLS_template(): {
|
|
|
172
172
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
173
173
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
174
174
|
altBoundary?: boolean | undefined;
|
|
175
|
-
padding?: import('@floating-ui/
|
|
175
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
176
176
|
limiter?: {
|
|
177
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
177
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
178
178
|
options?: any;
|
|
179
179
|
} | undefined;
|
|
180
180
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -327,7 +327,7 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
327
327
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
328
328
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
329
329
|
altBoundary?: boolean | undefined;
|
|
330
|
-
padding?: import('@floating-ui/
|
|
330
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
331
331
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
332
332
|
}>;
|
|
333
333
|
shiftOptions: Partial<{
|
|
@@ -336,9 +336,9 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
336
336
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
337
337
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
338
338
|
altBoundary?: boolean | undefined;
|
|
339
|
-
padding?: import('@floating-ui/
|
|
339
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
340
340
|
limiter?: {
|
|
341
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
341
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
342
342
|
options?: any;
|
|
343
343
|
} | undefined;
|
|
344
344
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -386,7 +386,7 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
386
386
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
387
387
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
388
388
|
altBoundary?: boolean | undefined;
|
|
389
|
-
padding?: import('@floating-ui/
|
|
389
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
390
390
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
391
391
|
}>;
|
|
392
392
|
shiftOptions: Partial<{
|
|
@@ -395,9 +395,9 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
395
395
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
396
396
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
397
397
|
altBoundary?: boolean | undefined;
|
|
398
|
-
padding?: import('@floating-ui/
|
|
398
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
399
399
|
limiter?: {
|
|
400
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
400
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
401
401
|
options?: any;
|
|
402
402
|
} | undefined;
|
|
403
403
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -107,7 +107,7 @@ declare function __VLS_template(): {
|
|
|
107
107
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
108
108
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
109
109
|
altBoundary?: boolean | undefined;
|
|
110
|
-
padding?: import('@floating-ui/
|
|
110
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
111
111
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
112
112
|
}>;
|
|
113
113
|
shiftOptions: Partial<{
|
|
@@ -116,9 +116,9 @@ declare function __VLS_template(): {
|
|
|
116
116
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
117
117
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
118
118
|
altBoundary?: boolean | undefined;
|
|
119
|
-
padding?: import('@floating-ui/
|
|
119
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
120
120
|
limiter?: {
|
|
121
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
121
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
122
122
|
options?: any;
|
|
123
123
|
} | undefined;
|
|
124
124
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -166,7 +166,7 @@ declare function __VLS_template(): {
|
|
|
166
166
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
167
167
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
168
168
|
altBoundary?: boolean | undefined;
|
|
169
|
-
padding?: import('@floating-ui/
|
|
169
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
170
170
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
171
171
|
}>;
|
|
172
172
|
shiftOptions: Partial<{
|
|
@@ -175,9 +175,9 @@ declare function __VLS_template(): {
|
|
|
175
175
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
176
176
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
177
177
|
altBoundary?: boolean | undefined;
|
|
178
|
-
padding?: import('@floating-ui/
|
|
178
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
179
179
|
limiter?: {
|
|
180
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
180
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
181
181
|
options?: any;
|
|
182
182
|
} | undefined;
|
|
183
183
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -334,7 +334,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
334
334
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
335
335
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
336
336
|
altBoundary?: boolean | undefined;
|
|
337
|
-
padding?: import('@floating-ui/
|
|
337
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
338
338
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
339
339
|
}>;
|
|
340
340
|
shiftOptions: Partial<{
|
|
@@ -343,9 +343,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
343
343
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
344
344
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
345
345
|
altBoundary?: boolean | undefined;
|
|
346
|
-
padding?: import('@floating-ui/
|
|
346
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
347
347
|
limiter?: {
|
|
348
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
348
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
349
349
|
options?: any;
|
|
350
350
|
} | undefined;
|
|
351
351
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -393,7 +393,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
393
393
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
394
394
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
395
395
|
altBoundary?: boolean | undefined;
|
|
396
|
-
padding?: import('@floating-ui/
|
|
396
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
397
397
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
398
398
|
}>;
|
|
399
399
|
shiftOptions: Partial<{
|
|
@@ -402,9 +402,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
402
402
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
403
403
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
404
404
|
altBoundary?: boolean | undefined;
|
|
405
|
-
padding?: import('@floating-ui/
|
|
405
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
406
406
|
limiter?: {
|
|
407
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
407
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
408
408
|
options?: any;
|
|
409
409
|
} | undefined;
|
|
410
410
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -68,7 +68,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
68
68
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
69
69
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
70
70
|
altBoundary?: boolean | undefined;
|
|
71
|
-
padding?: import('@floating-ui/
|
|
71
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
72
72
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
73
73
|
}>;
|
|
74
74
|
shiftOptions: Partial<{
|
|
@@ -77,9 +77,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
77
77
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
78
78
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
79
79
|
altBoundary?: boolean | undefined;
|
|
80
|
-
padding?: import('@floating-ui/
|
|
80
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
81
81
|
limiter?: {
|
|
82
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
82
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
83
83
|
options?: any;
|
|
84
84
|
} | undefined;
|
|
85
85
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -11,9 +11,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11
11
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
12
12
|
"update:entries": (entries: TagInputEntry[]) => any;
|
|
13
13
|
"raw-input-parsed": (entry: TagInputEntry | null) => any;
|
|
14
|
+
"enter-key-up": () => any;
|
|
14
15
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
16
|
"onUpdate:entries"?: ((entries: TagInputEntry[]) => any) | undefined;
|
|
16
17
|
"onRaw-input-parsed"?: ((entry: TagInputEntry | null) => any) | undefined;
|
|
18
|
+
"onEnter-key-up"?: (() => any) | undefined;
|
|
17
19
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
18
20
|
inputElement: HTMLInputElement;
|
|
19
21
|
}, any>;
|
|
@@ -22,7 +22,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
22
22
|
readonly offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions> | undefined;
|
|
23
23
|
readonly shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions> | undefined;
|
|
24
24
|
readonly openDelay?: number | undefined;
|
|
25
|
-
readonly placement?: import('@floating-ui/
|
|
25
|
+
readonly placement?: import('@floating-ui/core').Placement | undefined;
|
|
26
26
|
readonly popperWidthClass?: string | undefined;
|
|
27
27
|
readonly rootClass?: string | string[] | undefined;
|
|
28
28
|
readonly sameWidthAsElement?: HTMLElement | undefined;
|
|
@@ -62,7 +62,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
62
62
|
offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
63
63
|
shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
|
|
64
64
|
openDelay?: number;
|
|
65
|
-
placement?: import('@floating-ui/
|
|
65
|
+
placement?: import('@floating-ui/core').Placement;
|
|
66
66
|
popperWidthClass?: string;
|
|
67
67
|
rootClass?: string | string[];
|
|
68
68
|
sameWidthAsElement?: HTMLElement;
|
|
@@ -87,21 +87,21 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
87
87
|
}, string, {
|
|
88
88
|
disabled: boolean;
|
|
89
89
|
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
90
|
-
placement: import('@floating-ui/
|
|
90
|
+
placement: import('@floating-ui/core').Placement;
|
|
91
91
|
trigger: import('../..').TPopperTrigger;
|
|
92
92
|
closeDelay: number;
|
|
93
93
|
closeOnClickOutside: boolean;
|
|
94
94
|
flipOptions: Partial<{
|
|
95
95
|
mainAxis?: boolean | undefined;
|
|
96
96
|
crossAxis?: boolean | "alignment" | undefined;
|
|
97
|
-
fallbackPlacements?: Array<import('@floating-ui/
|
|
97
|
+
fallbackPlacements?: Array<import('@floating-ui/core').Placement> | undefined;
|
|
98
98
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
99
99
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
100
100
|
flipAlignment?: boolean | undefined;
|
|
101
101
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
102
102
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
103
103
|
altBoundary?: boolean | undefined;
|
|
104
|
-
padding?: import('@floating-ui/
|
|
104
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
105
105
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
106
106
|
}>;
|
|
107
107
|
shiftOptions: Partial<{
|
|
@@ -110,9 +110,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
110
110
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
111
111
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
112
112
|
altBoundary?: boolean | undefined;
|
|
113
|
-
padding?: import('@floating-ui/
|
|
113
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
114
114
|
limiter?: {
|
|
115
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
115
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
116
116
|
options?: any;
|
|
117
117
|
} | undefined;
|
|
118
118
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -146,21 +146,21 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
146
146
|
} & Readonly<{
|
|
147
147
|
disabled: boolean;
|
|
148
148
|
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
149
|
-
placement: import('@floating-ui/
|
|
149
|
+
placement: import('@floating-ui/core').Placement;
|
|
150
150
|
trigger: import('../..').TPopperTrigger;
|
|
151
151
|
closeDelay: number;
|
|
152
152
|
closeOnClickOutside: boolean;
|
|
153
153
|
flipOptions: Partial<{
|
|
154
154
|
mainAxis?: boolean | undefined;
|
|
155
155
|
crossAxis?: boolean | "alignment" | undefined;
|
|
156
|
-
fallbackPlacements?: Array<import('@floating-ui/
|
|
156
|
+
fallbackPlacements?: Array<import('@floating-ui/core').Placement> | undefined;
|
|
157
157
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
158
158
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
159
159
|
flipAlignment?: boolean | undefined;
|
|
160
160
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
161
161
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
162
162
|
altBoundary?: boolean | undefined;
|
|
163
|
-
padding?: import('@floating-ui/
|
|
163
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
164
164
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
165
165
|
}>;
|
|
166
166
|
shiftOptions: Partial<{
|
|
@@ -169,9 +169,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
169
169
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
170
170
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
171
171
|
altBoundary?: boolean | undefined;
|
|
172
|
-
padding?: import('@floating-ui/
|
|
172
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
173
173
|
limiter?: {
|
|
174
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
174
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
175
175
|
options?: any;
|
|
176
176
|
} | undefined;
|
|
177
177
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -191,7 +191,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
191
191
|
offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
192
192
|
shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
|
|
193
193
|
openDelay?: number;
|
|
194
|
-
placement?: import('@floating-ui/
|
|
194
|
+
placement?: import('@floating-ui/core').Placement;
|
|
195
195
|
popperWidthClass?: string;
|
|
196
196
|
rootClass?: string | string[];
|
|
197
197
|
sameWidthAsElement?: HTMLElement;
|
|
@@ -108,7 +108,7 @@ declare function __VLS_template(): {
|
|
|
108
108
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
109
109
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
110
110
|
altBoundary?: boolean | undefined;
|
|
111
|
-
padding?: import('@floating-ui/
|
|
111
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
112
112
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
113
113
|
}>;
|
|
114
114
|
shiftOptions: Partial<{
|
|
@@ -117,9 +117,9 @@ declare function __VLS_template(): {
|
|
|
117
117
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
118
118
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
119
119
|
altBoundary?: boolean | undefined;
|
|
120
|
-
padding?: import('@floating-ui/
|
|
120
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
121
121
|
limiter?: {
|
|
122
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
122
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
123
123
|
options?: any;
|
|
124
124
|
} | undefined;
|
|
125
125
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -167,7 +167,7 @@ declare function __VLS_template(): {
|
|
|
167
167
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
168
168
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
169
169
|
altBoundary?: boolean | undefined;
|
|
170
|
-
padding?: import('@floating-ui/
|
|
170
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
171
171
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
172
172
|
}>;
|
|
173
173
|
shiftOptions: Partial<{
|
|
@@ -176,9 +176,9 @@ declare function __VLS_template(): {
|
|
|
176
176
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
177
177
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
178
178
|
altBoundary?: boolean | undefined;
|
|
179
|
-
padding?: import('@floating-ui/
|
|
179
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
180
180
|
limiter?: {
|
|
181
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
181
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
182
182
|
options?: any;
|
|
183
183
|
} | undefined;
|
|
184
184
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -332,7 +332,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
332
332
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
333
333
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
334
334
|
altBoundary?: boolean | undefined;
|
|
335
|
-
padding?: import('@floating-ui/
|
|
335
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
336
336
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
337
337
|
}>;
|
|
338
338
|
shiftOptions: Partial<{
|
|
@@ -341,9 +341,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
341
341
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
342
342
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
343
343
|
altBoundary?: boolean | undefined;
|
|
344
|
-
padding?: import('@floating-ui/
|
|
344
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
345
345
|
limiter?: {
|
|
346
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
346
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
347
347
|
options?: any;
|
|
348
348
|
} | undefined;
|
|
349
349
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -391,7 +391,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
391
391
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
392
392
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
393
393
|
altBoundary?: boolean | undefined;
|
|
394
|
-
padding?: import('@floating-ui/
|
|
394
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
395
395
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
396
396
|
}>;
|
|
397
397
|
shiftOptions: Partial<{
|
|
@@ -400,9 +400,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
400
400
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
401
401
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
402
402
|
altBoundary?: boolean | undefined;
|
|
403
|
-
padding?: import('@floating-ui/
|
|
403
|
+
padding?: import('@floating-ui/core').Padding | undefined;
|
|
404
404
|
limiter?: {
|
|
405
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
405
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
|
|
406
406
|
options?: any;
|
|
407
407
|
} | undefined;
|
|
408
408
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|