@nexxtmove/ui 0.1.53 → 0.1.55
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 +375 -103
- package/dist/index.js +1728 -1489
- package/dist/nuxt.js +33 -32
- package/package.json +1 -1
- package/src/components/Chip/Chip.vue +28 -15
- package/src/components/Combobox/Combobox.vue +17 -99
- package/src/components/ComboboxPanel/ComboboxPanel.vue +293 -0
- package/src/components/ComboboxPanel/combobox-types.ts +5 -0
- package/src/components/ContactInfoCard/ContactInfoCard.vue +1 -1
- package/src/components/CustomerJourneyTile/CustomerJourneyTile.vue +43 -4
- package/src/components/DoughnutChart/DoughnutChart.vue +1 -1
- package/src/components.json +1 -0
- package/src/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -27,15 +27,15 @@ import { WatchStopHandle } from 'vue';
|
|
|
27
27
|
|
|
28
28
|
declare const __VLS_component: DefineComponent<NexxtButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
29
29
|
|
|
30
|
-
declare const __VLS_component_10: DefineComponent<
|
|
30
|
+
declare const __VLS_component_10: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
31
31
|
"update:modelValue": (value: string) => any;
|
|
32
|
-
}, string, PublicProps, Readonly<
|
|
32
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
33
33
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
34
34
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
35
35
|
|
|
36
|
-
declare const __VLS_component_11: DefineComponent<
|
|
36
|
+
declare const __VLS_component_11: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
37
37
|
"update:modelValue": (value: boolean) => any;
|
|
38
|
-
}, string, PublicProps, Readonly<
|
|
38
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
39
39
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
40
40
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
41
41
|
|
|
@@ -53,12 +53,87 @@ declare const __VLS_component_2: DefineComponent<Props, {}, {}, {}, {}, Componen
|
|
|
53
53
|
|
|
54
54
|
declare const __VLS_component_3: DefineComponent<NexxtChipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtChipProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
55
55
|
|
|
56
|
-
declare const __VLS_component_4: DefineComponent<
|
|
56
|
+
declare const __VLS_component_4: DefineComponent<({
|
|
57
|
+
modelValue?: (string | number)[];
|
|
58
|
+
} & {
|
|
59
|
+
variant?: InstanceType<typeof NexxtButton>["variant"];
|
|
60
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
61
|
+
placeholder?: string;
|
|
62
|
+
placement?: "left" | "right";
|
|
63
|
+
} & {
|
|
64
|
+
options: string[];
|
|
65
|
+
allowNew?: boolean;
|
|
66
|
+
}) | ({
|
|
67
|
+
modelValue?: (string | number)[];
|
|
68
|
+
} & {
|
|
69
|
+
variant?: InstanceType<typeof NexxtButton>["variant"];
|
|
70
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
71
|
+
placeholder?: string;
|
|
72
|
+
placement?: "left" | "right";
|
|
73
|
+
} & {
|
|
74
|
+
options: {
|
|
75
|
+
label: string;
|
|
76
|
+
value: string | number;
|
|
77
|
+
}[];
|
|
78
|
+
allowNew?: never;
|
|
79
|
+
}), {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
57
80
|
"update:modelValue": (value: (string | number)[]) => any;
|
|
58
|
-
}, string, PublicProps, Readonly<
|
|
81
|
+
}, string, PublicProps, Readonly<({
|
|
82
|
+
modelValue?: (string | number)[];
|
|
83
|
+
} & {
|
|
84
|
+
variant?: InstanceType<typeof NexxtButton>["variant"];
|
|
85
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
86
|
+
placeholder?: string;
|
|
87
|
+
placement?: "left" | "right";
|
|
88
|
+
} & {
|
|
89
|
+
options: string[];
|
|
90
|
+
allowNew?: boolean;
|
|
91
|
+
}) | ({
|
|
92
|
+
modelValue?: (string | number)[];
|
|
93
|
+
} & {
|
|
94
|
+
variant?: InstanceType<typeof NexxtButton>["variant"];
|
|
95
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
96
|
+
placeholder?: string;
|
|
97
|
+
placement?: "left" | "right";
|
|
98
|
+
} & {
|
|
99
|
+
options: {
|
|
100
|
+
label: string;
|
|
101
|
+
value: string | number;
|
|
102
|
+
}[];
|
|
103
|
+
allowNew?: never;
|
|
104
|
+
})> & Readonly<{
|
|
59
105
|
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
60
106
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
61
107
|
wrapperRef: HTMLDivElement;
|
|
108
|
+
panelRef: CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
109
|
+
modelValue?: (string | number)[];
|
|
110
|
+
} & {
|
|
111
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
112
|
+
placeholder?: string;
|
|
113
|
+
floating?: boolean;
|
|
114
|
+
} & {
|
|
115
|
+
options: string[];
|
|
116
|
+
allowNew?: boolean;
|
|
117
|
+
}) | ({
|
|
118
|
+
modelValue?: (string | number)[];
|
|
119
|
+
} & {
|
|
120
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
121
|
+
placeholder?: string;
|
|
122
|
+
floating?: boolean;
|
|
123
|
+
} & {
|
|
124
|
+
options: {
|
|
125
|
+
label: string;
|
|
126
|
+
value: string | number;
|
|
127
|
+
}[];
|
|
128
|
+
allowNew?: never;
|
|
129
|
+
})> & Readonly<{
|
|
130
|
+
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
131
|
+
}>, {
|
|
132
|
+
focus: () => void;
|
|
133
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
134
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
135
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
136
|
+
wrapperRef: HTMLDivElement;
|
|
62
137
|
inputFieldRef: ({
|
|
63
138
|
$: ComponentInternalInstance;
|
|
64
139
|
$data: {};
|
|
@@ -122,13 +197,46 @@ $slots: {
|
|
|
122
197
|
right?(_: {}): any;
|
|
123
198
|
};
|
|
124
199
|
}) | null;
|
|
200
|
+
}, any, ComponentProvideOptions, {
|
|
201
|
+
P: {};
|
|
202
|
+
B: {};
|
|
203
|
+
D: {};
|
|
204
|
+
C: {};
|
|
205
|
+
M: {};
|
|
206
|
+
Defaults: {};
|
|
207
|
+
}, {} & (Readonly<({
|
|
208
|
+
modelValue?: (string | number)[];
|
|
209
|
+
} & {
|
|
210
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
211
|
+
placeholder?: string;
|
|
212
|
+
floating?: boolean;
|
|
213
|
+
} & {
|
|
214
|
+
options: string[];
|
|
215
|
+
allowNew?: boolean;
|
|
216
|
+
}) | ({
|
|
217
|
+
modelValue?: (string | number)[];
|
|
218
|
+
} & {
|
|
219
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
220
|
+
placeholder?: string;
|
|
221
|
+
floating?: boolean;
|
|
222
|
+
} & {
|
|
223
|
+
options: {
|
|
224
|
+
label: string;
|
|
225
|
+
value: string | number;
|
|
226
|
+
}[];
|
|
227
|
+
allowNew?: never;
|
|
228
|
+
})> & Readonly<{
|
|
229
|
+
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
230
|
+
}>), {
|
|
231
|
+
focus: () => void;
|
|
232
|
+
}, {}, {}, {}, {}> | null;
|
|
125
233
|
}, HTMLDivElement>;
|
|
126
234
|
|
|
127
235
|
declare const __VLS_component_5: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
128
236
|
|
|
129
|
-
declare const __VLS_component_6: DefineComponent<
|
|
237
|
+
declare const __VLS_component_6: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
130
238
|
"update:modelValue": (value: Date | null) => any;
|
|
131
|
-
}, string, PublicProps, Readonly<
|
|
239
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
|
|
132
240
|
"onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
|
|
133
241
|
}>, {
|
|
134
242
|
placeholder: string;
|
|
@@ -157,11 +265,6 @@ declare type __VLS_Props = {
|
|
|
157
265
|
};
|
|
158
266
|
|
|
159
267
|
declare type __VLS_Props_10 = {
|
|
160
|
-
event: TimelineEvent;
|
|
161
|
-
splitView?: boolean;
|
|
162
|
-
};
|
|
163
|
-
|
|
164
|
-
declare type __VLS_Props_11 = {
|
|
165
268
|
phase: TimelinePhase;
|
|
166
269
|
/** Index within the filtered phases array (used to determine phase direction/date). */
|
|
167
270
|
index: number;
|
|
@@ -175,17 +278,20 @@ declare type __VLS_Props_2 = NexxtCalendarProps;
|
|
|
175
278
|
|
|
176
279
|
declare type __VLS_Props_3 = NexxtCheckboxProps;
|
|
177
280
|
|
|
178
|
-
declare type __VLS_Props_4 =
|
|
281
|
+
declare type __VLS_Props_4 = NexxtDatePickerProps;
|
|
179
282
|
|
|
180
|
-
declare type __VLS_Props_5 =
|
|
283
|
+
declare type __VLS_Props_5 = NexxtInputFieldProps;
|
|
181
284
|
|
|
182
|
-
declare type __VLS_Props_6 =
|
|
285
|
+
declare type __VLS_Props_6 = NexxtModalProps;
|
|
183
286
|
|
|
184
|
-
declare type __VLS_Props_7 =
|
|
287
|
+
declare type __VLS_Props_7 = NexxtPaginationProps;
|
|
185
288
|
|
|
186
|
-
declare type __VLS_Props_8 =
|
|
289
|
+
declare type __VLS_Props_8 = NexxtTabs_2;
|
|
187
290
|
|
|
188
|
-
declare type __VLS_Props_9 =
|
|
291
|
+
declare type __VLS_Props_9 = {
|
|
292
|
+
event: TimelineEvent;
|
|
293
|
+
splitView?: boolean;
|
|
294
|
+
};
|
|
189
295
|
|
|
190
296
|
declare type __VLS_PublicProps = {
|
|
191
297
|
modelValue?: Date | null;
|
|
@@ -196,28 +302,24 @@ declare type __VLS_PublicProps_2 = {
|
|
|
196
302
|
} & __VLS_Props_3;
|
|
197
303
|
|
|
198
304
|
declare type __VLS_PublicProps_3 = {
|
|
199
|
-
modelValue?:
|
|
305
|
+
modelValue?: Date | null;
|
|
200
306
|
} & __VLS_Props_4;
|
|
201
307
|
|
|
202
308
|
declare type __VLS_PublicProps_4 = {
|
|
203
|
-
modelValue?:
|
|
309
|
+
modelValue?: string;
|
|
204
310
|
} & __VLS_Props_5;
|
|
205
311
|
|
|
206
312
|
declare type __VLS_PublicProps_5 = {
|
|
207
|
-
modelValue?:
|
|
313
|
+
modelValue?: boolean;
|
|
208
314
|
} & __VLS_Props_6;
|
|
209
315
|
|
|
210
316
|
declare type __VLS_PublicProps_6 = {
|
|
211
|
-
|
|
317
|
+
'page'?: number;
|
|
212
318
|
} & __VLS_Props_7;
|
|
213
319
|
|
|
214
320
|
declare type __VLS_PublicProps_7 = {
|
|
215
|
-
'page'?: number;
|
|
216
|
-
} & __VLS_Props_8;
|
|
217
|
-
|
|
218
|
-
declare type __VLS_PublicProps_8 = {
|
|
219
321
|
modelValue?: typeof selected['value'];
|
|
220
|
-
} &
|
|
322
|
+
} & __VLS_Props_8;
|
|
221
323
|
|
|
222
324
|
declare function __VLS_template(): {
|
|
223
325
|
attrs: Partial<{}>;
|
|
@@ -287,6 +389,7 @@ declare function __VLS_template_3(): {
|
|
|
287
389
|
attrs: Partial<{}>;
|
|
288
390
|
slots: {
|
|
289
391
|
default?(_: {}): any;
|
|
392
|
+
close?(_: {}): any;
|
|
290
393
|
};
|
|
291
394
|
refs: {};
|
|
292
395
|
rootEl: HTMLSpanElement;
|
|
@@ -298,70 +401,132 @@ declare function __VLS_template_4(): {
|
|
|
298
401
|
default?(_: {}): any;
|
|
299
402
|
};
|
|
300
403
|
refs: {
|
|
404
|
+
wrapperRef: HTMLDivElement;
|
|
405
|
+
panelRef: CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
406
|
+
modelValue?: (string | number)[];
|
|
407
|
+
} & {
|
|
408
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
409
|
+
placeholder?: string;
|
|
410
|
+
floating?: boolean;
|
|
411
|
+
} & {
|
|
412
|
+
options: string[];
|
|
413
|
+
allowNew?: boolean;
|
|
414
|
+
}) | ({
|
|
415
|
+
modelValue?: (string | number)[];
|
|
416
|
+
} & {
|
|
417
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
418
|
+
placeholder?: string;
|
|
419
|
+
floating?: boolean;
|
|
420
|
+
} & {
|
|
421
|
+
options: {
|
|
422
|
+
label: string;
|
|
423
|
+
value: string | number;
|
|
424
|
+
}[];
|
|
425
|
+
allowNew?: never;
|
|
426
|
+
})> & Readonly<{
|
|
427
|
+
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
428
|
+
}>, {
|
|
429
|
+
focus: () => void;
|
|
430
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
431
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
432
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
301
433
|
wrapperRef: HTMLDivElement;
|
|
302
434
|
inputFieldRef: ({
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
435
|
+
$: ComponentInternalInstance;
|
|
436
|
+
$data: {};
|
|
437
|
+
$props: {
|
|
438
|
+
readonly modelValue?: string | undefined;
|
|
439
|
+
readonly placeholder?: string | undefined;
|
|
440
|
+
readonly label?: string | undefined;
|
|
441
|
+
readonly error?: boolean | undefined;
|
|
442
|
+
readonly errorMessage?: string | undefined;
|
|
443
|
+
readonly leftIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
|
|
444
|
+
readonly rightIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
|
|
445
|
+
readonly required?: boolean | undefined;
|
|
446
|
+
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
447
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
448
|
+
$attrs: {
|
|
449
|
+
[x: string]: unknown;
|
|
450
|
+
};
|
|
451
|
+
$refs: {
|
|
452
|
+
[x: string]: unknown;
|
|
453
|
+
};
|
|
454
|
+
$slots: Readonly<{
|
|
455
|
+
[name: string]: Slot<any> | undefined;
|
|
456
|
+
}>;
|
|
457
|
+
$root: ComponentPublicInstance | null;
|
|
458
|
+
$parent: ComponentPublicInstance | null;
|
|
459
|
+
$host: Element | null;
|
|
460
|
+
$emit: (event: "update:modelValue", value: string) => void;
|
|
461
|
+
$el: HTMLDivElement;
|
|
462
|
+
$options: ComponentOptionsBase<Readonly<{
|
|
463
|
+
modelValue?: string;
|
|
464
|
+
} & NexxtInputFieldProps> & Readonly<{
|
|
465
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
466
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
467
|
+
"update:modelValue": (value: string) => any;
|
|
468
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
469
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
470
|
+
created?: (() => void) | (() => void)[];
|
|
471
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
472
|
+
mounted?: (() => void) | (() => void)[];
|
|
473
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
474
|
+
updated?: (() => void) | (() => void)[];
|
|
475
|
+
activated?: (() => void) | (() => void)[];
|
|
476
|
+
deactivated?: (() => void) | (() => void)[];
|
|
477
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
478
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
479
|
+
destroyed?: (() => void) | (() => void)[];
|
|
480
|
+
unmounted?: (() => void) | (() => void)[];
|
|
481
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
482
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
483
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
484
|
+
};
|
|
485
|
+
$forceUpdate: () => void;
|
|
486
|
+
$nextTick: typeof nextTick;
|
|
487
|
+
$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;
|
|
356
488
|
} & Readonly<{}> & Omit<Readonly<{
|
|
357
|
-
|
|
489
|
+
modelValue?: string;
|
|
358
490
|
} & NexxtInputFieldProps> & Readonly<{
|
|
359
|
-
|
|
491
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
360
492
|
}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
493
|
+
$slots: {
|
|
494
|
+
right?(_: {}): any;
|
|
495
|
+
};
|
|
364
496
|
}) | null;
|
|
497
|
+
}, any, ComponentProvideOptions, {
|
|
498
|
+
P: {};
|
|
499
|
+
B: {};
|
|
500
|
+
D: {};
|
|
501
|
+
C: {};
|
|
502
|
+
M: {};
|
|
503
|
+
Defaults: {};
|
|
504
|
+
}, {} & (Readonly<({
|
|
505
|
+
modelValue?: (string | number)[];
|
|
506
|
+
} & {
|
|
507
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
508
|
+
placeholder?: string;
|
|
509
|
+
floating?: boolean;
|
|
510
|
+
} & {
|
|
511
|
+
options: string[];
|
|
512
|
+
allowNew?: boolean;
|
|
513
|
+
}) | ({
|
|
514
|
+
modelValue?: (string | number)[];
|
|
515
|
+
} & {
|
|
516
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
517
|
+
placeholder?: string;
|
|
518
|
+
floating?: boolean;
|
|
519
|
+
} & {
|
|
520
|
+
options: {
|
|
521
|
+
label: string;
|
|
522
|
+
value: string | number;
|
|
523
|
+
}[];
|
|
524
|
+
allowNew?: never;
|
|
525
|
+
})> & Readonly<{
|
|
526
|
+
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
527
|
+
}>), {
|
|
528
|
+
focus: () => void;
|
|
529
|
+
}, {}, {}, {}, {}> | null;
|
|
365
530
|
};
|
|
366
531
|
rootEl: HTMLDivElement;
|
|
367
532
|
};
|
|
@@ -635,21 +800,126 @@ declare interface NexxtCheckboxProps {
|
|
|
635
800
|
export declare const NexxtChip: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
636
801
|
|
|
637
802
|
declare interface NexxtChipProps {
|
|
638
|
-
variant?: 'default' | 'warning' | 'success' | 'danger'
|
|
803
|
+
variant?: 'default' | 'warning' | 'success' | 'danger';
|
|
804
|
+
ghost?: boolean;
|
|
639
805
|
}
|
|
640
806
|
|
|
641
807
|
export declare const NexxtCombobox: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
642
808
|
|
|
643
|
-
declare
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
}
|
|
809
|
+
export declare const NexxtComboboxPanel: DefineComponent<({
|
|
810
|
+
modelValue?: (string | number)[];
|
|
811
|
+
} & {
|
|
812
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
813
|
+
placeholder?: string;
|
|
814
|
+
floating?: boolean;
|
|
815
|
+
} & {
|
|
816
|
+
options: string[];
|
|
817
|
+
allowNew?: boolean;
|
|
818
|
+
}) | ({
|
|
819
|
+
modelValue?: (string | number)[];
|
|
820
|
+
} & {
|
|
821
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
822
|
+
placeholder?: string;
|
|
823
|
+
floating?: boolean;
|
|
824
|
+
} & {
|
|
825
|
+
options: {
|
|
826
|
+
label: string;
|
|
827
|
+
value: string | number;
|
|
828
|
+
}[];
|
|
829
|
+
allowNew?: never;
|
|
830
|
+
}), {
|
|
831
|
+
focus: () => void;
|
|
832
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
833
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
834
|
+
}, string, PublicProps, Readonly<({
|
|
835
|
+
modelValue?: (string | number)[];
|
|
836
|
+
} & {
|
|
837
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
838
|
+
placeholder?: string;
|
|
839
|
+
floating?: boolean;
|
|
840
|
+
} & {
|
|
841
|
+
options: string[];
|
|
842
|
+
allowNew?: boolean;
|
|
843
|
+
}) | ({
|
|
844
|
+
modelValue?: (string | number)[];
|
|
845
|
+
} & {
|
|
846
|
+
icon?: InstanceType<typeof NexxtIcon>["name"];
|
|
847
|
+
placeholder?: string;
|
|
848
|
+
floating?: boolean;
|
|
849
|
+
} & {
|
|
850
|
+
options: {
|
|
851
|
+
label: string;
|
|
852
|
+
value: string | number;
|
|
853
|
+
}[];
|
|
854
|
+
allowNew?: never;
|
|
855
|
+
})> & Readonly<{
|
|
856
|
+
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
857
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
858
|
+
wrapperRef: HTMLDivElement;
|
|
859
|
+
inputFieldRef: ({
|
|
860
|
+
$: ComponentInternalInstance;
|
|
861
|
+
$data: {};
|
|
862
|
+
$props: {
|
|
863
|
+
readonly modelValue?: string | undefined;
|
|
864
|
+
readonly placeholder?: string | undefined;
|
|
865
|
+
readonly label?: string | undefined;
|
|
866
|
+
readonly error?: boolean | undefined;
|
|
867
|
+
readonly errorMessage?: string | undefined;
|
|
868
|
+
readonly leftIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
|
|
869
|
+
readonly rightIcon?: InstanceType<typeof NexxtIcon>["name"] | undefined;
|
|
870
|
+
readonly required?: boolean | undefined;
|
|
871
|
+
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
872
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
873
|
+
$attrs: {
|
|
874
|
+
[x: string]: unknown;
|
|
875
|
+
};
|
|
876
|
+
$refs: {
|
|
877
|
+
[x: string]: unknown;
|
|
878
|
+
};
|
|
879
|
+
$slots: Readonly<{
|
|
880
|
+
[name: string]: Slot<any> | undefined;
|
|
881
|
+
}>;
|
|
882
|
+
$root: ComponentPublicInstance | null;
|
|
883
|
+
$parent: ComponentPublicInstance | null;
|
|
884
|
+
$host: Element | null;
|
|
885
|
+
$emit: (event: "update:modelValue", value: string) => void;
|
|
886
|
+
$el: HTMLDivElement;
|
|
887
|
+
$options: ComponentOptionsBase<Readonly<{
|
|
888
|
+
modelValue?: string;
|
|
889
|
+
} & NexxtInputFieldProps> & Readonly<{
|
|
890
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
891
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
892
|
+
"update:modelValue": (value: string) => any;
|
|
893
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
894
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
895
|
+
created?: (() => void) | (() => void)[];
|
|
896
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
897
|
+
mounted?: (() => void) | (() => void)[];
|
|
898
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
899
|
+
updated?: (() => void) | (() => void)[];
|
|
900
|
+
activated?: (() => void) | (() => void)[];
|
|
901
|
+
deactivated?: (() => void) | (() => void)[];
|
|
902
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
903
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
904
|
+
destroyed?: (() => void) | (() => void)[];
|
|
905
|
+
unmounted?: (() => void) | (() => void)[];
|
|
906
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
907
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
908
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
909
|
+
};
|
|
910
|
+
$forceUpdate: () => void;
|
|
911
|
+
$nextTick: nextTick;
|
|
912
|
+
$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;
|
|
913
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
914
|
+
modelValue?: string;
|
|
915
|
+
} & NexxtInputFieldProps> & Readonly<{
|
|
916
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
917
|
+
}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
918
|
+
$slots: {
|
|
919
|
+
right?(_: {}): any;
|
|
920
|
+
};
|
|
921
|
+
}) | null;
|
|
922
|
+
}, any>;
|
|
653
923
|
|
|
654
924
|
export declare const NexxtContactInfoCard: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
655
925
|
|
|
@@ -663,6 +933,8 @@ declare interface NexxtCustomerJourneyTileProps {
|
|
|
663
933
|
delay?: number;
|
|
664
934
|
percentage?: number;
|
|
665
935
|
percentageExplanaition?: string;
|
|
936
|
+
variant?: 'information' | 'display';
|
|
937
|
+
selected?: boolean;
|
|
666
938
|
}
|
|
667
939
|
|
|
668
940
|
export declare const NexxtDatePicker: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
@@ -779,9 +1051,9 @@ declare interface NexxtModalProps {
|
|
|
779
1051
|
beforeClose?: () => boolean | Promise<boolean>;
|
|
780
1052
|
}
|
|
781
1053
|
|
|
782
|
-
export declare const NexxtPagination: DefineComponent<
|
|
1054
|
+
export declare const NexxtPagination: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
783
1055
|
"update:page": (value: number) => any;
|
|
784
|
-
}, string, PublicProps, Readonly<
|
|
1056
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
785
1057
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
786
1058
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
787
1059
|
|
|
@@ -933,9 +1205,9 @@ declare interface NexxtTableProps<TKey extends string = string, TRow extends Rec
|
|
|
933
1205
|
loading?: boolean;
|
|
934
1206
|
}
|
|
935
1207
|
|
|
936
|
-
export declare const NexxtTabs: DefineComponent<
|
|
1208
|
+
export declare const NexxtTabs: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
937
1209
|
"update:modelValue": (value: string) => any;
|
|
938
|
-
}, string, PublicProps, Readonly<
|
|
1210
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
939
1211
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
940
1212
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
941
1213
|
containerRef: HTMLDivElement;
|
|
@@ -946,11 +1218,11 @@ declare interface NexxtTabs_2 {
|
|
|
946
1218
|
tablistLabel?: string;
|
|
947
1219
|
}
|
|
948
1220
|
|
|
949
|
-
export declare const NexxtTimelineEvent: DefineComponent<
|
|
1221
|
+
export declare const NexxtTimelineEvent: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
|
|
950
1222
|
splitView: boolean;
|
|
951
1223
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
952
1224
|
|
|
953
|
-
export declare const NexxtTimelinePhaseblock: DefineComponent<
|
|
1225
|
+
export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
954
1226
|
|
|
955
1227
|
export declare const NexxtTooltip: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
956
1228
|
|