@nexxtmove/ui 0.1.58 → 0.1.60
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/index.d.ts +359 -36
- package/dist/index.js +2946 -1864
- package/dist/nuxt.js +29 -28
- package/package.json +2 -1
- package/src/components/Combobox/Combobox.vue +28 -68
- package/src/components/DatePicker/DatePicker.vue +39 -82
- package/src/components/DropdownButton/DropdownButton.vue +47 -76
- package/src/components/FloatingPanel/FloatingPanel.vue +143 -0
- package/src/components/InputField/InputField.vue +1 -1
- package/src/components/Modal/Modal.vue +1 -1
- package/src/components.json +1 -0
- package/src/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,9 @@ import { Locale } from 'date-fns';
|
|
|
17
17
|
import { ModelRef } from 'vue';
|
|
18
18
|
import { nextTick } from 'vue';
|
|
19
19
|
import { OnCleanup } from '@vue/reactivity';
|
|
20
|
+
import { Placement } from '@floating-ui/vue';
|
|
20
21
|
import { PublicProps } from 'vue';
|
|
22
|
+
import { Ref } from 'vue';
|
|
21
23
|
import { ShallowUnwrapRef } from 'vue';
|
|
22
24
|
import { Slot } from 'vue';
|
|
23
25
|
import { VNode } from 'vue';
|
|
@@ -27,31 +29,33 @@ import { WatchStopHandle } from 'vue';
|
|
|
27
29
|
|
|
28
30
|
declare const __VLS_component: DefineComponent<NexxtButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
29
31
|
|
|
30
|
-
declare const __VLS_component_10: DefineComponent<
|
|
32
|
+
declare const __VLS_component_10: DefineComponent<NexxtInfoBlockProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtInfoBlockProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
33
|
+
|
|
34
|
+
declare const __VLS_component_11: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
31
35
|
"update:modelValue": (value: string) => any;
|
|
32
36
|
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
33
37
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
34
38
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
35
39
|
|
|
36
|
-
declare const
|
|
40
|
+
declare const __VLS_component_12: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
37
41
|
"update:modelValue": (value: boolean) => any;
|
|
38
42
|
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
39
43
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
40
44
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
41
45
|
|
|
42
|
-
declare const
|
|
46
|
+
declare const __VLS_component_13: DefineComponent<NexxtStepperHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
43
47
|
"update:currentStep": (...args: any[]) => void;
|
|
44
48
|
}, string, PublicProps, Readonly<NexxtStepperHeaderProps> & Readonly<{
|
|
45
49
|
"onUpdate:currentStep"?: ((...args: any[]) => any) | undefined;
|
|
46
50
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
47
51
|
|
|
48
|
-
declare const
|
|
52
|
+
declare const __VLS_component_14: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
49
53
|
"update:modelValue": (value: string) => any;
|
|
50
54
|
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
51
55
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
52
56
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
53
57
|
|
|
54
|
-
declare const
|
|
58
|
+
declare const __VLS_component_15: DefineComponent<NexxtTooltip_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTooltip_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
55
59
|
|
|
56
60
|
declare const __VLS_component_2: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
57
61
|
|
|
@@ -108,7 +112,6 @@ allowNew?: never;
|
|
|
108
112
|
})> & Readonly<{
|
|
109
113
|
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
110
114
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
111
|
-
wrapperRef: HTMLDivElement;
|
|
112
115
|
panelRef: CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
113
116
|
modelValue?: (string | number)[];
|
|
114
117
|
} & {
|
|
@@ -234,7 +237,7 @@ allowNew?: never;
|
|
|
234
237
|
}>), {
|
|
235
238
|
focus: () => void;
|
|
236
239
|
}, {}, {}, {}, {}> | null;
|
|
237
|
-
},
|
|
240
|
+
}, any>;
|
|
238
241
|
|
|
239
242
|
declare const __VLS_component_5: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
240
243
|
|
|
@@ -247,16 +250,123 @@ placeholder: string;
|
|
|
247
250
|
anchor: CalendarAnchor;
|
|
248
251
|
autoClose: boolean;
|
|
249
252
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
250
|
-
|
|
253
|
+
panelRef: ({
|
|
254
|
+
$: ComponentInternalInstance;
|
|
255
|
+
$data: {};
|
|
256
|
+
$props: {
|
|
257
|
+
readonly placement?: Placement | undefined;
|
|
258
|
+
readonly offsetDistance?: number | undefined;
|
|
259
|
+
readonly onClose?: (() => any) | undefined;
|
|
260
|
+
readonly onOpen?: (() => any) | undefined;
|
|
261
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
262
|
+
$attrs: {
|
|
263
|
+
[x: string]: unknown;
|
|
264
|
+
};
|
|
265
|
+
$refs: {
|
|
266
|
+
[x: string]: unknown;
|
|
267
|
+
} & {
|
|
251
268
|
triggerRef: HTMLSpanElement;
|
|
269
|
+
floatingRef: HTMLDivElement;
|
|
270
|
+
};
|
|
271
|
+
$slots: Readonly<{
|
|
272
|
+
[name: string]: Slot<any> | undefined;
|
|
273
|
+
}>;
|
|
274
|
+
$root: ComponentPublicInstance | null;
|
|
275
|
+
$parent: ComponentPublicInstance | null;
|
|
276
|
+
$host: Element | null;
|
|
277
|
+
$emit: ((event: "close") => void) & ((event: "open") => void);
|
|
278
|
+
$el: any;
|
|
279
|
+
$options: ComponentOptionsBase<Readonly<NexxtFloatingPanelProps> & Readonly<{
|
|
280
|
+
onClose?: (() => any) | undefined;
|
|
281
|
+
onOpen?: (() => any) | undefined;
|
|
282
|
+
}>, {
|
|
283
|
+
isOpen: Ref<boolean, boolean>;
|
|
284
|
+
open: () => void;
|
|
285
|
+
close: () => void;
|
|
286
|
+
toggle: () => void;
|
|
287
|
+
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
288
|
+
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
289
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
290
|
+
close: () => any;
|
|
291
|
+
open: () => any;
|
|
292
|
+
}, string, {
|
|
293
|
+
placement: Placement;
|
|
294
|
+
offsetDistance: number;
|
|
295
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
296
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
297
|
+
created?: (() => void) | (() => void)[];
|
|
298
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
299
|
+
mounted?: (() => void) | (() => void)[];
|
|
300
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
301
|
+
updated?: (() => void) | (() => void)[];
|
|
302
|
+
activated?: (() => void) | (() => void)[];
|
|
303
|
+
deactivated?: (() => void) | (() => void)[];
|
|
304
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
305
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
306
|
+
destroyed?: (() => void) | (() => void)[];
|
|
307
|
+
unmounted?: (() => void) | (() => void)[];
|
|
308
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
309
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
310
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
311
|
+
};
|
|
312
|
+
$forceUpdate: () => void;
|
|
313
|
+
$nextTick: typeof nextTick;
|
|
314
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
315
|
+
} & Readonly<{
|
|
316
|
+
placement: Placement;
|
|
317
|
+
offsetDistance: number;
|
|
318
|
+
}> & Omit<Readonly<NexxtFloatingPanelProps> & Readonly<{
|
|
319
|
+
onClose?: (() => any) | undefined;
|
|
320
|
+
onOpen?: (() => any) | undefined;
|
|
321
|
+
}>, "close" | "open" | "isOpen" | "toggle" | "triggerRef" | "floatingRef" | ("placement" | "offsetDistance")> & ShallowUnwrapRef< {
|
|
322
|
+
isOpen: Ref<boolean, boolean>;
|
|
323
|
+
open: () => void;
|
|
324
|
+
close: () => void;
|
|
325
|
+
toggle: () => void;
|
|
326
|
+
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
327
|
+
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
328
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
329
|
+
$slots: {
|
|
330
|
+
trigger?(_: {
|
|
331
|
+
isOpen: boolean;
|
|
332
|
+
toggle: () => void;
|
|
333
|
+
open: () => void;
|
|
334
|
+
close: () => void;
|
|
335
|
+
}): any;
|
|
336
|
+
content?(_: {
|
|
337
|
+
isOpen: true;
|
|
338
|
+
close: () => void;
|
|
339
|
+
toggle: () => void;
|
|
340
|
+
}): any;
|
|
341
|
+
};
|
|
342
|
+
}) | null;
|
|
252
343
|
popoverRef: HTMLDivElement;
|
|
253
|
-
},
|
|
344
|
+
}, any>;
|
|
254
345
|
|
|
255
346
|
declare const __VLS_component_7: DefineComponent<NexxtDoughnutChartProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtDoughnutChartProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, SVGSVGElement>;
|
|
256
347
|
|
|
257
|
-
declare const __VLS_component_8: DefineComponent<
|
|
348
|
+
declare const __VLS_component_8: DefineComponent<NexxtFloatingPanelProps, {
|
|
349
|
+
isOpen: Ref<boolean, boolean>;
|
|
350
|
+
open: () => void;
|
|
351
|
+
close: () => void;
|
|
352
|
+
toggle: () => void;
|
|
353
|
+
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
354
|
+
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
355
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
356
|
+
close: () => any;
|
|
357
|
+
open: () => any;
|
|
358
|
+
}, string, PublicProps, Readonly<NexxtFloatingPanelProps> & Readonly<{
|
|
359
|
+
onClose?: (() => any) | undefined;
|
|
360
|
+
onOpen?: (() => any) | undefined;
|
|
361
|
+
}>, {
|
|
362
|
+
placement: Placement;
|
|
363
|
+
offsetDistance: number;
|
|
364
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
365
|
+
triggerRef: HTMLSpanElement;
|
|
366
|
+
floatingRef: HTMLDivElement;
|
|
367
|
+
}, any>;
|
|
258
368
|
|
|
259
|
-
declare const __VLS_component_9: DefineComponent<
|
|
369
|
+
declare const __VLS_component_9: DefineComponent<NexxtHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
260
370
|
|
|
261
371
|
declare type __VLS_PrettifyLocal<T> = {
|
|
262
372
|
[K in keyof T]: T[K];
|
|
@@ -343,13 +453,22 @@ declare function __VLS_template(): {
|
|
|
343
453
|
declare function __VLS_template_10(): {
|
|
344
454
|
attrs: Partial<{}>;
|
|
345
455
|
slots: {
|
|
346
|
-
|
|
456
|
+
default?(_: {}): any;
|
|
347
457
|
};
|
|
348
458
|
refs: {};
|
|
349
459
|
rootEl: HTMLDivElement;
|
|
350
460
|
};
|
|
351
461
|
|
|
352
462
|
declare function __VLS_template_11(): {
|
|
463
|
+
attrs: Partial<{}>;
|
|
464
|
+
slots: {
|
|
465
|
+
right?(_: {}): any;
|
|
466
|
+
};
|
|
467
|
+
refs: {};
|
|
468
|
+
rootEl: HTMLDivElement;
|
|
469
|
+
};
|
|
470
|
+
|
|
471
|
+
declare function __VLS_template_12(): {
|
|
353
472
|
attrs: Partial<{}>;
|
|
354
473
|
slots: {
|
|
355
474
|
default?(_: {}): any;
|
|
@@ -359,7 +478,7 @@ declare function __VLS_template_11(): {
|
|
|
359
478
|
rootEl: any;
|
|
360
479
|
};
|
|
361
480
|
|
|
362
|
-
declare function
|
|
481
|
+
declare function __VLS_template_13(): {
|
|
363
482
|
attrs: Partial<{}>;
|
|
364
483
|
slots: {
|
|
365
484
|
default?(_: {}): any;
|
|
@@ -368,14 +487,14 @@ declare function __VLS_template_12(): {
|
|
|
368
487
|
rootEl: HTMLDivElement;
|
|
369
488
|
};
|
|
370
489
|
|
|
371
|
-
declare function
|
|
490
|
+
declare function __VLS_template_14(): {
|
|
372
491
|
attrs: Partial<{}>;
|
|
373
492
|
slots: Partial<Record<string, (_: {}) => any>>;
|
|
374
493
|
refs: {};
|
|
375
494
|
rootEl: HTMLDivElement;
|
|
376
495
|
};
|
|
377
496
|
|
|
378
|
-
declare function
|
|
497
|
+
declare function __VLS_template_15(): {
|
|
379
498
|
attrs: Partial<{}>;
|
|
380
499
|
slots: {
|
|
381
500
|
default?(_: {}): any;
|
|
@@ -411,7 +530,6 @@ declare function __VLS_template_4(): {
|
|
|
411
530
|
default?(_: {}): any;
|
|
412
531
|
};
|
|
413
532
|
refs: {
|
|
414
|
-
wrapperRef: HTMLDivElement;
|
|
415
533
|
panelRef: CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
416
534
|
modelValue?: (string | number)[];
|
|
417
535
|
} & {
|
|
@@ -538,7 +656,7 @@ declare function __VLS_template_4(): {
|
|
|
538
656
|
focus: () => void;
|
|
539
657
|
}, {}, {}, {}, {}> | null;
|
|
540
658
|
};
|
|
541
|
-
rootEl:
|
|
659
|
+
rootEl: any;
|
|
542
660
|
};
|
|
543
661
|
|
|
544
662
|
declare function __VLS_template_5(): {
|
|
@@ -556,15 +674,103 @@ declare function __VLS_template_6(): {
|
|
|
556
674
|
slots: {
|
|
557
675
|
trigger?(_: {
|
|
558
676
|
isOpen: boolean;
|
|
559
|
-
toggle: () =>
|
|
677
|
+
toggle: () => void;
|
|
560
678
|
}): any;
|
|
561
679
|
};
|
|
562
680
|
refs: {
|
|
563
|
-
|
|
564
|
-
|
|
681
|
+
panelRef: ({
|
|
682
|
+
$: ComponentInternalInstance;
|
|
683
|
+
$data: {};
|
|
684
|
+
$props: {
|
|
685
|
+
readonly placement?: Placement | undefined;
|
|
686
|
+
readonly offsetDistance?: number | undefined;
|
|
687
|
+
readonly onClose?: (() => any) | undefined;
|
|
688
|
+
readonly onOpen?: (() => any) | undefined;
|
|
689
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
690
|
+
$attrs: {
|
|
691
|
+
[x: string]: unknown;
|
|
692
|
+
};
|
|
693
|
+
$refs: {
|
|
694
|
+
[x: string]: unknown;
|
|
695
|
+
} & {
|
|
696
|
+
triggerRef: HTMLSpanElement;
|
|
697
|
+
floatingRef: HTMLDivElement;
|
|
698
|
+
};
|
|
699
|
+
$slots: Readonly<{
|
|
700
|
+
[name: string]: Slot<any> | undefined;
|
|
701
|
+
}>;
|
|
702
|
+
$root: ComponentPublicInstance | null;
|
|
703
|
+
$parent: ComponentPublicInstance | null;
|
|
704
|
+
$host: Element | null;
|
|
705
|
+
$emit: ((event: "close") => void) & ((event: "open") => void);
|
|
706
|
+
$el: any;
|
|
707
|
+
$options: ComponentOptionsBase<Readonly<NexxtFloatingPanelProps> & Readonly<{
|
|
708
|
+
onClose?: (() => any) | undefined;
|
|
709
|
+
onOpen?: (() => any) | undefined;
|
|
710
|
+
}>, {
|
|
711
|
+
isOpen: Ref<boolean, boolean>;
|
|
712
|
+
open: () => void;
|
|
713
|
+
close: () => void;
|
|
714
|
+
toggle: () => void;
|
|
715
|
+
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
716
|
+
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
717
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
718
|
+
close: () => any;
|
|
719
|
+
open: () => any;
|
|
720
|
+
}, string, {
|
|
721
|
+
placement: Placement;
|
|
722
|
+
offsetDistance: number;
|
|
723
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
724
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
725
|
+
created?: (() => void) | (() => void)[];
|
|
726
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
727
|
+
mounted?: (() => void) | (() => void)[];
|
|
728
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
729
|
+
updated?: (() => void) | (() => void)[];
|
|
730
|
+
activated?: (() => void) | (() => void)[];
|
|
731
|
+
deactivated?: (() => void) | (() => void)[];
|
|
732
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
733
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
734
|
+
destroyed?: (() => void) | (() => void)[];
|
|
735
|
+
unmounted?: (() => void) | (() => void)[];
|
|
736
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
737
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
738
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
739
|
+
};
|
|
740
|
+
$forceUpdate: () => void;
|
|
741
|
+
$nextTick: typeof nextTick;
|
|
742
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
743
|
+
} & Readonly<{
|
|
744
|
+
placement: Placement;
|
|
745
|
+
offsetDistance: number;
|
|
746
|
+
}> & Omit<Readonly<NexxtFloatingPanelProps> & Readonly<{
|
|
747
|
+
onClose?: (() => any) | undefined;
|
|
748
|
+
onOpen?: (() => any) | undefined;
|
|
749
|
+
}>, "close" | "open" | "isOpen" | "toggle" | "triggerRef" | "floatingRef" | ("placement" | "offsetDistance")> & ShallowUnwrapRef< {
|
|
750
|
+
isOpen: Ref<boolean, boolean>;
|
|
751
|
+
open: () => void;
|
|
752
|
+
close: () => void;
|
|
753
|
+
toggle: () => void;
|
|
754
|
+
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
755
|
+
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
756
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
757
|
+
$slots: {
|
|
758
|
+
trigger?(_: {
|
|
759
|
+
isOpen: boolean;
|
|
760
|
+
toggle: () => void;
|
|
761
|
+
open: () => void;
|
|
762
|
+
close: () => void;
|
|
763
|
+
}): any;
|
|
764
|
+
content?(_: {
|
|
765
|
+
isOpen: true;
|
|
766
|
+
close: () => void;
|
|
767
|
+
toggle: () => void;
|
|
768
|
+
}): any;
|
|
769
|
+
};
|
|
770
|
+
}) | null;
|
|
565
771
|
popoverRef: HTMLDivElement;
|
|
566
772
|
};
|
|
567
|
-
rootEl:
|
|
773
|
+
rootEl: any;
|
|
568
774
|
};
|
|
569
775
|
|
|
570
776
|
declare function __VLS_template_7(): {
|
|
@@ -579,18 +785,31 @@ declare function __VLS_template_7(): {
|
|
|
579
785
|
declare function __VLS_template_8(): {
|
|
580
786
|
attrs: Partial<{}>;
|
|
581
787
|
slots: {
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
788
|
+
trigger?(_: {
|
|
789
|
+
isOpen: boolean;
|
|
790
|
+
toggle: () => void;
|
|
791
|
+
open: () => void;
|
|
792
|
+
close: () => void;
|
|
793
|
+
}): any;
|
|
794
|
+
content?(_: {
|
|
795
|
+
isOpen: true;
|
|
796
|
+
close: () => void;
|
|
797
|
+
toggle: () => void;
|
|
798
|
+
}): any;
|
|
585
799
|
};
|
|
586
|
-
refs: {
|
|
587
|
-
|
|
800
|
+
refs: {
|
|
801
|
+
triggerRef: HTMLSpanElement;
|
|
802
|
+
floatingRef: HTMLDivElement;
|
|
803
|
+
};
|
|
804
|
+
rootEl: any;
|
|
588
805
|
};
|
|
589
806
|
|
|
590
807
|
declare function __VLS_template_9(): {
|
|
591
808
|
attrs: Partial<{}>;
|
|
592
809
|
slots: {
|
|
593
|
-
|
|
810
|
+
'back-button'?(_: {}): any;
|
|
811
|
+
center?(_: {}): any;
|
|
812
|
+
right?(_: {}): any;
|
|
594
813
|
};
|
|
595
814
|
refs: {};
|
|
596
815
|
rootEl: HTMLDivElement;
|
|
@@ -608,6 +827,8 @@ declare type __VLS_TemplateResult_13 = ReturnType<typeof __VLS_template_13>;
|
|
|
608
827
|
|
|
609
828
|
declare type __VLS_TemplateResult_14 = ReturnType<typeof __VLS_template_14>;
|
|
610
829
|
|
|
830
|
+
declare type __VLS_TemplateResult_15 = ReturnType<typeof __VLS_template_15>;
|
|
831
|
+
|
|
611
832
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
612
833
|
|
|
613
834
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
@@ -660,6 +881,12 @@ declare type __VLS_WithTemplateSlots_14<T, S> = T & {
|
|
|
660
881
|
};
|
|
661
882
|
};
|
|
662
883
|
|
|
884
|
+
declare type __VLS_WithTemplateSlots_15<T, S> = T & {
|
|
885
|
+
new (): {
|
|
886
|
+
$slots: S;
|
|
887
|
+
};
|
|
888
|
+
};
|
|
889
|
+
|
|
663
890
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
664
891
|
new (): {
|
|
665
892
|
$slots: S;
|
|
@@ -991,8 +1218,97 @@ action?: string | (() => void);
|
|
|
991
1218
|
onNavigate?: ((url: string) => any) | undefined;
|
|
992
1219
|
onCheckboxChange?: ((label: string, checked: boolean) => any) | undefined;
|
|
993
1220
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
994
|
-
|
|
995
|
-
|
|
1221
|
+
panelRef: ({
|
|
1222
|
+
$: ComponentInternalInstance;
|
|
1223
|
+
$data: {};
|
|
1224
|
+
$props: {
|
|
1225
|
+
readonly placement?: Placement | undefined;
|
|
1226
|
+
readonly offsetDistance?: number | undefined;
|
|
1227
|
+
readonly onClose?: (() => any) | undefined;
|
|
1228
|
+
readonly onOpen?: (() => any) | undefined;
|
|
1229
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
1230
|
+
$attrs: {
|
|
1231
|
+
[x: string]: unknown;
|
|
1232
|
+
};
|
|
1233
|
+
$refs: {
|
|
1234
|
+
[x: string]: unknown;
|
|
1235
|
+
} & {
|
|
1236
|
+
triggerRef: HTMLSpanElement;
|
|
1237
|
+
floatingRef: HTMLDivElement;
|
|
1238
|
+
};
|
|
1239
|
+
$slots: Readonly<{
|
|
1240
|
+
[name: string]: Slot<any> | undefined;
|
|
1241
|
+
}>;
|
|
1242
|
+
$root: ComponentPublicInstance | null;
|
|
1243
|
+
$parent: ComponentPublicInstance | null;
|
|
1244
|
+
$host: Element | null;
|
|
1245
|
+
$emit: ((event: "close") => void) & ((event: "open") => void);
|
|
1246
|
+
$el: any;
|
|
1247
|
+
$options: ComponentOptionsBase<Readonly<NexxtFloatingPanelProps> & Readonly<{
|
|
1248
|
+
onClose?: (() => any) | undefined;
|
|
1249
|
+
onOpen?: (() => any) | undefined;
|
|
1250
|
+
}>, {
|
|
1251
|
+
isOpen: Ref<boolean, boolean>;
|
|
1252
|
+
open: () => void;
|
|
1253
|
+
close: () => void;
|
|
1254
|
+
toggle: () => void;
|
|
1255
|
+
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
1256
|
+
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
1257
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1258
|
+
close: () => any;
|
|
1259
|
+
open: () => any;
|
|
1260
|
+
}, string, {
|
|
1261
|
+
placement: Placement;
|
|
1262
|
+
offsetDistance: number;
|
|
1263
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1264
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1265
|
+
created?: (() => void) | (() => void)[];
|
|
1266
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1267
|
+
mounted?: (() => void) | (() => void)[];
|
|
1268
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1269
|
+
updated?: (() => void) | (() => void)[];
|
|
1270
|
+
activated?: (() => void) | (() => void)[];
|
|
1271
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1272
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1273
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1274
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1275
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1276
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1277
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1278
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1279
|
+
};
|
|
1280
|
+
$forceUpdate: () => void;
|
|
1281
|
+
$nextTick: nextTick;
|
|
1282
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1283
|
+
} & Readonly<{
|
|
1284
|
+
placement: Placement;
|
|
1285
|
+
offsetDistance: number;
|
|
1286
|
+
}> & Omit<Readonly<NexxtFloatingPanelProps> & Readonly<{
|
|
1287
|
+
onClose?: (() => any) | undefined;
|
|
1288
|
+
onOpen?: (() => any) | undefined;
|
|
1289
|
+
}>, "close" | "open" | "isOpen" | "toggle" | "triggerRef" | "floatingRef" | ("placement" | "offsetDistance")> & ShallowUnwrapRef< {
|
|
1290
|
+
isOpen: Ref<boolean, boolean>;
|
|
1291
|
+
open: () => void;
|
|
1292
|
+
close: () => void;
|
|
1293
|
+
toggle: () => void;
|
|
1294
|
+
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
1295
|
+
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
1296
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
1297
|
+
$slots: {
|
|
1298
|
+
trigger?(_: {
|
|
1299
|
+
isOpen: boolean;
|
|
1300
|
+
toggle: () => void;
|
|
1301
|
+
open: () => void;
|
|
1302
|
+
close: () => void;
|
|
1303
|
+
}): any;
|
|
1304
|
+
content?(_: {
|
|
1305
|
+
isOpen: true;
|
|
1306
|
+
close: () => void;
|
|
1307
|
+
toggle: () => void;
|
|
1308
|
+
}): any;
|
|
1309
|
+
};
|
|
1310
|
+
}) | null;
|
|
1311
|
+
}, any>;
|
|
996
1312
|
|
|
997
1313
|
declare interface NexxtDropdownButton_2 {
|
|
998
1314
|
label: string;
|
|
@@ -1015,7 +1331,14 @@ declare interface NexxtDropdownButtonGroup {
|
|
|
1015
1331
|
items: NexxtDropdownButton_2[];
|
|
1016
1332
|
}
|
|
1017
1333
|
|
|
1018
|
-
export declare const
|
|
1334
|
+
export declare const NexxtFloatingPanel: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
1335
|
+
|
|
1336
|
+
declare interface NexxtFloatingPanelProps {
|
|
1337
|
+
placement?: Placement;
|
|
1338
|
+
offsetDistance?: number;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
export declare const NexxtHeader: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
1019
1342
|
|
|
1020
1343
|
declare interface NexxtHeaderProps {
|
|
1021
1344
|
title: string;
|
|
@@ -1031,14 +1354,14 @@ declare interface NexxtIconProps {
|
|
|
1031
1354
|
type?: IconType;
|
|
1032
1355
|
}
|
|
1033
1356
|
|
|
1034
|
-
export declare const NexxtInfoBlock:
|
|
1357
|
+
export declare const NexxtInfoBlock: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
1035
1358
|
|
|
1036
1359
|
declare interface NexxtInfoBlockProps {
|
|
1037
1360
|
icon: InstanceType<typeof NexxtIcon>['name'];
|
|
1038
1361
|
color?: 'green' | 'purple' | 'blue' | 'rose';
|
|
1039
1362
|
}
|
|
1040
1363
|
|
|
1041
|
-
export declare const NexxtInputField:
|
|
1364
|
+
export declare const NexxtInputField: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
1042
1365
|
|
|
1043
1366
|
declare interface NexxtInputFieldProps {
|
|
1044
1367
|
placeholder?: string;
|
|
@@ -1050,7 +1373,7 @@ declare interface NexxtInputFieldProps {
|
|
|
1050
1373
|
required?: boolean;
|
|
1051
1374
|
}
|
|
1052
1375
|
|
|
1053
|
-
export declare const NexxtModal:
|
|
1376
|
+
export declare const NexxtModal: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
1054
1377
|
|
|
1055
1378
|
declare interface NexxtModalProps {
|
|
1056
1379
|
title?: string;
|
|
@@ -1171,7 +1494,7 @@ declare interface NexxtSourceProps {
|
|
|
1171
1494
|
source: keyof typeof SOURCE_MAP;
|
|
1172
1495
|
}
|
|
1173
1496
|
|
|
1174
|
-
export declare const NexxtStepperHeader:
|
|
1497
|
+
export declare const NexxtStepperHeader: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
1175
1498
|
|
|
1176
1499
|
declare interface NexxtStepperHeaderProps {
|
|
1177
1500
|
title: string;
|
|
@@ -1181,7 +1504,7 @@ declare interface NexxtStepperHeaderProps {
|
|
|
1181
1504
|
backButtonAction: InstanceType<typeof NexxtHeader>['backButtonAction'];
|
|
1182
1505
|
}
|
|
1183
1506
|
|
|
1184
|
-
export declare const NexxtTabbedContent:
|
|
1507
|
+
export declare const NexxtTabbedContent: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
1185
1508
|
|
|
1186
1509
|
declare interface NexxtTabbedContent_2 {
|
|
1187
1510
|
tabs: InstanceType<typeof NexxtTabs>['tabs'];
|
|
@@ -1244,7 +1567,7 @@ splitView: boolean;
|
|
|
1244
1567
|
|
|
1245
1568
|
export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1246
1569
|
|
|
1247
|
-
export declare const NexxtTooltip:
|
|
1570
|
+
export declare const NexxtTooltip: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
1248
1571
|
|
|
1249
1572
|
declare interface NexxtTooltip_2 {
|
|
1250
1573
|
delay?: number;
|