@nexxtmove/ui 0.1.49 → 0.1.50

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,111 @@
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<NexxtTabbedContent_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTabbedContent_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
30
+
31
+ declare const __VLS_component_11: DefineComponent<NexxtTooltip_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTooltip_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
21
32
 
22
33
  declare const __VLS_component_2: DefineComponent<NexxtChipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtChipProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
23
34
 
24
35
  declare const __VLS_component_3: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
25
- "update:modelValue": (value: Date | null) => any;
36
+ "update:modelValue": (value: (string | number)[]) => any;
26
37
  }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
38
+ "onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
39
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
40
+ wrapperRef: HTMLDivElement;
41
+ inputFieldRef: ({
42
+ $: ComponentInternalInstance;
43
+ $data: {};
44
+ $props: {
45
+ readonly modelValue?: string | undefined;
46
+ readonly placeholder?: string | undefined;
47
+ readonly label?: string | undefined;
48
+ readonly error?: boolean | undefined;
49
+ readonly errorMessage?: string | undefined;
50
+ readonly leftIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
51
+ readonly rightIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
52
+ readonly required?: boolean | undefined;
53
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
54
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
55
+ $attrs: {
56
+ [x: string]: unknown;
57
+ };
58
+ $refs: {
59
+ [x: string]: unknown;
60
+ };
61
+ $slots: Readonly<{
62
+ [name: string]: Slot<any> | undefined;
63
+ }>;
64
+ $root: ComponentPublicInstance | null;
65
+ $parent: ComponentPublicInstance | null;
66
+ $host: Element | null;
67
+ $emit: (event: "update:modelValue", value: string) => void;
68
+ $el: HTMLDivElement;
69
+ $options: ComponentOptionsBase<Readonly<{
70
+ modelValue?: string;
71
+ } & NexxtInputFieldProps> & Readonly<{
72
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
73
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
74
+ "update:modelValue": (value: string) => any;
75
+ }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
76
+ beforeCreate?: (() => void) | (() => void)[];
77
+ created?: (() => void) | (() => void)[];
78
+ beforeMount?: (() => void) | (() => void)[];
79
+ mounted?: (() => void) | (() => void)[];
80
+ beforeUpdate?: (() => void) | (() => void)[];
81
+ updated?: (() => void) | (() => void)[];
82
+ activated?: (() => void) | (() => void)[];
83
+ deactivated?: (() => void) | (() => void)[];
84
+ beforeDestroy?: (() => void) | (() => void)[];
85
+ beforeUnmount?: (() => void) | (() => void)[];
86
+ destroyed?: (() => void) | (() => void)[];
87
+ unmounted?: (() => void) | (() => void)[];
88
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
89
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
90
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
91
+ };
92
+ $forceUpdate: () => void;
93
+ $nextTick: typeof nextTick;
94
+ $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;
95
+ } & Readonly<{}> & Omit<Readonly<{
96
+ modelValue?: string;
97
+ } & NexxtInputFieldProps> & Readonly<{
98
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
99
+ }>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
100
+ $slots: {
101
+ right?(_: {}): any;
102
+ };
103
+ }) | null;
104
+ }, HTMLDivElement>;
105
+
106
+ declare const __VLS_component_4: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
107
+ "update:modelValue": (value: Date | null) => any;
108
+ }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
27
109
  "onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
28
110
  }>, {
29
111
  placeholder: string;
@@ -35,30 +117,28 @@ triggerRef: HTMLSpanElement;
35
117
  popoverRef: HTMLDivElement;
36
118
  }, HTMLDivElement>;
37
119
 
38
- declare const __VLS_component_4: DefineComponent<NexxtHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
120
+ declare const __VLS_component_5: DefineComponent<NexxtHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
39
121
 
40
- declare const __VLS_component_5: DefineComponent<NexxtInfoBlockProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtInfoBlockProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
122
+ declare const __VLS_component_6: DefineComponent<NexxtInfoBlockProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtInfoBlockProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
41
123
 
42
- declare const __VLS_component_6: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
124
+ declare const __VLS_component_7: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
43
125
  "update:modelValue": (value: string) => any;
44
- }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
126
+ }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
45
127
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
46
128
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
47
129
 
48
- declare const __VLS_component_7: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
130
+ declare const __VLS_component_8: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
49
131
  "update:modelValue": (value: boolean) => any;
50
- }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
132
+ }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
51
133
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
52
134
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
53
135
 
54
- declare const __VLS_component_8: DefineComponent<NexxtStepperHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
136
+ declare const __VLS_component_9: DefineComponent<NexxtStepperHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
55
137
  "update:currentStep": (...args: any[]) => void;
56
138
  }, string, PublicProps, Readonly<NexxtStepperHeaderProps> & Readonly<{
57
139
  "onUpdate:currentStep"?: ((...args: any[]) => any) | undefined;
58
140
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
59
141
 
60
- declare const __VLS_component_9: DefineComponent<NexxtTabbedContent_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTabbedContent_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
61
-
62
142
  declare type __VLS_PrettifyLocal<T> = {
63
143
  [K in keyof T]: T[K];
64
144
  } & {};
@@ -70,6 +150,11 @@ declare type __VLS_Props = {
70
150
  };
71
151
 
72
152
  declare type __VLS_Props_10 = {
153
+ event: TimelineEvent;
154
+ splitView?: boolean;
155
+ };
156
+
157
+ declare type __VLS_Props_11 = {
73
158
  phase: TimelinePhase;
74
159
  /** Index within the filtered phases array (used to determine phase direction/date). */
75
160
  index: number;
@@ -83,20 +168,17 @@ declare type __VLS_Props_2 = NexxtCalendarProps;
83
168
 
84
169
  declare type __VLS_Props_3 = NexxtCheckboxProps;
85
170
 
86
- declare type __VLS_Props_4 = NexxtDatePickerProps;
171
+ declare type __VLS_Props_4 = NexxtComboboxProps;
87
172
 
88
- declare type __VLS_Props_5 = NexxtInputFieldProps;
173
+ declare type __VLS_Props_5 = NexxtDatePickerProps;
89
174
 
90
- declare type __VLS_Props_6 = NexxtModalProps;
175
+ declare type __VLS_Props_6 = NexxtInputFieldProps;
91
176
 
92
- declare type __VLS_Props_7 = NexxtPaginationProps;
177
+ declare type __VLS_Props_7 = NexxtModalProps;
93
178
 
94
- declare type __VLS_Props_8 = NexxtTabs_2;
179
+ declare type __VLS_Props_8 = NexxtPaginationProps;
95
180
 
96
- declare type __VLS_Props_9 = {
97
- event: TimelineEvent;
98
- splitView?: boolean;
99
- };
181
+ declare type __VLS_Props_9 = NexxtTabs_2;
100
182
 
101
183
  declare type __VLS_PublicProps = {
102
184
  modelValue?: Date | null;
@@ -107,25 +189,29 @@ declare type __VLS_PublicProps_2 = {
107
189
  } & __VLS_Props_3;
108
190
 
109
191
  declare type __VLS_PublicProps_3 = {
110
- modelValue?: Date | null;
192
+ modelValue?: (string | number)[];
111
193
  } & __VLS_Props_4;
112
194
 
113
195
  declare type __VLS_PublicProps_4 = {
114
- modelValue?: string;
196
+ modelValue?: Date | null;
115
197
  } & __VLS_Props_5;
116
198
 
117
199
  declare type __VLS_PublicProps_5 = {
118
- modelValue?: boolean;
200
+ modelValue?: string;
119
201
  } & __VLS_Props_6;
120
202
 
121
203
  declare type __VLS_PublicProps_6 = {
122
- 'page'?: number;
204
+ modelValue?: boolean;
123
205
  } & __VLS_Props_7;
124
206
 
125
207
  declare type __VLS_PublicProps_7 = {
126
- modelValue?: typeof selected['value'];
208
+ 'page'?: number;
127
209
  } & __VLS_Props_8;
128
210
 
211
+ declare type __VLS_PublicProps_8 = {
212
+ modelValue?: typeof selected['value'];
213
+ } & __VLS_Props_9;
214
+
129
215
  declare function __VLS_template(): {
130
216
  attrs: Partial<{}>;
131
217
  slots: {
@@ -136,6 +222,13 @@ declare function __VLS_template(): {
136
222
  };
137
223
 
138
224
  declare function __VLS_template_10(): {
225
+ attrs: Partial<{}>;
226
+ slots: Partial<Record<string, (_: {}) => any>>;
227
+ refs: {};
228
+ rootEl: HTMLDivElement;
229
+ };
230
+
231
+ declare function __VLS_template_11(): {
139
232
  attrs: Partial<{}>;
140
233
  slots: {
141
234
  default?(_: {}): any;
@@ -155,6 +248,80 @@ declare function __VLS_template_2(): {
155
248
  };
156
249
 
157
250
  declare function __VLS_template_3(): {
251
+ attrs: Partial<{}>;
252
+ slots: {
253
+ default?(_: {}): any;
254
+ };
255
+ refs: {
256
+ wrapperRef: HTMLDivElement;
257
+ inputFieldRef: ({
258
+ $: ComponentInternalInstance;
259
+ $data: {};
260
+ $props: {
261
+ readonly modelValue?: string | undefined;
262
+ readonly placeholder?: string | undefined;
263
+ readonly label?: string | undefined;
264
+ readonly error?: boolean | undefined;
265
+ readonly errorMessage?: string | undefined;
266
+ readonly leftIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
267
+ readonly rightIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
268
+ readonly required?: boolean | undefined;
269
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
270
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
271
+ $attrs: {
272
+ [x: string]: unknown;
273
+ };
274
+ $refs: {
275
+ [x: string]: unknown;
276
+ };
277
+ $slots: Readonly<{
278
+ [name: string]: Slot<any> | undefined;
279
+ }>;
280
+ $root: ComponentPublicInstance | null;
281
+ $parent: ComponentPublicInstance | null;
282
+ $host: Element | null;
283
+ $emit: (event: "update:modelValue", value: string) => void;
284
+ $el: HTMLDivElement;
285
+ $options: ComponentOptionsBase<Readonly<{
286
+ modelValue?: string;
287
+ } & NexxtInputFieldProps> & Readonly<{
288
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
289
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
290
+ "update:modelValue": (value: string) => any;
291
+ }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
292
+ beforeCreate?: (() => void) | (() => void)[];
293
+ created?: (() => void) | (() => void)[];
294
+ beforeMount?: (() => void) | (() => void)[];
295
+ mounted?: (() => void) | (() => void)[];
296
+ beforeUpdate?: (() => void) | (() => void)[];
297
+ updated?: (() => void) | (() => void)[];
298
+ activated?: (() => void) | (() => void)[];
299
+ deactivated?: (() => void) | (() => void)[];
300
+ beforeDestroy?: (() => void) | (() => void)[];
301
+ beforeUnmount?: (() => void) | (() => void)[];
302
+ destroyed?: (() => void) | (() => void)[];
303
+ unmounted?: (() => void) | (() => void)[];
304
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
305
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
306
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
307
+ };
308
+ $forceUpdate: () => void;
309
+ $nextTick: typeof nextTick;
310
+ $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;
311
+ } & Readonly<{}> & Omit<Readonly<{
312
+ modelValue?: string;
313
+ } & NexxtInputFieldProps> & Readonly<{
314
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
315
+ }>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
316
+ $slots: {
317
+ right?(_: {}): any;
318
+ };
319
+ }) | null;
320
+ };
321
+ rootEl: HTMLDivElement;
322
+ };
323
+
324
+ declare function __VLS_template_4(): {
158
325
  attrs: Partial<{}>;
159
326
  slots: {
160
327
  trigger?(_: {
@@ -170,9 +337,10 @@ declare function __VLS_template_3(): {
170
337
  rootEl: HTMLDivElement;
171
338
  };
172
339
 
173
- declare function __VLS_template_4(): {
340
+ declare function __VLS_template_5(): {
174
341
  attrs: Partial<{}>;
175
342
  slots: {
343
+ 'back-button'?(_: {}): any;
176
344
  center?(_: {}): any;
177
345
  right?(_: {}): any;
178
346
  };
@@ -180,7 +348,7 @@ declare function __VLS_template_4(): {
180
348
  rootEl: HTMLDivElement;
181
349
  };
182
350
 
183
- declare function __VLS_template_5(): {
351
+ declare function __VLS_template_6(): {
184
352
  attrs: Partial<{}>;
185
353
  slots: {
186
354
  default?(_: {}): any;
@@ -189,7 +357,7 @@ declare function __VLS_template_5(): {
189
357
  rootEl: HTMLDivElement;
190
358
  };
191
359
 
192
- declare function __VLS_template_6(): {
360
+ declare function __VLS_template_7(): {
193
361
  attrs: Partial<{}>;
194
362
  slots: {
195
363
  right?(_: {}): any;
@@ -198,7 +366,7 @@ declare function __VLS_template_6(): {
198
366
  rootEl: HTMLDivElement;
199
367
  };
200
368
 
201
- declare function __VLS_template_7(): {
369
+ declare function __VLS_template_8(): {
202
370
  attrs: Partial<{}>;
203
371
  slots: {
204
372
  default?(_: {}): any;
@@ -208,7 +376,7 @@ declare function __VLS_template_7(): {
208
376
  rootEl: any;
209
377
  };
210
378
 
211
- declare function __VLS_template_8(): {
379
+ declare function __VLS_template_9(): {
212
380
  attrs: Partial<{}>;
213
381
  slots: {
214
382
  default?(_: {}): any;
@@ -217,17 +385,12 @@ declare function __VLS_template_8(): {
217
385
  rootEl: HTMLDivElement;
218
386
  };
219
387
 
220
- declare function __VLS_template_9(): {
221
- attrs: Partial<{}>;
222
- slots: Partial<Record<string, (_: {}) => any>>;
223
- refs: {};
224
- rootEl: HTMLDivElement;
225
- };
226
-
227
388
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
228
389
 
229
390
  declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
230
391
 
392
+ declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
393
+
231
394
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
232
395
 
233
396
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
@@ -256,6 +419,12 @@ declare type __VLS_WithTemplateSlots_10<T, S> = T & {
256
419
  };
257
420
  };
258
421
 
422
+ declare type __VLS_WithTemplateSlots_11<T, S> = T & {
423
+ new (): {
424
+ $slots: S;
425
+ };
426
+ };
427
+
259
428
  declare type __VLS_WithTemplateSlots_2<T, S> = T & {
260
429
  new (): {
261
430
  $slots: S;
@@ -399,7 +568,18 @@ declare interface NexxtChipProps {
399
568
  variant?: 'default' | 'warning' | 'success' | 'danger' | 'ghost';
400
569
  }
401
570
 
402
- export { NexxtCombobox }
571
+ export declare const NexxtCombobox: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
572
+
573
+ declare interface NexxtComboboxProps {
574
+ variant?: InstanceType<typeof NexxtButton>['variant'];
575
+ icon?: InstanceType<typeof NexxtIcon>['name'];
576
+ placeholder?: string;
577
+ placement?: 'left' | 'right';
578
+ options: (string | {
579
+ label: string;
580
+ value: string | number;
581
+ })[];
582
+ }
403
583
 
404
584
  export declare const NexxtCustomerJourneyTile: DefineComponent<NexxtCustomerJourneyTileProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtCustomerJourneyTileProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
405
585
 
@@ -413,7 +593,7 @@ declare interface NexxtCustomerJourneyTileProps {
413
593
  percentageExplanaition?: string;
414
594
  }
415
595
 
416
- export declare const NexxtDatePicker: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
596
+ export declare const NexxtDatePicker: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
417
597
 
418
598
  declare interface NexxtDatePickerProps extends NexxtCalendarProps {
419
599
  placeholder?: string;
@@ -468,7 +648,7 @@ declare interface NexxtDropdownButtonGroup {
468
648
  items: NexxtDropdownButton_2[];
469
649
  }
470
650
 
471
- export declare const NexxtHeader: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
651
+ export declare const NexxtHeader: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
472
652
 
473
653
  declare interface NexxtHeaderProps {
474
654
  title: string;
@@ -484,14 +664,14 @@ declare interface NexxtIconProps {
484
664
  type?: IconType;
485
665
  }
486
666
 
487
- export declare const NexxtInfoBlock: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
667
+ export declare const NexxtInfoBlock: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
488
668
 
489
669
  declare interface NexxtInfoBlockProps {
490
670
  icon: InstanceType<typeof NexxtIcon>['name'];
491
671
  color?: 'green' | 'purple' | 'blue' | 'rose';
492
672
  }
493
673
 
494
- export declare const NexxtInputField: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
674
+ export declare const NexxtInputField: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
495
675
 
496
676
  declare interface NexxtInputFieldProps {
497
677
  placeholder?: string;
@@ -503,7 +683,7 @@ declare interface NexxtInputFieldProps {
503
683
  required?: boolean;
504
684
  }
505
685
 
506
- export declare const NexxtModal: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
686
+ export declare const NexxtModal: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
507
687
 
508
688
  declare interface NexxtModalProps {
509
689
  title?: string;
@@ -514,9 +694,9 @@ declare interface NexxtModalProps {
514
694
  beforeClose?: () => boolean | Promise<boolean>;
515
695
  }
516
696
 
517
- export declare const NexxtPagination: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
697
+ export declare const NexxtPagination: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
518
698
  "update:page": (value: number) => any;
519
- }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
699
+ }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
520
700
  "onUpdate:page"?: ((value: number) => any) | undefined;
521
701
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
522
702
 
@@ -528,6 +708,12 @@ declare interface NexxtPaginationProps {
528
708
  disabled?: boolean;
529
709
  }
530
710
 
711
+ export declare const NexxtPresenceIndicator: DefineComponent<NexxtPresenceIndicatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtPresenceIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
712
+
713
+ declare interface NexxtPresenceIndicatorProps {
714
+ online?: boolean;
715
+ }
716
+
531
717
  export declare const NexxtProgressBar: DefineComponent<NexxtProgressBarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
532
718
  "update:currentStep": (...args: any[]) => void;
533
719
  }, string, PublicProps, Readonly<NexxtProgressBarProps> & Readonly<{
@@ -590,7 +776,13 @@ declare interface NexxtSocialMediaTypeProps {
590
776
  icons?: SocialPlatform[];
591
777
  }
592
778
 
593
- export declare const NexxtStepperHeader: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
779
+ export declare const NexxtSource: DefineComponent<NexxtSourceProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtSourceProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
780
+
781
+ declare interface NexxtSourceProps {
782
+ source: keyof typeof SOURCE_MAP;
783
+ }
784
+
785
+ export declare const NexxtStepperHeader: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
594
786
 
595
787
  declare interface NexxtStepperHeaderProps {
596
788
  title: string;
@@ -600,7 +792,7 @@ declare interface NexxtStepperHeaderProps {
600
792
  backButtonAction: InstanceType<typeof NexxtHeader>['backButtonAction'];
601
793
  }
602
794
 
603
- export declare const NexxtTabbedContent: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
795
+ export declare const NexxtTabbedContent: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
604
796
 
605
797
  declare interface NexxtTabbedContent_2 {
606
798
  tabs: InstanceType<typeof NexxtTabs>['tabs'];
@@ -644,24 +836,26 @@ declare interface NexxtTableProps<TKey extends string = string, TRow extends Rec
644
836
  loading?: boolean;
645
837
  }
646
838
 
647
- export declare const NexxtTabs: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
839
+ export declare const NexxtTabs: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
648
840
  "update:modelValue": (value: string) => any;
649
- }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
841
+ }, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
650
842
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
651
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
843
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
844
+ containerRef: HTMLDivElement;
845
+ }, HTMLDivElement>;
652
846
 
653
847
  declare interface NexxtTabs_2 {
654
848
  tabs: string[];
655
849
  tablistLabel?: string;
656
850
  }
657
851
 
658
- export declare const NexxtTimelineEvent: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
852
+ export declare const NexxtTimelineEvent: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
659
853
  splitView: boolean;
660
854
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
661
855
 
662
- export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
856
+ export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
663
857
 
664
- export declare const NexxtTooltip: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
858
+ export declare const NexxtTooltip: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
665
859
 
666
860
  declare interface NexxtTooltip_2 {
667
861
  delay?: number;
@@ -675,6 +869,23 @@ declare const selected: ModelRef<string, string, string, string>;
675
869
 
676
870
  declare type SocialPlatform = 'tiktok' | 'facebook' | 'instagram' | 'linkedin' | 'x' | 'twitter' | 'google';
677
871
 
872
+ export declare const SOURCE_MAP: {
873
+ readonly realworks: "Realworks";
874
+ readonly realworks_agenda_api: "Realworks Agenda API";
875
+ readonly realworks_api: "Realworks API";
876
+ readonly kolibri: "Kolibri";
877
+ readonly kolibri_app_exchange: "Kolibri App Exchange";
878
+ readonly zapier: "Zapier";
879
+ readonly bricr: "Bricr";
880
+ readonly website: "Website";
881
+ readonly manual: "Handmatig ingevoerd";
882
+ readonly tracker: "Tracker";
883
+ readonly read_more: "Lees Meer";
884
+ readonly planner: "Planner";
885
+ readonly forms: "Forms";
886
+ readonly dossier_data: "Dossier Data";
887
+ };
888
+
678
889
  declare interface TableColumn<K extends string = string> {
679
890
  key: K;
680
891
  label: string;