@aotearoan/neon 23.0.0 → 23.0.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/layout/page-container/NeonPageContainer.cjs.js +2 -0
- package/dist/components/layout/page-container/NeonPageContainer.cjs.js.map +1 -0
- package/dist/components/layout/page-container/NeonPageContainer.es.js +20 -0
- package/dist/components/layout/page-container/NeonPageContainer.es.js.map +1 -0
- package/dist/components/layout/page-container/NeonPageContainer.vue.cjs.js +2 -0
- package/dist/components/layout/page-container/NeonPageContainer.vue.cjs.js.map +1 -0
- package/dist/components/layout/page-container/NeonPageContainer.vue.es.js +23 -0
- package/dist/components/layout/page-container/NeonPageContainer.vue.es.js.map +1 -0
- package/dist/components/navigation/menu/NeonMenu.vue.cjs.js +1 -1
- package/dist/components/navigation/menu/NeonMenu.vue.cjs.js.map +1 -1
- package/dist/components/navigation/menu/NeonMenu.vue.es.js +2 -2
- package/dist/components/navigation/menu/NeonMenu.vue.es.js.map +1 -1
- package/dist/components/navigation/mobile-menu/NeonMobileMenu.vue.cjs.js +1 -1
- package/dist/components/navigation/mobile-menu/NeonMobileMenu.vue.cjs.js.map +1 -1
- package/dist/components/navigation/mobile-menu/NeonMobileMenu.vue.es.js +1 -1
- package/dist/components/navigation/mobile-menu/NeonMobileMenu.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 +62 -69
- package/dist/components/user-input/input/NeonInput.es.js.map +1 -1
- package/dist/neon.cjs.js +1 -1
- package/dist/neon.es.js +145 -143
- package/dist/neon.es.js.map +1 -1
- package/dist/src/components/layout/page-container/NeonPageContainer.d.ts +96 -0
- package/dist/src/components/layout/page-container/NeonPageContainer.vue.d.ts +2 -0
- package/dist/src/components/navigation/dropdown-menu/NeonDropdownMenu.d.ts +33 -33
- package/dist/src/components/navigation/menu/NeonMenu.d.ts +33 -33
- package/dist/src/components/navigation/mobile-menu/NeonMobileMenu.d.ts +33 -33
- package/dist/src/components/presentation/badge/NeonBadge.d.ts +23 -65
- package/dist/src/components/presentation/dropdown/NeonDropdown.d.ts +47 -23
- package/dist/src/components/user-input/color/NeonColor.d.ts +3 -3
- package/dist/src/components/user-input/date-picker/NeonDatePicker.d.ts +38 -94
- package/dist/src/components/user-input/file/NeonFile.d.ts +29 -77
- package/dist/src/components/user-input/input/NeonInput.d.ts +3 -3
- package/dist/src/components/user-input/number/NeonNumber.d.ts +3 -3
- package/dist/src/components/user-input/password/NeonPassword.d.ts +3 -3
- package/dist/src/components/user-input/search/NeonSearch.d.ts +212 -68
- package/dist/src/components/user-input/select/NeonSelect.d.ts +51 -213
- package/dist/src/neon.d.ts +1 -0
- package/package.json +1 -1
- package/src/sass/components/_drawer.scss +2 -1
- package/src/sass/components/_dropdown.scss +1 -0
- package/src/sass/components/_field-group.scss +15 -4
- package/src/sass/components/_number.scss +6 -6
- package/src/sass/components/_page-container.scss +55 -0
- package/src/sass/components/_toggle-chip.scss +7 -6
- package/src/sass/components/components.scss +2 -1
- package/src/sass/includes/_dependencies.scss +1 -0
- package/src/sass/theme.scss +4 -0
- package/src/sass/variables.scss +5 -0
|
@@ -413,7 +413,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
413
413
|
default: NeonInputMode;
|
|
414
414
|
};
|
|
415
415
|
autocomplete: {
|
|
416
|
-
type:
|
|
416
|
+
type: StringConstructor;
|
|
417
417
|
default: string;
|
|
418
418
|
};
|
|
419
419
|
state: {
|
|
@@ -429,6 +429,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
429
429
|
default: null;
|
|
430
430
|
};
|
|
431
431
|
iconReadonly: {
|
|
432
|
+
/**
|
|
433
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
434
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
435
|
+
*/
|
|
432
436
|
type: BooleanConstructor;
|
|
433
437
|
default: boolean;
|
|
434
438
|
};
|
|
@@ -441,7 +445,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
441
445
|
default: number;
|
|
442
446
|
};
|
|
443
447
|
disabled: {
|
|
444
|
-
type: BooleanConstructor;
|
|
448
|
+
type: BooleanConstructor; /**
|
|
449
|
+
* Placement of the dropdown contents.
|
|
450
|
+
*/
|
|
445
451
|
default: boolean;
|
|
446
452
|
};
|
|
447
453
|
stateHighlight: {
|
|
@@ -500,7 +506,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
500
506
|
inputmode: NeonInputMode;
|
|
501
507
|
modelValue: string;
|
|
502
508
|
state: import("../../../neon").NeonState;
|
|
503
|
-
autocomplete:
|
|
509
|
+
autocomplete: string;
|
|
504
510
|
rows: number;
|
|
505
511
|
iconReadonly: boolean;
|
|
506
512
|
hideIcon: boolean;
|
|
@@ -599,7 +605,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
599
605
|
default: NeonInputMode;
|
|
600
606
|
};
|
|
601
607
|
autocomplete: {
|
|
602
|
-
type:
|
|
608
|
+
type: StringConstructor;
|
|
603
609
|
default: string;
|
|
604
610
|
};
|
|
605
611
|
state: {
|
|
@@ -615,6 +621,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
615
621
|
default: null;
|
|
616
622
|
};
|
|
617
623
|
iconReadonly: {
|
|
624
|
+
/**
|
|
625
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
626
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
627
|
+
*/
|
|
618
628
|
type: BooleanConstructor;
|
|
619
629
|
default: boolean;
|
|
620
630
|
};
|
|
@@ -627,7 +637,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
627
637
|
default: number;
|
|
628
638
|
};
|
|
629
639
|
disabled: {
|
|
630
|
-
type: BooleanConstructor;
|
|
640
|
+
type: BooleanConstructor; /**
|
|
641
|
+
* Placement of the dropdown contents.
|
|
642
|
+
*/
|
|
631
643
|
default: boolean;
|
|
632
644
|
};
|
|
633
645
|
stateHighlight: {
|
|
@@ -686,7 +698,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
686
698
|
inputmode: NeonInputMode;
|
|
687
699
|
modelValue: string;
|
|
688
700
|
state: import("../../../neon").NeonState;
|
|
689
|
-
autocomplete:
|
|
701
|
+
autocomplete: string;
|
|
690
702
|
rows: number;
|
|
691
703
|
iconReadonly: boolean;
|
|
692
704
|
hideIcon: boolean;
|
|
@@ -724,7 +736,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
724
736
|
default: NeonInputMode;
|
|
725
737
|
};
|
|
726
738
|
autocomplete: {
|
|
727
|
-
type:
|
|
739
|
+
type: StringConstructor;
|
|
728
740
|
default: string;
|
|
729
741
|
};
|
|
730
742
|
state: {
|
|
@@ -740,6 +752,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
740
752
|
default: null;
|
|
741
753
|
};
|
|
742
754
|
iconReadonly: {
|
|
755
|
+
/**
|
|
756
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
757
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
758
|
+
*/
|
|
743
759
|
type: BooleanConstructor;
|
|
744
760
|
default: boolean;
|
|
745
761
|
};
|
|
@@ -752,7 +768,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
752
768
|
default: number;
|
|
753
769
|
};
|
|
754
770
|
disabled: {
|
|
755
|
-
type: BooleanConstructor;
|
|
771
|
+
type: BooleanConstructor; /**
|
|
772
|
+
* Placement of the dropdown contents.
|
|
773
|
+
*/
|
|
756
774
|
default: boolean;
|
|
757
775
|
};
|
|
758
776
|
stateHighlight: {
|
|
@@ -811,7 +829,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
811
829
|
inputmode: NeonInputMode;
|
|
812
830
|
modelValue: string;
|
|
813
831
|
state: import("../../../neon").NeonState;
|
|
814
|
-
autocomplete:
|
|
832
|
+
autocomplete: string;
|
|
815
833
|
rows: number;
|
|
816
834
|
iconReadonly: boolean;
|
|
817
835
|
hideIcon: boolean;
|
|
@@ -910,7 +928,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
910
928
|
default: NeonInputMode;
|
|
911
929
|
};
|
|
912
930
|
autocomplete: {
|
|
913
|
-
type:
|
|
931
|
+
type: StringConstructor;
|
|
914
932
|
default: string;
|
|
915
933
|
};
|
|
916
934
|
state: {
|
|
@@ -926,6 +944,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
926
944
|
default: null;
|
|
927
945
|
};
|
|
928
946
|
iconReadonly: {
|
|
947
|
+
/**
|
|
948
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
949
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
950
|
+
*/
|
|
929
951
|
type: BooleanConstructor;
|
|
930
952
|
default: boolean;
|
|
931
953
|
};
|
|
@@ -938,7 +960,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
938
960
|
default: number;
|
|
939
961
|
};
|
|
940
962
|
disabled: {
|
|
941
|
-
type: BooleanConstructor;
|
|
963
|
+
type: BooleanConstructor; /**
|
|
964
|
+
* Placement of the dropdown contents.
|
|
965
|
+
*/
|
|
942
966
|
default: boolean;
|
|
943
967
|
};
|
|
944
968
|
stateHighlight: {
|
|
@@ -997,7 +1021,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
997
1021
|
inputmode: NeonInputMode;
|
|
998
1022
|
modelValue: string;
|
|
999
1023
|
state: import("../../../neon").NeonState;
|
|
1000
|
-
autocomplete:
|
|
1024
|
+
autocomplete: string;
|
|
1001
1025
|
rows: number;
|
|
1002
1026
|
iconReadonly: boolean;
|
|
1003
1027
|
hideIcon: boolean;
|
|
@@ -1538,7 +1562,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1538
1562
|
default: NeonInputMode;
|
|
1539
1563
|
};
|
|
1540
1564
|
autocomplete: {
|
|
1541
|
-
type:
|
|
1565
|
+
type: StringConstructor;
|
|
1542
1566
|
default: string;
|
|
1543
1567
|
};
|
|
1544
1568
|
state: {
|
|
@@ -1554,6 +1578,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1554
1578
|
default: null;
|
|
1555
1579
|
};
|
|
1556
1580
|
iconReadonly: {
|
|
1581
|
+
/**
|
|
1582
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
1583
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
1584
|
+
*/
|
|
1557
1585
|
type: BooleanConstructor;
|
|
1558
1586
|
default: boolean;
|
|
1559
1587
|
};
|
|
@@ -1566,7 +1594,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1566
1594
|
default: number;
|
|
1567
1595
|
};
|
|
1568
1596
|
disabled: {
|
|
1569
|
-
type: BooleanConstructor;
|
|
1597
|
+
type: BooleanConstructor; /**
|
|
1598
|
+
* Placement of the dropdown contents.
|
|
1599
|
+
*/
|
|
1570
1600
|
default: boolean;
|
|
1571
1601
|
};
|
|
1572
1602
|
stateHighlight: {
|
|
@@ -1637,7 +1667,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1637
1667
|
default: NeonInputMode;
|
|
1638
1668
|
};
|
|
1639
1669
|
autocomplete: {
|
|
1640
|
-
type:
|
|
1670
|
+
type: StringConstructor;
|
|
1641
1671
|
default: string;
|
|
1642
1672
|
};
|
|
1643
1673
|
state: {
|
|
@@ -1653,6 +1683,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1653
1683
|
default: null;
|
|
1654
1684
|
};
|
|
1655
1685
|
iconReadonly: {
|
|
1686
|
+
/**
|
|
1687
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
1688
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
1689
|
+
*/
|
|
1656
1690
|
type: BooleanConstructor;
|
|
1657
1691
|
default: boolean;
|
|
1658
1692
|
};
|
|
@@ -1665,7 +1699,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1665
1699
|
default: number;
|
|
1666
1700
|
};
|
|
1667
1701
|
disabled: {
|
|
1668
|
-
type: BooleanConstructor;
|
|
1702
|
+
type: BooleanConstructor; /**
|
|
1703
|
+
* Placement of the dropdown contents.
|
|
1704
|
+
*/
|
|
1669
1705
|
default: boolean;
|
|
1670
1706
|
};
|
|
1671
1707
|
stateHighlight: {
|
|
@@ -1706,7 +1742,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1706
1742
|
inputmode: NeonInputMode;
|
|
1707
1743
|
modelValue: string;
|
|
1708
1744
|
state: import("../../../neon").NeonState;
|
|
1709
|
-
autocomplete:
|
|
1745
|
+
autocomplete: string;
|
|
1710
1746
|
rows: number;
|
|
1711
1747
|
iconReadonly: boolean;
|
|
1712
1748
|
hideIcon: boolean;
|
|
@@ -2817,7 +2853,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2817
2853
|
default: NeonInputMode;
|
|
2818
2854
|
};
|
|
2819
2855
|
autocomplete: {
|
|
2820
|
-
type:
|
|
2856
|
+
type: StringConstructor;
|
|
2821
2857
|
default: string;
|
|
2822
2858
|
};
|
|
2823
2859
|
state: {
|
|
@@ -2833,6 +2869,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2833
2869
|
default: null;
|
|
2834
2870
|
};
|
|
2835
2871
|
iconReadonly: {
|
|
2872
|
+
/**
|
|
2873
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
2874
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
2875
|
+
*/
|
|
2836
2876
|
type: BooleanConstructor;
|
|
2837
2877
|
default: boolean;
|
|
2838
2878
|
};
|
|
@@ -2845,7 +2885,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2845
2885
|
default: number;
|
|
2846
2886
|
};
|
|
2847
2887
|
disabled: {
|
|
2848
|
-
type: BooleanConstructor;
|
|
2888
|
+
type: BooleanConstructor; /**
|
|
2889
|
+
* Placement of the dropdown contents.
|
|
2890
|
+
*/
|
|
2849
2891
|
default: boolean;
|
|
2850
2892
|
};
|
|
2851
2893
|
stateHighlight: {
|
|
@@ -2904,7 +2946,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2904
2946
|
inputmode: NeonInputMode;
|
|
2905
2947
|
modelValue: string;
|
|
2906
2948
|
state: import("../../../neon").NeonState;
|
|
2907
|
-
autocomplete:
|
|
2949
|
+
autocomplete: string;
|
|
2908
2950
|
rows: number;
|
|
2909
2951
|
iconReadonly: boolean;
|
|
2910
2952
|
hideIcon: boolean;
|
|
@@ -3003,7 +3045,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3003
3045
|
default: NeonInputMode;
|
|
3004
3046
|
};
|
|
3005
3047
|
autocomplete: {
|
|
3006
|
-
type:
|
|
3048
|
+
type: StringConstructor;
|
|
3007
3049
|
default: string;
|
|
3008
3050
|
};
|
|
3009
3051
|
state: {
|
|
@@ -3019,6 +3061,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3019
3061
|
default: null;
|
|
3020
3062
|
};
|
|
3021
3063
|
iconReadonly: {
|
|
3064
|
+
/**
|
|
3065
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
3066
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
3067
|
+
*/
|
|
3022
3068
|
type: BooleanConstructor;
|
|
3023
3069
|
default: boolean;
|
|
3024
3070
|
};
|
|
@@ -3031,7 +3077,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3031
3077
|
default: number;
|
|
3032
3078
|
};
|
|
3033
3079
|
disabled: {
|
|
3034
|
-
type: BooleanConstructor;
|
|
3080
|
+
type: BooleanConstructor; /**
|
|
3081
|
+
* Placement of the dropdown contents.
|
|
3082
|
+
*/
|
|
3035
3083
|
default: boolean;
|
|
3036
3084
|
};
|
|
3037
3085
|
stateHighlight: {
|
|
@@ -3090,7 +3138,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3090
3138
|
inputmode: NeonInputMode;
|
|
3091
3139
|
modelValue: string;
|
|
3092
3140
|
state: import("../../../neon").NeonState;
|
|
3093
|
-
autocomplete:
|
|
3141
|
+
autocomplete: string;
|
|
3094
3142
|
rows: number;
|
|
3095
3143
|
iconReadonly: boolean;
|
|
3096
3144
|
hideIcon: boolean;
|
|
@@ -3128,7 +3176,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3128
3176
|
default: NeonInputMode;
|
|
3129
3177
|
};
|
|
3130
3178
|
autocomplete: {
|
|
3131
|
-
type:
|
|
3179
|
+
type: StringConstructor;
|
|
3132
3180
|
default: string;
|
|
3133
3181
|
};
|
|
3134
3182
|
state: {
|
|
@@ -3144,6 +3192,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3144
3192
|
default: null;
|
|
3145
3193
|
};
|
|
3146
3194
|
iconReadonly: {
|
|
3195
|
+
/**
|
|
3196
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
3197
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
3198
|
+
*/
|
|
3147
3199
|
type: BooleanConstructor;
|
|
3148
3200
|
default: boolean;
|
|
3149
3201
|
};
|
|
@@ -3156,7 +3208,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3156
3208
|
default: number;
|
|
3157
3209
|
};
|
|
3158
3210
|
disabled: {
|
|
3159
|
-
type: BooleanConstructor;
|
|
3211
|
+
type: BooleanConstructor; /**
|
|
3212
|
+
* Placement of the dropdown contents.
|
|
3213
|
+
*/
|
|
3160
3214
|
default: boolean;
|
|
3161
3215
|
};
|
|
3162
3216
|
stateHighlight: {
|
|
@@ -3215,7 +3269,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3215
3269
|
inputmode: NeonInputMode;
|
|
3216
3270
|
modelValue: string;
|
|
3217
3271
|
state: import("../../../neon").NeonState;
|
|
3218
|
-
autocomplete:
|
|
3272
|
+
autocomplete: string;
|
|
3219
3273
|
rows: number;
|
|
3220
3274
|
iconReadonly: boolean;
|
|
3221
3275
|
hideIcon: boolean;
|
|
@@ -3314,7 +3368,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3314
3368
|
default: NeonInputMode;
|
|
3315
3369
|
};
|
|
3316
3370
|
autocomplete: {
|
|
3317
|
-
type:
|
|
3371
|
+
type: StringConstructor;
|
|
3318
3372
|
default: string;
|
|
3319
3373
|
};
|
|
3320
3374
|
state: {
|
|
@@ -3330,6 +3384,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3330
3384
|
default: null;
|
|
3331
3385
|
};
|
|
3332
3386
|
iconReadonly: {
|
|
3387
|
+
/**
|
|
3388
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
3389
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
3390
|
+
*/
|
|
3333
3391
|
type: BooleanConstructor;
|
|
3334
3392
|
default: boolean;
|
|
3335
3393
|
};
|
|
@@ -3342,7 +3400,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3342
3400
|
default: number;
|
|
3343
3401
|
};
|
|
3344
3402
|
disabled: {
|
|
3345
|
-
type: BooleanConstructor;
|
|
3403
|
+
type: BooleanConstructor; /**
|
|
3404
|
+
* Placement of the dropdown contents.
|
|
3405
|
+
*/
|
|
3346
3406
|
default: boolean;
|
|
3347
3407
|
};
|
|
3348
3408
|
stateHighlight: {
|
|
@@ -3401,7 +3461,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3401
3461
|
inputmode: NeonInputMode;
|
|
3402
3462
|
modelValue: string;
|
|
3403
3463
|
state: import("../../../neon").NeonState;
|
|
3404
|
-
autocomplete:
|
|
3464
|
+
autocomplete: string;
|
|
3405
3465
|
rows: number;
|
|
3406
3466
|
iconReadonly: boolean;
|
|
3407
3467
|
hideIcon: boolean;
|
|
@@ -3942,7 +4002,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3942
4002
|
default: NeonInputMode;
|
|
3943
4003
|
};
|
|
3944
4004
|
autocomplete: {
|
|
3945
|
-
type:
|
|
4005
|
+
type: StringConstructor;
|
|
3946
4006
|
default: string;
|
|
3947
4007
|
};
|
|
3948
4008
|
state: {
|
|
@@ -3958,6 +4018,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3958
4018
|
default: null;
|
|
3959
4019
|
};
|
|
3960
4020
|
iconReadonly: {
|
|
4021
|
+
/**
|
|
4022
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
4023
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
4024
|
+
*/
|
|
3961
4025
|
type: BooleanConstructor;
|
|
3962
4026
|
default: boolean;
|
|
3963
4027
|
};
|
|
@@ -3970,7 +4034,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3970
4034
|
default: number;
|
|
3971
4035
|
};
|
|
3972
4036
|
disabled: {
|
|
3973
|
-
type: BooleanConstructor;
|
|
4037
|
+
type: BooleanConstructor; /**
|
|
4038
|
+
* Placement of the dropdown contents.
|
|
4039
|
+
*/
|
|
3974
4040
|
default: boolean;
|
|
3975
4041
|
};
|
|
3976
4042
|
stateHighlight: {
|
|
@@ -4041,7 +4107,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4041
4107
|
default: NeonInputMode;
|
|
4042
4108
|
};
|
|
4043
4109
|
autocomplete: {
|
|
4044
|
-
type:
|
|
4110
|
+
type: StringConstructor;
|
|
4045
4111
|
default: string;
|
|
4046
4112
|
};
|
|
4047
4113
|
state: {
|
|
@@ -4057,6 +4123,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4057
4123
|
default: null;
|
|
4058
4124
|
};
|
|
4059
4125
|
iconReadonly: {
|
|
4126
|
+
/**
|
|
4127
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
4128
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
4129
|
+
*/
|
|
4060
4130
|
type: BooleanConstructor;
|
|
4061
4131
|
default: boolean;
|
|
4062
4132
|
};
|
|
@@ -4069,7 +4139,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4069
4139
|
default: number;
|
|
4070
4140
|
};
|
|
4071
4141
|
disabled: {
|
|
4072
|
-
type: BooleanConstructor;
|
|
4142
|
+
type: BooleanConstructor; /**
|
|
4143
|
+
* Placement of the dropdown contents.
|
|
4144
|
+
*/
|
|
4073
4145
|
default: boolean;
|
|
4074
4146
|
};
|
|
4075
4147
|
stateHighlight: {
|
|
@@ -4110,7 +4182,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4110
4182
|
inputmode: NeonInputMode;
|
|
4111
4183
|
modelValue: string;
|
|
4112
4184
|
state: import("../../../neon").NeonState;
|
|
4113
|
-
autocomplete:
|
|
4185
|
+
autocomplete: string;
|
|
4114
4186
|
rows: number;
|
|
4115
4187
|
iconReadonly: boolean;
|
|
4116
4188
|
hideIcon: boolean;
|
|
@@ -4925,7 +4997,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4925
4997
|
default: NeonInputMode;
|
|
4926
4998
|
};
|
|
4927
4999
|
autocomplete: {
|
|
4928
|
-
type:
|
|
5000
|
+
type: StringConstructor;
|
|
4929
5001
|
default: string;
|
|
4930
5002
|
};
|
|
4931
5003
|
state: {
|
|
@@ -4941,6 +5013,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4941
5013
|
default: null;
|
|
4942
5014
|
};
|
|
4943
5015
|
iconReadonly: {
|
|
5016
|
+
/**
|
|
5017
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
5018
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
5019
|
+
*/
|
|
4944
5020
|
type: BooleanConstructor;
|
|
4945
5021
|
default: boolean;
|
|
4946
5022
|
};
|
|
@@ -4953,7 +5029,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4953
5029
|
default: number;
|
|
4954
5030
|
};
|
|
4955
5031
|
disabled: {
|
|
4956
|
-
type: BooleanConstructor;
|
|
5032
|
+
type: BooleanConstructor; /**
|
|
5033
|
+
* Placement of the dropdown contents.
|
|
5034
|
+
*/
|
|
4957
5035
|
default: boolean;
|
|
4958
5036
|
};
|
|
4959
5037
|
stateHighlight: {
|
|
@@ -5012,7 +5090,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5012
5090
|
inputmode: NeonInputMode;
|
|
5013
5091
|
modelValue: string;
|
|
5014
5092
|
state: import("../../../neon").NeonState;
|
|
5015
|
-
autocomplete:
|
|
5093
|
+
autocomplete: string;
|
|
5016
5094
|
rows: number;
|
|
5017
5095
|
iconReadonly: boolean;
|
|
5018
5096
|
hideIcon: boolean;
|
|
@@ -5111,7 +5189,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5111
5189
|
default: NeonInputMode;
|
|
5112
5190
|
};
|
|
5113
5191
|
autocomplete: {
|
|
5114
|
-
type:
|
|
5192
|
+
type: StringConstructor;
|
|
5115
5193
|
default: string;
|
|
5116
5194
|
};
|
|
5117
5195
|
state: {
|
|
@@ -5127,6 +5205,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5127
5205
|
default: null;
|
|
5128
5206
|
};
|
|
5129
5207
|
iconReadonly: {
|
|
5208
|
+
/**
|
|
5209
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
5210
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
5211
|
+
*/
|
|
5130
5212
|
type: BooleanConstructor;
|
|
5131
5213
|
default: boolean;
|
|
5132
5214
|
};
|
|
@@ -5139,7 +5221,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5139
5221
|
default: number;
|
|
5140
5222
|
};
|
|
5141
5223
|
disabled: {
|
|
5142
|
-
type: BooleanConstructor;
|
|
5224
|
+
type: BooleanConstructor; /**
|
|
5225
|
+
* Placement of the dropdown contents.
|
|
5226
|
+
*/
|
|
5143
5227
|
default: boolean;
|
|
5144
5228
|
};
|
|
5145
5229
|
stateHighlight: {
|
|
@@ -5198,7 +5282,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5198
5282
|
inputmode: NeonInputMode;
|
|
5199
5283
|
modelValue: string;
|
|
5200
5284
|
state: import("../../../neon").NeonState;
|
|
5201
|
-
autocomplete:
|
|
5285
|
+
autocomplete: string;
|
|
5202
5286
|
rows: number;
|
|
5203
5287
|
iconReadonly: boolean;
|
|
5204
5288
|
hideIcon: boolean;
|
|
@@ -5236,7 +5320,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5236
5320
|
default: NeonInputMode;
|
|
5237
5321
|
};
|
|
5238
5322
|
autocomplete: {
|
|
5239
|
-
type:
|
|
5323
|
+
type: StringConstructor;
|
|
5240
5324
|
default: string;
|
|
5241
5325
|
};
|
|
5242
5326
|
state: {
|
|
@@ -5252,6 +5336,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5252
5336
|
default: null;
|
|
5253
5337
|
};
|
|
5254
5338
|
iconReadonly: {
|
|
5339
|
+
/**
|
|
5340
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
5341
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
5342
|
+
*/
|
|
5255
5343
|
type: BooleanConstructor;
|
|
5256
5344
|
default: boolean;
|
|
5257
5345
|
};
|
|
@@ -5264,7 +5352,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5264
5352
|
default: number;
|
|
5265
5353
|
};
|
|
5266
5354
|
disabled: {
|
|
5267
|
-
type: BooleanConstructor;
|
|
5355
|
+
type: BooleanConstructor; /**
|
|
5356
|
+
* Placement of the dropdown contents.
|
|
5357
|
+
*/
|
|
5268
5358
|
default: boolean;
|
|
5269
5359
|
};
|
|
5270
5360
|
stateHighlight: {
|
|
@@ -5323,7 +5413,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5323
5413
|
inputmode: NeonInputMode;
|
|
5324
5414
|
modelValue: string;
|
|
5325
5415
|
state: import("../../../neon").NeonState;
|
|
5326
|
-
autocomplete:
|
|
5416
|
+
autocomplete: string;
|
|
5327
5417
|
rows: number;
|
|
5328
5418
|
iconReadonly: boolean;
|
|
5329
5419
|
hideIcon: boolean;
|
|
@@ -5422,7 +5512,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5422
5512
|
default: NeonInputMode;
|
|
5423
5513
|
};
|
|
5424
5514
|
autocomplete: {
|
|
5425
|
-
type:
|
|
5515
|
+
type: StringConstructor;
|
|
5426
5516
|
default: string;
|
|
5427
5517
|
};
|
|
5428
5518
|
state: {
|
|
@@ -5438,6 +5528,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5438
5528
|
default: null;
|
|
5439
5529
|
};
|
|
5440
5530
|
iconReadonly: {
|
|
5531
|
+
/**
|
|
5532
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
5533
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
5534
|
+
*/
|
|
5441
5535
|
type: BooleanConstructor;
|
|
5442
5536
|
default: boolean;
|
|
5443
5537
|
};
|
|
@@ -5450,7 +5544,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5450
5544
|
default: number;
|
|
5451
5545
|
};
|
|
5452
5546
|
disabled: {
|
|
5453
|
-
type: BooleanConstructor;
|
|
5547
|
+
type: BooleanConstructor; /**
|
|
5548
|
+
* Placement of the dropdown contents.
|
|
5549
|
+
*/
|
|
5454
5550
|
default: boolean;
|
|
5455
5551
|
};
|
|
5456
5552
|
stateHighlight: {
|
|
@@ -5509,7 +5605,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5509
5605
|
inputmode: NeonInputMode;
|
|
5510
5606
|
modelValue: string;
|
|
5511
5607
|
state: import("../../../neon").NeonState;
|
|
5512
|
-
autocomplete:
|
|
5608
|
+
autocomplete: string;
|
|
5513
5609
|
rows: number;
|
|
5514
5610
|
iconReadonly: boolean;
|
|
5515
5611
|
hideIcon: boolean;
|
|
@@ -6145,7 +6241,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6145
6241
|
default: NeonInputMode;
|
|
6146
6242
|
};
|
|
6147
6243
|
autocomplete: {
|
|
6148
|
-
type:
|
|
6244
|
+
type: StringConstructor;
|
|
6149
6245
|
default: string;
|
|
6150
6246
|
};
|
|
6151
6247
|
state: {
|
|
@@ -6161,6 +6257,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6161
6257
|
default: null;
|
|
6162
6258
|
};
|
|
6163
6259
|
iconReadonly: {
|
|
6260
|
+
/**
|
|
6261
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
6262
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
6263
|
+
*/
|
|
6164
6264
|
type: BooleanConstructor;
|
|
6165
6265
|
default: boolean;
|
|
6166
6266
|
};
|
|
@@ -6173,7 +6273,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6173
6273
|
default: number;
|
|
6174
6274
|
};
|
|
6175
6275
|
disabled: {
|
|
6176
|
-
type: BooleanConstructor;
|
|
6276
|
+
type: BooleanConstructor; /**
|
|
6277
|
+
* Placement of the dropdown contents.
|
|
6278
|
+
*/
|
|
6177
6279
|
default: boolean;
|
|
6178
6280
|
};
|
|
6179
6281
|
stateHighlight: {
|
|
@@ -6232,7 +6334,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6232
6334
|
inputmode: NeonInputMode;
|
|
6233
6335
|
modelValue: string;
|
|
6234
6336
|
state: import("../../../neon").NeonState;
|
|
6235
|
-
autocomplete:
|
|
6337
|
+
autocomplete: string;
|
|
6236
6338
|
rows: number;
|
|
6237
6339
|
iconReadonly: boolean;
|
|
6238
6340
|
hideIcon: boolean;
|
|
@@ -6331,7 +6433,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6331
6433
|
default: NeonInputMode;
|
|
6332
6434
|
};
|
|
6333
6435
|
autocomplete: {
|
|
6334
|
-
type:
|
|
6436
|
+
type: StringConstructor;
|
|
6335
6437
|
default: string;
|
|
6336
6438
|
};
|
|
6337
6439
|
state: {
|
|
@@ -6347,6 +6449,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6347
6449
|
default: null;
|
|
6348
6450
|
};
|
|
6349
6451
|
iconReadonly: {
|
|
6452
|
+
/**
|
|
6453
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
6454
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
6455
|
+
*/
|
|
6350
6456
|
type: BooleanConstructor;
|
|
6351
6457
|
default: boolean;
|
|
6352
6458
|
};
|
|
@@ -6359,7 +6465,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6359
6465
|
default: number;
|
|
6360
6466
|
};
|
|
6361
6467
|
disabled: {
|
|
6362
|
-
type: BooleanConstructor;
|
|
6468
|
+
type: BooleanConstructor; /**
|
|
6469
|
+
* Placement of the dropdown contents.
|
|
6470
|
+
*/
|
|
6363
6471
|
default: boolean;
|
|
6364
6472
|
};
|
|
6365
6473
|
stateHighlight: {
|
|
@@ -6418,7 +6526,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6418
6526
|
inputmode: NeonInputMode;
|
|
6419
6527
|
modelValue: string;
|
|
6420
6528
|
state: import("../../../neon").NeonState;
|
|
6421
|
-
autocomplete:
|
|
6529
|
+
autocomplete: string;
|
|
6422
6530
|
rows: number;
|
|
6423
6531
|
iconReadonly: boolean;
|
|
6424
6532
|
hideIcon: boolean;
|
|
@@ -6456,7 +6564,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6456
6564
|
default: NeonInputMode;
|
|
6457
6565
|
};
|
|
6458
6566
|
autocomplete: {
|
|
6459
|
-
type:
|
|
6567
|
+
type: StringConstructor;
|
|
6460
6568
|
default: string;
|
|
6461
6569
|
};
|
|
6462
6570
|
state: {
|
|
@@ -6472,6 +6580,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6472
6580
|
default: null;
|
|
6473
6581
|
};
|
|
6474
6582
|
iconReadonly: {
|
|
6583
|
+
/**
|
|
6584
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
6585
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
6586
|
+
*/
|
|
6475
6587
|
type: BooleanConstructor;
|
|
6476
6588
|
default: boolean;
|
|
6477
6589
|
};
|
|
@@ -6484,7 +6596,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6484
6596
|
default: number;
|
|
6485
6597
|
};
|
|
6486
6598
|
disabled: {
|
|
6487
|
-
type: BooleanConstructor;
|
|
6599
|
+
type: BooleanConstructor; /**
|
|
6600
|
+
* Placement of the dropdown contents.
|
|
6601
|
+
*/
|
|
6488
6602
|
default: boolean;
|
|
6489
6603
|
};
|
|
6490
6604
|
stateHighlight: {
|
|
@@ -6543,7 +6657,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6543
6657
|
inputmode: NeonInputMode;
|
|
6544
6658
|
modelValue: string;
|
|
6545
6659
|
state: import("../../../neon").NeonState;
|
|
6546
|
-
autocomplete:
|
|
6660
|
+
autocomplete: string;
|
|
6547
6661
|
rows: number;
|
|
6548
6662
|
iconReadonly: boolean;
|
|
6549
6663
|
hideIcon: boolean;
|
|
@@ -6642,7 +6756,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6642
6756
|
default: NeonInputMode;
|
|
6643
6757
|
};
|
|
6644
6758
|
autocomplete: {
|
|
6645
|
-
type:
|
|
6759
|
+
type: StringConstructor;
|
|
6646
6760
|
default: string;
|
|
6647
6761
|
};
|
|
6648
6762
|
state: {
|
|
@@ -6658,6 +6772,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6658
6772
|
default: null;
|
|
6659
6773
|
};
|
|
6660
6774
|
iconReadonly: {
|
|
6775
|
+
/**
|
|
6776
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
6777
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
6778
|
+
*/
|
|
6661
6779
|
type: BooleanConstructor;
|
|
6662
6780
|
default: boolean;
|
|
6663
6781
|
};
|
|
@@ -6670,7 +6788,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6670
6788
|
default: number;
|
|
6671
6789
|
};
|
|
6672
6790
|
disabled: {
|
|
6673
|
-
type: BooleanConstructor;
|
|
6791
|
+
type: BooleanConstructor; /**
|
|
6792
|
+
* Placement of the dropdown contents.
|
|
6793
|
+
*/
|
|
6674
6794
|
default: boolean;
|
|
6675
6795
|
};
|
|
6676
6796
|
stateHighlight: {
|
|
@@ -6729,7 +6849,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6729
6849
|
inputmode: NeonInputMode;
|
|
6730
6850
|
modelValue: string;
|
|
6731
6851
|
state: import("../../../neon").NeonState;
|
|
6732
|
-
autocomplete:
|
|
6852
|
+
autocomplete: string;
|
|
6733
6853
|
rows: number;
|
|
6734
6854
|
iconReadonly: boolean;
|
|
6735
6855
|
hideIcon: boolean;
|
|
@@ -7270,7 +7390,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7270
7390
|
default: NeonInputMode;
|
|
7271
7391
|
};
|
|
7272
7392
|
autocomplete: {
|
|
7273
|
-
type:
|
|
7393
|
+
type: StringConstructor;
|
|
7274
7394
|
default: string;
|
|
7275
7395
|
};
|
|
7276
7396
|
state: {
|
|
@@ -7286,6 +7406,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7286
7406
|
default: null;
|
|
7287
7407
|
};
|
|
7288
7408
|
iconReadonly: {
|
|
7409
|
+
/**
|
|
7410
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
7411
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
7412
|
+
*/
|
|
7289
7413
|
type: BooleanConstructor;
|
|
7290
7414
|
default: boolean;
|
|
7291
7415
|
};
|
|
@@ -7298,7 +7422,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7298
7422
|
default: number;
|
|
7299
7423
|
};
|
|
7300
7424
|
disabled: {
|
|
7301
|
-
type: BooleanConstructor;
|
|
7425
|
+
type: BooleanConstructor; /**
|
|
7426
|
+
* Placement of the dropdown contents.
|
|
7427
|
+
*/
|
|
7302
7428
|
default: boolean;
|
|
7303
7429
|
};
|
|
7304
7430
|
stateHighlight: {
|
|
@@ -7369,7 +7495,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7369
7495
|
default: NeonInputMode;
|
|
7370
7496
|
};
|
|
7371
7497
|
autocomplete: {
|
|
7372
|
-
type:
|
|
7498
|
+
type: StringConstructor;
|
|
7373
7499
|
default: string;
|
|
7374
7500
|
};
|
|
7375
7501
|
state: {
|
|
@@ -7385,6 +7511,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7385
7511
|
default: null;
|
|
7386
7512
|
};
|
|
7387
7513
|
iconReadonly: {
|
|
7514
|
+
/**
|
|
7515
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
7516
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
7517
|
+
*/
|
|
7388
7518
|
type: BooleanConstructor;
|
|
7389
7519
|
default: boolean;
|
|
7390
7520
|
};
|
|
@@ -7397,7 +7527,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7397
7527
|
default: number;
|
|
7398
7528
|
};
|
|
7399
7529
|
disabled: {
|
|
7400
|
-
type: BooleanConstructor;
|
|
7530
|
+
type: BooleanConstructor; /**
|
|
7531
|
+
* Placement of the dropdown contents.
|
|
7532
|
+
*/
|
|
7401
7533
|
default: boolean;
|
|
7402
7534
|
};
|
|
7403
7535
|
stateHighlight: {
|
|
@@ -7438,7 +7570,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7438
7570
|
inputmode: NeonInputMode;
|
|
7439
7571
|
modelValue: string;
|
|
7440
7572
|
state: import("../../../neon").NeonState;
|
|
7441
|
-
autocomplete:
|
|
7573
|
+
autocomplete: string;
|
|
7442
7574
|
rows: number;
|
|
7443
7575
|
iconReadonly: boolean;
|
|
7444
7576
|
hideIcon: boolean;
|
|
@@ -8185,7 +8317,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8185
8317
|
default: NeonInputMode;
|
|
8186
8318
|
};
|
|
8187
8319
|
autocomplete: {
|
|
8188
|
-
type:
|
|
8320
|
+
type: StringConstructor;
|
|
8189
8321
|
default: string;
|
|
8190
8322
|
};
|
|
8191
8323
|
state: {
|
|
@@ -8201,6 +8333,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8201
8333
|
default: null;
|
|
8202
8334
|
};
|
|
8203
8335
|
iconReadonly: {
|
|
8336
|
+
/**
|
|
8337
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
8338
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
8339
|
+
*/
|
|
8204
8340
|
type: BooleanConstructor;
|
|
8205
8341
|
default: boolean;
|
|
8206
8342
|
};
|
|
@@ -8213,7 +8349,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8213
8349
|
default: number;
|
|
8214
8350
|
};
|
|
8215
8351
|
disabled: {
|
|
8216
|
-
type: BooleanConstructor;
|
|
8352
|
+
type: BooleanConstructor; /**
|
|
8353
|
+
* Placement of the dropdown contents.
|
|
8354
|
+
*/
|
|
8217
8355
|
default: boolean;
|
|
8218
8356
|
};
|
|
8219
8357
|
stateHighlight: {
|
|
@@ -8284,7 +8422,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8284
8422
|
default: NeonInputMode;
|
|
8285
8423
|
};
|
|
8286
8424
|
autocomplete: {
|
|
8287
|
-
type:
|
|
8425
|
+
type: StringConstructor;
|
|
8288
8426
|
default: string;
|
|
8289
8427
|
};
|
|
8290
8428
|
state: {
|
|
@@ -8300,6 +8438,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8300
8438
|
default: null;
|
|
8301
8439
|
};
|
|
8302
8440
|
iconReadonly: {
|
|
8441
|
+
/**
|
|
8442
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
8443
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
8444
|
+
*/
|
|
8303
8445
|
type: BooleanConstructor;
|
|
8304
8446
|
default: boolean;
|
|
8305
8447
|
};
|
|
@@ -8312,7 +8454,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8312
8454
|
default: number;
|
|
8313
8455
|
};
|
|
8314
8456
|
disabled: {
|
|
8315
|
-
type: BooleanConstructor;
|
|
8457
|
+
type: BooleanConstructor; /**
|
|
8458
|
+
* Placement of the dropdown contents.
|
|
8459
|
+
*/
|
|
8316
8460
|
default: boolean;
|
|
8317
8461
|
};
|
|
8318
8462
|
stateHighlight: {
|
|
@@ -8353,7 +8497,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8353
8497
|
inputmode: NeonInputMode;
|
|
8354
8498
|
modelValue: string;
|
|
8355
8499
|
state: import("../../../neon").NeonState;
|
|
8356
|
-
autocomplete:
|
|
8500
|
+
autocomplete: string;
|
|
8357
8501
|
rows: number;
|
|
8358
8502
|
iconReadonly: boolean;
|
|
8359
8503
|
hideIcon: boolean;
|