@aotearoan/neon 28.1.2 → 28.2.0

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.
Files changed (49) hide show
  1. package/dist/components/layout/filter-bar/NeonFilterBar.cjs.js +2 -0
  2. package/dist/components/layout/filter-bar/NeonFilterBar.cjs.js.map +1 -0
  3. package/dist/components/layout/filter-bar/NeonFilterBar.es.js +11 -0
  4. package/dist/components/layout/filter-bar/NeonFilterBar.es.js.map +1 -0
  5. package/dist/components/layout/filter-bar/NeonFilterBar.vue.cjs.js +2 -0
  6. package/dist/components/layout/filter-bar/NeonFilterBar.vue.cjs.js.map +1 -0
  7. package/dist/components/layout/filter-bar/NeonFilterBar.vue.es.js +34 -0
  8. package/dist/components/layout/filter-bar/NeonFilterBar.vue.es.js.map +1 -0
  9. package/dist/components/user-input/filter/NeonFilter.cjs.js +2 -0
  10. package/dist/components/user-input/filter/NeonFilter.cjs.js.map +1 -0
  11. package/dist/components/user-input/filter/NeonFilter.es.js +138 -0
  12. package/dist/components/user-input/filter/NeonFilter.es.js.map +1 -0
  13. package/dist/components/user-input/filter/NeonFilter.vue.cjs.js +2 -0
  14. package/dist/components/user-input/filter/NeonFilter.vue.cjs.js.map +1 -0
  15. package/dist/components/user-input/filter/NeonFilter.vue.es.js +123 -0
  16. package/dist/components/user-input/filter/NeonFilter.vue.es.js.map +1 -0
  17. package/dist/components/user-input/search-filter/NeonSearchFilter.cjs.js +2 -0
  18. package/dist/components/user-input/search-filter/NeonSearchFilter.cjs.js.map +1 -0
  19. package/dist/components/user-input/search-filter/NeonSearchFilter.es.js +123 -0
  20. package/dist/components/user-input/search-filter/NeonSearchFilter.es.js.map +1 -0
  21. package/dist/components/user-input/search-filter/NeonSearchFilter.vue.cjs.js +2 -0
  22. package/dist/components/user-input/search-filter/NeonSearchFilter.vue.cjs.js.map +1 -0
  23. package/dist/components/user-input/search-filter/NeonSearchFilter.vue.es.js +88 -0
  24. package/dist/components/user-input/search-filter/NeonSearchFilter.vue.es.js.map +1 -0
  25. package/dist/neon.cjs.js +1 -1
  26. package/dist/neon.es.js +209 -203
  27. package/dist/neon.es.js.map +1 -1
  28. package/dist/src/components/layout/filter-bar/NeonFilterBar.d.ts +70 -0
  29. package/dist/src/components/layout/filter-bar/NeonFilterBar.vue.d.ts +2 -0
  30. package/dist/src/components/presentation/image-carousel/NeonImageCarousel.d.ts +1 -1
  31. package/dist/src/components/user-input/filter/NeonFilter.d.ts +3557 -0
  32. package/dist/src/components/user-input/filter/NeonFilter.vue.d.ts +2 -0
  33. package/dist/src/components/user-input/search-filter/NeonSearchFilter.d.ts +3288 -0
  34. package/dist/src/components/user-input/search-filter/NeonSearchFilter.vue.d.ts +2 -0
  35. package/dist/src/model/user-input/filter/NeonFilterItem.d.ts +13 -0
  36. package/dist/src/neon.d.ts +4 -0
  37. package/dist/src/utils/common/debounce/NeonDebounceUtils.d.ts +1 -1
  38. package/dist/utils/common/debounce/NeonDebounceUtils.cjs.js +1 -1
  39. package/dist/utils/common/debounce/NeonDebounceUtils.cjs.js.map +1 -1
  40. package/dist/utils/common/debounce/NeonDebounceUtils.es.js +1 -1
  41. package/dist/utils/common/debounce/NeonDebounceUtils.es.js.map +1 -1
  42. package/package.json +3 -1
  43. package/src/sass/components/_filter-bar.scss +55 -0
  44. package/src/sass/components/_filter.scss +53 -0
  45. package/src/sass/components/_search-filter.scss +25 -0
  46. package/src/sass/components/components.scss +3 -0
  47. package/src/sass/includes/_dependencies.scss +3 -0
  48. package/src/sass/theme.scss +12 -0
  49. package/src/sass/variables-global.scss +7 -0
@@ -0,0 +1,3557 @@
1
+ import type { NeonFilterItem } from '@/model/user-input/filter/NeonFilterItem';
2
+ import { NeonNumberUtils } from '@/utils/common/number/NeonNumberUtils';
3
+ import { NeonSize } from '@/model/common/size/NeonSize';
4
+ import { NeonFunctionalColor } from '@/model/common/color/NeonFunctionalColor';
5
+ /**
6
+ * A filtering component consisting of a button and a dropdown with a list of options. The button either displayed the
7
+ * label or information about the selected items (the selected item or the count of selected items).
8
+ */
9
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
10
+ /**
11
+ * The list of filter items.
12
+ */
13
+ modelValue: {
14
+ type: () => Array<NeonFilterItem>;
15
+ required: true;
16
+ };
17
+ /**
18
+ * The button label. This should conform to an i18n pluralization format,
19
+ * e.g. 'Artists | {itemLabel} | {count} artists'.
20
+ * There are two placeholders: {itemLabel} - the name of the item and {count} the count of selected items.
21
+ * NOTE: In the case nothing is selected the label should just be the filter label, e.g. 'Artists' instead of '0 Artists'.
22
+ */
23
+ label: {
24
+ type: StringConstructor;
25
+ required: true;
26
+ };
27
+ /**
28
+ * The color of the component.
29
+ */
30
+ color: {
31
+ type: () => NeonFunctionalColor;
32
+ default: () => NeonFunctionalColor;
33
+ };
34
+ /**
35
+ * The size of the dropdown button.
36
+ */
37
+ size: {
38
+ type: () => NeonSize;
39
+ default: () => NeonSize;
40
+ };
41
+ /**
42
+ * The disabled state of the filter buttons
43
+ */
44
+ disabled: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ /**
49
+ * Button title when items are selected.
50
+ */
51
+ editTitle: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ /**
56
+ * Clear button title.
57
+ */
58
+ clearTitle: {
59
+ type: StringConstructor;
60
+ default: string;
61
+ };
62
+ /**
63
+ * The reset filter CTA label.
64
+ */
65
+ resetLabel: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
69
+ /**
70
+ * The checkbox list filter placeholder text.
71
+ */
72
+ placeholder: {
73
+ type: StringConstructor;
74
+ default: string;
75
+ };
76
+ /**
77
+ * The close CTA label.
78
+ */
79
+ closeLabel: {
80
+ type: StringConstructor;
81
+ default: string;
82
+ };
83
+ /**
84
+ * The show 'n' items CTA label. This should adhere to the vue-i18n pluralization format
85
+ * e.g. 'Show {count} items | Show {count} item | Show {count} items'.
86
+ * There is one placeholder: {count} - the count of items matching this filter.
87
+ */
88
+ showLabel: {
89
+ type: StringConstructor;
90
+ default: string;
91
+ };
92
+ }>, {
93
+ open: import("vue").Ref<boolean, boolean>;
94
+ filterString: import("vue").Ref<string, string>;
95
+ filteredItems: import("vue").ComputedRef<NeonFilterItem[]>;
96
+ isDirty: import("vue").ComputedRef<boolean>;
97
+ computedLabel: import("vue").ComputedRef<string>;
98
+ computedShowLabel: import("vue").ComputedRef<string>;
99
+ computedTitle: import("vue").ComputedRef<string>;
100
+ selected: import("vue").ComputedRef<NeonFilterItem[]>;
101
+ clearSelection: () => void;
102
+ resetFilter: () => void;
103
+ toggleSelected: (label: string) => void;
104
+ ctaClick: () => void;
105
+ formatNumber: typeof NeonNumberUtils.formatNumber;
106
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "close")[], "update:modelValue" | "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
107
+ /**
108
+ * The list of filter items.
109
+ */
110
+ modelValue: {
111
+ type: () => Array<NeonFilterItem>;
112
+ required: true;
113
+ };
114
+ /**
115
+ * The button label. This should conform to an i18n pluralization format,
116
+ * e.g. 'Artists | {itemLabel} | {count} artists'.
117
+ * There are two placeholders: {itemLabel} - the name of the item and {count} the count of selected items.
118
+ * NOTE: In the case nothing is selected the label should just be the filter label, e.g. 'Artists' instead of '0 Artists'.
119
+ */
120
+ label: {
121
+ type: StringConstructor;
122
+ required: true;
123
+ };
124
+ /**
125
+ * The color of the component.
126
+ */
127
+ color: {
128
+ type: () => NeonFunctionalColor;
129
+ default: () => NeonFunctionalColor;
130
+ };
131
+ /**
132
+ * The size of the dropdown button.
133
+ */
134
+ size: {
135
+ type: () => NeonSize;
136
+ default: () => NeonSize;
137
+ };
138
+ /**
139
+ * The disabled state of the filter buttons
140
+ */
141
+ disabled: {
142
+ type: BooleanConstructor;
143
+ default: boolean;
144
+ };
145
+ /**
146
+ * Button title when items are selected.
147
+ */
148
+ editTitle: {
149
+ type: StringConstructor;
150
+ default: string;
151
+ };
152
+ /**
153
+ * Clear button title.
154
+ */
155
+ clearTitle: {
156
+ type: StringConstructor;
157
+ default: string;
158
+ };
159
+ /**
160
+ * The reset filter CTA label.
161
+ */
162
+ resetLabel: {
163
+ type: StringConstructor;
164
+ default: string;
165
+ };
166
+ /**
167
+ * The checkbox list filter placeholder text.
168
+ */
169
+ placeholder: {
170
+ type: StringConstructor;
171
+ default: string;
172
+ };
173
+ /**
174
+ * The close CTA label.
175
+ */
176
+ closeLabel: {
177
+ type: StringConstructor;
178
+ default: string;
179
+ };
180
+ /**
181
+ * The show 'n' items CTA label. This should adhere to the vue-i18n pluralization format
182
+ * e.g. 'Show {count} items | Show {count} item | Show {count} items'.
183
+ * There is one placeholder: {count} - the count of items matching this filter.
184
+ */
185
+ showLabel: {
186
+ type: StringConstructor;
187
+ default: string;
188
+ };
189
+ }>> & Readonly<{
190
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
191
+ onClose?: ((...args: any[]) => any) | undefined;
192
+ }>, {
193
+ color: NeonFunctionalColor;
194
+ disabled: boolean;
195
+ size: NeonSize;
196
+ placeholder: string;
197
+ editTitle: string;
198
+ clearTitle: string;
199
+ resetLabel: string;
200
+ closeLabel: string;
201
+ showLabel: string;
202
+ }, {}, {
203
+ NeonButton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
204
+ href: {
205
+ type: StringConstructor;
206
+ default: null;
207
+ };
208
+ label: {
209
+ type: StringConstructor;
210
+ default: null;
211
+ };
212
+ size: {
213
+ type: () => import("../../../neon").NeonButtonSize;
214
+ default: import("../../../neon").NeonButtonSize;
215
+ };
216
+ color: {
217
+ type: () => NeonFunctionalColor;
218
+ default: NeonFunctionalColor;
219
+ };
220
+ inverse: {
221
+ type: BooleanConstructor;
222
+ default: boolean;
223
+ };
224
+ alternateColor: {
225
+ type: () => NeonFunctionalColor;
226
+ default: null;
227
+ };
228
+ icon: {
229
+ type: StringConstructor;
230
+ default: null;
231
+ };
232
+ iconAriaLabel: {
233
+ type: StringConstructor;
234
+ };
235
+ iconPosition: {
236
+ type: () => import("../../../neon").NeonHorizontalPosition;
237
+ default: import("../../../neon").NeonHorizontalPosition;
238
+ };
239
+ buttonStyle: {
240
+ type: () => import("../../../neon").NeonButtonStyle;
241
+ default: import("../../../neon").NeonButtonStyle;
242
+ };
243
+ buttonType: {
244
+ type: () => import("../../../neon").NeonButtonType;
245
+ default: import("../../../neon").NeonButtonType;
246
+ };
247
+ state: {
248
+ type: () => import("../../../neon").NeonState;
249
+ default: import("../../../neon").NeonState;
250
+ };
251
+ disabled: {
252
+ type: BooleanConstructor;
253
+ default: boolean;
254
+ };
255
+ transparent: {
256
+ type: BooleanConstructor;
257
+ default: boolean;
258
+ };
259
+ outline: {
260
+ type: BooleanConstructor;
261
+ default: boolean;
262
+ };
263
+ circular: {
264
+ type: BooleanConstructor;
265
+ default: null;
266
+ };
267
+ fullWidth: {
268
+ type: BooleanConstructor;
269
+ default: null;
270
+ };
271
+ indicator: {
272
+ type: BooleanConstructor;
273
+ default: boolean;
274
+ };
275
+ indicatorExpanded: {
276
+ type: BooleanConstructor;
277
+ default: null;
278
+ };
279
+ }>, {
280
+ iconName: import("vue").ComputedRef<string>;
281
+ classes: import("vue").ComputedRef<(string | false | {
282
+ [x: string]: boolean | "" | NeonFunctionalColor;
283
+ 'neon-button--text-transparent': boolean;
284
+ 'neon-button--disabled': boolean;
285
+ 'neon-button--inverse': boolean;
286
+ 'neon-button--circular': boolean;
287
+ 'neon-button--no-outline': boolean;
288
+ 'neon-button--full-width': boolean;
289
+ 'neon-button--with-icon neon-button--icon-only': boolean | "";
290
+ 'neon-button--with-icon neon-button--icon-left': boolean | "";
291
+ 'neon-button--with-icon neon-button--icon-right': boolean | "";
292
+ })[]>;
293
+ button: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
294
+ attrs: {
295
+ [x: string]: unknown;
296
+ };
297
+ sanitizedAttributes: import("vue").ComputedRef<{
298
+ [x: string]: unknown;
299
+ }>;
300
+ clickLink: () => void | undefined;
301
+ clickButton: () => void;
302
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
303
+ href: {
304
+ type: StringConstructor;
305
+ default: null;
306
+ };
307
+ label: {
308
+ type: StringConstructor;
309
+ default: null;
310
+ };
311
+ size: {
312
+ type: () => import("../../../neon").NeonButtonSize;
313
+ default: import("../../../neon").NeonButtonSize;
314
+ };
315
+ color: {
316
+ type: () => NeonFunctionalColor;
317
+ default: NeonFunctionalColor;
318
+ };
319
+ inverse: {
320
+ type: BooleanConstructor;
321
+ default: boolean;
322
+ };
323
+ alternateColor: {
324
+ type: () => NeonFunctionalColor;
325
+ default: null;
326
+ };
327
+ icon: {
328
+ type: StringConstructor;
329
+ default: null;
330
+ };
331
+ iconAriaLabel: {
332
+ type: StringConstructor;
333
+ };
334
+ iconPosition: {
335
+ type: () => import("../../../neon").NeonHorizontalPosition;
336
+ default: import("../../../neon").NeonHorizontalPosition;
337
+ };
338
+ buttonStyle: {
339
+ type: () => import("../../../neon").NeonButtonStyle;
340
+ default: import("../../../neon").NeonButtonStyle;
341
+ };
342
+ buttonType: {
343
+ type: () => import("../../../neon").NeonButtonType;
344
+ default: import("../../../neon").NeonButtonType;
345
+ };
346
+ state: {
347
+ type: () => import("../../../neon").NeonState;
348
+ default: import("../../../neon").NeonState;
349
+ };
350
+ disabled: {
351
+ type: BooleanConstructor;
352
+ default: boolean;
353
+ };
354
+ transparent: {
355
+ type: BooleanConstructor;
356
+ default: boolean;
357
+ };
358
+ outline: {
359
+ type: BooleanConstructor;
360
+ default: boolean;
361
+ };
362
+ circular: {
363
+ type: BooleanConstructor;
364
+ default: null;
365
+ };
366
+ fullWidth: {
367
+ type: BooleanConstructor;
368
+ default: null;
369
+ };
370
+ indicator: {
371
+ type: BooleanConstructor;
372
+ default: boolean;
373
+ };
374
+ indicatorExpanded: {
375
+ type: BooleanConstructor;
376
+ default: null;
377
+ };
378
+ }>> & Readonly<{
379
+ onClick?: ((...args: any[]) => any) | undefined;
380
+ }>, {
381
+ color: NeonFunctionalColor;
382
+ icon: string;
383
+ label: string;
384
+ inverse: boolean;
385
+ disabled: boolean;
386
+ href: string;
387
+ size: import("../../../neon").NeonButtonSize;
388
+ alternateColor: NeonFunctionalColor;
389
+ outline: boolean;
390
+ iconPosition: import("../../../neon").NeonHorizontalPosition;
391
+ buttonStyle: import("../../../neon").NeonButtonStyle;
392
+ buttonType: import("../../../neon").NeonButtonType;
393
+ state: import("../../../neon").NeonState;
394
+ transparent: boolean;
395
+ circular: boolean;
396
+ fullWidth: boolean;
397
+ indicator: boolean;
398
+ indicatorExpanded: boolean;
399
+ }, {}, {
400
+ NeonExpansionIndicator: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
401
+ expanded: {
402
+ type: BooleanConstructor;
403
+ default: boolean;
404
+ };
405
+ inverse: {
406
+ type: BooleanConstructor;
407
+ default: boolean;
408
+ };
409
+ disabled: {
410
+ type: BooleanConstructor;
411
+ default: boolean;
412
+ };
413
+ color: {
414
+ type: () => NeonFunctionalColor;
415
+ default: null;
416
+ };
417
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
418
+ expanded: {
419
+ type: BooleanConstructor;
420
+ default: boolean;
421
+ };
422
+ inverse: {
423
+ type: BooleanConstructor;
424
+ default: boolean;
425
+ };
426
+ disabled: {
427
+ type: BooleanConstructor;
428
+ default: boolean;
429
+ };
430
+ color: {
431
+ type: () => NeonFunctionalColor;
432
+ default: null;
433
+ };
434
+ }>> & Readonly<{}>, {
435
+ color: NeonFunctionalColor;
436
+ inverse: boolean;
437
+ disabled: boolean;
438
+ expanded: boolean;
439
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
440
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
441
+ name: {
442
+ type: StringConstructor;
443
+ required: true;
444
+ };
445
+ id: {
446
+ type: StringConstructor;
447
+ default: null;
448
+ };
449
+ color: {
450
+ type: () => NeonFunctionalColor;
451
+ default: null;
452
+ };
453
+ inverse: {
454
+ type: BooleanConstructor;
455
+ default: boolean;
456
+ };
457
+ disabled: {
458
+ type: BooleanConstructor;
459
+ default: boolean;
460
+ };
461
+ }>, {
462
+ sanitizedAttributes: import("vue").ComputedRef<{
463
+ [x: string]: unknown;
464
+ }>;
465
+ icon: import("vue").ComputedRef<string | undefined>;
466
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
467
+ name: {
468
+ type: StringConstructor;
469
+ required: true;
470
+ };
471
+ id: {
472
+ type: StringConstructor;
473
+ default: null;
474
+ };
475
+ color: {
476
+ type: () => NeonFunctionalColor;
477
+ default: null;
478
+ };
479
+ inverse: {
480
+ type: BooleanConstructor;
481
+ default: boolean;
482
+ };
483
+ disabled: {
484
+ type: BooleanConstructor;
485
+ default: boolean;
486
+ };
487
+ }>> & Readonly<{}>, {
488
+ color: NeonFunctionalColor;
489
+ id: string;
490
+ inverse: boolean;
491
+ disabled: boolean;
492
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
493
+ NeonLink: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
494
+ href: {
495
+ type: StringConstructor;
496
+ default: null;
497
+ };
498
+ noStyle: {
499
+ type: BooleanConstructor;
500
+ default: boolean;
501
+ };
502
+ outlineStyle: {
503
+ type: () => import("../../../neon").NeonOutlineStyle;
504
+ default: import("../../../neon").NeonOutlineStyle;
505
+ };
506
+ externalIndicator: {
507
+ type: BooleanConstructor;
508
+ default: boolean;
509
+ };
510
+ }>, {
511
+ neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
512
+ routerUrl: import("vue").ComputedRef<string | undefined>;
513
+ sanitizedAttributes: import("vue").ComputedRef<{
514
+ [x: string]: unknown;
515
+ }>;
516
+ activeRoute: import("vue").ComputedRef<boolean | "" | undefined>;
517
+ exactRoute: import("vue").ComputedRef<boolean | "" | undefined>;
518
+ onClick: () => void;
519
+ onSpace: () => Promise<void>;
520
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
521
+ href: {
522
+ type: StringConstructor;
523
+ default: null;
524
+ };
525
+ noStyle: {
526
+ type: BooleanConstructor;
527
+ default: boolean;
528
+ };
529
+ outlineStyle: {
530
+ type: () => import("../../../neon").NeonOutlineStyle;
531
+ default: import("../../../neon").NeonOutlineStyle;
532
+ };
533
+ externalIndicator: {
534
+ type: BooleanConstructor;
535
+ default: boolean;
536
+ };
537
+ }>> & Readonly<{
538
+ onClick?: ((...args: any[]) => any) | undefined;
539
+ }>, {
540
+ href: string;
541
+ noStyle: boolean;
542
+ outlineStyle: import("../../../neon").NeonOutlineStyle;
543
+ externalIndicator: boolean;
544
+ }, {}, {
545
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
546
+ name: {
547
+ type: StringConstructor;
548
+ required: true;
549
+ };
550
+ id: {
551
+ type: StringConstructor;
552
+ default: null;
553
+ };
554
+ color: {
555
+ type: () => NeonFunctionalColor;
556
+ default: null;
557
+ };
558
+ inverse: {
559
+ type: BooleanConstructor;
560
+ default: boolean;
561
+ };
562
+ disabled: {
563
+ type: BooleanConstructor;
564
+ default: boolean;
565
+ };
566
+ }>, {
567
+ sanitizedAttributes: import("vue").ComputedRef<{
568
+ [x: string]: unknown;
569
+ }>;
570
+ icon: import("vue").ComputedRef<string | undefined>;
571
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
572
+ name: {
573
+ type: StringConstructor;
574
+ required: true;
575
+ };
576
+ id: {
577
+ type: StringConstructor;
578
+ default: null;
579
+ };
580
+ color: {
581
+ type: () => NeonFunctionalColor;
582
+ default: null;
583
+ };
584
+ inverse: {
585
+ type: BooleanConstructor;
586
+ default: boolean;
587
+ };
588
+ disabled: {
589
+ type: BooleanConstructor;
590
+ default: boolean;
591
+ };
592
+ }>> & Readonly<{}>, {
593
+ color: NeonFunctionalColor;
594
+ id: string;
595
+ inverse: boolean;
596
+ disabled: boolean;
597
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
598
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
599
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
600
+ NeonDropdown: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
601
+ id: {
602
+ type: StringConstructor;
603
+ };
604
+ modelValue: {
605
+ type: BooleanConstructor;
606
+ required: true; /**
607
+ * The color of the component.
608
+ */
609
+ }; /**
610
+ * The color of the component.
611
+ */
612
+ label: {
613
+ type: StringConstructor;
614
+ default: null;
615
+ };
616
+ image: {
617
+ type: StringConstructor;
618
+ default: null;
619
+ };
620
+ imageAlt: {
621
+ type: StringConstructor;
622
+ default: null;
623
+ };
624
+ icon: {
625
+ type: StringConstructor;
626
+ default: null; /**
627
+ * Clear button title.
628
+ */
629
+ };
630
+ iconAriaLabel: {
631
+ type: StringConstructor;
632
+ }; /**
633
+ * The reset filter CTA label.
634
+ */
635
+ indicator: {
636
+ type: BooleanConstructor;
637
+ default: boolean;
638
+ };
639
+ disabled: {
640
+ type: BooleanConstructor;
641
+ default: boolean;
642
+ };
643
+ size: {
644
+ type: () => NeonSize;
645
+ default: NeonSize;
646
+ };
647
+ color: {
648
+ type: () => NeonFunctionalColor;
649
+ default: NeonFunctionalColor;
650
+ };
651
+ alternateColor: {
652
+ type: () => NeonFunctionalColor;
653
+ default: null;
654
+ };
655
+ dropdownStyle: {
656
+ type: () => import("../../../neon").NeonDropdownStyle;
657
+ default: import("../../../neon").NeonDropdownStyle;
658
+ };
659
+ placement: {
660
+ type: () => import("../../../neon").NeonDropdownPlacement;
661
+ default: import("../../../neon").NeonDropdownPlacement;
662
+ };
663
+ placementContainer: {
664
+ type: () => HTMLElement;
665
+ default: null;
666
+ };
667
+ openOnHover: {
668
+ type: BooleanConstructor;
669
+ default: boolean;
670
+ };
671
+ }>, {
672
+ dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
673
+ dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
674
+ dropdownPlacement: import("vue").Ref<import("../../../neon").NeonDropdownPlacement, import("../../../neon").NeonDropdownPlacement>;
675
+ closableUtils: import("vue").Ref<{
676
+ open: () => void;
677
+ destroy: () => void;
678
+ escapeKeyListener: (event: KeyboardEvent) => void;
679
+ close: () => void;
680
+ } | null, import("../../../neon").NeonClosableUtils | {
681
+ open: () => void;
682
+ destroy: () => void;
683
+ escapeKeyListener: (event: KeyboardEvent) => void;
684
+ close: () => void;
685
+ } | null>;
686
+ isButtonStyle: import("vue").ComputedRef<boolean>;
687
+ onClose: () => void;
688
+ close: () => void;
689
+ toggleOpen: () => void;
690
+ onBlur: () => void;
691
+ onFocus: () => void;
692
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "blur" | "focus" | "dropdown-placement")[], "update:modelValue" | "blur" | "focus" | "dropdown-placement", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
693
+ id: {
694
+ type: StringConstructor;
695
+ };
696
+ modelValue: {
697
+ type: BooleanConstructor;
698
+ required: true; /**
699
+ * The color of the component.
700
+ */
701
+ }; /**
702
+ * The color of the component.
703
+ */
704
+ label: {
705
+ type: StringConstructor;
706
+ default: null;
707
+ };
708
+ image: {
709
+ type: StringConstructor;
710
+ default: null;
711
+ };
712
+ imageAlt: {
713
+ type: StringConstructor;
714
+ default: null;
715
+ };
716
+ icon: {
717
+ type: StringConstructor;
718
+ default: null; /**
719
+ * Clear button title.
720
+ */
721
+ };
722
+ iconAriaLabel: {
723
+ type: StringConstructor;
724
+ }; /**
725
+ * The reset filter CTA label.
726
+ */
727
+ indicator: {
728
+ type: BooleanConstructor;
729
+ default: boolean;
730
+ };
731
+ disabled: {
732
+ type: BooleanConstructor;
733
+ default: boolean;
734
+ };
735
+ size: {
736
+ type: () => NeonSize;
737
+ default: NeonSize;
738
+ };
739
+ color: {
740
+ type: () => NeonFunctionalColor;
741
+ default: NeonFunctionalColor;
742
+ };
743
+ alternateColor: {
744
+ type: () => NeonFunctionalColor;
745
+ default: null;
746
+ };
747
+ dropdownStyle: {
748
+ type: () => import("../../../neon").NeonDropdownStyle;
749
+ default: import("../../../neon").NeonDropdownStyle;
750
+ };
751
+ placement: {
752
+ type: () => import("../../../neon").NeonDropdownPlacement;
753
+ default: import("../../../neon").NeonDropdownPlacement;
754
+ };
755
+ placementContainer: {
756
+ type: () => HTMLElement;
757
+ default: null;
758
+ };
759
+ openOnHover: {
760
+ type: BooleanConstructor;
761
+ default: boolean;
762
+ };
763
+ }>> & Readonly<{
764
+ onFocus?: ((...args: any[]) => any) | undefined;
765
+ onBlur?: ((...args: any[]) => any) | undefined;
766
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
767
+ "onDropdown-placement"?: ((...args: any[]) => any) | undefined;
768
+ }>, {
769
+ color: NeonFunctionalColor;
770
+ icon: string;
771
+ label: string;
772
+ disabled: boolean;
773
+ image: string;
774
+ size: NeonSize;
775
+ placement: import("../../../neon").NeonDropdownPlacement;
776
+ alternateColor: NeonFunctionalColor;
777
+ indicator: boolean;
778
+ imageAlt: string;
779
+ dropdownStyle: import("../../../neon").NeonDropdownStyle;
780
+ placementContainer: HTMLElement;
781
+ openOnHover: boolean;
782
+ }, {}, {
783
+ NeonBadge: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
784
+ label: {
785
+ type: StringConstructor;
786
+ default: null;
787
+ };
788
+ image: {
789
+ type: StringConstructor;
790
+ default: null;
791
+ };
792
+ icon: {
793
+ type: StringConstructor;
794
+ default: null;
795
+ };
796
+ circular: {
797
+ type: BooleanConstructor;
798
+ default: boolean;
799
+ };
800
+ size: {
801
+ type: () => import("../../../neon").NeonBadgeSize;
802
+ default: import("../../../neon").NeonBadgeSize;
803
+ };
804
+ color: {
805
+ type: () => NeonFunctionalColor;
806
+ default: NeonFunctionalColor;
807
+ };
808
+ alternateColor: {
809
+ type: () => NeonFunctionalColor;
810
+ default: null; /**
811
+ * The disabled state of the filter buttons
812
+ */
813
+ }; /**
814
+ * The disabled state of the filter buttons
815
+ */
816
+ editable: {
817
+ type: BooleanConstructor;
818
+ default: boolean; /**
819
+ * Clear button title.
820
+ */
821
+ }; /**
822
+ * Clear button title.
823
+ */
824
+ accept: {
825
+ type: StringConstructor;
826
+ default: string;
827
+ };
828
+ disabled: {
829
+ type: BooleanConstructor;
830
+ default: boolean;
831
+ };
832
+ jazziconId: {
833
+ type: StringConstructor;
834
+ default: null;
835
+ }; /**
836
+ * The show 'n' items CTA label. This should adhere to the vue-i18n pluralization format
837
+ * e.g. 'Show {count} items | Show {count} item | Show {count} items'.
838
+ * There is one placeholder: {count} - the count of items matching this filter.
839
+ */
840
+ imageAlt: {
841
+ type: StringConstructor;
842
+ default: string;
843
+ };
844
+ editButtonTitle: {
845
+ type: StringConstructor;
846
+ default: string;
847
+ };
848
+ }>, {
849
+ emit: (event: "change-image", ...args: any[]) => void;
850
+ svg: import("vue").ComputedRef<string | null>;
851
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change-image"[], "change-image", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
852
+ label: {
853
+ type: StringConstructor;
854
+ default: null;
855
+ };
856
+ image: {
857
+ type: StringConstructor;
858
+ default: null;
859
+ };
860
+ icon: {
861
+ type: StringConstructor;
862
+ default: null;
863
+ };
864
+ circular: {
865
+ type: BooleanConstructor;
866
+ default: boolean;
867
+ };
868
+ size: {
869
+ type: () => import("../../../neon").NeonBadgeSize;
870
+ default: import("../../../neon").NeonBadgeSize;
871
+ };
872
+ color: {
873
+ type: () => NeonFunctionalColor;
874
+ default: NeonFunctionalColor;
875
+ };
876
+ alternateColor: {
877
+ type: () => NeonFunctionalColor;
878
+ default: null; /**
879
+ * The disabled state of the filter buttons
880
+ */
881
+ }; /**
882
+ * The disabled state of the filter buttons
883
+ */
884
+ editable: {
885
+ type: BooleanConstructor;
886
+ default: boolean; /**
887
+ * Clear button title.
888
+ */
889
+ }; /**
890
+ * Clear button title.
891
+ */
892
+ accept: {
893
+ type: StringConstructor;
894
+ default: string;
895
+ };
896
+ disabled: {
897
+ type: BooleanConstructor;
898
+ default: boolean;
899
+ };
900
+ jazziconId: {
901
+ type: StringConstructor;
902
+ default: null;
903
+ }; /**
904
+ * The show 'n' items CTA label. This should adhere to the vue-i18n pluralization format
905
+ * e.g. 'Show {count} items | Show {count} item | Show {count} items'.
906
+ * There is one placeholder: {count} - the count of items matching this filter.
907
+ */
908
+ imageAlt: {
909
+ type: StringConstructor;
910
+ default: string;
911
+ };
912
+ editButtonTitle: {
913
+ type: StringConstructor;
914
+ default: string;
915
+ };
916
+ }>> & Readonly<{
917
+ "onChange-image"?: ((...args: any[]) => any) | undefined;
918
+ }>, {
919
+ color: NeonFunctionalColor;
920
+ icon: string;
921
+ label: string;
922
+ disabled: boolean;
923
+ image: string;
924
+ size: import("../../../neon").NeonBadgeSize;
925
+ alternateColor: NeonFunctionalColor;
926
+ circular: boolean;
927
+ accept: string;
928
+ editable: boolean;
929
+ jazziconId: string;
930
+ imageAlt: string;
931
+ editButtonTitle: string;
932
+ }, {}, {
933
+ NeonFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
934
+ /**
935
+ * A filtering component consisting of a button and a dropdown with a list of options. The button either displayed the
936
+ * label or information about the selected items (the selected item or the count of selected items).
937
+ */
938
+ disabled: {
939
+ type: BooleanConstructor;
940
+ default: boolean;
941
+ };
942
+ directUpload: {
943
+ type: BooleanConstructor;
944
+ default: boolean;
945
+ };
946
+ multiple: {
947
+ type: BooleanConstructor;
948
+ default: boolean;
949
+ };
950
+ accept: {
951
+ type: StringConstructor; /**
952
+ * The button label. This should conform to an i18n pluralization format,
953
+ * e.g. 'Artists | {itemLabel} | {count} artists'.
954
+ * There are two placeholders: {itemLabel} - the name of the item and {count} the count of selected items.
955
+ * NOTE: In the case nothing is selected the label should just be the filter label, e.g. 'Artists' instead of '0 Artists'.
956
+ */
957
+ default: null;
958
+ };
959
+ id: {
960
+ type: StringConstructor;
961
+ default: null;
962
+ };
963
+ size: {
964
+ type: () => NeonSize;
965
+ default: NeonSize;
966
+ };
967
+ state: {
968
+ type: () => import("../../../neon").NeonState;
969
+ default: import("../../../neon").NeonState;
970
+ };
971
+ color: {
972
+ type: () => NeonFunctionalColor;
973
+ default: NeonFunctionalColor;
974
+ };
975
+ buttonStyle: {
976
+ type: () => import("../../../neon").NeonButtonStyle;
977
+ default: import("../../../neon").NeonButtonStyle;
978
+ };
979
+ circular: {
980
+ type: BooleanConstructor;
981
+ default: null; /**
982
+ * Clear button title.
983
+ */
984
+ }; /**
985
+ * Clear button title.
986
+ */
987
+ label: {
988
+ type: StringConstructor;
989
+ /**
990
+ * The reset filter CTA label.
991
+ */
992
+ default: null;
993
+ };
994
+ icon: {
995
+ type: StringConstructor;
996
+ default: null;
997
+ };
998
+ title: {
999
+ type: StringConstructor;
1000
+ default: string;
1001
+ };
1002
+ }>, {
1003
+ fileInput: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1004
+ id: {
1005
+ type: StringConstructor;
1006
+ default: null;
1007
+ };
1008
+ modelValue: {
1009
+ type: StringConstructor;
1010
+ default: null;
1011
+ };
1012
+ type: {
1013
+ type: () => import("../../../neon").NeonInputType;
1014
+ default: import("../../../neon").NeonInputType;
1015
+ };
1016
+ placeholder: {
1017
+ type: StringConstructor;
1018
+ default: null;
1019
+ };
1020
+ size: {
1021
+ type: () => NeonSize;
1022
+ default: NeonSize;
1023
+ };
1024
+ color: {
1025
+ type: () => NeonFunctionalColor;
1026
+ default: NeonFunctionalColor;
1027
+ };
1028
+ inputmode: {
1029
+ type: () => import("../../../neon").NeonInputMode;
1030
+ default: import("../../../neon").NeonInputMode;
1031
+ };
1032
+ autocomplete: {
1033
+ type: StringConstructor;
1034
+ default: string;
1035
+ };
1036
+ state: {
1037
+ type: () => import("../../../neon").NeonState;
1038
+ default: import("../../../neon").NeonState;
1039
+ };
1040
+ rows: {
1041
+ type: NumberConstructor;
1042
+ default: null;
1043
+ };
1044
+ icon: {
1045
+ type: StringConstructor;
1046
+ default: null;
1047
+ };
1048
+ iconReadonly: {
1049
+ type: BooleanConstructor;
1050
+ default: boolean;
1051
+ };
1052
+ hideIcon: {
1053
+ type: BooleanConstructor;
1054
+ default: boolean;
1055
+ };
1056
+ tabindex: {
1057
+ type: NumberConstructor;
1058
+ default: number;
1059
+ };
1060
+ disabled: {
1061
+ type: BooleanConstructor;
1062
+ default: boolean;
1063
+ };
1064
+ stateHighlight: {
1065
+ type: BooleanConstructor;
1066
+ default: boolean;
1067
+ };
1068
+ stateIcon: {
1069
+ type: BooleanConstructor;
1070
+ default: boolean;
1071
+ };
1072
+ maxlength: {
1073
+ type: NumberConstructor;
1074
+ default: null;
1075
+ };
1076
+ maxlengthLabel: {
1077
+ type: StringConstructor;
1078
+ default: string;
1079
+ };
1080
+ debounce: {
1081
+ type: NumberConstructor;
1082
+ default: undefined;
1083
+ };
1084
+ }>> & Readonly<{
1085
+ onFocus?: ((...args: any[]) => any) | undefined;
1086
+ onBlur?: ((...args: any[]) => any) | undefined;
1087
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1088
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
1089
+ }>, {
1090
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
1091
+ focused: import("vue").Ref<boolean, boolean>;
1092
+ sanitizedAttributes: import("vue").ComputedRef<{
1093
+ [x: string]: unknown;
1094
+ }>;
1095
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
1096
+ iconName: import("vue").ComputedRef<string | undefined>;
1097
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
1098
+ computedPlaceholder: import("vue").ComputedRef<string>;
1099
+ counterLabel: import("vue").ComputedRef<string | null>;
1100
+ focus: () => void;
1101
+ click: () => void;
1102
+ onFocus: () => void;
1103
+ onBlur: () => void;
1104
+ iconClicked: ($event: Event) => void;
1105
+ changeValue: (event: InputEvent) => void;
1106
+ onKeyDown: (event: KeyboardEvent) => void;
1107
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "blur" | "focus" | "icon-click")[], import("vue").PublicProps, {
1108
+ color: NeonFunctionalColor;
1109
+ icon: string;
1110
+ type: import("../../../neon").NeonInputType;
1111
+ id: string;
1112
+ disabled: boolean;
1113
+ size: NeonSize;
1114
+ placeholder: string;
1115
+ tabindex: number;
1116
+ inputmode: import("../../../neon").NeonInputMode;
1117
+ modelValue: string;
1118
+ state: import("../../../neon").NeonState;
1119
+ autocomplete: string;
1120
+ rows: number;
1121
+ iconReadonly: boolean;
1122
+ hideIcon: boolean;
1123
+ stateHighlight: boolean;
1124
+ stateIcon: boolean;
1125
+ maxlength: number;
1126
+ maxlengthLabel: string;
1127
+ debounce: number;
1128
+ }, true, {}, {}, {
1129
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1130
+ name: {
1131
+ type: StringConstructor;
1132
+ required: true;
1133
+ };
1134
+ id: {
1135
+ type: StringConstructor;
1136
+ default: null;
1137
+ };
1138
+ color: {
1139
+ type: () => NeonFunctionalColor;
1140
+ default: null;
1141
+ };
1142
+ inverse: {
1143
+ type: BooleanConstructor;
1144
+ default: boolean;
1145
+ };
1146
+ disabled: {
1147
+ type: BooleanConstructor;
1148
+ default: boolean;
1149
+ };
1150
+ }>, {
1151
+ sanitizedAttributes: import("vue").ComputedRef<{
1152
+ [x: string]: unknown;
1153
+ }>;
1154
+ icon: import("vue").ComputedRef<string | undefined>;
1155
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1156
+ name: {
1157
+ type: StringConstructor;
1158
+ required: true;
1159
+ };
1160
+ id: {
1161
+ type: StringConstructor;
1162
+ default: null;
1163
+ };
1164
+ color: {
1165
+ type: () => NeonFunctionalColor;
1166
+ default: null;
1167
+ };
1168
+ inverse: {
1169
+ type: BooleanConstructor;
1170
+ default: boolean;
1171
+ };
1172
+ disabled: {
1173
+ type: BooleanConstructor;
1174
+ default: boolean;
1175
+ };
1176
+ }>> & Readonly<{}>, {
1177
+ color: NeonFunctionalColor;
1178
+ id: string;
1179
+ inverse: boolean;
1180
+ disabled: boolean;
1181
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1182
+ } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1183
+ P: {};
1184
+ B: {};
1185
+ D: {};
1186
+ C: {};
1187
+ M: {};
1188
+ Defaults: {};
1189
+ }, Readonly<import("vue").ExtractPropTypes<{
1190
+ id: {
1191
+ type: StringConstructor;
1192
+ default: null;
1193
+ };
1194
+ modelValue: {
1195
+ type: StringConstructor;
1196
+ default: null;
1197
+ };
1198
+ type: {
1199
+ type: () => import("../../../neon").NeonInputType;
1200
+ default: import("../../../neon").NeonInputType;
1201
+ };
1202
+ placeholder: {
1203
+ type: StringConstructor;
1204
+ default: null;
1205
+ };
1206
+ size: {
1207
+ type: () => NeonSize;
1208
+ default: NeonSize;
1209
+ };
1210
+ color: {
1211
+ type: () => NeonFunctionalColor;
1212
+ default: NeonFunctionalColor;
1213
+ };
1214
+ inputmode: {
1215
+ type: () => import("../../../neon").NeonInputMode;
1216
+ default: import("../../../neon").NeonInputMode;
1217
+ };
1218
+ autocomplete: {
1219
+ type: StringConstructor;
1220
+ default: string;
1221
+ };
1222
+ state: {
1223
+ type: () => import("../../../neon").NeonState;
1224
+ default: import("../../../neon").NeonState;
1225
+ };
1226
+ rows: {
1227
+ type: NumberConstructor;
1228
+ default: null;
1229
+ };
1230
+ icon: {
1231
+ type: StringConstructor;
1232
+ default: null;
1233
+ };
1234
+ iconReadonly: {
1235
+ type: BooleanConstructor;
1236
+ default: boolean;
1237
+ };
1238
+ hideIcon: {
1239
+ type: BooleanConstructor;
1240
+ default: boolean;
1241
+ };
1242
+ tabindex: {
1243
+ type: NumberConstructor;
1244
+ default: number;
1245
+ };
1246
+ disabled: {
1247
+ type: BooleanConstructor;
1248
+ default: boolean;
1249
+ };
1250
+ stateHighlight: {
1251
+ type: BooleanConstructor;
1252
+ default: boolean;
1253
+ };
1254
+ stateIcon: {
1255
+ type: BooleanConstructor;
1256
+ default: boolean;
1257
+ };
1258
+ maxlength: {
1259
+ type: NumberConstructor;
1260
+ default: null;
1261
+ };
1262
+ maxlengthLabel: {
1263
+ type: StringConstructor;
1264
+ default: string;
1265
+ };
1266
+ debounce: {
1267
+ type: NumberConstructor;
1268
+ default: undefined;
1269
+ };
1270
+ }>> & Readonly<{
1271
+ onFocus?: ((...args: any[]) => any) | undefined;
1272
+ onBlur?: ((...args: any[]) => any) | undefined;
1273
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1274
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
1275
+ }>, {
1276
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
1277
+ focused: import("vue").Ref<boolean, boolean>;
1278
+ sanitizedAttributes: import("vue").ComputedRef<{
1279
+ [x: string]: unknown;
1280
+ }>;
1281
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
1282
+ iconName: import("vue").ComputedRef<string | undefined>;
1283
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
1284
+ computedPlaceholder: import("vue").ComputedRef<string>;
1285
+ counterLabel: import("vue").ComputedRef<string | null>;
1286
+ focus: () => void;
1287
+ click: () => void;
1288
+ onFocus: () => void;
1289
+ onBlur: () => void;
1290
+ iconClicked: ($event: Event) => void;
1291
+ changeValue: (event: InputEvent) => void;
1292
+ onKeyDown: (event: KeyboardEvent) => void;
1293
+ }, {}, {}, {}, {
1294
+ color: NeonFunctionalColor;
1295
+ icon: string;
1296
+ type: import("../../../neon").NeonInputType;
1297
+ id: string;
1298
+ disabled: boolean;
1299
+ size: NeonSize;
1300
+ placeholder: string;
1301
+ tabindex: number;
1302
+ inputmode: import("../../../neon").NeonInputMode;
1303
+ modelValue: string;
1304
+ state: import("../../../neon").NeonState;
1305
+ autocomplete: string;
1306
+ rows: number;
1307
+ iconReadonly: boolean;
1308
+ hideIcon: boolean;
1309
+ stateHighlight: boolean;
1310
+ stateIcon: boolean;
1311
+ maxlength: number;
1312
+ maxlengthLabel: string;
1313
+ debounce: number;
1314
+ }> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1315
+ id: {
1316
+ type: StringConstructor;
1317
+ default: null;
1318
+ };
1319
+ modelValue: {
1320
+ type: StringConstructor;
1321
+ default: null;
1322
+ };
1323
+ type: {
1324
+ type: () => import("../../../neon").NeonInputType;
1325
+ default: import("../../../neon").NeonInputType;
1326
+ };
1327
+ placeholder: {
1328
+ type: StringConstructor;
1329
+ default: null;
1330
+ };
1331
+ size: {
1332
+ type: () => NeonSize;
1333
+ default: NeonSize;
1334
+ };
1335
+ color: {
1336
+ type: () => NeonFunctionalColor;
1337
+ default: NeonFunctionalColor;
1338
+ };
1339
+ inputmode: {
1340
+ type: () => import("../../../neon").NeonInputMode;
1341
+ default: import("../../../neon").NeonInputMode;
1342
+ };
1343
+ autocomplete: {
1344
+ type: StringConstructor;
1345
+ default: string;
1346
+ };
1347
+ state: {
1348
+ type: () => import("../../../neon").NeonState;
1349
+ default: import("../../../neon").NeonState;
1350
+ };
1351
+ rows: {
1352
+ type: NumberConstructor;
1353
+ default: null;
1354
+ };
1355
+ icon: {
1356
+ type: StringConstructor;
1357
+ default: null;
1358
+ };
1359
+ iconReadonly: {
1360
+ type: BooleanConstructor;
1361
+ default: boolean;
1362
+ };
1363
+ hideIcon: {
1364
+ type: BooleanConstructor;
1365
+ default: boolean;
1366
+ };
1367
+ tabindex: {
1368
+ type: NumberConstructor;
1369
+ default: number;
1370
+ };
1371
+ disabled: {
1372
+ type: BooleanConstructor;
1373
+ default: boolean;
1374
+ };
1375
+ stateHighlight: {
1376
+ type: BooleanConstructor;
1377
+ default: boolean;
1378
+ };
1379
+ stateIcon: {
1380
+ type: BooleanConstructor;
1381
+ default: boolean;
1382
+ };
1383
+ maxlength: {
1384
+ type: NumberConstructor;
1385
+ default: null;
1386
+ };
1387
+ maxlengthLabel: {
1388
+ type: StringConstructor;
1389
+ default: string;
1390
+ };
1391
+ debounce: {
1392
+ type: NumberConstructor;
1393
+ default: undefined;
1394
+ };
1395
+ }>> & Readonly<{
1396
+ onFocus?: ((...args: any[]) => any) | undefined;
1397
+ onBlur?: ((...args: any[]) => any) | undefined;
1398
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1399
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
1400
+ }>, {
1401
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
1402
+ focused: import("vue").Ref<boolean, boolean>;
1403
+ sanitizedAttributes: import("vue").ComputedRef<{
1404
+ [x: string]: unknown;
1405
+ }>;
1406
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
1407
+ iconName: import("vue").ComputedRef<string | undefined>;
1408
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
1409
+ computedPlaceholder: import("vue").ComputedRef<string>;
1410
+ counterLabel: import("vue").ComputedRef<string | null>;
1411
+ focus: () => void;
1412
+ click: () => void;
1413
+ onFocus: () => void;
1414
+ onBlur: () => void;
1415
+ iconClicked: ($event: Event) => void;
1416
+ changeValue: (event: InputEvent) => void;
1417
+ onKeyDown: (event: KeyboardEvent) => void;
1418
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "blur" | "focus" | "icon-click")[], import("vue").PublicProps, {
1419
+ color: NeonFunctionalColor;
1420
+ icon: string;
1421
+ type: import("../../../neon").NeonInputType;
1422
+ id: string;
1423
+ disabled: boolean;
1424
+ size: NeonSize;
1425
+ placeholder: string;
1426
+ tabindex: number;
1427
+ inputmode: import("../../../neon").NeonInputMode;
1428
+ modelValue: string;
1429
+ state: import("../../../neon").NeonState;
1430
+ autocomplete: string;
1431
+ rows: number;
1432
+ iconReadonly: boolean;
1433
+ hideIcon: boolean;
1434
+ stateHighlight: boolean;
1435
+ stateIcon: boolean;
1436
+ maxlength: number;
1437
+ maxlengthLabel: string;
1438
+ debounce: number;
1439
+ }, true, {}, {}, {
1440
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1441
+ name: {
1442
+ type: StringConstructor;
1443
+ required: true;
1444
+ };
1445
+ id: {
1446
+ type: StringConstructor;
1447
+ default: null;
1448
+ };
1449
+ color: {
1450
+ type: () => NeonFunctionalColor;
1451
+ default: null;
1452
+ };
1453
+ inverse: {
1454
+ type: BooleanConstructor;
1455
+ default: boolean;
1456
+ };
1457
+ disabled: {
1458
+ type: BooleanConstructor;
1459
+ default: boolean;
1460
+ };
1461
+ }>, {
1462
+ sanitizedAttributes: import("vue").ComputedRef<{
1463
+ [x: string]: unknown;
1464
+ }>;
1465
+ icon: import("vue").ComputedRef<string | undefined>;
1466
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1467
+ name: {
1468
+ type: StringConstructor;
1469
+ required: true;
1470
+ };
1471
+ id: {
1472
+ type: StringConstructor;
1473
+ default: null;
1474
+ };
1475
+ color: {
1476
+ type: () => NeonFunctionalColor;
1477
+ default: null;
1478
+ };
1479
+ inverse: {
1480
+ type: BooleanConstructor;
1481
+ default: boolean;
1482
+ };
1483
+ disabled: {
1484
+ type: BooleanConstructor;
1485
+ default: boolean;
1486
+ };
1487
+ }>> & Readonly<{}>, {
1488
+ color: NeonFunctionalColor;
1489
+ id: string;
1490
+ inverse: boolean;
1491
+ disabled: boolean;
1492
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1493
+ } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1494
+ P: {};
1495
+ B: {};
1496
+ D: {};
1497
+ C: {};
1498
+ M: {};
1499
+ Defaults: {};
1500
+ }, Readonly<import("vue").ExtractPropTypes<{
1501
+ id: {
1502
+ type: StringConstructor;
1503
+ default: null;
1504
+ };
1505
+ modelValue: {
1506
+ type: StringConstructor;
1507
+ default: null;
1508
+ };
1509
+ type: {
1510
+ type: () => import("../../../neon").NeonInputType;
1511
+ default: import("../../../neon").NeonInputType;
1512
+ };
1513
+ placeholder: {
1514
+ type: StringConstructor;
1515
+ default: null;
1516
+ };
1517
+ size: {
1518
+ type: () => NeonSize;
1519
+ default: NeonSize;
1520
+ };
1521
+ color: {
1522
+ type: () => NeonFunctionalColor;
1523
+ default: NeonFunctionalColor;
1524
+ };
1525
+ inputmode: {
1526
+ type: () => import("../../../neon").NeonInputMode;
1527
+ default: import("../../../neon").NeonInputMode;
1528
+ };
1529
+ autocomplete: {
1530
+ type: StringConstructor;
1531
+ default: string;
1532
+ };
1533
+ state: {
1534
+ type: () => import("../../../neon").NeonState;
1535
+ default: import("../../../neon").NeonState;
1536
+ };
1537
+ rows: {
1538
+ type: NumberConstructor;
1539
+ default: null;
1540
+ };
1541
+ icon: {
1542
+ type: StringConstructor;
1543
+ default: null;
1544
+ };
1545
+ iconReadonly: {
1546
+ type: BooleanConstructor;
1547
+ default: boolean;
1548
+ };
1549
+ hideIcon: {
1550
+ type: BooleanConstructor;
1551
+ default: boolean;
1552
+ };
1553
+ tabindex: {
1554
+ type: NumberConstructor;
1555
+ default: number;
1556
+ };
1557
+ disabled: {
1558
+ type: BooleanConstructor;
1559
+ default: boolean;
1560
+ };
1561
+ stateHighlight: {
1562
+ type: BooleanConstructor;
1563
+ default: boolean;
1564
+ };
1565
+ stateIcon: {
1566
+ type: BooleanConstructor;
1567
+ default: boolean;
1568
+ };
1569
+ maxlength: {
1570
+ type: NumberConstructor;
1571
+ default: null;
1572
+ };
1573
+ maxlengthLabel: {
1574
+ type: StringConstructor;
1575
+ default: string;
1576
+ };
1577
+ debounce: {
1578
+ type: NumberConstructor;
1579
+ default: undefined;
1580
+ };
1581
+ }>> & Readonly<{
1582
+ onFocus?: ((...args: any[]) => any) | undefined;
1583
+ onBlur?: ((...args: any[]) => any) | undefined;
1584
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1585
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
1586
+ }>, {
1587
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
1588
+ focused: import("vue").Ref<boolean, boolean>;
1589
+ sanitizedAttributes: import("vue").ComputedRef<{
1590
+ [x: string]: unknown;
1591
+ }>;
1592
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
1593
+ iconName: import("vue").ComputedRef<string | undefined>;
1594
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
1595
+ computedPlaceholder: import("vue").ComputedRef<string>;
1596
+ counterLabel: import("vue").ComputedRef<string | null>;
1597
+ focus: () => void;
1598
+ click: () => void;
1599
+ onFocus: () => void;
1600
+ onBlur: () => void;
1601
+ iconClicked: ($event: Event) => void;
1602
+ changeValue: (event: InputEvent) => void;
1603
+ onKeyDown: (event: KeyboardEvent) => void;
1604
+ }, {}, {}, {}, {
1605
+ color: NeonFunctionalColor;
1606
+ icon: string;
1607
+ type: import("../../../neon").NeonInputType;
1608
+ id: string;
1609
+ disabled: boolean;
1610
+ size: NeonSize;
1611
+ placeholder: string;
1612
+ tabindex: number;
1613
+ inputmode: import("../../../neon").NeonInputMode;
1614
+ modelValue: string;
1615
+ state: import("../../../neon").NeonState;
1616
+ autocomplete: string;
1617
+ rows: number;
1618
+ iconReadonly: boolean;
1619
+ hideIcon: boolean;
1620
+ stateHighlight: boolean;
1621
+ stateIcon: boolean;
1622
+ maxlength: number;
1623
+ maxlengthLabel: string;
1624
+ debounce: number;
1625
+ }> | null>;
1626
+ files: import("vue").Ref<{
1627
+ readonly lastModified: number;
1628
+ readonly name: string;
1629
+ readonly webkitRelativePath: string;
1630
+ readonly size: number;
1631
+ readonly type: string;
1632
+ arrayBuffer: () => Promise<ArrayBuffer>;
1633
+ slice: (start?: number | undefined, end?: number | undefined, contentType?: string | undefined) => Blob;
1634
+ stream: () => ReadableStream<Uint8Array>;
1635
+ text: () => Promise<string>;
1636
+ }[], File[] | {
1637
+ readonly lastModified: number;
1638
+ readonly name: string;
1639
+ readonly webkitRelativePath: string;
1640
+ readonly size: number;
1641
+ readonly type: string;
1642
+ arrayBuffer: () => Promise<ArrayBuffer>;
1643
+ slice: (start?: number | undefined, end?: number | undefined, contentType?: string | undefined) => Blob;
1644
+ stream: () => ReadableStream<Uint8Array>;
1645
+ text: () => Promise<string>;
1646
+ }[]>;
1647
+ fileList: import("vue").ComputedRef<{
1648
+ key: string;
1649
+ label: string;
1650
+ }[]>;
1651
+ fileInputModel: import("vue").Ref<string, string>;
1652
+ remove: (filename: string) => void;
1653
+ clearAll: () => void;
1654
+ openFileDialog: () => void;
1655
+ onInput: (event: Event) => void;
1656
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1657
+ /**
1658
+ * A filtering component consisting of a button and a dropdown with a list of options. The button either displayed the
1659
+ * label or information about the selected items (the selected item or the count of selected items).
1660
+ */
1661
+ disabled: {
1662
+ type: BooleanConstructor;
1663
+ default: boolean;
1664
+ };
1665
+ directUpload: {
1666
+ type: BooleanConstructor;
1667
+ default: boolean;
1668
+ };
1669
+ multiple: {
1670
+ type: BooleanConstructor;
1671
+ default: boolean;
1672
+ };
1673
+ accept: {
1674
+ type: StringConstructor; /**
1675
+ * The button label. This should conform to an i18n pluralization format,
1676
+ * e.g. 'Artists | {itemLabel} | {count} artists'.
1677
+ * There are two placeholders: {itemLabel} - the name of the item and {count} the count of selected items.
1678
+ * NOTE: In the case nothing is selected the label should just be the filter label, e.g. 'Artists' instead of '0 Artists'.
1679
+ */
1680
+ default: null;
1681
+ };
1682
+ id: {
1683
+ type: StringConstructor;
1684
+ default: null;
1685
+ };
1686
+ size: {
1687
+ type: () => NeonSize;
1688
+ default: NeonSize;
1689
+ };
1690
+ state: {
1691
+ type: () => import("../../../neon").NeonState;
1692
+ default: import("../../../neon").NeonState;
1693
+ };
1694
+ color: {
1695
+ type: () => NeonFunctionalColor;
1696
+ default: NeonFunctionalColor;
1697
+ };
1698
+ buttonStyle: {
1699
+ type: () => import("../../../neon").NeonButtonStyle;
1700
+ default: import("../../../neon").NeonButtonStyle;
1701
+ };
1702
+ circular: {
1703
+ type: BooleanConstructor;
1704
+ default: null; /**
1705
+ * Clear button title.
1706
+ */
1707
+ }; /**
1708
+ * Clear button title.
1709
+ */
1710
+ label: {
1711
+ type: StringConstructor;
1712
+ /**
1713
+ * The reset filter CTA label.
1714
+ */
1715
+ default: null;
1716
+ };
1717
+ icon: {
1718
+ type: StringConstructor;
1719
+ default: null;
1720
+ };
1721
+ title: {
1722
+ type: StringConstructor;
1723
+ default: string;
1724
+ };
1725
+ }>> & Readonly<{
1726
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1727
+ }>, {
1728
+ color: NeonFunctionalColor;
1729
+ icon: string;
1730
+ label: string;
1731
+ id: string;
1732
+ disabled: boolean;
1733
+ title: string;
1734
+ size: NeonSize;
1735
+ buttonStyle: import("../../../neon").NeonButtonStyle;
1736
+ state: import("../../../neon").NeonState;
1737
+ circular: boolean;
1738
+ directUpload: boolean;
1739
+ multiple: boolean;
1740
+ accept: string;
1741
+ }, {}, {
1742
+ NeonButton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1743
+ href: {
1744
+ type: StringConstructor;
1745
+ default: null;
1746
+ };
1747
+ label: {
1748
+ type: StringConstructor;
1749
+ default: null;
1750
+ };
1751
+ size: {
1752
+ type: () => import("../../../neon").NeonButtonSize;
1753
+ default: import("../../../neon").NeonButtonSize;
1754
+ };
1755
+ color: {
1756
+ type: () => NeonFunctionalColor;
1757
+ default: NeonFunctionalColor;
1758
+ };
1759
+ inverse: {
1760
+ type: BooleanConstructor;
1761
+ default: boolean;
1762
+ };
1763
+ alternateColor: {
1764
+ type: () => NeonFunctionalColor;
1765
+ default: null;
1766
+ };
1767
+ icon: {
1768
+ type: StringConstructor;
1769
+ default: null;
1770
+ };
1771
+ iconAriaLabel: {
1772
+ type: StringConstructor;
1773
+ };
1774
+ iconPosition: {
1775
+ type: () => import("../../../neon").NeonHorizontalPosition;
1776
+ default: import("../../../neon").NeonHorizontalPosition;
1777
+ };
1778
+ buttonStyle: {
1779
+ type: () => import("../../../neon").NeonButtonStyle;
1780
+ default: import("../../../neon").NeonButtonStyle;
1781
+ };
1782
+ buttonType: {
1783
+ type: () => import("../../../neon").NeonButtonType;
1784
+ default: import("../../../neon").NeonButtonType;
1785
+ };
1786
+ state: {
1787
+ type: () => import("../../../neon").NeonState;
1788
+ default: import("../../../neon").NeonState;
1789
+ };
1790
+ disabled: {
1791
+ type: BooleanConstructor;
1792
+ default: boolean;
1793
+ };
1794
+ transparent: {
1795
+ type: BooleanConstructor;
1796
+ default: boolean;
1797
+ };
1798
+ outline: {
1799
+ type: BooleanConstructor;
1800
+ default: boolean;
1801
+ };
1802
+ circular: {
1803
+ type: BooleanConstructor;
1804
+ default: null;
1805
+ };
1806
+ fullWidth: {
1807
+ type: BooleanConstructor;
1808
+ default: null;
1809
+ };
1810
+ indicator: {
1811
+ type: BooleanConstructor;
1812
+ default: boolean;
1813
+ };
1814
+ indicatorExpanded: {
1815
+ type: BooleanConstructor;
1816
+ default: null;
1817
+ };
1818
+ }>, {
1819
+ iconName: import("vue").ComputedRef<string>;
1820
+ classes: import("vue").ComputedRef<(string | false | {
1821
+ [x: string]: boolean | "" | NeonFunctionalColor;
1822
+ 'neon-button--text-transparent': boolean;
1823
+ 'neon-button--disabled': boolean;
1824
+ 'neon-button--inverse': boolean;
1825
+ 'neon-button--circular': boolean;
1826
+ 'neon-button--no-outline': boolean;
1827
+ 'neon-button--full-width': boolean;
1828
+ 'neon-button--with-icon neon-button--icon-only': boolean | "";
1829
+ 'neon-button--with-icon neon-button--icon-left': boolean | "";
1830
+ 'neon-button--with-icon neon-button--icon-right': boolean | "";
1831
+ })[]>;
1832
+ button: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
1833
+ attrs: {
1834
+ [x: string]: unknown;
1835
+ };
1836
+ sanitizedAttributes: import("vue").ComputedRef<{
1837
+ [x: string]: unknown;
1838
+ }>;
1839
+ clickLink: () => void | undefined;
1840
+ clickButton: () => void;
1841
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1842
+ href: {
1843
+ type: StringConstructor;
1844
+ default: null;
1845
+ };
1846
+ label: {
1847
+ type: StringConstructor;
1848
+ default: null;
1849
+ };
1850
+ size: {
1851
+ type: () => import("../../../neon").NeonButtonSize;
1852
+ default: import("../../../neon").NeonButtonSize;
1853
+ };
1854
+ color: {
1855
+ type: () => NeonFunctionalColor;
1856
+ default: NeonFunctionalColor;
1857
+ };
1858
+ inverse: {
1859
+ type: BooleanConstructor;
1860
+ default: boolean;
1861
+ };
1862
+ alternateColor: {
1863
+ type: () => NeonFunctionalColor;
1864
+ default: null;
1865
+ };
1866
+ icon: {
1867
+ type: StringConstructor;
1868
+ default: null;
1869
+ };
1870
+ iconAriaLabel: {
1871
+ type: StringConstructor;
1872
+ };
1873
+ iconPosition: {
1874
+ type: () => import("../../../neon").NeonHorizontalPosition;
1875
+ default: import("../../../neon").NeonHorizontalPosition;
1876
+ };
1877
+ buttonStyle: {
1878
+ type: () => import("../../../neon").NeonButtonStyle;
1879
+ default: import("../../../neon").NeonButtonStyle;
1880
+ };
1881
+ buttonType: {
1882
+ type: () => import("../../../neon").NeonButtonType;
1883
+ default: import("../../../neon").NeonButtonType;
1884
+ };
1885
+ state: {
1886
+ type: () => import("../../../neon").NeonState;
1887
+ default: import("../../../neon").NeonState;
1888
+ };
1889
+ disabled: {
1890
+ type: BooleanConstructor;
1891
+ default: boolean;
1892
+ };
1893
+ transparent: {
1894
+ type: BooleanConstructor;
1895
+ default: boolean;
1896
+ };
1897
+ outline: {
1898
+ type: BooleanConstructor;
1899
+ default: boolean;
1900
+ };
1901
+ circular: {
1902
+ type: BooleanConstructor;
1903
+ default: null;
1904
+ };
1905
+ fullWidth: {
1906
+ type: BooleanConstructor;
1907
+ default: null;
1908
+ };
1909
+ indicator: {
1910
+ type: BooleanConstructor;
1911
+ default: boolean;
1912
+ };
1913
+ indicatorExpanded: {
1914
+ type: BooleanConstructor;
1915
+ default: null;
1916
+ };
1917
+ }>> & Readonly<{
1918
+ onClick?: ((...args: any[]) => any) | undefined;
1919
+ }>, {
1920
+ color: NeonFunctionalColor;
1921
+ icon: string;
1922
+ label: string;
1923
+ inverse: boolean;
1924
+ disabled: boolean;
1925
+ href: string;
1926
+ size: import("../../../neon").NeonButtonSize;
1927
+ alternateColor: NeonFunctionalColor;
1928
+ outline: boolean;
1929
+ iconPosition: import("../../../neon").NeonHorizontalPosition;
1930
+ buttonStyle: import("../../../neon").NeonButtonStyle;
1931
+ buttonType: import("../../../neon").NeonButtonType;
1932
+ state: import("../../../neon").NeonState;
1933
+ transparent: boolean;
1934
+ circular: boolean;
1935
+ fullWidth: boolean;
1936
+ indicator: boolean;
1937
+ indicatorExpanded: boolean;
1938
+ }, {}, {
1939
+ NeonExpansionIndicator: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1940
+ expanded: {
1941
+ type: BooleanConstructor;
1942
+ default: boolean;
1943
+ };
1944
+ inverse: {
1945
+ type: BooleanConstructor;
1946
+ default: boolean;
1947
+ };
1948
+ disabled: {
1949
+ type: BooleanConstructor;
1950
+ default: boolean;
1951
+ };
1952
+ color: {
1953
+ type: () => NeonFunctionalColor;
1954
+ default: null;
1955
+ };
1956
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1957
+ expanded: {
1958
+ type: BooleanConstructor;
1959
+ default: boolean;
1960
+ };
1961
+ inverse: {
1962
+ type: BooleanConstructor;
1963
+ default: boolean;
1964
+ };
1965
+ disabled: {
1966
+ type: BooleanConstructor;
1967
+ default: boolean;
1968
+ };
1969
+ color: {
1970
+ type: () => NeonFunctionalColor;
1971
+ default: null;
1972
+ };
1973
+ }>> & Readonly<{}>, {
1974
+ color: NeonFunctionalColor;
1975
+ inverse: boolean;
1976
+ disabled: boolean;
1977
+ expanded: boolean;
1978
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1979
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1980
+ name: {
1981
+ type: StringConstructor;
1982
+ required: true;
1983
+ };
1984
+ id: {
1985
+ type: StringConstructor;
1986
+ default: null;
1987
+ };
1988
+ color: {
1989
+ type: () => NeonFunctionalColor;
1990
+ default: null;
1991
+ };
1992
+ inverse: {
1993
+ type: BooleanConstructor;
1994
+ default: boolean;
1995
+ };
1996
+ disabled: {
1997
+ type: BooleanConstructor;
1998
+ default: boolean;
1999
+ };
2000
+ }>, {
2001
+ sanitizedAttributes: import("vue").ComputedRef<{
2002
+ [x: string]: unknown;
2003
+ }>;
2004
+ icon: import("vue").ComputedRef<string | undefined>;
2005
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2006
+ name: {
2007
+ type: StringConstructor;
2008
+ required: true;
2009
+ };
2010
+ id: {
2011
+ type: StringConstructor;
2012
+ default: null;
2013
+ };
2014
+ color: {
2015
+ type: () => NeonFunctionalColor;
2016
+ default: null;
2017
+ };
2018
+ inverse: {
2019
+ type: BooleanConstructor;
2020
+ default: boolean;
2021
+ };
2022
+ disabled: {
2023
+ type: BooleanConstructor;
2024
+ default: boolean;
2025
+ };
2026
+ }>> & Readonly<{}>, {
2027
+ color: NeonFunctionalColor;
2028
+ id: string;
2029
+ inverse: boolean;
2030
+ disabled: boolean;
2031
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2032
+ NeonLink: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2033
+ href: {
2034
+ type: StringConstructor;
2035
+ default: null;
2036
+ };
2037
+ noStyle: {
2038
+ type: BooleanConstructor;
2039
+ default: boolean;
2040
+ };
2041
+ outlineStyle: {
2042
+ type: () => import("../../../neon").NeonOutlineStyle;
2043
+ default: import("../../../neon").NeonOutlineStyle;
2044
+ };
2045
+ externalIndicator: {
2046
+ type: BooleanConstructor;
2047
+ default: boolean;
2048
+ };
2049
+ }>, {
2050
+ neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
2051
+ routerUrl: import("vue").ComputedRef<string | undefined>;
2052
+ sanitizedAttributes: import("vue").ComputedRef<{
2053
+ [x: string]: unknown;
2054
+ }>;
2055
+ activeRoute: import("vue").ComputedRef<boolean | "" | undefined>;
2056
+ exactRoute: import("vue").ComputedRef<boolean | "" | undefined>;
2057
+ onClick: () => void;
2058
+ onSpace: () => Promise<void>;
2059
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2060
+ href: {
2061
+ type: StringConstructor;
2062
+ default: null;
2063
+ };
2064
+ noStyle: {
2065
+ type: BooleanConstructor;
2066
+ default: boolean;
2067
+ };
2068
+ outlineStyle: {
2069
+ type: () => import("../../../neon").NeonOutlineStyle;
2070
+ default: import("../../../neon").NeonOutlineStyle;
2071
+ };
2072
+ externalIndicator: {
2073
+ type: BooleanConstructor;
2074
+ default: boolean;
2075
+ };
2076
+ }>> & Readonly<{
2077
+ onClick?: ((...args: any[]) => any) | undefined;
2078
+ }>, {
2079
+ href: string;
2080
+ noStyle: boolean;
2081
+ outlineStyle: import("../../../neon").NeonOutlineStyle;
2082
+ externalIndicator: boolean;
2083
+ }, {}, {
2084
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2085
+ name: {
2086
+ type: StringConstructor;
2087
+ required: true;
2088
+ };
2089
+ id: {
2090
+ type: StringConstructor;
2091
+ default: null;
2092
+ };
2093
+ color: {
2094
+ type: () => NeonFunctionalColor;
2095
+ default: null;
2096
+ };
2097
+ inverse: {
2098
+ type: BooleanConstructor;
2099
+ default: boolean;
2100
+ };
2101
+ disabled: {
2102
+ type: BooleanConstructor;
2103
+ default: boolean;
2104
+ };
2105
+ }>, {
2106
+ sanitizedAttributes: import("vue").ComputedRef<{
2107
+ [x: string]: unknown;
2108
+ }>;
2109
+ icon: import("vue").ComputedRef<string | undefined>;
2110
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2111
+ name: {
2112
+ type: StringConstructor;
2113
+ required: true;
2114
+ };
2115
+ id: {
2116
+ type: StringConstructor;
2117
+ default: null;
2118
+ };
2119
+ color: {
2120
+ type: () => NeonFunctionalColor;
2121
+ default: null;
2122
+ };
2123
+ inverse: {
2124
+ type: BooleanConstructor;
2125
+ default: boolean;
2126
+ };
2127
+ disabled: {
2128
+ type: BooleanConstructor;
2129
+ default: boolean;
2130
+ };
2131
+ }>> & Readonly<{}>, {
2132
+ color: NeonFunctionalColor;
2133
+ id: string;
2134
+ inverse: boolean;
2135
+ disabled: boolean;
2136
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2137
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2138
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2139
+ NeonInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2140
+ id: {
2141
+ type: StringConstructor;
2142
+ default: null;
2143
+ };
2144
+ modelValue: {
2145
+ type: StringConstructor;
2146
+ default: null;
2147
+ };
2148
+ type: {
2149
+ type: () => import("../../../neon").NeonInputType;
2150
+ default: import("../../../neon").NeonInputType;
2151
+ };
2152
+ placeholder: {
2153
+ type: StringConstructor;
2154
+ default: null;
2155
+ };
2156
+ size: {
2157
+ type: () => NeonSize;
2158
+ default: NeonSize;
2159
+ };
2160
+ color: {
2161
+ type: () => NeonFunctionalColor;
2162
+ default: NeonFunctionalColor;
2163
+ };
2164
+ inputmode: {
2165
+ type: () => import("../../../neon").NeonInputMode;
2166
+ default: import("../../../neon").NeonInputMode;
2167
+ };
2168
+ autocomplete: {
2169
+ type: StringConstructor;
2170
+ default: string;
2171
+ };
2172
+ state: {
2173
+ type: () => import("../../../neon").NeonState;
2174
+ default: import("../../../neon").NeonState;
2175
+ };
2176
+ rows: {
2177
+ type: NumberConstructor;
2178
+ default: null;
2179
+ };
2180
+ icon: {
2181
+ type: StringConstructor;
2182
+ default: null;
2183
+ };
2184
+ iconReadonly: {
2185
+ type: BooleanConstructor;
2186
+ default: boolean;
2187
+ };
2188
+ hideIcon: {
2189
+ type: BooleanConstructor;
2190
+ default: boolean;
2191
+ };
2192
+ tabindex: {
2193
+ type: NumberConstructor;
2194
+ default: number;
2195
+ };
2196
+ disabled: {
2197
+ type: BooleanConstructor;
2198
+ default: boolean;
2199
+ };
2200
+ stateHighlight: {
2201
+ type: BooleanConstructor;
2202
+ default: boolean;
2203
+ };
2204
+ stateIcon: {
2205
+ type: BooleanConstructor;
2206
+ default: boolean;
2207
+ };
2208
+ maxlength: {
2209
+ type: NumberConstructor;
2210
+ default: null;
2211
+ };
2212
+ maxlengthLabel: {
2213
+ type: StringConstructor;
2214
+ default: string;
2215
+ };
2216
+ debounce: {
2217
+ type: NumberConstructor;
2218
+ default: undefined;
2219
+ };
2220
+ }>, {
2221
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
2222
+ focused: import("vue").Ref<boolean, boolean>;
2223
+ sanitizedAttributes: import("vue").ComputedRef<{
2224
+ [x: string]: unknown;
2225
+ }>;
2226
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
2227
+ iconName: import("vue").ComputedRef<string | undefined>;
2228
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
2229
+ computedPlaceholder: import("vue").ComputedRef<string>;
2230
+ counterLabel: import("vue").ComputedRef<string | null>;
2231
+ focus: () => void;
2232
+ click: () => void;
2233
+ onFocus: () => void;
2234
+ onBlur: () => void;
2235
+ iconClicked: ($event: Event) => void;
2236
+ changeValue: (event: InputEvent) => void;
2237
+ onKeyDown: (event: KeyboardEvent) => void;
2238
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "blur" | "focus" | "icon-click")[], "update:modelValue" | "blur" | "focus" | "icon-click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2239
+ id: {
2240
+ type: StringConstructor;
2241
+ default: null;
2242
+ };
2243
+ modelValue: {
2244
+ type: StringConstructor;
2245
+ default: null;
2246
+ };
2247
+ type: {
2248
+ type: () => import("../../../neon").NeonInputType;
2249
+ default: import("../../../neon").NeonInputType;
2250
+ };
2251
+ placeholder: {
2252
+ type: StringConstructor;
2253
+ default: null;
2254
+ };
2255
+ size: {
2256
+ type: () => NeonSize;
2257
+ default: NeonSize;
2258
+ };
2259
+ color: {
2260
+ type: () => NeonFunctionalColor;
2261
+ default: NeonFunctionalColor;
2262
+ };
2263
+ inputmode: {
2264
+ type: () => import("../../../neon").NeonInputMode;
2265
+ default: import("../../../neon").NeonInputMode;
2266
+ };
2267
+ autocomplete: {
2268
+ type: StringConstructor;
2269
+ default: string;
2270
+ };
2271
+ state: {
2272
+ type: () => import("../../../neon").NeonState;
2273
+ default: import("../../../neon").NeonState;
2274
+ };
2275
+ rows: {
2276
+ type: NumberConstructor;
2277
+ default: null;
2278
+ };
2279
+ icon: {
2280
+ type: StringConstructor;
2281
+ default: null;
2282
+ };
2283
+ iconReadonly: {
2284
+ type: BooleanConstructor;
2285
+ default: boolean;
2286
+ };
2287
+ hideIcon: {
2288
+ type: BooleanConstructor;
2289
+ default: boolean;
2290
+ };
2291
+ tabindex: {
2292
+ type: NumberConstructor;
2293
+ default: number;
2294
+ };
2295
+ disabled: {
2296
+ type: BooleanConstructor;
2297
+ default: boolean;
2298
+ };
2299
+ stateHighlight: {
2300
+ type: BooleanConstructor;
2301
+ default: boolean;
2302
+ };
2303
+ stateIcon: {
2304
+ type: BooleanConstructor;
2305
+ default: boolean;
2306
+ };
2307
+ maxlength: {
2308
+ type: NumberConstructor;
2309
+ default: null;
2310
+ };
2311
+ maxlengthLabel: {
2312
+ type: StringConstructor;
2313
+ default: string;
2314
+ };
2315
+ debounce: {
2316
+ type: NumberConstructor;
2317
+ default: undefined;
2318
+ };
2319
+ }>> & Readonly<{
2320
+ onFocus?: ((...args: any[]) => any) | undefined;
2321
+ onBlur?: ((...args: any[]) => any) | undefined;
2322
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2323
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
2324
+ }>, {
2325
+ color: NeonFunctionalColor;
2326
+ icon: string;
2327
+ type: import("../../../neon").NeonInputType;
2328
+ id: string;
2329
+ disabled: boolean;
2330
+ size: NeonSize;
2331
+ placeholder: string;
2332
+ tabindex: number;
2333
+ inputmode: import("../../../neon").NeonInputMode;
2334
+ modelValue: string;
2335
+ state: import("../../../neon").NeonState;
2336
+ autocomplete: string;
2337
+ rows: number;
2338
+ iconReadonly: boolean;
2339
+ hideIcon: boolean;
2340
+ stateHighlight: boolean;
2341
+ stateIcon: boolean;
2342
+ maxlength: number;
2343
+ maxlengthLabel: string;
2344
+ debounce: number;
2345
+ }, {}, {
2346
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2347
+ name: {
2348
+ type: StringConstructor;
2349
+ required: true;
2350
+ };
2351
+ id: {
2352
+ type: StringConstructor;
2353
+ default: null;
2354
+ };
2355
+ color: {
2356
+ type: () => NeonFunctionalColor;
2357
+ default: null;
2358
+ };
2359
+ inverse: {
2360
+ type: BooleanConstructor;
2361
+ default: boolean;
2362
+ };
2363
+ disabled: {
2364
+ type: BooleanConstructor;
2365
+ default: boolean;
2366
+ };
2367
+ }>, {
2368
+ sanitizedAttributes: import("vue").ComputedRef<{
2369
+ [x: string]: unknown;
2370
+ }>;
2371
+ icon: import("vue").ComputedRef<string | undefined>;
2372
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2373
+ name: {
2374
+ type: StringConstructor;
2375
+ required: true;
2376
+ };
2377
+ id: {
2378
+ type: StringConstructor;
2379
+ default: null;
2380
+ };
2381
+ color: {
2382
+ type: () => NeonFunctionalColor;
2383
+ default: null;
2384
+ };
2385
+ inverse: {
2386
+ type: BooleanConstructor;
2387
+ default: boolean;
2388
+ };
2389
+ disabled: {
2390
+ type: BooleanConstructor;
2391
+ default: boolean;
2392
+ };
2393
+ }>> & Readonly<{}>, {
2394
+ color: NeonFunctionalColor;
2395
+ id: string;
2396
+ inverse: boolean;
2397
+ disabled: boolean;
2398
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2399
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2400
+ NeonList: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2401
+ modelValue: {
2402
+ type: () => import("../../../neon").NeonListItem[];
2403
+ required: true;
2404
+ };
2405
+ size: {
2406
+ type: () => NeonSize;
2407
+ default: NeonSize;
2408
+ };
2409
+ color: {
2410
+ /**
2411
+ * A filtering component consisting of a button and a dropdown with a list of options. The button either displayed the
2412
+ * label or information about the selected items (the selected item or the count of selected items).
2413
+ */
2414
+ type: () => NeonFunctionalColor;
2415
+ default: NeonFunctionalColor;
2416
+ };
2417
+ disabled: {
2418
+ type: BooleanConstructor;
2419
+ default: boolean;
2420
+ };
2421
+ }>, {
2422
+ remove: (key: string) => void;
2423
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "close")[], "update:modelValue" | "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2424
+ modelValue: {
2425
+ type: () => import("../../../neon").NeonListItem[];
2426
+ required: true;
2427
+ };
2428
+ size: {
2429
+ type: () => NeonSize;
2430
+ default: NeonSize;
2431
+ };
2432
+ color: {
2433
+ /**
2434
+ * A filtering component consisting of a button and a dropdown with a list of options. The button either displayed the
2435
+ * label or information about the selected items (the selected item or the count of selected items).
2436
+ */
2437
+ type: () => NeonFunctionalColor;
2438
+ default: NeonFunctionalColor;
2439
+ };
2440
+ disabled: {
2441
+ type: BooleanConstructor;
2442
+ default: boolean;
2443
+ };
2444
+ }>> & Readonly<{
2445
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2446
+ onClose?: ((...args: any[]) => any) | undefined;
2447
+ }>, {
2448
+ color: NeonFunctionalColor;
2449
+ disabled: boolean;
2450
+ size: NeonSize;
2451
+ }, {}, {
2452
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2453
+ name: {
2454
+ type: StringConstructor;
2455
+ required: true;
2456
+ };
2457
+ id: {
2458
+ type: StringConstructor;
2459
+ default: null;
2460
+ };
2461
+ color: {
2462
+ type: () => NeonFunctionalColor;
2463
+ default: null;
2464
+ };
2465
+ inverse: {
2466
+ type: BooleanConstructor;
2467
+ default: boolean;
2468
+ };
2469
+ disabled: {
2470
+ type: BooleanConstructor;
2471
+ default: boolean;
2472
+ };
2473
+ }>, {
2474
+ sanitizedAttributes: import("vue").ComputedRef<{
2475
+ [x: string]: unknown;
2476
+ }>;
2477
+ icon: import("vue").ComputedRef<string | undefined>;
2478
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2479
+ name: {
2480
+ type: StringConstructor;
2481
+ required: true;
2482
+ };
2483
+ id: {
2484
+ type: StringConstructor;
2485
+ default: null;
2486
+ };
2487
+ color: {
2488
+ type: () => NeonFunctionalColor;
2489
+ default: null;
2490
+ };
2491
+ inverse: {
2492
+ type: BooleanConstructor;
2493
+ default: boolean;
2494
+ };
2495
+ disabled: {
2496
+ type: BooleanConstructor;
2497
+ default: boolean;
2498
+ };
2499
+ }>> & Readonly<{}>, {
2500
+ color: NeonFunctionalColor;
2501
+ id: string;
2502
+ inverse: boolean;
2503
+ disabled: boolean;
2504
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2505
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2506
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2507
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2508
+ name: {
2509
+ type: StringConstructor;
2510
+ required: true;
2511
+ };
2512
+ id: {
2513
+ type: StringConstructor;
2514
+ default: null;
2515
+ };
2516
+ color: {
2517
+ type: () => NeonFunctionalColor;
2518
+ default: null;
2519
+ };
2520
+ inverse: {
2521
+ type: BooleanConstructor;
2522
+ default: boolean;
2523
+ };
2524
+ disabled: {
2525
+ type: BooleanConstructor;
2526
+ default: boolean;
2527
+ };
2528
+ }>, {
2529
+ sanitizedAttributes: import("vue").ComputedRef<{
2530
+ [x: string]: unknown;
2531
+ }>;
2532
+ icon: import("vue").ComputedRef<string | undefined>;
2533
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2534
+ name: {
2535
+ type: StringConstructor;
2536
+ required: true;
2537
+ };
2538
+ id: {
2539
+ type: StringConstructor;
2540
+ default: null;
2541
+ };
2542
+ color: {
2543
+ type: () => NeonFunctionalColor;
2544
+ default: null;
2545
+ };
2546
+ inverse: {
2547
+ type: BooleanConstructor;
2548
+ default: boolean;
2549
+ };
2550
+ disabled: {
2551
+ type: BooleanConstructor;
2552
+ default: boolean;
2553
+ };
2554
+ }>> & Readonly<{}>, {
2555
+ color: NeonFunctionalColor;
2556
+ id: string;
2557
+ inverse: boolean;
2558
+ disabled: boolean;
2559
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2560
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2561
+ NeonButton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2562
+ href: {
2563
+ type: StringConstructor;
2564
+ default: null;
2565
+ };
2566
+ label: {
2567
+ type: StringConstructor;
2568
+ default: null;
2569
+ };
2570
+ size: {
2571
+ type: () => import("../../../neon").NeonButtonSize;
2572
+ default: import("../../../neon").NeonButtonSize;
2573
+ };
2574
+ color: {
2575
+ type: () => NeonFunctionalColor;
2576
+ default: NeonFunctionalColor;
2577
+ };
2578
+ inverse: {
2579
+ type: BooleanConstructor;
2580
+ default: boolean;
2581
+ };
2582
+ alternateColor: {
2583
+ type: () => NeonFunctionalColor;
2584
+ default: null;
2585
+ };
2586
+ icon: {
2587
+ type: StringConstructor;
2588
+ default: null;
2589
+ };
2590
+ iconAriaLabel: {
2591
+ type: StringConstructor;
2592
+ };
2593
+ iconPosition: {
2594
+ type: () => import("../../../neon").NeonHorizontalPosition;
2595
+ default: import("../../../neon").NeonHorizontalPosition;
2596
+ };
2597
+ buttonStyle: {
2598
+ type: () => import("../../../neon").NeonButtonStyle;
2599
+ default: import("../../../neon").NeonButtonStyle;
2600
+ };
2601
+ buttonType: {
2602
+ type: () => import("../../../neon").NeonButtonType;
2603
+ default: import("../../../neon").NeonButtonType;
2604
+ };
2605
+ state: {
2606
+ type: () => import("../../../neon").NeonState;
2607
+ default: import("../../../neon").NeonState;
2608
+ };
2609
+ disabled: {
2610
+ type: BooleanConstructor;
2611
+ default: boolean;
2612
+ };
2613
+ transparent: {
2614
+ type: BooleanConstructor;
2615
+ default: boolean;
2616
+ };
2617
+ outline: {
2618
+ type: BooleanConstructor;
2619
+ default: boolean;
2620
+ };
2621
+ circular: {
2622
+ type: BooleanConstructor;
2623
+ default: null;
2624
+ };
2625
+ fullWidth: {
2626
+ type: BooleanConstructor;
2627
+ default: null;
2628
+ };
2629
+ indicator: {
2630
+ type: BooleanConstructor;
2631
+ default: boolean;
2632
+ };
2633
+ indicatorExpanded: {
2634
+ type: BooleanConstructor;
2635
+ default: null;
2636
+ };
2637
+ }>, {
2638
+ iconName: import("vue").ComputedRef<string>;
2639
+ classes: import("vue").ComputedRef<(string | false | {
2640
+ [x: string]: boolean | "" | NeonFunctionalColor;
2641
+ 'neon-button--text-transparent': boolean;
2642
+ 'neon-button--disabled': boolean;
2643
+ 'neon-button--inverse': boolean;
2644
+ 'neon-button--circular': boolean;
2645
+ 'neon-button--no-outline': boolean;
2646
+ 'neon-button--full-width': boolean;
2647
+ 'neon-button--with-icon neon-button--icon-only': boolean | "";
2648
+ 'neon-button--with-icon neon-button--icon-left': boolean | "";
2649
+ 'neon-button--with-icon neon-button--icon-right': boolean | "";
2650
+ })[]>;
2651
+ button: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
2652
+ attrs: {
2653
+ [x: string]: unknown;
2654
+ };
2655
+ sanitizedAttributes: import("vue").ComputedRef<{
2656
+ [x: string]: unknown;
2657
+ }>;
2658
+ clickLink: () => void | undefined;
2659
+ clickButton: () => void;
2660
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2661
+ href: {
2662
+ type: StringConstructor;
2663
+ default: null;
2664
+ };
2665
+ label: {
2666
+ type: StringConstructor;
2667
+ default: null;
2668
+ };
2669
+ size: {
2670
+ type: () => import("../../../neon").NeonButtonSize;
2671
+ default: import("../../../neon").NeonButtonSize;
2672
+ };
2673
+ color: {
2674
+ type: () => NeonFunctionalColor;
2675
+ default: NeonFunctionalColor;
2676
+ };
2677
+ inverse: {
2678
+ type: BooleanConstructor;
2679
+ default: boolean;
2680
+ };
2681
+ alternateColor: {
2682
+ type: () => NeonFunctionalColor;
2683
+ default: null;
2684
+ };
2685
+ icon: {
2686
+ type: StringConstructor;
2687
+ default: null;
2688
+ };
2689
+ iconAriaLabel: {
2690
+ type: StringConstructor;
2691
+ };
2692
+ iconPosition: {
2693
+ type: () => import("../../../neon").NeonHorizontalPosition;
2694
+ default: import("../../../neon").NeonHorizontalPosition;
2695
+ };
2696
+ buttonStyle: {
2697
+ type: () => import("../../../neon").NeonButtonStyle;
2698
+ default: import("../../../neon").NeonButtonStyle;
2699
+ };
2700
+ buttonType: {
2701
+ type: () => import("../../../neon").NeonButtonType;
2702
+ default: import("../../../neon").NeonButtonType;
2703
+ };
2704
+ state: {
2705
+ type: () => import("../../../neon").NeonState;
2706
+ default: import("../../../neon").NeonState;
2707
+ };
2708
+ disabled: {
2709
+ type: BooleanConstructor;
2710
+ default: boolean;
2711
+ };
2712
+ transparent: {
2713
+ type: BooleanConstructor;
2714
+ default: boolean;
2715
+ };
2716
+ outline: {
2717
+ type: BooleanConstructor;
2718
+ default: boolean;
2719
+ };
2720
+ circular: {
2721
+ type: BooleanConstructor;
2722
+ default: null;
2723
+ };
2724
+ fullWidth: {
2725
+ type: BooleanConstructor;
2726
+ default: null;
2727
+ };
2728
+ indicator: {
2729
+ type: BooleanConstructor;
2730
+ default: boolean;
2731
+ };
2732
+ indicatorExpanded: {
2733
+ type: BooleanConstructor;
2734
+ default: null;
2735
+ };
2736
+ }>> & Readonly<{
2737
+ onClick?: ((...args: any[]) => any) | undefined;
2738
+ }>, {
2739
+ color: NeonFunctionalColor;
2740
+ icon: string;
2741
+ label: string;
2742
+ inverse: boolean;
2743
+ disabled: boolean;
2744
+ href: string;
2745
+ size: import("../../../neon").NeonButtonSize;
2746
+ alternateColor: NeonFunctionalColor;
2747
+ outline: boolean;
2748
+ iconPosition: import("../../../neon").NeonHorizontalPosition;
2749
+ buttonStyle: import("../../../neon").NeonButtonStyle;
2750
+ buttonType: import("../../../neon").NeonButtonType;
2751
+ state: import("../../../neon").NeonState;
2752
+ transparent: boolean;
2753
+ circular: boolean;
2754
+ fullWidth: boolean;
2755
+ indicator: boolean;
2756
+ indicatorExpanded: boolean;
2757
+ }, {}, {
2758
+ NeonExpansionIndicator: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2759
+ expanded: {
2760
+ type: BooleanConstructor;
2761
+ default: boolean;
2762
+ };
2763
+ inverse: {
2764
+ type: BooleanConstructor;
2765
+ default: boolean;
2766
+ };
2767
+ disabled: {
2768
+ type: BooleanConstructor;
2769
+ default: boolean;
2770
+ };
2771
+ color: {
2772
+ type: () => NeonFunctionalColor;
2773
+ default: null;
2774
+ };
2775
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2776
+ expanded: {
2777
+ type: BooleanConstructor;
2778
+ default: boolean;
2779
+ };
2780
+ inverse: {
2781
+ type: BooleanConstructor;
2782
+ default: boolean;
2783
+ };
2784
+ disabled: {
2785
+ type: BooleanConstructor;
2786
+ default: boolean;
2787
+ };
2788
+ color: {
2789
+ type: () => NeonFunctionalColor;
2790
+ default: null;
2791
+ };
2792
+ }>> & Readonly<{}>, {
2793
+ color: NeonFunctionalColor;
2794
+ inverse: boolean;
2795
+ disabled: boolean;
2796
+ expanded: boolean;
2797
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2798
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2799
+ name: {
2800
+ type: StringConstructor;
2801
+ required: true;
2802
+ };
2803
+ id: {
2804
+ type: StringConstructor;
2805
+ default: null;
2806
+ };
2807
+ color: {
2808
+ type: () => NeonFunctionalColor;
2809
+ default: null;
2810
+ };
2811
+ inverse: {
2812
+ type: BooleanConstructor;
2813
+ default: boolean;
2814
+ };
2815
+ disabled: {
2816
+ type: BooleanConstructor;
2817
+ default: boolean;
2818
+ };
2819
+ }>, {
2820
+ sanitizedAttributes: import("vue").ComputedRef<{
2821
+ [x: string]: unknown;
2822
+ }>;
2823
+ icon: import("vue").ComputedRef<string | undefined>;
2824
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2825
+ name: {
2826
+ type: StringConstructor;
2827
+ required: true;
2828
+ };
2829
+ id: {
2830
+ type: StringConstructor;
2831
+ default: null;
2832
+ };
2833
+ color: {
2834
+ type: () => NeonFunctionalColor;
2835
+ default: null;
2836
+ };
2837
+ inverse: {
2838
+ type: BooleanConstructor;
2839
+ default: boolean;
2840
+ };
2841
+ disabled: {
2842
+ type: BooleanConstructor;
2843
+ default: boolean;
2844
+ };
2845
+ }>> & Readonly<{}>, {
2846
+ color: NeonFunctionalColor;
2847
+ id: string;
2848
+ inverse: boolean;
2849
+ disabled: boolean;
2850
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2851
+ NeonLink: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2852
+ href: {
2853
+ type: StringConstructor;
2854
+ default: null;
2855
+ };
2856
+ noStyle: {
2857
+ type: BooleanConstructor;
2858
+ default: boolean;
2859
+ };
2860
+ outlineStyle: {
2861
+ type: () => import("../../../neon").NeonOutlineStyle;
2862
+ default: import("../../../neon").NeonOutlineStyle;
2863
+ };
2864
+ externalIndicator: {
2865
+ type: BooleanConstructor;
2866
+ default: boolean;
2867
+ };
2868
+ }>, {
2869
+ neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
2870
+ routerUrl: import("vue").ComputedRef<string | undefined>;
2871
+ sanitizedAttributes: import("vue").ComputedRef<{
2872
+ [x: string]: unknown;
2873
+ }>;
2874
+ activeRoute: import("vue").ComputedRef<boolean | "" | undefined>;
2875
+ exactRoute: import("vue").ComputedRef<boolean | "" | undefined>;
2876
+ onClick: () => void;
2877
+ onSpace: () => Promise<void>;
2878
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2879
+ href: {
2880
+ type: StringConstructor;
2881
+ default: null;
2882
+ };
2883
+ noStyle: {
2884
+ type: BooleanConstructor;
2885
+ default: boolean;
2886
+ };
2887
+ outlineStyle: {
2888
+ type: () => import("../../../neon").NeonOutlineStyle;
2889
+ default: import("../../../neon").NeonOutlineStyle;
2890
+ };
2891
+ externalIndicator: {
2892
+ type: BooleanConstructor;
2893
+ default: boolean;
2894
+ };
2895
+ }>> & Readonly<{
2896
+ onClick?: ((...args: any[]) => any) | undefined;
2897
+ }>, {
2898
+ href: string;
2899
+ noStyle: boolean;
2900
+ outlineStyle: import("../../../neon").NeonOutlineStyle;
2901
+ externalIndicator: boolean;
2902
+ }, {}, {
2903
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2904
+ name: {
2905
+ type: StringConstructor;
2906
+ required: true;
2907
+ };
2908
+ id: {
2909
+ type: StringConstructor;
2910
+ default: null;
2911
+ };
2912
+ color: {
2913
+ type: () => NeonFunctionalColor;
2914
+ default: null;
2915
+ };
2916
+ inverse: {
2917
+ type: BooleanConstructor;
2918
+ default: boolean;
2919
+ };
2920
+ disabled: {
2921
+ type: BooleanConstructor;
2922
+ default: boolean;
2923
+ };
2924
+ }>, {
2925
+ sanitizedAttributes: import("vue").ComputedRef<{
2926
+ [x: string]: unknown;
2927
+ }>;
2928
+ icon: import("vue").ComputedRef<string | undefined>;
2929
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2930
+ name: {
2931
+ type: StringConstructor;
2932
+ required: true;
2933
+ };
2934
+ id: {
2935
+ type: StringConstructor;
2936
+ default: null;
2937
+ };
2938
+ color: {
2939
+ type: () => NeonFunctionalColor;
2940
+ default: null;
2941
+ };
2942
+ inverse: {
2943
+ type: BooleanConstructor;
2944
+ default: boolean;
2945
+ };
2946
+ disabled: {
2947
+ type: BooleanConstructor;
2948
+ default: boolean;
2949
+ };
2950
+ }>> & Readonly<{}>, {
2951
+ color: NeonFunctionalColor;
2952
+ id: string;
2953
+ inverse: boolean;
2954
+ disabled: boolean;
2955
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2956
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2957
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2958
+ NeonExpansionIndicator: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2959
+ expanded: {
2960
+ type: BooleanConstructor;
2961
+ default: boolean;
2962
+ };
2963
+ inverse: {
2964
+ type: BooleanConstructor;
2965
+ default: boolean;
2966
+ };
2967
+ disabled: {
2968
+ type: BooleanConstructor;
2969
+ default: boolean;
2970
+ };
2971
+ color: {
2972
+ type: () => NeonFunctionalColor;
2973
+ default: null;
2974
+ };
2975
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2976
+ expanded: {
2977
+ type: BooleanConstructor;
2978
+ default: boolean;
2979
+ };
2980
+ inverse: {
2981
+ type: BooleanConstructor;
2982
+ default: boolean;
2983
+ };
2984
+ disabled: {
2985
+ type: BooleanConstructor;
2986
+ default: boolean;
2987
+ };
2988
+ color: {
2989
+ type: () => NeonFunctionalColor;
2990
+ default: null;
2991
+ };
2992
+ }>> & Readonly<{}>, {
2993
+ color: NeonFunctionalColor;
2994
+ inverse: boolean;
2995
+ disabled: boolean;
2996
+ expanded: boolean;
2997
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2998
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2999
+ NeonFieldGroup: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3000
+ indicatorStyle: {
3001
+ type: () => import("../../../neon").NeonInputIndicatorStyle;
3002
+ default: import("../../../neon").NeonInputIndicatorStyle;
3003
+ };
3004
+ color: {
3005
+ type: () => NeonFunctionalColor;
3006
+ default: NeonFunctionalColor;
3007
+ };
3008
+ disabled: {
3009
+ type: BooleanConstructor;
3010
+ default: boolean;
3011
+ };
3012
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3013
+ indicatorStyle: {
3014
+ type: () => import("../../../neon").NeonInputIndicatorStyle;
3015
+ default: import("../../../neon").NeonInputIndicatorStyle;
3016
+ };
3017
+ color: {
3018
+ type: () => NeonFunctionalColor;
3019
+ default: NeonFunctionalColor;
3020
+ };
3021
+ disabled: {
3022
+ type: BooleanConstructor;
3023
+ default: boolean;
3024
+ };
3025
+ }>> & Readonly<{}>, {
3026
+ color: NeonFunctionalColor;
3027
+ disabled: boolean;
3028
+ indicatorStyle: import("../../../neon").NeonInputIndicatorStyle;
3029
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3030
+ NeonInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3031
+ id: {
3032
+ type: StringConstructor;
3033
+ default: null;
3034
+ };
3035
+ modelValue: {
3036
+ type: StringConstructor;
3037
+ default: null;
3038
+ };
3039
+ type: {
3040
+ type: () => import("../../../neon").NeonInputType;
3041
+ default: import("../../../neon").NeonInputType;
3042
+ };
3043
+ placeholder: {
3044
+ type: StringConstructor;
3045
+ default: null;
3046
+ };
3047
+ size: {
3048
+ type: () => NeonSize;
3049
+ default: NeonSize;
3050
+ };
3051
+ color: {
3052
+ type: () => NeonFunctionalColor;
3053
+ default: NeonFunctionalColor;
3054
+ };
3055
+ inputmode: {
3056
+ type: () => import("../../../neon").NeonInputMode;
3057
+ default: import("../../../neon").NeonInputMode;
3058
+ };
3059
+ autocomplete: {
3060
+ type: StringConstructor;
3061
+ default: string;
3062
+ };
3063
+ state: {
3064
+ type: () => import("../../../neon").NeonState;
3065
+ default: import("../../../neon").NeonState;
3066
+ };
3067
+ rows: {
3068
+ type: NumberConstructor;
3069
+ default: null;
3070
+ };
3071
+ icon: {
3072
+ type: StringConstructor;
3073
+ default: null;
3074
+ };
3075
+ iconReadonly: {
3076
+ type: BooleanConstructor;
3077
+ default: boolean;
3078
+ };
3079
+ hideIcon: {
3080
+ type: BooleanConstructor;
3081
+ default: boolean;
3082
+ };
3083
+ tabindex: {
3084
+ type: NumberConstructor;
3085
+ default: number;
3086
+ };
3087
+ disabled: {
3088
+ type: BooleanConstructor;
3089
+ default: boolean;
3090
+ };
3091
+ stateHighlight: {
3092
+ type: BooleanConstructor;
3093
+ default: boolean;
3094
+ };
3095
+ stateIcon: {
3096
+ type: BooleanConstructor;
3097
+ default: boolean;
3098
+ };
3099
+ maxlength: {
3100
+ type: NumberConstructor;
3101
+ default: null;
3102
+ };
3103
+ maxlengthLabel: {
3104
+ type: StringConstructor;
3105
+ default: string;
3106
+ };
3107
+ debounce: {
3108
+ type: NumberConstructor;
3109
+ default: undefined;
3110
+ };
3111
+ }>, {
3112
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
3113
+ focused: import("vue").Ref<boolean, boolean>;
3114
+ sanitizedAttributes: import("vue").ComputedRef<{
3115
+ [x: string]: unknown;
3116
+ }>;
3117
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
3118
+ iconName: import("vue").ComputedRef<string | undefined>;
3119
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
3120
+ computedPlaceholder: import("vue").ComputedRef<string>;
3121
+ counterLabel: import("vue").ComputedRef<string | null>;
3122
+ focus: () => void;
3123
+ click: () => void;
3124
+ onFocus: () => void;
3125
+ onBlur: () => void;
3126
+ iconClicked: ($event: Event) => void;
3127
+ changeValue: (event: InputEvent) => void;
3128
+ onKeyDown: (event: KeyboardEvent) => void;
3129
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "blur" | "focus" | "icon-click")[], "update:modelValue" | "blur" | "focus" | "icon-click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3130
+ id: {
3131
+ type: StringConstructor;
3132
+ default: null;
3133
+ };
3134
+ modelValue: {
3135
+ type: StringConstructor;
3136
+ default: null;
3137
+ };
3138
+ type: {
3139
+ type: () => import("../../../neon").NeonInputType;
3140
+ default: import("../../../neon").NeonInputType;
3141
+ };
3142
+ placeholder: {
3143
+ type: StringConstructor;
3144
+ default: null;
3145
+ };
3146
+ size: {
3147
+ type: () => NeonSize;
3148
+ default: NeonSize;
3149
+ };
3150
+ color: {
3151
+ type: () => NeonFunctionalColor;
3152
+ default: NeonFunctionalColor;
3153
+ };
3154
+ inputmode: {
3155
+ type: () => import("../../../neon").NeonInputMode;
3156
+ default: import("../../../neon").NeonInputMode;
3157
+ };
3158
+ autocomplete: {
3159
+ type: StringConstructor;
3160
+ default: string;
3161
+ };
3162
+ state: {
3163
+ type: () => import("../../../neon").NeonState;
3164
+ default: import("../../../neon").NeonState;
3165
+ };
3166
+ rows: {
3167
+ type: NumberConstructor;
3168
+ default: null;
3169
+ };
3170
+ icon: {
3171
+ type: StringConstructor;
3172
+ default: null;
3173
+ };
3174
+ iconReadonly: {
3175
+ type: BooleanConstructor;
3176
+ default: boolean;
3177
+ };
3178
+ hideIcon: {
3179
+ type: BooleanConstructor;
3180
+ default: boolean;
3181
+ };
3182
+ tabindex: {
3183
+ type: NumberConstructor;
3184
+ default: number;
3185
+ };
3186
+ disabled: {
3187
+ type: BooleanConstructor;
3188
+ default: boolean;
3189
+ };
3190
+ stateHighlight: {
3191
+ type: BooleanConstructor;
3192
+ default: boolean;
3193
+ };
3194
+ stateIcon: {
3195
+ type: BooleanConstructor;
3196
+ default: boolean;
3197
+ };
3198
+ maxlength: {
3199
+ type: NumberConstructor;
3200
+ default: null;
3201
+ };
3202
+ maxlengthLabel: {
3203
+ type: StringConstructor;
3204
+ default: string;
3205
+ };
3206
+ debounce: {
3207
+ type: NumberConstructor;
3208
+ default: undefined;
3209
+ };
3210
+ }>> & Readonly<{
3211
+ onFocus?: ((...args: any[]) => any) | undefined;
3212
+ onBlur?: ((...args: any[]) => any) | undefined;
3213
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
3214
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
3215
+ }>, {
3216
+ color: NeonFunctionalColor;
3217
+ icon: string;
3218
+ type: import("../../../neon").NeonInputType;
3219
+ id: string;
3220
+ disabled: boolean;
3221
+ size: NeonSize;
3222
+ placeholder: string;
3223
+ tabindex: number;
3224
+ inputmode: import("../../../neon").NeonInputMode;
3225
+ modelValue: string;
3226
+ state: import("../../../neon").NeonState;
3227
+ autocomplete: string;
3228
+ rows: number;
3229
+ iconReadonly: boolean;
3230
+ hideIcon: boolean;
3231
+ stateHighlight: boolean;
3232
+ stateIcon: boolean;
3233
+ maxlength: number;
3234
+ maxlengthLabel: string;
3235
+ debounce: number;
3236
+ }, {}, {
3237
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3238
+ name: {
3239
+ type: StringConstructor;
3240
+ required: true;
3241
+ };
3242
+ id: {
3243
+ type: StringConstructor;
3244
+ default: null;
3245
+ };
3246
+ color: {
3247
+ type: () => NeonFunctionalColor;
3248
+ default: null;
3249
+ };
3250
+ inverse: {
3251
+ type: BooleanConstructor;
3252
+ default: boolean;
3253
+ };
3254
+ disabled: {
3255
+ type: BooleanConstructor;
3256
+ default: boolean;
3257
+ };
3258
+ }>, {
3259
+ sanitizedAttributes: import("vue").ComputedRef<{
3260
+ [x: string]: unknown;
3261
+ }>;
3262
+ icon: import("vue").ComputedRef<string | undefined>;
3263
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3264
+ name: {
3265
+ type: StringConstructor;
3266
+ required: true;
3267
+ };
3268
+ id: {
3269
+ type: StringConstructor;
3270
+ default: null;
3271
+ };
3272
+ color: {
3273
+ type: () => NeonFunctionalColor;
3274
+ default: null;
3275
+ };
3276
+ inverse: {
3277
+ type: BooleanConstructor;
3278
+ default: boolean;
3279
+ };
3280
+ disabled: {
3281
+ type: BooleanConstructor;
3282
+ default: boolean;
3283
+ };
3284
+ }>> & Readonly<{}>, {
3285
+ color: NeonFunctionalColor;
3286
+ id: string;
3287
+ inverse: boolean;
3288
+ disabled: boolean;
3289
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3290
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3291
+ NeonLink: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3292
+ href: {
3293
+ type: StringConstructor;
3294
+ default: null;
3295
+ };
3296
+ noStyle: {
3297
+ type: BooleanConstructor;
3298
+ default: boolean;
3299
+ };
3300
+ outlineStyle: {
3301
+ type: () => import("../../../neon").NeonOutlineStyle;
3302
+ default: import("../../../neon").NeonOutlineStyle;
3303
+ };
3304
+ externalIndicator: {
3305
+ type: BooleanConstructor;
3306
+ default: boolean;
3307
+ };
3308
+ }>, {
3309
+ neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
3310
+ routerUrl: import("vue").ComputedRef<string | undefined>;
3311
+ sanitizedAttributes: import("vue").ComputedRef<{
3312
+ [x: string]: unknown;
3313
+ }>;
3314
+ activeRoute: import("vue").ComputedRef<boolean | "" | undefined>;
3315
+ exactRoute: import("vue").ComputedRef<boolean | "" | undefined>;
3316
+ onClick: () => void;
3317
+ onSpace: () => Promise<void>;
3318
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3319
+ href: {
3320
+ type: StringConstructor;
3321
+ default: null;
3322
+ };
3323
+ noStyle: {
3324
+ type: BooleanConstructor;
3325
+ default: boolean;
3326
+ };
3327
+ outlineStyle: {
3328
+ type: () => import("../../../neon").NeonOutlineStyle;
3329
+ default: import("../../../neon").NeonOutlineStyle;
3330
+ };
3331
+ externalIndicator: {
3332
+ type: BooleanConstructor;
3333
+ default: boolean;
3334
+ };
3335
+ }>> & Readonly<{
3336
+ onClick?: ((...args: any[]) => any) | undefined;
3337
+ }>, {
3338
+ href: string;
3339
+ noStyle: boolean;
3340
+ outlineStyle: import("../../../neon").NeonOutlineStyle;
3341
+ externalIndicator: boolean;
3342
+ }, {}, {
3343
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3344
+ name: {
3345
+ type: StringConstructor;
3346
+ required: true;
3347
+ };
3348
+ id: {
3349
+ type: StringConstructor;
3350
+ default: null;
3351
+ };
3352
+ color: {
3353
+ type: () => NeonFunctionalColor;
3354
+ default: null;
3355
+ };
3356
+ inverse: {
3357
+ type: BooleanConstructor;
3358
+ default: boolean;
3359
+ };
3360
+ disabled: {
3361
+ type: BooleanConstructor;
3362
+ default: boolean;
3363
+ };
3364
+ }>, {
3365
+ sanitizedAttributes: import("vue").ComputedRef<{
3366
+ [x: string]: unknown;
3367
+ }>;
3368
+ icon: import("vue").ComputedRef<string | undefined>;
3369
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3370
+ name: {
3371
+ type: StringConstructor;
3372
+ required: true;
3373
+ };
3374
+ id: {
3375
+ type: StringConstructor;
3376
+ default: null;
3377
+ };
3378
+ color: {
3379
+ type: () => NeonFunctionalColor;
3380
+ default: null;
3381
+ };
3382
+ inverse: {
3383
+ type: BooleanConstructor;
3384
+ default: boolean;
3385
+ };
3386
+ disabled: {
3387
+ type: BooleanConstructor;
3388
+ default: boolean;
3389
+ };
3390
+ }>> & Readonly<{}>, {
3391
+ color: NeonFunctionalColor;
3392
+ id: string;
3393
+ inverse: boolean;
3394
+ disabled: boolean;
3395
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3396
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3397
+ NeonStack: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3398
+ gap: {
3399
+ type: () => import("../../../neon").NeonLayoutSize;
3400
+ default: () => import("../../../neon").NeonLayoutSize;
3401
+ };
3402
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3403
+ gap: {
3404
+ type: () => import("../../../neon").NeonLayoutSize;
3405
+ default: () => import("../../../neon").NeonLayoutSize;
3406
+ };
3407
+ }>> & Readonly<{}>, {
3408
+ gap: import("../../../neon").NeonLayoutSize;
3409
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3410
+ NeonSwitch: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3411
+ modelValue: {
3412
+ type: BooleanConstructor;
3413
+ required: true;
3414
+ };
3415
+ label: {
3416
+ type: StringConstructor;
3417
+ default: null;
3418
+ };
3419
+ indeterminate: {
3420
+ type: BooleanConstructor;
3421
+ default: boolean;
3422
+ };
3423
+ size: {
3424
+ type: () => NeonSize;
3425
+ default: () => NeonSize; /**
3426
+ * The list of filter items.
3427
+ */
3428
+ }; /**
3429
+ * The list of filter items.
3430
+ */
3431
+ color: {
3432
+ type: () => NeonFunctionalColor;
3433
+ default: () => NeonFunctionalColor;
3434
+ };
3435
+ switchStyle: {
3436
+ type: () => import("../../../neon").NeonSwitchStyle;
3437
+ default: () => import("../../../neon").NeonSwitchStyle;
3438
+ };
3439
+ labelPosition: {
3440
+ type: () => import("../../../neon").NeonHorizontalPosition;
3441
+ default: () => import("../../../neon").NeonHorizontalPosition;
3442
+ };
3443
+ disabled: {
3444
+ type: BooleanConstructor;
3445
+ default: boolean;
3446
+ };
3447
+ }>, {
3448
+ checkbox: import("vue").Ref<HTMLInputElement | null, HTMLInputElement | null>;
3449
+ sanitizedAttributes: import("vue").ComputedRef<{
3450
+ [x: string]: unknown;
3451
+ }>;
3452
+ toggleSwitch: () => void;
3453
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "indeterminate-change")[], "update:modelValue" | "indeterminate-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3454
+ modelValue: {
3455
+ type: BooleanConstructor;
3456
+ required: true;
3457
+ };
3458
+ label: {
3459
+ type: StringConstructor;
3460
+ default: null;
3461
+ };
3462
+ indeterminate: {
3463
+ type: BooleanConstructor;
3464
+ default: boolean;
3465
+ };
3466
+ size: {
3467
+ type: () => NeonSize;
3468
+ default: () => NeonSize; /**
3469
+ * The list of filter items.
3470
+ */
3471
+ }; /**
3472
+ * The list of filter items.
3473
+ */
3474
+ color: {
3475
+ type: () => NeonFunctionalColor;
3476
+ default: () => NeonFunctionalColor;
3477
+ };
3478
+ switchStyle: {
3479
+ type: () => import("../../../neon").NeonSwitchStyle;
3480
+ default: () => import("../../../neon").NeonSwitchStyle;
3481
+ };
3482
+ labelPosition: {
3483
+ type: () => import("../../../neon").NeonHorizontalPosition;
3484
+ default: () => import("../../../neon").NeonHorizontalPosition;
3485
+ };
3486
+ disabled: {
3487
+ type: BooleanConstructor;
3488
+ default: boolean;
3489
+ };
3490
+ }>> & Readonly<{
3491
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
3492
+ "onIndeterminate-change"?: ((...args: any[]) => any) | undefined;
3493
+ }>, {
3494
+ color: NeonFunctionalColor;
3495
+ label: string;
3496
+ disabled: boolean;
3497
+ size: NeonSize;
3498
+ indeterminate: boolean;
3499
+ switchStyle: import("../../../neon").NeonSwitchStyle;
3500
+ labelPosition: import("../../../neon").NeonHorizontalPosition;
3501
+ }, {}, {
3502
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3503
+ name: {
3504
+ type: StringConstructor;
3505
+ required: true;
3506
+ };
3507
+ id: {
3508
+ type: StringConstructor;
3509
+ default: null;
3510
+ };
3511
+ color: {
3512
+ type: () => NeonFunctionalColor;
3513
+ default: null;
3514
+ };
3515
+ inverse: {
3516
+ type: BooleanConstructor;
3517
+ default: boolean;
3518
+ };
3519
+ disabled: {
3520
+ type: BooleanConstructor;
3521
+ default: boolean;
3522
+ };
3523
+ }>, {
3524
+ sanitizedAttributes: import("vue").ComputedRef<{
3525
+ [x: string]: unknown;
3526
+ }>;
3527
+ icon: import("vue").ComputedRef<string | undefined>;
3528
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3529
+ name: {
3530
+ type: StringConstructor;
3531
+ required: true;
3532
+ };
3533
+ id: {
3534
+ type: StringConstructor;
3535
+ default: null;
3536
+ };
3537
+ color: {
3538
+ type: () => NeonFunctionalColor;
3539
+ default: null;
3540
+ };
3541
+ inverse: {
3542
+ type: BooleanConstructor;
3543
+ default: boolean;
3544
+ };
3545
+ disabled: {
3546
+ type: BooleanConstructor;
3547
+ default: boolean;
3548
+ };
3549
+ }>> & Readonly<{}>, {
3550
+ color: NeonFunctionalColor;
3551
+ id: string;
3552
+ inverse: boolean;
3553
+ disabled: boolean;
3554
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3555
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3556
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3557
+ export default _default;