@aotearoan/neon 21.0.2 → 22.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.cjs.js +1 -1
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.cjs.js.map +1 -1
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.es.js +30 -31
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.es.js.map +1 -1
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.vue.cjs.js +1 -1
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.vue.cjs.js.map +1 -1
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.vue.es.js +23 -23
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.vue.es.js.map +1 -1
- package/dist/components/navigation/menu/NeonMenu.cjs.js +1 -1
- package/dist/components/navigation/menu/NeonMenu.cjs.js.map +1 -1
- package/dist/components/navigation/menu/NeonMenu.es.js +57 -55
- package/dist/components/navigation/menu/NeonMenu.es.js.map +1 -1
- 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 +20 -21
- package/dist/components/navigation/menu/NeonMenu.vue.es.js.map +1 -1
- package/dist/components/presentation/dropdown/NeonDropdown.cjs.js +1 -1
- package/dist/components/presentation/dropdown/NeonDropdown.cjs.js.map +1 -1
- package/dist/components/presentation/dropdown/NeonDropdown.es.js +38 -47
- package/dist/components/presentation/dropdown/NeonDropdown.es.js.map +1 -1
- package/dist/components/user-input/search/NeonSearch.cjs.js +1 -1
- package/dist/components/user-input/search/NeonSearch.cjs.js.map +1 -1
- package/dist/components/user-input/search/NeonSearch.es.js +95 -82
- package/dist/components/user-input/search/NeonSearch.es.js.map +1 -1
- package/dist/components/user-input/search/NeonSearch.vue.cjs.js +1 -1
- package/dist/components/user-input/search/NeonSearch.vue.cjs.js.map +1 -1
- package/dist/components/user-input/search/NeonSearch.vue.es.js +19 -19
- package/dist/components/user-input/search/NeonSearch.vue.es.js.map +1 -1
- package/dist/components/user-input/toggle/NeonToggle.cjs.js +1 -1
- package/dist/components/user-input/toggle/NeonToggle.cjs.js.map +1 -1
- package/dist/components/user-input/toggle/NeonToggle.es.js +10 -10
- package/dist/components/user-input/toggle/NeonToggle.es.js.map +1 -1
- package/dist/components/user-input/toggle/NeonToggle.vue.cjs.js +1 -1
- package/dist/components/user-input/toggle/NeonToggle.vue.cjs.js.map +1 -1
- package/dist/components/user-input/toggle/NeonToggle.vue.es.js +1 -1
- package/dist/components/user-input/toggle/NeonToggle.vue.es.js.map +1 -1
- package/dist/src/components/navigation/dropdown-menu/NeonDropdownMenu.d.ts +134 -83
- package/dist/src/components/navigation/menu/NeonMenu.d.ts +38 -18
- package/dist/src/components/navigation/mobile-menu/NeonMobileMenu.d.ts +14 -11
- package/dist/src/components/presentation/dropdown/NeonDropdown.d.ts +34 -27
- package/dist/src/components/user-input/date-picker/NeonDatePicker.d.ts +5 -18
- package/dist/src/components/user-input/search/NeonSearch.d.ts +188 -208
- package/dist/src/components/user-input/select/NeonSelect.d.ts +21 -110
- package/dist/src/components/user-input/toggle/NeonToggle.d.ts +1 -1
- package/package.json +1 -1
- package/src/sass/components/_badge.scss +1 -0
- package/src/sass/components/_card.scss +7 -7
- package/src/sass/components/_skeleton-loader.scss +3 -4
- package/src/sass/components/_slider.scss +1 -1
- package/src/sass/components/_toggle.scss +9 -3
- package/src/sass/variables.scss +10 -7
|
@@ -13,12 +13,12 @@ import { NeonInputMode } from '@/common/enums/NeonInputMode';
|
|
|
13
13
|
*/
|
|
14
14
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
17
|
-
*
|
|
16
|
+
* The selected model value(s). In the case of single select this should be set to a single NeonSearchOption or null.
|
|
17
|
+
* In the case of multiple selection (multiple=true) pass an Array of selected NeonSearchOptions or an empty array
|
|
18
|
+
* if nothing is selected.
|
|
18
19
|
*/
|
|
19
20
|
modelValue: {
|
|
20
|
-
type: (
|
|
21
|
-
required: true;
|
|
21
|
+
type: ((() => NeonSearchOption) | (() => Array<NeonSearchOption>))[];
|
|
22
22
|
};
|
|
23
23
|
/**
|
|
24
24
|
* Placeholder to display in search input when there is no search string entered.
|
|
@@ -108,9 +108,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
108
108
|
};
|
|
109
109
|
icon: {
|
|
110
110
|
type: StringConstructor;
|
|
111
|
-
default: null;
|
|
112
|
-
* The color of the search.
|
|
113
|
-
*/
|
|
111
|
+
default: null;
|
|
114
112
|
};
|
|
115
113
|
iconAriaLabel: {
|
|
116
114
|
type: StringConstructor;
|
|
@@ -128,7 +126,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
128
126
|
default: NeonSize;
|
|
129
127
|
};
|
|
130
128
|
color: {
|
|
131
|
-
type: () => NeonFunctionalColor;
|
|
129
|
+
type: () => NeonFunctionalColor; /**
|
|
130
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
131
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
132
|
+
*/
|
|
132
133
|
default: NeonFunctionalColor;
|
|
133
134
|
};
|
|
134
135
|
alternateColor: {
|
|
@@ -141,8 +142,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
141
142
|
};
|
|
142
143
|
placement: {
|
|
143
144
|
type: () => NeonDropdownPlacement;
|
|
144
|
-
default: NeonDropdownPlacement;
|
|
145
|
-
|
|
145
|
+
default: NeonDropdownPlacement; /**
|
|
146
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
147
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
148
|
+
* for multiple selection an empty array is returned.
|
|
149
|
+
*/
|
|
150
|
+
}; /**
|
|
151
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
152
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
153
|
+
* for multiple selection an empty array is returned.
|
|
154
|
+
*/
|
|
146
155
|
placementContainer: {
|
|
147
156
|
type: () => HTMLElement;
|
|
148
157
|
default: null;
|
|
@@ -156,7 +165,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
156
165
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
157
166
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
158
167
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
159
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
160
168
|
}>, {
|
|
161
169
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
162
170
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -178,7 +186,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
178
186
|
toggleOpen: () => void;
|
|
179
187
|
onBlur: () => void;
|
|
180
188
|
onFocus: () => void;
|
|
181
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
189
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], import("vue").PublicProps, {
|
|
182
190
|
disabled: boolean;
|
|
183
191
|
label: string;
|
|
184
192
|
placement: NeonDropdownPlacement;
|
|
@@ -232,12 +240,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
232
240
|
};
|
|
233
241
|
imageAlt: {
|
|
234
242
|
type: StringConstructor;
|
|
235
|
-
default: string;
|
|
236
|
-
|
|
237
|
-
*/
|
|
238
|
-
}; /**
|
|
239
|
-
* Disable the search
|
|
240
|
-
*/
|
|
243
|
+
default: string;
|
|
244
|
+
};
|
|
241
245
|
}>, {
|
|
242
246
|
svg: import("vue").ComputedRef<string | null>;
|
|
243
247
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -279,12 +283,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
279
283
|
};
|
|
280
284
|
imageAlt: {
|
|
281
285
|
type: StringConstructor;
|
|
282
|
-
default: string;
|
|
283
|
-
|
|
284
|
-
*/
|
|
285
|
-
}; /**
|
|
286
|
-
* Disable the search
|
|
287
|
-
*/
|
|
286
|
+
default: string;
|
|
287
|
+
};
|
|
288
288
|
}>> & Readonly<{}>, {
|
|
289
289
|
disabled: boolean;
|
|
290
290
|
label: string;
|
|
@@ -317,9 +317,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
317
317
|
}>, {
|
|
318
318
|
attrs: {
|
|
319
319
|
[x: string]: unknown;
|
|
320
|
-
};
|
|
321
|
-
* The color of the search.
|
|
322
|
-
*/
|
|
320
|
+
};
|
|
323
321
|
icon: import("vue").ComputedRef<string>;
|
|
324
322
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
325
323
|
name: {
|
|
@@ -373,14 +371,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
373
371
|
type: StringConstructor;
|
|
374
372
|
default: null;
|
|
375
373
|
};
|
|
376
|
-
/**
|
|
377
|
-
* Disable the search
|
|
378
|
-
*/
|
|
379
374
|
iconAriaLabel: {
|
|
380
375
|
type: StringConstructor;
|
|
381
|
-
};
|
|
382
|
-
* The size of the dropdown - Small, Medium or Large.
|
|
383
|
-
*/
|
|
376
|
+
};
|
|
384
377
|
iconPosition: {
|
|
385
378
|
type: () => import("../../../neon").NeonHorizontalPosition;
|
|
386
379
|
default: import("../../../neon").NeonHorizontalPosition;
|
|
@@ -473,14 +466,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
473
466
|
type: StringConstructor;
|
|
474
467
|
default: null;
|
|
475
468
|
};
|
|
476
|
-
/**
|
|
477
|
-
* Disable the search
|
|
478
|
-
*/
|
|
479
469
|
iconAriaLabel: {
|
|
480
470
|
type: StringConstructor;
|
|
481
|
-
};
|
|
482
|
-
* The size of the dropdown - Small, Medium or Large.
|
|
483
|
-
*/
|
|
471
|
+
};
|
|
484
472
|
iconPosition: {
|
|
485
473
|
type: () => import("../../../neon").NeonHorizontalPosition;
|
|
486
474
|
default: import("../../../neon").NeonHorizontalPosition;
|
|
@@ -602,9 +590,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
602
590
|
}>, {
|
|
603
591
|
attrs: {
|
|
604
592
|
[x: string]: unknown;
|
|
605
|
-
};
|
|
606
|
-
* The color of the search.
|
|
607
|
-
*/
|
|
593
|
+
};
|
|
608
594
|
icon: import("vue").ComputedRef<string>;
|
|
609
595
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
610
596
|
name: {
|
|
@@ -699,9 +685,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
699
685
|
}>, {
|
|
700
686
|
attrs: {
|
|
701
687
|
[x: string]: unknown;
|
|
702
|
-
};
|
|
703
|
-
* The color of the search.
|
|
704
|
-
*/
|
|
688
|
+
};
|
|
705
689
|
icon: import("vue").ComputedRef<string>;
|
|
706
690
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
707
691
|
name: {
|
|
@@ -796,9 +780,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
796
780
|
};
|
|
797
781
|
icon: {
|
|
798
782
|
type: StringConstructor;
|
|
799
|
-
default: null;
|
|
800
|
-
* The color of the search.
|
|
801
|
-
*/
|
|
783
|
+
default: null;
|
|
802
784
|
};
|
|
803
785
|
iconAriaLabel: {
|
|
804
786
|
type: StringConstructor;
|
|
@@ -816,7 +798,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
816
798
|
default: NeonSize;
|
|
817
799
|
};
|
|
818
800
|
color: {
|
|
819
|
-
type: () => NeonFunctionalColor;
|
|
801
|
+
type: () => NeonFunctionalColor; /**
|
|
802
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
803
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
804
|
+
*/
|
|
820
805
|
default: NeonFunctionalColor;
|
|
821
806
|
};
|
|
822
807
|
alternateColor: {
|
|
@@ -829,8 +814,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
829
814
|
};
|
|
830
815
|
placement: {
|
|
831
816
|
type: () => NeonDropdownPlacement;
|
|
832
|
-
default: NeonDropdownPlacement;
|
|
833
|
-
|
|
817
|
+
default: NeonDropdownPlacement; /**
|
|
818
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
819
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
820
|
+
* for multiple selection an empty array is returned.
|
|
821
|
+
*/
|
|
822
|
+
}; /**
|
|
823
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
824
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
825
|
+
* for multiple selection an empty array is returned.
|
|
826
|
+
*/
|
|
834
827
|
placementContainer: {
|
|
835
828
|
type: () => HTMLElement;
|
|
836
829
|
default: null;
|
|
@@ -844,7 +837,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
844
837
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
845
838
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
846
839
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
847
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
848
840
|
}>, {
|
|
849
841
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
850
842
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -902,9 +894,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
902
894
|
};
|
|
903
895
|
icon: {
|
|
904
896
|
type: StringConstructor;
|
|
905
|
-
default: null;
|
|
906
|
-
* The color of the search.
|
|
907
|
-
*/
|
|
897
|
+
default: null;
|
|
908
898
|
};
|
|
909
899
|
iconAriaLabel: {
|
|
910
900
|
type: StringConstructor;
|
|
@@ -922,7 +912,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
922
912
|
default: NeonSize;
|
|
923
913
|
};
|
|
924
914
|
color: {
|
|
925
|
-
type: () => NeonFunctionalColor;
|
|
915
|
+
type: () => NeonFunctionalColor; /**
|
|
916
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
917
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
918
|
+
*/
|
|
926
919
|
default: NeonFunctionalColor;
|
|
927
920
|
};
|
|
928
921
|
alternateColor: {
|
|
@@ -935,8 +928,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
935
928
|
};
|
|
936
929
|
placement: {
|
|
937
930
|
type: () => NeonDropdownPlacement;
|
|
938
|
-
default: NeonDropdownPlacement;
|
|
939
|
-
|
|
931
|
+
default: NeonDropdownPlacement; /**
|
|
932
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
933
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
934
|
+
* for multiple selection an empty array is returned.
|
|
935
|
+
*/
|
|
936
|
+
}; /**
|
|
937
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
938
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
939
|
+
* for multiple selection an empty array is returned.
|
|
940
|
+
*/
|
|
940
941
|
placementContainer: {
|
|
941
942
|
type: () => HTMLElement;
|
|
942
943
|
default: null;
|
|
@@ -950,7 +951,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
950
951
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
951
952
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
952
953
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
953
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
954
954
|
}>, {
|
|
955
955
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
956
956
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -972,7 +972,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
972
972
|
toggleOpen: () => void;
|
|
973
973
|
onBlur: () => void;
|
|
974
974
|
onFocus: () => void;
|
|
975
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
975
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], import("vue").PublicProps, {
|
|
976
976
|
disabled: boolean;
|
|
977
977
|
label: string;
|
|
978
978
|
placement: NeonDropdownPlacement;
|
|
@@ -1026,12 +1026,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1026
1026
|
};
|
|
1027
1027
|
imageAlt: {
|
|
1028
1028
|
type: StringConstructor;
|
|
1029
|
-
default: string;
|
|
1030
|
-
|
|
1031
|
-
*/
|
|
1032
|
-
}; /**
|
|
1033
|
-
* Disable the search
|
|
1034
|
-
*/
|
|
1029
|
+
default: string;
|
|
1030
|
+
};
|
|
1035
1031
|
}>, {
|
|
1036
1032
|
svg: import("vue").ComputedRef<string | null>;
|
|
1037
1033
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -1073,12 +1069,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1073
1069
|
};
|
|
1074
1070
|
imageAlt: {
|
|
1075
1071
|
type: StringConstructor;
|
|
1076
|
-
default: string;
|
|
1077
|
-
|
|
1078
|
-
*/
|
|
1079
|
-
}; /**
|
|
1080
|
-
* Disable the search
|
|
1081
|
-
*/
|
|
1072
|
+
default: string;
|
|
1073
|
+
};
|
|
1082
1074
|
}>> & Readonly<{}>, {
|
|
1083
1075
|
disabled: boolean;
|
|
1084
1076
|
label: string;
|
|
@@ -1111,9 +1103,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1111
1103
|
}>, {
|
|
1112
1104
|
attrs: {
|
|
1113
1105
|
[x: string]: unknown;
|
|
1114
|
-
};
|
|
1115
|
-
* The color of the search.
|
|
1116
|
-
*/
|
|
1106
|
+
};
|
|
1117
1107
|
icon: import("vue").ComputedRef<string>;
|
|
1118
1108
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1119
1109
|
name: {
|
|
@@ -1167,14 +1157,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1167
1157
|
type: StringConstructor;
|
|
1168
1158
|
default: null;
|
|
1169
1159
|
};
|
|
1170
|
-
/**
|
|
1171
|
-
* Disable the search
|
|
1172
|
-
*/
|
|
1173
1160
|
iconAriaLabel: {
|
|
1174
1161
|
type: StringConstructor;
|
|
1175
|
-
};
|
|
1176
|
-
* The size of the dropdown - Small, Medium or Large.
|
|
1177
|
-
*/
|
|
1162
|
+
};
|
|
1178
1163
|
iconPosition: {
|
|
1179
1164
|
type: () => import("../../../neon").NeonHorizontalPosition;
|
|
1180
1165
|
default: import("../../../neon").NeonHorizontalPosition;
|
|
@@ -1267,14 +1252,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1267
1252
|
type: StringConstructor;
|
|
1268
1253
|
default: null;
|
|
1269
1254
|
};
|
|
1270
|
-
/**
|
|
1271
|
-
* Disable the search
|
|
1272
|
-
*/
|
|
1273
1255
|
iconAriaLabel: {
|
|
1274
1256
|
type: StringConstructor;
|
|
1275
|
-
};
|
|
1276
|
-
* The size of the dropdown - Small, Medium or Large.
|
|
1277
|
-
*/
|
|
1257
|
+
};
|
|
1278
1258
|
iconPosition: {
|
|
1279
1259
|
type: () => import("../../../neon").NeonHorizontalPosition;
|
|
1280
1260
|
default: import("../../../neon").NeonHorizontalPosition;
|
|
@@ -1396,9 +1376,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1396
1376
|
}>, {
|
|
1397
1377
|
attrs: {
|
|
1398
1378
|
[x: string]: unknown;
|
|
1399
|
-
};
|
|
1400
|
-
* The color of the search.
|
|
1401
|
-
*/
|
|
1379
|
+
};
|
|
1402
1380
|
icon: import("vue").ComputedRef<string>;
|
|
1403
1381
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1404
1382
|
name: {
|
|
@@ -1493,9 +1471,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1493
1471
|
}>, {
|
|
1494
1472
|
attrs: {
|
|
1495
1473
|
[x: string]: unknown;
|
|
1496
|
-
};
|
|
1497
|
-
* The color of the search.
|
|
1498
|
-
*/
|
|
1474
|
+
};
|
|
1499
1475
|
icon: import("vue").ComputedRef<string>;
|
|
1500
1476
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1501
1477
|
name: {
|
|
@@ -1590,9 +1566,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1590
1566
|
};
|
|
1591
1567
|
icon: {
|
|
1592
1568
|
type: StringConstructor;
|
|
1593
|
-
default: null;
|
|
1594
|
-
* The color of the search.
|
|
1595
|
-
*/
|
|
1569
|
+
default: null;
|
|
1596
1570
|
};
|
|
1597
1571
|
iconAriaLabel: {
|
|
1598
1572
|
type: StringConstructor;
|
|
@@ -1610,7 +1584,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1610
1584
|
default: NeonSize;
|
|
1611
1585
|
};
|
|
1612
1586
|
color: {
|
|
1613
|
-
type: () => NeonFunctionalColor;
|
|
1587
|
+
type: () => NeonFunctionalColor; /**
|
|
1588
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
1589
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
1590
|
+
*/
|
|
1614
1591
|
default: NeonFunctionalColor;
|
|
1615
1592
|
};
|
|
1616
1593
|
alternateColor: {
|
|
@@ -1623,8 +1600,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1623
1600
|
};
|
|
1624
1601
|
placement: {
|
|
1625
1602
|
type: () => NeonDropdownPlacement;
|
|
1626
|
-
default: NeonDropdownPlacement;
|
|
1627
|
-
|
|
1603
|
+
default: NeonDropdownPlacement; /**
|
|
1604
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
1605
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
1606
|
+
* for multiple selection an empty array is returned.
|
|
1607
|
+
*/
|
|
1608
|
+
}; /**
|
|
1609
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
1610
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
1611
|
+
* for multiple selection an empty array is returned.
|
|
1612
|
+
*/
|
|
1628
1613
|
placementContainer: {
|
|
1629
1614
|
type: () => HTMLElement;
|
|
1630
1615
|
default: null;
|
|
@@ -1638,7 +1623,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1638
1623
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1639
1624
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1640
1625
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
1641
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
1642
1626
|
}>, {
|
|
1643
1627
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
1644
1628
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -1710,12 +1694,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1710
1694
|
};
|
|
1711
1695
|
state: {
|
|
1712
1696
|
type: () => import("../../../neon").NeonState;
|
|
1713
|
-
default: import("../../../neon").NeonState;
|
|
1714
|
-
|
|
1715
|
-
*/
|
|
1716
|
-
}; /**
|
|
1717
|
-
* The color of the search.
|
|
1718
|
-
*/
|
|
1697
|
+
default: import("../../../neon").NeonState;
|
|
1698
|
+
};
|
|
1719
1699
|
rows: {
|
|
1720
1700
|
type: NumberConstructor;
|
|
1721
1701
|
default: null;
|
|
@@ -1725,6 +1705,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1725
1705
|
default: null;
|
|
1726
1706
|
};
|
|
1727
1707
|
iconReadonly: {
|
|
1708
|
+
/**
|
|
1709
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
1710
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
1711
|
+
*/
|
|
1728
1712
|
type: BooleanConstructor;
|
|
1729
1713
|
default: boolean;
|
|
1730
1714
|
};
|
|
@@ -1737,7 +1721,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1737
1721
|
default: number;
|
|
1738
1722
|
};
|
|
1739
1723
|
disabled: {
|
|
1740
|
-
type: BooleanConstructor;
|
|
1724
|
+
type: BooleanConstructor; /**
|
|
1725
|
+
* Placement of the dropdown contents.
|
|
1726
|
+
*/
|
|
1741
1727
|
default: boolean;
|
|
1742
1728
|
};
|
|
1743
1729
|
stateHighlight: {
|
|
@@ -1819,9 +1805,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1819
1805
|
}>, {
|
|
1820
1806
|
attrs: {
|
|
1821
1807
|
[x: string]: unknown;
|
|
1822
|
-
};
|
|
1823
|
-
* The color of the search.
|
|
1824
|
-
*/
|
|
1808
|
+
};
|
|
1825
1809
|
icon: import("vue").ComputedRef<string>;
|
|
1826
1810
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1827
1811
|
name: {
|
|
@@ -1887,12 +1871,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1887
1871
|
};
|
|
1888
1872
|
state: {
|
|
1889
1873
|
type: () => import("../../../neon").NeonState;
|
|
1890
|
-
default: import("../../../neon").NeonState;
|
|
1891
|
-
|
|
1892
|
-
*/
|
|
1893
|
-
}; /**
|
|
1894
|
-
* The color of the search.
|
|
1895
|
-
*/
|
|
1874
|
+
default: import("../../../neon").NeonState;
|
|
1875
|
+
};
|
|
1896
1876
|
rows: {
|
|
1897
1877
|
type: NumberConstructor;
|
|
1898
1878
|
default: null;
|
|
@@ -1902,6 +1882,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1902
1882
|
default: null;
|
|
1903
1883
|
};
|
|
1904
1884
|
iconReadonly: {
|
|
1885
|
+
/**
|
|
1886
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
1887
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
1888
|
+
*/
|
|
1905
1889
|
type: BooleanConstructor;
|
|
1906
1890
|
default: boolean;
|
|
1907
1891
|
};
|
|
@@ -1914,7 +1898,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1914
1898
|
default: number;
|
|
1915
1899
|
};
|
|
1916
1900
|
disabled: {
|
|
1917
|
-
type: BooleanConstructor;
|
|
1901
|
+
type: BooleanConstructor; /**
|
|
1902
|
+
* Placement of the dropdown contents.
|
|
1903
|
+
*/
|
|
1918
1904
|
default: boolean;
|
|
1919
1905
|
};
|
|
1920
1906
|
stateHighlight: {
|
|
@@ -2010,12 +1996,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2010
1996
|
};
|
|
2011
1997
|
state: {
|
|
2012
1998
|
type: () => import("../../../neon").NeonState;
|
|
2013
|
-
default: import("../../../neon").NeonState;
|
|
2014
|
-
|
|
2015
|
-
*/
|
|
2016
|
-
}; /**
|
|
2017
|
-
* The color of the search.
|
|
2018
|
-
*/
|
|
1999
|
+
default: import("../../../neon").NeonState;
|
|
2000
|
+
};
|
|
2019
2001
|
rows: {
|
|
2020
2002
|
type: NumberConstructor;
|
|
2021
2003
|
default: null;
|
|
@@ -2025,6 +2007,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2025
2007
|
default: null;
|
|
2026
2008
|
};
|
|
2027
2009
|
iconReadonly: {
|
|
2010
|
+
/**
|
|
2011
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
2012
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
2013
|
+
*/
|
|
2028
2014
|
type: BooleanConstructor;
|
|
2029
2015
|
default: boolean;
|
|
2030
2016
|
};
|
|
@@ -2037,7 +2023,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2037
2023
|
default: number;
|
|
2038
2024
|
};
|
|
2039
2025
|
disabled: {
|
|
2040
|
-
type: BooleanConstructor;
|
|
2026
|
+
type: BooleanConstructor; /**
|
|
2027
|
+
* Placement of the dropdown contents.
|
|
2028
|
+
*/
|
|
2041
2029
|
default: boolean;
|
|
2042
2030
|
};
|
|
2043
2031
|
stateHighlight: {
|
|
@@ -2119,9 +2107,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2119
2107
|
}>, {
|
|
2120
2108
|
attrs: {
|
|
2121
2109
|
[x: string]: unknown;
|
|
2122
|
-
};
|
|
2123
|
-
* The color of the search.
|
|
2124
|
-
*/
|
|
2110
|
+
};
|
|
2125
2111
|
icon: import("vue").ComputedRef<string>;
|
|
2126
2112
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2127
2113
|
name: {
|
|
@@ -2187,12 +2173,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2187
2173
|
};
|
|
2188
2174
|
state: {
|
|
2189
2175
|
type: () => import("../../../neon").NeonState;
|
|
2190
|
-
default: import("../../../neon").NeonState;
|
|
2191
|
-
|
|
2192
|
-
*/
|
|
2193
|
-
}; /**
|
|
2194
|
-
* The color of the search.
|
|
2195
|
-
*/
|
|
2176
|
+
default: import("../../../neon").NeonState;
|
|
2177
|
+
};
|
|
2196
2178
|
rows: {
|
|
2197
2179
|
type: NumberConstructor;
|
|
2198
2180
|
default: null;
|
|
@@ -2202,6 +2184,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2202
2184
|
default: null;
|
|
2203
2185
|
};
|
|
2204
2186
|
iconReadonly: {
|
|
2187
|
+
/**
|
|
2188
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
2189
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
2190
|
+
*/
|
|
2205
2191
|
type: BooleanConstructor;
|
|
2206
2192
|
default: boolean;
|
|
2207
2193
|
};
|
|
@@ -2214,7 +2200,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2214
2200
|
default: number;
|
|
2215
2201
|
};
|
|
2216
2202
|
disabled: {
|
|
2217
|
-
type: BooleanConstructor;
|
|
2203
|
+
type: BooleanConstructor; /**
|
|
2204
|
+
* Placement of the dropdown contents.
|
|
2205
|
+
*/
|
|
2218
2206
|
default: boolean;
|
|
2219
2207
|
};
|
|
2220
2208
|
stateHighlight: {
|
|
@@ -2290,14 +2278,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2290
2278
|
changeHighlighted: (key: string) => void;
|
|
2291
2279
|
showOptions: () => boolean;
|
|
2292
2280
|
removeSelected: (removed: NeonSearchOption) => void;
|
|
2281
|
+
activeDescendant: import("vue").ComputedRef<string | null>;
|
|
2293
2282
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "filter-changed")[], "update:modelValue" | "filter-changed", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2294
2283
|
/**
|
|
2295
|
-
*
|
|
2296
|
-
*
|
|
2284
|
+
* The selected model value(s). In the case of single select this should be set to a single NeonSearchOption or null.
|
|
2285
|
+
* In the case of multiple selection (multiple=true) pass an Array of selected NeonSearchOptions or an empty array
|
|
2286
|
+
* if nothing is selected.
|
|
2297
2287
|
*/
|
|
2298
2288
|
modelValue: {
|
|
2299
|
-
type: (
|
|
2300
|
-
required: true;
|
|
2289
|
+
type: ((() => NeonSearchOption) | (() => Array<NeonSearchOption>))[];
|
|
2301
2290
|
};
|
|
2302
2291
|
/**
|
|
2303
2292
|
* Placeholder to display in search input when there is no search string entered.
|
|
@@ -2467,9 +2456,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2467
2456
|
}>, {
|
|
2468
2457
|
attrs: {
|
|
2469
2458
|
[x: string]: unknown;
|
|
2470
|
-
};
|
|
2471
|
-
* The color of the search.
|
|
2472
|
-
*/
|
|
2459
|
+
};
|
|
2473
2460
|
icon: import("vue").ComputedRef<string>;
|
|
2474
2461
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2475
2462
|
name: {
|
|
@@ -2516,9 +2503,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2516
2503
|
};
|
|
2517
2504
|
icon: {
|
|
2518
2505
|
type: StringConstructor;
|
|
2519
|
-
default: null;
|
|
2520
|
-
* The color of the search.
|
|
2521
|
-
*/
|
|
2506
|
+
default: null;
|
|
2522
2507
|
};
|
|
2523
2508
|
iconAriaLabel: {
|
|
2524
2509
|
type: StringConstructor;
|
|
@@ -2536,7 +2521,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2536
2521
|
default: NeonSize;
|
|
2537
2522
|
};
|
|
2538
2523
|
color: {
|
|
2539
|
-
type: () => NeonFunctionalColor;
|
|
2524
|
+
type: () => NeonFunctionalColor; /**
|
|
2525
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
2526
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
2527
|
+
*/
|
|
2540
2528
|
default: NeonFunctionalColor;
|
|
2541
2529
|
};
|
|
2542
2530
|
alternateColor: {
|
|
@@ -2549,8 +2537,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2549
2537
|
};
|
|
2550
2538
|
placement: {
|
|
2551
2539
|
type: () => NeonDropdownPlacement;
|
|
2552
|
-
default: NeonDropdownPlacement;
|
|
2553
|
-
|
|
2540
|
+
default: NeonDropdownPlacement; /**
|
|
2541
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
2542
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
2543
|
+
* for multiple selection an empty array is returned.
|
|
2544
|
+
*/
|
|
2545
|
+
}; /**
|
|
2546
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
2547
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
2548
|
+
* for multiple selection an empty array is returned.
|
|
2549
|
+
*/
|
|
2554
2550
|
placementContainer: {
|
|
2555
2551
|
type: () => HTMLElement;
|
|
2556
2552
|
default: null;
|
|
@@ -2580,7 +2576,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2580
2576
|
toggleOpen: () => void;
|
|
2581
2577
|
onBlur: () => void;
|
|
2582
2578
|
onFocus: () => void;
|
|
2583
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
2579
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], "update:modelValue" | "focus" | "blur" | "dropdown-placement", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2584
2580
|
id: {
|
|
2585
2581
|
type: StringConstructor;
|
|
2586
2582
|
};
|
|
@@ -2602,9 +2598,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2602
2598
|
};
|
|
2603
2599
|
icon: {
|
|
2604
2600
|
type: StringConstructor;
|
|
2605
|
-
default: null;
|
|
2606
|
-
* The color of the search.
|
|
2607
|
-
*/
|
|
2601
|
+
default: null;
|
|
2608
2602
|
};
|
|
2609
2603
|
iconAriaLabel: {
|
|
2610
2604
|
type: StringConstructor;
|
|
@@ -2622,7 +2616,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2622
2616
|
default: NeonSize;
|
|
2623
2617
|
};
|
|
2624
2618
|
color: {
|
|
2625
|
-
type: () => NeonFunctionalColor;
|
|
2619
|
+
type: () => NeonFunctionalColor; /**
|
|
2620
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
2621
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
2622
|
+
*/
|
|
2626
2623
|
default: NeonFunctionalColor;
|
|
2627
2624
|
};
|
|
2628
2625
|
alternateColor: {
|
|
@@ -2635,8 +2632,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2635
2632
|
};
|
|
2636
2633
|
placement: {
|
|
2637
2634
|
type: () => NeonDropdownPlacement;
|
|
2638
|
-
default: NeonDropdownPlacement;
|
|
2639
|
-
|
|
2635
|
+
default: NeonDropdownPlacement; /**
|
|
2636
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
2637
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
2638
|
+
* for multiple selection an empty array is returned.
|
|
2639
|
+
*/
|
|
2640
|
+
}; /**
|
|
2641
|
+
* @type {NeonSearchOption | NeonSearchOption[] | null} either the selected option (single select) or an array of
|
|
2642
|
+
* the selected options (multi-select). In the case nothing is selected in single select mode <null> is returned &
|
|
2643
|
+
* for multiple selection an empty array is returned.
|
|
2644
|
+
*/
|
|
2640
2645
|
placementContainer: {
|
|
2641
2646
|
type: () => HTMLElement;
|
|
2642
2647
|
default: null;
|
|
@@ -2650,7 +2655,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2650
2655
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2651
2656
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2652
2657
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
2653
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
2654
2658
|
}>, {
|
|
2655
2659
|
disabled: boolean;
|
|
2656
2660
|
label: string;
|
|
@@ -2705,12 +2709,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2705
2709
|
};
|
|
2706
2710
|
imageAlt: {
|
|
2707
2711
|
type: StringConstructor;
|
|
2708
|
-
default: string;
|
|
2709
|
-
|
|
2710
|
-
*/
|
|
2711
|
-
}; /**
|
|
2712
|
-
* Disable the search
|
|
2713
|
-
*/
|
|
2712
|
+
default: string;
|
|
2713
|
+
};
|
|
2714
2714
|
}>, {
|
|
2715
2715
|
svg: import("vue").ComputedRef<string | null>;
|
|
2716
2716
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -2752,12 +2752,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2752
2752
|
};
|
|
2753
2753
|
imageAlt: {
|
|
2754
2754
|
type: StringConstructor;
|
|
2755
|
-
default: string;
|
|
2756
|
-
|
|
2757
|
-
*/
|
|
2758
|
-
}; /**
|
|
2759
|
-
* Disable the search
|
|
2760
|
-
*/
|
|
2755
|
+
default: string;
|
|
2756
|
+
};
|
|
2761
2757
|
}>> & Readonly<{}>, {
|
|
2762
2758
|
disabled: boolean;
|
|
2763
2759
|
label: string;
|
|
@@ -2790,9 +2786,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2790
2786
|
}>, {
|
|
2791
2787
|
attrs: {
|
|
2792
2788
|
[x: string]: unknown;
|
|
2793
|
-
};
|
|
2794
|
-
* The color of the search.
|
|
2795
|
-
*/
|
|
2789
|
+
};
|
|
2796
2790
|
icon: import("vue").ComputedRef<string>;
|
|
2797
2791
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2798
2792
|
name: {
|
|
@@ -2846,14 +2840,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2846
2840
|
type: StringConstructor;
|
|
2847
2841
|
default: null;
|
|
2848
2842
|
};
|
|
2849
|
-
/**
|
|
2850
|
-
* Disable the search
|
|
2851
|
-
*/
|
|
2852
2843
|
iconAriaLabel: {
|
|
2853
2844
|
type: StringConstructor;
|
|
2854
|
-
};
|
|
2855
|
-
* The size of the dropdown - Small, Medium or Large.
|
|
2856
|
-
*/
|
|
2845
|
+
};
|
|
2857
2846
|
iconPosition: {
|
|
2858
2847
|
type: () => import("../../../neon").NeonHorizontalPosition;
|
|
2859
2848
|
default: import("../../../neon").NeonHorizontalPosition;
|
|
@@ -2946,14 +2935,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2946
2935
|
type: StringConstructor;
|
|
2947
2936
|
default: null;
|
|
2948
2937
|
};
|
|
2949
|
-
/**
|
|
2950
|
-
* Disable the search
|
|
2951
|
-
*/
|
|
2952
2938
|
iconAriaLabel: {
|
|
2953
2939
|
type: StringConstructor;
|
|
2954
|
-
};
|
|
2955
|
-
* The size of the dropdown - Small, Medium or Large.
|
|
2956
|
-
*/
|
|
2940
|
+
};
|
|
2957
2941
|
iconPosition: {
|
|
2958
2942
|
type: () => import("../../../neon").NeonHorizontalPosition;
|
|
2959
2943
|
default: import("../../../neon").NeonHorizontalPosition;
|
|
@@ -3075,9 +3059,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3075
3059
|
}>, {
|
|
3076
3060
|
attrs: {
|
|
3077
3061
|
[x: string]: unknown;
|
|
3078
|
-
};
|
|
3079
|
-
* The color of the search.
|
|
3080
|
-
*/
|
|
3062
|
+
};
|
|
3081
3063
|
icon: import("vue").ComputedRef<string>;
|
|
3082
3064
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3083
3065
|
name: {
|
|
@@ -3172,9 +3154,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3172
3154
|
}>, {
|
|
3173
3155
|
attrs: {
|
|
3174
3156
|
[x: string]: unknown;
|
|
3175
|
-
};
|
|
3176
|
-
* The color of the search.
|
|
3177
|
-
*/
|
|
3157
|
+
};
|
|
3178
3158
|
icon: import("vue").ComputedRef<string>;
|
|
3179
3159
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3180
3160
|
name: {
|
|
@@ -3261,9 +3241,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3261
3241
|
}>, {
|
|
3262
3242
|
attrs: {
|
|
3263
3243
|
[x: string]: unknown;
|
|
3264
|
-
};
|
|
3265
|
-
* The color of the search.
|
|
3266
|
-
*/
|
|
3244
|
+
};
|
|
3267
3245
|
icon: import("vue").ComputedRef<string>;
|
|
3268
3246
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3269
3247
|
name: {
|
|
@@ -3322,12 +3300,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3322
3300
|
};
|
|
3323
3301
|
state: {
|
|
3324
3302
|
type: () => import("../../../neon").NeonState;
|
|
3325
|
-
default: import("../../../neon").NeonState;
|
|
3326
|
-
|
|
3327
|
-
*/
|
|
3328
|
-
}; /**
|
|
3329
|
-
* The color of the search.
|
|
3330
|
-
*/
|
|
3303
|
+
default: import("../../../neon").NeonState;
|
|
3304
|
+
};
|
|
3331
3305
|
rows: {
|
|
3332
3306
|
type: NumberConstructor;
|
|
3333
3307
|
default: null;
|
|
@@ -3337,6 +3311,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3337
3311
|
default: null;
|
|
3338
3312
|
};
|
|
3339
3313
|
iconReadonly: {
|
|
3314
|
+
/**
|
|
3315
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
3316
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
3317
|
+
*/
|
|
3340
3318
|
type: BooleanConstructor;
|
|
3341
3319
|
default: boolean;
|
|
3342
3320
|
};
|
|
@@ -3349,7 +3327,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3349
3327
|
default: number;
|
|
3350
3328
|
};
|
|
3351
3329
|
disabled: {
|
|
3352
|
-
type: BooleanConstructor;
|
|
3330
|
+
type: BooleanConstructor; /**
|
|
3331
|
+
* Placement of the dropdown contents.
|
|
3332
|
+
*/
|
|
3353
3333
|
default: boolean;
|
|
3354
3334
|
};
|
|
3355
3335
|
stateHighlight: {
|
|
@@ -3420,12 +3400,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3420
3400
|
};
|
|
3421
3401
|
state: {
|
|
3422
3402
|
type: () => import("../../../neon").NeonState;
|
|
3423
|
-
default: import("../../../neon").NeonState;
|
|
3424
|
-
|
|
3425
|
-
*/
|
|
3426
|
-
}; /**
|
|
3427
|
-
* The color of the search.
|
|
3428
|
-
*/
|
|
3403
|
+
default: import("../../../neon").NeonState;
|
|
3404
|
+
};
|
|
3429
3405
|
rows: {
|
|
3430
3406
|
type: NumberConstructor;
|
|
3431
3407
|
default: null;
|
|
@@ -3435,6 +3411,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3435
3411
|
default: null;
|
|
3436
3412
|
};
|
|
3437
3413
|
iconReadonly: {
|
|
3414
|
+
/**
|
|
3415
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
3416
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
3417
|
+
*/
|
|
3438
3418
|
type: BooleanConstructor;
|
|
3439
3419
|
default: boolean;
|
|
3440
3420
|
};
|
|
@@ -3447,7 +3427,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3447
3427
|
default: number;
|
|
3448
3428
|
};
|
|
3449
3429
|
disabled: {
|
|
3450
|
-
type: BooleanConstructor;
|
|
3430
|
+
type: BooleanConstructor; /**
|
|
3431
|
+
* Placement of the dropdown contents.
|
|
3432
|
+
*/
|
|
3451
3433
|
default: boolean;
|
|
3452
3434
|
};
|
|
3453
3435
|
stateHighlight: {
|
|
@@ -3512,9 +3494,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3512
3494
|
}>, {
|
|
3513
3495
|
attrs: {
|
|
3514
3496
|
[x: string]: unknown;
|
|
3515
|
-
};
|
|
3516
|
-
* The color of the search.
|
|
3517
|
-
*/
|
|
3497
|
+
};
|
|
3518
3498
|
icon: import("vue").ComputedRef<string>;
|
|
3519
3499
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3520
3500
|
name: {
|