@aotearoan/neon 23.0.2 → 23.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 (61) hide show
  1. package/dist/common/utils/NeonAlertService.cjs.js +1 -1
  2. package/dist/common/utils/NeonAlertService.cjs.js.map +1 -1
  3. package/dist/common/utils/NeonAlertService.es.js +31 -18
  4. package/dist/common/utils/NeonAlertService.es.js.map +1 -1
  5. package/dist/common/utils/NeonBannerService.cjs.js +2 -0
  6. package/dist/common/utils/NeonBannerService.cjs.js.map +1 -0
  7. package/dist/common/utils/NeonBannerService.es.js +67 -0
  8. package/dist/common/utils/NeonBannerService.es.js.map +1 -0
  9. package/dist/common/utils/NeonToastService.cjs.js +1 -1
  10. package/dist/common/utils/NeonToastService.cjs.js.map +1 -1
  11. package/dist/common/utils/NeonToastService.es.js +31 -18
  12. package/dist/common/utils/NeonToastService.es.js.map +1 -1
  13. package/dist/components/feedback/alert/NeonAlert.cjs.js +1 -1
  14. package/dist/components/feedback/alert/NeonAlert.cjs.js.map +1 -1
  15. package/dist/components/feedback/alert/NeonAlert.es.js +82 -72
  16. package/dist/components/feedback/alert/NeonAlert.es.js.map +1 -1
  17. package/dist/components/feedback/banner/NeonBanner.cjs.js +2 -0
  18. package/dist/components/feedback/banner/NeonBanner.cjs.js.map +1 -0
  19. package/dist/components/feedback/banner/NeonBanner.es.js +53 -0
  20. package/dist/components/feedback/banner/NeonBanner.es.js.map +1 -0
  21. package/dist/components/feedback/banner/NeonBanner.vue.cjs.js +2 -0
  22. package/dist/components/feedback/banner/NeonBanner.vue.cjs.js.map +1 -0
  23. package/dist/components/feedback/banner/NeonBanner.vue.es.js +36 -0
  24. package/dist/components/feedback/banner/NeonBanner.vue.es.js.map +1 -0
  25. package/dist/components/layout/page/NeonPage.cjs.js +1 -1
  26. package/dist/components/layout/page/NeonPage.cjs.js.map +1 -1
  27. package/dist/components/layout/page/NeonPage.es.js +13 -7
  28. package/dist/components/layout/page/NeonPage.es.js.map +1 -1
  29. package/dist/components/layout/page/NeonPage.vue.cjs.js +1 -1
  30. package/dist/components/layout/page/NeonPage.vue.cjs.js.map +1 -1
  31. package/dist/components/layout/page/NeonPage.vue.es.js +18 -13
  32. package/dist/components/layout/page/NeonPage.vue.es.js.map +1 -1
  33. package/dist/neon.cjs.js +1 -1
  34. package/dist/neon.es.js +217 -213
  35. package/dist/neon.es.js.map +1 -1
  36. package/dist/src/common/models/NeonAlertMessage.d.ts +4 -0
  37. package/dist/src/common/models/NeonBannerMessage.d.ts +20 -0
  38. package/dist/src/common/models/NeonToastMessage.d.ts +4 -0
  39. package/dist/src/common/utils/NeonAlertService.d.ts +7 -0
  40. package/dist/src/common/utils/NeonBannerService.d.ts +47 -0
  41. package/dist/src/common/utils/NeonToastService.d.ts +7 -0
  42. package/dist/src/components/feedback/alert/NeonAlert.d.ts +12 -0
  43. package/dist/src/components/feedback/banner/NeonBanner.d.ts +966 -0
  44. package/dist/src/components/feedback/banner/NeonBanner.vue.d.ts +2 -0
  45. package/dist/src/components/feedback/banner/NeonBannerModel.d.ts +6 -0
  46. package/dist/src/components/layout/page/NeonPage.d.ts +1433 -1
  47. package/dist/src/neon.d.ts +4 -0
  48. package/package.json +1 -1
  49. package/src/sass/components/_banner.scss +26 -0
  50. package/src/sass/components/_footer.scss +4 -22
  51. package/src/sass/components/_grid.scss +6 -20
  52. package/src/sass/components/_link.scss +1 -1
  53. package/src/sass/components/_page.scss +31 -5
  54. package/src/sass/components/_side-nav.scss +3 -3
  55. package/src/sass/components/_tabs.scss +3 -3
  56. package/src/sass/components/_top-nav.scss +1 -1
  57. package/src/sass/components/components.scss +1 -0
  58. package/src/sass/global/_base-html.scss +20 -0
  59. package/src/sass/includes/_dependencies.scss +3 -7
  60. package/src/sass/theme.scss +4 -0
  61. package/src/sass/variables.scss +27 -3
@@ -25,5 +25,1437 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
25
25
  };
26
26
  }>> & Readonly<{}>, {
27
27
  pageAlign: NeonPageAlignment;
28
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
28
+ }, {}, {
29
+ NeonAlert: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
30
+ dismissible: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ duration: {
35
+ type: NumberConstructor;
36
+ default: number;
37
+ };
38
+ }>, {
39
+ topLeft: import("vue").Ref<{
40
+ id: number;
41
+ level: import("../../../neon").NeonAlertLevel;
42
+ key?: string | undefined;
43
+ title?: string | undefined;
44
+ message?: string | undefined;
45
+ showIcon?: boolean | undefined;
46
+ placement?: import("../../../neon").NeonAlertPlacement | undefined;
47
+ duration?: number | undefined;
48
+ dismissible?: boolean | undefined;
49
+ primaryAction?: {
50
+ label: string;
51
+ callback: () => void;
52
+ } | undefined;
53
+ secondaryAction?: {
54
+ label: string;
55
+ callback: () => void;
56
+ } | undefined;
57
+ }[], import("../../../neon").NeonAlertModel[] | {
58
+ id: number;
59
+ level: import("../../../neon").NeonAlertLevel;
60
+ key?: string | undefined;
61
+ title?: string | undefined;
62
+ message?: string | undefined;
63
+ showIcon?: boolean | undefined;
64
+ placement?: import("../../../neon").NeonAlertPlacement | undefined;
65
+ duration?: number | undefined;
66
+ dismissible?: boolean | undefined;
67
+ primaryAction?: {
68
+ label: string;
69
+ callback: () => void;
70
+ } | undefined;
71
+ secondaryAction?: {
72
+ label: string;
73
+ callback: () => void;
74
+ } | undefined;
75
+ }[]>;
76
+ topRight: import("vue").Ref<{
77
+ id: number;
78
+ level: import("../../../neon").NeonAlertLevel;
79
+ key?: string | undefined;
80
+ title?: string | undefined;
81
+ message?: string | undefined;
82
+ showIcon?: boolean | undefined;
83
+ placement?: import("../../../neon").NeonAlertPlacement | undefined;
84
+ duration?: number | undefined;
85
+ dismissible?: boolean | undefined;
86
+ primaryAction?: {
87
+ label: string;
88
+ callback: () => void;
89
+ } | undefined;
90
+ secondaryAction?: {
91
+ label: string;
92
+ callback: () => void;
93
+ } | undefined;
94
+ }[], import("../../../neon").NeonAlertModel[] | {
95
+ id: number;
96
+ level: import("../../../neon").NeonAlertLevel;
97
+ key?: string | undefined;
98
+ title?: string | undefined;
99
+ message?: string | undefined;
100
+ showIcon?: boolean | undefined;
101
+ placement?: import("../../../neon").NeonAlertPlacement | undefined;
102
+ duration?: number | undefined;
103
+ dismissible?: boolean | undefined;
104
+ primaryAction?: {
105
+ label: string;
106
+ callback: () => void;
107
+ } | undefined;
108
+ secondaryAction?: {
109
+ label: string;
110
+ callback: () => void;
111
+ } | undefined;
112
+ }[]>;
113
+ bottomLeft: import("vue").Ref<{
114
+ id: number;
115
+ level: import("../../../neon").NeonAlertLevel;
116
+ key?: string | undefined;
117
+ title?: string | undefined;
118
+ message?: string | undefined;
119
+ showIcon?: boolean | undefined;
120
+ placement?: import("../../../neon").NeonAlertPlacement | undefined;
121
+ duration?: number | undefined;
122
+ dismissible?: boolean | undefined;
123
+ primaryAction?: {
124
+ label: string;
125
+ callback: () => void;
126
+ } | undefined;
127
+ secondaryAction?: {
128
+ label: string;
129
+ callback: () => void;
130
+ } | undefined;
131
+ }[], import("../../../neon").NeonAlertModel[] | {
132
+ id: number;
133
+ level: import("../../../neon").NeonAlertLevel;
134
+ key?: string | undefined;
135
+ title?: string | undefined;
136
+ message?: string | undefined;
137
+ showIcon?: boolean | undefined;
138
+ placement?: import("../../../neon").NeonAlertPlacement | undefined;
139
+ duration?: number | undefined;
140
+ dismissible?: boolean | undefined;
141
+ primaryAction?: {
142
+ label: string;
143
+ callback: () => void;
144
+ } | undefined;
145
+ secondaryAction?: {
146
+ label: string;
147
+ callback: () => void;
148
+ } | undefined;
149
+ }[]>;
150
+ bottomRight: import("vue").Ref<{
151
+ id: number;
152
+ level: import("../../../neon").NeonAlertLevel;
153
+ key?: string | undefined;
154
+ title?: string | undefined;
155
+ message?: string | undefined;
156
+ showIcon?: boolean | undefined;
157
+ placement?: import("../../../neon").NeonAlertPlacement | undefined;
158
+ duration?: number | undefined;
159
+ dismissible?: boolean | undefined;
160
+ primaryAction?: {
161
+ label: string;
162
+ callback: () => void;
163
+ } | undefined;
164
+ secondaryAction?: {
165
+ label: string;
166
+ callback: () => void;
167
+ } | undefined;
168
+ }[], import("../../../neon").NeonAlertModel[] | {
169
+ id: number;
170
+ level: import("../../../neon").NeonAlertLevel;
171
+ key?: string | undefined;
172
+ title?: string | undefined;
173
+ message?: string | undefined;
174
+ showIcon?: boolean | undefined;
175
+ placement?: import("../../../neon").NeonAlertPlacement | undefined;
176
+ duration?: number | undefined;
177
+ dismissible?: boolean | undefined;
178
+ primaryAction?: {
179
+ label: string;
180
+ callback: () => void;
181
+ } | undefined;
182
+ secondaryAction?: {
183
+ label: string;
184
+ callback: () => void;
185
+ } | undefined;
186
+ }[]>;
187
+ top: import("vue").Ref<{
188
+ id: number;
189
+ level: import("../../../neon").NeonAlertLevel;
190
+ key?: string | undefined;
191
+ title: string;
192
+ placement?: import("../../../neon").NeonVerticalPosition | undefined;
193
+ duration?: number | undefined;
194
+ dismissible?: boolean | undefined;
195
+ }[], import("../../../neon").NeonToastModel[] | {
196
+ id: number;
197
+ level: import("../../../neon").NeonAlertLevel;
198
+ key?: string | undefined;
199
+ title: string;
200
+ placement?: import("../../../neon").NeonVerticalPosition | undefined;
201
+ duration?: number | undefined;
202
+ dismissible?: boolean | undefined;
203
+ }[]>;
204
+ bottom: import("vue").Ref<{
205
+ id: number;
206
+ level: import("../../../neon").NeonAlertLevel;
207
+ key?: string | undefined;
208
+ title: string;
209
+ placement?: import("../../../neon").NeonVerticalPosition | undefined;
210
+ duration?: number | undefined;
211
+ dismissible?: boolean | undefined;
212
+ }[], import("../../../neon").NeonToastModel[] | {
213
+ id: number;
214
+ level: import("../../../neon").NeonAlertLevel;
215
+ key?: string | undefined;
216
+ title: string;
217
+ placement?: import("../../../neon").NeonVerticalPosition | undefined;
218
+ duration?: number | undefined;
219
+ dismissible?: boolean | undefined;
220
+ }[]>;
221
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
222
+ dismissible: {
223
+ type: BooleanConstructor;
224
+ default: boolean;
225
+ };
226
+ duration: {
227
+ type: NumberConstructor;
228
+ default: number;
229
+ };
230
+ }>> & Readonly<{}>, {
231
+ dismissible: boolean;
232
+ duration: number;
233
+ }, {}, {
234
+ NeonAlertContainer: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
235
+ modelValue: {
236
+ type: () => import("../../../neon").NeonAlertModel[];
237
+ required: true;
238
+ };
239
+ placement: {
240
+ type: () => import("../../../neon").NeonAlertPlacement;
241
+ required: true;
242
+ };
243
+ }>, {
244
+ closeMessage: (id: number) => void;
245
+ icon: (level: import("../../../neon").NeonAlertLevel) => "info-circle" | "check-circle" | "exclamation-circle" | "times-circle";
246
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
247
+ modelValue: {
248
+ type: () => import("../../../neon").NeonAlertModel[];
249
+ required: true;
250
+ };
251
+ placement: {
252
+ type: () => import("../../../neon").NeonAlertPlacement;
253
+ required: true;
254
+ };
255
+ }>> & Readonly<{}>, {}, {}, {
256
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
257
+ name: {
258
+ type: StringConstructor;
259
+ required: true;
260
+ };
261
+ id: {
262
+ type: StringConstructor;
263
+ default: null;
264
+ };
265
+ color: {
266
+ type: () => import("../../../neon").NeonFunctionalColor;
267
+ default: null;
268
+ };
269
+ inverse: {
270
+ type: BooleanConstructor;
271
+ default: boolean;
272
+ };
273
+ disabled: {
274
+ type: BooleanConstructor;
275
+ default: boolean;
276
+ };
277
+ }>, {
278
+ sanitizedAttributes: import("vue").ComputedRef<{
279
+ [x: string]: unknown;
280
+ }>;
281
+ icon: import("vue").ComputedRef<string | undefined>;
282
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
283
+ name: {
284
+ type: StringConstructor;
285
+ required: true;
286
+ };
287
+ id: {
288
+ type: StringConstructor;
289
+ default: null;
290
+ };
291
+ color: {
292
+ type: () => import("../../../neon").NeonFunctionalColor;
293
+ default: null;
294
+ };
295
+ inverse: {
296
+ type: BooleanConstructor;
297
+ default: boolean;
298
+ };
299
+ disabled: {
300
+ type: BooleanConstructor;
301
+ default: boolean;
302
+ };
303
+ }>> & Readonly<{}>, {
304
+ disabled: boolean;
305
+ color: import("../../../neon").NeonFunctionalColor;
306
+ id: string;
307
+ inverse: boolean;
308
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
309
+ NeonLink: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
310
+ href: {
311
+ type: StringConstructor;
312
+ default: null;
313
+ };
314
+ noStyle: {
315
+ type: BooleanConstructor;
316
+ default: boolean;
317
+ };
318
+ outlineStyle: {
319
+ type: () => import("../../../neon").NeonOutlineStyle;
320
+ default: import("../../../neon").NeonOutlineStyle;
321
+ };
322
+ externalIndicator: {
323
+ type: BooleanConstructor;
324
+ default: boolean;
325
+ };
326
+ }>, {
327
+ neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
328
+ routerUrl: import("vue").ComputedRef<string | undefined>;
329
+ sanitizedAttributes: import("vue").ComputedRef<{
330
+ [x: string]: unknown;
331
+ }>;
332
+ activeRoute: import("vue").ComputedRef<boolean | "">;
333
+ exactRoute: import("vue").ComputedRef<boolean | "">;
334
+ onClick: () => void;
335
+ onSpace: () => Promise<void>;
336
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
337
+ href: {
338
+ type: StringConstructor;
339
+ default: null;
340
+ };
341
+ noStyle: {
342
+ type: BooleanConstructor;
343
+ default: boolean;
344
+ };
345
+ outlineStyle: {
346
+ type: () => import("../../../neon").NeonOutlineStyle;
347
+ default: import("../../../neon").NeonOutlineStyle;
348
+ };
349
+ externalIndicator: {
350
+ type: BooleanConstructor;
351
+ default: boolean;
352
+ };
353
+ }>> & Readonly<{
354
+ onClick?: ((...args: any[]) => any) | undefined;
355
+ }>, {
356
+ href: string;
357
+ noStyle: boolean;
358
+ outlineStyle: import("../../../neon").NeonOutlineStyle;
359
+ externalIndicator: boolean;
360
+ }, {}, {
361
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
362
+ name: {
363
+ type: StringConstructor;
364
+ required: true;
365
+ };
366
+ id: {
367
+ type: StringConstructor;
368
+ default: null;
369
+ };
370
+ color: {
371
+ type: () => import("../../../neon").NeonFunctionalColor;
372
+ default: null;
373
+ };
374
+ inverse: {
375
+ type: BooleanConstructor;
376
+ default: boolean;
377
+ };
378
+ disabled: {
379
+ type: BooleanConstructor;
380
+ default: boolean;
381
+ };
382
+ }>, {
383
+ sanitizedAttributes: import("vue").ComputedRef<{
384
+ [x: string]: unknown;
385
+ }>;
386
+ icon: import("vue").ComputedRef<string | undefined>;
387
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
388
+ name: {
389
+ type: StringConstructor;
390
+ required: true;
391
+ };
392
+ id: {
393
+ type: StringConstructor;
394
+ default: null;
395
+ };
396
+ color: {
397
+ type: () => import("../../../neon").NeonFunctionalColor;
398
+ default: null;
399
+ };
400
+ inverse: {
401
+ type: BooleanConstructor;
402
+ default: boolean;
403
+ };
404
+ disabled: {
405
+ type: BooleanConstructor;
406
+ default: boolean;
407
+ };
408
+ }>> & Readonly<{}>, {
409
+ disabled: boolean;
410
+ color: import("../../../neon").NeonFunctionalColor;
411
+ id: string;
412
+ inverse: boolean;
413
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
414
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
415
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
416
+ NeonToastContainer: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
417
+ modelValue: {
418
+ type: () => import("../../../neon").NeonToastModel[];
419
+ required: true;
420
+ };
421
+ placement: {
422
+ type: () => import("../../../neon").NeonVerticalPosition;
423
+ required: true;
424
+ };
425
+ }>, {
426
+ closeMessage: (id: number) => void;
427
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
428
+ modelValue: {
429
+ type: () => import("../../../neon").NeonToastModel[];
430
+ required: true;
431
+ };
432
+ placement: {
433
+ type: () => import("../../../neon").NeonVerticalPosition;
434
+ required: true;
435
+ };
436
+ }>> & Readonly<{}>, {}, {}, {
437
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
438
+ name: {
439
+ type: StringConstructor;
440
+ required: true;
441
+ };
442
+ id: {
443
+ type: StringConstructor;
444
+ default: null;
445
+ };
446
+ color: {
447
+ type: () => import("../../../neon").NeonFunctionalColor;
448
+ default: null;
449
+ };
450
+ inverse: {
451
+ type: BooleanConstructor;
452
+ default: boolean;
453
+ };
454
+ disabled: {
455
+ type: BooleanConstructor;
456
+ default: boolean;
457
+ };
458
+ }>, {
459
+ sanitizedAttributes: import("vue").ComputedRef<{
460
+ [x: string]: unknown;
461
+ }>;
462
+ icon: import("vue").ComputedRef<string | undefined>;
463
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
464
+ name: {
465
+ type: StringConstructor;
466
+ required: true;
467
+ };
468
+ id: {
469
+ type: StringConstructor;
470
+ default: null;
471
+ };
472
+ color: {
473
+ type: () => import("../../../neon").NeonFunctionalColor;
474
+ default: null;
475
+ };
476
+ inverse: {
477
+ type: BooleanConstructor;
478
+ default: boolean;
479
+ };
480
+ disabled: {
481
+ type: BooleanConstructor;
482
+ default: boolean;
483
+ };
484
+ }>> & Readonly<{}>, {
485
+ disabled: boolean;
486
+ color: import("../../../neon").NeonFunctionalColor;
487
+ id: string;
488
+ inverse: boolean;
489
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
490
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
491
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
492
+ NeonBanner: import("vue").DefineComponent<{}, {
493
+ onAction: () => void;
494
+ messages: import("vue").Ref<{
495
+ id: number;
496
+ level: import("../../../neon").NeonAlertLevel;
497
+ key?: string | undefined;
498
+ message: string;
499
+ action: {
500
+ label: string;
501
+ callback: () => void;
502
+ };
503
+ }[], import("../../../neon").NeonBannerModel[] | {
504
+ id: number;
505
+ level: import("../../../neon").NeonAlertLevel;
506
+ key?: string | undefined;
507
+ message: string;
508
+ action: {
509
+ label: string;
510
+ callback: () => void;
511
+ };
512
+ }[]>;
513
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
514
+ NeonNote: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
515
+ title: {
516
+ type: StringConstructor;
517
+ };
518
+ color: {
519
+ type: () => import("../../../neon").NeonFunctionalColor;
520
+ default: import("../../../neon").NeonFunctionalColor;
521
+ };
522
+ closable: {
523
+ type: BooleanConstructor;
524
+ default: boolean;
525
+ };
526
+ icon: {
527
+ type: BooleanConstructor;
528
+ default: boolean;
529
+ };
530
+ ariaLabelCloseNote: {
531
+ type: StringConstructor;
532
+ default: string;
533
+ };
534
+ }>, {
535
+ iconName: import("vue").ComputedRef<"info-circle" | "check-circle" | "exclamation-circle" | "times-circle" | undefined>;
536
+ slots: Readonly<{
537
+ [name: string]: import("vue").Slot<any> | undefined;
538
+ }>;
539
+ closeNote: () => void;
540
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close-note"[], "close-note", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
541
+ title: {
542
+ type: StringConstructor;
543
+ };
544
+ color: {
545
+ type: () => import("../../../neon").NeonFunctionalColor;
546
+ default: import("../../../neon").NeonFunctionalColor;
547
+ };
548
+ closable: {
549
+ type: BooleanConstructor;
550
+ default: boolean;
551
+ };
552
+ icon: {
553
+ type: BooleanConstructor;
554
+ default: boolean;
555
+ };
556
+ ariaLabelCloseNote: {
557
+ type: StringConstructor;
558
+ default: string;
559
+ };
560
+ }>> & Readonly<{
561
+ "onClose-note"?: ((...args: any[]) => any) | undefined;
562
+ }>, {
563
+ icon: boolean;
564
+ color: import("../../../neon").NeonFunctionalColor;
565
+ closable: boolean;
566
+ ariaLabelCloseNote: string;
567
+ }, {}, {
568
+ NeonButton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
569
+ href: {
570
+ type: StringConstructor;
571
+ default: null;
572
+ };
573
+ label: {
574
+ type: StringConstructor;
575
+ default: null;
576
+ };
577
+ size: {
578
+ type: () => import("../../../neon").NeonButtonSize;
579
+ default: import("../../../neon").NeonButtonSize;
580
+ };
581
+ color: {
582
+ type: () => import("../../../neon").NeonFunctionalColor;
583
+ default: import("../../../neon").NeonFunctionalColor;
584
+ };
585
+ inverse: {
586
+ type: BooleanConstructor;
587
+ default: boolean;
588
+ };
589
+ alternateColor: {
590
+ type: () => import("../../../neon").NeonFunctionalColor;
591
+ default: null;
592
+ };
593
+ icon: {
594
+ type: StringConstructor;
595
+ default: null;
596
+ };
597
+ iconAriaLabel: {
598
+ type: StringConstructor;
599
+ };
600
+ iconPosition: {
601
+ type: () => import("../../../neon").NeonHorizontalPosition;
602
+ default: import("../../../neon").NeonHorizontalPosition;
603
+ };
604
+ buttonStyle: {
605
+ type: () => import("../../../neon").NeonButtonStyle;
606
+ default: import("../../../neon").NeonButtonStyle;
607
+ };
608
+ buttonType: {
609
+ type: () => import("../../../neon").NeonButtonType;
610
+ default: import("../../../neon").NeonButtonType;
611
+ };
612
+ state: {
613
+ type: () => import("../../../neon").NeonState;
614
+ default: import("../../../neon").NeonState;
615
+ };
616
+ disabled: {
617
+ type: BooleanConstructor;
618
+ default: boolean;
619
+ };
620
+ transparent: {
621
+ type: BooleanConstructor;
622
+ default: boolean;
623
+ };
624
+ outline: {
625
+ type: BooleanConstructor;
626
+ default: boolean;
627
+ };
628
+ circular: {
629
+ type: BooleanConstructor;
630
+ default: null;
631
+ };
632
+ fullWidth: {
633
+ type: BooleanConstructor;
634
+ default: null;
635
+ };
636
+ indicator: {
637
+ type: BooleanConstructor;
638
+ default: boolean;
639
+ };
640
+ indicatorExpanded: {
641
+ type: BooleanConstructor;
642
+ default: null;
643
+ };
644
+ }>, {
645
+ iconName: import("vue").ComputedRef<string>;
646
+ classes: import("vue").ComputedRef<(string | false | {
647
+ [x: string]: boolean | "" | import("../../../neon").NeonFunctionalColor;
648
+ 'neon-button--text-transparent': boolean;
649
+ 'neon-button--disabled': boolean;
650
+ 'neon-button--inverse': boolean;
651
+ 'neon-button--circular': boolean;
652
+ 'neon-button--no-outline': boolean;
653
+ 'neon-button--full-width': boolean;
654
+ 'neon-button--with-icon neon-button--icon-only': boolean | "";
655
+ 'neon-button--with-icon neon-button--icon-left': boolean | "";
656
+ 'neon-button--with-icon neon-button--icon-right': boolean | "";
657
+ })[]>;
658
+ button: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
659
+ attrs: {
660
+ [x: string]: unknown;
661
+ };
662
+ sanitizedAttributes: import("vue").ComputedRef<{
663
+ [x: string]: unknown;
664
+ }>;
665
+ clickLink: () => void | undefined;
666
+ clickButton: () => void;
667
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
668
+ href: {
669
+ type: StringConstructor;
670
+ default: null;
671
+ };
672
+ label: {
673
+ type: StringConstructor;
674
+ default: null;
675
+ };
676
+ size: {
677
+ type: () => import("../../../neon").NeonButtonSize;
678
+ default: import("../../../neon").NeonButtonSize;
679
+ };
680
+ color: {
681
+ type: () => import("../../../neon").NeonFunctionalColor;
682
+ default: import("../../../neon").NeonFunctionalColor;
683
+ };
684
+ inverse: {
685
+ type: BooleanConstructor;
686
+ default: boolean;
687
+ };
688
+ alternateColor: {
689
+ type: () => import("../../../neon").NeonFunctionalColor;
690
+ default: null;
691
+ };
692
+ icon: {
693
+ type: StringConstructor;
694
+ default: null;
695
+ };
696
+ iconAriaLabel: {
697
+ type: StringConstructor;
698
+ };
699
+ iconPosition: {
700
+ type: () => import("../../../neon").NeonHorizontalPosition;
701
+ default: import("../../../neon").NeonHorizontalPosition;
702
+ };
703
+ buttonStyle: {
704
+ type: () => import("../../../neon").NeonButtonStyle;
705
+ default: import("../../../neon").NeonButtonStyle;
706
+ };
707
+ buttonType: {
708
+ type: () => import("../../../neon").NeonButtonType;
709
+ default: import("../../../neon").NeonButtonType;
710
+ };
711
+ state: {
712
+ type: () => import("../../../neon").NeonState;
713
+ default: import("../../../neon").NeonState;
714
+ };
715
+ disabled: {
716
+ type: BooleanConstructor;
717
+ default: boolean;
718
+ };
719
+ transparent: {
720
+ type: BooleanConstructor;
721
+ default: boolean;
722
+ };
723
+ outline: {
724
+ type: BooleanConstructor;
725
+ default: boolean;
726
+ };
727
+ circular: {
728
+ type: BooleanConstructor;
729
+ default: null;
730
+ };
731
+ fullWidth: {
732
+ type: BooleanConstructor;
733
+ default: null;
734
+ };
735
+ indicator: {
736
+ type: BooleanConstructor;
737
+ default: boolean;
738
+ };
739
+ indicatorExpanded: {
740
+ type: BooleanConstructor;
741
+ default: null;
742
+ };
743
+ }>> & Readonly<{
744
+ onClick?: ((...args: any[]) => any) | undefined;
745
+ }>, {
746
+ outline: boolean;
747
+ disabled: boolean;
748
+ label: string;
749
+ href: string;
750
+ icon: string;
751
+ size: import("../../../neon").NeonButtonSize;
752
+ color: import("../../../neon").NeonFunctionalColor;
753
+ inverse: boolean;
754
+ alternateColor: import("../../../neon").NeonFunctionalColor;
755
+ iconPosition: import("../../../neon").NeonHorizontalPosition;
756
+ buttonStyle: import("../../../neon").NeonButtonStyle;
757
+ buttonType: import("../../../neon").NeonButtonType;
758
+ state: import("../../../neon").NeonState;
759
+ transparent: boolean;
760
+ circular: boolean;
761
+ fullWidth: boolean;
762
+ indicator: boolean;
763
+ indicatorExpanded: boolean;
764
+ }, {}, {
765
+ NeonExpansionIndicator: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
766
+ expanded: {
767
+ type: BooleanConstructor;
768
+ default: boolean;
769
+ };
770
+ inverse: {
771
+ type: BooleanConstructor; /**
772
+ * Page alignment: either left aligned or center aligned.
773
+ */
774
+ default: boolean;
775
+ };
776
+ disabled: {
777
+ type: BooleanConstructor;
778
+ default: boolean;
779
+ };
780
+ color: {
781
+ type: () => import("../../../neon").NeonFunctionalColor;
782
+ default: null;
783
+ };
784
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
785
+ expanded: {
786
+ type: BooleanConstructor;
787
+ default: boolean;
788
+ };
789
+ inverse: {
790
+ type: BooleanConstructor; /**
791
+ * Page alignment: either left aligned or center aligned.
792
+ */
793
+ default: boolean;
794
+ };
795
+ disabled: {
796
+ type: BooleanConstructor;
797
+ default: boolean;
798
+ };
799
+ color: {
800
+ type: () => import("../../../neon").NeonFunctionalColor;
801
+ default: null;
802
+ };
803
+ }>> & Readonly<{}>, {
804
+ disabled: boolean;
805
+ expanded: boolean;
806
+ color: import("../../../neon").NeonFunctionalColor;
807
+ inverse: boolean;
808
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
809
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
810
+ name: {
811
+ type: StringConstructor;
812
+ required: true;
813
+ };
814
+ id: {
815
+ type: StringConstructor;
816
+ default: null;
817
+ };
818
+ color: {
819
+ type: () => import("../../../neon").NeonFunctionalColor;
820
+ default: null;
821
+ };
822
+ inverse: {
823
+ type: BooleanConstructor;
824
+ default: boolean;
825
+ };
826
+ disabled: {
827
+ type: BooleanConstructor;
828
+ default: boolean;
829
+ };
830
+ }>, {
831
+ sanitizedAttributes: import("vue").ComputedRef<{
832
+ [x: string]: unknown;
833
+ }>;
834
+ icon: import("vue").ComputedRef<string | undefined>;
835
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
836
+ name: {
837
+ type: StringConstructor;
838
+ required: true;
839
+ };
840
+ id: {
841
+ type: StringConstructor;
842
+ default: null;
843
+ };
844
+ color: {
845
+ type: () => import("../../../neon").NeonFunctionalColor;
846
+ default: null;
847
+ };
848
+ inverse: {
849
+ type: BooleanConstructor;
850
+ default: boolean;
851
+ };
852
+ disabled: {
853
+ type: BooleanConstructor;
854
+ default: boolean;
855
+ };
856
+ }>> & Readonly<{}>, {
857
+ disabled: boolean;
858
+ color: import("../../../neon").NeonFunctionalColor;
859
+ id: string;
860
+ inverse: boolean;
861
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
862
+ NeonLink: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
863
+ href: {
864
+ type: StringConstructor;
865
+ default: null;
866
+ };
867
+ noStyle: {
868
+ type: BooleanConstructor;
869
+ default: boolean;
870
+ };
871
+ outlineStyle: {
872
+ type: () => import("../../../neon").NeonOutlineStyle;
873
+ default: import("../../../neon").NeonOutlineStyle;
874
+ };
875
+ externalIndicator: {
876
+ type: BooleanConstructor;
877
+ default: boolean;
878
+ };
879
+ }>, {
880
+ neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
881
+ routerUrl: import("vue").ComputedRef<string | undefined>;
882
+ sanitizedAttributes: import("vue").ComputedRef<{
883
+ [x: string]: unknown;
884
+ }>;
885
+ activeRoute: import("vue").ComputedRef<boolean | "">;
886
+ exactRoute: import("vue").ComputedRef<boolean | "">;
887
+ onClick: () => void;
888
+ onSpace: () => Promise<void>;
889
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
890
+ href: {
891
+ type: StringConstructor;
892
+ default: null;
893
+ };
894
+ noStyle: {
895
+ type: BooleanConstructor;
896
+ default: boolean;
897
+ };
898
+ outlineStyle: {
899
+ type: () => import("../../../neon").NeonOutlineStyle;
900
+ default: import("../../../neon").NeonOutlineStyle;
901
+ };
902
+ externalIndicator: {
903
+ type: BooleanConstructor;
904
+ default: boolean;
905
+ };
906
+ }>> & Readonly<{
907
+ onClick?: ((...args: any[]) => any) | undefined;
908
+ }>, {
909
+ href: string;
910
+ noStyle: boolean;
911
+ outlineStyle: import("../../../neon").NeonOutlineStyle;
912
+ externalIndicator: boolean;
913
+ }, {}, {
914
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
915
+ name: {
916
+ type: StringConstructor;
917
+ required: true;
918
+ };
919
+ id: {
920
+ type: StringConstructor;
921
+ default: null;
922
+ };
923
+ color: {
924
+ type: () => import("../../../neon").NeonFunctionalColor;
925
+ default: null;
926
+ };
927
+ inverse: {
928
+ type: BooleanConstructor;
929
+ default: boolean;
930
+ };
931
+ disabled: {
932
+ type: BooleanConstructor;
933
+ default: boolean;
934
+ };
935
+ }>, {
936
+ sanitizedAttributes: import("vue").ComputedRef<{
937
+ [x: string]: unknown;
938
+ }>;
939
+ icon: import("vue").ComputedRef<string | undefined>;
940
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
941
+ name: {
942
+ type: StringConstructor;
943
+ required: true;
944
+ };
945
+ id: {
946
+ type: StringConstructor;
947
+ default: null;
948
+ };
949
+ color: {
950
+ type: () => import("../../../neon").NeonFunctionalColor;
951
+ default: null;
952
+ };
953
+ inverse: {
954
+ type: BooleanConstructor;
955
+ default: boolean;
956
+ };
957
+ disabled: {
958
+ type: BooleanConstructor;
959
+ default: boolean;
960
+ };
961
+ }>> & Readonly<{}>, {
962
+ disabled: boolean;
963
+ color: import("../../../neon").NeonFunctionalColor;
964
+ id: string;
965
+ inverse: boolean;
966
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
967
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
968
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
969
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
970
+ name: {
971
+ type: StringConstructor;
972
+ required: true;
973
+ };
974
+ id: {
975
+ type: StringConstructor;
976
+ default: null;
977
+ };
978
+ color: {
979
+ type: () => import("../../../neon").NeonFunctionalColor;
980
+ default: null;
981
+ };
982
+ inverse: {
983
+ type: BooleanConstructor;
984
+ default: boolean;
985
+ };
986
+ disabled: {
987
+ type: BooleanConstructor;
988
+ default: boolean;
989
+ };
990
+ }>, {
991
+ sanitizedAttributes: import("vue").ComputedRef<{
992
+ [x: string]: unknown;
993
+ }>;
994
+ icon: import("vue").ComputedRef<string | undefined>;
995
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
996
+ name: {
997
+ type: StringConstructor;
998
+ required: true;
999
+ };
1000
+ id: {
1001
+ type: StringConstructor;
1002
+ default: null;
1003
+ };
1004
+ color: {
1005
+ type: () => import("../../../neon").NeonFunctionalColor;
1006
+ default: null;
1007
+ };
1008
+ inverse: {
1009
+ type: BooleanConstructor;
1010
+ default: boolean;
1011
+ };
1012
+ disabled: {
1013
+ type: BooleanConstructor;
1014
+ default: boolean;
1015
+ };
1016
+ }>> & Readonly<{}>, {
1017
+ disabled: boolean;
1018
+ color: import("../../../neon").NeonFunctionalColor;
1019
+ id: string;
1020
+ inverse: boolean;
1021
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1022
+ NeonInline: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1023
+ gap: {
1024
+ type: () => import("../../../neon").NeonSize;
1025
+ default: () => import("../../../neon").NeonSize;
1026
+ };
1027
+ breakpoint: {
1028
+ type: () => import("../../../neon").NeonSize;
1029
+ default: () => import("../../../neon").NeonResponsive;
1030
+ };
1031
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1032
+ gap: {
1033
+ type: () => import("../../../neon").NeonSize;
1034
+ default: () => import("../../../neon").NeonSize;
1035
+ };
1036
+ breakpoint: {
1037
+ type: () => import("../../../neon").NeonSize;
1038
+ default: () => import("../../../neon").NeonResponsive;
1039
+ };
1040
+ }>> & Readonly<{}>, {
1041
+ breakpoint: import("../../../neon").NeonSize;
1042
+ gap: import("../../../neon").NeonSize;
1043
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1044
+ NeonStack: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1045
+ gap: {
1046
+ type: () => import("../../../neon").NeonSize;
1047
+ default: () => import("../../../neon").NeonSize;
1048
+ };
1049
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1050
+ gap: {
1051
+ type: () => import("../../../neon").NeonSize;
1052
+ default: () => import("../../../neon").NeonSize;
1053
+ };
1054
+ }>> & Readonly<{}>, {
1055
+ gap: import("../../../neon").NeonSize;
1056
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1057
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1058
+ NeonButton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1059
+ href: {
1060
+ type: StringConstructor;
1061
+ default: null;
1062
+ };
1063
+ label: {
1064
+ type: StringConstructor;
1065
+ default: null;
1066
+ };
1067
+ size: {
1068
+ type: () => import("../../../neon").NeonButtonSize;
1069
+ default: import("../../../neon").NeonButtonSize;
1070
+ };
1071
+ color: {
1072
+ type: () => import("../../../neon").NeonFunctionalColor;
1073
+ default: import("../../../neon").NeonFunctionalColor;
1074
+ };
1075
+ inverse: {
1076
+ type: BooleanConstructor;
1077
+ default: boolean;
1078
+ };
1079
+ alternateColor: {
1080
+ type: () => import("../../../neon").NeonFunctionalColor;
1081
+ default: null;
1082
+ };
1083
+ icon: {
1084
+ type: StringConstructor;
1085
+ default: null;
1086
+ };
1087
+ iconAriaLabel: {
1088
+ type: StringConstructor;
1089
+ };
1090
+ iconPosition: {
1091
+ type: () => import("../../../neon").NeonHorizontalPosition;
1092
+ default: import("../../../neon").NeonHorizontalPosition;
1093
+ };
1094
+ buttonStyle: {
1095
+ type: () => import("../../../neon").NeonButtonStyle;
1096
+ default: import("../../../neon").NeonButtonStyle;
1097
+ };
1098
+ buttonType: {
1099
+ type: () => import("../../../neon").NeonButtonType;
1100
+ default: import("../../../neon").NeonButtonType;
1101
+ };
1102
+ state: {
1103
+ type: () => import("../../../neon").NeonState;
1104
+ default: import("../../../neon").NeonState;
1105
+ };
1106
+ disabled: {
1107
+ type: BooleanConstructor;
1108
+ default: boolean;
1109
+ };
1110
+ transparent: {
1111
+ type: BooleanConstructor;
1112
+ default: boolean;
1113
+ };
1114
+ outline: {
1115
+ type: BooleanConstructor;
1116
+ default: boolean;
1117
+ };
1118
+ circular: {
1119
+ type: BooleanConstructor;
1120
+ default: null;
1121
+ };
1122
+ fullWidth: {
1123
+ type: BooleanConstructor;
1124
+ default: null;
1125
+ };
1126
+ indicator: {
1127
+ type: BooleanConstructor;
1128
+ default: boolean;
1129
+ };
1130
+ indicatorExpanded: {
1131
+ type: BooleanConstructor;
1132
+ default: null;
1133
+ };
1134
+ }>, {
1135
+ iconName: import("vue").ComputedRef<string>;
1136
+ classes: import("vue").ComputedRef<(string | false | {
1137
+ [x: string]: boolean | "" | import("../../../neon").NeonFunctionalColor;
1138
+ 'neon-button--text-transparent': boolean;
1139
+ 'neon-button--disabled': boolean;
1140
+ 'neon-button--inverse': boolean;
1141
+ 'neon-button--circular': boolean;
1142
+ 'neon-button--no-outline': boolean;
1143
+ 'neon-button--full-width': boolean;
1144
+ 'neon-button--with-icon neon-button--icon-only': boolean | "";
1145
+ 'neon-button--with-icon neon-button--icon-left': boolean | "";
1146
+ 'neon-button--with-icon neon-button--icon-right': boolean | "";
1147
+ })[]>;
1148
+ button: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
1149
+ attrs: {
1150
+ [x: string]: unknown;
1151
+ };
1152
+ sanitizedAttributes: import("vue").ComputedRef<{
1153
+ [x: string]: unknown;
1154
+ }>;
1155
+ clickLink: () => void | undefined;
1156
+ clickButton: () => void;
1157
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1158
+ href: {
1159
+ type: StringConstructor;
1160
+ default: null;
1161
+ };
1162
+ label: {
1163
+ type: StringConstructor;
1164
+ default: null;
1165
+ };
1166
+ size: {
1167
+ type: () => import("../../../neon").NeonButtonSize;
1168
+ default: import("../../../neon").NeonButtonSize;
1169
+ };
1170
+ color: {
1171
+ type: () => import("../../../neon").NeonFunctionalColor;
1172
+ default: import("../../../neon").NeonFunctionalColor;
1173
+ };
1174
+ inverse: {
1175
+ type: BooleanConstructor;
1176
+ default: boolean;
1177
+ };
1178
+ alternateColor: {
1179
+ type: () => import("../../../neon").NeonFunctionalColor;
1180
+ default: null;
1181
+ };
1182
+ icon: {
1183
+ type: StringConstructor;
1184
+ default: null;
1185
+ };
1186
+ iconAriaLabel: {
1187
+ type: StringConstructor;
1188
+ };
1189
+ iconPosition: {
1190
+ type: () => import("../../../neon").NeonHorizontalPosition;
1191
+ default: import("../../../neon").NeonHorizontalPosition;
1192
+ };
1193
+ buttonStyle: {
1194
+ type: () => import("../../../neon").NeonButtonStyle;
1195
+ default: import("../../../neon").NeonButtonStyle;
1196
+ };
1197
+ buttonType: {
1198
+ type: () => import("../../../neon").NeonButtonType;
1199
+ default: import("../../../neon").NeonButtonType;
1200
+ };
1201
+ state: {
1202
+ type: () => import("../../../neon").NeonState;
1203
+ default: import("../../../neon").NeonState;
1204
+ };
1205
+ disabled: {
1206
+ type: BooleanConstructor;
1207
+ default: boolean;
1208
+ };
1209
+ transparent: {
1210
+ type: BooleanConstructor;
1211
+ default: boolean;
1212
+ };
1213
+ outline: {
1214
+ type: BooleanConstructor;
1215
+ default: boolean;
1216
+ };
1217
+ circular: {
1218
+ type: BooleanConstructor;
1219
+ default: null;
1220
+ };
1221
+ fullWidth: {
1222
+ type: BooleanConstructor;
1223
+ default: null;
1224
+ };
1225
+ indicator: {
1226
+ type: BooleanConstructor;
1227
+ default: boolean;
1228
+ };
1229
+ indicatorExpanded: {
1230
+ type: BooleanConstructor;
1231
+ default: null;
1232
+ };
1233
+ }>> & Readonly<{
1234
+ onClick?: ((...args: any[]) => any) | undefined;
1235
+ }>, {
1236
+ outline: boolean;
1237
+ disabled: boolean;
1238
+ label: string;
1239
+ href: string;
1240
+ icon: string;
1241
+ size: import("../../../neon").NeonButtonSize;
1242
+ color: import("../../../neon").NeonFunctionalColor;
1243
+ inverse: boolean;
1244
+ alternateColor: import("../../../neon").NeonFunctionalColor;
1245
+ iconPosition: import("../../../neon").NeonHorizontalPosition;
1246
+ buttonStyle: import("../../../neon").NeonButtonStyle;
1247
+ buttonType: import("../../../neon").NeonButtonType;
1248
+ state: import("../../../neon").NeonState;
1249
+ transparent: boolean;
1250
+ circular: boolean;
1251
+ fullWidth: boolean;
1252
+ indicator: boolean;
1253
+ indicatorExpanded: boolean;
1254
+ }, {}, {
1255
+ NeonExpansionIndicator: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1256
+ expanded: {
1257
+ type: BooleanConstructor;
1258
+ default: boolean;
1259
+ };
1260
+ inverse: {
1261
+ type: BooleanConstructor; /**
1262
+ * Page alignment: either left aligned or center aligned.
1263
+ */
1264
+ default: boolean;
1265
+ };
1266
+ disabled: {
1267
+ type: BooleanConstructor;
1268
+ default: boolean;
1269
+ };
1270
+ color: {
1271
+ type: () => import("../../../neon").NeonFunctionalColor;
1272
+ default: null;
1273
+ };
1274
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1275
+ expanded: {
1276
+ type: BooleanConstructor;
1277
+ default: boolean;
1278
+ };
1279
+ inverse: {
1280
+ type: BooleanConstructor; /**
1281
+ * Page alignment: either left aligned or center aligned.
1282
+ */
1283
+ default: boolean;
1284
+ };
1285
+ disabled: {
1286
+ type: BooleanConstructor;
1287
+ default: boolean;
1288
+ };
1289
+ color: {
1290
+ type: () => import("../../../neon").NeonFunctionalColor;
1291
+ default: null;
1292
+ };
1293
+ }>> & Readonly<{}>, {
1294
+ disabled: boolean;
1295
+ expanded: boolean;
1296
+ color: import("../../../neon").NeonFunctionalColor;
1297
+ inverse: boolean;
1298
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1299
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1300
+ name: {
1301
+ type: StringConstructor;
1302
+ required: true;
1303
+ };
1304
+ id: {
1305
+ type: StringConstructor;
1306
+ default: null;
1307
+ };
1308
+ color: {
1309
+ type: () => import("../../../neon").NeonFunctionalColor;
1310
+ default: null;
1311
+ };
1312
+ inverse: {
1313
+ type: BooleanConstructor;
1314
+ default: boolean;
1315
+ };
1316
+ disabled: {
1317
+ type: BooleanConstructor;
1318
+ default: boolean;
1319
+ };
1320
+ }>, {
1321
+ sanitizedAttributes: import("vue").ComputedRef<{
1322
+ [x: string]: unknown;
1323
+ }>;
1324
+ icon: import("vue").ComputedRef<string | undefined>;
1325
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1326
+ name: {
1327
+ type: StringConstructor;
1328
+ required: true;
1329
+ };
1330
+ id: {
1331
+ type: StringConstructor;
1332
+ default: null;
1333
+ };
1334
+ color: {
1335
+ type: () => import("../../../neon").NeonFunctionalColor;
1336
+ default: null;
1337
+ };
1338
+ inverse: {
1339
+ type: BooleanConstructor;
1340
+ default: boolean;
1341
+ };
1342
+ disabled: {
1343
+ type: BooleanConstructor;
1344
+ default: boolean;
1345
+ };
1346
+ }>> & Readonly<{}>, {
1347
+ disabled: boolean;
1348
+ color: import("../../../neon").NeonFunctionalColor;
1349
+ id: string;
1350
+ inverse: boolean;
1351
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1352
+ NeonLink: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1353
+ href: {
1354
+ type: StringConstructor;
1355
+ default: null;
1356
+ };
1357
+ noStyle: {
1358
+ type: BooleanConstructor;
1359
+ default: boolean;
1360
+ };
1361
+ outlineStyle: {
1362
+ type: () => import("../../../neon").NeonOutlineStyle;
1363
+ default: import("../../../neon").NeonOutlineStyle;
1364
+ };
1365
+ externalIndicator: {
1366
+ type: BooleanConstructor;
1367
+ default: boolean;
1368
+ };
1369
+ }>, {
1370
+ neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
1371
+ routerUrl: import("vue").ComputedRef<string | undefined>;
1372
+ sanitizedAttributes: import("vue").ComputedRef<{
1373
+ [x: string]: unknown;
1374
+ }>;
1375
+ activeRoute: import("vue").ComputedRef<boolean | "">;
1376
+ exactRoute: import("vue").ComputedRef<boolean | "">;
1377
+ onClick: () => void;
1378
+ onSpace: () => Promise<void>;
1379
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1380
+ href: {
1381
+ type: StringConstructor;
1382
+ default: null;
1383
+ };
1384
+ noStyle: {
1385
+ type: BooleanConstructor;
1386
+ default: boolean;
1387
+ };
1388
+ outlineStyle: {
1389
+ type: () => import("../../../neon").NeonOutlineStyle;
1390
+ default: import("../../../neon").NeonOutlineStyle;
1391
+ };
1392
+ externalIndicator: {
1393
+ type: BooleanConstructor;
1394
+ default: boolean;
1395
+ };
1396
+ }>> & Readonly<{
1397
+ onClick?: ((...args: any[]) => any) | undefined;
1398
+ }>, {
1399
+ href: string;
1400
+ noStyle: boolean;
1401
+ outlineStyle: import("../../../neon").NeonOutlineStyle;
1402
+ externalIndicator: boolean;
1403
+ }, {}, {
1404
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1405
+ name: {
1406
+ type: StringConstructor;
1407
+ required: true;
1408
+ };
1409
+ id: {
1410
+ type: StringConstructor;
1411
+ default: null;
1412
+ };
1413
+ color: {
1414
+ type: () => import("../../../neon").NeonFunctionalColor;
1415
+ default: null;
1416
+ };
1417
+ inverse: {
1418
+ type: BooleanConstructor;
1419
+ default: boolean;
1420
+ };
1421
+ disabled: {
1422
+ type: BooleanConstructor;
1423
+ default: boolean;
1424
+ };
1425
+ }>, {
1426
+ sanitizedAttributes: import("vue").ComputedRef<{
1427
+ [x: string]: unknown;
1428
+ }>;
1429
+ icon: import("vue").ComputedRef<string | undefined>;
1430
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1431
+ name: {
1432
+ type: StringConstructor;
1433
+ required: true;
1434
+ };
1435
+ id: {
1436
+ type: StringConstructor;
1437
+ default: null;
1438
+ };
1439
+ color: {
1440
+ type: () => import("../../../neon").NeonFunctionalColor;
1441
+ default: null;
1442
+ };
1443
+ inverse: {
1444
+ type: BooleanConstructor;
1445
+ default: boolean;
1446
+ };
1447
+ disabled: {
1448
+ type: BooleanConstructor;
1449
+ default: boolean;
1450
+ };
1451
+ }>> & Readonly<{}>, {
1452
+ disabled: boolean;
1453
+ color: import("../../../neon").NeonFunctionalColor;
1454
+ id: string;
1455
+ inverse: boolean;
1456
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1457
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1458
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1459
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1460
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
29
1461
  export default _default;