@nexxtmove/ui 0.1.57 → 0.1.59
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 +379 -46
- package/dist/index.js +2956 -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/Modal/Modal.vue +1 -1
- package/src/components/TabbedContent/TabbedContent.vue +11 -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,27 +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, {
|
|
53
|
+
"update:modelValue": (value: string) => any;
|
|
54
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
55
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
56
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
49
57
|
|
|
50
|
-
declare const
|
|
58
|
+
declare const __VLS_component_15: DefineComponent<NexxtTooltip_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTooltip_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
51
59
|
|
|
52
60
|
declare const __VLS_component_2: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
53
61
|
|
|
@@ -104,7 +112,6 @@ allowNew?: never;
|
|
|
104
112
|
})> & Readonly<{
|
|
105
113
|
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
106
114
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
107
|
-
wrapperRef: HTMLDivElement;
|
|
108
115
|
panelRef: CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
109
116
|
modelValue?: (string | number)[];
|
|
110
117
|
} & {
|
|
@@ -230,7 +237,7 @@ allowNew?: never;
|
|
|
230
237
|
}>), {
|
|
231
238
|
focus: () => void;
|
|
232
239
|
}, {}, {}, {}, {}> | null;
|
|
233
|
-
},
|
|
240
|
+
}, any>;
|
|
234
241
|
|
|
235
242
|
declare const __VLS_component_5: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
236
243
|
|
|
@@ -243,16 +250,123 @@ placeholder: string;
|
|
|
243
250
|
anchor: CalendarAnchor;
|
|
244
251
|
autoClose: boolean;
|
|
245
252
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
246
|
-
|
|
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
|
+
} & {
|
|
247
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;
|
|
248
343
|
popoverRef: HTMLDivElement;
|
|
249
|
-
},
|
|
344
|
+
}, any>;
|
|
250
345
|
|
|
251
346
|
declare const __VLS_component_7: DefineComponent<NexxtDoughnutChartProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtDoughnutChartProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, SVGSVGElement>;
|
|
252
347
|
|
|
253
|
-
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>;
|
|
254
368
|
|
|
255
|
-
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>;
|
|
256
370
|
|
|
257
371
|
declare type __VLS_PrettifyLocal<T> = {
|
|
258
372
|
[K in keyof T]: T[K];
|
|
@@ -265,6 +379,11 @@ declare type __VLS_Props = {
|
|
|
265
379
|
};
|
|
266
380
|
|
|
267
381
|
declare type __VLS_Props_10 = {
|
|
382
|
+
event: TimelineEvent;
|
|
383
|
+
splitView?: boolean;
|
|
384
|
+
};
|
|
385
|
+
|
|
386
|
+
declare type __VLS_Props_11 = {
|
|
268
387
|
phase: TimelinePhase;
|
|
269
388
|
/** Index within the filtered phases array (used to determine phase direction/date). */
|
|
270
389
|
index: number;
|
|
@@ -286,12 +405,9 @@ declare type __VLS_Props_6 = NexxtModalProps;
|
|
|
286
405
|
|
|
287
406
|
declare type __VLS_Props_7 = NexxtPaginationProps;
|
|
288
407
|
|
|
289
|
-
declare type __VLS_Props_8 =
|
|
408
|
+
declare type __VLS_Props_8 = NexxtTabbedContent_2;
|
|
290
409
|
|
|
291
|
-
declare type __VLS_Props_9 =
|
|
292
|
-
event: TimelineEvent;
|
|
293
|
-
splitView?: boolean;
|
|
294
|
-
};
|
|
410
|
+
declare type __VLS_Props_9 = NexxtTabs_2;
|
|
295
411
|
|
|
296
412
|
declare type __VLS_PublicProps = {
|
|
297
413
|
modelValue?: Date | null;
|
|
@@ -318,9 +434,13 @@ declare type __VLS_PublicProps_6 = {
|
|
|
318
434
|
} & __VLS_Props_7;
|
|
319
435
|
|
|
320
436
|
declare type __VLS_PublicProps_7 = {
|
|
321
|
-
modelValue?:
|
|
437
|
+
modelValue?: string;
|
|
322
438
|
} & __VLS_Props_8;
|
|
323
439
|
|
|
440
|
+
declare type __VLS_PublicProps_8 = {
|
|
441
|
+
modelValue?: typeof selected['value'];
|
|
442
|
+
} & __VLS_Props_9;
|
|
443
|
+
|
|
324
444
|
declare function __VLS_template(): {
|
|
325
445
|
attrs: Partial<{}>;
|
|
326
446
|
slots: {
|
|
@@ -333,13 +453,22 @@ declare function __VLS_template(): {
|
|
|
333
453
|
declare function __VLS_template_10(): {
|
|
334
454
|
attrs: Partial<{}>;
|
|
335
455
|
slots: {
|
|
336
|
-
|
|
456
|
+
default?(_: {}): any;
|
|
337
457
|
};
|
|
338
458
|
refs: {};
|
|
339
459
|
rootEl: HTMLDivElement;
|
|
340
460
|
};
|
|
341
461
|
|
|
342
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(): {
|
|
343
472
|
attrs: Partial<{}>;
|
|
344
473
|
slots: {
|
|
345
474
|
default?(_: {}): any;
|
|
@@ -349,7 +478,7 @@ declare function __VLS_template_11(): {
|
|
|
349
478
|
rootEl: any;
|
|
350
479
|
};
|
|
351
480
|
|
|
352
|
-
declare function
|
|
481
|
+
declare function __VLS_template_13(): {
|
|
353
482
|
attrs: Partial<{}>;
|
|
354
483
|
slots: {
|
|
355
484
|
default?(_: {}): any;
|
|
@@ -358,14 +487,14 @@ declare function __VLS_template_12(): {
|
|
|
358
487
|
rootEl: HTMLDivElement;
|
|
359
488
|
};
|
|
360
489
|
|
|
361
|
-
declare function
|
|
490
|
+
declare function __VLS_template_14(): {
|
|
362
491
|
attrs: Partial<{}>;
|
|
363
492
|
slots: Partial<Record<string, (_: {}) => any>>;
|
|
364
493
|
refs: {};
|
|
365
494
|
rootEl: HTMLDivElement;
|
|
366
495
|
};
|
|
367
496
|
|
|
368
|
-
declare function
|
|
497
|
+
declare function __VLS_template_15(): {
|
|
369
498
|
attrs: Partial<{}>;
|
|
370
499
|
slots: {
|
|
371
500
|
default?(_: {}): any;
|
|
@@ -401,7 +530,6 @@ declare function __VLS_template_4(): {
|
|
|
401
530
|
default?(_: {}): any;
|
|
402
531
|
};
|
|
403
532
|
refs: {
|
|
404
|
-
wrapperRef: HTMLDivElement;
|
|
405
533
|
panelRef: CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
406
534
|
modelValue?: (string | number)[];
|
|
407
535
|
} & {
|
|
@@ -528,7 +656,7 @@ declare function __VLS_template_4(): {
|
|
|
528
656
|
focus: () => void;
|
|
529
657
|
}, {}, {}, {}, {}> | null;
|
|
530
658
|
};
|
|
531
|
-
rootEl:
|
|
659
|
+
rootEl: any;
|
|
532
660
|
};
|
|
533
661
|
|
|
534
662
|
declare function __VLS_template_5(): {
|
|
@@ -546,15 +674,103 @@ declare function __VLS_template_6(): {
|
|
|
546
674
|
slots: {
|
|
547
675
|
trigger?(_: {
|
|
548
676
|
isOpen: boolean;
|
|
549
|
-
toggle: () =>
|
|
677
|
+
toggle: () => void;
|
|
550
678
|
}): any;
|
|
551
679
|
};
|
|
552
680
|
refs: {
|
|
553
|
-
|
|
554
|
-
|
|
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;
|
|
555
771
|
popoverRef: HTMLDivElement;
|
|
556
772
|
};
|
|
557
|
-
rootEl:
|
|
773
|
+
rootEl: any;
|
|
558
774
|
};
|
|
559
775
|
|
|
560
776
|
declare function __VLS_template_7(): {
|
|
@@ -569,18 +785,31 @@ declare function __VLS_template_7(): {
|
|
|
569
785
|
declare function __VLS_template_8(): {
|
|
570
786
|
attrs: Partial<{}>;
|
|
571
787
|
slots: {
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
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;
|
|
575
799
|
};
|
|
576
|
-
refs: {
|
|
577
|
-
|
|
800
|
+
refs: {
|
|
801
|
+
triggerRef: HTMLSpanElement;
|
|
802
|
+
floatingRef: HTMLDivElement;
|
|
803
|
+
};
|
|
804
|
+
rootEl: any;
|
|
578
805
|
};
|
|
579
806
|
|
|
580
807
|
declare function __VLS_template_9(): {
|
|
581
808
|
attrs: Partial<{}>;
|
|
582
809
|
slots: {
|
|
583
|
-
|
|
810
|
+
'back-button'?(_: {}): any;
|
|
811
|
+
center?(_: {}): any;
|
|
812
|
+
right?(_: {}): any;
|
|
584
813
|
};
|
|
585
814
|
refs: {};
|
|
586
815
|
rootEl: HTMLDivElement;
|
|
@@ -598,6 +827,8 @@ declare type __VLS_TemplateResult_13 = ReturnType<typeof __VLS_template_13>;
|
|
|
598
827
|
|
|
599
828
|
declare type __VLS_TemplateResult_14 = ReturnType<typeof __VLS_template_14>;
|
|
600
829
|
|
|
830
|
+
declare type __VLS_TemplateResult_15 = ReturnType<typeof __VLS_template_15>;
|
|
831
|
+
|
|
601
832
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
602
833
|
|
|
603
834
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
@@ -650,6 +881,12 @@ declare type __VLS_WithTemplateSlots_14<T, S> = T & {
|
|
|
650
881
|
};
|
|
651
882
|
};
|
|
652
883
|
|
|
884
|
+
declare type __VLS_WithTemplateSlots_15<T, S> = T & {
|
|
885
|
+
new (): {
|
|
886
|
+
$slots: S;
|
|
887
|
+
};
|
|
888
|
+
};
|
|
889
|
+
|
|
653
890
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
654
891
|
new (): {
|
|
655
892
|
$slots: S;
|
|
@@ -981,8 +1218,97 @@ action?: string | (() => void);
|
|
|
981
1218
|
onNavigate?: ((url: string) => any) | undefined;
|
|
982
1219
|
onCheckboxChange?: ((label: string, checked: boolean) => any) | undefined;
|
|
983
1220
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
984
|
-
|
|
985
|
-
|
|
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>;
|
|
986
1312
|
|
|
987
1313
|
declare interface NexxtDropdownButton_2 {
|
|
988
1314
|
label: string;
|
|
@@ -1005,7 +1331,14 @@ declare interface NexxtDropdownButtonGroup {
|
|
|
1005
1331
|
items: NexxtDropdownButton_2[];
|
|
1006
1332
|
}
|
|
1007
1333
|
|
|
1008
|
-
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"]>;
|
|
1009
1342
|
|
|
1010
1343
|
declare interface NexxtHeaderProps {
|
|
1011
1344
|
title: string;
|
|
@@ -1021,14 +1354,14 @@ declare interface NexxtIconProps {
|
|
|
1021
1354
|
type?: IconType;
|
|
1022
1355
|
}
|
|
1023
1356
|
|
|
1024
|
-
export declare const NexxtInfoBlock:
|
|
1357
|
+
export declare const NexxtInfoBlock: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
1025
1358
|
|
|
1026
1359
|
declare interface NexxtInfoBlockProps {
|
|
1027
1360
|
icon: InstanceType<typeof NexxtIcon>['name'];
|
|
1028
1361
|
color?: 'green' | 'purple' | 'blue' | 'rose';
|
|
1029
1362
|
}
|
|
1030
1363
|
|
|
1031
|
-
export declare const NexxtInputField:
|
|
1364
|
+
export declare const NexxtInputField: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
1032
1365
|
|
|
1033
1366
|
declare interface NexxtInputFieldProps {
|
|
1034
1367
|
placeholder?: string;
|
|
@@ -1040,7 +1373,7 @@ declare interface NexxtInputFieldProps {
|
|
|
1040
1373
|
required?: boolean;
|
|
1041
1374
|
}
|
|
1042
1375
|
|
|
1043
|
-
export declare const NexxtModal:
|
|
1376
|
+
export declare const NexxtModal: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
1044
1377
|
|
|
1045
1378
|
declare interface NexxtModalProps {
|
|
1046
1379
|
title?: string;
|
|
@@ -1161,7 +1494,7 @@ declare interface NexxtSourceProps {
|
|
|
1161
1494
|
source: keyof typeof SOURCE_MAP;
|
|
1162
1495
|
}
|
|
1163
1496
|
|
|
1164
|
-
export declare const NexxtStepperHeader:
|
|
1497
|
+
export declare const NexxtStepperHeader: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
1165
1498
|
|
|
1166
1499
|
declare interface NexxtStepperHeaderProps {
|
|
1167
1500
|
title: string;
|
|
@@ -1171,7 +1504,7 @@ declare interface NexxtStepperHeaderProps {
|
|
|
1171
1504
|
backButtonAction: InstanceType<typeof NexxtHeader>['backButtonAction'];
|
|
1172
1505
|
}
|
|
1173
1506
|
|
|
1174
|
-
export declare const NexxtTabbedContent:
|
|
1507
|
+
export declare const NexxtTabbedContent: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
1175
1508
|
|
|
1176
1509
|
declare interface NexxtTabbedContent_2 {
|
|
1177
1510
|
tabs: InstanceType<typeof NexxtTabs>['tabs'];
|
|
@@ -1215,9 +1548,9 @@ declare interface NexxtTableProps<TKey extends string = string, TRow extends Rec
|
|
|
1215
1548
|
loading?: boolean;
|
|
1216
1549
|
}
|
|
1217
1550
|
|
|
1218
|
-
export declare const NexxtTabs: DefineComponent<
|
|
1551
|
+
export declare const NexxtTabs: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1219
1552
|
"update:modelValue": (value: string) => any;
|
|
1220
|
-
}, string, PublicProps, Readonly<
|
|
1553
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
1221
1554
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1222
1555
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1223
1556
|
containerRef: HTMLDivElement;
|
|
@@ -1228,13 +1561,13 @@ declare interface NexxtTabs_2 {
|
|
|
1228
1561
|
tablistLabel?: string;
|
|
1229
1562
|
}
|
|
1230
1563
|
|
|
1231
|
-
export declare const NexxtTimelineEvent: DefineComponent<
|
|
1564
|
+
export declare const NexxtTimelineEvent: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
|
|
1232
1565
|
splitView: boolean;
|
|
1233
1566
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1234
1567
|
|
|
1235
|
-
export declare const NexxtTimelinePhaseblock: DefineComponent<
|
|
1568
|
+
export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1236
1569
|
|
|
1237
|
-
export declare const NexxtTooltip:
|
|
1570
|
+
export declare const NexxtTooltip: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
1238
1571
|
|
|
1239
1572
|
declare interface NexxtTooltip_2 {
|
|
1240
1573
|
delay?: number;
|