@nexxtmove/ui 0.1.48 → 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 +312 -56
- package/dist/index.js +1341 -1136
- package/dist/nuxt.js +20 -16
- package/package.json +1 -1
- package/src/assets/images/source/bricr.png +0 -0
- package/src/assets/images/source/kolibri.png +0 -0
- package/src/assets/images/source/kolibri_app_exchange.png +0 -0
- package/src/assets/images/source/realworks.png +0 -0
- package/src/assets/images/source/realworks_agenda_api.png +0 -0
- package/src/assets/images/source/realworks_api.png +0 -0
- package/src/assets/images/source/zapier.png +0 -0
- package/src/components/Combobox/Combobox.vue +1 -1
- package/src/components/DropdownButton/DropdownButton.vue +3 -3
- package/src/components/Header/Header.vue +10 -7
- package/src/components/InputField/InputField.vue +5 -4
- package/src/components/PresenceIndicator/PresenceIndicator.vue +32 -0
- package/src/components/Source/Source.vue +91 -0
- package/src/components/TabbedContent/TabbedContent.vue +52 -0
- package/src/components/Tabs/Tabs.vue +113 -0
- package/src/components.json +4 -0
- package/src/index.ts +4 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,26 +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
|
-
import {
|
|
16
|
+
import { ModelRef } from 'vue';
|
|
17
|
+
import { nextTick } from 'vue';
|
|
18
|
+
import { OnCleanup } from '@vue/reactivity';
|
|
12
19
|
import { PublicProps } from 'vue';
|
|
13
20
|
import { ShallowUnwrapRef } from 'vue';
|
|
21
|
+
import { Slot } from 'vue';
|
|
14
22
|
import { VNode } from 'vue';
|
|
15
23
|
import { VNodeProps } from 'vue';
|
|
24
|
+
import { WatchOptions } from 'vue';
|
|
25
|
+
import { WatchStopHandle } from 'vue';
|
|
16
26
|
|
|
17
27
|
declare const __VLS_component: DefineComponent<NexxtButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
18
28
|
|
|
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>;
|
|
32
|
+
|
|
19
33
|
declare const __VLS_component_2: DefineComponent<NexxtChipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtChipProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
20
34
|
|
|
21
35
|
declare const __VLS_component_3: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
22
|
-
"update:modelValue": (value:
|
|
36
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
23
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<{
|
|
24
109
|
"onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
|
|
25
110
|
}>, {
|
|
26
111
|
placeholder: string;
|
|
@@ -32,30 +117,28 @@ triggerRef: HTMLSpanElement;
|
|
|
32
117
|
popoverRef: HTMLDivElement;
|
|
33
118
|
}, HTMLDivElement>;
|
|
34
119
|
|
|
35
|
-
declare const
|
|
120
|
+
declare const __VLS_component_5: DefineComponent<NexxtHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
36
121
|
|
|
37
|
-
declare const
|
|
122
|
+
declare const __VLS_component_6: DefineComponent<NexxtInfoBlockProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtInfoBlockProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
38
123
|
|
|
39
|
-
declare const
|
|
124
|
+
declare const __VLS_component_7: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
40
125
|
"update:modelValue": (value: string) => any;
|
|
41
|
-
}, string, PublicProps, Readonly<
|
|
126
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
42
127
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
43
128
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
44
129
|
|
|
45
|
-
declare const
|
|
130
|
+
declare const __VLS_component_8: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
46
131
|
"update:modelValue": (value: boolean) => any;
|
|
47
|
-
}, string, PublicProps, Readonly<
|
|
132
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
48
133
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
49
134
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
50
135
|
|
|
51
|
-
declare const
|
|
136
|
+
declare const __VLS_component_9: DefineComponent<NexxtStepperHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
52
137
|
"update:currentStep": (...args: any[]) => void;
|
|
53
138
|
}, string, PublicProps, Readonly<NexxtStepperHeaderProps> & Readonly<{
|
|
54
139
|
"onUpdate:currentStep"?: ((...args: any[]) => any) | undefined;
|
|
55
140
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
56
141
|
|
|
57
|
-
declare const __VLS_component_9: DefineComponent<NexxtTooltip_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtTooltip_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
58
|
-
|
|
59
142
|
declare type __VLS_PrettifyLocal<T> = {
|
|
60
143
|
[K in keyof T]: T[K];
|
|
61
144
|
} & {};
|
|
@@ -66,24 +149,12 @@ declare type __VLS_Props = {
|
|
|
66
149
|
delay?: number;
|
|
67
150
|
};
|
|
68
151
|
|
|
69
|
-
declare type
|
|
70
|
-
|
|
71
|
-
declare type __VLS_Props_3 = NexxtCheckboxProps;
|
|
72
|
-
|
|
73
|
-
declare type __VLS_Props_4 = NexxtDatePickerProps;
|
|
74
|
-
|
|
75
|
-
declare type __VLS_Props_5 = NexxtInputFieldProps;
|
|
76
|
-
|
|
77
|
-
declare type __VLS_Props_6 = NexxtModalProps;
|
|
78
|
-
|
|
79
|
-
declare type __VLS_Props_7 = NexxtPaginationProps;
|
|
80
|
-
|
|
81
|
-
declare type __VLS_Props_8 = {
|
|
152
|
+
declare type __VLS_Props_10 = {
|
|
82
153
|
event: TimelineEvent;
|
|
83
154
|
splitView?: boolean;
|
|
84
155
|
};
|
|
85
156
|
|
|
86
|
-
declare type
|
|
157
|
+
declare type __VLS_Props_11 = {
|
|
87
158
|
phase: TimelinePhase;
|
|
88
159
|
/** Index within the filtered phases array (used to determine phase direction/date). */
|
|
89
160
|
index: number;
|
|
@@ -93,6 +164,22 @@ declare type __VLS_Props_9 = {
|
|
|
93
164
|
isLast: boolean;
|
|
94
165
|
};
|
|
95
166
|
|
|
167
|
+
declare type __VLS_Props_2 = NexxtCalendarProps;
|
|
168
|
+
|
|
169
|
+
declare type __VLS_Props_3 = NexxtCheckboxProps;
|
|
170
|
+
|
|
171
|
+
declare type __VLS_Props_4 = NexxtComboboxProps;
|
|
172
|
+
|
|
173
|
+
declare type __VLS_Props_5 = NexxtDatePickerProps;
|
|
174
|
+
|
|
175
|
+
declare type __VLS_Props_6 = NexxtInputFieldProps;
|
|
176
|
+
|
|
177
|
+
declare type __VLS_Props_7 = NexxtModalProps;
|
|
178
|
+
|
|
179
|
+
declare type __VLS_Props_8 = NexxtPaginationProps;
|
|
180
|
+
|
|
181
|
+
declare type __VLS_Props_9 = NexxtTabs_2;
|
|
182
|
+
|
|
96
183
|
declare type __VLS_PublicProps = {
|
|
97
184
|
modelValue?: Date | null;
|
|
98
185
|
} & __VLS_Props_2;
|
|
@@ -102,21 +189,29 @@ declare type __VLS_PublicProps_2 = {
|
|
|
102
189
|
} & __VLS_Props_3;
|
|
103
190
|
|
|
104
191
|
declare type __VLS_PublicProps_3 = {
|
|
105
|
-
modelValue?:
|
|
192
|
+
modelValue?: (string | number)[];
|
|
106
193
|
} & __VLS_Props_4;
|
|
107
194
|
|
|
108
195
|
declare type __VLS_PublicProps_4 = {
|
|
109
|
-
modelValue?:
|
|
196
|
+
modelValue?: Date | null;
|
|
110
197
|
} & __VLS_Props_5;
|
|
111
198
|
|
|
112
199
|
declare type __VLS_PublicProps_5 = {
|
|
113
|
-
modelValue?:
|
|
200
|
+
modelValue?: string;
|
|
114
201
|
} & __VLS_Props_6;
|
|
115
202
|
|
|
116
203
|
declare type __VLS_PublicProps_6 = {
|
|
117
|
-
|
|
204
|
+
modelValue?: boolean;
|
|
118
205
|
} & __VLS_Props_7;
|
|
119
206
|
|
|
207
|
+
declare type __VLS_PublicProps_7 = {
|
|
208
|
+
'page'?: number;
|
|
209
|
+
} & __VLS_Props_8;
|
|
210
|
+
|
|
211
|
+
declare type __VLS_PublicProps_8 = {
|
|
212
|
+
modelValue?: typeof selected['value'];
|
|
213
|
+
} & __VLS_Props_9;
|
|
214
|
+
|
|
120
215
|
declare function __VLS_template(): {
|
|
121
216
|
attrs: Partial<{}>;
|
|
122
217
|
slots: {
|
|
@@ -126,6 +221,23 @@ declare function __VLS_template(): {
|
|
|
126
221
|
rootEl: HTMLButtonElement;
|
|
127
222
|
};
|
|
128
223
|
|
|
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(): {
|
|
232
|
+
attrs: Partial<{}>;
|
|
233
|
+
slots: {
|
|
234
|
+
default?(_: {}): any;
|
|
235
|
+
tooltip?(_: {}): any;
|
|
236
|
+
};
|
|
237
|
+
refs: {};
|
|
238
|
+
rootEl: any;
|
|
239
|
+
};
|
|
240
|
+
|
|
129
241
|
declare function __VLS_template_2(): {
|
|
130
242
|
attrs: Partial<{}>;
|
|
131
243
|
slots: {
|
|
@@ -136,6 +248,80 @@ declare function __VLS_template_2(): {
|
|
|
136
248
|
};
|
|
137
249
|
|
|
138
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(): {
|
|
139
325
|
attrs: Partial<{}>;
|
|
140
326
|
slots: {
|
|
141
327
|
trigger?(_: {
|
|
@@ -151,9 +337,10 @@ declare function __VLS_template_3(): {
|
|
|
151
337
|
rootEl: HTMLDivElement;
|
|
152
338
|
};
|
|
153
339
|
|
|
154
|
-
declare function
|
|
340
|
+
declare function __VLS_template_5(): {
|
|
155
341
|
attrs: Partial<{}>;
|
|
156
342
|
slots: {
|
|
343
|
+
'back-button'?(_: {}): any;
|
|
157
344
|
center?(_: {}): any;
|
|
158
345
|
right?(_: {}): any;
|
|
159
346
|
};
|
|
@@ -161,7 +348,7 @@ declare function __VLS_template_4(): {
|
|
|
161
348
|
rootEl: HTMLDivElement;
|
|
162
349
|
};
|
|
163
350
|
|
|
164
|
-
declare function
|
|
351
|
+
declare function __VLS_template_6(): {
|
|
165
352
|
attrs: Partial<{}>;
|
|
166
353
|
slots: {
|
|
167
354
|
default?(_: {}): any;
|
|
@@ -170,7 +357,7 @@ declare function __VLS_template_5(): {
|
|
|
170
357
|
rootEl: HTMLDivElement;
|
|
171
358
|
};
|
|
172
359
|
|
|
173
|
-
declare function
|
|
360
|
+
declare function __VLS_template_7(): {
|
|
174
361
|
attrs: Partial<{}>;
|
|
175
362
|
slots: {
|
|
176
363
|
right?(_: {}): any;
|
|
@@ -179,7 +366,7 @@ declare function __VLS_template_6(): {
|
|
|
179
366
|
rootEl: HTMLDivElement;
|
|
180
367
|
};
|
|
181
368
|
|
|
182
|
-
declare function
|
|
369
|
+
declare function __VLS_template_8(): {
|
|
183
370
|
attrs: Partial<{}>;
|
|
184
371
|
slots: {
|
|
185
372
|
default?(_: {}): any;
|
|
@@ -189,27 +376,21 @@ declare function __VLS_template_7(): {
|
|
|
189
376
|
rootEl: any;
|
|
190
377
|
};
|
|
191
378
|
|
|
192
|
-
declare function __VLS_template_8(): {
|
|
193
|
-
attrs: Partial<{}>;
|
|
194
|
-
slots: {
|
|
195
|
-
default?(_: {}): any;
|
|
196
|
-
};
|
|
197
|
-
refs: {};
|
|
198
|
-
rootEl: HTMLDivElement;
|
|
199
|
-
};
|
|
200
|
-
|
|
201
379
|
declare function __VLS_template_9(): {
|
|
202
380
|
attrs: Partial<{}>;
|
|
203
381
|
slots: {
|
|
204
382
|
default?(_: {}): any;
|
|
205
|
-
tooltip?(_: {}): any;
|
|
206
383
|
};
|
|
207
384
|
refs: {};
|
|
208
|
-
rootEl:
|
|
385
|
+
rootEl: HTMLDivElement;
|
|
209
386
|
};
|
|
210
387
|
|
|
211
388
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
212
389
|
|
|
390
|
+
declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
|
|
391
|
+
|
|
392
|
+
declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
|
|
393
|
+
|
|
213
394
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
214
395
|
|
|
215
396
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
@@ -232,6 +413,18 @@ declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
232
413
|
};
|
|
233
414
|
};
|
|
234
415
|
|
|
416
|
+
declare type __VLS_WithTemplateSlots_10<T, S> = T & {
|
|
417
|
+
new (): {
|
|
418
|
+
$slots: S;
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
declare type __VLS_WithTemplateSlots_11<T, S> = T & {
|
|
423
|
+
new (): {
|
|
424
|
+
$slots: S;
|
|
425
|
+
};
|
|
426
|
+
};
|
|
427
|
+
|
|
235
428
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
236
429
|
new (): {
|
|
237
430
|
$slots: S;
|
|
@@ -375,7 +568,18 @@ declare interface NexxtChipProps {
|
|
|
375
568
|
variant?: 'default' | 'warning' | 'success' | 'danger' | 'ghost';
|
|
376
569
|
}
|
|
377
570
|
|
|
378
|
-
export
|
|
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
|
+
}
|
|
379
583
|
|
|
380
584
|
export declare const NexxtCustomerJourneyTile: DefineComponent<NexxtCustomerJourneyTileProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtCustomerJourneyTileProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
381
585
|
|
|
@@ -389,7 +593,7 @@ declare interface NexxtCustomerJourneyTileProps {
|
|
|
389
593
|
percentageExplanaition?: string;
|
|
390
594
|
}
|
|
391
595
|
|
|
392
|
-
export declare const NexxtDatePicker:
|
|
596
|
+
export declare const NexxtDatePicker: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
393
597
|
|
|
394
598
|
declare interface NexxtDatePickerProps extends NexxtCalendarProps {
|
|
395
599
|
placeholder?: string;
|
|
@@ -444,7 +648,7 @@ declare interface NexxtDropdownButtonGroup {
|
|
|
444
648
|
items: NexxtDropdownButton_2[];
|
|
445
649
|
}
|
|
446
650
|
|
|
447
|
-
export declare const NexxtHeader:
|
|
651
|
+
export declare const NexxtHeader: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
448
652
|
|
|
449
653
|
declare interface NexxtHeaderProps {
|
|
450
654
|
title: string;
|
|
@@ -460,14 +664,14 @@ declare interface NexxtIconProps {
|
|
|
460
664
|
type?: IconType;
|
|
461
665
|
}
|
|
462
666
|
|
|
463
|
-
export declare const NexxtInfoBlock:
|
|
667
|
+
export declare const NexxtInfoBlock: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
464
668
|
|
|
465
669
|
declare interface NexxtInfoBlockProps {
|
|
466
670
|
icon: InstanceType<typeof NexxtIcon>['name'];
|
|
467
671
|
color?: 'green' | 'purple' | 'blue' | 'rose';
|
|
468
672
|
}
|
|
469
673
|
|
|
470
|
-
export declare const NexxtInputField:
|
|
674
|
+
export declare const NexxtInputField: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
471
675
|
|
|
472
676
|
declare interface NexxtInputFieldProps {
|
|
473
677
|
placeholder?: string;
|
|
@@ -479,7 +683,7 @@ declare interface NexxtInputFieldProps {
|
|
|
479
683
|
required?: boolean;
|
|
480
684
|
}
|
|
481
685
|
|
|
482
|
-
export declare const NexxtModal:
|
|
686
|
+
export declare const NexxtModal: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
483
687
|
|
|
484
688
|
declare interface NexxtModalProps {
|
|
485
689
|
title?: string;
|
|
@@ -490,9 +694,9 @@ declare interface NexxtModalProps {
|
|
|
490
694
|
beforeClose?: () => boolean | Promise<boolean>;
|
|
491
695
|
}
|
|
492
696
|
|
|
493
|
-
export declare const NexxtPagination: DefineComponent<
|
|
697
|
+
export declare const NexxtPagination: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
494
698
|
"update:page": (value: number) => any;
|
|
495
|
-
}, string, PublicProps, Readonly<
|
|
699
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
496
700
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
497
701
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
498
702
|
|
|
@@ -504,6 +708,12 @@ declare interface NexxtPaginationProps {
|
|
|
504
708
|
disabled?: boolean;
|
|
505
709
|
}
|
|
506
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
|
+
|
|
507
717
|
export declare const NexxtProgressBar: DefineComponent<NexxtProgressBarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
508
718
|
"update:currentStep": (...args: any[]) => void;
|
|
509
719
|
}, string, PublicProps, Readonly<NexxtProgressBarProps> & Readonly<{
|
|
@@ -566,7 +776,13 @@ declare interface NexxtSocialMediaTypeProps {
|
|
|
566
776
|
icons?: SocialPlatform[];
|
|
567
777
|
}
|
|
568
778
|
|
|
569
|
-
export declare const
|
|
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"]>;
|
|
570
786
|
|
|
571
787
|
declare interface NexxtStepperHeaderProps {
|
|
572
788
|
title: string;
|
|
@@ -576,6 +792,14 @@ declare interface NexxtStepperHeaderProps {
|
|
|
576
792
|
backButtonAction: InstanceType<typeof NexxtHeader>['backButtonAction'];
|
|
577
793
|
}
|
|
578
794
|
|
|
795
|
+
export declare const NexxtTabbedContent: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
796
|
+
|
|
797
|
+
declare interface NexxtTabbedContent_2 {
|
|
798
|
+
tabs: InstanceType<typeof NexxtTabs>['tabs'];
|
|
799
|
+
animated?: boolean;
|
|
800
|
+
label?: string;
|
|
801
|
+
}
|
|
802
|
+
|
|
579
803
|
export declare const NexxtTable: <TKey extends string, TRow extends Record<TKey, unknown>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
580
804
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
581
805
|
readonly "onUpdate:modelValue"?: ((value: TRow[]) => any) | undefined;
|
|
@@ -612,13 +836,26 @@ declare interface NexxtTableProps<TKey extends string = string, TRow extends Rec
|
|
|
612
836
|
loading?: boolean;
|
|
613
837
|
}
|
|
614
838
|
|
|
615
|
-
export declare const
|
|
839
|
+
export declare const NexxtTabs: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
840
|
+
"update:modelValue": (value: string) => any;
|
|
841
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
842
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
843
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
844
|
+
containerRef: HTMLDivElement;
|
|
845
|
+
}, HTMLDivElement>;
|
|
846
|
+
|
|
847
|
+
declare interface NexxtTabs_2 {
|
|
848
|
+
tabs: string[];
|
|
849
|
+
tablistLabel?: string;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
export declare const NexxtTimelineEvent: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
|
|
616
853
|
splitView: boolean;
|
|
617
854
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
618
855
|
|
|
619
|
-
export declare const NexxtTimelinePhaseblock: DefineComponent<
|
|
856
|
+
export declare const NexxtTimelinePhaseblock: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
620
857
|
|
|
621
|
-
export declare const NexxtTooltip:
|
|
858
|
+
export declare const NexxtTooltip: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
622
859
|
|
|
623
860
|
declare interface NexxtTooltip_2 {
|
|
624
861
|
delay?: number;
|
|
@@ -628,8 +865,27 @@ declare interface NexxtTooltip_2 {
|
|
|
628
865
|
disableHoverableContent?: boolean;
|
|
629
866
|
}
|
|
630
867
|
|
|
868
|
+
declare const selected: ModelRef<string, string, string, string>;
|
|
869
|
+
|
|
631
870
|
declare type SocialPlatform = 'tiktok' | 'facebook' | 'instagram' | 'linkedin' | 'x' | 'twitter' | 'google';
|
|
632
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
|
+
|
|
633
889
|
declare interface TableColumn<K extends string = string> {
|
|
634
890
|
key: K;
|
|
635
891
|
label: string;
|