@nexxtmove/ui 0.1.49 → 0.1.51

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 CHANGED
@@ -1,29 +1,119 @@
1
1
  import { AllowedComponentProps } from 'vue';
2
+ import { ComponentCustomProperties } from 'vue';
2
3
  import { ComponentCustomProps } from 'vue';
4
+ import { ComponentInternalInstance } from 'vue';
5
+ import { ComponentOptionsBase } from 'vue';
3
6
  import { ComponentOptionsMixin } from 'vue';
4
7
  import { ComponentProvideOptions } from 'vue';
8
+ import { ComponentPublicInstance } from 'vue';
5
9
  import { CreateComponentPublicInstanceWithMixins } from 'vue';
10
+ import { DebuggerEvent } from 'vue';
6
11
  import { DefineComponent } from 'vue';
7
12
  import { GlobalComponents } from 'vue';
8
13
  import { GlobalDirectives } from 'vue';
9
14
  import { IconName } from '@awesome.me/kit-37b149f3ef/icons';
10
15
  import { Locale } from 'date-fns';
11
16
  import { ModelRef } from 'vue';
12
- import { default as NexxtCombobox } from './components/Combobox/Combobox.vue';
17
+ import { nextTick } from 'vue';
18
+ import { OnCleanup } from '@vue/reactivity';
13
19
  import { PublicProps } from 'vue';
14
20
  import { ShallowUnwrapRef } from 'vue';
21
+ import { Slot } from 'vue';
15
22
  import { VNode } from 'vue';
16
23
  import { VNodeProps } from 'vue';
24
+ import { WatchOptions } from 'vue';
25
+ import { WatchStopHandle } from 'vue';
17
26
 
18
27
  declare const __VLS_component: DefineComponent<NexxtButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
19
28
 
20
- declare const __VLS_component_10: DefineComponent<NexxtTooltip_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTooltip_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
29
+ declare const __VLS_component_10: DefineComponent<NexxtStepperHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
30
+ "update:currentStep": (...args: any[]) => void;
31
+ }, string, PublicProps, Readonly<NexxtStepperHeaderProps> & Readonly<{
32
+ "onUpdate:currentStep"?: ((...args: any[]) => any) | undefined;
33
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
34
+
35
+ declare const __VLS_component_11: DefineComponent<NexxtTabbedContent_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTabbedContent_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
36
+
37
+ declare const __VLS_component_12: DefineComponent<NexxtTooltip_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTooltip_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
21
38
 
22
39
  declare const __VLS_component_2: DefineComponent<NexxtChipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtChipProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
23
40
 
24
41
  declare const __VLS_component_3: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
25
- "update:modelValue": (value: Date | null) => any;
42
+ "update:modelValue": (value: (string | number)[]) => any;
26
43
  }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
44
+ "onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
45
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
46
+ wrapperRef: HTMLDivElement;
47
+ inputFieldRef: ({
48
+ $: ComponentInternalInstance;
49
+ $data: {};
50
+ $props: {
51
+ readonly modelValue?: string | undefined;
52
+ readonly placeholder?: string | undefined;
53
+ readonly label?: string | undefined;
54
+ readonly error?: boolean | undefined;
55
+ readonly errorMessage?: string | undefined;
56
+ readonly leftIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
57
+ readonly rightIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
58
+ readonly required?: boolean | undefined;
59
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
60
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
61
+ $attrs: {
62
+ [x: string]: unknown;
63
+ };
64
+ $refs: {
65
+ [x: string]: unknown;
66
+ };
67
+ $slots: Readonly<{
68
+ [name: string]: Slot<any> | undefined;
69
+ }>;
70
+ $root: ComponentPublicInstance | null;
71
+ $parent: ComponentPublicInstance | null;
72
+ $host: Element | null;
73
+ $emit: (event: "update:modelValue", value: string) => void;
74
+ $el: HTMLDivElement;
75
+ $options: ComponentOptionsBase<Readonly<{
76
+ modelValue?: string;
77
+ } & NexxtInputFieldProps> & Readonly<{
78
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
79
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
80
+ "update:modelValue": (value: string) => any;
81
+ }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
82
+ beforeCreate?: (() => void) | (() => void)[];
83
+ created?: (() => void) | (() => void)[];
84
+ beforeMount?: (() => void) | (() => void)[];
85
+ mounted?: (() => void) | (() => void)[];
86
+ beforeUpdate?: (() => void) | (() => void)[];
87
+ updated?: (() => void) | (() => void)[];
88
+ activated?: (() => void) | (() => void)[];
89
+ deactivated?: (() => void) | (() => void)[];
90
+ beforeDestroy?: (() => void) | (() => void)[];
91
+ beforeUnmount?: (() => void) | (() => void)[];
92
+ destroyed?: (() => void) | (() => void)[];
93
+ unmounted?: (() => void) | (() => void)[];
94
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
95
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
96
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
97
+ };
98
+ $forceUpdate: () => void;
99
+ $nextTick: typeof nextTick;
100
+ $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;
101
+ } & Readonly<{}> & Omit<Readonly<{
102
+ modelValue?: string;
103
+ } & NexxtInputFieldProps> & Readonly<{
104
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
105
+ }>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
106
+ $slots: {
107
+ right?(_: {}): any;
108
+ };
109
+ }) | null;
110
+ }, HTMLDivElement>;
111
+
112
+ declare const __VLS_component_4: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
113
+
114
+ declare const __VLS_component_5: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
115
+ "update:modelValue": (value: Date | null) => any;
116
+ }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
27
117
  "onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
28
118
  }>, {
29
119
  placeholder: string;
@@ -35,30 +125,22 @@ triggerRef: HTMLSpanElement;
35
125
  popoverRef: HTMLDivElement;
36
126
  }, HTMLDivElement>;
37
127
 
38
- declare const __VLS_component_4: DefineComponent<NexxtHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
128
+ declare const __VLS_component_6: DefineComponent<NexxtHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
39
129
 
40
- declare const __VLS_component_5: DefineComponent<NexxtInfoBlockProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtInfoBlockProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
130
+ declare const __VLS_component_7: DefineComponent<NexxtInfoBlockProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtInfoBlockProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
41
131
 
42
- declare const __VLS_component_6: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
132
+ declare const __VLS_component_8: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
43
133
  "update:modelValue": (value: string) => any;
44
- }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
134
+ }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
45
135
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
46
136
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
47
137
 
48
- declare const __VLS_component_7: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
138
+ declare const __VLS_component_9: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
49
139
  "update:modelValue": (value: boolean) => any;
50
- }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
140
+ }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
51
141
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
52
142
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
53
143
 
54
- declare const __VLS_component_8: DefineComponent<NexxtStepperHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
55
- "update:currentStep": (...args: any[]) => void;
56
- }, string, PublicProps, Readonly<NexxtStepperHeaderProps> & Readonly<{
57
- "onUpdate:currentStep"?: ((...args: any[]) => any) | undefined;
58
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
59
-
60
- declare const __VLS_component_9: DefineComponent<NexxtTabbedContent_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTabbedContent_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
61
-
62
144
  declare type __VLS_PrettifyLocal<T> = {
63
145
  [K in keyof T]: T[K];
64
146
  } & {};
@@ -70,6 +152,11 @@ declare type __VLS_Props = {
70
152
  };
71
153
 
72
154
  declare type __VLS_Props_10 = {
155
+ event: TimelineEvent;
156
+ splitView?: boolean;
157
+ };
158
+
159
+ declare type __VLS_Props_11 = {
73
160
  phase: TimelinePhase;
74
161
  /** Index within the filtered phases array (used to determine phase direction/date). */
75
162
  index: number;
@@ -83,20 +170,17 @@ declare type __VLS_Props_2 = NexxtCalendarProps;
83
170
 
84
171
  declare type __VLS_Props_3 = NexxtCheckboxProps;
85
172
 
86
- declare type __VLS_Props_4 = NexxtDatePickerProps;
173
+ declare type __VLS_Props_4 = NexxtComboboxProps;
87
174
 
88
- declare type __VLS_Props_5 = NexxtInputFieldProps;
175
+ declare type __VLS_Props_5 = NexxtDatePickerProps;
89
176
 
90
- declare type __VLS_Props_6 = NexxtModalProps;
177
+ declare type __VLS_Props_6 = NexxtInputFieldProps;
91
178
 
92
- declare type __VLS_Props_7 = NexxtPaginationProps;
179
+ declare type __VLS_Props_7 = NexxtModalProps;
93
180
 
94
- declare type __VLS_Props_8 = NexxtTabs_2;
181
+ declare type __VLS_Props_8 = NexxtPaginationProps;
95
182
 
96
- declare type __VLS_Props_9 = {
97
- event: TimelineEvent;
98
- splitView?: boolean;
99
- };
183
+ declare type __VLS_Props_9 = NexxtTabs_2;
100
184
 
101
185
  declare type __VLS_PublicProps = {
102
186
  modelValue?: Date | null;
@@ -107,25 +191,29 @@ declare type __VLS_PublicProps_2 = {
107
191
  } & __VLS_Props_3;
108
192
 
109
193
  declare type __VLS_PublicProps_3 = {
110
- modelValue?: Date | null;
194
+ modelValue?: (string | number)[];
111
195
  } & __VLS_Props_4;
112
196
 
113
197
  declare type __VLS_PublicProps_4 = {
114
- modelValue?: string;
198
+ modelValue?: Date | null;
115
199
  } & __VLS_Props_5;
116
200
 
117
201
  declare type __VLS_PublicProps_5 = {
118
- modelValue?: boolean;
202
+ modelValue?: string;
119
203
  } & __VLS_Props_6;
120
204
 
121
205
  declare type __VLS_PublicProps_6 = {
122
- 'page'?: number;
206
+ modelValue?: boolean;
123
207
  } & __VLS_Props_7;
124
208
 
125
209
  declare type __VLS_PublicProps_7 = {
126
- modelValue?: typeof selected['value'];
210
+ 'page'?: number;
127
211
  } & __VLS_Props_8;
128
212
 
213
+ declare type __VLS_PublicProps_8 = {
214
+ modelValue?: typeof selected['value'];
215
+ } & __VLS_Props_9;
216
+
129
217
  declare function __VLS_template(): {
130
218
  attrs: Partial<{}>;
131
219
  slots: {
@@ -136,6 +224,22 @@ declare function __VLS_template(): {
136
224
  };
137
225
 
138
226
  declare function __VLS_template_10(): {
227
+ attrs: Partial<{}>;
228
+ slots: {
229
+ default?(_: {}): any;
230
+ };
231
+ refs: {};
232
+ rootEl: HTMLDivElement;
233
+ };
234
+
235
+ declare function __VLS_template_11(): {
236
+ attrs: Partial<{}>;
237
+ slots: Partial<Record<string, (_: {}) => any>>;
238
+ refs: {};
239
+ rootEl: HTMLDivElement;
240
+ };
241
+
242
+ declare function __VLS_template_12(): {
139
243
  attrs: Partial<{}>;
140
244
  slots: {
141
245
  default?(_: {}): any;
@@ -157,15 +261,73 @@ declare function __VLS_template_2(): {
157
261
  declare function __VLS_template_3(): {
158
262
  attrs: Partial<{}>;
159
263
  slots: {
160
- trigger?(_: {
161
- isOpen: boolean;
162
- toggle: () => boolean;
163
- }): any;
264
+ default?(_: {}): any;
164
265
  };
165
266
  refs: {
166
267
  wrapperRef: HTMLDivElement;
167
- triggerRef: HTMLSpanElement;
168
- popoverRef: HTMLDivElement;
268
+ inputFieldRef: ({
269
+ $: ComponentInternalInstance;
270
+ $data: {};
271
+ $props: {
272
+ readonly modelValue?: string | undefined;
273
+ readonly placeholder?: string | undefined;
274
+ readonly label?: string | undefined;
275
+ readonly error?: boolean | undefined;
276
+ readonly errorMessage?: string | undefined;
277
+ readonly leftIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
278
+ readonly rightIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
279
+ readonly required?: boolean | undefined;
280
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
281
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
282
+ $attrs: {
283
+ [x: string]: unknown;
284
+ };
285
+ $refs: {
286
+ [x: string]: unknown;
287
+ };
288
+ $slots: Readonly<{
289
+ [name: string]: Slot<any> | undefined;
290
+ }>;
291
+ $root: ComponentPublicInstance | null;
292
+ $parent: ComponentPublicInstance | null;
293
+ $host: Element | null;
294
+ $emit: (event: "update:modelValue", value: string) => void;
295
+ $el: HTMLDivElement;
296
+ $options: ComponentOptionsBase<Readonly<{
297
+ modelValue?: string;
298
+ } & NexxtInputFieldProps> & Readonly<{
299
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
300
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
301
+ "update:modelValue": (value: string) => any;
302
+ }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
303
+ beforeCreate?: (() => void) | (() => void)[];
304
+ created?: (() => void) | (() => void)[];
305
+ beforeMount?: (() => void) | (() => void)[];
306
+ mounted?: (() => void) | (() => void)[];
307
+ beforeUpdate?: (() => void) | (() => void)[];
308
+ updated?: (() => void) | (() => void)[];
309
+ activated?: (() => void) | (() => void)[];
310
+ deactivated?: (() => void) | (() => void)[];
311
+ beforeDestroy?: (() => void) | (() => void)[];
312
+ beforeUnmount?: (() => void) | (() => void)[];
313
+ destroyed?: (() => void) | (() => void)[];
314
+ unmounted?: (() => void) | (() => void)[];
315
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
316
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
317
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
318
+ };
319
+ $forceUpdate: () => void;
320
+ $nextTick: typeof nextTick;
321
+ $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;
322
+ } & Readonly<{}> & Omit<Readonly<{
323
+ modelValue?: string;
324
+ } & NexxtInputFieldProps> & Readonly<{
325
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
326
+ }>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
327
+ $slots: {
328
+ right?(_: {}): any;
329
+ };
330
+ }) | null;
169
331
  };
170
332
  rootEl: HTMLDivElement;
171
333
  };
@@ -173,8 +335,8 @@ declare function __VLS_template_3(): {
173
335
  declare function __VLS_template_4(): {
174
336
  attrs: Partial<{}>;
175
337
  slots: {
176
- center?(_: {}): any;
177
- right?(_: {}): any;
338
+ title?(_: {}): any;
339
+ content?(_: {}): any;
178
340
  };
179
341
  refs: {};
180
342
  rootEl: HTMLDivElement;
@@ -183,15 +345,24 @@ declare function __VLS_template_4(): {
183
345
  declare function __VLS_template_5(): {
184
346
  attrs: Partial<{}>;
185
347
  slots: {
186
- default?(_: {}): any;
348
+ trigger?(_: {
349
+ isOpen: boolean;
350
+ toggle: () => boolean;
351
+ }): any;
352
+ };
353
+ refs: {
354
+ wrapperRef: HTMLDivElement;
355
+ triggerRef: HTMLSpanElement;
356
+ popoverRef: HTMLDivElement;
187
357
  };
188
- refs: {};
189
358
  rootEl: HTMLDivElement;
190
359
  };
191
360
 
192
361
  declare function __VLS_template_6(): {
193
362
  attrs: Partial<{}>;
194
363
  slots: {
364
+ 'back-button'?(_: {}): any;
365
+ center?(_: {}): any;
195
366
  right?(_: {}): any;
196
367
  };
197
368
  refs: {};
@@ -202,16 +373,15 @@ declare function __VLS_template_7(): {
202
373
  attrs: Partial<{}>;
203
374
  slots: {
204
375
  default?(_: {}): any;
205
- footer?(_: {}): any;
206
376
  };
207
377
  refs: {};
208
- rootEl: any;
378
+ rootEl: HTMLDivElement;
209
379
  };
210
380
 
211
381
  declare function __VLS_template_8(): {
212
382
  attrs: Partial<{}>;
213
383
  slots: {
214
- default?(_: {}): any;
384
+ right?(_: {}): any;
215
385
  };
216
386
  refs: {};
217
387
  rootEl: HTMLDivElement;
@@ -219,15 +389,22 @@ declare function __VLS_template_8(): {
219
389
 
220
390
  declare function __VLS_template_9(): {
221
391
  attrs: Partial<{}>;
222
- slots: Partial<Record<string, (_: {}) => any>>;
392
+ slots: {
393
+ default?(_: {}): any;
394
+ footer?(_: {}): any;
395
+ };
223
396
  refs: {};
224
- rootEl: HTMLDivElement;
397
+ rootEl: any;
225
398
  };
226
399
 
227
400
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
228
401
 
229
402
  declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
230
403
 
404
+ declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
405
+
406
+ declare type __VLS_TemplateResult_12 = ReturnType<typeof __VLS_template_12>;
407
+
231
408
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
232
409
 
233
410
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
@@ -256,6 +433,18 @@ declare type __VLS_WithTemplateSlots_10<T, S> = T & {
256
433
  };
257
434
  };
258
435
 
436
+ declare type __VLS_WithTemplateSlots_11<T, S> = T & {
437
+ new (): {
438
+ $slots: S;
439
+ };
440
+ };
441
+
442
+ declare type __VLS_WithTemplateSlots_12<T, S> = T & {
443
+ new (): {
444
+ $slots: S;
445
+ };
446
+ };
447
+
259
448
  declare type __VLS_WithTemplateSlots_2<T, S> = T & {
260
449
  new (): {
261
450
  $slots: S;
@@ -399,7 +588,20 @@ declare interface NexxtChipProps {
399
588
  variant?: 'default' | 'warning' | 'success' | 'danger' | 'ghost';
400
589
  }
401
590
 
402
- export { NexxtCombobox }
591
+ export declare const NexxtCombobox: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
592
+
593
+ declare interface NexxtComboboxProps {
594
+ variant?: InstanceType<typeof NexxtButton>['variant'];
595
+ icon?: InstanceType<typeof NexxtIcon>['name'];
596
+ placeholder?: string;
597
+ placement?: 'left' | 'right';
598
+ options: (string | {
599
+ label: string;
600
+ value: string | number;
601
+ })[];
602
+ }
603
+
604
+ export declare const NexxtContactInfoCard: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
403
605
 
404
606
  export declare const NexxtCustomerJourneyTile: DefineComponent<NexxtCustomerJourneyTileProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtCustomerJourneyTileProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
405
607
 
@@ -413,7 +615,7 @@ declare interface NexxtCustomerJourneyTileProps {
413
615
  percentageExplanaition?: string;
414
616
  }
415
617
 
416
- export declare const NexxtDatePicker: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
618
+ export declare const NexxtDatePicker: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
417
619
 
418
620
  declare interface NexxtDatePickerProps extends NexxtCalendarProps {
419
621
  placeholder?: string;
@@ -468,7 +670,7 @@ declare interface NexxtDropdownButtonGroup {
468
670
  items: NexxtDropdownButton_2[];
469
671
  }
470
672
 
471
- export declare const NexxtHeader: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
673
+ export declare const NexxtHeader: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
472
674
 
473
675
  declare interface NexxtHeaderProps {
474
676
  title: string;
@@ -484,14 +686,14 @@ declare interface NexxtIconProps {
484
686
  type?: IconType;
485
687
  }
486
688
 
487
- export declare const NexxtInfoBlock: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
689
+ export declare const NexxtInfoBlock: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
488
690
 
489
691
  declare interface NexxtInfoBlockProps {
490
692
  icon: InstanceType<typeof NexxtIcon>['name'];
491
693
  color?: 'green' | 'purple' | 'blue' | 'rose';
492
694
  }
493
695
 
494
- export declare const NexxtInputField: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
696
+ export declare const NexxtInputField: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
495
697
 
496
698
  declare interface NexxtInputFieldProps {
497
699
  placeholder?: string;
@@ -503,7 +705,7 @@ declare interface NexxtInputFieldProps {
503
705
  required?: boolean;
504
706
  }
505
707
 
506
- export declare const NexxtModal: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
708
+ export declare const NexxtModal: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
507
709
 
508
710
  declare interface NexxtModalProps {
509
711
  title?: string;
@@ -514,9 +716,9 @@ declare interface NexxtModalProps {
514
716
  beforeClose?: () => boolean | Promise<boolean>;
515
717
  }
516
718
 
517
- export declare const NexxtPagination: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
719
+ export declare const NexxtPagination: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
518
720
  "update:page": (value: number) => any;
519
- }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
721
+ }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
520
722
  "onUpdate:page"?: ((value: number) => any) | undefined;
521
723
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
522
724
 
@@ -528,6 +730,12 @@ declare interface NexxtPaginationProps {
528
730
  disabled?: boolean;
529
731
  }
530
732
 
733
+ export declare const NexxtPresenceIndicator: DefineComponent<NexxtPresenceIndicatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtPresenceIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
734
+
735
+ declare interface NexxtPresenceIndicatorProps {
736
+ online?: boolean;
737
+ }
738
+
531
739
  export declare const NexxtProgressBar: DefineComponent<NexxtProgressBarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
532
740
  "update:currentStep": (...args: any[]) => void;
533
741
  }, string, PublicProps, Readonly<NexxtProgressBarProps> & Readonly<{
@@ -590,7 +798,13 @@ declare interface NexxtSocialMediaTypeProps {
590
798
  icons?: SocialPlatform[];
591
799
  }
592
800
 
593
- export declare const NexxtStepperHeader: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
801
+ export declare const NexxtSource: DefineComponent<NexxtSourceProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtSourceProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
802
+
803
+ declare interface NexxtSourceProps {
804
+ source: keyof typeof SOURCE_MAP;
805
+ }
806
+
807
+ export declare const NexxtStepperHeader: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
594
808
 
595
809
  declare interface NexxtStepperHeaderProps {
596
810
  title: string;
@@ -600,7 +814,7 @@ declare interface NexxtStepperHeaderProps {
600
814
  backButtonAction: InstanceType<typeof NexxtHeader>['backButtonAction'];
601
815
  }
602
816
 
603
- export declare const NexxtTabbedContent: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
817
+ export declare const NexxtTabbedContent: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
604
818
 
605
819
  declare interface NexxtTabbedContent_2 {
606
820
  tabs: InstanceType<typeof NexxtTabs>['tabs'];
@@ -644,24 +858,26 @@ declare interface NexxtTableProps<TKey extends string = string, TRow extends Rec
644
858
  loading?: boolean;
645
859
  }
646
860
 
647
- export declare const NexxtTabs: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
861
+ export declare const NexxtTabs: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
648
862
  "update:modelValue": (value: string) => any;
649
- }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
863
+ }, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
650
864
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
651
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
865
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
866
+ containerRef: HTMLDivElement;
867
+ }, HTMLDivElement>;
652
868
 
653
869
  declare interface NexxtTabs_2 {
654
870
  tabs: string[];
655
871
  tablistLabel?: string;
656
872
  }
657
873
 
658
- export declare const NexxtTimelineEvent: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
874
+ export declare const NexxtTimelineEvent: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
659
875
  splitView: boolean;
660
876
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
661
877
 
662
- export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
878
+ export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
663
879
 
664
- export declare const NexxtTooltip: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
880
+ export declare const NexxtTooltip: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
665
881
 
666
882
  declare interface NexxtTooltip_2 {
667
883
  delay?: number;
@@ -675,6 +891,23 @@ declare const selected: ModelRef<string, string, string, string>;
675
891
 
676
892
  declare type SocialPlatform = 'tiktok' | 'facebook' | 'instagram' | 'linkedin' | 'x' | 'twitter' | 'google';
677
893
 
894
+ export declare const SOURCE_MAP: {
895
+ readonly realworks: "Realworks";
896
+ readonly realworks_agenda_api: "Realworks Agenda API";
897
+ readonly realworks_api: "Realworks API";
898
+ readonly kolibri: "Kolibri";
899
+ readonly kolibri_app_exchange: "Kolibri App Exchange";
900
+ readonly zapier: "Zapier";
901
+ readonly bricr: "Bricr";
902
+ readonly website: "Website";
903
+ readonly manual: "Handmatig ingevoerd";
904
+ readonly tracker: "Tracker";
905
+ readonly read_more: "Lees Meer";
906
+ readonly planner: "Planner";
907
+ readonly forms: "Forms";
908
+ readonly dossier_data: "Dossier Data";
909
+ };
910
+
678
911
  declare interface TableColumn<K extends string = string> {
679
912
  key: K;
680
913
  label: string;