@firstnoodle-ui/bui 0.0.67 → 0.0.69
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 +7 -14
- package/dist/components/pop-calendar/PopCalendar.vue.d.ts +6 -6
- package/dist/components/pop-confirm/PopConfirm.vue.d.ts +6 -6
- package/dist/components/popper/Popper.vue.d.ts +1 -1
- package/dist/components/select-list/types.d.ts +2 -0
- package/dist/components/side-over/SideOver.vue.d.ts +9 -3
- package/dist/components/text-editor/components/InserLink.vue.d.ts +3 -3
- package/dist/components/tooltip/Tooltip.vue.d.ts +14 -17
- package/dist/components/types.d.ts +1 -1
- package/dist/index.mjs +1361 -1332
- package/package.json +2 -2
|
@@ -55,8 +55,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
55
55
|
$props: {
|
|
56
56
|
readonly bgColorClass?: string | undefined;
|
|
57
57
|
readonly delay?: number | undefined;
|
|
58
|
-
readonly
|
|
59
|
-
readonly offsetCross?: number | undefined;
|
|
58
|
+
readonly offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions> | undefined;
|
|
60
59
|
readonly placement?: Placement | undefined;
|
|
61
60
|
readonly text?: string | null | undefined;
|
|
62
61
|
readonly textColorClass?: string | undefined;
|
|
@@ -145,6 +144,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
145
144
|
updateClickOutside: (...args: any[]) => void;
|
|
146
145
|
}, string, {
|
|
147
146
|
disabled: boolean;
|
|
147
|
+
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
148
148
|
placement: Placement;
|
|
149
149
|
trigger: import('../types').TPopperTrigger;
|
|
150
150
|
closeDelay: number;
|
|
@@ -162,7 +162,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
162
162
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
163
163
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
164
164
|
}>;
|
|
165
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
166
165
|
shiftOptions: Partial<{
|
|
167
166
|
mainAxis?: boolean | undefined;
|
|
168
167
|
crossAxis?: boolean | undefined;
|
|
@@ -204,6 +203,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
204
203
|
$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;
|
|
205
204
|
} & Readonly<{
|
|
206
205
|
disabled: boolean;
|
|
206
|
+
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
207
207
|
placement: Placement;
|
|
208
208
|
trigger: import('../types').TPopperTrigger;
|
|
209
209
|
closeDelay: number;
|
|
@@ -221,7 +221,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
221
221
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
222
222
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
223
223
|
}>;
|
|
224
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
225
224
|
shiftOptions: Partial<{
|
|
226
225
|
mainAxis?: boolean | undefined;
|
|
227
226
|
crossAxis?: boolean | undefined;
|
|
@@ -263,7 +262,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
263
262
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
264
263
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
265
264
|
onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
|
|
266
|
-
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "
|
|
265
|
+
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "offsetOptions" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "shiftOptions" | "openDelay" | "rootClass" | "sameWidthAsTrigger" | "show" | "teleportTarget" | "triggerClass")> & import('vue').ShallowUnwrapRef<{
|
|
267
266
|
close: () => void;
|
|
268
267
|
containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
269
268
|
open: () => Promise<void>;
|
|
@@ -291,8 +290,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
291
290
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
292
291
|
bgColorClass?: string;
|
|
293
292
|
delay?: number;
|
|
294
|
-
|
|
295
|
-
offsetCross?: number;
|
|
293
|
+
offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
296
294
|
placement?: Placement;
|
|
297
295
|
text?: string | null;
|
|
298
296
|
textColorClass?: string;
|
|
@@ -303,8 +301,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
303
301
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
304
302
|
bgColorClass: string;
|
|
305
303
|
delay: number;
|
|
306
|
-
offsetMain: number;
|
|
307
|
-
offsetCross: number;
|
|
308
304
|
placement: Placement;
|
|
309
305
|
textColorClass: string;
|
|
310
306
|
trigger: import('../types').TPopperTrigger;
|
|
@@ -332,8 +328,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
332
328
|
} & Readonly<{
|
|
333
329
|
bgColorClass: string;
|
|
334
330
|
delay: number;
|
|
335
|
-
offsetMain: number;
|
|
336
|
-
offsetCross: number;
|
|
337
331
|
placement: Placement;
|
|
338
332
|
textColorClass: string;
|
|
339
333
|
trigger: import('../types').TPopperTrigger;
|
|
@@ -341,14 +335,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
341
335
|
}> & Omit<Readonly<{
|
|
342
336
|
bgColorClass?: string;
|
|
343
337
|
delay?: number;
|
|
344
|
-
|
|
345
|
-
offsetCross?: number;
|
|
338
|
+
offsetOptions?: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
346
339
|
placement?: Placement;
|
|
347
340
|
text?: string | null;
|
|
348
341
|
textColorClass?: string;
|
|
349
342
|
trigger?: import('../types').TPopperTrigger;
|
|
350
343
|
triggerFullWidth?: boolean;
|
|
351
|
-
}> & Readonly<{}>, ("bgColorClass" | "delay" | "
|
|
344
|
+
}> & Readonly<{}>, ("bgColorClass" | "delay" | "placement" | "textColorClass" | "trigger" | "triggerFullWidth") | "hide"> & import('vue').ShallowUnwrapRef<{
|
|
352
345
|
hide: () => void;
|
|
353
346
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
354
347
|
$slots: {
|
|
@@ -89,6 +89,7 @@ declare function __VLS_template(): {
|
|
|
89
89
|
updateClickOutside: (...args: any[]) => void;
|
|
90
90
|
}, string, {
|
|
91
91
|
disabled: boolean;
|
|
92
|
+
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
92
93
|
placement: Placement;
|
|
93
94
|
trigger: import('..').TPopperTrigger;
|
|
94
95
|
closeDelay: number;
|
|
@@ -106,7 +107,6 @@ declare function __VLS_template(): {
|
|
|
106
107
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
107
108
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
108
109
|
}>;
|
|
109
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
110
110
|
shiftOptions: Partial<{
|
|
111
111
|
mainAxis?: boolean | undefined;
|
|
112
112
|
crossAxis?: boolean | undefined;
|
|
@@ -148,6 +148,7 @@ declare function __VLS_template(): {
|
|
|
148
148
|
$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;
|
|
149
149
|
} & Readonly<{
|
|
150
150
|
disabled: boolean;
|
|
151
|
+
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
151
152
|
placement: Placement;
|
|
152
153
|
trigger: import('..').TPopperTrigger;
|
|
153
154
|
closeDelay: number;
|
|
@@ -165,7 +166,6 @@ declare function __VLS_template(): {
|
|
|
165
166
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
166
167
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
167
168
|
}>;
|
|
168
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
169
169
|
shiftOptions: Partial<{
|
|
170
170
|
mainAxis?: boolean | undefined;
|
|
171
171
|
crossAxis?: boolean | undefined;
|
|
@@ -207,7 +207,7 @@ declare function __VLS_template(): {
|
|
|
207
207
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
208
208
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
209
209
|
onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
|
|
210
|
-
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "
|
|
210
|
+
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "offsetOptions" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "shiftOptions" | "openDelay" | "rootClass" | "sameWidthAsTrigger" | "show" | "teleportTarget" | "triggerClass")> & import('vue').ShallowUnwrapRef<{
|
|
211
211
|
close: () => void;
|
|
212
212
|
containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
213
213
|
open: () => Promise<void>;
|
|
@@ -312,6 +312,7 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
312
312
|
updateClickOutside: (...args: any[]) => void;
|
|
313
313
|
}, string, {
|
|
314
314
|
disabled: boolean;
|
|
315
|
+
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
315
316
|
placement: Placement;
|
|
316
317
|
trigger: import('..').TPopperTrigger;
|
|
317
318
|
closeDelay: number;
|
|
@@ -329,7 +330,6 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
329
330
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
330
331
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
331
332
|
}>;
|
|
332
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
333
333
|
shiftOptions: Partial<{
|
|
334
334
|
mainAxis?: boolean | undefined;
|
|
335
335
|
crossAxis?: boolean | undefined;
|
|
@@ -371,6 +371,7 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
371
371
|
$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;
|
|
372
372
|
} & Readonly<{
|
|
373
373
|
disabled: boolean;
|
|
374
|
+
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
374
375
|
placement: Placement;
|
|
375
376
|
trigger: import('..').TPopperTrigger;
|
|
376
377
|
closeDelay: number;
|
|
@@ -388,7 +389,6 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
388
389
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
389
390
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
390
391
|
}>;
|
|
391
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
392
392
|
shiftOptions: Partial<{
|
|
393
393
|
mainAxis?: boolean | undefined;
|
|
394
394
|
crossAxis?: boolean | undefined;
|
|
@@ -430,7 +430,7 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
430
430
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
431
431
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
432
432
|
onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
|
|
433
|
-
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "
|
|
433
|
+
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "offsetOptions" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "shiftOptions" | "openDelay" | "rootClass" | "sameWidthAsTrigger" | "show" | "teleportTarget" | "triggerClass")> & import('vue').ShallowUnwrapRef<{
|
|
434
434
|
close: () => void;
|
|
435
435
|
containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
436
436
|
open: () => Promise<void>;
|
|
@@ -92,6 +92,7 @@ declare function __VLS_template(): {
|
|
|
92
92
|
updateClickOutside: (...args: any[]) => void;
|
|
93
93
|
}, string, {
|
|
94
94
|
disabled: boolean;
|
|
95
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
95
96
|
placement: Placement;
|
|
96
97
|
trigger: import('../types').TPopperTrigger;
|
|
97
98
|
closeDelay: number;
|
|
@@ -109,7 +110,6 @@ declare function __VLS_template(): {
|
|
|
109
110
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
110
111
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
111
112
|
}>;
|
|
112
|
-
offsetOptions: Partial<OffsetOptions>;
|
|
113
113
|
shiftOptions: Partial<{
|
|
114
114
|
mainAxis?: boolean | undefined;
|
|
115
115
|
crossAxis?: boolean | undefined;
|
|
@@ -151,6 +151,7 @@ declare function __VLS_template(): {
|
|
|
151
151
|
$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;
|
|
152
152
|
} & Readonly<{
|
|
153
153
|
disabled: boolean;
|
|
154
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
154
155
|
placement: Placement;
|
|
155
156
|
trigger: import('../types').TPopperTrigger;
|
|
156
157
|
closeDelay: number;
|
|
@@ -168,7 +169,6 @@ declare function __VLS_template(): {
|
|
|
168
169
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
169
170
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
170
171
|
}>;
|
|
171
|
-
offsetOptions: Partial<OffsetOptions>;
|
|
172
172
|
shiftOptions: Partial<{
|
|
173
173
|
mainAxis?: boolean | undefined;
|
|
174
174
|
crossAxis?: boolean | undefined;
|
|
@@ -210,7 +210,7 @@ declare function __VLS_template(): {
|
|
|
210
210
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
211
211
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
212
212
|
onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
|
|
213
|
-
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "
|
|
213
|
+
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "offsetOptions" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "shiftOptions" | "openDelay" | "rootClass" | "sameWidthAsTrigger" | "show" | "teleportTarget" | "triggerClass")> & import('vue').ShallowUnwrapRef<{
|
|
214
214
|
close: () => void;
|
|
215
215
|
containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
216
216
|
open: () => Promise<void>;
|
|
@@ -319,6 +319,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
319
319
|
updateClickOutside: (...args: any[]) => void;
|
|
320
320
|
}, string, {
|
|
321
321
|
disabled: boolean;
|
|
322
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
322
323
|
placement: Placement;
|
|
323
324
|
trigger: import('../types').TPopperTrigger;
|
|
324
325
|
closeDelay: number;
|
|
@@ -336,7 +337,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
336
337
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
337
338
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
338
339
|
}>;
|
|
339
|
-
offsetOptions: Partial<OffsetOptions>;
|
|
340
340
|
shiftOptions: Partial<{
|
|
341
341
|
mainAxis?: boolean | undefined;
|
|
342
342
|
crossAxis?: boolean | undefined;
|
|
@@ -378,6 +378,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
378
378
|
$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;
|
|
379
379
|
} & Readonly<{
|
|
380
380
|
disabled: boolean;
|
|
381
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
381
382
|
placement: Placement;
|
|
382
383
|
trigger: import('../types').TPopperTrigger;
|
|
383
384
|
closeDelay: number;
|
|
@@ -395,7 +396,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
395
396
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
396
397
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
397
398
|
}>;
|
|
398
|
-
offsetOptions: Partial<OffsetOptions>;
|
|
399
399
|
shiftOptions: Partial<{
|
|
400
400
|
mainAxis?: boolean | undefined;
|
|
401
401
|
crossAxis?: boolean | undefined;
|
|
@@ -437,7 +437,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
437
437
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
438
438
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
439
439
|
onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
|
|
440
|
-
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "
|
|
440
|
+
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "offsetOptions" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "shiftOptions" | "openDelay" | "rootClass" | "sameWidthAsTrigger" | "show" | "teleportTarget" | "triggerClass")> & import('vue').ShallowUnwrapRef<{
|
|
441
441
|
close: () => void;
|
|
442
442
|
containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
443
443
|
open: () => Promise<void>;
|
|
@@ -53,6 +53,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
53
53
|
onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
|
|
54
54
|
}>, {
|
|
55
55
|
disabled: boolean;
|
|
56
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
56
57
|
placement: Placement;
|
|
57
58
|
trigger: TPopperTrigger;
|
|
58
59
|
closeDelay: number;
|
|
@@ -70,7 +71,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
70
71
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
71
72
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
72
73
|
}>;
|
|
73
|
-
offsetOptions: Partial<OffsetOptions>;
|
|
74
74
|
shiftOptions: Partial<{
|
|
75
75
|
mainAxis?: boolean | undefined;
|
|
76
76
|
crossAxis?: boolean | undefined;
|
|
@@ -30,6 +30,7 @@ export type SelectListProps = {
|
|
|
30
30
|
errorMessage?: string;
|
|
31
31
|
filters?: SelectListFilter[];
|
|
32
32
|
loading?: boolean;
|
|
33
|
+
nothingSelectedLabel?: string;
|
|
33
34
|
options: SelectListOption[] | SelectListOptionGroup[];
|
|
34
35
|
placeholder?: string;
|
|
35
36
|
rootClass?: string;
|
|
@@ -37,6 +38,7 @@ export type SelectListProps = {
|
|
|
37
38
|
searchDebounce?: number;
|
|
38
39
|
searchFunction?: (query: string) => SelectListOption[] | null;
|
|
39
40
|
selectAll?: boolean;
|
|
41
|
+
selectAllLabel?: string;
|
|
40
42
|
selected: SelectListOption | null | SelectListOption[];
|
|
41
43
|
showSelection?: boolean;
|
|
42
44
|
small?: boolean;
|
|
@@ -12,9 +12,15 @@ declare function __VLS_template(): {
|
|
|
12
12
|
attrs: Partial<{}>;
|
|
13
13
|
slots: {
|
|
14
14
|
default?(_: {}): any;
|
|
15
|
-
header?(_: {
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
header?(_: {
|
|
16
|
+
close: () => boolean;
|
|
17
|
+
}): any;
|
|
18
|
+
main?(_: {
|
|
19
|
+
close: () => boolean;
|
|
20
|
+
}): any;
|
|
21
|
+
footer?(_: {
|
|
22
|
+
close: () => boolean;
|
|
23
|
+
}): any;
|
|
18
24
|
};
|
|
19
25
|
refs: {
|
|
20
26
|
panelRef: ({
|
|
@@ -86,6 +86,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
86
86
|
updateClickOutside: (...args: any[]) => void;
|
|
87
87
|
}, string, {
|
|
88
88
|
disabled: boolean;
|
|
89
|
+
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
89
90
|
placement: import('@floating-ui/utils').Placement;
|
|
90
91
|
trigger: import('../..').TPopperTrigger;
|
|
91
92
|
closeDelay: number;
|
|
@@ -103,7 +104,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
103
104
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
104
105
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
105
106
|
}>;
|
|
106
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
107
107
|
shiftOptions: Partial<{
|
|
108
108
|
mainAxis?: boolean | undefined;
|
|
109
109
|
crossAxis?: boolean | undefined;
|
|
@@ -145,6 +145,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
145
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
146
|
} & Readonly<{
|
|
147
147
|
disabled: boolean;
|
|
148
|
+
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
148
149
|
placement: import('@floating-ui/utils').Placement;
|
|
149
150
|
trigger: import('../..').TPopperTrigger;
|
|
150
151
|
closeDelay: number;
|
|
@@ -162,7 +163,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
162
163
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
163
164
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
164
165
|
}>;
|
|
165
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
166
166
|
shiftOptions: Partial<{
|
|
167
167
|
mainAxis?: boolean | undefined;
|
|
168
168
|
crossAxis?: boolean | undefined;
|
|
@@ -204,7 +204,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
204
204
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
205
205
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
206
206
|
onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
|
|
207
|
-
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "
|
|
207
|
+
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "offsetOptions" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "shiftOptions" | "openDelay" | "rootClass" | "sameWidthAsTrigger" | "show" | "teleportTarget" | "triggerClass")> & import('vue').ShallowUnwrapRef<{
|
|
208
208
|
close: () => void;
|
|
209
209
|
containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
210
210
|
open: () => Promise<void>;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { Placement } from '../../types/floating-ui';
|
|
1
|
+
import { OffsetOptions, Placement } from '../../types/floating-ui';
|
|
2
2
|
import { TPopperTrigger } from '../types';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
bgColorClass?: string;
|
|
5
5
|
delay?: number;
|
|
6
|
-
|
|
7
|
-
offsetCross?: number;
|
|
6
|
+
offsetOptions?: Partial<OffsetOptions>;
|
|
8
7
|
placement?: Placement;
|
|
9
8
|
text?: string | null;
|
|
10
9
|
textColorClass?: string;
|
|
@@ -27,7 +26,7 @@ declare function __VLS_template(): {
|
|
|
27
26
|
readonly disabled?: boolean | undefined;
|
|
28
27
|
readonly flipOptions?: Partial<import('@floating-ui/dom').FlipOptions> | undefined;
|
|
29
28
|
readonly limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions> | undefined;
|
|
30
|
-
readonly offsetOptions?: Partial<
|
|
29
|
+
readonly offsetOptions?: Partial<OffsetOptions> | undefined;
|
|
31
30
|
readonly shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions> | undefined;
|
|
32
31
|
readonly openDelay?: number | undefined;
|
|
33
32
|
readonly placement?: Placement | undefined;
|
|
@@ -67,7 +66,7 @@ declare function __VLS_template(): {
|
|
|
67
66
|
disabled?: boolean;
|
|
68
67
|
flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
|
|
69
68
|
limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
|
|
70
|
-
offsetOptions?: Partial<
|
|
69
|
+
offsetOptions?: Partial<OffsetOptions>;
|
|
71
70
|
shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
|
|
72
71
|
openDelay?: number;
|
|
73
72
|
placement?: Placement;
|
|
@@ -94,6 +93,7 @@ declare function __VLS_template(): {
|
|
|
94
93
|
updateClickOutside: (...args: any[]) => void;
|
|
95
94
|
}, string, {
|
|
96
95
|
disabled: boolean;
|
|
96
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
97
97
|
placement: Placement;
|
|
98
98
|
trigger: TPopperTrigger;
|
|
99
99
|
closeDelay: number;
|
|
@@ -111,7 +111,6 @@ declare function __VLS_template(): {
|
|
|
111
111
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
112
112
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
113
113
|
}>;
|
|
114
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
115
114
|
shiftOptions: Partial<{
|
|
116
115
|
mainAxis?: boolean | undefined;
|
|
117
116
|
crossAxis?: boolean | undefined;
|
|
@@ -153,6 +152,7 @@ declare function __VLS_template(): {
|
|
|
153
152
|
$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;
|
|
154
153
|
} & Readonly<{
|
|
155
154
|
disabled: boolean;
|
|
155
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
156
156
|
placement: Placement;
|
|
157
157
|
trigger: TPopperTrigger;
|
|
158
158
|
closeDelay: number;
|
|
@@ -170,7 +170,6 @@ declare function __VLS_template(): {
|
|
|
170
170
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
171
171
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
172
172
|
}>;
|
|
173
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
174
173
|
shiftOptions: Partial<{
|
|
175
174
|
mainAxis?: boolean | undefined;
|
|
176
175
|
crossAxis?: boolean | undefined;
|
|
@@ -196,7 +195,7 @@ declare function __VLS_template(): {
|
|
|
196
195
|
disabled?: boolean;
|
|
197
196
|
flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
|
|
198
197
|
limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
|
|
199
|
-
offsetOptions?: Partial<
|
|
198
|
+
offsetOptions?: Partial<OffsetOptions>;
|
|
200
199
|
shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
|
|
201
200
|
openDelay?: number;
|
|
202
201
|
placement?: Placement;
|
|
@@ -212,7 +211,7 @@ declare function __VLS_template(): {
|
|
|
212
211
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
213
212
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
214
213
|
onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
|
|
215
|
-
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "
|
|
214
|
+
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "offsetOptions" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "shiftOptions" | "openDelay" | "rootClass" | "sameWidthAsTrigger" | "show" | "teleportTarget" | "triggerClass")> & import('vue').ShallowUnwrapRef<{
|
|
216
215
|
close: () => void;
|
|
217
216
|
containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
218
217
|
open: () => Promise<void>;
|
|
@@ -237,8 +236,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
237
236
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
238
237
|
bgColorClass: string;
|
|
239
238
|
delay: number;
|
|
240
|
-
offsetMain: number;
|
|
241
|
-
offsetCross: number;
|
|
242
239
|
placement: Placement;
|
|
243
240
|
textColorClass: string;
|
|
244
241
|
trigger: TPopperTrigger;
|
|
@@ -253,7 +250,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
253
250
|
readonly disabled?: boolean | undefined;
|
|
254
251
|
readonly flipOptions?: Partial<import('@floating-ui/dom').FlipOptions> | undefined;
|
|
255
252
|
readonly limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions> | undefined;
|
|
256
|
-
readonly offsetOptions?: Partial<
|
|
253
|
+
readonly offsetOptions?: Partial<OffsetOptions> | undefined;
|
|
257
254
|
readonly shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions> | undefined;
|
|
258
255
|
readonly openDelay?: number | undefined;
|
|
259
256
|
readonly placement?: Placement | undefined;
|
|
@@ -293,7 +290,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
293
290
|
disabled?: boolean;
|
|
294
291
|
flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
|
|
295
292
|
limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
|
|
296
|
-
offsetOptions?: Partial<
|
|
293
|
+
offsetOptions?: Partial<OffsetOptions>;
|
|
297
294
|
shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
|
|
298
295
|
openDelay?: number;
|
|
299
296
|
placement?: Placement;
|
|
@@ -320,6 +317,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
320
317
|
updateClickOutside: (...args: any[]) => void;
|
|
321
318
|
}, string, {
|
|
322
319
|
disabled: boolean;
|
|
320
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
323
321
|
placement: Placement;
|
|
324
322
|
trigger: TPopperTrigger;
|
|
325
323
|
closeDelay: number;
|
|
@@ -337,7 +335,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
337
335
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
338
336
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
339
337
|
}>;
|
|
340
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
341
338
|
shiftOptions: Partial<{
|
|
342
339
|
mainAxis?: boolean | undefined;
|
|
343
340
|
crossAxis?: boolean | undefined;
|
|
@@ -379,6 +376,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
379
376
|
$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;
|
|
380
377
|
} & Readonly<{
|
|
381
378
|
disabled: boolean;
|
|
379
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
382
380
|
placement: Placement;
|
|
383
381
|
trigger: TPopperTrigger;
|
|
384
382
|
closeDelay: number;
|
|
@@ -396,7 +394,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
396
394
|
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
397
395
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
398
396
|
}>;
|
|
399
|
-
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
400
397
|
shiftOptions: Partial<{
|
|
401
398
|
mainAxis?: boolean | undefined;
|
|
402
399
|
crossAxis?: boolean | undefined;
|
|
@@ -422,7 +419,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
422
419
|
disabled?: boolean;
|
|
423
420
|
flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
|
|
424
421
|
limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
|
|
425
|
-
offsetOptions?: Partial<
|
|
422
|
+
offsetOptions?: Partial<OffsetOptions>;
|
|
426
423
|
shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
|
|
427
424
|
openDelay?: number;
|
|
428
425
|
placement?: Placement;
|
|
@@ -438,7 +435,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
438
435
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
439
436
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
440
437
|
onUpdateClickOutside?: ((...args: any[]) => any) | undefined;
|
|
441
|
-
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "
|
|
438
|
+
}>, "close" | "open" | "containerRef" | "updateClickOutsideTargets" | ("disabled" | "offsetOptions" | "placement" | "trigger" | "closeDelay" | "closeOnClickOutside" | "flipOptions" | "shiftOptions" | "openDelay" | "rootClass" | "sameWidthAsTrigger" | "show" | "teleportTarget" | "triggerClass")> & import('vue').ShallowUnwrapRef<{
|
|
442
439
|
close: () => void;
|
|
443
440
|
containerRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
444
441
|
open: () => Promise<void>;
|
|
@@ -56,5 +56,5 @@ export type TTreeListNode = {
|
|
|
56
56
|
value: unknown;
|
|
57
57
|
open: boolean;
|
|
58
58
|
};
|
|
59
|
-
export declare const icons: readonly ["admin", "agent", "agent-message", "agent-reply", "arrow-deviate", "arrow-down-plus", "arrow-down", "arrow-from", "arrow-left", "arrow-move", "arrow-right", "arrow-sub", "arrow-trend", "arrow-up-plus", "arrow-up", "at-symbol", "audio", "authority", "beams", "bell", "bold", "books", "box", "building", "bullet-list", "calendar", "camera", "categories", "check-circled", "check-outline", "check", "chevron-down", "chevron-down-small", "chevron-left-double", "chevron-left", "chevron-left-small", "chevron-right-double", "chevron-right", "chevron-right-small", "chevron-up", "chevron-up-small", "clock", "close-outline", "close", "columns", "conclusion", "conversation", "copy", "crosshair", "dash", "dashboard", "delete", "delta", "download", "drag", "drag-vertical", "drilldown", "edit", "envelope", "error", "export-document", "filter", "filters", "flag", "folder", "frequency", "fullscreen-off", "fullscreen-on", "graduate", "hamburger", "handshake", "hash-symbol", "heading-1", "heading-2", "heading", "history", "home", "id-card", "id", "incognito", "indent-left", "indent-right", "information", "insert-below", "italics", "itenary", "keyboard", "key-cmd", "key-ctrl", "key-return", "key-shift", "lightning", "link", "list-collapse", "list-expand", "location", "lock-locked", "lock-unlocked", "magnifying-glass", "map", "match-case", "match-diacritics", "match-full-word", "megaphone", "message", "message-question", "microscope", "moon", "new-document", "news", "numbered-list", "open-link", "options", "page", "panel-left-show", "panel-left-hide", "panel-right-show", "panel-right-hide", "paper-plane", "paper", "pdf", "pen-and-paper", "phase", "photo", "pie-chart", "plus", "point-left", "point-up", "popup", "question", "radio-tower", "recycle", "redo", "refresh", "route", "rows", "scope", "settings", "share", "sign-in", "sign-out", "sign-up", "slideshow", "sort-down", "sort-up", "sort", "square-solid", "star-solid", "star", "stop-watch", "structure", "sun", "table", "tag", "teacher", "team", "telescope", "text-select", "trash", "triangle-angle", "triangle-side", "underline", "undo", "user", "venn", "video", "visibility-off-alt", "visibility-off", "visibility-on", "warning", "zoom"];
|
|
59
|
+
export declare const icons: readonly ["admin", "agent", "agent-flow", "agent-message", "agent-reply", "arrow-deviate", "arrow-down-plus", "arrow-down", "arrow-from", "arrow-left", "arrow-move", "arrow-right", "arrow-sub", "arrow-trend", "arrow-up-plus", "arrow-up", "at-symbol", "audio", "authority", "beams", "bell", "bold", "books", "box", "building", "bullet-list", "calendar", "camera", "categories", "check-circled", "check-outline", "check", "chevron-down", "chevron-down-small", "chevron-left-double", "chevron-left", "chevron-left-small", "chevron-right-double", "chevron-right", "chevron-right-small", "chevron-up", "chevron-up-small", "clock", "close-outline", "close", "columns", "conclusion", "conversation", "copy", "crosshair", "dash", "dashboard", "delete", "delta", "download", "drag", "drag-vertical", "drilldown", "edit", "envelope", "error", "export-document", "filter", "filters", "flag", "folder", "frequency", "fullscreen-off", "fullscreen-on", "graduate", "hamburger", "handshake", "hash-symbol", "heading-1", "heading-2", "heading", "history", "home", "id-card", "id", "incognito", "indent-left", "indent-right", "information", "insert-below", "italics", "itenary", "keyboard", "key-cmd", "key-ctrl", "key-return", "key-shift", "lightning", "link", "list-collapse", "list-expand", "location", "lock-locked", "lock-unlocked", "magnifying-glass", "map", "match-case", "match-diacritics", "match-full-word", "megaphone", "message", "message-question", "microscope", "moon", "new-document", "news", "numbered-list", "open-link", "options", "page", "panel-left-show", "panel-left-hide", "panel-right-show", "panel-right-hide", "paper-plane", "paper", "pdf", "pen-and-paper", "phase", "photo", "pie-chart", "plus", "point-left", "point-up", "popup", "question", "radio-tower", "recycle", "redo", "refresh", "route", "rows", "scope", "settings", "share", "sign-in", "sign-out", "sign-up", "slideshow", "sort-down", "sort-up", "sort", "square-solid", "star-solid", "star", "stop-watch", "structure", "sun", "table", "tag", "teacher", "team", "telescope", "text-select", "trash", "triangle-angle", "triangle-side", "underline", "undo", "user", "venn", "video", "visibility-off-alt", "visibility-off", "visibility-on", "warning", "zoom"];
|
|
60
60
|
export type TIcon = (typeof icons)[number];
|