@nexxtmove/ui 0.1.69 → 0.1.71
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 +65 -67
- package/dist/index.js +1000 -991
- package/package.json +2 -2
- package/src/components/CountrySelect/CountrySelect.vue +19 -13
- package/src/components/FloatingPanel/FloatingPanel.vue +17 -3
- package/dist/ui.css +0 -2
package/dist/index.d.ts
CHANGED
|
@@ -31,15 +31,15 @@ declare const __VLS_component: DefineComponent<NexxtButtonProps, {}, {}, {}, {},
|
|
|
31
31
|
|
|
32
32
|
declare const __VLS_component_10: DefineComponent<NexxtInfoBlockProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtInfoBlockProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
33
33
|
|
|
34
|
-
declare const __VLS_component_11: DefineComponent<
|
|
34
|
+
declare const __VLS_component_11: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
35
35
|
"update:modelValue": (value: string | number) => any;
|
|
36
|
-
}, string, PublicProps, Readonly<
|
|
36
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
37
37
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
38
38
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
39
|
|
|
40
|
-
declare const __VLS_component_12: DefineComponent<
|
|
40
|
+
declare const __VLS_component_12: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
41
41
|
"update:modelValue": (value: boolean) => any;
|
|
42
|
-
}, string, PublicProps, Readonly<
|
|
42
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
43
43
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
44
44
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
45
45
|
|
|
@@ -49,9 +49,9 @@ declare const __VLS_component_13: DefineComponent<NexxtStepperHeaderProps, {}, {
|
|
|
49
49
|
"onUpdate:currentStep"?: ((...args: any[]) => any) | undefined;
|
|
50
50
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
51
51
|
|
|
52
|
-
declare const __VLS_component_14: DefineComponent<
|
|
52
|
+
declare const __VLS_component_14: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
53
53
|
"update:modelValue": (value: string) => any;
|
|
54
|
-
}, string, PublicProps, Readonly<
|
|
54
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
55
55
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
56
56
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
57
57
|
|
|
@@ -241,9 +241,9 @@ focus: () => void;
|
|
|
241
241
|
|
|
242
242
|
declare const __VLS_component_5: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
243
243
|
|
|
244
|
-
declare const __VLS_component_6: DefineComponent<
|
|
244
|
+
declare const __VLS_component_6: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
245
245
|
"update:modelValue": (value: Date | null) => any;
|
|
246
|
-
}, string, PublicProps, Readonly<
|
|
246
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
|
|
247
247
|
"onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
|
|
248
248
|
}>, {
|
|
249
249
|
placeholder: string;
|
|
@@ -282,9 +282,9 @@ onClose?: (() => any) | undefined;
|
|
|
282
282
|
onOpen?: (() => any) | undefined;
|
|
283
283
|
}>, {
|
|
284
284
|
isOpen: Ref<boolean, boolean>;
|
|
285
|
-
open: () => void
|
|
285
|
+
open: () => Promise<void>;
|
|
286
286
|
close: () => void;
|
|
287
|
-
toggle: () => void
|
|
287
|
+
toggle: () => void | Promise<void>;
|
|
288
288
|
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
289
289
|
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
290
290
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -323,23 +323,23 @@ onClose?: (() => any) | undefined;
|
|
|
323
323
|
onOpen?: (() => any) | undefined;
|
|
324
324
|
}>, "close" | "open" | "isOpen" | "toggle" | "triggerRef" | "floatingRef" | ("placement" | "offsetDistance" | "matchWidth")> & ShallowUnwrapRef< {
|
|
325
325
|
isOpen: Ref<boolean, boolean>;
|
|
326
|
-
open: () => void
|
|
326
|
+
open: () => Promise<void>;
|
|
327
327
|
close: () => void;
|
|
328
|
-
toggle: () => void
|
|
328
|
+
toggle: () => void | Promise<void>;
|
|
329
329
|
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
330
330
|
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
331
331
|
}> & {} & ComponentCustomProperties & {} & {
|
|
332
332
|
$slots: {
|
|
333
333
|
trigger?(_: {
|
|
334
334
|
isOpen: boolean;
|
|
335
|
-
toggle: () => void
|
|
336
|
-
open: () => void
|
|
335
|
+
toggle: () => void | Promise<void>;
|
|
336
|
+
open: () => Promise<void>;
|
|
337
337
|
close: () => void;
|
|
338
338
|
}): any;
|
|
339
339
|
content?(_: {
|
|
340
340
|
isOpen: true;
|
|
341
341
|
close: () => void;
|
|
342
|
-
toggle: () => void
|
|
342
|
+
toggle: () => void | Promise<void>;
|
|
343
343
|
}): any;
|
|
344
344
|
};
|
|
345
345
|
}) | null;
|
|
@@ -350,9 +350,9 @@ declare const __VLS_component_7: DefineComponent<NexxtDoughnutChartProps, {}, {}
|
|
|
350
350
|
|
|
351
351
|
declare const __VLS_component_8: DefineComponent<NexxtFloatingPanelProps, {
|
|
352
352
|
isOpen: Ref<boolean, boolean>;
|
|
353
|
-
open: () => void
|
|
353
|
+
open: () => Promise<void>;
|
|
354
354
|
close: () => void;
|
|
355
|
-
toggle: () => void
|
|
355
|
+
toggle: () => void | Promise<void>;
|
|
356
356
|
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
357
357
|
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
358
358
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -382,16 +382,14 @@ declare type __VLS_Props = {
|
|
|
382
382
|
delay?: number;
|
|
383
383
|
};
|
|
384
384
|
|
|
385
|
-
declare type __VLS_Props_10 =
|
|
385
|
+
declare type __VLS_Props_10 = NexxtTabs_2;
|
|
386
386
|
|
|
387
|
-
declare type __VLS_Props_11 =
|
|
388
|
-
|
|
389
|
-
declare type __VLS_Props_12 = {
|
|
387
|
+
declare type __VLS_Props_11 = {
|
|
390
388
|
event: TimelineEvent;
|
|
391
389
|
splitView?: boolean;
|
|
392
390
|
};
|
|
393
391
|
|
|
394
|
-
declare type
|
|
392
|
+
declare type __VLS_Props_12 = {
|
|
395
393
|
phase: TimelinePhase;
|
|
396
394
|
/** Index within the filtered phases array (used to determine phase direction/date). */
|
|
397
395
|
index: number;
|
|
@@ -405,56 +403,52 @@ declare type __VLS_Props_2 = NexxtCalendarProps;
|
|
|
405
403
|
|
|
406
404
|
declare type __VLS_Props_3 = NexxtCheckboxProps;
|
|
407
405
|
|
|
408
|
-
declare type __VLS_Props_4 =
|
|
406
|
+
declare type __VLS_Props_4 = NexxtDatePickerProps;
|
|
409
407
|
|
|
410
|
-
declare type __VLS_Props_5 =
|
|
408
|
+
declare type __VLS_Props_5 = NexxtInputFieldProps;
|
|
411
409
|
|
|
412
|
-
declare type __VLS_Props_6 =
|
|
410
|
+
declare type __VLS_Props_6 = NexxtModalProps;
|
|
413
411
|
|
|
414
|
-
declare type __VLS_Props_7 =
|
|
412
|
+
declare type __VLS_Props_7 = NexxtPaginationProps;
|
|
415
413
|
|
|
416
|
-
declare type __VLS_Props_8 =
|
|
414
|
+
declare type __VLS_Props_8 = NexxtSelectProps;
|
|
417
415
|
|
|
418
|
-
declare type __VLS_Props_9 =
|
|
416
|
+
declare type __VLS_Props_9 = NexxtTabbedContent_2;
|
|
419
417
|
|
|
420
418
|
declare type __VLS_PublicProps = {
|
|
421
419
|
modelValue?: Date | null;
|
|
422
420
|
} & __VLS_Props_2;
|
|
423
421
|
|
|
424
|
-
declare type __VLS_PublicProps_10 = {
|
|
425
|
-
modelValue?: typeof selected['value'];
|
|
426
|
-
} & __VLS_Props_11;
|
|
427
|
-
|
|
428
422
|
declare type __VLS_PublicProps_2 = {
|
|
429
423
|
modelValue?: boolean;
|
|
430
424
|
} & __VLS_Props_3;
|
|
431
425
|
|
|
432
426
|
declare type __VLS_PublicProps_3 = {
|
|
433
|
-
modelValue?:
|
|
427
|
+
modelValue?: Date | null;
|
|
434
428
|
} & __VLS_Props_4;
|
|
435
429
|
|
|
436
430
|
declare type __VLS_PublicProps_4 = {
|
|
437
|
-
modelValue?:
|
|
431
|
+
modelValue?: string | number;
|
|
438
432
|
} & __VLS_Props_5;
|
|
439
433
|
|
|
440
434
|
declare type __VLS_PublicProps_5 = {
|
|
441
|
-
modelValue?:
|
|
435
|
+
modelValue?: boolean;
|
|
442
436
|
} & __VLS_Props_6;
|
|
443
437
|
|
|
444
438
|
declare type __VLS_PublicProps_6 = {
|
|
445
|
-
|
|
439
|
+
'page'?: number;
|
|
446
440
|
} & __VLS_Props_7;
|
|
447
441
|
|
|
448
442
|
declare type __VLS_PublicProps_7 = {
|
|
449
|
-
|
|
443
|
+
modelValue?: string | number | null;
|
|
450
444
|
} & __VLS_Props_8;
|
|
451
445
|
|
|
452
446
|
declare type __VLS_PublicProps_8 = {
|
|
453
|
-
modelValue?: string
|
|
447
|
+
modelValue?: string;
|
|
454
448
|
} & __VLS_Props_9;
|
|
455
449
|
|
|
456
450
|
declare type __VLS_PublicProps_9 = {
|
|
457
|
-
modelValue?:
|
|
451
|
+
modelValue?: typeof selected['value'];
|
|
458
452
|
} & __VLS_Props_10;
|
|
459
453
|
|
|
460
454
|
declare function __VLS_template(): {
|
|
@@ -690,7 +684,7 @@ declare function __VLS_template_6(): {
|
|
|
690
684
|
slots: {
|
|
691
685
|
trigger?(_: {
|
|
692
686
|
isOpen: boolean;
|
|
693
|
-
toggle: () => void
|
|
687
|
+
toggle: () => void | Promise<void>;
|
|
694
688
|
}): any;
|
|
695
689
|
};
|
|
696
690
|
refs: {
|
|
@@ -726,9 +720,9 @@ declare function __VLS_template_6(): {
|
|
|
726
720
|
onOpen?: (() => any) | undefined;
|
|
727
721
|
}>, {
|
|
728
722
|
isOpen: Ref<boolean, boolean>;
|
|
729
|
-
open: () => void
|
|
723
|
+
open: () => Promise<void>;
|
|
730
724
|
close: () => void;
|
|
731
|
-
toggle: () => void
|
|
725
|
+
toggle: () => void | Promise<void>;
|
|
732
726
|
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
733
727
|
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
734
728
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -767,23 +761,23 @@ declare function __VLS_template_6(): {
|
|
|
767
761
|
onOpen?: (() => any) | undefined;
|
|
768
762
|
}>, "close" | "open" | "isOpen" | "toggle" | "triggerRef" | "floatingRef" | ("placement" | "offsetDistance" | "matchWidth")> & ShallowUnwrapRef< {
|
|
769
763
|
isOpen: Ref<boolean, boolean>;
|
|
770
|
-
open: () => void
|
|
764
|
+
open: () => Promise<void>;
|
|
771
765
|
close: () => void;
|
|
772
|
-
toggle: () => void
|
|
766
|
+
toggle: () => void | Promise<void>;
|
|
773
767
|
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
774
768
|
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
775
769
|
}> & {} & ComponentCustomProperties & {} & {
|
|
776
770
|
$slots: {
|
|
777
771
|
trigger?(_: {
|
|
778
772
|
isOpen: boolean;
|
|
779
|
-
toggle: () => void
|
|
780
|
-
open: () => void
|
|
773
|
+
toggle: () => void | Promise<void>;
|
|
774
|
+
open: () => Promise<void>;
|
|
781
775
|
close: () => void;
|
|
782
776
|
}): any;
|
|
783
777
|
content?(_: {
|
|
784
778
|
isOpen: true;
|
|
785
779
|
close: () => void;
|
|
786
|
-
toggle: () => void
|
|
780
|
+
toggle: () => void | Promise<void>;
|
|
787
781
|
}): any;
|
|
788
782
|
};
|
|
789
783
|
}) | null;
|
|
@@ -806,14 +800,14 @@ declare function __VLS_template_8(): {
|
|
|
806
800
|
slots: {
|
|
807
801
|
trigger?(_: {
|
|
808
802
|
isOpen: boolean;
|
|
809
|
-
toggle: () => void
|
|
810
|
-
open: () => void
|
|
803
|
+
toggle: () => void | Promise<void>;
|
|
804
|
+
open: () => Promise<void>;
|
|
811
805
|
close: () => void;
|
|
812
806
|
}): any;
|
|
813
807
|
content?(_: {
|
|
814
808
|
isOpen: true;
|
|
815
809
|
close: () => void;
|
|
816
|
-
toggle: () => void
|
|
810
|
+
toggle: () => void | Promise<void>;
|
|
817
811
|
}): any;
|
|
818
812
|
};
|
|
819
813
|
refs: {
|
|
@@ -1180,9 +1174,13 @@ right?(_: {}): any;
|
|
|
1180
1174
|
|
|
1181
1175
|
export declare const NexxtContactInfoCard: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
1182
1176
|
|
|
1183
|
-
export declare const NexxtCountrySelect: DefineComponent<
|
|
1177
|
+
export declare const NexxtCountrySelect: DefineComponent< {
|
|
1178
|
+
modelValue?: string | null;
|
|
1179
|
+
} & NexxtCountrySelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1184
1180
|
"update:modelValue": (value: string | null) => any;
|
|
1185
|
-
}, string, PublicProps, Readonly<
|
|
1181
|
+
}, string, PublicProps, Readonly<{
|
|
1182
|
+
modelValue?: string | null;
|
|
1183
|
+
} & NexxtCountrySelectProps> & Readonly<{
|
|
1186
1184
|
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
1187
1185
|
}>, {
|
|
1188
1186
|
placeholder: string;
|
|
@@ -1353,9 +1351,9 @@ onClose?: (() => any) | undefined;
|
|
|
1353
1351
|
onOpen?: (() => any) | undefined;
|
|
1354
1352
|
}>, {
|
|
1355
1353
|
isOpen: Ref<boolean, boolean>;
|
|
1356
|
-
open: () => void
|
|
1354
|
+
open: () => Promise<void>;
|
|
1357
1355
|
close: () => void;
|
|
1358
|
-
toggle: () => void
|
|
1356
|
+
toggle: () => void | Promise<void>;
|
|
1359
1357
|
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
1360
1358
|
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
1361
1359
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -1394,23 +1392,23 @@ onClose?: (() => any) | undefined;
|
|
|
1394
1392
|
onOpen?: (() => any) | undefined;
|
|
1395
1393
|
}>, "close" | "open" | "isOpen" | "toggle" | "triggerRef" | "floatingRef" | ("placement" | "offsetDistance" | "matchWidth")> & ShallowUnwrapRef< {
|
|
1396
1394
|
isOpen: Ref<boolean, boolean>;
|
|
1397
|
-
open: () => void
|
|
1395
|
+
open: () => Promise<void>;
|
|
1398
1396
|
close: () => void;
|
|
1399
|
-
toggle: () => void
|
|
1397
|
+
toggle: () => void | Promise<void>;
|
|
1400
1398
|
triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
1401
1399
|
floatingRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
1402
1400
|
}> & {} & ComponentCustomProperties & {} & {
|
|
1403
1401
|
$slots: {
|
|
1404
1402
|
trigger?(_: {
|
|
1405
1403
|
isOpen: boolean;
|
|
1406
|
-
toggle: () => void
|
|
1407
|
-
open: () => void
|
|
1404
|
+
toggle: () => void | Promise<void>;
|
|
1405
|
+
open: () => Promise<void>;
|
|
1408
1406
|
close: () => void;
|
|
1409
1407
|
}): any;
|
|
1410
1408
|
content?(_: {
|
|
1411
1409
|
isOpen: true;
|
|
1412
1410
|
close: () => void;
|
|
1413
|
-
toggle: () => void
|
|
1411
|
+
toggle: () => void | Promise<void>;
|
|
1414
1412
|
}): any;
|
|
1415
1413
|
};
|
|
1416
1414
|
}) | null;
|
|
@@ -1491,9 +1489,9 @@ declare interface NexxtModalProps {
|
|
|
1491
1489
|
beforeClose?: () => boolean | Promise<boolean>;
|
|
1492
1490
|
}
|
|
1493
1491
|
|
|
1494
|
-
export declare const NexxtPagination: DefineComponent<
|
|
1492
|
+
export declare const NexxtPagination: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1495
1493
|
"update:page": (value: number) => any;
|
|
1496
|
-
}, string, PublicProps, Readonly<
|
|
1494
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
1497
1495
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
1498
1496
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1499
1497
|
|
|
@@ -1537,9 +1535,9 @@ declare interface NexxtPropertyCardProps {
|
|
|
1537
1535
|
|
|
1538
1536
|
export declare const NexxtPropertyListing: DefineComponent<Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1539
1537
|
|
|
1540
|
-
export declare const NexxtSelect: DefineComponent<
|
|
1538
|
+
export declare const NexxtSelect: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1541
1539
|
"update:modelValue": (value: string | number | null) => any;
|
|
1542
|
-
}, string, PublicProps, Readonly<
|
|
1540
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
1543
1541
|
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
1544
1542
|
}>, {
|
|
1545
1543
|
placeholder: string;
|
|
@@ -1676,9 +1674,9 @@ declare interface NexxtTableProps<TKey extends string = string, TRow extends Rec
|
|
|
1676
1674
|
loading?: boolean;
|
|
1677
1675
|
}
|
|
1678
1676
|
|
|
1679
|
-
export declare const NexxtTabs: DefineComponent<
|
|
1677
|
+
export declare const NexxtTabs: DefineComponent<__VLS_PublicProps_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1680
1678
|
"update:modelValue": (value: string) => any;
|
|
1681
|
-
}, string, PublicProps, Readonly<
|
|
1679
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_9> & Readonly<{
|
|
1682
1680
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1683
1681
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1684
1682
|
containerRef: HTMLDivElement;
|
|
@@ -1689,11 +1687,11 @@ declare interface NexxtTabs_2 {
|
|
|
1689
1687
|
tablistLabel?: string;
|
|
1690
1688
|
}
|
|
1691
1689
|
|
|
1692
|
-
export declare const NexxtTimelineEvent: DefineComponent<
|
|
1690
|
+
export declare const NexxtTimelineEvent: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {
|
|
1693
1691
|
splitView: boolean;
|
|
1694
1692
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1695
1693
|
|
|
1696
|
-
export declare const NexxtTimelinePhaseblock: DefineComponent<
|
|
1694
|
+
export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1697
1695
|
|
|
1698
1696
|
export declare const NexxtTooltip: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
1699
1697
|
|