@aotearoan/neon 22.5.1 → 22.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/user-input/field/NeonField.cjs.js +1 -1
- package/dist/components/user-input/field/NeonField.cjs.js.map +1 -1
- package/dist/components/user-input/field/NeonField.es.js +2 -6
- package/dist/components/user-input/field/NeonField.es.js.map +1 -1
- package/dist/components/user-input/field/NeonField.vue.cjs.js +1 -1
- package/dist/components/user-input/field/NeonField.vue.cjs.js.map +1 -1
- package/dist/components/user-input/field/NeonField.vue.es.js +22 -26
- package/dist/components/user-input/field/NeonField.vue.es.js.map +1 -1
- package/dist/components/user-input/input/NeonInput.cjs.js +1 -1
- package/dist/components/user-input/input/NeonInput.cjs.js.map +1 -1
- package/dist/components/user-input/input/NeonInput.es.js +65 -47
- package/dist/components/user-input/input/NeonInput.es.js.map +1 -1
- package/dist/components/user-input/input/NeonInput.vue.cjs.js +1 -1
- package/dist/components/user-input/input/NeonInput.vue.cjs.js.map +1 -1
- package/dist/components/user-input/input/NeonInput.vue.es.js +35 -31
- package/dist/components/user-input/input/NeonInput.vue.es.js.map +1 -1
- package/dist/src/components/navigation/dropdown-menu/NeonDropdownMenu.d.ts +150 -48
- package/dist/src/components/navigation/menu/NeonMenu.d.ts +150 -48
- package/dist/src/components/navigation/mobile-menu/NeonMobileMenu.d.ts +150 -48
- package/dist/src/components/presentation/badge/NeonBadge.d.ts +104 -28
- package/dist/src/components/presentation/dropdown/NeonDropdown.d.ts +62 -52
- package/dist/src/components/user-input/color/NeonColor.d.ts +14 -4
- package/dist/src/components/user-input/date-picker/NeonDatePicker.d.ts +144 -44
- package/dist/src/components/user-input/field/NeonField.d.ts +1 -122
- package/dist/src/components/user-input/file/NeonFile.d.ts +116 -34
- package/dist/src/components/user-input/input/NeonInput.d.ts +24 -8
- package/dist/src/components/user-input/number/NeonNumber.d.ts +14 -4
- package/dist/src/components/user-input/password/NeonPassword.d.ts +14 -4
- package/dist/src/components/user-input/search/NeonSearch.d.ts +224 -232
- package/dist/src/components/user-input/select/NeonSelect.d.ts +330 -66
- package/package.json +1 -1
- package/src/sass/components/_field.scss +8 -0
- package/src/sass/components/_input.scss +3 -3
- package/src/sass/includes/_dependencies.scss +1 -1
- package/src/sass/includes/_typography.scss +3 -2
- package/src/sass/variables.scss +4 -0
|
@@ -125,17 +125,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
125
125
|
default: import("../../../neon").NeonInputMode;
|
|
126
126
|
};
|
|
127
127
|
autocomplete: {
|
|
128
|
-
type:
|
|
128
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
129
129
|
default: string;
|
|
130
130
|
};
|
|
131
131
|
state: {
|
|
132
132
|
type: () => NeonState;
|
|
133
133
|
default: NeonState;
|
|
134
|
-
};
|
|
134
|
+
}; /**
|
|
135
|
+
* Title for the file upload button.
|
|
136
|
+
*/
|
|
135
137
|
rows: {
|
|
136
138
|
type: NumberConstructor;
|
|
137
|
-
default: null;
|
|
138
|
-
|
|
139
|
+
default: null; /**
|
|
140
|
+
* Emitted when files are selected and uploaded
|
|
141
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
142
|
+
*/
|
|
143
|
+
}; /**
|
|
144
|
+
* Emitted when files are selected and uploaded
|
|
145
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
146
|
+
*/
|
|
139
147
|
icon: {
|
|
140
148
|
type: StringConstructor;
|
|
141
149
|
default: null;
|
|
@@ -168,6 +176,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
168
176
|
type: NumberConstructor;
|
|
169
177
|
default: null;
|
|
170
178
|
};
|
|
179
|
+
maxlengthLabel: {
|
|
180
|
+
type: StringConstructor;
|
|
181
|
+
default: string;
|
|
182
|
+
};
|
|
171
183
|
debounce: {
|
|
172
184
|
type: NumberConstructor;
|
|
173
185
|
default: undefined;
|
|
@@ -187,12 +199,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
187
199
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
188
200
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
189
201
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
202
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
190
203
|
focus: () => void;
|
|
191
204
|
click: () => void;
|
|
192
205
|
onFocus: () => void;
|
|
193
206
|
onBlur: () => void;
|
|
194
207
|
iconClicked: ($event: Event) => void;
|
|
195
|
-
changeValue: (event:
|
|
208
|
+
changeValue: (event: InputEvent) => void;
|
|
196
209
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
197
210
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], import("vue").PublicProps, {
|
|
198
211
|
disabled: boolean;
|
|
@@ -207,13 +220,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
207
220
|
inputmode: import("../../../neon").NeonInputMode;
|
|
208
221
|
modelValue: string;
|
|
209
222
|
state: NeonState;
|
|
210
|
-
autocomplete:
|
|
223
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
211
224
|
rows: number;
|
|
212
225
|
iconReadonly: boolean;
|
|
213
226
|
hideIcon: boolean;
|
|
214
227
|
stateHighlight: boolean;
|
|
215
228
|
stateIcon: boolean;
|
|
216
229
|
maxlength: number;
|
|
230
|
+
maxlengthLabel: string;
|
|
217
231
|
}, true, {}, {}, {
|
|
218
232
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
219
233
|
name: {
|
|
@@ -307,17 +321,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
307
321
|
default: import("../../../neon").NeonInputMode;
|
|
308
322
|
};
|
|
309
323
|
autocomplete: {
|
|
310
|
-
type:
|
|
324
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
311
325
|
default: string;
|
|
312
326
|
};
|
|
313
327
|
state: {
|
|
314
328
|
type: () => NeonState;
|
|
315
329
|
default: NeonState;
|
|
316
|
-
};
|
|
330
|
+
}; /**
|
|
331
|
+
* Title for the file upload button.
|
|
332
|
+
*/
|
|
317
333
|
rows: {
|
|
318
334
|
type: NumberConstructor;
|
|
319
|
-
default: null;
|
|
320
|
-
|
|
335
|
+
default: null; /**
|
|
336
|
+
* Emitted when files are selected and uploaded
|
|
337
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
338
|
+
*/
|
|
339
|
+
}; /**
|
|
340
|
+
* Emitted when files are selected and uploaded
|
|
341
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
342
|
+
*/
|
|
321
343
|
icon: {
|
|
322
344
|
type: StringConstructor;
|
|
323
345
|
default: null;
|
|
@@ -350,6 +372,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
350
372
|
type: NumberConstructor;
|
|
351
373
|
default: null;
|
|
352
374
|
};
|
|
375
|
+
maxlengthLabel: {
|
|
376
|
+
type: StringConstructor;
|
|
377
|
+
default: string;
|
|
378
|
+
};
|
|
353
379
|
debounce: {
|
|
354
380
|
type: NumberConstructor;
|
|
355
381
|
default: undefined;
|
|
@@ -369,12 +395,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
369
395
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
370
396
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
371
397
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
398
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
372
399
|
focus: () => void;
|
|
373
400
|
click: () => void;
|
|
374
401
|
onFocus: () => void;
|
|
375
402
|
onBlur: () => void;
|
|
376
403
|
iconClicked: ($event: Event) => void;
|
|
377
|
-
changeValue: (event:
|
|
404
|
+
changeValue: (event: InputEvent) => void;
|
|
378
405
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
379
406
|
}, {}, {}, {}, {
|
|
380
407
|
disabled: boolean;
|
|
@@ -389,13 +416,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
389
416
|
inputmode: import("../../../neon").NeonInputMode;
|
|
390
417
|
modelValue: string;
|
|
391
418
|
state: NeonState;
|
|
392
|
-
autocomplete:
|
|
419
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
393
420
|
rows: number;
|
|
394
421
|
iconReadonly: boolean;
|
|
395
422
|
hideIcon: boolean;
|
|
396
423
|
stateHighlight: boolean;
|
|
397
424
|
stateIcon: boolean;
|
|
398
425
|
maxlength: number;
|
|
426
|
+
maxlengthLabel: string;
|
|
399
427
|
}> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
400
428
|
id: {
|
|
401
429
|
type: StringConstructor;
|
|
@@ -428,17 +456,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
428
456
|
default: import("../../../neon").NeonInputMode;
|
|
429
457
|
};
|
|
430
458
|
autocomplete: {
|
|
431
|
-
type:
|
|
459
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
432
460
|
default: string;
|
|
433
461
|
};
|
|
434
462
|
state: {
|
|
435
463
|
type: () => NeonState;
|
|
436
464
|
default: NeonState;
|
|
437
|
-
};
|
|
465
|
+
}; /**
|
|
466
|
+
* Title for the file upload button.
|
|
467
|
+
*/
|
|
438
468
|
rows: {
|
|
439
469
|
type: NumberConstructor;
|
|
440
|
-
default: null;
|
|
441
|
-
|
|
470
|
+
default: null; /**
|
|
471
|
+
* Emitted when files are selected and uploaded
|
|
472
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
473
|
+
*/
|
|
474
|
+
}; /**
|
|
475
|
+
* Emitted when files are selected and uploaded
|
|
476
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
477
|
+
*/
|
|
442
478
|
icon: {
|
|
443
479
|
type: StringConstructor;
|
|
444
480
|
default: null;
|
|
@@ -471,6 +507,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
471
507
|
type: NumberConstructor;
|
|
472
508
|
default: null;
|
|
473
509
|
};
|
|
510
|
+
maxlengthLabel: {
|
|
511
|
+
type: StringConstructor;
|
|
512
|
+
default: string;
|
|
513
|
+
};
|
|
474
514
|
debounce: {
|
|
475
515
|
type: NumberConstructor;
|
|
476
516
|
default: undefined;
|
|
@@ -490,12 +530,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
490
530
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
491
531
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
492
532
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
533
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
493
534
|
focus: () => void;
|
|
494
535
|
click: () => void;
|
|
495
536
|
onFocus: () => void;
|
|
496
537
|
onBlur: () => void;
|
|
497
538
|
iconClicked: ($event: Event) => void;
|
|
498
|
-
changeValue: (event:
|
|
539
|
+
changeValue: (event: InputEvent) => void;
|
|
499
540
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
500
541
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], import("vue").PublicProps, {
|
|
501
542
|
disabled: boolean;
|
|
@@ -510,13 +551,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
510
551
|
inputmode: import("../../../neon").NeonInputMode;
|
|
511
552
|
modelValue: string;
|
|
512
553
|
state: NeonState;
|
|
513
|
-
autocomplete:
|
|
554
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
514
555
|
rows: number;
|
|
515
556
|
iconReadonly: boolean;
|
|
516
557
|
hideIcon: boolean;
|
|
517
558
|
stateHighlight: boolean;
|
|
518
559
|
stateIcon: boolean;
|
|
519
560
|
maxlength: number;
|
|
561
|
+
maxlengthLabel: string;
|
|
520
562
|
}, true, {}, {}, {
|
|
521
563
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
522
564
|
name: {
|
|
@@ -610,17 +652,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
610
652
|
default: import("../../../neon").NeonInputMode;
|
|
611
653
|
};
|
|
612
654
|
autocomplete: {
|
|
613
|
-
type:
|
|
655
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
614
656
|
default: string;
|
|
615
657
|
};
|
|
616
658
|
state: {
|
|
617
659
|
type: () => NeonState;
|
|
618
660
|
default: NeonState;
|
|
619
|
-
};
|
|
661
|
+
}; /**
|
|
662
|
+
* Title for the file upload button.
|
|
663
|
+
*/
|
|
620
664
|
rows: {
|
|
621
665
|
type: NumberConstructor;
|
|
622
|
-
default: null;
|
|
623
|
-
|
|
666
|
+
default: null; /**
|
|
667
|
+
* Emitted when files are selected and uploaded
|
|
668
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
669
|
+
*/
|
|
670
|
+
}; /**
|
|
671
|
+
* Emitted when files are selected and uploaded
|
|
672
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
673
|
+
*/
|
|
624
674
|
icon: {
|
|
625
675
|
type: StringConstructor;
|
|
626
676
|
default: null;
|
|
@@ -653,6 +703,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
653
703
|
type: NumberConstructor;
|
|
654
704
|
default: null;
|
|
655
705
|
};
|
|
706
|
+
maxlengthLabel: {
|
|
707
|
+
type: StringConstructor;
|
|
708
|
+
default: string;
|
|
709
|
+
};
|
|
656
710
|
debounce: {
|
|
657
711
|
type: NumberConstructor;
|
|
658
712
|
default: undefined;
|
|
@@ -672,12 +726,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
672
726
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
673
727
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
674
728
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
729
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
675
730
|
focus: () => void;
|
|
676
731
|
click: () => void;
|
|
677
732
|
onFocus: () => void;
|
|
678
733
|
onBlur: () => void;
|
|
679
734
|
iconClicked: ($event: Event) => void;
|
|
680
|
-
changeValue: (event:
|
|
735
|
+
changeValue: (event: InputEvent) => void;
|
|
681
736
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
682
737
|
}, {}, {}, {}, {
|
|
683
738
|
disabled: boolean;
|
|
@@ -692,13 +747,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
692
747
|
inputmode: import("../../../neon").NeonInputMode;
|
|
693
748
|
modelValue: string;
|
|
694
749
|
state: NeonState;
|
|
695
|
-
autocomplete:
|
|
750
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
696
751
|
rows: number;
|
|
697
752
|
iconReadonly: boolean;
|
|
698
753
|
hideIcon: boolean;
|
|
699
754
|
stateHighlight: boolean;
|
|
700
755
|
stateIcon: boolean;
|
|
701
756
|
maxlength: number;
|
|
757
|
+
maxlengthLabel: string;
|
|
702
758
|
}> | null>;
|
|
703
759
|
files: import("vue").Ref<{
|
|
704
760
|
readonly lastModified: number;
|
|
@@ -1270,17 +1326,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1270
1326
|
default: import("../../../neon").NeonInputMode;
|
|
1271
1327
|
};
|
|
1272
1328
|
autocomplete: {
|
|
1273
|
-
type:
|
|
1329
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
1274
1330
|
default: string;
|
|
1275
1331
|
};
|
|
1276
1332
|
state: {
|
|
1277
1333
|
type: () => NeonState;
|
|
1278
1334
|
default: NeonState;
|
|
1279
|
-
};
|
|
1335
|
+
}; /**
|
|
1336
|
+
* Title for the file upload button.
|
|
1337
|
+
*/
|
|
1280
1338
|
rows: {
|
|
1281
1339
|
type: NumberConstructor;
|
|
1282
|
-
default: null;
|
|
1283
|
-
|
|
1340
|
+
default: null; /**
|
|
1341
|
+
* Emitted when files are selected and uploaded
|
|
1342
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
1343
|
+
*/
|
|
1344
|
+
}; /**
|
|
1345
|
+
* Emitted when files are selected and uploaded
|
|
1346
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
1347
|
+
*/
|
|
1284
1348
|
icon: {
|
|
1285
1349
|
type: StringConstructor;
|
|
1286
1350
|
default: null;
|
|
@@ -1313,6 +1377,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1313
1377
|
type: NumberConstructor;
|
|
1314
1378
|
default: null;
|
|
1315
1379
|
};
|
|
1380
|
+
maxlengthLabel: {
|
|
1381
|
+
type: StringConstructor;
|
|
1382
|
+
default: string;
|
|
1383
|
+
};
|
|
1316
1384
|
debounce: {
|
|
1317
1385
|
type: NumberConstructor;
|
|
1318
1386
|
default: undefined;
|
|
@@ -1327,12 +1395,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1327
1395
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
1328
1396
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
1329
1397
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
1398
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
1330
1399
|
focus: () => void;
|
|
1331
1400
|
click: () => void;
|
|
1332
1401
|
onFocus: () => void;
|
|
1333
1402
|
onBlur: () => void;
|
|
1334
1403
|
iconClicked: ($event: Event) => void;
|
|
1335
|
-
changeValue: (event:
|
|
1404
|
+
changeValue: (event: InputEvent) => void;
|
|
1336
1405
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
1337
1406
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], "update:modelValue" | "focus" | "blur" | "icon-click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1338
1407
|
id: {
|
|
@@ -1366,17 +1435,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1366
1435
|
default: import("../../../neon").NeonInputMode;
|
|
1367
1436
|
};
|
|
1368
1437
|
autocomplete: {
|
|
1369
|
-
type:
|
|
1438
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
1370
1439
|
default: string;
|
|
1371
1440
|
};
|
|
1372
1441
|
state: {
|
|
1373
1442
|
type: () => NeonState;
|
|
1374
1443
|
default: NeonState;
|
|
1375
|
-
};
|
|
1444
|
+
}; /**
|
|
1445
|
+
* Title for the file upload button.
|
|
1446
|
+
*/
|
|
1376
1447
|
rows: {
|
|
1377
1448
|
type: NumberConstructor;
|
|
1378
|
-
default: null;
|
|
1379
|
-
|
|
1449
|
+
default: null; /**
|
|
1450
|
+
* Emitted when files are selected and uploaded
|
|
1451
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
1452
|
+
*/
|
|
1453
|
+
}; /**
|
|
1454
|
+
* Emitted when files are selected and uploaded
|
|
1455
|
+
* @type {File | File[]} either a single File (multiple = false) or a list of File objects (multiple = true)
|
|
1456
|
+
*/
|
|
1380
1457
|
icon: {
|
|
1381
1458
|
type: StringConstructor;
|
|
1382
1459
|
default: null;
|
|
@@ -1409,6 +1486,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1409
1486
|
type: NumberConstructor;
|
|
1410
1487
|
default: null;
|
|
1411
1488
|
};
|
|
1489
|
+
maxlengthLabel: {
|
|
1490
|
+
type: StringConstructor;
|
|
1491
|
+
default: string;
|
|
1492
|
+
};
|
|
1412
1493
|
debounce: {
|
|
1413
1494
|
type: NumberConstructor;
|
|
1414
1495
|
default: undefined;
|
|
@@ -1431,13 +1512,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1431
1512
|
inputmode: import("../../../neon").NeonInputMode;
|
|
1432
1513
|
modelValue: string;
|
|
1433
1514
|
state: NeonState;
|
|
1434
|
-
autocomplete:
|
|
1515
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
1435
1516
|
rows: number;
|
|
1436
1517
|
iconReadonly: boolean;
|
|
1437
1518
|
hideIcon: boolean;
|
|
1438
1519
|
stateHighlight: boolean;
|
|
1439
1520
|
stateIcon: boolean;
|
|
1440
1521
|
maxlength: number;
|
|
1522
|
+
maxlengthLabel: string;
|
|
1441
1523
|
}, {}, {
|
|
1442
1524
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1443
1525
|
name: {
|
|
@@ -63,7 +63,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
63
63
|
* NOTE: No enum is provided in Neon as some values can be used in combination, please refer to the full list of values in the preceding link.
|
|
64
64
|
*/
|
|
65
65
|
autocomplete: {
|
|
66
|
-
type:
|
|
66
|
+
type: () => NeonInputMode;
|
|
67
67
|
default: string;
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
@@ -139,8 +139,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
139
139
|
default: null;
|
|
140
140
|
};
|
|
141
141
|
/**
|
|
142
|
-
*
|
|
143
|
-
*
|
|
142
|
+
* The label template for the character limit. This is a string in the vue-i18n Pluralization format with a
|
|
143
|
+
* <em>{count}</em> placeholder.
|
|
144
|
+
*/
|
|
145
|
+
maxlengthLabel: {
|
|
146
|
+
type: StringConstructor;
|
|
147
|
+
default: string;
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* Debounce time in ms. If no value is provided, the default value set in NeonDebounceUtils is used (=0ms).
|
|
144
151
|
*/
|
|
145
152
|
debounce: {
|
|
146
153
|
type: NumberConstructor;
|
|
@@ -156,12 +163,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
156
163
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
157
164
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
158
165
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
166
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
159
167
|
focus: () => void;
|
|
160
168
|
click: () => void;
|
|
161
169
|
onFocus: () => void;
|
|
162
170
|
onBlur: () => void;
|
|
163
171
|
iconClicked: ($event: Event) => void;
|
|
164
|
-
changeValue: (event:
|
|
172
|
+
changeValue: (event: InputEvent) => void;
|
|
165
173
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
166
174
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], "update:modelValue" | "focus" | "blur" | "icon-click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
167
175
|
/**
|
|
@@ -220,7 +228,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
220
228
|
* NOTE: No enum is provided in Neon as some values can be used in combination, please refer to the full list of values in the preceding link.
|
|
221
229
|
*/
|
|
222
230
|
autocomplete: {
|
|
223
|
-
type:
|
|
231
|
+
type: () => NeonInputMode;
|
|
224
232
|
default: string;
|
|
225
233
|
};
|
|
226
234
|
/**
|
|
@@ -296,8 +304,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
296
304
|
default: null;
|
|
297
305
|
};
|
|
298
306
|
/**
|
|
299
|
-
*
|
|
300
|
-
*
|
|
307
|
+
* The label template for the character limit. This is a string in the vue-i18n Pluralization format with a
|
|
308
|
+
* <em>{count}</em> placeholder.
|
|
309
|
+
*/
|
|
310
|
+
maxlengthLabel: {
|
|
311
|
+
type: StringConstructor;
|
|
312
|
+
default: string;
|
|
313
|
+
};
|
|
314
|
+
/**
|
|
315
|
+
* Debounce time in ms. If no value is provided, the default value set in NeonDebounceUtils is used (=0ms).
|
|
301
316
|
*/
|
|
302
317
|
debounce: {
|
|
303
318
|
type: NumberConstructor;
|
|
@@ -321,13 +336,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
321
336
|
inputmode: NeonInputMode;
|
|
322
337
|
modelValue: string;
|
|
323
338
|
state: NeonState;
|
|
324
|
-
autocomplete:
|
|
339
|
+
autocomplete: NeonInputMode;
|
|
325
340
|
rows: number;
|
|
326
341
|
iconReadonly: boolean;
|
|
327
342
|
hideIcon: boolean;
|
|
328
343
|
stateHighlight: boolean;
|
|
329
344
|
stateIcon: boolean;
|
|
330
345
|
maxlength: number;
|
|
346
|
+
maxlengthLabel: string;
|
|
331
347
|
}, {}, {
|
|
332
348
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
333
349
|
name: {
|
|
@@ -780,7 +780,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
780
780
|
default: NeonInputMode;
|
|
781
781
|
};
|
|
782
782
|
autocomplete: {
|
|
783
|
-
type:
|
|
783
|
+
type: () => NeonInputMode;
|
|
784
784
|
default: string;
|
|
785
785
|
};
|
|
786
786
|
state: {
|
|
@@ -823,6 +823,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
823
823
|
type: NumberConstructor;
|
|
824
824
|
default: null;
|
|
825
825
|
};
|
|
826
|
+
maxlengthLabel: {
|
|
827
|
+
type: StringConstructor;
|
|
828
|
+
default: string;
|
|
829
|
+
};
|
|
826
830
|
debounce: {
|
|
827
831
|
type: NumberConstructor;
|
|
828
832
|
default: undefined;
|
|
@@ -837,12 +841,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
837
841
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
838
842
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
839
843
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
844
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
840
845
|
focus: () => void;
|
|
841
846
|
click: () => void;
|
|
842
847
|
onFocus: () => void;
|
|
843
848
|
onBlur: () => void;
|
|
844
849
|
iconClicked: ($event: Event) => void;
|
|
845
|
-
changeValue: (event:
|
|
850
|
+
changeValue: (event: InputEvent) => void;
|
|
846
851
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
847
852
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], "update:modelValue" | "focus" | "blur" | "icon-click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
848
853
|
id: {
|
|
@@ -874,7 +879,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
874
879
|
default: NeonInputMode;
|
|
875
880
|
};
|
|
876
881
|
autocomplete: {
|
|
877
|
-
type:
|
|
882
|
+
type: () => NeonInputMode;
|
|
878
883
|
default: string;
|
|
879
884
|
};
|
|
880
885
|
state: {
|
|
@@ -917,6 +922,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
917
922
|
type: NumberConstructor;
|
|
918
923
|
default: null;
|
|
919
924
|
};
|
|
925
|
+
maxlengthLabel: {
|
|
926
|
+
type: StringConstructor;
|
|
927
|
+
default: string;
|
|
928
|
+
};
|
|
920
929
|
debounce: {
|
|
921
930
|
type: NumberConstructor;
|
|
922
931
|
default: undefined;
|
|
@@ -939,13 +948,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
939
948
|
inputmode: NeonInputMode;
|
|
940
949
|
modelValue: string;
|
|
941
950
|
state: import("../../../neon").NeonState;
|
|
942
|
-
autocomplete:
|
|
951
|
+
autocomplete: NeonInputMode;
|
|
943
952
|
rows: number;
|
|
944
953
|
iconReadonly: boolean;
|
|
945
954
|
hideIcon: boolean;
|
|
946
955
|
stateHighlight: boolean;
|
|
947
956
|
stateIcon: boolean;
|
|
948
957
|
maxlength: number;
|
|
958
|
+
maxlengthLabel: string;
|
|
949
959
|
}, {}, {
|
|
950
960
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
951
961
|
name: {
|
|
@@ -44,7 +44,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
44
44
|
default: import("../../../neon").NeonInputMode;
|
|
45
45
|
};
|
|
46
46
|
autocomplete: {
|
|
47
|
-
type:
|
|
47
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
48
48
|
default: string;
|
|
49
49
|
};
|
|
50
50
|
state: {
|
|
@@ -87,6 +87,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
87
87
|
type: NumberConstructor;
|
|
88
88
|
default: null;
|
|
89
89
|
};
|
|
90
|
+
maxlengthLabel: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
default: string;
|
|
93
|
+
};
|
|
90
94
|
debounce: {
|
|
91
95
|
type: NumberConstructor;
|
|
92
96
|
default: undefined;
|
|
@@ -101,12 +105,13 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
101
105
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
102
106
|
iconColor: import("vue").ComputedRef<import("../../../neon").NeonFunctionalColor>;
|
|
103
107
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
108
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
104
109
|
focus: () => void;
|
|
105
110
|
click: () => void;
|
|
106
111
|
onFocus: () => void;
|
|
107
112
|
onBlur: () => void;
|
|
108
113
|
iconClicked: ($event: Event) => void;
|
|
109
|
-
changeValue: (event:
|
|
114
|
+
changeValue: (event: InputEvent) => void;
|
|
110
115
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
111
116
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], "update:modelValue" | "focus" | "blur" | "icon-click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
id: {
|
|
@@ -138,7 +143,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
138
143
|
default: import("../../../neon").NeonInputMode;
|
|
139
144
|
};
|
|
140
145
|
autocomplete: {
|
|
141
|
-
type:
|
|
146
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
142
147
|
default: string;
|
|
143
148
|
};
|
|
144
149
|
state: {
|
|
@@ -181,6 +186,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
181
186
|
type: NumberConstructor;
|
|
182
187
|
default: null;
|
|
183
188
|
};
|
|
189
|
+
maxlengthLabel: {
|
|
190
|
+
type: StringConstructor;
|
|
191
|
+
default: string;
|
|
192
|
+
};
|
|
184
193
|
debounce: {
|
|
185
194
|
type: NumberConstructor;
|
|
186
195
|
default: undefined;
|
|
@@ -203,13 +212,14 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
203
212
|
inputmode: import("../../../neon").NeonInputMode;
|
|
204
213
|
modelValue: string;
|
|
205
214
|
state: import("../../../neon").NeonState;
|
|
206
|
-
autocomplete:
|
|
215
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
207
216
|
rows: number;
|
|
208
217
|
iconReadonly: boolean;
|
|
209
218
|
hideIcon: boolean;
|
|
210
219
|
stateHighlight: boolean;
|
|
211
220
|
stateIcon: boolean;
|
|
212
221
|
maxlength: number;
|
|
222
|
+
maxlengthLabel: string;
|
|
213
223
|
}, {}, {
|
|
214
224
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
215
225
|
name: {
|