@nexxtmove/ui 0.1.40 → 0.1.42
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 +54 -13
- package/dist/index.js +1221 -1085
- package/dist/nuxt.js +12 -11
- package/package.json +1 -1
- package/src/components/Modal/Modal.vue +123 -0
- package/src/components/Pagination/Pagination.vue +1 -1
- package/src/components.json +1 -0
- package/src/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -41,13 +41,19 @@ declare const __VLS_component_6: DefineComponent<__VLS_PublicProps_4, {}, {}, {}
|
|
|
41
41
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
42
42
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
43
43
|
|
|
44
|
-
declare const __VLS_component_7: DefineComponent<
|
|
44
|
+
declare const __VLS_component_7: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
45
|
+
"update:modelValue": (value: boolean) => any;
|
|
46
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
47
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
48
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
49
|
+
|
|
50
|
+
declare const __VLS_component_8: DefineComponent<NexxtStepperHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
45
51
|
"update:currentStep": (...args: any[]) => void;
|
|
46
52
|
}, string, PublicProps, Readonly<NexxtStepperHeaderProps> & Readonly<{
|
|
47
53
|
"onUpdate:currentStep"?: ((...args: any[]) => any) | undefined;
|
|
48
54
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
49
55
|
|
|
50
|
-
declare const
|
|
56
|
+
declare const __VLS_component_9: DefineComponent<NexxtTooltip_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTooltip_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
51
57
|
|
|
52
58
|
declare type __VLS_PrettifyLocal<T> = {
|
|
53
59
|
[K in keyof T]: T[K];
|
|
@@ -67,14 +73,16 @@ declare type __VLS_Props_4 = NexxtDatePickerProps;
|
|
|
67
73
|
|
|
68
74
|
declare type __VLS_Props_5 = NexxtInputFieldProps;
|
|
69
75
|
|
|
70
|
-
declare type __VLS_Props_6 =
|
|
76
|
+
declare type __VLS_Props_6 = NexxtModalProps;
|
|
71
77
|
|
|
72
|
-
declare type __VLS_Props_7 =
|
|
78
|
+
declare type __VLS_Props_7 = NexxtPaginationProps;
|
|
79
|
+
|
|
80
|
+
declare type __VLS_Props_8 = {
|
|
73
81
|
event: TimelineEvent;
|
|
74
82
|
splitView?: boolean;
|
|
75
83
|
};
|
|
76
84
|
|
|
77
|
-
declare type
|
|
85
|
+
declare type __VLS_Props_9 = {
|
|
78
86
|
phase: TimelinePhase;
|
|
79
87
|
/** Index within the filtered phases array (used to determine phase direction/date). */
|
|
80
88
|
index: number;
|
|
@@ -101,9 +109,13 @@ declare type __VLS_PublicProps_4 = {
|
|
|
101
109
|
} & __VLS_Props_5;
|
|
102
110
|
|
|
103
111
|
declare type __VLS_PublicProps_5 = {
|
|
104
|
-
|
|
112
|
+
modelValue?: boolean;
|
|
105
113
|
} & __VLS_Props_6;
|
|
106
114
|
|
|
115
|
+
declare type __VLS_PublicProps_6 = {
|
|
116
|
+
'page'?: number;
|
|
117
|
+
} & __VLS_Props_7;
|
|
118
|
+
|
|
107
119
|
declare function __VLS_template(): {
|
|
108
120
|
attrs: Partial<{}>;
|
|
109
121
|
slots: {
|
|
@@ -170,12 +182,22 @@ declare function __VLS_template_7(): {
|
|
|
170
182
|
attrs: Partial<{}>;
|
|
171
183
|
slots: {
|
|
172
184
|
default?(_: {}): any;
|
|
185
|
+
footer?(_: {}): any;
|
|
173
186
|
};
|
|
174
187
|
refs: {};
|
|
175
|
-
rootEl:
|
|
188
|
+
rootEl: any;
|
|
176
189
|
};
|
|
177
190
|
|
|
178
191
|
declare function __VLS_template_8(): {
|
|
192
|
+
attrs: Partial<{}>;
|
|
193
|
+
slots: {
|
|
194
|
+
default?(_: {}): any;
|
|
195
|
+
};
|
|
196
|
+
refs: {};
|
|
197
|
+
rootEl: HTMLDivElement;
|
|
198
|
+
};
|
|
199
|
+
|
|
200
|
+
declare function __VLS_template_9(): {
|
|
179
201
|
attrs: Partial<{}>;
|
|
180
202
|
slots: {
|
|
181
203
|
default?(_: {}): any;
|
|
@@ -201,6 +223,8 @@ declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
|
|
|
201
223
|
|
|
202
224
|
declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
|
|
203
225
|
|
|
226
|
+
declare type __VLS_TemplateResult_9 = ReturnType<typeof __VLS_template_9>;
|
|
227
|
+
|
|
204
228
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
205
229
|
new (): {
|
|
206
230
|
$slots: S;
|
|
@@ -249,6 +273,12 @@ declare type __VLS_WithTemplateSlots_8<T, S> = T & {
|
|
|
249
273
|
};
|
|
250
274
|
};
|
|
251
275
|
|
|
276
|
+
declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
277
|
+
new (): {
|
|
278
|
+
$slots: S;
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
|
|
252
282
|
declare type CalendarAnchor = 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
253
283
|
|
|
254
284
|
declare interface CalendarDayViewProps {
|
|
@@ -437,9 +467,20 @@ declare interface NexxtInputFieldProps {
|
|
|
437
467
|
rightIcon?: InstanceType<typeof NexxtIcon>['name'];
|
|
438
468
|
}
|
|
439
469
|
|
|
440
|
-
export declare const
|
|
470
|
+
export declare const NexxtModal: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
471
|
+
|
|
472
|
+
declare interface NexxtModalProps {
|
|
473
|
+
title?: string;
|
|
474
|
+
description?: string;
|
|
475
|
+
size?: 'sm' | 'md' | 'lg';
|
|
476
|
+
dismissible?: boolean;
|
|
477
|
+
showClose?: boolean;
|
|
478
|
+
beforeClose?: () => boolean | Promise<boolean>;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
export declare const NexxtPagination: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
441
482
|
"update:page": (value: number) => any;
|
|
442
|
-
}, string, PublicProps, Readonly<
|
|
483
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
443
484
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
444
485
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
445
486
|
|
|
@@ -513,7 +554,7 @@ declare interface NexxtSocialMediaTypeProps {
|
|
|
513
554
|
icons?: SocialPlatform[];
|
|
514
555
|
}
|
|
515
556
|
|
|
516
|
-
export declare const NexxtStepperHeader:
|
|
557
|
+
export declare const NexxtStepperHeader: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
517
558
|
|
|
518
559
|
declare interface NexxtStepperHeaderProps {
|
|
519
560
|
title: string;
|
|
@@ -559,13 +600,13 @@ declare interface NexxtTableProps<TKey extends string = string, TRow extends Rec
|
|
|
559
600
|
loading?: boolean;
|
|
560
601
|
}
|
|
561
602
|
|
|
562
|
-
export declare const NexxtTimelineEvent: DefineComponent<
|
|
603
|
+
export declare const NexxtTimelineEvent: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
|
|
563
604
|
splitView: boolean;
|
|
564
605
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
565
606
|
|
|
566
|
-
export declare const NexxtTimelinePhaseblock: DefineComponent<
|
|
607
|
+
export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
567
608
|
|
|
568
|
-
export declare const NexxtTooltip:
|
|
609
|
+
export declare const NexxtTooltip: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
569
610
|
|
|
570
611
|
declare interface NexxtTooltip_2 {
|
|
571
612
|
delay?: number;
|