@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
|
@@ -425,8 +425,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
425
425
|
default: import("../../../neon").NeonInputMode;
|
|
426
426
|
};
|
|
427
427
|
autocomplete: {
|
|
428
|
-
type:
|
|
429
|
-
default: string;
|
|
428
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
429
|
+
default: string; /**
|
|
430
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
431
|
+
* multiple = true.
|
|
432
|
+
*/
|
|
430
433
|
};
|
|
431
434
|
state: {
|
|
432
435
|
type: () => import("../../../neon").NeonState;
|
|
@@ -440,7 +443,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
440
443
|
type: StringConstructor;
|
|
441
444
|
default: null;
|
|
442
445
|
};
|
|
446
|
+
/**
|
|
447
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
448
|
+
*/
|
|
443
449
|
iconReadonly: {
|
|
450
|
+
/**
|
|
451
|
+
* The color of the select.
|
|
452
|
+
*/
|
|
444
453
|
type: BooleanConstructor;
|
|
445
454
|
default: boolean;
|
|
446
455
|
};
|
|
@@ -468,6 +477,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
468
477
|
type: NumberConstructor;
|
|
469
478
|
default: null;
|
|
470
479
|
};
|
|
480
|
+
maxlengthLabel: {
|
|
481
|
+
type: StringConstructor;
|
|
482
|
+
default: string;
|
|
483
|
+
};
|
|
471
484
|
debounce: {
|
|
472
485
|
type: NumberConstructor;
|
|
473
486
|
default: undefined;
|
|
@@ -487,12 +500,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
487
500
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
488
501
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
489
502
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
503
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
490
504
|
focus: () => void;
|
|
491
505
|
click: () => void;
|
|
492
506
|
onFocus: () => void;
|
|
493
507
|
onBlur: () => void;
|
|
494
508
|
iconClicked: ($event: Event) => void;
|
|
495
|
-
changeValue: (event:
|
|
509
|
+
changeValue: (event: InputEvent) => void;
|
|
496
510
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
497
511
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], import("vue").PublicProps, {
|
|
498
512
|
disabled: boolean;
|
|
@@ -507,13 +521,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
507
521
|
inputmode: import("../../../neon").NeonInputMode;
|
|
508
522
|
modelValue: string;
|
|
509
523
|
state: import("../../../neon").NeonState;
|
|
510
|
-
autocomplete:
|
|
524
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
511
525
|
rows: number;
|
|
512
526
|
iconReadonly: boolean;
|
|
513
527
|
hideIcon: boolean;
|
|
514
528
|
stateHighlight: boolean;
|
|
515
529
|
stateIcon: boolean;
|
|
516
530
|
maxlength: number;
|
|
531
|
+
maxlengthLabel: string;
|
|
517
532
|
}, true, {}, {}, {
|
|
518
533
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
519
534
|
name: {
|
|
@@ -607,8 +622,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
607
622
|
default: import("../../../neon").NeonInputMode;
|
|
608
623
|
};
|
|
609
624
|
autocomplete: {
|
|
610
|
-
type:
|
|
611
|
-
default: string;
|
|
625
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
626
|
+
default: string; /**
|
|
627
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
628
|
+
* multiple = true.
|
|
629
|
+
*/
|
|
612
630
|
};
|
|
613
631
|
state: {
|
|
614
632
|
type: () => import("../../../neon").NeonState;
|
|
@@ -622,7 +640,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
622
640
|
type: StringConstructor;
|
|
623
641
|
default: null;
|
|
624
642
|
};
|
|
643
|
+
/**
|
|
644
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
645
|
+
*/
|
|
625
646
|
iconReadonly: {
|
|
647
|
+
/**
|
|
648
|
+
* The color of the select.
|
|
649
|
+
*/
|
|
626
650
|
type: BooleanConstructor;
|
|
627
651
|
default: boolean;
|
|
628
652
|
};
|
|
@@ -650,6 +674,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
650
674
|
type: NumberConstructor;
|
|
651
675
|
default: null;
|
|
652
676
|
};
|
|
677
|
+
maxlengthLabel: {
|
|
678
|
+
type: StringConstructor;
|
|
679
|
+
default: string;
|
|
680
|
+
};
|
|
653
681
|
debounce: {
|
|
654
682
|
type: NumberConstructor;
|
|
655
683
|
default: undefined;
|
|
@@ -669,12 +697,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
669
697
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
670
698
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
671
699
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
700
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
672
701
|
focus: () => void;
|
|
673
702
|
click: () => void;
|
|
674
703
|
onFocus: () => void;
|
|
675
704
|
onBlur: () => void;
|
|
676
705
|
iconClicked: ($event: Event) => void;
|
|
677
|
-
changeValue: (event:
|
|
706
|
+
changeValue: (event: InputEvent) => void;
|
|
678
707
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
679
708
|
}, {}, {}, {}, {
|
|
680
709
|
disabled: boolean;
|
|
@@ -689,13 +718,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
689
718
|
inputmode: import("../../../neon").NeonInputMode;
|
|
690
719
|
modelValue: string;
|
|
691
720
|
state: import("../../../neon").NeonState;
|
|
692
|
-
autocomplete:
|
|
721
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
693
722
|
rows: number;
|
|
694
723
|
iconReadonly: boolean;
|
|
695
724
|
hideIcon: boolean;
|
|
696
725
|
stateHighlight: boolean;
|
|
697
726
|
stateIcon: boolean;
|
|
698
727
|
maxlength: number;
|
|
728
|
+
maxlengthLabel: string;
|
|
699
729
|
}> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
700
730
|
id: {
|
|
701
731
|
type: StringConstructor;
|
|
@@ -728,8 +758,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
728
758
|
default: import("../../../neon").NeonInputMode;
|
|
729
759
|
};
|
|
730
760
|
autocomplete: {
|
|
731
|
-
type:
|
|
732
|
-
default: string;
|
|
761
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
762
|
+
default: string; /**
|
|
763
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
764
|
+
* multiple = true.
|
|
765
|
+
*/
|
|
733
766
|
};
|
|
734
767
|
state: {
|
|
735
768
|
type: () => import("../../../neon").NeonState;
|
|
@@ -743,7 +776,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
743
776
|
type: StringConstructor;
|
|
744
777
|
default: null;
|
|
745
778
|
};
|
|
779
|
+
/**
|
|
780
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
781
|
+
*/
|
|
746
782
|
iconReadonly: {
|
|
783
|
+
/**
|
|
784
|
+
* The color of the select.
|
|
785
|
+
*/
|
|
747
786
|
type: BooleanConstructor;
|
|
748
787
|
default: boolean;
|
|
749
788
|
};
|
|
@@ -771,6 +810,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
771
810
|
type: NumberConstructor;
|
|
772
811
|
default: null;
|
|
773
812
|
};
|
|
813
|
+
maxlengthLabel: {
|
|
814
|
+
type: StringConstructor;
|
|
815
|
+
default: string;
|
|
816
|
+
};
|
|
774
817
|
debounce: {
|
|
775
818
|
type: NumberConstructor;
|
|
776
819
|
default: undefined;
|
|
@@ -790,12 +833,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
790
833
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
791
834
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
792
835
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
836
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
793
837
|
focus: () => void;
|
|
794
838
|
click: () => void;
|
|
795
839
|
onFocus: () => void;
|
|
796
840
|
onBlur: () => void;
|
|
797
841
|
iconClicked: ($event: Event) => void;
|
|
798
|
-
changeValue: (event:
|
|
842
|
+
changeValue: (event: InputEvent) => void;
|
|
799
843
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
800
844
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], import("vue").PublicProps, {
|
|
801
845
|
disabled: boolean;
|
|
@@ -810,13 +854,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
810
854
|
inputmode: import("../../../neon").NeonInputMode;
|
|
811
855
|
modelValue: string;
|
|
812
856
|
state: import("../../../neon").NeonState;
|
|
813
|
-
autocomplete:
|
|
857
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
814
858
|
rows: number;
|
|
815
859
|
iconReadonly: boolean;
|
|
816
860
|
hideIcon: boolean;
|
|
817
861
|
stateHighlight: boolean;
|
|
818
862
|
stateIcon: boolean;
|
|
819
863
|
maxlength: number;
|
|
864
|
+
maxlengthLabel: string;
|
|
820
865
|
}, true, {}, {}, {
|
|
821
866
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
822
867
|
name: {
|
|
@@ -910,8 +955,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
910
955
|
default: import("../../../neon").NeonInputMode;
|
|
911
956
|
};
|
|
912
957
|
autocomplete: {
|
|
913
|
-
type:
|
|
914
|
-
default: string;
|
|
958
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
959
|
+
default: string; /**
|
|
960
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
961
|
+
* multiple = true.
|
|
962
|
+
*/
|
|
915
963
|
};
|
|
916
964
|
state: {
|
|
917
965
|
type: () => import("../../../neon").NeonState;
|
|
@@ -925,7 +973,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
925
973
|
type: StringConstructor;
|
|
926
974
|
default: null;
|
|
927
975
|
};
|
|
976
|
+
/**
|
|
977
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
978
|
+
*/
|
|
928
979
|
iconReadonly: {
|
|
980
|
+
/**
|
|
981
|
+
* The color of the select.
|
|
982
|
+
*/
|
|
929
983
|
type: BooleanConstructor;
|
|
930
984
|
default: boolean;
|
|
931
985
|
};
|
|
@@ -953,6 +1007,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
953
1007
|
type: NumberConstructor;
|
|
954
1008
|
default: null;
|
|
955
1009
|
};
|
|
1010
|
+
maxlengthLabel: {
|
|
1011
|
+
type: StringConstructor;
|
|
1012
|
+
default: string;
|
|
1013
|
+
};
|
|
956
1014
|
debounce: {
|
|
957
1015
|
type: NumberConstructor;
|
|
958
1016
|
default: undefined;
|
|
@@ -972,12 +1030,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
972
1030
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
973
1031
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
974
1032
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
1033
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
975
1034
|
focus: () => void;
|
|
976
1035
|
click: () => void;
|
|
977
1036
|
onFocus: () => void;
|
|
978
1037
|
onBlur: () => void;
|
|
979
1038
|
iconClicked: ($event: Event) => void;
|
|
980
|
-
changeValue: (event:
|
|
1039
|
+
changeValue: (event: InputEvent) => void;
|
|
981
1040
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
982
1041
|
}, {}, {}, {}, {
|
|
983
1042
|
disabled: boolean;
|
|
@@ -992,13 +1051,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
992
1051
|
inputmode: import("../../../neon").NeonInputMode;
|
|
993
1052
|
modelValue: string;
|
|
994
1053
|
state: import("../../../neon").NeonState;
|
|
995
|
-
autocomplete:
|
|
1054
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
996
1055
|
rows: number;
|
|
997
1056
|
iconReadonly: boolean;
|
|
998
1057
|
hideIcon: boolean;
|
|
999
1058
|
stateHighlight: boolean;
|
|
1000
1059
|
stateIcon: boolean;
|
|
1001
1060
|
maxlength: number;
|
|
1061
|
+
maxlengthLabel: string;
|
|
1002
1062
|
}> | null>;
|
|
1003
1063
|
files: import("vue").Ref<{
|
|
1004
1064
|
readonly lastModified: number;
|
|
@@ -1555,8 +1615,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1555
1615
|
default: import("../../../neon").NeonInputMode;
|
|
1556
1616
|
};
|
|
1557
1617
|
autocomplete: {
|
|
1558
|
-
type:
|
|
1559
|
-
default: string;
|
|
1618
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
1619
|
+
default: string; /**
|
|
1620
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
1621
|
+
* multiple = true.
|
|
1622
|
+
*/
|
|
1560
1623
|
};
|
|
1561
1624
|
state: {
|
|
1562
1625
|
type: () => import("../../../neon").NeonState;
|
|
@@ -1570,7 +1633,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1570
1633
|
type: StringConstructor;
|
|
1571
1634
|
default: null;
|
|
1572
1635
|
};
|
|
1636
|
+
/**
|
|
1637
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
1638
|
+
*/
|
|
1573
1639
|
iconReadonly: {
|
|
1640
|
+
/**
|
|
1641
|
+
* The color of the select.
|
|
1642
|
+
*/
|
|
1574
1643
|
type: BooleanConstructor;
|
|
1575
1644
|
default: boolean;
|
|
1576
1645
|
};
|
|
@@ -1598,6 +1667,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1598
1667
|
type: NumberConstructor;
|
|
1599
1668
|
default: null;
|
|
1600
1669
|
};
|
|
1670
|
+
maxlengthLabel: {
|
|
1671
|
+
type: StringConstructor;
|
|
1672
|
+
default: string;
|
|
1673
|
+
};
|
|
1601
1674
|
debounce: {
|
|
1602
1675
|
type: NumberConstructor;
|
|
1603
1676
|
default: undefined;
|
|
@@ -1612,12 +1685,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1612
1685
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
1613
1686
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
1614
1687
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
1688
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
1615
1689
|
focus: () => void;
|
|
1616
1690
|
click: () => void;
|
|
1617
1691
|
onFocus: () => void;
|
|
1618
1692
|
onBlur: () => void;
|
|
1619
1693
|
iconClicked: ($event: Event) => void;
|
|
1620
|
-
changeValue: (event:
|
|
1694
|
+
changeValue: (event: InputEvent) => void;
|
|
1621
1695
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
1622
1696
|
}, {}, {}, {}, 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<{
|
|
1623
1697
|
id: {
|
|
@@ -1651,8 +1725,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1651
1725
|
default: import("../../../neon").NeonInputMode;
|
|
1652
1726
|
};
|
|
1653
1727
|
autocomplete: {
|
|
1654
|
-
type:
|
|
1655
|
-
default: string;
|
|
1728
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
1729
|
+
default: string; /**
|
|
1730
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
1731
|
+
* multiple = true.
|
|
1732
|
+
*/
|
|
1656
1733
|
};
|
|
1657
1734
|
state: {
|
|
1658
1735
|
type: () => import("../../../neon").NeonState;
|
|
@@ -1666,7 +1743,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1666
1743
|
type: StringConstructor;
|
|
1667
1744
|
default: null;
|
|
1668
1745
|
};
|
|
1746
|
+
/**
|
|
1747
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
1748
|
+
*/
|
|
1669
1749
|
iconReadonly: {
|
|
1750
|
+
/**
|
|
1751
|
+
* The color of the select.
|
|
1752
|
+
*/
|
|
1670
1753
|
type: BooleanConstructor;
|
|
1671
1754
|
default: boolean;
|
|
1672
1755
|
};
|
|
@@ -1694,6 +1777,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1694
1777
|
type: NumberConstructor;
|
|
1695
1778
|
default: null;
|
|
1696
1779
|
};
|
|
1780
|
+
maxlengthLabel: {
|
|
1781
|
+
type: StringConstructor;
|
|
1782
|
+
default: string;
|
|
1783
|
+
};
|
|
1697
1784
|
debounce: {
|
|
1698
1785
|
type: NumberConstructor;
|
|
1699
1786
|
default: undefined;
|
|
@@ -1716,13 +1803,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1716
1803
|
inputmode: import("../../../neon").NeonInputMode;
|
|
1717
1804
|
modelValue: string;
|
|
1718
1805
|
state: import("../../../neon").NeonState;
|
|
1719
|
-
autocomplete:
|
|
1806
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
1720
1807
|
rows: number;
|
|
1721
1808
|
iconReadonly: boolean;
|
|
1722
1809
|
hideIcon: boolean;
|
|
1723
1810
|
stateHighlight: boolean;
|
|
1724
1811
|
stateIcon: boolean;
|
|
1725
1812
|
maxlength: number;
|
|
1813
|
+
maxlengthLabel: string;
|
|
1726
1814
|
}, {}, {
|
|
1727
1815
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1728
1816
|
name: {
|
|
@@ -2823,8 +2911,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2823
2911
|
default: import("../../../neon").NeonInputMode;
|
|
2824
2912
|
};
|
|
2825
2913
|
autocomplete: {
|
|
2826
|
-
type:
|
|
2827
|
-
default: string;
|
|
2914
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
2915
|
+
default: string; /**
|
|
2916
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
2917
|
+
* multiple = true.
|
|
2918
|
+
*/
|
|
2828
2919
|
};
|
|
2829
2920
|
state: {
|
|
2830
2921
|
type: () => import("../../../neon").NeonState;
|
|
@@ -2838,7 +2929,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2838
2929
|
type: StringConstructor;
|
|
2839
2930
|
default: null;
|
|
2840
2931
|
};
|
|
2932
|
+
/**
|
|
2933
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
2934
|
+
*/
|
|
2841
2935
|
iconReadonly: {
|
|
2936
|
+
/**
|
|
2937
|
+
* The color of the select.
|
|
2938
|
+
*/
|
|
2842
2939
|
type: BooleanConstructor;
|
|
2843
2940
|
default: boolean;
|
|
2844
2941
|
};
|
|
@@ -2866,6 +2963,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2866
2963
|
type: NumberConstructor;
|
|
2867
2964
|
default: null;
|
|
2868
2965
|
};
|
|
2966
|
+
maxlengthLabel: {
|
|
2967
|
+
type: StringConstructor;
|
|
2968
|
+
default: string;
|
|
2969
|
+
};
|
|
2869
2970
|
debounce: {
|
|
2870
2971
|
type: NumberConstructor;
|
|
2871
2972
|
default: undefined;
|
|
@@ -2885,12 +2986,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2885
2986
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
2886
2987
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
2887
2988
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
2989
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
2888
2990
|
focus: () => void;
|
|
2889
2991
|
click: () => void;
|
|
2890
2992
|
onFocus: () => void;
|
|
2891
2993
|
onBlur: () => void;
|
|
2892
2994
|
iconClicked: ($event: Event) => void;
|
|
2893
|
-
changeValue: (event:
|
|
2995
|
+
changeValue: (event: InputEvent) => void;
|
|
2894
2996
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
2895
2997
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], import("vue").PublicProps, {
|
|
2896
2998
|
disabled: boolean;
|
|
@@ -2905,13 +3007,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2905
3007
|
inputmode: import("../../../neon").NeonInputMode;
|
|
2906
3008
|
modelValue: string;
|
|
2907
3009
|
state: import("../../../neon").NeonState;
|
|
2908
|
-
autocomplete:
|
|
3010
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
2909
3011
|
rows: number;
|
|
2910
3012
|
iconReadonly: boolean;
|
|
2911
3013
|
hideIcon: boolean;
|
|
2912
3014
|
stateHighlight: boolean;
|
|
2913
3015
|
stateIcon: boolean;
|
|
2914
3016
|
maxlength: number;
|
|
3017
|
+
maxlengthLabel: string;
|
|
2915
3018
|
}, true, {}, {}, {
|
|
2916
3019
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2917
3020
|
name: {
|
|
@@ -3005,8 +3108,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3005
3108
|
default: import("../../../neon").NeonInputMode;
|
|
3006
3109
|
};
|
|
3007
3110
|
autocomplete: {
|
|
3008
|
-
type:
|
|
3009
|
-
default: string;
|
|
3111
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
3112
|
+
default: string; /**
|
|
3113
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
3114
|
+
* multiple = true.
|
|
3115
|
+
*/
|
|
3010
3116
|
};
|
|
3011
3117
|
state: {
|
|
3012
3118
|
type: () => import("../../../neon").NeonState;
|
|
@@ -3020,7 +3126,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3020
3126
|
type: StringConstructor;
|
|
3021
3127
|
default: null;
|
|
3022
3128
|
};
|
|
3129
|
+
/**
|
|
3130
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
3131
|
+
*/
|
|
3023
3132
|
iconReadonly: {
|
|
3133
|
+
/**
|
|
3134
|
+
* The color of the select.
|
|
3135
|
+
*/
|
|
3024
3136
|
type: BooleanConstructor;
|
|
3025
3137
|
default: boolean;
|
|
3026
3138
|
};
|
|
@@ -3048,6 +3160,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3048
3160
|
type: NumberConstructor;
|
|
3049
3161
|
default: null;
|
|
3050
3162
|
};
|
|
3163
|
+
maxlengthLabel: {
|
|
3164
|
+
type: StringConstructor;
|
|
3165
|
+
default: string;
|
|
3166
|
+
};
|
|
3051
3167
|
debounce: {
|
|
3052
3168
|
type: NumberConstructor;
|
|
3053
3169
|
default: undefined;
|
|
@@ -3067,12 +3183,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3067
3183
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
3068
3184
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
3069
3185
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
3186
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
3070
3187
|
focus: () => void;
|
|
3071
3188
|
click: () => void;
|
|
3072
3189
|
onFocus: () => void;
|
|
3073
3190
|
onBlur: () => void;
|
|
3074
3191
|
iconClicked: ($event: Event) => void;
|
|
3075
|
-
changeValue: (event:
|
|
3192
|
+
changeValue: (event: InputEvent) => void;
|
|
3076
3193
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
3077
3194
|
}, {}, {}, {}, {
|
|
3078
3195
|
disabled: boolean;
|
|
@@ -3087,13 +3204,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3087
3204
|
inputmode: import("../../../neon").NeonInputMode;
|
|
3088
3205
|
modelValue: string;
|
|
3089
3206
|
state: import("../../../neon").NeonState;
|
|
3090
|
-
autocomplete:
|
|
3207
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
3091
3208
|
rows: number;
|
|
3092
3209
|
iconReadonly: boolean;
|
|
3093
3210
|
hideIcon: boolean;
|
|
3094
3211
|
stateHighlight: boolean;
|
|
3095
3212
|
stateIcon: boolean;
|
|
3096
3213
|
maxlength: number;
|
|
3214
|
+
maxlengthLabel: string;
|
|
3097
3215
|
}> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
3098
3216
|
id: {
|
|
3099
3217
|
type: StringConstructor;
|
|
@@ -3126,8 +3244,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3126
3244
|
default: import("../../../neon").NeonInputMode;
|
|
3127
3245
|
};
|
|
3128
3246
|
autocomplete: {
|
|
3129
|
-
type:
|
|
3130
|
-
default: string;
|
|
3247
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
3248
|
+
default: string; /**
|
|
3249
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
3250
|
+
* multiple = true.
|
|
3251
|
+
*/
|
|
3131
3252
|
};
|
|
3132
3253
|
state: {
|
|
3133
3254
|
type: () => import("../../../neon").NeonState;
|
|
@@ -3141,7 +3262,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3141
3262
|
type: StringConstructor;
|
|
3142
3263
|
default: null;
|
|
3143
3264
|
};
|
|
3265
|
+
/**
|
|
3266
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
3267
|
+
*/
|
|
3144
3268
|
iconReadonly: {
|
|
3269
|
+
/**
|
|
3270
|
+
* The color of the select.
|
|
3271
|
+
*/
|
|
3145
3272
|
type: BooleanConstructor;
|
|
3146
3273
|
default: boolean;
|
|
3147
3274
|
};
|
|
@@ -3169,6 +3296,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3169
3296
|
type: NumberConstructor;
|
|
3170
3297
|
default: null;
|
|
3171
3298
|
};
|
|
3299
|
+
maxlengthLabel: {
|
|
3300
|
+
type: StringConstructor;
|
|
3301
|
+
default: string;
|
|
3302
|
+
};
|
|
3172
3303
|
debounce: {
|
|
3173
3304
|
type: NumberConstructor;
|
|
3174
3305
|
default: undefined;
|
|
@@ -3188,12 +3319,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3188
3319
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
3189
3320
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
3190
3321
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
3322
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
3191
3323
|
focus: () => void;
|
|
3192
3324
|
click: () => void;
|
|
3193
3325
|
onFocus: () => void;
|
|
3194
3326
|
onBlur: () => void;
|
|
3195
3327
|
iconClicked: ($event: Event) => void;
|
|
3196
|
-
changeValue: (event:
|
|
3328
|
+
changeValue: (event: InputEvent) => void;
|
|
3197
3329
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
3198
3330
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], import("vue").PublicProps, {
|
|
3199
3331
|
disabled: boolean;
|
|
@@ -3208,13 +3340,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3208
3340
|
inputmode: import("../../../neon").NeonInputMode;
|
|
3209
3341
|
modelValue: string;
|
|
3210
3342
|
state: import("../../../neon").NeonState;
|
|
3211
|
-
autocomplete:
|
|
3343
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
3212
3344
|
rows: number;
|
|
3213
3345
|
iconReadonly: boolean;
|
|
3214
3346
|
hideIcon: boolean;
|
|
3215
3347
|
stateHighlight: boolean;
|
|
3216
3348
|
stateIcon: boolean;
|
|
3217
3349
|
maxlength: number;
|
|
3350
|
+
maxlengthLabel: string;
|
|
3218
3351
|
}, true, {}, {}, {
|
|
3219
3352
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3220
3353
|
name: {
|
|
@@ -3308,8 +3441,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3308
3441
|
default: import("../../../neon").NeonInputMode;
|
|
3309
3442
|
};
|
|
3310
3443
|
autocomplete: {
|
|
3311
|
-
type:
|
|
3312
|
-
default: string;
|
|
3444
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
3445
|
+
default: string; /**
|
|
3446
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
3447
|
+
* multiple = true.
|
|
3448
|
+
*/
|
|
3313
3449
|
};
|
|
3314
3450
|
state: {
|
|
3315
3451
|
type: () => import("../../../neon").NeonState;
|
|
@@ -3323,7 +3459,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3323
3459
|
type: StringConstructor;
|
|
3324
3460
|
default: null;
|
|
3325
3461
|
};
|
|
3462
|
+
/**
|
|
3463
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
3464
|
+
*/
|
|
3326
3465
|
iconReadonly: {
|
|
3466
|
+
/**
|
|
3467
|
+
* The color of the select.
|
|
3468
|
+
*/
|
|
3327
3469
|
type: BooleanConstructor;
|
|
3328
3470
|
default: boolean;
|
|
3329
3471
|
};
|
|
@@ -3351,6 +3493,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3351
3493
|
type: NumberConstructor;
|
|
3352
3494
|
default: null;
|
|
3353
3495
|
};
|
|
3496
|
+
maxlengthLabel: {
|
|
3497
|
+
type: StringConstructor;
|
|
3498
|
+
default: string;
|
|
3499
|
+
};
|
|
3354
3500
|
debounce: {
|
|
3355
3501
|
type: NumberConstructor;
|
|
3356
3502
|
default: undefined;
|
|
@@ -3370,12 +3516,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3370
3516
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
3371
3517
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
3372
3518
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
3519
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
3373
3520
|
focus: () => void;
|
|
3374
3521
|
click: () => void;
|
|
3375
3522
|
onFocus: () => void;
|
|
3376
3523
|
onBlur: () => void;
|
|
3377
3524
|
iconClicked: ($event: Event) => void;
|
|
3378
|
-
changeValue: (event:
|
|
3525
|
+
changeValue: (event: InputEvent) => void;
|
|
3379
3526
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
3380
3527
|
}, {}, {}, {}, {
|
|
3381
3528
|
disabled: boolean;
|
|
@@ -3390,13 +3537,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3390
3537
|
inputmode: import("../../../neon").NeonInputMode;
|
|
3391
3538
|
modelValue: string;
|
|
3392
3539
|
state: import("../../../neon").NeonState;
|
|
3393
|
-
autocomplete:
|
|
3540
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
3394
3541
|
rows: number;
|
|
3395
3542
|
iconReadonly: boolean;
|
|
3396
3543
|
hideIcon: boolean;
|
|
3397
3544
|
stateHighlight: boolean;
|
|
3398
3545
|
stateIcon: boolean;
|
|
3399
3546
|
maxlength: number;
|
|
3547
|
+
maxlengthLabel: string;
|
|
3400
3548
|
}> | null>;
|
|
3401
3549
|
files: import("vue").Ref<{
|
|
3402
3550
|
readonly lastModified: number;
|
|
@@ -3953,8 +4101,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3953
4101
|
default: import("../../../neon").NeonInputMode;
|
|
3954
4102
|
};
|
|
3955
4103
|
autocomplete: {
|
|
3956
|
-
type:
|
|
3957
|
-
default: string;
|
|
4104
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
4105
|
+
default: string; /**
|
|
4106
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
4107
|
+
* multiple = true.
|
|
4108
|
+
*/
|
|
3958
4109
|
};
|
|
3959
4110
|
state: {
|
|
3960
4111
|
type: () => import("../../../neon").NeonState;
|
|
@@ -3968,7 +4119,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3968
4119
|
type: StringConstructor;
|
|
3969
4120
|
default: null;
|
|
3970
4121
|
};
|
|
4122
|
+
/**
|
|
4123
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
4124
|
+
*/
|
|
3971
4125
|
iconReadonly: {
|
|
4126
|
+
/**
|
|
4127
|
+
* The color of the select.
|
|
4128
|
+
*/
|
|
3972
4129
|
type: BooleanConstructor;
|
|
3973
4130
|
default: boolean;
|
|
3974
4131
|
};
|
|
@@ -3996,6 +4153,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3996
4153
|
type: NumberConstructor;
|
|
3997
4154
|
default: null;
|
|
3998
4155
|
};
|
|
4156
|
+
maxlengthLabel: {
|
|
4157
|
+
type: StringConstructor;
|
|
4158
|
+
default: string;
|
|
4159
|
+
};
|
|
3999
4160
|
debounce: {
|
|
4000
4161
|
type: NumberConstructor;
|
|
4001
4162
|
default: undefined;
|
|
@@ -4010,12 +4171,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4010
4171
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
4011
4172
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
4012
4173
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
4174
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
4013
4175
|
focus: () => void;
|
|
4014
4176
|
click: () => void;
|
|
4015
4177
|
onFocus: () => void;
|
|
4016
4178
|
onBlur: () => void;
|
|
4017
4179
|
iconClicked: ($event: Event) => void;
|
|
4018
|
-
changeValue: (event:
|
|
4180
|
+
changeValue: (event: InputEvent) => void;
|
|
4019
4181
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
4020
4182
|
}, {}, {}, {}, 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<{
|
|
4021
4183
|
id: {
|
|
@@ -4049,8 +4211,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4049
4211
|
default: import("../../../neon").NeonInputMode;
|
|
4050
4212
|
};
|
|
4051
4213
|
autocomplete: {
|
|
4052
|
-
type:
|
|
4053
|
-
default: string;
|
|
4214
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
4215
|
+
default: string; /**
|
|
4216
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
4217
|
+
* multiple = true.
|
|
4218
|
+
*/
|
|
4054
4219
|
};
|
|
4055
4220
|
state: {
|
|
4056
4221
|
type: () => import("../../../neon").NeonState;
|
|
@@ -4064,7 +4229,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4064
4229
|
type: StringConstructor;
|
|
4065
4230
|
default: null;
|
|
4066
4231
|
};
|
|
4232
|
+
/**
|
|
4233
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
4234
|
+
*/
|
|
4067
4235
|
iconReadonly: {
|
|
4236
|
+
/**
|
|
4237
|
+
* The color of the select.
|
|
4238
|
+
*/
|
|
4068
4239
|
type: BooleanConstructor;
|
|
4069
4240
|
default: boolean;
|
|
4070
4241
|
};
|
|
@@ -4092,6 +4263,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4092
4263
|
type: NumberConstructor;
|
|
4093
4264
|
default: null;
|
|
4094
4265
|
};
|
|
4266
|
+
maxlengthLabel: {
|
|
4267
|
+
type: StringConstructor;
|
|
4268
|
+
default: string;
|
|
4269
|
+
};
|
|
4095
4270
|
debounce: {
|
|
4096
4271
|
type: NumberConstructor;
|
|
4097
4272
|
default: undefined;
|
|
@@ -4114,13 +4289,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4114
4289
|
inputmode: import("../../../neon").NeonInputMode;
|
|
4115
4290
|
modelValue: string;
|
|
4116
4291
|
state: import("../../../neon").NeonState;
|
|
4117
|
-
autocomplete:
|
|
4292
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
4118
4293
|
rows: number;
|
|
4119
4294
|
iconReadonly: boolean;
|
|
4120
4295
|
hideIcon: boolean;
|
|
4121
4296
|
stateHighlight: boolean;
|
|
4122
4297
|
stateIcon: boolean;
|
|
4123
4298
|
maxlength: number;
|
|
4299
|
+
maxlengthLabel: string;
|
|
4124
4300
|
}, {}, {
|
|
4125
4301
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4126
4302
|
name: {
|
|
@@ -5410,8 +5586,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5410
5586
|
default: import("../../../neon").NeonInputMode;
|
|
5411
5587
|
};
|
|
5412
5588
|
autocomplete: {
|
|
5413
|
-
type:
|
|
5414
|
-
default: string;
|
|
5589
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
5590
|
+
default: string; /**
|
|
5591
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
5592
|
+
* multiple = true.
|
|
5593
|
+
*/
|
|
5415
5594
|
};
|
|
5416
5595
|
state: {
|
|
5417
5596
|
type: () => import("../../../neon").NeonState;
|
|
@@ -5425,7 +5604,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5425
5604
|
type: StringConstructor;
|
|
5426
5605
|
default: null;
|
|
5427
5606
|
};
|
|
5607
|
+
/**
|
|
5608
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
5609
|
+
*/
|
|
5428
5610
|
iconReadonly: {
|
|
5611
|
+
/**
|
|
5612
|
+
* The color of the select.
|
|
5613
|
+
*/
|
|
5429
5614
|
type: BooleanConstructor;
|
|
5430
5615
|
default: boolean;
|
|
5431
5616
|
};
|
|
@@ -5453,6 +5638,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5453
5638
|
type: NumberConstructor;
|
|
5454
5639
|
default: null;
|
|
5455
5640
|
};
|
|
5641
|
+
maxlengthLabel: {
|
|
5642
|
+
type: StringConstructor;
|
|
5643
|
+
default: string;
|
|
5644
|
+
};
|
|
5456
5645
|
debounce: {
|
|
5457
5646
|
type: NumberConstructor;
|
|
5458
5647
|
default: undefined;
|
|
@@ -5472,12 +5661,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5472
5661
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
5473
5662
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
5474
5663
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
5664
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
5475
5665
|
focus: () => void;
|
|
5476
5666
|
click: () => void;
|
|
5477
5667
|
onFocus: () => void;
|
|
5478
5668
|
onBlur: () => void;
|
|
5479
5669
|
iconClicked: ($event: Event) => void;
|
|
5480
|
-
changeValue: (event:
|
|
5670
|
+
changeValue: (event: InputEvent) => void;
|
|
5481
5671
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
5482
5672
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], import("vue").PublicProps, {
|
|
5483
5673
|
disabled: boolean;
|
|
@@ -5492,13 +5682,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5492
5682
|
inputmode: import("../../../neon").NeonInputMode;
|
|
5493
5683
|
modelValue: string;
|
|
5494
5684
|
state: import("../../../neon").NeonState;
|
|
5495
|
-
autocomplete:
|
|
5685
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
5496
5686
|
rows: number;
|
|
5497
5687
|
iconReadonly: boolean;
|
|
5498
5688
|
hideIcon: boolean;
|
|
5499
5689
|
stateHighlight: boolean;
|
|
5500
5690
|
stateIcon: boolean;
|
|
5501
5691
|
maxlength: number;
|
|
5692
|
+
maxlengthLabel: string;
|
|
5502
5693
|
}, true, {}, {}, {
|
|
5503
5694
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5504
5695
|
name: {
|
|
@@ -5592,8 +5783,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5592
5783
|
default: import("../../../neon").NeonInputMode;
|
|
5593
5784
|
};
|
|
5594
5785
|
autocomplete: {
|
|
5595
|
-
type:
|
|
5596
|
-
default: string;
|
|
5786
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
5787
|
+
default: string; /**
|
|
5788
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
5789
|
+
* multiple = true.
|
|
5790
|
+
*/
|
|
5597
5791
|
};
|
|
5598
5792
|
state: {
|
|
5599
5793
|
type: () => import("../../../neon").NeonState;
|
|
@@ -5607,7 +5801,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5607
5801
|
type: StringConstructor;
|
|
5608
5802
|
default: null;
|
|
5609
5803
|
};
|
|
5804
|
+
/**
|
|
5805
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
5806
|
+
*/
|
|
5610
5807
|
iconReadonly: {
|
|
5808
|
+
/**
|
|
5809
|
+
* The color of the select.
|
|
5810
|
+
*/
|
|
5611
5811
|
type: BooleanConstructor;
|
|
5612
5812
|
default: boolean;
|
|
5613
5813
|
};
|
|
@@ -5635,6 +5835,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5635
5835
|
type: NumberConstructor;
|
|
5636
5836
|
default: null;
|
|
5637
5837
|
};
|
|
5838
|
+
maxlengthLabel: {
|
|
5839
|
+
type: StringConstructor;
|
|
5840
|
+
default: string;
|
|
5841
|
+
};
|
|
5638
5842
|
debounce: {
|
|
5639
5843
|
type: NumberConstructor;
|
|
5640
5844
|
default: undefined;
|
|
@@ -5654,12 +5858,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5654
5858
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
5655
5859
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
5656
5860
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
5861
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
5657
5862
|
focus: () => void;
|
|
5658
5863
|
click: () => void;
|
|
5659
5864
|
onFocus: () => void;
|
|
5660
5865
|
onBlur: () => void;
|
|
5661
5866
|
iconClicked: ($event: Event) => void;
|
|
5662
|
-
changeValue: (event:
|
|
5867
|
+
changeValue: (event: InputEvent) => void;
|
|
5663
5868
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
5664
5869
|
}, {}, {}, {}, {
|
|
5665
5870
|
disabled: boolean;
|
|
@@ -5674,13 +5879,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5674
5879
|
inputmode: import("../../../neon").NeonInputMode;
|
|
5675
5880
|
modelValue: string;
|
|
5676
5881
|
state: import("../../../neon").NeonState;
|
|
5677
|
-
autocomplete:
|
|
5882
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
5678
5883
|
rows: number;
|
|
5679
5884
|
iconReadonly: boolean;
|
|
5680
5885
|
hideIcon: boolean;
|
|
5681
5886
|
stateHighlight: boolean;
|
|
5682
5887
|
stateIcon: boolean;
|
|
5683
5888
|
maxlength: number;
|
|
5889
|
+
maxlengthLabel: string;
|
|
5684
5890
|
}> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
5685
5891
|
id: {
|
|
5686
5892
|
type: StringConstructor;
|
|
@@ -5713,8 +5919,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5713
5919
|
default: import("../../../neon").NeonInputMode;
|
|
5714
5920
|
};
|
|
5715
5921
|
autocomplete: {
|
|
5716
|
-
type:
|
|
5717
|
-
default: string;
|
|
5922
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
5923
|
+
default: string; /**
|
|
5924
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
5925
|
+
* multiple = true.
|
|
5926
|
+
*/
|
|
5718
5927
|
};
|
|
5719
5928
|
state: {
|
|
5720
5929
|
type: () => import("../../../neon").NeonState;
|
|
@@ -5728,7 +5937,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5728
5937
|
type: StringConstructor;
|
|
5729
5938
|
default: null;
|
|
5730
5939
|
};
|
|
5940
|
+
/**
|
|
5941
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
5942
|
+
*/
|
|
5731
5943
|
iconReadonly: {
|
|
5944
|
+
/**
|
|
5945
|
+
* The color of the select.
|
|
5946
|
+
*/
|
|
5732
5947
|
type: BooleanConstructor;
|
|
5733
5948
|
default: boolean;
|
|
5734
5949
|
};
|
|
@@ -5756,6 +5971,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5756
5971
|
type: NumberConstructor;
|
|
5757
5972
|
default: null;
|
|
5758
5973
|
};
|
|
5974
|
+
maxlengthLabel: {
|
|
5975
|
+
type: StringConstructor;
|
|
5976
|
+
default: string;
|
|
5977
|
+
};
|
|
5759
5978
|
debounce: {
|
|
5760
5979
|
type: NumberConstructor;
|
|
5761
5980
|
default: undefined;
|
|
@@ -5775,12 +5994,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5775
5994
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
5776
5995
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
5777
5996
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
5997
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
5778
5998
|
focus: () => void;
|
|
5779
5999
|
click: () => void;
|
|
5780
6000
|
onFocus: () => void;
|
|
5781
6001
|
onBlur: () => void;
|
|
5782
6002
|
iconClicked: ($event: Event) => void;
|
|
5783
|
-
changeValue: (event:
|
|
6003
|
+
changeValue: (event: InputEvent) => void;
|
|
5784
6004
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
5785
6005
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], import("vue").PublicProps, {
|
|
5786
6006
|
disabled: boolean;
|
|
@@ -5795,13 +6015,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5795
6015
|
inputmode: import("../../../neon").NeonInputMode;
|
|
5796
6016
|
modelValue: string;
|
|
5797
6017
|
state: import("../../../neon").NeonState;
|
|
5798
|
-
autocomplete:
|
|
6018
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
5799
6019
|
rows: number;
|
|
5800
6020
|
iconReadonly: boolean;
|
|
5801
6021
|
hideIcon: boolean;
|
|
5802
6022
|
stateHighlight: boolean;
|
|
5803
6023
|
stateIcon: boolean;
|
|
5804
6024
|
maxlength: number;
|
|
6025
|
+
maxlengthLabel: string;
|
|
5805
6026
|
}, true, {}, {}, {
|
|
5806
6027
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5807
6028
|
name: {
|
|
@@ -5895,8 +6116,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5895
6116
|
default: import("../../../neon").NeonInputMode;
|
|
5896
6117
|
};
|
|
5897
6118
|
autocomplete: {
|
|
5898
|
-
type:
|
|
5899
|
-
default: string;
|
|
6119
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
6120
|
+
default: string; /**
|
|
6121
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
6122
|
+
* multiple = true.
|
|
6123
|
+
*/
|
|
5900
6124
|
};
|
|
5901
6125
|
state: {
|
|
5902
6126
|
type: () => import("../../../neon").NeonState;
|
|
@@ -5910,7 +6134,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5910
6134
|
type: StringConstructor;
|
|
5911
6135
|
default: null;
|
|
5912
6136
|
};
|
|
6137
|
+
/**
|
|
6138
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
6139
|
+
*/
|
|
5913
6140
|
iconReadonly: {
|
|
6141
|
+
/**
|
|
6142
|
+
* The color of the select.
|
|
6143
|
+
*/
|
|
5914
6144
|
type: BooleanConstructor;
|
|
5915
6145
|
default: boolean;
|
|
5916
6146
|
};
|
|
@@ -5938,6 +6168,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5938
6168
|
type: NumberConstructor;
|
|
5939
6169
|
default: null;
|
|
5940
6170
|
};
|
|
6171
|
+
maxlengthLabel: {
|
|
6172
|
+
type: StringConstructor;
|
|
6173
|
+
default: string;
|
|
6174
|
+
};
|
|
5941
6175
|
debounce: {
|
|
5942
6176
|
type: NumberConstructor;
|
|
5943
6177
|
default: undefined;
|
|
@@ -5957,12 +6191,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5957
6191
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
5958
6192
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
5959
6193
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
6194
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
5960
6195
|
focus: () => void;
|
|
5961
6196
|
click: () => void;
|
|
5962
6197
|
onFocus: () => void;
|
|
5963
6198
|
onBlur: () => void;
|
|
5964
6199
|
iconClicked: ($event: Event) => void;
|
|
5965
|
-
changeValue: (event:
|
|
6200
|
+
changeValue: (event: InputEvent) => void;
|
|
5966
6201
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
5967
6202
|
}, {}, {}, {}, {
|
|
5968
6203
|
disabled: boolean;
|
|
@@ -5977,13 +6212,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5977
6212
|
inputmode: import("../../../neon").NeonInputMode;
|
|
5978
6213
|
modelValue: string;
|
|
5979
6214
|
state: import("../../../neon").NeonState;
|
|
5980
|
-
autocomplete:
|
|
6215
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
5981
6216
|
rows: number;
|
|
5982
6217
|
iconReadonly: boolean;
|
|
5983
6218
|
hideIcon: boolean;
|
|
5984
6219
|
stateHighlight: boolean;
|
|
5985
6220
|
stateIcon: boolean;
|
|
5986
6221
|
maxlength: number;
|
|
6222
|
+
maxlengthLabel: string;
|
|
5987
6223
|
}> | null>;
|
|
5988
6224
|
files: import("vue").Ref<{
|
|
5989
6225
|
readonly lastModified: number;
|
|
@@ -6540,8 +6776,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6540
6776
|
default: import("../../../neon").NeonInputMode;
|
|
6541
6777
|
};
|
|
6542
6778
|
autocomplete: {
|
|
6543
|
-
type:
|
|
6544
|
-
default: string;
|
|
6779
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
6780
|
+
default: string; /**
|
|
6781
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
6782
|
+
* multiple = true.
|
|
6783
|
+
*/
|
|
6545
6784
|
};
|
|
6546
6785
|
state: {
|
|
6547
6786
|
type: () => import("../../../neon").NeonState;
|
|
@@ -6555,7 +6794,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6555
6794
|
type: StringConstructor;
|
|
6556
6795
|
default: null;
|
|
6557
6796
|
};
|
|
6797
|
+
/**
|
|
6798
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
6799
|
+
*/
|
|
6558
6800
|
iconReadonly: {
|
|
6801
|
+
/**
|
|
6802
|
+
* The color of the select.
|
|
6803
|
+
*/
|
|
6559
6804
|
type: BooleanConstructor;
|
|
6560
6805
|
default: boolean;
|
|
6561
6806
|
};
|
|
@@ -6583,6 +6828,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6583
6828
|
type: NumberConstructor;
|
|
6584
6829
|
default: null;
|
|
6585
6830
|
};
|
|
6831
|
+
maxlengthLabel: {
|
|
6832
|
+
type: StringConstructor;
|
|
6833
|
+
default: string;
|
|
6834
|
+
};
|
|
6586
6835
|
debounce: {
|
|
6587
6836
|
type: NumberConstructor;
|
|
6588
6837
|
default: undefined;
|
|
@@ -6597,12 +6846,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6597
6846
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
6598
6847
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
6599
6848
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
6849
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
6600
6850
|
focus: () => void;
|
|
6601
6851
|
click: () => void;
|
|
6602
6852
|
onFocus: () => void;
|
|
6603
6853
|
onBlur: () => void;
|
|
6604
6854
|
iconClicked: ($event: Event) => void;
|
|
6605
|
-
changeValue: (event:
|
|
6855
|
+
changeValue: (event: InputEvent) => void;
|
|
6606
6856
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
6607
6857
|
}, {}, {}, {}, 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<{
|
|
6608
6858
|
id: {
|
|
@@ -6636,8 +6886,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6636
6886
|
default: import("../../../neon").NeonInputMode;
|
|
6637
6887
|
};
|
|
6638
6888
|
autocomplete: {
|
|
6639
|
-
type:
|
|
6640
|
-
default: string;
|
|
6889
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
6890
|
+
default: string; /**
|
|
6891
|
+
* Either a single string, indicating the key of the selected option or an array of selected keys in the case
|
|
6892
|
+
* multiple = true.
|
|
6893
|
+
*/
|
|
6641
6894
|
};
|
|
6642
6895
|
state: {
|
|
6643
6896
|
type: () => import("../../../neon").NeonState;
|
|
@@ -6651,7 +6904,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6651
6904
|
type: StringConstructor;
|
|
6652
6905
|
default: null;
|
|
6653
6906
|
};
|
|
6907
|
+
/**
|
|
6908
|
+
* The size of the dropdown - Small, Medium or Large.
|
|
6909
|
+
*/
|
|
6654
6910
|
iconReadonly: {
|
|
6911
|
+
/**
|
|
6912
|
+
* The color of the select.
|
|
6913
|
+
*/
|
|
6655
6914
|
type: BooleanConstructor;
|
|
6656
6915
|
default: boolean;
|
|
6657
6916
|
};
|
|
@@ -6679,6 +6938,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6679
6938
|
type: NumberConstructor;
|
|
6680
6939
|
default: null;
|
|
6681
6940
|
};
|
|
6941
|
+
maxlengthLabel: {
|
|
6942
|
+
type: StringConstructor;
|
|
6943
|
+
default: string;
|
|
6944
|
+
};
|
|
6682
6945
|
debounce: {
|
|
6683
6946
|
type: NumberConstructor;
|
|
6684
6947
|
default: undefined;
|
|
@@ -6701,13 +6964,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6701
6964
|
inputmode: import("../../../neon").NeonInputMode;
|
|
6702
6965
|
modelValue: string;
|
|
6703
6966
|
state: import("../../../neon").NeonState;
|
|
6704
|
-
autocomplete:
|
|
6967
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
6705
6968
|
rows: number;
|
|
6706
6969
|
iconReadonly: boolean;
|
|
6707
6970
|
hideIcon: boolean;
|
|
6708
6971
|
stateHighlight: boolean;
|
|
6709
6972
|
stateIcon: boolean;
|
|
6710
6973
|
maxlength: number;
|
|
6974
|
+
maxlengthLabel: string;
|
|
6711
6975
|
}, {}, {
|
|
6712
6976
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6713
6977
|
name: {
|