@nexxtmove/ui 0.1.22 → 0.1.23
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 +75 -8
- package/dist/index.js +2408 -252
- package/dist/nuxt.d.ts +1 -0
- package/dist/nuxt.js +49 -0
- package/package.json +23 -13
- package/src/assets/images/Template_aanvragen.jpg +0 -0
- package/src/assets/svg/type_post.svg +1 -0
- package/src/assets/svg/type_reel.svg +54 -0
- package/src/assets/svg/type_story.svg +46 -0
- package/src/assets/svg/type_tiktok.svg +1 -0
- package/src/assets/video/Template_aanvragen.mp4 +0 -0
- package/src/components/AnimatedNumber/AnimatedNumber.stories.ts +15 -0
- package/src/components/AnimatedNumber/AnimatedNumber.test.ts +56 -0
- package/src/components/AnimatedNumber/AnimatedNumber.vue +61 -0
- package/src/components/Button/Button.stories.ts +212 -0
- package/src/components/Button/Button.test.ts +318 -0
- package/src/components/Button/Button.vue +67 -0
- package/src/components/Calendar/Calendar.stories.ts +91 -0
- package/src/components/Calendar/Calendar.test.ts +269 -0
- package/src/components/Calendar/Calendar.vue +221 -0
- package/src/components/Calendar/_CalendarDayView.test.ts +145 -0
- package/src/components/Calendar/_CalendarDayView.vue +156 -0
- package/src/components/Calendar/_CalendarHeader.test.ts +86 -0
- package/src/components/Calendar/_CalendarHeader.vue +123 -0
- package/src/components/Calendar/_CalendarMonthView.test.ts +68 -0
- package/src/components/Calendar/_CalendarMonthView.vue +70 -0
- package/src/components/Calendar/_CalendarYearView.vue +77 -0
- package/src/components/Calendar/calendar.types.ts +10 -0
- package/src/components/Chip/Chip.stories.ts +42 -0
- package/src/components/Chip/Chip.test.ts +51 -0
- package/src/components/Chip/Chip.vue +37 -0
- package/src/components/DatePicker/DatePicker.stories.ts +149 -0
- package/src/components/DatePicker/DatePicker.test.ts +191 -0
- package/src/components/DatePicker/DatePicker.vue +142 -0
- package/src/components/Header/Header.stories.ts +48 -0
- package/src/components/Header/Header.test.ts +169 -0
- package/src/components/Header/Header.vue +42 -0
- package/src/components/Icon/Icon.stories.ts +50 -0
- package/src/components/Icon/Icon.test.ts +73 -0
- package/src/components/Icon/Icon.vue +20 -0
- package/src/components/InfoBlock/InfoBlock.stories.ts +90 -0
- package/src/components/InfoBlock/InfoBlock.test.ts +101 -0
- package/src/components/InfoBlock/InfoBlock.vue +70 -0
- package/src/components/ProgressBar/ProgressBar.stories.ts +30 -0
- package/src/components/ProgressBar/ProgressBar.test.ts +314 -0
- package/src/components/ProgressBar/ProgressBar.vue +102 -0
- package/src/components/SocialIcons/SocialIcons.stories.ts +34 -0
- package/src/components/SocialIcons/SocialIcons.test.ts +58 -0
- package/src/components/SocialIcons/SocialIcons.vue +58 -0
- package/src/components/SocialMediaCustomTemplate/SocialMediaCustomTemplate.stories.ts +11 -0
- package/src/components/SocialMediaCustomTemplate/SocialMediaCustomTemplate.test.ts +131 -0
- package/src/components/SocialMediaCustomTemplate/SocialMediaCustomTemplate.vue +55 -0
- package/src/components/SocialMediaTemplate/SocialMediaTemplate.stories.ts +71 -0
- package/src/components/SocialMediaTemplate/SocialMediaTemplate.test.ts +466 -0
- package/src/components/SocialMediaTemplate/SocialMediaTemplate.vue +130 -0
- package/src/components/SocialMediaType/SocialMediaType.stories.ts +43 -0
- package/src/components/SocialMediaType/SocialMediaType.test.ts +126 -0
- package/src/components/SocialMediaType/SocialMediaType.vue +117 -0
- package/src/components/StepperHeader/StepperHeader.stories.ts +47 -0
- package/src/components/StepperHeader/StepperHeader.test.ts +244 -0
- package/src/components/StepperHeader/StepperHeader.vue +37 -0
- package/src/components.json +16 -0
- package/src/env.d.ts +23 -0
- package/src/index.css +2 -0
- package/src/index.ts +15 -0
- package/src/nuxt.ts +50 -0
package/dist/index.d.ts
CHANGED
|
@@ -2,17 +2,33 @@ import { ComponentOptionsMixin } from 'vue';
|
|
|
2
2
|
import { ComponentProvideOptions } from 'vue';
|
|
3
3
|
import { DefineComponent } from 'vue';
|
|
4
4
|
import { IconName } from '@awesome.me/kit-37b149f3ef/icons';
|
|
5
|
+
import { Locale } from 'date-fns';
|
|
6
|
+
import { default as NexxtCalendar } from './components/Calendar/Calendar.vue';
|
|
5
7
|
import { PublicProps } from 'vue';
|
|
6
8
|
|
|
7
9
|
declare const __VLS_component: DefineComponent<NexxtButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
8
10
|
|
|
9
11
|
declare const __VLS_component_2: DefineComponent<NexxtChipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtChipProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
10
12
|
|
|
11
|
-
declare const __VLS_component_3: DefineComponent<
|
|
13
|
+
declare const __VLS_component_3: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14
|
+
"update:modelValue": (value: Date | null) => any;
|
|
15
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
|
+
"onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
placeholder: string;
|
|
19
|
+
anchor: CalendarAnchor;
|
|
20
|
+
autoClose: boolean;
|
|
21
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
22
|
+
wrapperRef: HTMLDivElement;
|
|
23
|
+
triggerRef: HTMLSpanElement;
|
|
24
|
+
popoverRef: HTMLDivElement;
|
|
25
|
+
}, HTMLDivElement>;
|
|
26
|
+
|
|
27
|
+
declare const __VLS_component_4: DefineComponent<NexxtHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
28
|
|
|
13
|
-
declare const
|
|
29
|
+
declare const __VLS_component_5: DefineComponent<NexxtInfoBlockProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtInfoBlockProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
30
|
|
|
15
|
-
declare const
|
|
31
|
+
declare const __VLS_component_6: DefineComponent<NexxtStepperHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16
32
|
"update:currentStep": (...args: any[]) => void;
|
|
17
33
|
}, string, PublicProps, Readonly<NexxtStepperHeaderProps> & Readonly<{
|
|
18
34
|
"onUpdate:currentStep"?: ((...args: any[]) => any) | undefined;
|
|
@@ -24,6 +40,12 @@ declare type __VLS_Props = {
|
|
|
24
40
|
easing?: EasingFunction;
|
|
25
41
|
};
|
|
26
42
|
|
|
43
|
+
declare type __VLS_Props_2 = NexxtDatePickerProps;
|
|
44
|
+
|
|
45
|
+
declare type __VLS_PublicProps = {
|
|
46
|
+
modelValue?: Date | null;
|
|
47
|
+
} & __VLS_Props_2;
|
|
48
|
+
|
|
27
49
|
declare function __VLS_template(): {
|
|
28
50
|
attrs: Partial<{}>;
|
|
29
51
|
slots: {
|
|
@@ -43,6 +65,22 @@ declare function __VLS_template_2(): {
|
|
|
43
65
|
};
|
|
44
66
|
|
|
45
67
|
declare function __VLS_template_3(): {
|
|
68
|
+
attrs: Partial<{}>;
|
|
69
|
+
slots: {
|
|
70
|
+
trigger?(_: {
|
|
71
|
+
isOpen: boolean;
|
|
72
|
+
toggle: () => boolean;
|
|
73
|
+
}): any;
|
|
74
|
+
};
|
|
75
|
+
refs: {
|
|
76
|
+
wrapperRef: HTMLDivElement;
|
|
77
|
+
triggerRef: HTMLSpanElement;
|
|
78
|
+
popoverRef: HTMLDivElement;
|
|
79
|
+
};
|
|
80
|
+
rootEl: HTMLDivElement;
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
declare function __VLS_template_4(): {
|
|
46
84
|
attrs: Partial<{}>;
|
|
47
85
|
slots: {
|
|
48
86
|
center?(_: {}): any;
|
|
@@ -52,7 +90,7 @@ declare function __VLS_template_3(): {
|
|
|
52
90
|
rootEl: HTMLDivElement;
|
|
53
91
|
};
|
|
54
92
|
|
|
55
|
-
declare function
|
|
93
|
+
declare function __VLS_template_5(): {
|
|
56
94
|
attrs: Partial<{}>;
|
|
57
95
|
slots: {
|
|
58
96
|
default?(_: {}): any;
|
|
@@ -61,7 +99,7 @@ declare function __VLS_template_4(): {
|
|
|
61
99
|
rootEl: HTMLDivElement;
|
|
62
100
|
};
|
|
63
101
|
|
|
64
|
-
declare function
|
|
102
|
+
declare function __VLS_template_6(): {
|
|
65
103
|
attrs: Partial<{}>;
|
|
66
104
|
slots: {
|
|
67
105
|
default?(_: {}): any;
|
|
@@ -80,6 +118,8 @@ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
|
80
118
|
|
|
81
119
|
declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
|
|
82
120
|
|
|
121
|
+
declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
|
|
122
|
+
|
|
83
123
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
84
124
|
new (): {
|
|
85
125
|
$slots: S;
|
|
@@ -110,6 +150,14 @@ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
|
110
150
|
};
|
|
111
151
|
};
|
|
112
152
|
|
|
153
|
+
declare type __VLS_WithTemplateSlots_6<T, S> = T & {
|
|
154
|
+
new (): {
|
|
155
|
+
$slots: S;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
declare type CalendarAnchor = 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
160
|
+
|
|
113
161
|
declare type EasingFunction = 'ease-linear' | 'ease-in' | 'ease-out' | 'ease-in-out';
|
|
114
162
|
|
|
115
163
|
declare type IconType = 'regular' | 'solid' | 'light' | 'duotone' | 'brands';
|
|
@@ -127,13 +175,32 @@ declare interface NexxtButtonProps {
|
|
|
127
175
|
buttonType?: 'button' | 'submit' | 'reset';
|
|
128
176
|
}
|
|
129
177
|
|
|
178
|
+
export { NexxtCalendar }
|
|
179
|
+
|
|
180
|
+
declare interface NexxtCalendarProps {
|
|
181
|
+
locale?: Locale;
|
|
182
|
+
markedDates?: Date[];
|
|
183
|
+
disabledDates?: Date[];
|
|
184
|
+
minDate?: Date;
|
|
185
|
+
maxDate?: Date;
|
|
186
|
+
monthYearPicker?: boolean;
|
|
187
|
+
}
|
|
188
|
+
|
|
130
189
|
export declare const NexxtChip: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
131
190
|
|
|
132
191
|
declare interface NexxtChipProps {
|
|
133
192
|
variant?: 'default' | 'warning' | 'success' | 'danger';
|
|
134
193
|
}
|
|
135
194
|
|
|
136
|
-
export declare const
|
|
195
|
+
export declare const NexxtDatePicker: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
196
|
+
|
|
197
|
+
declare interface NexxtDatePickerProps extends NexxtCalendarProps {
|
|
198
|
+
placeholder?: string;
|
|
199
|
+
anchor?: CalendarAnchor;
|
|
200
|
+
autoClose?: boolean;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export declare const NexxtHeader: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
137
204
|
|
|
138
205
|
declare interface NexxtHeaderProps {
|
|
139
206
|
title: string;
|
|
@@ -148,7 +215,7 @@ declare interface NexxtIconProps {
|
|
|
148
215
|
type?: IconType;
|
|
149
216
|
}
|
|
150
217
|
|
|
151
|
-
export declare const NexxtInfoBlock:
|
|
218
|
+
export declare const NexxtInfoBlock: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
152
219
|
|
|
153
220
|
declare interface NexxtInfoBlockProps {
|
|
154
221
|
icon: InstanceType<typeof NexxtIcon>['name'];
|
|
@@ -217,7 +284,7 @@ declare interface NexxtSocialMediaTypeProps {
|
|
|
217
284
|
icons?: SocialPlatform[];
|
|
218
285
|
}
|
|
219
286
|
|
|
220
|
-
export declare const NexxtStepperHeader:
|
|
287
|
+
export declare const NexxtStepperHeader: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
221
288
|
|
|
222
289
|
declare interface NexxtStepperHeaderProps {
|
|
223
290
|
title: string;
|