@aotearoan/neon 28.5.0 → 28.6.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 (92) hide show
  1. package/dist/components/layout/basic-layout/NeonBasicLayout.cjs.js +2 -0
  2. package/dist/components/layout/basic-layout/NeonBasicLayout.cjs.js.map +1 -0
  3. package/dist/components/layout/basic-layout/NeonBasicLayout.es.js +40 -0
  4. package/dist/components/layout/basic-layout/NeonBasicLayout.es.js.map +1 -0
  5. package/dist/components/layout/basic-layout/NeonBasicLayout.vue.cjs.js +2 -0
  6. package/dist/components/layout/basic-layout/NeonBasicLayout.vue.cjs.js.map +1 -0
  7. package/dist/components/layout/basic-layout/NeonBasicLayout.vue.es.js +41 -0
  8. package/dist/components/layout/basic-layout/NeonBasicLayout.vue.es.js.map +1 -0
  9. package/dist/components/layout/card-list/NeonCardList.cjs.js +1 -1
  10. package/dist/components/layout/card-list/NeonCardList.cjs.js.map +1 -1
  11. package/dist/components/layout/card-list/NeonCardList.es.js +47 -45
  12. package/dist/components/layout/card-list/NeonCardList.es.js.map +1 -1
  13. package/dist/components/layout/card-list/NeonCardList.vue.cjs.js +1 -1
  14. package/dist/components/layout/card-list/NeonCardList.vue.cjs.js.map +1 -1
  15. package/dist/components/layout/card-list/NeonCardList.vue.es.js +48 -50
  16. package/dist/components/layout/card-list/NeonCardList.vue.es.js.map +1 -1
  17. package/dist/components/layout/list-layout/NeonListLayout.cjs.js +1 -1
  18. package/dist/components/layout/list-layout/NeonListLayout.cjs.js.map +1 -1
  19. package/dist/components/layout/list-layout/NeonListLayout.es.js +16 -11
  20. package/dist/components/layout/list-layout/NeonListLayout.es.js.map +1 -1
  21. package/dist/components/layout/list-layout/NeonListLayout.vue.cjs.js +1 -1
  22. package/dist/components/layout/list-layout/NeonListLayout.vue.cjs.js.map +1 -1
  23. package/dist/components/layout/list-layout/NeonListLayout.vue.es.js +10 -9
  24. package/dist/components/layout/list-layout/NeonListLayout.vue.es.js.map +1 -1
  25. package/dist/components/presentation/avatar/NeonAvatar.cjs.js +2 -0
  26. package/dist/components/presentation/avatar/NeonAvatar.cjs.js.map +1 -0
  27. package/dist/components/presentation/avatar/NeonAvatar.es.js +66 -0
  28. package/dist/components/presentation/avatar/NeonAvatar.es.js.map +1 -0
  29. package/dist/components/presentation/avatar/NeonAvatar.vue.cjs.js +2 -0
  30. package/dist/components/presentation/avatar/NeonAvatar.vue.cjs.js.map +1 -0
  31. package/dist/components/presentation/avatar/NeonAvatar.vue.es.js +25 -0
  32. package/dist/components/presentation/avatar/NeonAvatar.vue.es.js.map +1 -0
  33. package/dist/components/presentation/header/NeonHeader.vue.cjs.js +1 -1
  34. package/dist/components/presentation/header/NeonHeader.vue.cjs.js.map +1 -1
  35. package/dist/components/presentation/header/NeonHeader.vue.es.js +31 -29
  36. package/dist/components/presentation/header/NeonHeader.vue.es.js.map +1 -1
  37. package/dist/model/layout/card-list/NeonCardListStyle.cjs.js +2 -0
  38. package/dist/model/layout/card-list/NeonCardListStyle.cjs.js.map +1 -0
  39. package/dist/model/layout/card-list/NeonCardListStyle.es.js +5 -0
  40. package/dist/model/layout/card-list/NeonCardListStyle.es.js.map +1 -0
  41. package/dist/model/presentation/badge/NeonBadgeSize.cjs.js +1 -1
  42. package/dist/model/presentation/badge/NeonBadgeSize.cjs.js.map +1 -1
  43. package/dist/model/presentation/badge/NeonBadgeSize.es.js +1 -1
  44. package/dist/model/presentation/badge/NeonBadgeSize.es.js.map +1 -1
  45. package/dist/neon.cjs.js +1 -1
  46. package/dist/neon.es.js +265 -259
  47. package/dist/neon.es.js.map +1 -1
  48. package/dist/src/components/layout/basic-layout/NeonBasicLayout.d.ts +427 -0
  49. package/dist/src/components/layout/basic-layout/NeonBasicLayout.vue.d.ts +2 -0
  50. package/dist/src/components/layout/card-list/NeonCardList.d.ts +47 -60
  51. package/dist/src/components/layout/list-layout/NeonListLayout.d.ts +304 -250
  52. package/dist/src/components/presentation/avatar/NeonAvatar.d.ts +1806 -0
  53. package/dist/src/components/presentation/avatar/NeonAvatar.vue.d.ts +2 -0
  54. package/dist/src/model/layout/card-list/NeonCardListStyle.d.ts +13 -0
  55. package/dist/src/model/layout/card-list/NeonLoadOnDemandModel.d.ts +4 -8
  56. package/dist/src/model/presentation/badge/NeonBadgeSize.d.ts +3 -1
  57. package/dist/src/neon.d.ts +4 -1
  58. package/dist/src/utils/common/http/NeonHttpUtils.d.ts +23 -0
  59. package/dist/utils/common/http/NeonHttpUtils.cjs.js +2 -0
  60. package/dist/utils/common/http/NeonHttpUtils.cjs.js.map +1 -0
  61. package/dist/utils/common/http/NeonHttpUtils.es.js +31 -0
  62. package/dist/utils/common/http/NeonHttpUtils.es.js.map +1 -0
  63. package/package.json +1 -1
  64. package/src/sass/components/_badge.scss +2 -2
  65. package/src/sass/components/{_page-container.scss → _basic-layout.scss} +12 -33
  66. package/src/sass/components/_card-list.scss +30 -5
  67. package/src/sass/components/_date-picker.scss +2 -0
  68. package/src/sass/components/_drawer.scss +1 -0
  69. package/src/sass/components/_field-group.scss +5 -1
  70. package/src/sass/components/_header.scss +2 -1
  71. package/src/sass/components/_input.scss +6 -0
  72. package/src/sass/components/_link.scss +1 -0
  73. package/src/sass/components/_modal.scss +1 -0
  74. package/src/sass/components/_page.scss +1 -0
  75. package/src/sass/components/_range-slider.scss +4 -0
  76. package/src/sass/components/_sticky-buttons.scss +1 -1
  77. package/src/sass/components/components.scss +1 -1
  78. package/src/sass/includes/_dependencies.scss +1 -1
  79. package/src/sass/theme.scss +4 -4
  80. package/src/sass/variables-dark.scss +7 -0
  81. package/src/sass/variables-global.scss +21 -7
  82. package/src/sass/variables-light.scss +7 -0
  83. package/dist/components/layout/page-container/NeonPageContainer.cjs.js +0 -2
  84. package/dist/components/layout/page-container/NeonPageContainer.cjs.js.map +0 -1
  85. package/dist/components/layout/page-container/NeonPageContainer.es.js +0 -26
  86. package/dist/components/layout/page-container/NeonPageContainer.es.js.map +0 -1
  87. package/dist/components/layout/page-container/NeonPageContainer.vue.cjs.js +0 -2
  88. package/dist/components/layout/page-container/NeonPageContainer.vue.cjs.js.map +0 -1
  89. package/dist/components/layout/page-container/NeonPageContainer.vue.es.js +0 -31
  90. package/dist/components/layout/page-container/NeonPageContainer.vue.es.js.map +0 -1
  91. package/dist/src/components/layout/page-container/NeonPageContainer.d.ts +0 -98
  92. package/dist/src/components/layout/page-container/NeonPageContainer.vue.d.ts +0 -2
@@ -0,0 +1,1806 @@
1
+ import { NeonFunctionalColor } from '@/model/common/color/NeonFunctionalColor';
2
+ import { NeonBadgeSize } from '@/model/presentation/badge/NeonBadgeSize';
3
+ /**
4
+ * An avatar component that displays either an image or initials in a circular badge.
5
+ * When displaying initials, it generates a consistent color based on the provided name.
6
+ */
7
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ /**
9
+ * The URL of the avatar image to display
10
+ */
11
+ imageUrl: {
12
+ type: StringConstructor;
13
+ default: undefined;
14
+ };
15
+ /**
16
+ * The name to generate initials from (takes first letter of first name and first letter of last name)
17
+ */
18
+ name: {
19
+ type: StringConstructor;
20
+ default: undefined;
21
+ };
22
+ /**
23
+ * The size of the avatar
24
+ */
25
+ size: {
26
+ type: () => NeonBadgeSize;
27
+ default: NeonBadgeSize;
28
+ };
29
+ /**
30
+ * If true, render the avatar as a circle, if false render as square
31
+ */
32
+ circular: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ /**
37
+ * The color of the avatar
38
+ */
39
+ color: {
40
+ type: () => NeonFunctionalColor;
41
+ default: undefined;
42
+ };
43
+ }>, {
44
+ initials: import("vue").ComputedRef<string>;
45
+ avatarColor: import("vue").ComputedRef<NeonFunctionalColor>;
46
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
47
+ /**
48
+ * The URL of the avatar image to display
49
+ */
50
+ imageUrl: {
51
+ type: StringConstructor;
52
+ default: undefined;
53
+ };
54
+ /**
55
+ * The name to generate initials from (takes first letter of first name and first letter of last name)
56
+ */
57
+ name: {
58
+ type: StringConstructor;
59
+ default: undefined;
60
+ };
61
+ /**
62
+ * The size of the avatar
63
+ */
64
+ size: {
65
+ type: () => NeonBadgeSize;
66
+ default: NeonBadgeSize;
67
+ };
68
+ /**
69
+ * If true, render the avatar as a circle, if false render as square
70
+ */
71
+ circular: {
72
+ type: BooleanConstructor;
73
+ default: boolean;
74
+ };
75
+ /**
76
+ * The color of the avatar
77
+ */
78
+ color: {
79
+ type: () => NeonFunctionalColor;
80
+ default: undefined;
81
+ };
82
+ }>> & Readonly<{}>, {
83
+ name: string;
84
+ color: NeonFunctionalColor;
85
+ size: NeonBadgeSize;
86
+ circular: boolean;
87
+ imageUrl: string;
88
+ }, {}, {
89
+ NeonBadge: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
90
+ label: {
91
+ type: StringConstructor;
92
+ default: null;
93
+ };
94
+ image: {
95
+ type: StringConstructor;
96
+ default: null;
97
+ };
98
+ icon: {
99
+ type: StringConstructor;
100
+ default: null;
101
+ };
102
+ circular: {
103
+ type: BooleanConstructor;
104
+ default: boolean;
105
+ };
106
+ size: {
107
+ type: () => NeonBadgeSize;
108
+ default: NeonBadgeSize;
109
+ };
110
+ color: {
111
+ type: () => NeonFunctionalColor;
112
+ default: NeonFunctionalColor;
113
+ };
114
+ alternateColor: {
115
+ type: () => NeonFunctionalColor;
116
+ default: null;
117
+ };
118
+ editable: {
119
+ type: BooleanConstructor;
120
+ default: boolean;
121
+ };
122
+ accept: {
123
+ type: StringConstructor;
124
+ default: string;
125
+ };
126
+ disabled: {
127
+ type: BooleanConstructor;
128
+ default: boolean;
129
+ };
130
+ jazziconId: {
131
+ type: StringConstructor;
132
+ default: null;
133
+ };
134
+ imageAlt: {
135
+ type: StringConstructor;
136
+ default: string;
137
+ };
138
+ editButtonTitle: {
139
+ type: StringConstructor;
140
+ default: string;
141
+ };
142
+ }>, {
143
+ emit: (event: "change-image", ...args: any[]) => void;
144
+ svg: import("vue").ComputedRef<string | null>;
145
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change-image"[], "change-image", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
146
+ label: {
147
+ type: StringConstructor;
148
+ default: null;
149
+ };
150
+ image: {
151
+ type: StringConstructor;
152
+ default: null;
153
+ };
154
+ icon: {
155
+ type: StringConstructor;
156
+ default: null;
157
+ };
158
+ circular: {
159
+ type: BooleanConstructor;
160
+ default: boolean;
161
+ };
162
+ size: {
163
+ type: () => NeonBadgeSize;
164
+ default: NeonBadgeSize;
165
+ };
166
+ color: {
167
+ type: () => NeonFunctionalColor;
168
+ default: NeonFunctionalColor;
169
+ };
170
+ alternateColor: {
171
+ type: () => NeonFunctionalColor;
172
+ default: null;
173
+ };
174
+ editable: {
175
+ type: BooleanConstructor;
176
+ default: boolean;
177
+ };
178
+ accept: {
179
+ type: StringConstructor;
180
+ default: string;
181
+ };
182
+ disabled: {
183
+ type: BooleanConstructor;
184
+ default: boolean;
185
+ };
186
+ jazziconId: {
187
+ type: StringConstructor;
188
+ default: null;
189
+ };
190
+ imageAlt: {
191
+ type: StringConstructor;
192
+ default: string;
193
+ };
194
+ editButtonTitle: {
195
+ type: StringConstructor;
196
+ default: string;
197
+ };
198
+ }>> & Readonly<{
199
+ "onChange-image"?: ((...args: any[]) => any) | undefined;
200
+ }>, {
201
+ color: NeonFunctionalColor;
202
+ icon: string;
203
+ label: string;
204
+ disabled: boolean;
205
+ image: string;
206
+ size: NeonBadgeSize;
207
+ alternateColor: NeonFunctionalColor;
208
+ circular: boolean;
209
+ accept: string;
210
+ editable: boolean;
211
+ jazziconId: string;
212
+ imageAlt: string;
213
+ editButtonTitle: string;
214
+ }, {}, {
215
+ NeonFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
216
+ disabled: {
217
+ type: BooleanConstructor;
218
+ default: boolean;
219
+ };
220
+ directUpload: {
221
+ type: BooleanConstructor;
222
+ default: boolean;
223
+ };
224
+ multiple: {
225
+ type: BooleanConstructor;
226
+ default: boolean;
227
+ };
228
+ accept: {
229
+ type: StringConstructor;
230
+ default: null;
231
+ };
232
+ id: {
233
+ type: StringConstructor;
234
+ default: null;
235
+ };
236
+ size: {
237
+ type: () => import("@/neon").NeonSize;
238
+ default: import("@/neon").NeonSize;
239
+ };
240
+ state: {
241
+ type: () => import("@/neon").NeonState;
242
+ default: import("@/neon").NeonState;
243
+ };
244
+ color: {
245
+ type: () => NeonFunctionalColor;
246
+ default: NeonFunctionalColor;
247
+ };
248
+ buttonStyle: {
249
+ type: () => import("@/neon").NeonButtonStyle;
250
+ default: import("@/neon").NeonButtonStyle;
251
+ };
252
+ circular: {
253
+ type: BooleanConstructor;
254
+ default: null;
255
+ };
256
+ label: {
257
+ type: StringConstructor;
258
+ default: null;
259
+ };
260
+ icon: {
261
+ type: StringConstructor;
262
+ default: null;
263
+ };
264
+ title: {
265
+ type: StringConstructor;
266
+ default: string;
267
+ };
268
+ }>, {
269
+ fileInput: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
270
+ id: {
271
+ type: StringConstructor;
272
+ default: null;
273
+ };
274
+ modelValue: {
275
+ type: StringConstructor;
276
+ default: null;
277
+ };
278
+ type: {
279
+ type: () => import("@/neon").NeonInputType;
280
+ default: import("@/neon").NeonInputType;
281
+ };
282
+ placeholder: {
283
+ type: StringConstructor;
284
+ default: null;
285
+ };
286
+ size: {
287
+ type: () => import("@/neon").NeonSize;
288
+ default: import("@/neon").NeonSize;
289
+ };
290
+ color: {
291
+ type: () => NeonFunctionalColor;
292
+ default: NeonFunctionalColor;
293
+ };
294
+ inputmode: {
295
+ type: () => import("@/neon").NeonInputMode;
296
+ default: import("@/neon").NeonInputMode;
297
+ };
298
+ autocomplete: {
299
+ type: StringConstructor;
300
+ default: string;
301
+ };
302
+ state: {
303
+ type: () => import("@/neon").NeonState;
304
+ default: import("@/neon").NeonState;
305
+ };
306
+ rows: {
307
+ type: NumberConstructor;
308
+ default: null;
309
+ };
310
+ icon: {
311
+ type: StringConstructor;
312
+ default: null;
313
+ };
314
+ iconReadonly: {
315
+ type: BooleanConstructor;
316
+ default: boolean;
317
+ };
318
+ hideIcon: {
319
+ type: BooleanConstructor;
320
+ default: boolean;
321
+ };
322
+ tabindex: {
323
+ type: NumberConstructor;
324
+ default: number;
325
+ };
326
+ disabled: {
327
+ type: BooleanConstructor;
328
+ default: boolean;
329
+ };
330
+ stateHighlight: {
331
+ type: BooleanConstructor;
332
+ default: boolean;
333
+ };
334
+ stateIcon: {
335
+ type: BooleanConstructor;
336
+ default: boolean;
337
+ };
338
+ maxlength: {
339
+ type: NumberConstructor;
340
+ default: null;
341
+ };
342
+ maxlengthLabel: {
343
+ type: StringConstructor;
344
+ default: string;
345
+ };
346
+ debounce: {
347
+ type: NumberConstructor;
348
+ default: undefined;
349
+ };
350
+ }>> & Readonly<{
351
+ onFocus?: ((...args: any[]) => any) | undefined;
352
+ onBlur?: ((...args: any[]) => any) | undefined;
353
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
354
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
355
+ }>, {
356
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
357
+ focused: import("vue").Ref<boolean, boolean>;
358
+ sanitizedAttributes: import("vue").ComputedRef<{
359
+ [x: string]: unknown;
360
+ }>;
361
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
362
+ iconName: import("vue").ComputedRef<string | undefined>;
363
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
364
+ computedPlaceholder: import("vue").ComputedRef<string>;
365
+ counterLabel: import("vue").ComputedRef<string | null>;
366
+ focus: () => void;
367
+ click: () => void;
368
+ onFocus: () => void;
369
+ onBlur: () => void;
370
+ iconClicked: ($event: Event) => void;
371
+ changeValue: (event: InputEvent) => void;
372
+ onKeyDown: (event: KeyboardEvent) => void;
373
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "blur" | "focus" | "icon-click")[], import("vue").PublicProps, {
374
+ color: NeonFunctionalColor;
375
+ icon: string;
376
+ type: import("@/neon").NeonInputType;
377
+ id: string;
378
+ disabled: boolean;
379
+ size: import("@/neon").NeonSize;
380
+ placeholder: string;
381
+ tabindex: number;
382
+ inputmode: import("@/neon").NeonInputMode;
383
+ modelValue: string;
384
+ state: import("@/neon").NeonState;
385
+ autocomplete: string;
386
+ rows: number;
387
+ iconReadonly: boolean;
388
+ hideIcon: boolean;
389
+ stateHighlight: boolean;
390
+ stateIcon: boolean;
391
+ maxlength: number;
392
+ maxlengthLabel: string;
393
+ debounce: number;
394
+ }, true, {}, {}, {
395
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
396
+ name: {
397
+ type: StringConstructor;
398
+ required: true;
399
+ };
400
+ id: {
401
+ type: StringConstructor;
402
+ default: null;
403
+ };
404
+ color: {
405
+ type: () => NeonFunctionalColor;
406
+ default: null;
407
+ };
408
+ inverse: {
409
+ type: BooleanConstructor;
410
+ default: boolean;
411
+ };
412
+ disabled: {
413
+ type: BooleanConstructor;
414
+ default: boolean;
415
+ };
416
+ }>, {
417
+ sanitizedAttributes: import("vue").ComputedRef<{
418
+ [x: string]: unknown;
419
+ }>;
420
+ icon: import("vue").ComputedRef<string | undefined>;
421
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
422
+ name: {
423
+ type: StringConstructor;
424
+ required: true;
425
+ };
426
+ id: {
427
+ type: StringConstructor;
428
+ default: null;
429
+ };
430
+ color: {
431
+ type: () => NeonFunctionalColor;
432
+ default: null;
433
+ };
434
+ inverse: {
435
+ type: BooleanConstructor;
436
+ default: boolean;
437
+ };
438
+ disabled: {
439
+ type: BooleanConstructor;
440
+ default: boolean;
441
+ };
442
+ }>> & Readonly<{}>, {
443
+ color: NeonFunctionalColor;
444
+ id: string;
445
+ inverse: boolean;
446
+ disabled: boolean;
447
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
448
+ } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
449
+ P: {};
450
+ B: {};
451
+ D: {};
452
+ C: {};
453
+ M: {};
454
+ Defaults: {};
455
+ }, Readonly<import("vue").ExtractPropTypes<{
456
+ id: {
457
+ type: StringConstructor;
458
+ default: null;
459
+ };
460
+ modelValue: {
461
+ type: StringConstructor;
462
+ default: null;
463
+ };
464
+ type: {
465
+ type: () => import("@/neon").NeonInputType;
466
+ default: import("@/neon").NeonInputType;
467
+ };
468
+ placeholder: {
469
+ type: StringConstructor;
470
+ default: null;
471
+ };
472
+ size: {
473
+ type: () => import("@/neon").NeonSize;
474
+ default: import("@/neon").NeonSize;
475
+ };
476
+ color: {
477
+ type: () => NeonFunctionalColor;
478
+ default: NeonFunctionalColor;
479
+ };
480
+ inputmode: {
481
+ type: () => import("@/neon").NeonInputMode;
482
+ default: import("@/neon").NeonInputMode;
483
+ };
484
+ autocomplete: {
485
+ type: StringConstructor;
486
+ default: string;
487
+ };
488
+ state: {
489
+ type: () => import("@/neon").NeonState;
490
+ default: import("@/neon").NeonState;
491
+ };
492
+ rows: {
493
+ type: NumberConstructor;
494
+ default: null;
495
+ };
496
+ icon: {
497
+ type: StringConstructor;
498
+ default: null;
499
+ };
500
+ iconReadonly: {
501
+ type: BooleanConstructor;
502
+ default: boolean;
503
+ };
504
+ hideIcon: {
505
+ type: BooleanConstructor;
506
+ default: boolean;
507
+ };
508
+ tabindex: {
509
+ type: NumberConstructor;
510
+ default: number;
511
+ };
512
+ disabled: {
513
+ type: BooleanConstructor;
514
+ default: boolean;
515
+ };
516
+ stateHighlight: {
517
+ type: BooleanConstructor;
518
+ default: boolean;
519
+ };
520
+ stateIcon: {
521
+ type: BooleanConstructor;
522
+ default: boolean;
523
+ };
524
+ maxlength: {
525
+ type: NumberConstructor;
526
+ default: null;
527
+ };
528
+ maxlengthLabel: {
529
+ type: StringConstructor;
530
+ default: string;
531
+ };
532
+ debounce: {
533
+ type: NumberConstructor;
534
+ default: undefined;
535
+ };
536
+ }>> & Readonly<{
537
+ onFocus?: ((...args: any[]) => any) | undefined;
538
+ onBlur?: ((...args: any[]) => any) | undefined;
539
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
540
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
541
+ }>, {
542
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
543
+ focused: import("vue").Ref<boolean, boolean>;
544
+ sanitizedAttributes: import("vue").ComputedRef<{
545
+ [x: string]: unknown;
546
+ }>;
547
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
548
+ iconName: import("vue").ComputedRef<string | undefined>;
549
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
550
+ computedPlaceholder: import("vue").ComputedRef<string>;
551
+ counterLabel: import("vue").ComputedRef<string | null>;
552
+ focus: () => void;
553
+ click: () => void;
554
+ onFocus: () => void;
555
+ onBlur: () => void;
556
+ iconClicked: ($event: Event) => void;
557
+ changeValue: (event: InputEvent) => void;
558
+ onKeyDown: (event: KeyboardEvent) => void;
559
+ }, {}, {}, {}, {
560
+ color: NeonFunctionalColor;
561
+ icon: string;
562
+ type: import("@/neon").NeonInputType;
563
+ id: string;
564
+ disabled: boolean;
565
+ size: import("@/neon").NeonSize;
566
+ placeholder: string;
567
+ tabindex: number;
568
+ inputmode: import("@/neon").NeonInputMode;
569
+ modelValue: string;
570
+ state: import("@/neon").NeonState;
571
+ autocomplete: string;
572
+ rows: number;
573
+ iconReadonly: boolean;
574
+ hideIcon: boolean;
575
+ stateHighlight: boolean;
576
+ stateIcon: boolean;
577
+ maxlength: number;
578
+ maxlengthLabel: string;
579
+ debounce: number;
580
+ }> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
581
+ id: {
582
+ type: StringConstructor;
583
+ default: null;
584
+ };
585
+ modelValue: {
586
+ type: StringConstructor;
587
+ default: null;
588
+ };
589
+ type: {
590
+ type: () => import("@/neon").NeonInputType;
591
+ default: import("@/neon").NeonInputType;
592
+ };
593
+ placeholder: {
594
+ type: StringConstructor;
595
+ default: null;
596
+ };
597
+ size: {
598
+ type: () => import("@/neon").NeonSize;
599
+ default: import("@/neon").NeonSize;
600
+ };
601
+ color: {
602
+ type: () => NeonFunctionalColor;
603
+ default: NeonFunctionalColor;
604
+ };
605
+ inputmode: {
606
+ type: () => import("@/neon").NeonInputMode;
607
+ default: import("@/neon").NeonInputMode;
608
+ };
609
+ autocomplete: {
610
+ type: StringConstructor;
611
+ default: string;
612
+ };
613
+ state: {
614
+ type: () => import("@/neon").NeonState;
615
+ default: import("@/neon").NeonState;
616
+ };
617
+ rows: {
618
+ type: NumberConstructor;
619
+ default: null;
620
+ };
621
+ icon: {
622
+ type: StringConstructor;
623
+ default: null;
624
+ };
625
+ iconReadonly: {
626
+ type: BooleanConstructor;
627
+ default: boolean;
628
+ };
629
+ hideIcon: {
630
+ type: BooleanConstructor;
631
+ default: boolean;
632
+ };
633
+ tabindex: {
634
+ type: NumberConstructor;
635
+ default: number;
636
+ };
637
+ disabled: {
638
+ type: BooleanConstructor;
639
+ default: boolean;
640
+ };
641
+ stateHighlight: {
642
+ type: BooleanConstructor;
643
+ default: boolean;
644
+ };
645
+ stateIcon: {
646
+ type: BooleanConstructor;
647
+ default: boolean;
648
+ };
649
+ maxlength: {
650
+ type: NumberConstructor;
651
+ default: null;
652
+ };
653
+ maxlengthLabel: {
654
+ type: StringConstructor;
655
+ default: string;
656
+ };
657
+ debounce: {
658
+ type: NumberConstructor;
659
+ default: undefined;
660
+ };
661
+ }>> & Readonly<{
662
+ onFocus?: ((...args: any[]) => any) | undefined;
663
+ onBlur?: ((...args: any[]) => any) | undefined;
664
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
665
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
666
+ }>, {
667
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
668
+ focused: import("vue").Ref<boolean, boolean>;
669
+ sanitizedAttributes: import("vue").ComputedRef<{
670
+ [x: string]: unknown;
671
+ }>;
672
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
673
+ iconName: import("vue").ComputedRef<string | undefined>;
674
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
675
+ computedPlaceholder: import("vue").ComputedRef<string>;
676
+ counterLabel: import("vue").ComputedRef<string | null>;
677
+ focus: () => void;
678
+ click: () => void;
679
+ onFocus: () => void;
680
+ onBlur: () => void;
681
+ iconClicked: ($event: Event) => void;
682
+ changeValue: (event: InputEvent) => void;
683
+ onKeyDown: (event: KeyboardEvent) => void;
684
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "blur" | "focus" | "icon-click")[], import("vue").PublicProps, {
685
+ color: NeonFunctionalColor;
686
+ icon: string;
687
+ type: import("@/neon").NeonInputType;
688
+ id: string;
689
+ disabled: boolean;
690
+ size: import("@/neon").NeonSize;
691
+ placeholder: string;
692
+ tabindex: number;
693
+ inputmode: import("@/neon").NeonInputMode;
694
+ modelValue: string;
695
+ state: import("@/neon").NeonState;
696
+ autocomplete: string;
697
+ rows: number;
698
+ iconReadonly: boolean;
699
+ hideIcon: boolean;
700
+ stateHighlight: boolean;
701
+ stateIcon: boolean;
702
+ maxlength: number;
703
+ maxlengthLabel: string;
704
+ debounce: number;
705
+ }, true, {}, {}, {
706
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
707
+ name: {
708
+ type: StringConstructor;
709
+ required: true;
710
+ };
711
+ id: {
712
+ type: StringConstructor;
713
+ default: null;
714
+ };
715
+ color: {
716
+ type: () => NeonFunctionalColor;
717
+ default: null;
718
+ };
719
+ inverse: {
720
+ type: BooleanConstructor;
721
+ default: boolean;
722
+ };
723
+ disabled: {
724
+ type: BooleanConstructor;
725
+ default: boolean;
726
+ };
727
+ }>, {
728
+ sanitizedAttributes: import("vue").ComputedRef<{
729
+ [x: string]: unknown;
730
+ }>;
731
+ icon: import("vue").ComputedRef<string | undefined>;
732
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
733
+ name: {
734
+ type: StringConstructor;
735
+ required: true;
736
+ };
737
+ id: {
738
+ type: StringConstructor;
739
+ default: null;
740
+ };
741
+ color: {
742
+ type: () => NeonFunctionalColor;
743
+ default: null;
744
+ };
745
+ inverse: {
746
+ type: BooleanConstructor;
747
+ default: boolean;
748
+ };
749
+ disabled: {
750
+ type: BooleanConstructor;
751
+ default: boolean;
752
+ };
753
+ }>> & Readonly<{}>, {
754
+ color: NeonFunctionalColor;
755
+ id: string;
756
+ inverse: boolean;
757
+ disabled: boolean;
758
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
759
+ } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
760
+ P: {};
761
+ B: {};
762
+ D: {};
763
+ C: {};
764
+ M: {};
765
+ Defaults: {};
766
+ }, Readonly<import("vue").ExtractPropTypes<{
767
+ id: {
768
+ type: StringConstructor;
769
+ default: null;
770
+ };
771
+ modelValue: {
772
+ type: StringConstructor;
773
+ default: null;
774
+ };
775
+ type: {
776
+ type: () => import("@/neon").NeonInputType;
777
+ default: import("@/neon").NeonInputType;
778
+ };
779
+ placeholder: {
780
+ type: StringConstructor;
781
+ default: null;
782
+ };
783
+ size: {
784
+ type: () => import("@/neon").NeonSize;
785
+ default: import("@/neon").NeonSize;
786
+ };
787
+ color: {
788
+ type: () => NeonFunctionalColor;
789
+ default: NeonFunctionalColor;
790
+ };
791
+ inputmode: {
792
+ type: () => import("@/neon").NeonInputMode;
793
+ default: import("@/neon").NeonInputMode;
794
+ };
795
+ autocomplete: {
796
+ type: StringConstructor;
797
+ default: string;
798
+ };
799
+ state: {
800
+ type: () => import("@/neon").NeonState;
801
+ default: import("@/neon").NeonState;
802
+ };
803
+ rows: {
804
+ type: NumberConstructor;
805
+ default: null;
806
+ };
807
+ icon: {
808
+ type: StringConstructor;
809
+ default: null;
810
+ };
811
+ iconReadonly: {
812
+ type: BooleanConstructor;
813
+ default: boolean;
814
+ };
815
+ hideIcon: {
816
+ type: BooleanConstructor;
817
+ default: boolean;
818
+ };
819
+ tabindex: {
820
+ type: NumberConstructor;
821
+ default: number;
822
+ };
823
+ disabled: {
824
+ type: BooleanConstructor;
825
+ default: boolean;
826
+ };
827
+ stateHighlight: {
828
+ type: BooleanConstructor;
829
+ default: boolean;
830
+ };
831
+ stateIcon: {
832
+ type: BooleanConstructor;
833
+ default: boolean;
834
+ };
835
+ maxlength: {
836
+ type: NumberConstructor;
837
+ default: null;
838
+ };
839
+ maxlengthLabel: {
840
+ type: StringConstructor;
841
+ default: string;
842
+ };
843
+ debounce: {
844
+ type: NumberConstructor;
845
+ default: undefined;
846
+ };
847
+ }>> & Readonly<{
848
+ onFocus?: ((...args: any[]) => any) | undefined;
849
+ onBlur?: ((...args: any[]) => any) | undefined;
850
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
851
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
852
+ }>, {
853
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
854
+ focused: import("vue").Ref<boolean, boolean>;
855
+ sanitizedAttributes: import("vue").ComputedRef<{
856
+ [x: string]: unknown;
857
+ }>;
858
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
859
+ iconName: import("vue").ComputedRef<string | undefined>;
860
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
861
+ computedPlaceholder: import("vue").ComputedRef<string>;
862
+ counterLabel: import("vue").ComputedRef<string | null>;
863
+ focus: () => void;
864
+ click: () => void;
865
+ onFocus: () => void;
866
+ onBlur: () => void;
867
+ iconClicked: ($event: Event) => void;
868
+ changeValue: (event: InputEvent) => void;
869
+ onKeyDown: (event: KeyboardEvent) => void;
870
+ }, {}, {}, {}, {
871
+ color: NeonFunctionalColor;
872
+ icon: string;
873
+ type: import("@/neon").NeonInputType;
874
+ id: string;
875
+ disabled: boolean;
876
+ size: import("@/neon").NeonSize;
877
+ placeholder: string;
878
+ tabindex: number;
879
+ inputmode: import("@/neon").NeonInputMode;
880
+ modelValue: string;
881
+ state: import("@/neon").NeonState;
882
+ autocomplete: string;
883
+ rows: number;
884
+ iconReadonly: boolean;
885
+ hideIcon: boolean;
886
+ stateHighlight: boolean;
887
+ stateIcon: boolean;
888
+ maxlength: number;
889
+ maxlengthLabel: string;
890
+ debounce: number;
891
+ }> | null>;
892
+ files: import("vue").Ref<{
893
+ readonly lastModified: number;
894
+ readonly name: string;
895
+ readonly webkitRelativePath: string;
896
+ readonly size: number;
897
+ readonly type: string;
898
+ arrayBuffer: () => Promise<ArrayBuffer>;
899
+ slice: (start?: number | undefined, end?: number | undefined, contentType?: string | undefined) => Blob;
900
+ stream: () => ReadableStream<Uint8Array>;
901
+ text: () => Promise<string>;
902
+ }[], File[] | {
903
+ readonly lastModified: number;
904
+ readonly name: string;
905
+ readonly webkitRelativePath: string;
906
+ readonly size: number;
907
+ readonly type: string;
908
+ arrayBuffer: () => Promise<ArrayBuffer>;
909
+ slice: (start?: number | undefined, end?: number | undefined, contentType?: string | undefined) => Blob;
910
+ stream: () => ReadableStream<Uint8Array>;
911
+ text: () => Promise<string>;
912
+ }[]>;
913
+ fileList: import("vue").ComputedRef<{
914
+ key: string;
915
+ label: string;
916
+ }[]>;
917
+ fileInputModel: import("vue").Ref<string, string>;
918
+ remove: (filename: string) => void;
919
+ clearAll: () => void;
920
+ openFileDialog: () => void;
921
+ onInput: (event: Event) => void;
922
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
923
+ disabled: {
924
+ type: BooleanConstructor;
925
+ default: boolean;
926
+ };
927
+ directUpload: {
928
+ type: BooleanConstructor;
929
+ default: boolean;
930
+ };
931
+ multiple: {
932
+ type: BooleanConstructor;
933
+ default: boolean;
934
+ };
935
+ accept: {
936
+ type: StringConstructor;
937
+ default: null;
938
+ };
939
+ id: {
940
+ type: StringConstructor;
941
+ default: null;
942
+ };
943
+ size: {
944
+ type: () => import("@/neon").NeonSize;
945
+ default: import("@/neon").NeonSize;
946
+ };
947
+ state: {
948
+ type: () => import("@/neon").NeonState;
949
+ default: import("@/neon").NeonState;
950
+ };
951
+ color: {
952
+ type: () => NeonFunctionalColor;
953
+ default: NeonFunctionalColor;
954
+ };
955
+ buttonStyle: {
956
+ type: () => import("@/neon").NeonButtonStyle;
957
+ default: import("@/neon").NeonButtonStyle;
958
+ };
959
+ circular: {
960
+ type: BooleanConstructor;
961
+ default: null;
962
+ };
963
+ label: {
964
+ type: StringConstructor;
965
+ default: null;
966
+ };
967
+ icon: {
968
+ type: StringConstructor;
969
+ default: null;
970
+ };
971
+ title: {
972
+ type: StringConstructor;
973
+ default: string;
974
+ };
975
+ }>> & Readonly<{
976
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
977
+ }>, {
978
+ color: NeonFunctionalColor;
979
+ icon: string;
980
+ label: string;
981
+ id: string;
982
+ disabled: boolean;
983
+ title: string;
984
+ size: import("@/neon").NeonSize;
985
+ buttonStyle: import("@/neon").NeonButtonStyle;
986
+ state: import("@/neon").NeonState;
987
+ circular: boolean;
988
+ directUpload: boolean;
989
+ multiple: boolean;
990
+ accept: string;
991
+ }, {}, {
992
+ NeonButton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
993
+ href: {
994
+ type: StringConstructor;
995
+ default: null;
996
+ };
997
+ label: {
998
+ type: StringConstructor;
999
+ default: null;
1000
+ };
1001
+ size: {
1002
+ type: () => import("@/neon").NeonButtonSize;
1003
+ default: import("@/neon").NeonButtonSize;
1004
+ };
1005
+ color: {
1006
+ type: () => NeonFunctionalColor;
1007
+ default: NeonFunctionalColor;
1008
+ };
1009
+ inverse: {
1010
+ type: BooleanConstructor;
1011
+ default: boolean;
1012
+ };
1013
+ alternateColor: {
1014
+ type: () => NeonFunctionalColor;
1015
+ default: null;
1016
+ };
1017
+ icon: {
1018
+ type: StringConstructor;
1019
+ default: null;
1020
+ };
1021
+ iconAriaLabel: {
1022
+ type: StringConstructor;
1023
+ };
1024
+ iconPosition: {
1025
+ type: () => import("@/neon").NeonHorizontalPosition;
1026
+ default: import("@/neon").NeonHorizontalPosition;
1027
+ };
1028
+ buttonStyle: {
1029
+ type: () => import("@/neon").NeonButtonStyle;
1030
+ default: import("@/neon").NeonButtonStyle;
1031
+ };
1032
+ buttonType: {
1033
+ type: () => import("@/neon").NeonButtonType;
1034
+ default: import("@/neon").NeonButtonType;
1035
+ };
1036
+ state: {
1037
+ type: () => import("@/neon").NeonState;
1038
+ default: import("@/neon").NeonState;
1039
+ };
1040
+ disabled: {
1041
+ type: BooleanConstructor;
1042
+ default: boolean;
1043
+ };
1044
+ transparent: {
1045
+ type: BooleanConstructor;
1046
+ default: boolean;
1047
+ };
1048
+ outline: {
1049
+ type: BooleanConstructor;
1050
+ default: boolean;
1051
+ };
1052
+ circular: {
1053
+ type: BooleanConstructor;
1054
+ default: null;
1055
+ };
1056
+ fullWidth: {
1057
+ type: BooleanConstructor;
1058
+ default: null;
1059
+ };
1060
+ indicator: {
1061
+ type: BooleanConstructor;
1062
+ default: boolean;
1063
+ };
1064
+ indicatorExpanded: {
1065
+ type: BooleanConstructor;
1066
+ default: null;
1067
+ };
1068
+ }>, {
1069
+ iconName: import("vue").ComputedRef<string>;
1070
+ classes: import("vue").ComputedRef<(string | false | {
1071
+ [x: string]: boolean | "" | NeonFunctionalColor;
1072
+ 'neon-button--text-transparent': boolean;
1073
+ 'neon-button--disabled': boolean;
1074
+ 'neon-button--inverse': boolean;
1075
+ 'neon-button--circular': boolean;
1076
+ 'neon-button--no-outline': boolean;
1077
+ 'neon-button--full-width': boolean;
1078
+ 'neon-button--with-icon neon-button--icon-only': boolean | "";
1079
+ 'neon-button--with-icon neon-button--icon-left': boolean | "";
1080
+ 'neon-button--with-icon neon-button--icon-right': boolean | "";
1081
+ })[]>;
1082
+ button: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
1083
+ attrs: {
1084
+ [x: string]: unknown;
1085
+ };
1086
+ sanitizedAttributes: import("vue").ComputedRef<{
1087
+ [x: string]: unknown;
1088
+ }>;
1089
+ clickLink: () => void | undefined;
1090
+ clickButton: () => void;
1091
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1092
+ href: {
1093
+ type: StringConstructor;
1094
+ default: null;
1095
+ };
1096
+ label: {
1097
+ type: StringConstructor;
1098
+ default: null;
1099
+ };
1100
+ size: {
1101
+ type: () => import("@/neon").NeonButtonSize;
1102
+ default: import("@/neon").NeonButtonSize;
1103
+ };
1104
+ color: {
1105
+ type: () => NeonFunctionalColor;
1106
+ default: NeonFunctionalColor;
1107
+ };
1108
+ inverse: {
1109
+ type: BooleanConstructor;
1110
+ default: boolean;
1111
+ };
1112
+ alternateColor: {
1113
+ type: () => NeonFunctionalColor;
1114
+ default: null;
1115
+ };
1116
+ icon: {
1117
+ type: StringConstructor;
1118
+ default: null;
1119
+ };
1120
+ iconAriaLabel: {
1121
+ type: StringConstructor;
1122
+ };
1123
+ iconPosition: {
1124
+ type: () => import("@/neon").NeonHorizontalPosition;
1125
+ default: import("@/neon").NeonHorizontalPosition;
1126
+ };
1127
+ buttonStyle: {
1128
+ type: () => import("@/neon").NeonButtonStyle;
1129
+ default: import("@/neon").NeonButtonStyle;
1130
+ };
1131
+ buttonType: {
1132
+ type: () => import("@/neon").NeonButtonType;
1133
+ default: import("@/neon").NeonButtonType;
1134
+ };
1135
+ state: {
1136
+ type: () => import("@/neon").NeonState;
1137
+ default: import("@/neon").NeonState;
1138
+ };
1139
+ disabled: {
1140
+ type: BooleanConstructor;
1141
+ default: boolean;
1142
+ };
1143
+ transparent: {
1144
+ type: BooleanConstructor;
1145
+ default: boolean;
1146
+ };
1147
+ outline: {
1148
+ type: BooleanConstructor;
1149
+ default: boolean;
1150
+ };
1151
+ circular: {
1152
+ type: BooleanConstructor;
1153
+ default: null;
1154
+ };
1155
+ fullWidth: {
1156
+ type: BooleanConstructor;
1157
+ default: null;
1158
+ };
1159
+ indicator: {
1160
+ type: BooleanConstructor;
1161
+ default: boolean;
1162
+ };
1163
+ indicatorExpanded: {
1164
+ type: BooleanConstructor;
1165
+ default: null;
1166
+ };
1167
+ }>> & Readonly<{
1168
+ onClick?: ((...args: any[]) => any) | undefined;
1169
+ }>, {
1170
+ color: NeonFunctionalColor;
1171
+ icon: string;
1172
+ label: string;
1173
+ inverse: boolean;
1174
+ disabled: boolean;
1175
+ href: string;
1176
+ size: import("@/neon").NeonButtonSize;
1177
+ alternateColor: NeonFunctionalColor;
1178
+ outline: boolean;
1179
+ iconPosition: import("@/neon").NeonHorizontalPosition;
1180
+ buttonStyle: import("@/neon").NeonButtonStyle;
1181
+ buttonType: import("@/neon").NeonButtonType;
1182
+ state: import("@/neon").NeonState;
1183
+ transparent: boolean;
1184
+ circular: boolean;
1185
+ fullWidth: boolean;
1186
+ indicator: boolean;
1187
+ indicatorExpanded: boolean;
1188
+ }, {}, {
1189
+ NeonExpansionIndicator: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1190
+ expanded: {
1191
+ type: BooleanConstructor;
1192
+ default: boolean;
1193
+ };
1194
+ inverse: {
1195
+ type: BooleanConstructor;
1196
+ default: boolean;
1197
+ };
1198
+ disabled: {
1199
+ type: BooleanConstructor;
1200
+ default: boolean;
1201
+ };
1202
+ color: {
1203
+ type: () => NeonFunctionalColor;
1204
+ default: null;
1205
+ };
1206
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1207
+ expanded: {
1208
+ type: BooleanConstructor;
1209
+ default: boolean;
1210
+ };
1211
+ inverse: {
1212
+ type: BooleanConstructor;
1213
+ default: boolean;
1214
+ };
1215
+ disabled: {
1216
+ type: BooleanConstructor;
1217
+ default: boolean;
1218
+ };
1219
+ color: {
1220
+ type: () => NeonFunctionalColor;
1221
+ default: null;
1222
+ };
1223
+ }>> & Readonly<{}>, {
1224
+ color: NeonFunctionalColor;
1225
+ inverse: boolean;
1226
+ disabled: boolean;
1227
+ expanded: boolean;
1228
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1229
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1230
+ name: {
1231
+ type: StringConstructor;
1232
+ required: true;
1233
+ };
1234
+ id: {
1235
+ type: StringConstructor;
1236
+ default: null;
1237
+ };
1238
+ color: {
1239
+ type: () => NeonFunctionalColor;
1240
+ default: null;
1241
+ };
1242
+ inverse: {
1243
+ type: BooleanConstructor;
1244
+ default: boolean;
1245
+ };
1246
+ disabled: {
1247
+ type: BooleanConstructor;
1248
+ default: boolean;
1249
+ };
1250
+ }>, {
1251
+ sanitizedAttributes: import("vue").ComputedRef<{
1252
+ [x: string]: unknown;
1253
+ }>;
1254
+ icon: import("vue").ComputedRef<string | undefined>;
1255
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1256
+ name: {
1257
+ type: StringConstructor;
1258
+ required: true;
1259
+ };
1260
+ id: {
1261
+ type: StringConstructor;
1262
+ default: null;
1263
+ };
1264
+ color: {
1265
+ type: () => NeonFunctionalColor;
1266
+ default: null;
1267
+ };
1268
+ inverse: {
1269
+ type: BooleanConstructor;
1270
+ default: boolean;
1271
+ };
1272
+ disabled: {
1273
+ type: BooleanConstructor;
1274
+ default: boolean;
1275
+ };
1276
+ }>> & Readonly<{}>, {
1277
+ color: NeonFunctionalColor;
1278
+ id: string;
1279
+ inverse: boolean;
1280
+ disabled: boolean;
1281
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1282
+ NeonLink: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1283
+ href: {
1284
+ type: StringConstructor;
1285
+ default: null;
1286
+ };
1287
+ noStyle: {
1288
+ type: BooleanConstructor;
1289
+ default: boolean;
1290
+ };
1291
+ outlineStyle: {
1292
+ type: () => import("@/neon").NeonOutlineStyle;
1293
+ default: import("@/neon").NeonOutlineStyle;
1294
+ };
1295
+ externalIndicator: {
1296
+ type: BooleanConstructor;
1297
+ default: boolean;
1298
+ };
1299
+ }>, {
1300
+ neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
1301
+ routerUrl: import("vue").ComputedRef<string | undefined>;
1302
+ sanitizedAttributes: import("vue").ComputedRef<{
1303
+ [x: string]: unknown;
1304
+ }>;
1305
+ activeRoute: import("vue").ComputedRef<boolean | "" | undefined>;
1306
+ exactRoute: import("vue").ComputedRef<boolean | "" | undefined>;
1307
+ onClick: () => void;
1308
+ onSpace: () => Promise<void>;
1309
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1310
+ href: {
1311
+ type: StringConstructor;
1312
+ default: null;
1313
+ };
1314
+ noStyle: {
1315
+ type: BooleanConstructor;
1316
+ default: boolean;
1317
+ };
1318
+ outlineStyle: {
1319
+ type: () => import("@/neon").NeonOutlineStyle;
1320
+ default: import("@/neon").NeonOutlineStyle;
1321
+ };
1322
+ externalIndicator: {
1323
+ type: BooleanConstructor;
1324
+ default: boolean;
1325
+ };
1326
+ }>> & Readonly<{
1327
+ onClick?: ((...args: any[]) => any) | undefined;
1328
+ }>, {
1329
+ href: string;
1330
+ noStyle: boolean;
1331
+ outlineStyle: import("@/neon").NeonOutlineStyle;
1332
+ externalIndicator: boolean;
1333
+ }, {}, {
1334
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1335
+ name: {
1336
+ type: StringConstructor;
1337
+ required: true;
1338
+ };
1339
+ id: {
1340
+ type: StringConstructor;
1341
+ default: null;
1342
+ };
1343
+ color: {
1344
+ type: () => NeonFunctionalColor;
1345
+ default: null;
1346
+ };
1347
+ inverse: {
1348
+ type: BooleanConstructor;
1349
+ default: boolean;
1350
+ };
1351
+ disabled: {
1352
+ type: BooleanConstructor;
1353
+ default: boolean;
1354
+ };
1355
+ }>, {
1356
+ sanitizedAttributes: import("vue").ComputedRef<{
1357
+ [x: string]: unknown;
1358
+ }>;
1359
+ icon: import("vue").ComputedRef<string | undefined>;
1360
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1361
+ name: {
1362
+ type: StringConstructor;
1363
+ required: true;
1364
+ };
1365
+ id: {
1366
+ type: StringConstructor;
1367
+ default: null;
1368
+ };
1369
+ color: {
1370
+ type: () => NeonFunctionalColor;
1371
+ default: null;
1372
+ };
1373
+ inverse: {
1374
+ type: BooleanConstructor;
1375
+ default: boolean;
1376
+ };
1377
+ disabled: {
1378
+ type: BooleanConstructor;
1379
+ default: boolean;
1380
+ };
1381
+ }>> & Readonly<{}>, {
1382
+ color: NeonFunctionalColor;
1383
+ id: string;
1384
+ inverse: boolean;
1385
+ disabled: boolean;
1386
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1387
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1388
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; /**
1389
+ * The size of the avatar
1390
+ */
1391
+ NeonInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1392
+ id: {
1393
+ type: StringConstructor;
1394
+ default: null;
1395
+ };
1396
+ modelValue: {
1397
+ type: StringConstructor;
1398
+ default: null;
1399
+ };
1400
+ type: {
1401
+ type: () => import("@/neon").NeonInputType;
1402
+ default: import("@/neon").NeonInputType;
1403
+ };
1404
+ placeholder: {
1405
+ type: StringConstructor;
1406
+ default: null;
1407
+ };
1408
+ size: {
1409
+ type: () => import("@/neon").NeonSize;
1410
+ default: import("@/neon").NeonSize;
1411
+ };
1412
+ color: {
1413
+ type: () => NeonFunctionalColor;
1414
+ default: NeonFunctionalColor;
1415
+ };
1416
+ inputmode: {
1417
+ type: () => import("@/neon").NeonInputMode;
1418
+ default: import("@/neon").NeonInputMode;
1419
+ };
1420
+ autocomplete: {
1421
+ type: StringConstructor;
1422
+ default: string;
1423
+ };
1424
+ state: {
1425
+ type: () => import("@/neon").NeonState;
1426
+ default: import("@/neon").NeonState;
1427
+ };
1428
+ rows: {
1429
+ type: NumberConstructor;
1430
+ default: null;
1431
+ };
1432
+ icon: {
1433
+ type: StringConstructor;
1434
+ default: null;
1435
+ };
1436
+ iconReadonly: {
1437
+ type: BooleanConstructor;
1438
+ default: boolean;
1439
+ };
1440
+ hideIcon: {
1441
+ type: BooleanConstructor;
1442
+ default: boolean;
1443
+ };
1444
+ tabindex: {
1445
+ type: NumberConstructor;
1446
+ default: number;
1447
+ };
1448
+ disabled: {
1449
+ type: BooleanConstructor;
1450
+ default: boolean;
1451
+ };
1452
+ stateHighlight: {
1453
+ type: BooleanConstructor;
1454
+ default: boolean;
1455
+ };
1456
+ stateIcon: {
1457
+ type: BooleanConstructor;
1458
+ default: boolean;
1459
+ };
1460
+ maxlength: {
1461
+ type: NumberConstructor;
1462
+ default: null;
1463
+ };
1464
+ maxlengthLabel: {
1465
+ type: StringConstructor;
1466
+ default: string;
1467
+ };
1468
+ debounce: {
1469
+ type: NumberConstructor;
1470
+ default: undefined;
1471
+ };
1472
+ }>, {
1473
+ neonInput: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
1474
+ focused: import("vue").Ref<boolean, boolean>;
1475
+ sanitizedAttributes: import("vue").ComputedRef<{
1476
+ [x: string]: unknown;
1477
+ }>;
1478
+ iconVisible: import("vue").ComputedRef<string | boolean | undefined>;
1479
+ iconName: import("vue").ComputedRef<string | undefined>;
1480
+ iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
1481
+ computedPlaceholder: import("vue").ComputedRef<string>;
1482
+ counterLabel: import("vue").ComputedRef<string | null>;
1483
+ focus: () => void;
1484
+ click: () => void;
1485
+ onFocus: () => void;
1486
+ onBlur: () => void;
1487
+ iconClicked: ($event: Event) => void;
1488
+ changeValue: (event: InputEvent) => void;
1489
+ onKeyDown: (event: KeyboardEvent) => void;
1490
+ }, {}, {}, {}, 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<{
1491
+ id: {
1492
+ type: StringConstructor;
1493
+ default: null;
1494
+ };
1495
+ modelValue: {
1496
+ type: StringConstructor;
1497
+ default: null;
1498
+ };
1499
+ type: {
1500
+ type: () => import("@/neon").NeonInputType;
1501
+ default: import("@/neon").NeonInputType;
1502
+ };
1503
+ placeholder: {
1504
+ type: StringConstructor;
1505
+ default: null;
1506
+ };
1507
+ size: {
1508
+ type: () => import("@/neon").NeonSize;
1509
+ default: import("@/neon").NeonSize;
1510
+ };
1511
+ color: {
1512
+ type: () => NeonFunctionalColor;
1513
+ default: NeonFunctionalColor;
1514
+ };
1515
+ inputmode: {
1516
+ type: () => import("@/neon").NeonInputMode;
1517
+ default: import("@/neon").NeonInputMode;
1518
+ };
1519
+ autocomplete: {
1520
+ type: StringConstructor;
1521
+ default: string;
1522
+ };
1523
+ state: {
1524
+ type: () => import("@/neon").NeonState;
1525
+ default: import("@/neon").NeonState;
1526
+ };
1527
+ rows: {
1528
+ type: NumberConstructor;
1529
+ default: null;
1530
+ };
1531
+ icon: {
1532
+ type: StringConstructor;
1533
+ default: null;
1534
+ };
1535
+ iconReadonly: {
1536
+ type: BooleanConstructor;
1537
+ default: boolean;
1538
+ };
1539
+ hideIcon: {
1540
+ type: BooleanConstructor;
1541
+ default: boolean;
1542
+ };
1543
+ tabindex: {
1544
+ type: NumberConstructor;
1545
+ default: number;
1546
+ };
1547
+ disabled: {
1548
+ type: BooleanConstructor;
1549
+ default: boolean;
1550
+ };
1551
+ stateHighlight: {
1552
+ type: BooleanConstructor;
1553
+ default: boolean;
1554
+ };
1555
+ stateIcon: {
1556
+ type: BooleanConstructor;
1557
+ default: boolean;
1558
+ };
1559
+ maxlength: {
1560
+ type: NumberConstructor;
1561
+ default: null;
1562
+ };
1563
+ maxlengthLabel: {
1564
+ type: StringConstructor;
1565
+ default: string;
1566
+ };
1567
+ debounce: {
1568
+ type: NumberConstructor;
1569
+ default: undefined;
1570
+ };
1571
+ }>> & Readonly<{
1572
+ onFocus?: ((...args: any[]) => any) | undefined;
1573
+ onBlur?: ((...args: any[]) => any) | undefined;
1574
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1575
+ "onIcon-click"?: ((...args: any[]) => any) | undefined;
1576
+ }>, {
1577
+ color: NeonFunctionalColor;
1578
+ icon: string;
1579
+ type: import("@/neon").NeonInputType;
1580
+ id: string;
1581
+ disabled: boolean;
1582
+ size: import("@/neon").NeonSize;
1583
+ placeholder: string;
1584
+ tabindex: number;
1585
+ inputmode: import("@/neon").NeonInputMode;
1586
+ modelValue: string;
1587
+ state: import("@/neon").NeonState;
1588
+ autocomplete: string;
1589
+ rows: number;
1590
+ iconReadonly: boolean;
1591
+ hideIcon: boolean;
1592
+ stateHighlight: boolean;
1593
+ stateIcon: boolean;
1594
+ maxlength: number;
1595
+ maxlengthLabel: string;
1596
+ debounce: number;
1597
+ }, {}, {
1598
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1599
+ name: {
1600
+ type: StringConstructor;
1601
+ required: true;
1602
+ };
1603
+ id: {
1604
+ type: StringConstructor;
1605
+ default: null;
1606
+ };
1607
+ color: {
1608
+ type: () => NeonFunctionalColor;
1609
+ default: null;
1610
+ };
1611
+ inverse: {
1612
+ type: BooleanConstructor;
1613
+ default: boolean;
1614
+ };
1615
+ disabled: {
1616
+ type: BooleanConstructor;
1617
+ default: boolean;
1618
+ };
1619
+ }>, {
1620
+ sanitizedAttributes: import("vue").ComputedRef<{
1621
+ [x: string]: unknown;
1622
+ }>;
1623
+ icon: import("vue").ComputedRef<string | undefined>;
1624
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1625
+ name: {
1626
+ type: StringConstructor;
1627
+ required: true;
1628
+ };
1629
+ id: {
1630
+ type: StringConstructor;
1631
+ default: null;
1632
+ };
1633
+ color: {
1634
+ type: () => NeonFunctionalColor;
1635
+ default: null;
1636
+ };
1637
+ inverse: {
1638
+ type: BooleanConstructor;
1639
+ default: boolean;
1640
+ };
1641
+ disabled: {
1642
+ type: BooleanConstructor;
1643
+ default: boolean;
1644
+ };
1645
+ }>> & Readonly<{}>, {
1646
+ color: NeonFunctionalColor;
1647
+ id: string;
1648
+ inverse: boolean;
1649
+ disabled: boolean;
1650
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1651
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1652
+ NeonList: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1653
+ modelValue: {
1654
+ type: () => import("@/neon").NeonListItem[];
1655
+ required: true;
1656
+ };
1657
+ size: {
1658
+ type: () => import("@/neon").NeonSize;
1659
+ default: import("@/neon").NeonSize;
1660
+ };
1661
+ color: {
1662
+ type: () => NeonFunctionalColor;
1663
+ default: NeonFunctionalColor;
1664
+ };
1665
+ disabled: {
1666
+ type: BooleanConstructor;
1667
+ default: boolean;
1668
+ };
1669
+ }>, {
1670
+ remove: (key: string) => void;
1671
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "close")[], "update:modelValue" | "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1672
+ modelValue: {
1673
+ type: () => import("@/neon").NeonListItem[];
1674
+ required: true;
1675
+ };
1676
+ size: {
1677
+ type: () => import("@/neon").NeonSize;
1678
+ default: import("@/neon").NeonSize;
1679
+ };
1680
+ color: {
1681
+ type: () => NeonFunctionalColor;
1682
+ default: NeonFunctionalColor;
1683
+ };
1684
+ disabled: {
1685
+ type: BooleanConstructor;
1686
+ default: boolean;
1687
+ };
1688
+ }>> & Readonly<{
1689
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1690
+ onClose?: ((...args: any[]) => any) | undefined;
1691
+ }>, {
1692
+ color: NeonFunctionalColor;
1693
+ disabled: boolean;
1694
+ size: import("@/neon").NeonSize;
1695
+ }, {}, {
1696
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1697
+ name: {
1698
+ type: StringConstructor;
1699
+ required: true;
1700
+ };
1701
+ id: {
1702
+ type: StringConstructor;
1703
+ default: null;
1704
+ };
1705
+ color: {
1706
+ type: () => NeonFunctionalColor;
1707
+ default: null;
1708
+ };
1709
+ inverse: {
1710
+ type: BooleanConstructor;
1711
+ default: boolean;
1712
+ };
1713
+ disabled: {
1714
+ type: BooleanConstructor;
1715
+ default: boolean;
1716
+ };
1717
+ }>, {
1718
+ sanitizedAttributes: import("vue").ComputedRef<{
1719
+ [x: string]: unknown;
1720
+ }>;
1721
+ icon: import("vue").ComputedRef<string | undefined>;
1722
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1723
+ name: {
1724
+ type: StringConstructor;
1725
+ required: true;
1726
+ };
1727
+ id: {
1728
+ type: StringConstructor;
1729
+ default: null;
1730
+ };
1731
+ color: {
1732
+ type: () => NeonFunctionalColor;
1733
+ default: null;
1734
+ };
1735
+ inverse: {
1736
+ type: BooleanConstructor;
1737
+ default: boolean;
1738
+ };
1739
+ disabled: {
1740
+ type: BooleanConstructor;
1741
+ default: boolean;
1742
+ };
1743
+ }>> & Readonly<{}>, {
1744
+ color: NeonFunctionalColor;
1745
+ id: string;
1746
+ inverse: boolean;
1747
+ disabled: boolean;
1748
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1749
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1750
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1751
+ NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1752
+ name: {
1753
+ type: StringConstructor;
1754
+ required: true;
1755
+ };
1756
+ id: {
1757
+ type: StringConstructor;
1758
+ default: null;
1759
+ };
1760
+ color: {
1761
+ type: () => NeonFunctionalColor;
1762
+ default: null;
1763
+ };
1764
+ inverse: {
1765
+ type: BooleanConstructor;
1766
+ default: boolean;
1767
+ };
1768
+ disabled: {
1769
+ type: BooleanConstructor;
1770
+ default: boolean;
1771
+ };
1772
+ }>, {
1773
+ sanitizedAttributes: import("vue").ComputedRef<{
1774
+ [x: string]: unknown;
1775
+ }>;
1776
+ icon: import("vue").ComputedRef<string | undefined>;
1777
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1778
+ name: {
1779
+ type: StringConstructor;
1780
+ required: true;
1781
+ };
1782
+ id: {
1783
+ type: StringConstructor;
1784
+ default: null;
1785
+ };
1786
+ color: {
1787
+ type: () => NeonFunctionalColor;
1788
+ default: null;
1789
+ };
1790
+ inverse: {
1791
+ type: BooleanConstructor;
1792
+ default: boolean;
1793
+ };
1794
+ disabled: {
1795
+ type: BooleanConstructor;
1796
+ default: boolean;
1797
+ };
1798
+ }>> & Readonly<{}>, {
1799
+ color: NeonFunctionalColor;
1800
+ id: string;
1801
+ inverse: boolean;
1802
+ disabled: boolean;
1803
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1804
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1805
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1806
+ export default _default;