@nexxtmove/ui 0.1.32 → 0.1.33
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 +24 -4
- package/dist/index.js +1074 -979
- package/dist/nuxt.js +8 -7
- package/package.json +1 -1
- package/src/components/Pagination/Pagination.vue +93 -0
- package/src/components.json +1 -0
- package/src/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -59,12 +59,14 @@ declare type __VLS_Props_3 = NexxtCheckboxProps;
|
|
|
59
59
|
|
|
60
60
|
declare type __VLS_Props_4 = NexxtDatePickerProps;
|
|
61
61
|
|
|
62
|
-
declare type __VLS_Props_5 =
|
|
62
|
+
declare type __VLS_Props_5 = NexxtPaginationProps;
|
|
63
|
+
|
|
64
|
+
declare type __VLS_Props_6 = {
|
|
63
65
|
event: TimelineEvent;
|
|
64
66
|
splitView?: boolean;
|
|
65
67
|
};
|
|
66
68
|
|
|
67
|
-
declare type
|
|
69
|
+
declare type __VLS_Props_7 = {
|
|
68
70
|
phase: TimelinePhase;
|
|
69
71
|
/** Index within the filtered phases array (used to determine phase direction/date). */
|
|
70
72
|
index: number;
|
|
@@ -86,6 +88,10 @@ declare type __VLS_PublicProps_3 = {
|
|
|
86
88
|
modelValue?: Date | null;
|
|
87
89
|
} & __VLS_Props_4;
|
|
88
90
|
|
|
91
|
+
declare type __VLS_PublicProps_4 = {
|
|
92
|
+
'page'?: number;
|
|
93
|
+
} & __VLS_Props_5;
|
|
94
|
+
|
|
89
95
|
declare function __VLS_template(): {
|
|
90
96
|
attrs: Partial<{}>;
|
|
91
97
|
slots: {
|
|
@@ -370,6 +376,20 @@ declare interface NexxtInfoBlockProps {
|
|
|
370
376
|
color?: 'green' | 'purple' | 'blue' | 'rose';
|
|
371
377
|
}
|
|
372
378
|
|
|
379
|
+
export declare const NexxtPagination: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
380
|
+
"update:page": (value: number) => any;
|
|
381
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
382
|
+
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
383
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
384
|
+
|
|
385
|
+
declare interface NexxtPaginationProps {
|
|
386
|
+
total: number;
|
|
387
|
+
itemsPerPage?: number;
|
|
388
|
+
siblingCount?: number;
|
|
389
|
+
showEdges?: boolean;
|
|
390
|
+
disabled?: boolean;
|
|
391
|
+
}
|
|
392
|
+
|
|
373
393
|
export declare const NexxtProgressBar: DefineComponent<NexxtProgressBarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
374
394
|
"update:currentStep": (...args: any[]) => void;
|
|
375
395
|
}, string, PublicProps, Readonly<NexxtProgressBarProps> & Readonly<{
|
|
@@ -470,11 +490,11 @@ declare interface NexxtTableProps<TKey extends string = string> {
|
|
|
470
490
|
modelValue?: number[];
|
|
471
491
|
}
|
|
472
492
|
|
|
473
|
-
export declare const NexxtTimelineEvent: DefineComponent<
|
|
493
|
+
export declare const NexxtTimelineEvent: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {
|
|
474
494
|
splitView: boolean;
|
|
475
495
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
476
496
|
|
|
477
|
-
export declare const NexxtTimelinePhaseblock: DefineComponent<
|
|
497
|
+
export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
478
498
|
|
|
479
499
|
export declare const NexxtTooltip: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
480
500
|
|