@react-spectrum/combobox 3.2.1-nightly.3038 → 3.2.1-nightly.3062
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/main.css +1 -2
- package/dist/main.js +1104 -993
- package/dist/main.js.map +1 -1
- package/dist/module.js +1098 -911
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +4 -4
- package/dist/types.d.ts.map +1 -1
- package/package.json +27 -27
- package/dist/main.css.map +0 -1
package/dist/module.js
CHANGED
|
@@ -1,935 +1,1122 @@
|
|
|
1
|
-
import { useProviderProps, useProvider } from "@react-spectrum/provider";
|
|
2
|
-
import { useFilter, useMessageFormatter } from "@react-aria/i18n";
|
|
3
|
-
import { useField } from "@react-aria/label";
|
|
4
|
-
import { useDialog } from "@react-aria/dialog";
|
|
5
|
-
import { useComboBox } from "@react-aria/combobox";
|
|
6
|
-
import { useButton } from "@react-aria/button";
|
|
7
|
-
import { Tray, Popover } from "@react-spectrum/overlays";
|
|
8
|
-
import { TextFieldBase } from "@react-spectrum/textfield";
|
|
9
|
-
import { setInteractionModality, useHover, PressResponder } from "@react-aria/interactions";
|
|
10
|
-
import _react, { useCallback, useEffect, useRef, useState } from "react";
|
|
11
|
-
import { ProgressCircle } from "@react-spectrum/progress";
|
|
12
|
-
import { mergeProps, useId, useLayoutEffect } from "@react-aria/utils";
|
|
13
|
-
import { useComboBoxState } from "@react-stately/combobox";
|
|
14
|
-
import _spectrumIconsUiCheckmarkMedium from "@spectrum-icons/ui/CheckmarkMedium";
|
|
15
|
-
import _spectrumIconsUiAlertMedium from "@spectrum-icons/ui/AlertMedium";
|
|
16
|
-
import { ListBoxBase, useListBoxLayout } from "@react-spectrum/listbox";
|
|
17
|
-
import { FocusRing, FocusScope, focusSafely } from "@react-aria/focus";
|
|
18
|
-
import { FieldButton, ClearButton } from "@react-spectrum/button";
|
|
19
|
-
import { Field } from "@react-spectrum/label";
|
|
20
|
-
import { DismissButton, useOverlayPosition, useOverlayTrigger } from "@react-aria/overlays";
|
|
21
|
-
import { classNames, useFocusableRef, useIsMobileDevice, useResizeObserver, useUnwrapDOMRef, unwrapDOMRef } from "@react-spectrum/utils";
|
|
22
|
-
import _spectrumIconsUiChevronDownMedium from "@spectrum-icons/ui/ChevronDownMedium";
|
|
23
|
-
import _babelRuntimeHelpersEsmInteropRequireDefault from "@babel/runtime/helpers/esm/interopRequireDefault";
|
|
24
|
-
import _babelRuntimeHelpersEsmExtends from "@babel/runtime/helpers/esm/extends";
|
|
25
|
-
import { Item, Section } from "@react-stately/collections";
|
|
26
|
-
export { Item, Section };
|
|
27
1
|
import "./main.css";
|
|
2
|
+
import {Item as $9bebe0bd899521d2$re_export$Item, Section as $9bebe0bd899521d2$re_export$Section} from "@react-stately/collections";
|
|
3
|
+
import $9LdFq$spectrumiconsuiChevronDownMedium from "@spectrum-icons/ui/ChevronDownMedium";
|
|
4
|
+
import {useIsMobileDevice as $9LdFq$useIsMobileDevice, useUnwrapDOMRef as $9LdFq$useUnwrapDOMRef, useFocusableRef as $9LdFq$useFocusableRef, useResizeObserver as $9LdFq$useResizeObserver, classNames as $9LdFq$classNames, unwrapDOMRef as $9LdFq$unwrapDOMRef} from "@react-spectrum/utils";
|
|
5
|
+
import {useOverlayPosition as $9LdFq$useOverlayPosition, DismissButton as $9LdFq$DismissButton, useOverlayTrigger as $9LdFq$useOverlayTrigger} from "@react-aria/overlays";
|
|
6
|
+
import {Field as $9LdFq$Field} from "@react-spectrum/label";
|
|
7
|
+
import {FieldButton as $9LdFq$FieldButton, ClearButton as $9LdFq$ClearButton} from "@react-spectrum/button";
|
|
8
|
+
import {FocusRing as $9LdFq$FocusRing, focusSafely as $9LdFq$focusSafely, FocusScope as $9LdFq$FocusScope} from "@react-aria/focus";
|
|
9
|
+
import {useListBoxLayout as $9LdFq$useListBoxLayout, ListBoxBase as $9LdFq$ListBoxBase} from "@react-spectrum/listbox";
|
|
10
|
+
import {Popover as $9LdFq$Popover, Tray as $9LdFq$Tray} from "@react-spectrum/overlays";
|
|
11
|
+
import {useHover as $9LdFq$useHover, PressResponder as $9LdFq$PressResponder, setInteractionModality as $9LdFq$setInteractionModality} from "@react-aria/interactions";
|
|
12
|
+
import {ProgressCircle as $9LdFq$ProgressCircle} from "@react-spectrum/progress";
|
|
13
|
+
import $9LdFq$react, {useRef as $9LdFq$useRef, useState as $9LdFq$useState, useCallback as $9LdFq$useCallback, useEffect as $9LdFq$useEffect} from "react";
|
|
14
|
+
import {TextFieldBase as $9LdFq$TextFieldBase} from "@react-spectrum/textfield";
|
|
15
|
+
import {useComboBox as $9LdFq$useComboBox} from "@react-aria/combobox";
|
|
16
|
+
import {useComboBoxState as $9LdFq$useComboBoxState} from "@react-stately/combobox";
|
|
17
|
+
import {useMessageFormatter as $9LdFq$useMessageFormatter, useFilter as $9LdFq$useFilter} from "@react-aria/i18n";
|
|
18
|
+
import {useLayoutEffect as $9LdFq$useLayoutEffect, mergeProps as $9LdFq$mergeProps, useId as $9LdFq$useId} from "@react-aria/utils";
|
|
19
|
+
import {useProviderProps as $9LdFq$useProviderProps, useProvider as $9LdFq$useProvider} from "@react-spectrum/provider";
|
|
20
|
+
import $9LdFq$spectrumiconsuiAlertMedium from "@spectrum-icons/ui/AlertMedium";
|
|
21
|
+
import $9LdFq$spectrumiconsuiCheckmarkMedium from "@spectrum-icons/ui/CheckmarkMedium";
|
|
22
|
+
import {useButton as $9LdFq$useButton} from "@react-aria/button";
|
|
23
|
+
import {useDialog as $9LdFq$useDialog} from "@react-aria/dialog";
|
|
24
|
+
import {useField as $9LdFq$useField} from "@react-aria/label";
|
|
28
25
|
|
|
29
26
|
function $parcel$interopDefault(a) {
|
|
30
27
|
return a && a.__esModule ? a.default : a;
|
|
31
28
|
}
|
|
29
|
+
function $parcel$export(e, n, v, s) {
|
|
30
|
+
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
31
|
+
}
|
|
32
|
+
var $934aeeeb7b1e4f80$exports = {};
|
|
32
33
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
var $
|
|
48
|
-
$
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
var $
|
|
89
|
-
$
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
$
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
var $
|
|
101
|
-
$
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
$
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
var $
|
|
113
|
-
$
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
$
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
var $
|
|
125
|
-
$
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
$
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
var $
|
|
137
|
-
$
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
$
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
var $
|
|
149
|
-
$
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
$
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
var $
|
|
161
|
-
$
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
$
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
var $
|
|
173
|
-
$
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
$
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
var $
|
|
185
|
-
$
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
$
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
};
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
$
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
"spectrum-FieldButton--invalid": "_spectrum-FieldButton--invalid_17c83"
|
|
244
|
-
};
|
|
245
|
-
// ASSET: /home/circleci/react-spectrum/node_modules/@adobe/spectrum-css-temp/components/textfield/vars.css
|
|
246
|
-
var $aa1c742e7a2a16aa7981ca9e2f4a89$exports = {};
|
|
247
|
-
$aa1c742e7a2a16aa7981ca9e2f4a89$exports = {
|
|
248
|
-
"spectrum-Textfield-input": "_spectrum-Textfield-input_10f9f",
|
|
249
|
-
"spectrum-Textfield": "_spectrum-Textfield_10f9f",
|
|
250
|
-
"spectrum-Textfield--quiet": "_spectrum-Textfield--quiet_10f9f",
|
|
251
|
-
"spectrum-Textfield--multiline": "_spectrum-Textfield--multiline_10f9f",
|
|
252
|
-
"is-placeholder": "_is-placeholder_10f9f",
|
|
253
|
-
"is-hovered": "_is-hovered_10f9f",
|
|
254
|
-
"spectrum-Textfield--valid": "_spectrum-Textfield--valid_10f9f",
|
|
255
|
-
"spectrum-Textfield--invalid": "_spectrum-Textfield--invalid_10f9f",
|
|
256
|
-
"spectrum-Textfield--loadable": "_spectrum-Textfield--loadable_10f9f",
|
|
257
|
-
"spectrum-Textfield-validationIcon": "_spectrum-Textfield-validationIcon_10f9f",
|
|
258
|
-
"spectrum-Textfield-icon": "_spectrum-Textfield-icon_10f9f",
|
|
259
|
-
"spectrum-Textfield-inputIcon": "_spectrum-Textfield-inputIcon_10f9f",
|
|
260
|
-
"spectrum-Textfield-circleLoader": "_spectrum-Textfield-circleLoader_10f9f",
|
|
261
|
-
"is-focused": "_is-focused_10f9f",
|
|
262
|
-
"focus-ring": "_focus-ring_10f9f",
|
|
263
|
-
"is-disabled": "_is-disabled_10f9f"
|
|
264
|
-
};
|
|
265
|
-
// @ts-ignore
|
|
266
|
-
const $f30f10b3f7806340277c0b2046944ca$var$intlMessages = {
|
|
267
|
-
"ar-AE": _babelRuntimeHelpersEsmInteropRequireDefault($aeabefb3f029f59bb5fb8536b65cc107$exports).default,
|
|
268
|
-
"bg-BG": _babelRuntimeHelpersEsmInteropRequireDefault($e81215b32fa7db9a7878fa16113eb13d$exports).default,
|
|
269
|
-
"cs-CZ": _babelRuntimeHelpersEsmInteropRequireDefault($bb869dea6e09984e8b04fe440dc02ec$exports).default,
|
|
270
|
-
"da-DK": _babelRuntimeHelpersEsmInteropRequireDefault($eaf0e4fc84da4e97fcf8b24a0663f670$exports).default,
|
|
271
|
-
"de-DE": _babelRuntimeHelpersEsmInteropRequireDefault($b56bf5d22cb0f8734a4fc5ee20a9$exports).default,
|
|
272
|
-
"el-GR": _babelRuntimeHelpersEsmInteropRequireDefault($e2505be9c44ad2de362aed02038721c6$exports).default,
|
|
273
|
-
"en-US": _babelRuntimeHelpersEsmInteropRequireDefault($d463e3a7667fca55cd060af86bae6dc7$exports).default,
|
|
274
|
-
"es-ES": _babelRuntimeHelpersEsmInteropRequireDefault($d4e2ba5b2cf0711ecf714c846bf7985$exports).default,
|
|
275
|
-
"et-EE": _babelRuntimeHelpersEsmInteropRequireDefault($e3596e15452c69f045c20524dbb2$exports).default,
|
|
276
|
-
"fi-FI": _babelRuntimeHelpersEsmInteropRequireDefault($c945fdb8634b778ebd85cce64d9f$exports).default,
|
|
277
|
-
"fr-FR": _babelRuntimeHelpersEsmInteropRequireDefault($ddf38499897200fd5686ac2871649df$exports).default,
|
|
278
|
-
"he-IL": _babelRuntimeHelpersEsmInteropRequireDefault($a41bddea8c9d7e8d301620d4e42f$exports).default,
|
|
279
|
-
"hr-HR": _babelRuntimeHelpersEsmInteropRequireDefault($c91221142608664f57adc7c440d25c5c$exports).default,
|
|
280
|
-
"hu-HU": _babelRuntimeHelpersEsmInteropRequireDefault($fbc3e6ba153b38828dbd4e51aedcd9c$exports).default,
|
|
281
|
-
"it-IT": _babelRuntimeHelpersEsmInteropRequireDefault($e136b067ceb9d5b9a035ed9f5faa6018$exports).default,
|
|
282
|
-
"ja-JP": _babelRuntimeHelpersEsmInteropRequireDefault($bc0662f1900351b0445924c5be7$exports).default,
|
|
283
|
-
"ko-KR": _babelRuntimeHelpersEsmInteropRequireDefault($aae5c87ddbf07a13d7cf3cb3c706c096$exports).default,
|
|
284
|
-
"lt-LT": _babelRuntimeHelpersEsmInteropRequireDefault($f9bf28c16957dd98d784eef2160689$exports).default,
|
|
285
|
-
"lv-LV": _babelRuntimeHelpersEsmInteropRequireDefault($c41b94dd0457195a34a60e9d0893d89e$exports).default,
|
|
286
|
-
"nb-NO": _babelRuntimeHelpersEsmInteropRequireDefault($f8ae30ecd9af5338c78bf67acc6fb392$exports).default,
|
|
287
|
-
"nl-NL": _babelRuntimeHelpersEsmInteropRequireDefault($f21b1c8f7ed4d2e3b8bb19291cb8$exports).default,
|
|
288
|
-
"pl-PL": _babelRuntimeHelpersEsmInteropRequireDefault($e4cc01ee8904e31a9a335f923ae8629a$exports).default,
|
|
289
|
-
"pt-BR": _babelRuntimeHelpersEsmInteropRequireDefault($df8dca18e32a461efd140442fc548c72$exports).default,
|
|
290
|
-
"pt-PT": _babelRuntimeHelpersEsmInteropRequireDefault($e5697b97bd7b08a87614a3a63c2233$exports).default,
|
|
291
|
-
"ro-RO": _babelRuntimeHelpersEsmInteropRequireDefault($a4d94a6f59475598baa70097a6ac3345$exports).default,
|
|
292
|
-
"ru-RU": _babelRuntimeHelpersEsmInteropRequireDefault($ec693ed520530f049bb03a9de8f2$exports).default,
|
|
293
|
-
"sk-SK": _babelRuntimeHelpersEsmInteropRequireDefault($b620d822b146f7dbd3c5d9fd416f3640$exports).default,
|
|
294
|
-
"sl-SI": _babelRuntimeHelpersEsmInteropRequireDefault($f131bcd2c7e8f9c8460b2a7928760dc$exports).default,
|
|
295
|
-
"sr-SP": _babelRuntimeHelpersEsmInteropRequireDefault($eeedef4ebbff571eaf41ecd136f71$exports).default,
|
|
296
|
-
"sv-SE": _babelRuntimeHelpersEsmInteropRequireDefault($db418128beb57024edf7ac9e84c764e1$exports).default,
|
|
297
|
-
"tr-TR": _babelRuntimeHelpersEsmInteropRequireDefault($eb9f1cce2dfb7c8c5b9ea893e144ce0d$exports).default,
|
|
298
|
-
"uk-UA": _babelRuntimeHelpersEsmInteropRequireDefault($d7aab1629c77f8c4b88e2938949da4$exports).default,
|
|
299
|
-
"zh-CN": _babelRuntimeHelpersEsmInteropRequireDefault($f22a63a5549fed0b00db96652c08cf$exports).default,
|
|
300
|
-
"zh-TW": _babelRuntimeHelpersEsmInteropRequireDefault($c5ea069e7a6e02a0a53f10506cd9b35$exports).default
|
|
34
|
+
$parcel$export($934aeeeb7b1e4f80$exports, "ComboBox", () => $934aeeeb7b1e4f80$export$72b9695b8216309a);
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
var $d19a056b45e63e97$exports = {};
|
|
38
|
+
|
|
39
|
+
$parcel$export($d19a056b45e63e97$exports, "no-results", () => $d19a056b45e63e97$export$5b1939da91820a47, (v) => $d19a056b45e63e97$export$5b1939da91820a47 = v);
|
|
40
|
+
$parcel$export($d19a056b45e63e97$exports, "mobile-combobox", () => $d19a056b45e63e97$export$31f2f19e6c50453d, (v) => $d19a056b45e63e97$export$31f2f19e6c50453d = v);
|
|
41
|
+
$parcel$export($d19a056b45e63e97$exports, "mobile-input", () => $d19a056b45e63e97$export$bededa1c0ac414c5, (v) => $d19a056b45e63e97$export$bededa1c0ac414c5 = v);
|
|
42
|
+
$parcel$export($d19a056b45e63e97$exports, "mobile-value", () => $d19a056b45e63e97$export$e32ca2bb9f795355, (v) => $d19a056b45e63e97$export$e32ca2bb9f795355 = v);
|
|
43
|
+
$parcel$export($d19a056b45e63e97$exports, "tray-dialog", () => $d19a056b45e63e97$export$3d4198eea215577a, (v) => $d19a056b45e63e97$export$3d4198eea215577a = v);
|
|
44
|
+
$parcel$export($d19a056b45e63e97$exports, "tray-textfield", () => $d19a056b45e63e97$export$73cc97e04e76a6d0, (v) => $d19a056b45e63e97$export$73cc97e04e76a6d0 = v);
|
|
45
|
+
$parcel$export($d19a056b45e63e97$exports, "has-label", () => $d19a056b45e63e97$export$b8e014ff9ad5e5e2, (v) => $d19a056b45e63e97$export$b8e014ff9ad5e5e2 = v);
|
|
46
|
+
$parcel$export($d19a056b45e63e97$exports, "tray-textfield-input", () => $d19a056b45e63e97$export$feb70b7bc717e2b8, (v) => $d19a056b45e63e97$export$feb70b7bc717e2b8 = v);
|
|
47
|
+
$parcel$export($d19a056b45e63e97$exports, "tray-listbox", () => $d19a056b45e63e97$export$7281dc54d38d4bed, (v) => $d19a056b45e63e97$export$7281dc54d38d4bed = v);
|
|
48
|
+
var $d19a056b45e63e97$export$5b1939da91820a47;
|
|
49
|
+
var $d19a056b45e63e97$export$31f2f19e6c50453d;
|
|
50
|
+
var $d19a056b45e63e97$export$bededa1c0ac414c5;
|
|
51
|
+
var $d19a056b45e63e97$export$e32ca2bb9f795355;
|
|
52
|
+
var $d19a056b45e63e97$export$3d4198eea215577a;
|
|
53
|
+
var $d19a056b45e63e97$export$73cc97e04e76a6d0;
|
|
54
|
+
var $d19a056b45e63e97$export$b8e014ff9ad5e5e2;
|
|
55
|
+
var $d19a056b45e63e97$export$feb70b7bc717e2b8;
|
|
56
|
+
var $d19a056b45e63e97$export$7281dc54d38d4bed;
|
|
57
|
+
$d19a056b45e63e97$export$5b1939da91820a47 = "_no-results_743018";
|
|
58
|
+
$d19a056b45e63e97$export$31f2f19e6c50453d = "_mobile-combobox_743018";
|
|
59
|
+
$d19a056b45e63e97$export$bededa1c0ac414c5 = "_mobile-input_743018";
|
|
60
|
+
$d19a056b45e63e97$export$e32ca2bb9f795355 = "_mobile-value_743018";
|
|
61
|
+
$d19a056b45e63e97$export$3d4198eea215577a = "_tray-dialog_743018";
|
|
62
|
+
$d19a056b45e63e97$export$73cc97e04e76a6d0 = "_tray-textfield_743018";
|
|
63
|
+
$d19a056b45e63e97$export$b8e014ff9ad5e5e2 = "_has-label_743018";
|
|
64
|
+
$d19a056b45e63e97$export$feb70b7bc717e2b8 = "_tray-textfield-input_743018";
|
|
65
|
+
$d19a056b45e63e97$export$7281dc54d38d4bed = "_tray-listbox_743018";
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
var $3e29a2ed63b3bab0$exports = {};
|
|
73
|
+
var $eb944d251c2892f7$exports = {};
|
|
74
|
+
$eb944d251c2892f7$exports = JSON.parse("{\"clear\":\"مسح\",\"invalid\":\"(غير صالح)\",\"loading\":\"جارٍ التحميل...\",\"noResults\":\"لا توجد نتائج\"}");
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
var $3a03a562daf78023$exports = {};
|
|
78
|
+
$3a03a562daf78023$exports = JSON.parse("{\"clear\":\"Изчисти\",\"invalid\":\"(невалиден)\",\"loading\":\"Зареждане...\",\"noResults\":\"Няма резултати\"}");
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
var $455c8134a22791ae$exports = {};
|
|
82
|
+
$455c8134a22791ae$exports = JSON.parse("{\"clear\":\"Vymazat\",\"invalid\":\"(neplatné)\",\"loading\":\"Načítání...\",\"noResults\":\"Žádné výsledky\"}");
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
var $421a8c6398705e40$exports = {};
|
|
86
|
+
$421a8c6398705e40$exports = JSON.parse("{\"clear\":\"Ryd\",\"invalid\":\"(ugyldig)\",\"loading\":\"Indlæser ...\",\"noResults\":\"Ingen resultater\"}");
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
var $6ac494d49a5be6e2$exports = {};
|
|
90
|
+
$6ac494d49a5be6e2$exports = JSON.parse("{\"clear\":\"Löschen\",\"invalid\":\"(ungültig)\",\"loading\":\"Wird geladen...\",\"noResults\":\"Keine Ergebnisse\"}");
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
var $e509a9505c613d4c$exports = {};
|
|
94
|
+
$e509a9505c613d4c$exports = JSON.parse("{\"clear\":\"Καθαρισμός\",\"invalid\":\"(δεν ισχύει)\",\"loading\":\"Φόρτωση...\",\"noResults\":\"Χωρίς αποτέλεσμα\"}");
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
var $96f137838a71cd56$exports = {};
|
|
98
|
+
$96f137838a71cd56$exports = JSON.parse("{\"loading\":\"Loading...\",\"noResults\":\"No results\",\"clear\":\"Clear\",\"invalid\":\"(invalid)\"}");
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
var $954e2629ebb70b9a$exports = {};
|
|
102
|
+
$954e2629ebb70b9a$exports = JSON.parse("{\"clear\":\"Borrar\",\"invalid\":\"(no válido)\",\"loading\":\"Cargando...\",\"noResults\":\"Sin resultados\"}");
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
var $b99e531a31c02ba4$exports = {};
|
|
106
|
+
$b99e531a31c02ba4$exports = JSON.parse("{\"clear\":\"Puhasta\",\"invalid\":\"(kehtetu)\",\"loading\":\"Laadimine...\",\"noResults\":\"Tulemusi pole\"}");
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
var $13cc385173b86610$exports = {};
|
|
110
|
+
$13cc385173b86610$exports = JSON.parse("{\"clear\":\"Kirkas\",\"invalid\":\"(epäkelpo)\",\"loading\":\"Ladataan...\",\"noResults\":\"Ei tuloksia\"}");
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
var $e562aeafe23ed61c$exports = {};
|
|
114
|
+
$e562aeafe23ed61c$exports = JSON.parse("{\"clear\":\"Effacer\",\"invalid\":\"(non valide)\",\"loading\":\"Chargement en cours...\",\"noResults\":\"Aucun résultat\"}");
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
var $e7bba0eeb6e7d42d$exports = {};
|
|
118
|
+
$e7bba0eeb6e7d42d$exports = JSON.parse("{\"clear\":\"נקי\",\"invalid\":\"(לא חוקי)\",\"loading\":\"טוען...\",\"noResults\":\"אין תוצאות\"}");
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
var $1e55b7117734ea61$exports = {};
|
|
122
|
+
$1e55b7117734ea61$exports = JSON.parse("{\"clear\":\"Izbriši\",\"invalid\":\"(nevažeće)\",\"loading\":\"Učitavam...\",\"noResults\":\"Nema rezultata\"}");
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
var $1ce755086f6ffdc8$exports = {};
|
|
126
|
+
$1ce755086f6ffdc8$exports = JSON.parse("{\"clear\":\"Törlés\",\"invalid\":\"(érvénytelen)\",\"loading\":\"Betöltés folyamatban…\",\"noResults\":\"Nincsenek találatok\"}");
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
var $f7d147f3f32ad537$exports = {};
|
|
130
|
+
$f7d147f3f32ad537$exports = JSON.parse("{\"clear\":\"Cancella\",\"invalid\":\"(non valido)\",\"loading\":\"Caricamento in corso...\",\"noResults\":\"Nessun risultato\"}");
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
var $10906f62c87f0ea9$exports = {};
|
|
134
|
+
$10906f62c87f0ea9$exports = JSON.parse("{\"clear\":\"クリア\",\"invalid\":\"(無効)\",\"loading\":\"読み込み中...\",\"noResults\":\"結果なし\"}");
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
var $9f2afc8e0fefa590$exports = {};
|
|
138
|
+
$9f2afc8e0fefa590$exports = JSON.parse("{\"clear\":\"지우기\",\"invalid\":\"(유효하지 않음)\",\"loading\":\"로드 중...\",\"noResults\":\"결과 없음\"}");
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
var $144753a1aa2b8705$exports = {};
|
|
142
|
+
$144753a1aa2b8705$exports = JSON.parse("{\"clear\":\"Skaidrus\",\"invalid\":\"(netinkama)\",\"loading\":\"Įkeliama...\",\"noResults\":\"Be rezultatų\"}");
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
var $78a1f78322d1f0d0$exports = {};
|
|
146
|
+
$78a1f78322d1f0d0$exports = JSON.parse("{\"clear\":\"Notīrīt\",\"invalid\":\"(nederīgs)\",\"loading\":\"Notiek ielāde...\",\"noResults\":\"Nav rezultātu\"}");
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
var $621fd3db6253d987$exports = {};
|
|
150
|
+
$621fd3db6253d987$exports = JSON.parse("{\"clear\":\"Tøm\",\"invalid\":\"(ugyldig)\",\"loading\":\"Laster inn ...\",\"noResults\":\"Ingen resultater\"}");
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
var $2e78b428737e4dac$exports = {};
|
|
154
|
+
$2e78b428737e4dac$exports = JSON.parse("{\"clear\":\"Helder\",\"invalid\":\"(ongeldig)\",\"loading\":\"Laden...\",\"noResults\":\"Geen resultaten\"}");
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
var $6df3401dcd2da987$exports = {};
|
|
158
|
+
$6df3401dcd2da987$exports = JSON.parse("{\"clear\":\"Wyczyść\",\"invalid\":\"(nieprawidłowy)\",\"loading\":\"Trwa ładowanie...\",\"noResults\":\"Brak wyników\"}");
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
var $5094cba9061d1826$exports = {};
|
|
162
|
+
$5094cba9061d1826$exports = JSON.parse("{\"clear\":\"Limpar\",\"invalid\":\"(inválido)\",\"loading\":\"Carregando...\",\"noResults\":\"Nenhum resultado\"}");
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
var $b7e31d0e82865691$exports = {};
|
|
166
|
+
$b7e31d0e82865691$exports = JSON.parse("{\"clear\":\"Limpar\",\"invalid\":\"(inválido)\",\"loading\":\"A carregar...\",\"noResults\":\"Sem resultados\"}");
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
var $33aaa94b97df6581$exports = {};
|
|
170
|
+
$33aaa94b97df6581$exports = JSON.parse("{\"clear\":\"Golire\",\"invalid\":\"(nevalid)\",\"loading\":\"Se încarcă...\",\"noResults\":\"Niciun rezultat\"}");
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
var $bea4d99a56ed844a$exports = {};
|
|
174
|
+
$bea4d99a56ed844a$exports = JSON.parse("{\"clear\":\"Очистить\",\"invalid\":\"(недействительно)\",\"loading\":\"Загрузка...\",\"noResults\":\"Результаты отсутствуют\"}");
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
var $507320cf7259e27c$exports = {};
|
|
178
|
+
$507320cf7259e27c$exports = JSON.parse("{\"clear\":\"Vymazať\",\"invalid\":\"(neplatné)\",\"loading\":\"Načítava sa...\",\"noResults\":\"Žiadne výsledky\"}");
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
var $61eec90ba0aa258a$exports = {};
|
|
182
|
+
$61eec90ba0aa258a$exports = JSON.parse("{\"clear\":\"Jasen\",\"invalid\":\"(neveljavno)\",\"loading\":\"Nalaganje...\",\"noResults\":\"Ni rezultatov\"}");
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
var $79ecc7c19883f4eb$exports = {};
|
|
186
|
+
$79ecc7c19883f4eb$exports = JSON.parse("{\"clear\":\"Izbriši\",\"invalid\":\"(nevažeće)\",\"loading\":\"Učitavam...\",\"noResults\":\"Nema rezultata\"}");
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
var $32f47bebba470a51$exports = {};
|
|
190
|
+
$32f47bebba470a51$exports = JSON.parse("{\"clear\":\"Rensa\",\"invalid\":\"(ogiltigt)\",\"loading\":\"Läser in...\",\"noResults\":\"Inga resultat\"}");
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
var $6f30a884e803de22$exports = {};
|
|
194
|
+
$6f30a884e803de22$exports = JSON.parse("{\"clear\":\"Temizle\",\"invalid\":\"(geçersiz)\",\"loading\":\"Yükleniyor...\",\"noResults\":\"Sonuç yok\"}");
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
var $4a5fb4d14009ce53$exports = {};
|
|
198
|
+
$4a5fb4d14009ce53$exports = JSON.parse("{\"clear\":\"Очистити\",\"invalid\":\"(недійсне)\",\"loading\":\"Завантаження...\",\"noResults\":\"Результатів немає\"}");
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
var $fb76e5278c3a5830$exports = {};
|
|
202
|
+
$fb76e5278c3a5830$exports = JSON.parse("{\"clear\":\"透明\",\"invalid\":\"(无效)\",\"loading\":\"正在加载...\",\"noResults\":\"无结果\"}");
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
var $a379231c675e4f7a$exports = {};
|
|
206
|
+
$a379231c675e4f7a$exports = JSON.parse("{\"clear\":\"清除\",\"invalid\":\"(無效)\",\"loading\":\"正在載入...\",\"noResults\":\"無任何結果\"}");
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
$3e29a2ed63b3bab0$exports = {
|
|
210
|
+
"ar-AE": $eb944d251c2892f7$exports,
|
|
211
|
+
"bg-BG": $3a03a562daf78023$exports,
|
|
212
|
+
"cs-CZ": $455c8134a22791ae$exports,
|
|
213
|
+
"da-DK": $421a8c6398705e40$exports,
|
|
214
|
+
"de-DE": $6ac494d49a5be6e2$exports,
|
|
215
|
+
"el-GR": $e509a9505c613d4c$exports,
|
|
216
|
+
"en-US": $96f137838a71cd56$exports,
|
|
217
|
+
"es-ES": $954e2629ebb70b9a$exports,
|
|
218
|
+
"et-EE": $b99e531a31c02ba4$exports,
|
|
219
|
+
"fi-FI": $13cc385173b86610$exports,
|
|
220
|
+
"fr-FR": $e562aeafe23ed61c$exports,
|
|
221
|
+
"he-IL": $e7bba0eeb6e7d42d$exports,
|
|
222
|
+
"hr-HR": $1e55b7117734ea61$exports,
|
|
223
|
+
"hu-HU": $1ce755086f6ffdc8$exports,
|
|
224
|
+
"it-IT": $f7d147f3f32ad537$exports,
|
|
225
|
+
"ja-JP": $10906f62c87f0ea9$exports,
|
|
226
|
+
"ko-KR": $9f2afc8e0fefa590$exports,
|
|
227
|
+
"lt-LT": $144753a1aa2b8705$exports,
|
|
228
|
+
"lv-LV": $78a1f78322d1f0d0$exports,
|
|
229
|
+
"nb-NO": $621fd3db6253d987$exports,
|
|
230
|
+
"nl-NL": $2e78b428737e4dac$exports,
|
|
231
|
+
"pl-PL": $6df3401dcd2da987$exports,
|
|
232
|
+
"pt-BR": $5094cba9061d1826$exports,
|
|
233
|
+
"pt-PT": $b7e31d0e82865691$exports,
|
|
234
|
+
"ro-RO": $33aaa94b97df6581$exports,
|
|
235
|
+
"ru-RU": $bea4d99a56ed844a$exports,
|
|
236
|
+
"sk-SK": $507320cf7259e27c$exports,
|
|
237
|
+
"sl-SI": $61eec90ba0aa258a$exports,
|
|
238
|
+
"sr-SP": $79ecc7c19883f4eb$exports,
|
|
239
|
+
"sv-SE": $32f47bebba470a51$exports,
|
|
240
|
+
"tr-TR": $6f30a884e803de22$exports,
|
|
241
|
+
"uk-UA": $4a5fb4d14009ce53$exports,
|
|
242
|
+
"zh-CN": $fb76e5278c3a5830$exports,
|
|
243
|
+
"zh-TW": $a379231c675e4f7a$exports
|
|
301
244
|
};
|
|
302
245
|
|
|
303
|
-
const $f30f10b3f7806340277c0b2046944ca$export$MobileComboBox = /*#__PURE__*/_react.forwardRef(function MobileComboBox(props, ref) {
|
|
304
|
-
props = useProviderProps(props);
|
|
305
|
-
let {
|
|
306
|
-
isQuiet,
|
|
307
|
-
isDisabled,
|
|
308
|
-
validationState,
|
|
309
|
-
isReadOnly
|
|
310
|
-
} = props;
|
|
311
|
-
let {
|
|
312
|
-
contains
|
|
313
|
-
} = useFilter({
|
|
314
|
-
sensitivity: 'base'
|
|
315
|
-
});
|
|
316
|
-
let state = useComboBoxState(_babelRuntimeHelpersEsmExtends({}, props, {
|
|
317
|
-
defaultFilter: contains,
|
|
318
|
-
allowsEmptyCollection: true,
|
|
319
|
-
// Needs to be false here otherwise we double up on commitSelection/commitCustomValue calls when
|
|
320
|
-
// user taps on underlay (i.e. initial tap will call setFocused(false) -> commitSelection/commitCustomValue via onBlur,
|
|
321
|
-
// then the closing of the tray will call setFocused(false) again due to cleanup effect)
|
|
322
|
-
shouldCloseOnBlur: false
|
|
323
|
-
}));
|
|
324
|
-
let buttonRef = useRef();
|
|
325
|
-
let domRef = useFocusableRef(ref, buttonRef);
|
|
326
|
-
let {
|
|
327
|
-
triggerProps,
|
|
328
|
-
overlayProps
|
|
329
|
-
} = useOverlayTrigger({
|
|
330
|
-
type: 'listbox'
|
|
331
|
-
}, state, buttonRef);
|
|
332
|
-
let {
|
|
333
|
-
labelProps,
|
|
334
|
-
fieldProps
|
|
335
|
-
} = useField(_babelRuntimeHelpersEsmExtends({}, props, {
|
|
336
|
-
labelElementType: 'span'
|
|
337
|
-
})); // Focus the button and show focus ring when clicking on the label
|
|
338
|
-
|
|
339
|
-
labelProps.onClick = () => {
|
|
340
|
-
if (!props.isDisabled) {
|
|
341
|
-
buttonRef.current.focus();
|
|
342
|
-
setInteractionModality('keyboard');
|
|
343
|
-
}
|
|
344
|
-
};
|
|
345
|
-
|
|
346
|
-
let onClose = () => state.commit();
|
|
347
|
-
|
|
348
|
-
return /*#__PURE__*/_react.createElement(_react.Fragment, null, /*#__PURE__*/_react.createElement(Field, _babelRuntimeHelpersEsmExtends({}, props, {
|
|
349
|
-
labelProps: labelProps,
|
|
350
|
-
elementType: "span",
|
|
351
|
-
ref: domRef,
|
|
352
|
-
includeNecessityIndicatorInAccessibilityName: true
|
|
353
|
-
}), /*#__PURE__*/_react.createElement($f30f10b3f7806340277c0b2046944ca$var$ComboBoxButton, _babelRuntimeHelpersEsmExtends({}, mergeProps(triggerProps, fieldProps, {
|
|
354
|
-
autoFocus: props.autoFocus
|
|
355
|
-
}), {
|
|
356
|
-
ref: buttonRef,
|
|
357
|
-
isQuiet: isQuiet,
|
|
358
|
-
isDisabled: isDisabled,
|
|
359
|
-
isPlaceholder: !state.inputValue,
|
|
360
|
-
validationState: validationState,
|
|
361
|
-
onPress: () => !isReadOnly && state.open(null, 'manual')
|
|
362
|
-
}), state.inputValue || props.placeholder || '')), /*#__PURE__*/_react.createElement(Tray, _babelRuntimeHelpersEsmExtends({
|
|
363
|
-
isOpen: state.isOpen,
|
|
364
|
-
onClose: onClose,
|
|
365
|
-
isFixedHeight: true,
|
|
366
|
-
isNonModal: true
|
|
367
|
-
}, overlayProps), /*#__PURE__*/_react.createElement($f30f10b3f7806340277c0b2046944ca$var$ComboBoxTray, _babelRuntimeHelpersEsmExtends({}, props, {
|
|
368
|
-
onClose: onClose,
|
|
369
|
-
overlayProps: overlayProps,
|
|
370
|
-
state: state
|
|
371
|
-
}))));
|
|
372
|
-
});
|
|
373
246
|
|
|
374
|
-
var $aa1c742e7a2a16aa7981ca9e2f4a89$$interop$default = $parcel$interopDefault($aa1c742e7a2a16aa7981ca9e2f4a89$exports);
|
|
375
|
-
var $ed163f34af6780259e0266609fb62099$$interop$default = $parcel$interopDefault($ed163f34af6780259e0266609fb62099$exports);
|
|
376
|
-
var $dea09d50cdec57db7ad515930d6daf$$interop$default = $parcel$interopDefault($dea09d50cdec57db7ad515930d6daf$exports);
|
|
377
|
-
var $c9fb1f4220ea2c59cb2e10f0e9828c6e$$interop$default = $parcel$interopDefault($c9fb1f4220ea2c59cb2e10f0e9828c6e$exports);
|
|
378
|
-
var $a0b8eb4b46824fd288195a4db8814b$$interop$default = $parcel$interopDefault($a0b8eb4b46824fd288195a4db8814b$exports);
|
|
379
|
-
|
|
380
|
-
const $f30f10b3f7806340277c0b2046944ca$var$ComboBoxButton = /*#__PURE__*/_react.forwardRef(function ComboBoxButton(props, ref) {
|
|
381
|
-
let {
|
|
382
|
-
isQuiet,
|
|
383
|
-
isDisabled,
|
|
384
|
-
isPlaceholder,
|
|
385
|
-
validationState,
|
|
386
|
-
children,
|
|
387
|
-
style,
|
|
388
|
-
className
|
|
389
|
-
} = props;
|
|
390
|
-
let formatMessage = useMessageFormatter($f30f10b3f7806340277c0b2046944ca$var$intlMessages);
|
|
391
|
-
let valueId = useId();
|
|
392
|
-
let invalidId = useId();
|
|
393
|
-
let validationIcon = validationState === 'invalid' ? /*#__PURE__*/_react.createElement(_spectrumIconsUiAlertMedium, {
|
|
394
|
-
id: invalidId,
|
|
395
|
-
"aria-label": formatMessage('invalid')
|
|
396
|
-
}) : /*#__PURE__*/_react.createElement(_spectrumIconsUiCheckmarkMedium, null);
|
|
397
|
-
|
|
398
|
-
let validation = /*#__PURE__*/_react.cloneElement(validationIcon, {
|
|
399
|
-
UNSAFE_className: classNames($aa1c742e7a2a16aa7981ca9e2f4a89$$interop$default, 'spectrum-Textfield-validationIcon', classNames($ed163f34af6780259e0266609fb62099$$interop$default, 'spectrum-InputGroup-input-validationIcon'))
|
|
400
|
-
});
|
|
401
|
-
|
|
402
|
-
let {
|
|
403
|
-
hoverProps,
|
|
404
|
-
isHovered
|
|
405
|
-
} = useHover({});
|
|
406
|
-
let {
|
|
407
|
-
buttonProps,
|
|
408
|
-
isPressed
|
|
409
|
-
} = useButton(_babelRuntimeHelpersEsmExtends({}, props, {
|
|
410
|
-
'aria-labelledby': [props['aria-labelledby'], props['aria-label'] && !props['aria-labelledby'] ? props.id : null, valueId, validationState === 'invalid' ? invalidId : null].filter(Boolean).join(' '),
|
|
411
|
-
elementType: 'div'
|
|
412
|
-
}), ref);
|
|
413
|
-
return /*#__PURE__*/_react.createElement(FocusRing, {
|
|
414
|
-
focusClass: classNames($ed163f34af6780259e0266609fb62099$$interop$default, 'is-focused'),
|
|
415
|
-
focusRingClass: classNames($ed163f34af6780259e0266609fb62099$$interop$default, 'focus-ring')
|
|
416
|
-
}, /*#__PURE__*/_react.createElement("div", _babelRuntimeHelpersEsmExtends({}, mergeProps(hoverProps, buttonProps), {
|
|
417
|
-
"aria-haspopup": "dialog",
|
|
418
|
-
ref: ref,
|
|
419
|
-
style: _babelRuntimeHelpersEsmExtends({}, style, {
|
|
420
|
-
outline: 'none'
|
|
421
|
-
}),
|
|
422
|
-
className: classNames($ed163f34af6780259e0266609fb62099$$interop$default, 'spectrum-InputGroup', {
|
|
423
|
-
'spectrum-InputGroup--quiet': isQuiet,
|
|
424
|
-
'is-disabled': isDisabled,
|
|
425
|
-
'spectrum-InputGroup--invalid': validationState === 'invalid',
|
|
426
|
-
'is-hovered': isHovered
|
|
427
|
-
}, classNames($dea09d50cdec57db7ad515930d6daf$$interop$default, 'mobile-combobox'), className)
|
|
428
|
-
}), /*#__PURE__*/_react.createElement("div", {
|
|
429
|
-
className: classNames($aa1c742e7a2a16aa7981ca9e2f4a89$$interop$default, 'spectrum-Textfield', {
|
|
430
|
-
'spectrum-Textfield--invalid': validationState === 'invalid',
|
|
431
|
-
'spectrum-Textfield--valid': validationState === 'valid',
|
|
432
|
-
'spectrum-Textfield--quiet': isQuiet
|
|
433
|
-
}, classNames($ed163f34af6780259e0266609fb62099$$interop$default, 'spectrum-InputGroup-field'))
|
|
434
|
-
}, /*#__PURE__*/_react.createElement("div", {
|
|
435
|
-
className: classNames($aa1c742e7a2a16aa7981ca9e2f4a89$$interop$default, 'spectrum-Textfield-input', {
|
|
436
|
-
'is-hovered': isHovered,
|
|
437
|
-
'is-placeholder': isPlaceholder,
|
|
438
|
-
'is-disabled': isDisabled
|
|
439
|
-
}, classNames($ed163f34af6780259e0266609fb62099$$interop$default, 'spectrum-InputGroup-input', classNames($c9fb1f4220ea2c59cb2e10f0e9828c6e$$interop$default, 'spectrum-Field-field')), classNames($dea09d50cdec57db7ad515930d6daf$$interop$default, 'mobile-input'))
|
|
440
|
-
}, /*#__PURE__*/_react.createElement("span", {
|
|
441
|
-
id: valueId,
|
|
442
|
-
className: classNames($dea09d50cdec57db7ad515930d6daf$$interop$default, 'mobile-value')
|
|
443
|
-
}, children)), validationState ? validation : null), /*#__PURE__*/_react.createElement("div", {
|
|
444
|
-
className: classNames($a0b8eb4b46824fd288195a4db8814b$$interop$default, 'spectrum-FieldButton', {
|
|
445
|
-
'spectrum-FieldButton--quiet': isQuiet,
|
|
446
|
-
'is-active': isPressed,
|
|
447
|
-
'is-disabled': isDisabled,
|
|
448
|
-
'spectrum-FieldButton--invalid': validationState === 'invalid',
|
|
449
|
-
'is-hovered': isHovered
|
|
450
|
-
}, classNames($ed163f34af6780259e0266609fb62099$$interop$default, 'spectrum-FieldButton'))
|
|
451
|
-
}, /*#__PURE__*/_react.createElement(_spectrumIconsUiChevronDownMedium, {
|
|
452
|
-
UNSAFE_className: classNames($ed163f34af6780259e0266609fb62099$$interop$default, 'spectrum-Dropdown-chevron')
|
|
453
|
-
}))));
|
|
454
|
-
});
|
|
455
247
|
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
248
|
+
|
|
249
|
+
var $91cc66a793b0c871$exports = {};
|
|
250
|
+
|
|
251
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-Button", () => $91cc66a793b0c871$export$1db4cca5b4ade39a, (v) => $91cc66a793b0c871$export$1db4cca5b4ade39a = v);
|
|
252
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ActionButton", () => $91cc66a793b0c871$export$53da69f51b770d3, (v) => $91cc66a793b0c871$export$53da69f51b770d3 = v);
|
|
253
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-LogicButton", () => $91cc66a793b0c871$export$36ae67a131730482, (v) => $91cc66a793b0c871$export$36ae67a131730482 = v);
|
|
254
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-FieldButton", () => $91cc66a793b0c871$export$a024c99ecf6b5741, (v) => $91cc66a793b0c871$export$a024c99ecf6b5741 = v);
|
|
255
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ClearButton", () => $91cc66a793b0c871$export$b752ce409e5660c, (v) => $91cc66a793b0c871$export$b752ce409e5660c = v);
|
|
256
|
+
$parcel$export($91cc66a793b0c871$exports, "focus-ring", () => $91cc66a793b0c871$export$f39a09f249340e2a, (v) => $91cc66a793b0c871$export$f39a09f249340e2a = v);
|
|
257
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-Icon", () => $91cc66a793b0c871$export$d374b04f30360026, (v) => $91cc66a793b0c871$export$d374b04f30360026 = v);
|
|
258
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ActionButton--emphasized", () => $91cc66a793b0c871$export$5aabb61a966e266f, (v) => $91cc66a793b0c871$export$5aabb61a966e266f = v);
|
|
259
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ActionButton--staticColor", () => $91cc66a793b0c871$export$29b7b5d6a5a497c5, (v) => $91cc66a793b0c871$export$29b7b5d6a5a497c5 = v);
|
|
260
|
+
$parcel$export($91cc66a793b0c871$exports, "is-hovered", () => $91cc66a793b0c871$export$b8813cd5d7824ce7, (v) => $91cc66a793b0c871$export$b8813cd5d7824ce7 = v);
|
|
261
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-Button-label", () => $91cc66a793b0c871$export$c081ba562e204942, (v) => $91cc66a793b0c871$export$c081ba562e204942 = v);
|
|
262
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ActionButton-label", () => $91cc66a793b0c871$export$ebb4635c66bacdb9, (v) => $91cc66a793b0c871$export$ebb4635c66bacdb9 = v);
|
|
263
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ActionButton-hold", () => $91cc66a793b0c871$export$4a4f01c443eff992, (v) => $91cc66a793b0c871$export$4a4f01c443eff992 = v);
|
|
264
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ActionButton--quiet", () => $91cc66a793b0c871$export$40e1f009544bacf3, (v) => $91cc66a793b0c871$export$40e1f009544bacf3 = v);
|
|
265
|
+
$parcel$export($91cc66a793b0c871$exports, "is-disabled", () => $91cc66a793b0c871$export$d35bc1e505d1ebbf, (v) => $91cc66a793b0c871$export$d35bc1e505d1ebbf = v);
|
|
266
|
+
$parcel$export($91cc66a793b0c871$exports, "is-open", () => $91cc66a793b0c871$export$a9781837241c946d, (v) => $91cc66a793b0c871$export$a9781837241c946d = v);
|
|
267
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-FieldButton--quiet", () => $91cc66a793b0c871$export$5ca7b274e4fff9fc, (v) => $91cc66a793b0c871$export$5ca7b274e4fff9fc = v);
|
|
268
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ClearButton--overBackground", () => $91cc66a793b0c871$export$116f2fccf941d34d, (v) => $91cc66a793b0c871$export$116f2fccf941d34d = v);
|
|
269
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ClearButton--small", () => $91cc66a793b0c871$export$49280ffa5236ba8b, (v) => $91cc66a793b0c871$export$49280ffa5236ba8b = v);
|
|
270
|
+
$parcel$export($91cc66a793b0c871$exports, "is-focused", () => $91cc66a793b0c871$export$e7dc768d35940237, (v) => $91cc66a793b0c871$export$e7dc768d35940237 = v);
|
|
271
|
+
$parcel$export($91cc66a793b0c871$exports, "is-active", () => $91cc66a793b0c871$export$20fd0f7cd4e6112f, (v) => $91cc66a793b0c871$export$20fd0f7cd4e6112f = v);
|
|
272
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-Button--cta", () => $91cc66a793b0c871$export$b818fdf0052a2cab, (v) => $91cc66a793b0c871$export$b818fdf0052a2cab = v);
|
|
273
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-Button--primary", () => $91cc66a793b0c871$export$c1c3511f5e96e926, (v) => $91cc66a793b0c871$export$c1c3511f5e96e926 = v);
|
|
274
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-Button--secondary", () => $91cc66a793b0c871$export$4f1b75526afd8ff3, (v) => $91cc66a793b0c871$export$4f1b75526afd8ff3 = v);
|
|
275
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-Button--warning", () => $91cc66a793b0c871$export$6f97cef817ff1cac, (v) => $91cc66a793b0c871$export$6f97cef817ff1cac = v);
|
|
276
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-Button--overBackground", () => $91cc66a793b0c871$export$5cda1128f9112d2e, (v) => $91cc66a793b0c871$export$5cda1128f9112d2e = v);
|
|
277
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-Button--quiet", () => $91cc66a793b0c871$export$25f049c049371040, (v) => $91cc66a793b0c871$export$25f049c049371040 = v);
|
|
278
|
+
$parcel$export($91cc66a793b0c871$exports, "is-selected", () => $91cc66a793b0c871$export$1e0fb04f31d3c22a, (v) => $91cc66a793b0c871$export$1e0fb04f31d3c22a = v);
|
|
279
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ActionButton--staticWhite", () => $91cc66a793b0c871$export$ccc536e1adbdc059, (v) => $91cc66a793b0c871$export$ccc536e1adbdc059 = v);
|
|
280
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-ActionButton--staticBlack", () => $91cc66a793b0c871$export$8f7c9db66978d20f, (v) => $91cc66a793b0c871$export$8f7c9db66978d20f = v);
|
|
281
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-LogicButton--and", () => $91cc66a793b0c871$export$e52daab43a62c528, (v) => $91cc66a793b0c871$export$e52daab43a62c528 = v);
|
|
282
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-LogicButton--or", () => $91cc66a793b0c871$export$da76be6126aaa633, (v) => $91cc66a793b0c871$export$da76be6126aaa633 = v);
|
|
283
|
+
$parcel$export($91cc66a793b0c871$exports, "is-placeholder", () => $91cc66a793b0c871$export$e5b2f5233e4e5194, (v) => $91cc66a793b0c871$export$e5b2f5233e4e5194 = v);
|
|
284
|
+
$parcel$export($91cc66a793b0c871$exports, "spectrum-FieldButton--invalid", () => $91cc66a793b0c871$export$c9f503f672e8a3c1, (v) => $91cc66a793b0c871$export$c9f503f672e8a3c1 = v);
|
|
285
|
+
var $91cc66a793b0c871$export$1db4cca5b4ade39a;
|
|
286
|
+
var $91cc66a793b0c871$export$53da69f51b770d3;
|
|
287
|
+
var $91cc66a793b0c871$export$36ae67a131730482;
|
|
288
|
+
var $91cc66a793b0c871$export$a024c99ecf6b5741;
|
|
289
|
+
var $91cc66a793b0c871$export$b752ce409e5660c;
|
|
290
|
+
var $91cc66a793b0c871$export$f39a09f249340e2a;
|
|
291
|
+
var $91cc66a793b0c871$export$d374b04f30360026;
|
|
292
|
+
var $91cc66a793b0c871$export$5aabb61a966e266f;
|
|
293
|
+
var $91cc66a793b0c871$export$29b7b5d6a5a497c5;
|
|
294
|
+
var $91cc66a793b0c871$export$b8813cd5d7824ce7;
|
|
295
|
+
var $91cc66a793b0c871$export$c081ba562e204942;
|
|
296
|
+
var $91cc66a793b0c871$export$ebb4635c66bacdb9;
|
|
297
|
+
var $91cc66a793b0c871$export$4a4f01c443eff992;
|
|
298
|
+
var $91cc66a793b0c871$export$40e1f009544bacf3;
|
|
299
|
+
var $91cc66a793b0c871$export$d35bc1e505d1ebbf;
|
|
300
|
+
var $91cc66a793b0c871$export$a9781837241c946d;
|
|
301
|
+
var $91cc66a793b0c871$export$5ca7b274e4fff9fc;
|
|
302
|
+
var $91cc66a793b0c871$export$116f2fccf941d34d;
|
|
303
|
+
var $91cc66a793b0c871$export$49280ffa5236ba8b;
|
|
304
|
+
var $91cc66a793b0c871$export$e7dc768d35940237;
|
|
305
|
+
var $91cc66a793b0c871$export$20fd0f7cd4e6112f;
|
|
306
|
+
var $91cc66a793b0c871$export$b818fdf0052a2cab;
|
|
307
|
+
var $91cc66a793b0c871$export$c1c3511f5e96e926;
|
|
308
|
+
var $91cc66a793b0c871$export$4f1b75526afd8ff3;
|
|
309
|
+
var $91cc66a793b0c871$export$6f97cef817ff1cac;
|
|
310
|
+
var $91cc66a793b0c871$export$5cda1128f9112d2e;
|
|
311
|
+
var $91cc66a793b0c871$export$25f049c049371040;
|
|
312
|
+
var $91cc66a793b0c871$export$1e0fb04f31d3c22a;
|
|
313
|
+
var $91cc66a793b0c871$export$ccc536e1adbdc059;
|
|
314
|
+
var $91cc66a793b0c871$export$8f7c9db66978d20f;
|
|
315
|
+
var $91cc66a793b0c871$export$e52daab43a62c528;
|
|
316
|
+
var $91cc66a793b0c871$export$da76be6126aaa633;
|
|
317
|
+
var $91cc66a793b0c871$export$e5b2f5233e4e5194;
|
|
318
|
+
var $91cc66a793b0c871$export$c9f503f672e8a3c1;
|
|
319
|
+
$91cc66a793b0c871$export$1db4cca5b4ade39a = "_spectrum-Button_e2d99e";
|
|
320
|
+
$91cc66a793b0c871$export$53da69f51b770d3 = "_spectrum-ActionButton_e2d99e";
|
|
321
|
+
$91cc66a793b0c871$export$36ae67a131730482 = "_spectrum-LogicButton_e2d99e";
|
|
322
|
+
$91cc66a793b0c871$export$a024c99ecf6b5741 = "_spectrum-FieldButton_e2d99e";
|
|
323
|
+
$91cc66a793b0c871$export$b752ce409e5660c = "_spectrum-ClearButton_e2d99e";
|
|
324
|
+
$91cc66a793b0c871$export$f39a09f249340e2a = "_focus-ring_e2d99e";
|
|
325
|
+
$91cc66a793b0c871$export$d374b04f30360026 = "_spectrum-Icon_e2d99e";
|
|
326
|
+
$91cc66a793b0c871$export$5aabb61a966e266f = "_spectrum-ActionButton--emphasized_e2d99e";
|
|
327
|
+
$91cc66a793b0c871$export$29b7b5d6a5a497c5 = "_spectrum-ActionButton--staticColor_e2d99e";
|
|
328
|
+
$91cc66a793b0c871$export$b8813cd5d7824ce7 = "_is-hovered_e2d99e";
|
|
329
|
+
$91cc66a793b0c871$export$c081ba562e204942 = "_spectrum-Button-label_e2d99e";
|
|
330
|
+
$91cc66a793b0c871$export$ebb4635c66bacdb9 = "_spectrum-ActionButton-label_e2d99e";
|
|
331
|
+
$91cc66a793b0c871$export$4a4f01c443eff992 = "_spectrum-ActionButton-hold_e2d99e";
|
|
332
|
+
$91cc66a793b0c871$export$40e1f009544bacf3 = "_spectrum-ActionButton--quiet_e2d99e";
|
|
333
|
+
$91cc66a793b0c871$export$d35bc1e505d1ebbf = "_is-disabled_e2d99e";
|
|
334
|
+
$91cc66a793b0c871$export$a9781837241c946d = "_is-open_e2d99e";
|
|
335
|
+
$91cc66a793b0c871$export$5ca7b274e4fff9fc = "_spectrum-FieldButton--quiet_e2d99e";
|
|
336
|
+
$91cc66a793b0c871$export$116f2fccf941d34d = "_spectrum-ClearButton--overBackground_e2d99e";
|
|
337
|
+
$91cc66a793b0c871$export$49280ffa5236ba8b = "_spectrum-ClearButton--small_e2d99e";
|
|
338
|
+
$91cc66a793b0c871$export$e7dc768d35940237 = "_is-focused_e2d99e";
|
|
339
|
+
$91cc66a793b0c871$export$20fd0f7cd4e6112f = "_is-active_e2d99e";
|
|
340
|
+
$91cc66a793b0c871$export$b818fdf0052a2cab = "_spectrum-Button--cta_e2d99e";
|
|
341
|
+
$91cc66a793b0c871$export$c1c3511f5e96e926 = "_spectrum-Button--primary_e2d99e";
|
|
342
|
+
$91cc66a793b0c871$export$4f1b75526afd8ff3 = "_spectrum-Button--secondary_e2d99e";
|
|
343
|
+
$91cc66a793b0c871$export$6f97cef817ff1cac = "_spectrum-Button--warning_e2d99e";
|
|
344
|
+
$91cc66a793b0c871$export$5cda1128f9112d2e = "_spectrum-Button--overBackground_e2d99e";
|
|
345
|
+
$91cc66a793b0c871$export$25f049c049371040 = "_spectrum-Button--quiet_e2d99e";
|
|
346
|
+
$91cc66a793b0c871$export$1e0fb04f31d3c22a = "_is-selected_e2d99e";
|
|
347
|
+
$91cc66a793b0c871$export$ccc536e1adbdc059 = "_spectrum-ActionButton--staticWhite_e2d99e";
|
|
348
|
+
$91cc66a793b0c871$export$8f7c9db66978d20f = "_spectrum-ActionButton--staticBlack_e2d99e";
|
|
349
|
+
$91cc66a793b0c871$export$e52daab43a62c528 = "_spectrum-LogicButton--and_e2d99e";
|
|
350
|
+
$91cc66a793b0c871$export$da76be6126aaa633 = "_spectrum-LogicButton--or_e2d99e";
|
|
351
|
+
$91cc66a793b0c871$export$e5b2f5233e4e5194 = "_is-placeholder_e2d99e";
|
|
352
|
+
$91cc66a793b0c871$export$c9f503f672e8a3c1 = "_spectrum-FieldButton--invalid_e2d99e";
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
var $29047d5b2695cedc$exports = {};
|
|
367
|
+
|
|
368
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-FieldLabel", () => $29047d5b2695cedc$export$493d18e796ae054, (v) => $29047d5b2695cedc$export$493d18e796ae054 = v);
|
|
369
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-FieldLabel--positionSide", () => $29047d5b2695cedc$export$9e6f19dc21f22f2e, (v) => $29047d5b2695cedc$export$9e6f19dc21f22f2e = v);
|
|
370
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-FieldLabel-requiredIcon", () => $29047d5b2695cedc$export$7c47642c7d46f3c9, (v) => $29047d5b2695cedc$export$7c47642c7d46f3c9 = v);
|
|
371
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-FieldLabel--alignEnd", () => $29047d5b2695cedc$export$885efcc08143a987, (v) => $29047d5b2695cedc$export$885efcc08143a987 = v);
|
|
372
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-Field", () => $29047d5b2695cedc$export$f6d480ae1e56eba0, (v) => $29047d5b2695cedc$export$f6d480ae1e56eba0 = v);
|
|
373
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-Field--positionTop", () => $29047d5b2695cedc$export$a4ea780a9064d7f9, (v) => $29047d5b2695cedc$export$a4ea780a9064d7f9 = v);
|
|
374
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-Field-field", () => $29047d5b2695cedc$export$3ab8a3dc7f0563d, (v) => $29047d5b2695cedc$export$3ab8a3dc7f0563d = v);
|
|
375
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-Field-field--multiline", () => $29047d5b2695cedc$export$f58a1e966a92ba5e, (v) => $29047d5b2695cedc$export$f58a1e966a92ba5e = v);
|
|
376
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-Field--positionSide", () => $29047d5b2695cedc$export$2963225c91179589, (v) => $29047d5b2695cedc$export$2963225c91179589 = v);
|
|
377
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-Field-wrapper", () => $29047d5b2695cedc$export$127df0b7290eb8ef, (v) => $29047d5b2695cedc$export$127df0b7290eb8ef = v);
|
|
378
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-Form", () => $29047d5b2695cedc$export$94d2bcc94afabd89, (v) => $29047d5b2695cedc$export$94d2bcc94afabd89 = v);
|
|
379
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-Form--positionSide", () => $29047d5b2695cedc$export$7f44db659563c8f4, (v) => $29047d5b2695cedc$export$7f44db659563c8f4 = v);
|
|
380
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-Form--positionTop", () => $29047d5b2695cedc$export$11b8bc81fe551057, (v) => $29047d5b2695cedc$export$11b8bc81fe551057 = v);
|
|
381
|
+
$parcel$export($29047d5b2695cedc$exports, "spectrum-Form-itemLabel", () => $29047d5b2695cedc$export$51ec27881a1e3928, (v) => $29047d5b2695cedc$export$51ec27881a1e3928 = v);
|
|
382
|
+
$parcel$export($29047d5b2695cedc$exports, "is-disabled", () => $29047d5b2695cedc$export$d35bc1e505d1ebbf, (v) => $29047d5b2695cedc$export$d35bc1e505d1ebbf = v);
|
|
383
|
+
var $29047d5b2695cedc$export$493d18e796ae054;
|
|
384
|
+
var $29047d5b2695cedc$export$9e6f19dc21f22f2e;
|
|
385
|
+
var $29047d5b2695cedc$export$7c47642c7d46f3c9;
|
|
386
|
+
var $29047d5b2695cedc$export$885efcc08143a987;
|
|
387
|
+
var $29047d5b2695cedc$export$f6d480ae1e56eba0;
|
|
388
|
+
var $29047d5b2695cedc$export$a4ea780a9064d7f9;
|
|
389
|
+
var $29047d5b2695cedc$export$3ab8a3dc7f0563d;
|
|
390
|
+
var $29047d5b2695cedc$export$f58a1e966a92ba5e;
|
|
391
|
+
var $29047d5b2695cedc$export$2963225c91179589;
|
|
392
|
+
var $29047d5b2695cedc$export$127df0b7290eb8ef;
|
|
393
|
+
var $29047d5b2695cedc$export$94d2bcc94afabd89;
|
|
394
|
+
var $29047d5b2695cedc$export$7f44db659563c8f4;
|
|
395
|
+
var $29047d5b2695cedc$export$11b8bc81fe551057;
|
|
396
|
+
var $29047d5b2695cedc$export$51ec27881a1e3928;
|
|
397
|
+
var $29047d5b2695cedc$export$d35bc1e505d1ebbf;
|
|
398
|
+
$29047d5b2695cedc$export$493d18e796ae054 = "_spectrum-FieldLabel_d2db1f";
|
|
399
|
+
$29047d5b2695cedc$export$9e6f19dc21f22f2e = "_spectrum-FieldLabel--positionSide_d2db1f";
|
|
400
|
+
$29047d5b2695cedc$export$7c47642c7d46f3c9 = "_spectrum-FieldLabel-requiredIcon_d2db1f";
|
|
401
|
+
$29047d5b2695cedc$export$885efcc08143a987 = "_spectrum-FieldLabel--alignEnd_d2db1f";
|
|
402
|
+
$29047d5b2695cedc$export$f6d480ae1e56eba0 = "_spectrum-Field_d2db1f";
|
|
403
|
+
$29047d5b2695cedc$export$a4ea780a9064d7f9 = "_spectrum-Field--positionTop_d2db1f";
|
|
404
|
+
$29047d5b2695cedc$export$3ab8a3dc7f0563d = "_spectrum-Field-field_d2db1f";
|
|
405
|
+
$29047d5b2695cedc$export$f58a1e966a92ba5e = "_spectrum-Field-field--multiline_d2db1f";
|
|
406
|
+
$29047d5b2695cedc$export$2963225c91179589 = "_spectrum-Field--positionSide_d2db1f";
|
|
407
|
+
$29047d5b2695cedc$export$127df0b7290eb8ef = "_spectrum-Field-wrapper_d2db1f";
|
|
408
|
+
$29047d5b2695cedc$export$94d2bcc94afabd89 = "_spectrum-Form_d2db1f";
|
|
409
|
+
$29047d5b2695cedc$export$7f44db659563c8f4 = "_spectrum-Form--positionSide_d2db1f";
|
|
410
|
+
$29047d5b2695cedc$export$11b8bc81fe551057 = "_spectrum-Form--positionTop_d2db1f";
|
|
411
|
+
$29047d5b2695cedc$export$51ec27881a1e3928 = "_spectrum-Form-itemLabel_d2db1f";
|
|
412
|
+
$29047d5b2695cedc$export$d35bc1e505d1ebbf = "_is-disabled_d2db1f";
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
var $f3224a2f471fe717$exports = {};
|
|
420
|
+
|
|
421
|
+
$parcel$export($f3224a2f471fe717$exports, "spectrum-Search", () => $f3224a2f471fe717$export$713911d754e1e4ae, (v) => $f3224a2f471fe717$export$713911d754e1e4ae = v);
|
|
422
|
+
$parcel$export($f3224a2f471fe717$exports, "spectrum-ClearButton", () => $f3224a2f471fe717$export$b752ce409e5660c, (v) => $f3224a2f471fe717$export$b752ce409e5660c = v);
|
|
423
|
+
$parcel$export($f3224a2f471fe717$exports, "is-quiet", () => $f3224a2f471fe717$export$6d5c5433f0da4241, (v) => $f3224a2f471fe717$export$6d5c5433f0da4241 = v);
|
|
424
|
+
$parcel$export($f3224a2f471fe717$exports, "spectrum-Search-input", () => $f3224a2f471fe717$export$50e02603f2d97ae1, (v) => $f3224a2f471fe717$export$50e02603f2d97ae1 = v);
|
|
425
|
+
$parcel$export($f3224a2f471fe717$exports, "spectrum-Search--invalid", () => $f3224a2f471fe717$export$77a6151a0b46a6a3, (v) => $f3224a2f471fe717$export$77a6151a0b46a6a3 = v);
|
|
426
|
+
$parcel$export($f3224a2f471fe717$exports, "spectrum-Search--valid", () => $f3224a2f471fe717$export$aa81e3ab40f37567, (v) => $f3224a2f471fe717$export$aa81e3ab40f37567 = v);
|
|
427
|
+
$parcel$export($f3224a2f471fe717$exports, "spectrum-Search--loadable", () => $f3224a2f471fe717$export$9c74d64afae3b2d4, (v) => $f3224a2f471fe717$export$9c74d64afae3b2d4 = v);
|
|
428
|
+
$parcel$export($f3224a2f471fe717$exports, "spectrum-Search-circleLoader", () => $f3224a2f471fe717$export$70ae4353602451dc, (v) => $f3224a2f471fe717$export$70ae4353602451dc = v);
|
|
429
|
+
$parcel$export($f3224a2f471fe717$exports, "spectrum-Search-validationIcon", () => $f3224a2f471fe717$export$938f0981825eae6e, (v) => $f3224a2f471fe717$export$938f0981825eae6e = v);
|
|
430
|
+
$parcel$export($f3224a2f471fe717$exports, "spectrum-Textfield", () => $f3224a2f471fe717$export$2c8a10299d8b3418, (v) => $f3224a2f471fe717$export$2c8a10299d8b3418 = v);
|
|
431
|
+
var $f3224a2f471fe717$export$713911d754e1e4ae;
|
|
432
|
+
var $f3224a2f471fe717$export$b752ce409e5660c;
|
|
433
|
+
var $f3224a2f471fe717$export$6d5c5433f0da4241;
|
|
434
|
+
var $f3224a2f471fe717$export$50e02603f2d97ae1;
|
|
435
|
+
var $f3224a2f471fe717$export$77a6151a0b46a6a3;
|
|
436
|
+
var $f3224a2f471fe717$export$aa81e3ab40f37567;
|
|
437
|
+
var $f3224a2f471fe717$export$9c74d64afae3b2d4;
|
|
438
|
+
var $f3224a2f471fe717$export$70ae4353602451dc;
|
|
439
|
+
var $f3224a2f471fe717$export$938f0981825eae6e;
|
|
440
|
+
var $f3224a2f471fe717$export$2c8a10299d8b3418;
|
|
441
|
+
$f3224a2f471fe717$export$713911d754e1e4ae = "_spectrum-Search_d3c0f3";
|
|
442
|
+
$f3224a2f471fe717$export$b752ce409e5660c = "_spectrum-ClearButton_d3c0f3";
|
|
443
|
+
$f3224a2f471fe717$export$6d5c5433f0da4241 = "_is-quiet_d3c0f3";
|
|
444
|
+
$f3224a2f471fe717$export$50e02603f2d97ae1 = "_spectrum-Search-input_d3c0f3";
|
|
445
|
+
$f3224a2f471fe717$export$77a6151a0b46a6a3 = "_spectrum-Search--invalid_d3c0f3";
|
|
446
|
+
$f3224a2f471fe717$export$aa81e3ab40f37567 = "_spectrum-Search--valid_d3c0f3";
|
|
447
|
+
$f3224a2f471fe717$export$9c74d64afae3b2d4 = "_spectrum-Search--loadable_d3c0f3";
|
|
448
|
+
$f3224a2f471fe717$export$70ae4353602451dc = "_spectrum-Search-circleLoader_d3c0f3";
|
|
449
|
+
$f3224a2f471fe717$export$938f0981825eae6e = "_spectrum-Search-validationIcon_d3c0f3";
|
|
450
|
+
$f3224a2f471fe717$export$2c8a10299d8b3418 = "_spectrum-Textfield_d3c0f3";
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
var $5114045f2eace5e5$exports = {};
|
|
455
|
+
|
|
456
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-InputGroup", () => $5114045f2eace5e5$export$5be359c1227eedcb, (v) => $5114045f2eace5e5$export$5be359c1227eedcb = v);
|
|
457
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-FieldButton", () => $5114045f2eace5e5$export$a024c99ecf6b5741, (v) => $5114045f2eace5e5$export$a024c99ecf6b5741 = v);
|
|
458
|
+
$parcel$export($5114045f2eace5e5$exports, "is-disabled", () => $5114045f2eace5e5$export$d35bc1e505d1ebbf, (v) => $5114045f2eace5e5$export$d35bc1e505d1ebbf = v);
|
|
459
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-InputGroup--invalid", () => $5114045f2eace5e5$export$3b48509739a9cda0, (v) => $5114045f2eace5e5$export$3b48509739a9cda0 = v);
|
|
460
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-InputGroup--quiet", () => $5114045f2eace5e5$export$ebf265ffc062029b, (v) => $5114045f2eace5e5$export$ebf265ffc062029b = v);
|
|
461
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-InputGroup-field", () => $5114045f2eace5e5$export$ea77459595e26bec, (v) => $5114045f2eace5e5$export$ea77459595e26bec = v);
|
|
462
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-InputGroup-input-validationIcon", () => $5114045f2eace5e5$export$f7ab13ee113f4884, (v) => $5114045f2eace5e5$export$f7ab13ee113f4884 = v);
|
|
463
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-InputGroup-input-circleLoader", () => $5114045f2eace5e5$export$dcc9e00cdad967fa, (v) => $5114045f2eace5e5$export$dcc9e00cdad967fa = v);
|
|
464
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-InputGroup-input", () => $5114045f2eace5e5$export$92706f5c6fe4074, (v) => $5114045f2eace5e5$export$92706f5c6fe4074 = v);
|
|
465
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-InputGroup-icon", () => $5114045f2eace5e5$export$b91b6af799fd93a8, (v) => $5114045f2eace5e5$export$b91b6af799fd93a8 = v);
|
|
466
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-InputGroup-popover--quiet", () => $5114045f2eace5e5$export$5e116178f9b1556a, (v) => $5114045f2eace5e5$export$5e116178f9b1556a = v);
|
|
467
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-Datepicker--range", () => $5114045f2eace5e5$export$1d8b0b29e11d7cd, (v) => $5114045f2eace5e5$export$1d8b0b29e11d7cd = v);
|
|
468
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-Datepicker--datetimeRange", () => $5114045f2eace5e5$export$58dd7cd23c92699f, (v) => $5114045f2eace5e5$export$58dd7cd23c92699f = v);
|
|
469
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-Datepicker-startField", () => $5114045f2eace5e5$export$80f9c838a8406469, (v) => $5114045f2eace5e5$export$80f9c838a8406469 = v);
|
|
470
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-Datepicker-endField", () => $5114045f2eace5e5$export$1c72fb41fa4f21ee, (v) => $5114045f2eace5e5$export$1c72fb41fa4f21ee = v);
|
|
471
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-Datepicker--rangeDash", () => $5114045f2eace5e5$export$202113e883898dc, (v) => $5114045f2eace5e5$export$202113e883898dc = v);
|
|
472
|
+
$parcel$export($5114045f2eace5e5$exports, "is-focused", () => $5114045f2eace5e5$export$e7dc768d35940237, (v) => $5114045f2eace5e5$export$e7dc768d35940237 = v);
|
|
473
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-Datepicker-focusRing", () => $5114045f2eace5e5$export$eb262b15b9261fde, (v) => $5114045f2eace5e5$export$eb262b15b9261fde = v);
|
|
474
|
+
$parcel$export($5114045f2eace5e5$exports, "is-hovered", () => $5114045f2eace5e5$export$b8813cd5d7824ce7, (v) => $5114045f2eace5e5$export$b8813cd5d7824ce7 = v);
|
|
475
|
+
$parcel$export($5114045f2eace5e5$exports, "focus-ring", () => $5114045f2eace5e5$export$f39a09f249340e2a, (v) => $5114045f2eace5e5$export$f39a09f249340e2a = v);
|
|
476
|
+
$parcel$export($5114045f2eace5e5$exports, "is-selected", () => $5114045f2eace5e5$export$1e0fb04f31d3c22a, (v) => $5114045f2eace5e5$export$1e0fb04f31d3c22a = v);
|
|
477
|
+
$parcel$export($5114045f2eace5e5$exports, "spectrum-FieldButton--invalid", () => $5114045f2eace5e5$export$c9f503f672e8a3c1, (v) => $5114045f2eace5e5$export$c9f503f672e8a3c1 = v);
|
|
478
|
+
var $5114045f2eace5e5$export$5be359c1227eedcb;
|
|
479
|
+
var $5114045f2eace5e5$export$a024c99ecf6b5741;
|
|
480
|
+
var $5114045f2eace5e5$export$d35bc1e505d1ebbf;
|
|
481
|
+
var $5114045f2eace5e5$export$3b48509739a9cda0;
|
|
482
|
+
var $5114045f2eace5e5$export$ebf265ffc062029b;
|
|
483
|
+
var $5114045f2eace5e5$export$ea77459595e26bec;
|
|
484
|
+
var $5114045f2eace5e5$export$f7ab13ee113f4884;
|
|
485
|
+
var $5114045f2eace5e5$export$dcc9e00cdad967fa;
|
|
486
|
+
var $5114045f2eace5e5$export$92706f5c6fe4074;
|
|
487
|
+
var $5114045f2eace5e5$export$b91b6af799fd93a8;
|
|
488
|
+
var $5114045f2eace5e5$export$5e116178f9b1556a;
|
|
489
|
+
var $5114045f2eace5e5$export$1d8b0b29e11d7cd;
|
|
490
|
+
var $5114045f2eace5e5$export$58dd7cd23c92699f;
|
|
491
|
+
var $5114045f2eace5e5$export$80f9c838a8406469;
|
|
492
|
+
var $5114045f2eace5e5$export$1c72fb41fa4f21ee;
|
|
493
|
+
var $5114045f2eace5e5$export$202113e883898dc;
|
|
494
|
+
var $5114045f2eace5e5$export$e7dc768d35940237;
|
|
495
|
+
var $5114045f2eace5e5$export$eb262b15b9261fde;
|
|
496
|
+
var $5114045f2eace5e5$export$b8813cd5d7824ce7;
|
|
497
|
+
var $5114045f2eace5e5$export$f39a09f249340e2a;
|
|
498
|
+
var $5114045f2eace5e5$export$1e0fb04f31d3c22a;
|
|
499
|
+
var $5114045f2eace5e5$export$c9f503f672e8a3c1;
|
|
500
|
+
$5114045f2eace5e5$export$5be359c1227eedcb = "_spectrum-InputGroup_a0942f";
|
|
501
|
+
$5114045f2eace5e5$export$a024c99ecf6b5741 = "_spectrum-FieldButton_a0942f";
|
|
502
|
+
$5114045f2eace5e5$export$d35bc1e505d1ebbf = "_is-disabled_a0942f";
|
|
503
|
+
$5114045f2eace5e5$export$3b48509739a9cda0 = "_spectrum-InputGroup--invalid_a0942f";
|
|
504
|
+
$5114045f2eace5e5$export$ebf265ffc062029b = "_spectrum-InputGroup--quiet_a0942f";
|
|
505
|
+
$5114045f2eace5e5$export$ea77459595e26bec = "_spectrum-InputGroup-field_a0942f";
|
|
506
|
+
$5114045f2eace5e5$export$f7ab13ee113f4884 = "_spectrum-InputGroup-input-validationIcon_a0942f";
|
|
507
|
+
$5114045f2eace5e5$export$dcc9e00cdad967fa = "_spectrum-InputGroup-input-circleLoader_a0942f";
|
|
508
|
+
$5114045f2eace5e5$export$92706f5c6fe4074 = "_spectrum-InputGroup-input_a0942f";
|
|
509
|
+
$5114045f2eace5e5$export$b91b6af799fd93a8 = "_spectrum-InputGroup-icon_a0942f";
|
|
510
|
+
$5114045f2eace5e5$export$5e116178f9b1556a = "_spectrum-InputGroup-popover--quiet_a0942f";
|
|
511
|
+
$5114045f2eace5e5$export$1d8b0b29e11d7cd = "_spectrum-Datepicker--range_a0942f";
|
|
512
|
+
$5114045f2eace5e5$export$58dd7cd23c92699f = "_spectrum-Datepicker--datetimeRange_a0942f";
|
|
513
|
+
$5114045f2eace5e5$export$80f9c838a8406469 = "_spectrum-Datepicker-startField_a0942f";
|
|
514
|
+
$5114045f2eace5e5$export$1c72fb41fa4f21ee = "_spectrum-Datepicker-endField_a0942f";
|
|
515
|
+
$5114045f2eace5e5$export$202113e883898dc = "_spectrum-Datepicker--rangeDash_a0942f";
|
|
516
|
+
$5114045f2eace5e5$export$e7dc768d35940237 = "_is-focused_a0942f";
|
|
517
|
+
$5114045f2eace5e5$export$eb262b15b9261fde = "_spectrum-Datepicker-focusRing_a0942f";
|
|
518
|
+
$5114045f2eace5e5$export$b8813cd5d7824ce7 = "_is-hovered_a0942f";
|
|
519
|
+
$5114045f2eace5e5$export$f39a09f249340e2a = "_focus-ring_a0942f";
|
|
520
|
+
$5114045f2eace5e5$export$1e0fb04f31d3c22a = "_is-selected_a0942f";
|
|
521
|
+
$5114045f2eace5e5$export$c9f503f672e8a3c1 = "_spectrum-FieldButton--invalid_a0942f";
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
var $e10bd19c72c588e6$exports = {};
|
|
526
|
+
|
|
527
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield-input", () => $e10bd19c72c588e6$export$1ac009feb2b0bd0c, (v) => $e10bd19c72c588e6$export$1ac009feb2b0bd0c = v);
|
|
528
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield", () => $e10bd19c72c588e6$export$2c8a10299d8b3418, (v) => $e10bd19c72c588e6$export$2c8a10299d8b3418 = v);
|
|
529
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield--quiet", () => $e10bd19c72c588e6$export$bffd5e3d61a81737, (v) => $e10bd19c72c588e6$export$bffd5e3d61a81737 = v);
|
|
530
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield--multiline", () => $e10bd19c72c588e6$export$9699f1c538a448a0, (v) => $e10bd19c72c588e6$export$9699f1c538a448a0 = v);
|
|
531
|
+
$parcel$export($e10bd19c72c588e6$exports, "is-placeholder", () => $e10bd19c72c588e6$export$e5b2f5233e4e5194, (v) => $e10bd19c72c588e6$export$e5b2f5233e4e5194 = v);
|
|
532
|
+
$parcel$export($e10bd19c72c588e6$exports, "is-hovered", () => $e10bd19c72c588e6$export$b8813cd5d7824ce7, (v) => $e10bd19c72c588e6$export$b8813cd5d7824ce7 = v);
|
|
533
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield--valid", () => $e10bd19c72c588e6$export$c2abbc3f970170b7, (v) => $e10bd19c72c588e6$export$c2abbc3f970170b7 = v);
|
|
534
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield--invalid", () => $e10bd19c72c588e6$export$58e50b10d30123df, (v) => $e10bd19c72c588e6$export$58e50b10d30123df = v);
|
|
535
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield--loadable", () => $e10bd19c72c588e6$export$14fd30fea6f1348c, (v) => $e10bd19c72c588e6$export$14fd30fea6f1348c = v);
|
|
536
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield-validationIcon", () => $e10bd19c72c588e6$export$cf0ead5b44db0da3, (v) => $e10bd19c72c588e6$export$cf0ead5b44db0da3 = v);
|
|
537
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield-icon", () => $e10bd19c72c588e6$export$222d1ccd1870be1d, (v) => $e10bd19c72c588e6$export$222d1ccd1870be1d = v);
|
|
538
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield-inputIcon", () => $e10bd19c72c588e6$export$c1cdcaa5fe76a871, (v) => $e10bd19c72c588e6$export$c1cdcaa5fe76a871 = v);
|
|
539
|
+
$parcel$export($e10bd19c72c588e6$exports, "spectrum-Textfield-circleLoader", () => $e10bd19c72c588e6$export$82a249fb4d6127, (v) => $e10bd19c72c588e6$export$82a249fb4d6127 = v);
|
|
540
|
+
$parcel$export($e10bd19c72c588e6$exports, "is-focused", () => $e10bd19c72c588e6$export$e7dc768d35940237, (v) => $e10bd19c72c588e6$export$e7dc768d35940237 = v);
|
|
541
|
+
$parcel$export($e10bd19c72c588e6$exports, "focus-ring", () => $e10bd19c72c588e6$export$f39a09f249340e2a, (v) => $e10bd19c72c588e6$export$f39a09f249340e2a = v);
|
|
542
|
+
$parcel$export($e10bd19c72c588e6$exports, "is-disabled", () => $e10bd19c72c588e6$export$d35bc1e505d1ebbf, (v) => $e10bd19c72c588e6$export$d35bc1e505d1ebbf = v);
|
|
543
|
+
var $e10bd19c72c588e6$export$1ac009feb2b0bd0c;
|
|
544
|
+
var $e10bd19c72c588e6$export$2c8a10299d8b3418;
|
|
545
|
+
var $e10bd19c72c588e6$export$bffd5e3d61a81737;
|
|
546
|
+
var $e10bd19c72c588e6$export$9699f1c538a448a0;
|
|
547
|
+
var $e10bd19c72c588e6$export$e5b2f5233e4e5194;
|
|
548
|
+
var $e10bd19c72c588e6$export$b8813cd5d7824ce7;
|
|
549
|
+
var $e10bd19c72c588e6$export$c2abbc3f970170b7;
|
|
550
|
+
var $e10bd19c72c588e6$export$58e50b10d30123df;
|
|
551
|
+
var $e10bd19c72c588e6$export$14fd30fea6f1348c;
|
|
552
|
+
var $e10bd19c72c588e6$export$cf0ead5b44db0da3;
|
|
553
|
+
var $e10bd19c72c588e6$export$222d1ccd1870be1d;
|
|
554
|
+
var $e10bd19c72c588e6$export$c1cdcaa5fe76a871;
|
|
555
|
+
var $e10bd19c72c588e6$export$82a249fb4d6127;
|
|
556
|
+
var $e10bd19c72c588e6$export$e7dc768d35940237;
|
|
557
|
+
var $e10bd19c72c588e6$export$f39a09f249340e2a;
|
|
558
|
+
var $e10bd19c72c588e6$export$d35bc1e505d1ebbf;
|
|
559
|
+
$e10bd19c72c588e6$export$1ac009feb2b0bd0c = "_spectrum-Textfield-input_73bc77";
|
|
560
|
+
$e10bd19c72c588e6$export$2c8a10299d8b3418 = "_spectrum-Textfield_73bc77";
|
|
561
|
+
$e10bd19c72c588e6$export$bffd5e3d61a81737 = "_spectrum-Textfield--quiet_73bc77";
|
|
562
|
+
$e10bd19c72c588e6$export$9699f1c538a448a0 = "_spectrum-Textfield--multiline_73bc77";
|
|
563
|
+
$e10bd19c72c588e6$export$e5b2f5233e4e5194 = "_is-placeholder_73bc77";
|
|
564
|
+
$e10bd19c72c588e6$export$b8813cd5d7824ce7 = "_is-hovered_73bc77";
|
|
565
|
+
$e10bd19c72c588e6$export$c2abbc3f970170b7 = "_spectrum-Textfield--valid_73bc77";
|
|
566
|
+
$e10bd19c72c588e6$export$58e50b10d30123df = "_spectrum-Textfield--invalid_73bc77";
|
|
567
|
+
$e10bd19c72c588e6$export$14fd30fea6f1348c = "_spectrum-Textfield--loadable_73bc77";
|
|
568
|
+
$e10bd19c72c588e6$export$cf0ead5b44db0da3 = "_spectrum-Textfield-validationIcon_73bc77";
|
|
569
|
+
$e10bd19c72c588e6$export$222d1ccd1870be1d = "_spectrum-Textfield-icon_73bc77";
|
|
570
|
+
$e10bd19c72c588e6$export$c1cdcaa5fe76a871 = "_spectrum-Textfield-inputIcon_73bc77";
|
|
571
|
+
$e10bd19c72c588e6$export$82a249fb4d6127 = "_spectrum-Textfield-circleLoader_73bc77";
|
|
572
|
+
$e10bd19c72c588e6$export$e7dc768d35940237 = "_is-focused_73bc77";
|
|
573
|
+
$e10bd19c72c588e6$export$f39a09f249340e2a = "_focus-ring_73bc77";
|
|
574
|
+
$e10bd19c72c588e6$export$d35bc1e505d1ebbf = "_is-disabled_73bc77";
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
const $6506b3972132f452$export$7637df911c069b4d = /*#__PURE__*/ $9LdFq$react.forwardRef(function $6506b3972132f452$export$7637df911c069b4d(props, ref) {
|
|
588
|
+
props = $9LdFq$useProviderProps(props);
|
|
589
|
+
let { isQuiet: isQuiet , isDisabled: isDisabled , validationState: validationState , isReadOnly: isReadOnly } = props;
|
|
590
|
+
let { contains: contains } = $9LdFq$useFilter({
|
|
591
|
+
sensitivity: 'base'
|
|
592
|
+
});
|
|
593
|
+
let state = $9LdFq$useComboBoxState({
|
|
594
|
+
...props,
|
|
595
|
+
defaultFilter: contains,
|
|
596
|
+
allowsEmptyCollection: true,
|
|
597
|
+
// Needs to be false here otherwise we double up on commitSelection/commitCustomValue calls when
|
|
598
|
+
// user taps on underlay (i.e. initial tap will call setFocused(false) -> commitSelection/commitCustomValue via onBlur,
|
|
599
|
+
// then the closing of the tray will call setFocused(false) again due to cleanup effect)
|
|
600
|
+
shouldCloseOnBlur: false
|
|
601
|
+
});
|
|
602
|
+
let buttonRef = $9LdFq$useRef();
|
|
603
|
+
let domRef = $9LdFq$useFocusableRef(ref, buttonRef);
|
|
604
|
+
let { triggerProps: triggerProps , overlayProps: overlayProps } = $9LdFq$useOverlayTrigger({
|
|
605
|
+
type: 'listbox'
|
|
606
|
+
}, state, buttonRef);
|
|
607
|
+
let { labelProps: labelProps , fieldProps: fieldProps } = $9LdFq$useField({
|
|
608
|
+
...props,
|
|
609
|
+
labelElementType: 'span'
|
|
610
|
+
});
|
|
611
|
+
// Focus the button and show focus ring when clicking on the label
|
|
612
|
+
labelProps.onClick = ()=>{
|
|
613
|
+
if (!props.isDisabled) {
|
|
614
|
+
buttonRef.current.focus();
|
|
615
|
+
$9LdFq$setInteractionModality('keyboard');
|
|
616
|
+
}
|
|
617
|
+
};
|
|
618
|
+
let onClose = ()=>state.commit()
|
|
619
|
+
;
|
|
620
|
+
return(/*#__PURE__*/ $9LdFq$react.createElement($9LdFq$react.Fragment, null, /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$Field, {
|
|
621
|
+
...props,
|
|
622
|
+
labelProps: labelProps,
|
|
623
|
+
elementType: "span",
|
|
624
|
+
ref: domRef,
|
|
625
|
+
includeNecessityIndicatorInAccessibilityName: true
|
|
626
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement($6506b3972132f452$var$ComboBoxButton, {
|
|
627
|
+
...$9LdFq$mergeProps(triggerProps, fieldProps, {
|
|
628
|
+
autoFocus: props.autoFocus
|
|
629
|
+
}),
|
|
630
|
+
ref: buttonRef,
|
|
631
|
+
isQuiet: isQuiet,
|
|
632
|
+
isDisabled: isDisabled,
|
|
633
|
+
isPlaceholder: !state.inputValue,
|
|
634
|
+
validationState: validationState,
|
|
635
|
+
onPress: ()=>!isReadOnly && state.open(null, 'manual')
|
|
636
|
+
}, state.inputValue || props.placeholder || '')), /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$Tray, {
|
|
637
|
+
isOpen: state.isOpen,
|
|
638
|
+
onClose: onClose,
|
|
639
|
+
isFixedHeight: true,
|
|
640
|
+
isNonModal: true,
|
|
641
|
+
...overlayProps
|
|
642
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement($6506b3972132f452$var$ComboBoxTray, {
|
|
643
|
+
...props,
|
|
644
|
+
onClose: onClose,
|
|
645
|
+
overlayProps: overlayProps,
|
|
646
|
+
state: state
|
|
647
|
+
}))));
|
|
648
|
+
});
|
|
649
|
+
const $6506b3972132f452$var$ComboBoxButton = /*#__PURE__*/ $9LdFq$react.forwardRef(function ComboBoxButton(props, ref) {
|
|
650
|
+
let { isQuiet: isQuiet , isDisabled: isDisabled , isPlaceholder: isPlaceholder , validationState: validationState , children: children , style: style , className: className } = props;
|
|
651
|
+
let formatMessage = $9LdFq$useMessageFormatter((/*@__PURE__*/$parcel$interopDefault($3e29a2ed63b3bab0$exports)));
|
|
652
|
+
let valueId = $9LdFq$useId();
|
|
653
|
+
let invalidId = $9LdFq$useId();
|
|
654
|
+
let validationIcon = validationState === 'invalid' ? /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$spectrumiconsuiAlertMedium, {
|
|
655
|
+
id: invalidId,
|
|
656
|
+
"aria-label": formatMessage('invalid')
|
|
657
|
+
}) : /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$spectrumiconsuiCheckmarkMedium, null);
|
|
658
|
+
let validation = /*#__PURE__*/ $9LdFq$react.cloneElement(validationIcon, {
|
|
659
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($e10bd19c72c588e6$exports)), 'spectrum-Textfield-validationIcon', $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-InputGroup-input-validationIcon'))
|
|
660
|
+
});
|
|
661
|
+
let { hoverProps: hoverProps , isHovered: isHovered } = $9LdFq$useHover({
|
|
662
|
+
});
|
|
663
|
+
let { buttonProps: buttonProps , isPressed: isPressed } = $9LdFq$useButton({
|
|
664
|
+
...props,
|
|
665
|
+
'aria-labelledby': [
|
|
666
|
+
props['aria-labelledby'],
|
|
667
|
+
props['aria-label'] && !props['aria-labelledby'] ? props.id : null,
|
|
668
|
+
valueId,
|
|
669
|
+
validationState === 'invalid' ? invalidId : null
|
|
670
|
+
].filter(Boolean).join(' '),
|
|
671
|
+
elementType: 'div'
|
|
672
|
+
}, ref);
|
|
673
|
+
return(/*#__PURE__*/ $9LdFq$react.createElement($9LdFq$FocusRing, {
|
|
674
|
+
focusClass: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'is-focused'),
|
|
675
|
+
focusRingClass: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'focus-ring')
|
|
676
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement("div", {
|
|
677
|
+
...$9LdFq$mergeProps(hoverProps, buttonProps),
|
|
678
|
+
"aria-haspopup": "dialog",
|
|
679
|
+
ref: ref,
|
|
680
|
+
style: {
|
|
681
|
+
...style,
|
|
682
|
+
outline: 'none'
|
|
683
|
+
},
|
|
684
|
+
className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-InputGroup', {
|
|
685
|
+
'spectrum-InputGroup--quiet': isQuiet,
|
|
686
|
+
'is-disabled': isDisabled,
|
|
687
|
+
'spectrum-InputGroup--invalid': validationState === 'invalid',
|
|
688
|
+
'is-hovered': isHovered
|
|
689
|
+
}, $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($d19a056b45e63e97$exports)), 'mobile-combobox'), className)
|
|
690
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement("div", {
|
|
691
|
+
className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($e10bd19c72c588e6$exports)), 'spectrum-Textfield', {
|
|
692
|
+
'spectrum-Textfield--invalid': validationState === 'invalid',
|
|
693
|
+
'spectrum-Textfield--valid': validationState === 'valid',
|
|
694
|
+
'spectrum-Textfield--quiet': isQuiet
|
|
695
|
+
}, $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-InputGroup-field'))
|
|
696
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement("div", {
|
|
697
|
+
className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($e10bd19c72c588e6$exports)), 'spectrum-Textfield-input', {
|
|
698
|
+
'is-hovered': isHovered,
|
|
699
|
+
'is-placeholder': isPlaceholder,
|
|
700
|
+
'is-disabled': isDisabled
|
|
701
|
+
}, $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-InputGroup-input', $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($29047d5b2695cedc$exports)), 'spectrum-Field-field')), $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($d19a056b45e63e97$exports)), 'mobile-input'))
|
|
702
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement("span", {
|
|
703
|
+
id: valueId,
|
|
704
|
+
className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($d19a056b45e63e97$exports)), 'mobile-value')
|
|
705
|
+
}, children)), validationState ? validation : null), /*#__PURE__*/ $9LdFq$react.createElement("div", {
|
|
706
|
+
className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($91cc66a793b0c871$exports)), 'spectrum-FieldButton', {
|
|
707
|
+
'spectrum-FieldButton--quiet': isQuiet,
|
|
708
|
+
'is-active': isPressed,
|
|
709
|
+
'is-disabled': isDisabled,
|
|
710
|
+
'spectrum-FieldButton--invalid': validationState === 'invalid',
|
|
711
|
+
'is-hovered': isHovered
|
|
712
|
+
}, $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-FieldButton'))
|
|
713
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$spectrumiconsuiChevronDownMedium, {
|
|
714
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-Dropdown-chevron')
|
|
715
|
+
})))));
|
|
716
|
+
});
|
|
717
|
+
function $6506b3972132f452$var$ComboBoxTray(props) {
|
|
718
|
+
let { state: // completionMode = 'suggest',
|
|
719
|
+
state , isDisabled: isDisabled , validationState: validationState , label: label , overlayProps: overlayProps , loadingState: loadingState , onLoadMore: onLoadMore , onClose: onClose } = props;
|
|
720
|
+
let timeout = $9LdFq$useRef(null);
|
|
721
|
+
let [showLoading, setShowLoading] = $9LdFq$useState(false);
|
|
722
|
+
let inputRef = $9LdFq$useRef();
|
|
723
|
+
let buttonRef = $9LdFq$useRef();
|
|
724
|
+
let popoverRef = $9LdFq$useRef();
|
|
725
|
+
let listBoxRef = $9LdFq$useRef();
|
|
726
|
+
let layout = $9LdFq$useListBoxLayout(state);
|
|
727
|
+
let formatMessage = $9LdFq$useMessageFormatter((/*@__PURE__*/$parcel$interopDefault($3e29a2ed63b3bab0$exports)));
|
|
728
|
+
let { inputProps: inputProps , listBoxProps: listBoxProps , labelProps: labelProps } = $9LdFq$useComboBox({
|
|
729
|
+
...props,
|
|
730
|
+
// completionMode,
|
|
731
|
+
keyboardDelegate: layout,
|
|
732
|
+
buttonRef: $9LdFq$unwrapDOMRef(buttonRef),
|
|
733
|
+
popoverRef: popoverRef,
|
|
734
|
+
listBoxRef: listBoxRef,
|
|
735
|
+
inputRef: inputRef
|
|
736
|
+
}, state);
|
|
737
|
+
$9LdFq$react.useEffect(()=>{
|
|
738
|
+
$9LdFq$focusSafely(inputRef.current);
|
|
739
|
+
// When the tray unmounts, set state.isFocused (i.e. the tray input's focus tracker) to false.
|
|
740
|
+
// This is to prevent state.isFocused from being set to true when the tray closes via tapping on the underlay
|
|
741
|
+
// (FocusScope attempts to restore focus to the tray input when tapping outside the tray due to "contain")
|
|
742
|
+
// Have to do this manually since React doesn't call onBlur when a component is unmounted: https://github.com/facebook/react/issues/12363
|
|
743
|
+
return ()=>{
|
|
744
|
+
state.setFocused(false);
|
|
745
|
+
};
|
|
746
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
747
|
+
}, []);
|
|
748
|
+
let { dialogProps: dialogProps } = $9LdFq$useDialog({
|
|
749
|
+
'aria-labelledby': $9LdFq$useId(labelProps.id)
|
|
750
|
+
}, popoverRef);
|
|
751
|
+
// Override the role of the input to "searchbox" instead of "combobox".
|
|
752
|
+
// Since the listbox is always visible, the combobox role doesn't really give us anything.
|
|
753
|
+
// VoiceOver on iOS reads "double tap to collapse" when focused on the input rather than
|
|
754
|
+
// "double tap to edit text", as with a textbox or searchbox. We'd like double tapping to
|
|
755
|
+
// open the virtual keyboard rather than closing the tray.
|
|
756
|
+
inputProps.role = 'searchbox';
|
|
757
|
+
inputProps['aria-haspopup'] = 'listbox';
|
|
758
|
+
delete inputProps.onTouchEnd;
|
|
759
|
+
let clearButton = /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$ClearButton, {
|
|
760
|
+
preventFocus: true,
|
|
761
|
+
"aria-label": formatMessage('clear'),
|
|
762
|
+
excludeFromTabOrder: true,
|
|
763
|
+
onPress: ()=>{
|
|
764
|
+
state.setInputValue('');
|
|
765
|
+
inputRef.current.focus();
|
|
766
|
+
},
|
|
767
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($f3224a2f471fe717$exports)), 'spectrum-ClearButton'),
|
|
768
|
+
isDisabled: isDisabled
|
|
769
|
+
});
|
|
770
|
+
let loadingCircle = /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$ProgressCircle, {
|
|
771
|
+
"aria-label": formatMessage('loading'),
|
|
772
|
+
size: "S",
|
|
773
|
+
isIndeterminate: true,
|
|
774
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($f3224a2f471fe717$exports)), 'spectrum-Search-circleLoader', $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($e10bd19c72c588e6$exports)), 'spectrum-Textfield-circleLoader'))
|
|
775
|
+
});
|
|
776
|
+
// Close the software keyboard on scroll to give the user a bigger area to scroll.
|
|
777
|
+
// But only do this if scrolling with touch, otherwise it can cause issues with touch
|
|
778
|
+
// screen readers.
|
|
779
|
+
let isTouchDown = $9LdFq$useRef(false);
|
|
780
|
+
let onTouchStart = ()=>{
|
|
781
|
+
isTouchDown.current = true;
|
|
782
|
+
};
|
|
783
|
+
let onTouchEnd = ()=>{
|
|
784
|
+
isTouchDown.current = false;
|
|
785
|
+
};
|
|
786
|
+
let onScroll = $9LdFq$useCallback(()=>{
|
|
787
|
+
if (!inputRef.current || document.activeElement !== inputRef.current || !isTouchDown.current) return;
|
|
788
|
+
popoverRef.current.focus();
|
|
789
|
+
}, [
|
|
790
|
+
inputRef,
|
|
791
|
+
popoverRef,
|
|
792
|
+
isTouchDown
|
|
793
|
+
]);
|
|
794
|
+
let inputValue = inputProps.value;
|
|
795
|
+
let lastInputValue = $9LdFq$useRef(inputValue);
|
|
796
|
+
$9LdFq$useEffect(()=>{
|
|
797
|
+
if (loadingState === 'filtering' && !showLoading) {
|
|
798
|
+
if (timeout.current === null) timeout.current = setTimeout(()=>{
|
|
799
|
+
setShowLoading(true);
|
|
800
|
+
}, 500);
|
|
801
|
+
// If user is typing, clear the timer and restart since it is a new request
|
|
802
|
+
if (inputValue !== lastInputValue.current) {
|
|
803
|
+
clearTimeout(timeout.current);
|
|
804
|
+
timeout.current = setTimeout(()=>{
|
|
805
|
+
setShowLoading(true);
|
|
806
|
+
}, 500);
|
|
807
|
+
}
|
|
808
|
+
} else if (loadingState !== 'filtering') {
|
|
809
|
+
// If loading is no longer happening, clear any timers and hide the loading circle
|
|
810
|
+
setShowLoading(false);
|
|
811
|
+
clearTimeout(timeout.current);
|
|
812
|
+
timeout.current = null;
|
|
813
|
+
}
|
|
814
|
+
lastInputValue.current = inputValue;
|
|
815
|
+
}, [
|
|
816
|
+
loadingState,
|
|
817
|
+
inputValue,
|
|
818
|
+
showLoading
|
|
819
|
+
]);
|
|
820
|
+
let onKeyDown = (e)=>{
|
|
821
|
+
// Close virtual keyboard if user hits Enter w/o any focused options
|
|
822
|
+
if (e.key === 'Enter' && state.selectionManager.focusedKey == null) popoverRef.current.focus();
|
|
823
|
+
else inputProps.onKeyDown(e);
|
|
824
|
+
};
|
|
825
|
+
return(/*#__PURE__*/ $9LdFq$react.createElement($9LdFq$FocusScope, {
|
|
826
|
+
restoreFocus: true,
|
|
827
|
+
contain: true
|
|
828
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement("div", {
|
|
829
|
+
...$9LdFq$mergeProps(overlayProps, dialogProps),
|
|
830
|
+
ref: popoverRef,
|
|
831
|
+
className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($d19a056b45e63e97$exports)), 'tray-dialog')
|
|
832
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$DismissButton, {
|
|
833
|
+
onDismiss: onClose
|
|
834
|
+
}), /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$TextFieldBase, {
|
|
835
|
+
label: label,
|
|
836
|
+
labelProps: labelProps,
|
|
837
|
+
inputProps: {
|
|
838
|
+
...inputProps,
|
|
839
|
+
onKeyDown: onKeyDown
|
|
840
|
+
},
|
|
841
|
+
inputRef: inputRef,
|
|
842
|
+
isDisabled: isDisabled,
|
|
843
|
+
isLoading: showLoading && loadingState === 'filtering',
|
|
844
|
+
loadingIndicator: loadingState != null && loadingCircle,
|
|
845
|
+
validationState: validationState,
|
|
846
|
+
labelAlign: "start",
|
|
847
|
+
labelPosition: "top",
|
|
848
|
+
wrapperChildren: (state.inputValue !== '' || loadingState === 'filtering' || validationState != null) && !props.isReadOnly && clearButton,
|
|
849
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($f3224a2f471fe717$exports)), 'spectrum-Search', 'spectrum-Textfield', 'spectrum-Search--loadable', {
|
|
850
|
+
'spectrum-Search--invalid': validationState === 'invalid',
|
|
851
|
+
'spectrum-Search--valid': validationState === 'valid'
|
|
852
|
+
}, $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($d19a056b45e63e97$exports)), 'tray-textfield', {
|
|
853
|
+
'has-label': !!props.label
|
|
854
|
+
})),
|
|
855
|
+
inputClassName: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($d19a056b45e63e97$exports)), 'tray-textfield-input', $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($f3224a2f471fe717$exports)), 'spectrum-Search-input')),
|
|
856
|
+
validationIconClassName: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($f3224a2f471fe717$exports)), 'spectrum-Search-validationIcon')
|
|
857
|
+
}), /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$ListBoxBase, {
|
|
858
|
+
...listBoxProps,
|
|
859
|
+
domProps: {
|
|
860
|
+
onTouchStart: onTouchStart,
|
|
861
|
+
onTouchEnd: onTouchEnd
|
|
862
|
+
},
|
|
863
|
+
disallowEmptySelection: true,
|
|
864
|
+
shouldSelectOnPressUp: true,
|
|
865
|
+
focusOnPointerEnter: true,
|
|
866
|
+
layout: layout,
|
|
867
|
+
state: state,
|
|
868
|
+
shouldUseVirtualFocus: true,
|
|
869
|
+
renderEmptyState: ()=>loadingState !== 'loading' && /*#__PURE__*/ $9LdFq$react.createElement("span", {
|
|
870
|
+
className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($d19a056b45e63e97$exports)), 'no-results')
|
|
871
|
+
}, formatMessage('noResults'))
|
|
872
|
+
,
|
|
873
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($d19a056b45e63e97$exports)), 'tray-listbox'),
|
|
874
|
+
ref: listBoxRef,
|
|
875
|
+
onScroll: onScroll,
|
|
876
|
+
onLoadMore: onLoadMore,
|
|
877
|
+
isLoading: loadingState === 'loading' || loadingState === 'loadingMore'
|
|
878
|
+
}), /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$DismissButton, {
|
|
879
|
+
onDismiss: onClose
|
|
880
|
+
}))));
|
|
643
881
|
}
|
|
644
882
|
|
|
645
|
-
// @ts-ignore
|
|
646
|
-
const $a1e2444f979a947af6adfa139e4b9220$var$intlMessages = {
|
|
647
|
-
"ar-AE": _babelRuntimeHelpersEsmInteropRequireDefault($aeabefb3f029f59bb5fb8536b65cc107$exports).default,
|
|
648
|
-
"bg-BG": _babelRuntimeHelpersEsmInteropRequireDefault($e81215b32fa7db9a7878fa16113eb13d$exports).default,
|
|
649
|
-
"cs-CZ": _babelRuntimeHelpersEsmInteropRequireDefault($bb869dea6e09984e8b04fe440dc02ec$exports).default,
|
|
650
|
-
"da-DK": _babelRuntimeHelpersEsmInteropRequireDefault($eaf0e4fc84da4e97fcf8b24a0663f670$exports).default,
|
|
651
|
-
"de-DE": _babelRuntimeHelpersEsmInteropRequireDefault($b56bf5d22cb0f8734a4fc5ee20a9$exports).default,
|
|
652
|
-
"el-GR": _babelRuntimeHelpersEsmInteropRequireDefault($e2505be9c44ad2de362aed02038721c6$exports).default,
|
|
653
|
-
"en-US": _babelRuntimeHelpersEsmInteropRequireDefault($d463e3a7667fca55cd060af86bae6dc7$exports).default,
|
|
654
|
-
"es-ES": _babelRuntimeHelpersEsmInteropRequireDefault($d4e2ba5b2cf0711ecf714c846bf7985$exports).default,
|
|
655
|
-
"et-EE": _babelRuntimeHelpersEsmInteropRequireDefault($e3596e15452c69f045c20524dbb2$exports).default,
|
|
656
|
-
"fi-FI": _babelRuntimeHelpersEsmInteropRequireDefault($c945fdb8634b778ebd85cce64d9f$exports).default,
|
|
657
|
-
"fr-FR": _babelRuntimeHelpersEsmInteropRequireDefault($ddf38499897200fd5686ac2871649df$exports).default,
|
|
658
|
-
"he-IL": _babelRuntimeHelpersEsmInteropRequireDefault($a41bddea8c9d7e8d301620d4e42f$exports).default,
|
|
659
|
-
"hr-HR": _babelRuntimeHelpersEsmInteropRequireDefault($c91221142608664f57adc7c440d25c5c$exports).default,
|
|
660
|
-
"hu-HU": _babelRuntimeHelpersEsmInteropRequireDefault($fbc3e6ba153b38828dbd4e51aedcd9c$exports).default,
|
|
661
|
-
"it-IT": _babelRuntimeHelpersEsmInteropRequireDefault($e136b067ceb9d5b9a035ed9f5faa6018$exports).default,
|
|
662
|
-
"ja-JP": _babelRuntimeHelpersEsmInteropRequireDefault($bc0662f1900351b0445924c5be7$exports).default,
|
|
663
|
-
"ko-KR": _babelRuntimeHelpersEsmInteropRequireDefault($aae5c87ddbf07a13d7cf3cb3c706c096$exports).default,
|
|
664
|
-
"lt-LT": _babelRuntimeHelpersEsmInteropRequireDefault($f9bf28c16957dd98d784eef2160689$exports).default,
|
|
665
|
-
"lv-LV": _babelRuntimeHelpersEsmInteropRequireDefault($c41b94dd0457195a34a60e9d0893d89e$exports).default,
|
|
666
|
-
"nb-NO": _babelRuntimeHelpersEsmInteropRequireDefault($f8ae30ecd9af5338c78bf67acc6fb392$exports).default,
|
|
667
|
-
"nl-NL": _babelRuntimeHelpersEsmInteropRequireDefault($f21b1c8f7ed4d2e3b8bb19291cb8$exports).default,
|
|
668
|
-
"pl-PL": _babelRuntimeHelpersEsmInteropRequireDefault($e4cc01ee8904e31a9a335f923ae8629a$exports).default,
|
|
669
|
-
"pt-BR": _babelRuntimeHelpersEsmInteropRequireDefault($df8dca18e32a461efd140442fc548c72$exports).default,
|
|
670
|
-
"pt-PT": _babelRuntimeHelpersEsmInteropRequireDefault($e5697b97bd7b08a87614a3a63c2233$exports).default,
|
|
671
|
-
"ro-RO": _babelRuntimeHelpersEsmInteropRequireDefault($a4d94a6f59475598baa70097a6ac3345$exports).default,
|
|
672
|
-
"ru-RU": _babelRuntimeHelpersEsmInteropRequireDefault($ec693ed520530f049bb03a9de8f2$exports).default,
|
|
673
|
-
"sk-SK": _babelRuntimeHelpersEsmInteropRequireDefault($b620d822b146f7dbd3c5d9fd416f3640$exports).default,
|
|
674
|
-
"sl-SI": _babelRuntimeHelpersEsmInteropRequireDefault($f131bcd2c7e8f9c8460b2a7928760dc$exports).default,
|
|
675
|
-
"sr-SP": _babelRuntimeHelpersEsmInteropRequireDefault($eeedef4ebbff571eaf41ecd136f71$exports).default,
|
|
676
|
-
"sv-SE": _babelRuntimeHelpersEsmInteropRequireDefault($db418128beb57024edf7ac9e84c764e1$exports).default,
|
|
677
|
-
"tr-TR": _babelRuntimeHelpersEsmInteropRequireDefault($eb9f1cce2dfb7c8c5b9ea893e144ce0d$exports).default,
|
|
678
|
-
"uk-UA": _babelRuntimeHelpersEsmInteropRequireDefault($d7aab1629c77f8c4b88e2938949da4$exports).default,
|
|
679
|
-
"zh-CN": _babelRuntimeHelpersEsmInteropRequireDefault($f22a63a5549fed0b00db96652c08cf$exports).default,
|
|
680
|
-
"zh-TW": _babelRuntimeHelpersEsmInteropRequireDefault($c5ea069e7a6e02a0a53f10506cd9b35$exports).default
|
|
681
|
-
};
|
|
682
883
|
|
|
683
|
-
function $a1e2444f979a947af6adfa139e4b9220$var$ComboBox(props, ref) {
|
|
684
|
-
props = useProviderProps(props);
|
|
685
|
-
let isMobile = useIsMobileDevice();
|
|
686
884
|
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
function $934aeeeb7b1e4f80$var$ComboBox(props, ref) {
|
|
898
|
+
props = $9LdFq$useProviderProps(props);
|
|
899
|
+
let isMobile = $9LdFq$useIsMobileDevice();
|
|
900
|
+
if (isMobile) // menuTrigger=focus/manual don't apply to mobile combobox
|
|
901
|
+
return(/*#__PURE__*/ $9LdFq$react.createElement($6506b3972132f452$export$7637df911c069b4d, {
|
|
902
|
+
...props,
|
|
903
|
+
menuTrigger: "input",
|
|
904
|
+
ref: ref
|
|
692
905
|
}));
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
906
|
+
else return(/*#__PURE__*/ $9LdFq$react.createElement($934aeeeb7b1e4f80$var$ComboBoxBase, {
|
|
907
|
+
...props,
|
|
908
|
+
ref: ref
|
|
696
909
|
}));
|
|
697
|
-
}
|
|
698
910
|
}
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
}
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
layout: layout,
|
|
819
|
-
state: state,
|
|
820
|
-
shouldUseVirtualFocus: true,
|
|
821
|
-
isLoading: loadingState === 'loadingMore',
|
|
822
|
-
onLoadMore: onLoadMore,
|
|
823
|
-
renderEmptyState: () => isAsync && /*#__PURE__*/_react.createElement("span", {
|
|
824
|
-
className: classNames($dea09d50cdec57db7ad515930d6daf$$interop$default, 'no-results')
|
|
825
|
-
}, loadingState === 'loading' ? formatMessage('loading') : formatMessage('noResults'))
|
|
826
|
-
})), /*#__PURE__*/_react.createElement(DismissButton, {
|
|
827
|
-
onDismiss: () => state.close()
|
|
828
|
-
})));
|
|
911
|
+
const $934aeeeb7b1e4f80$var$ComboBoxBase = /*#__PURE__*/ $9LdFq$react.forwardRef(function ComboBoxBase(props, ref) {
|
|
912
|
+
let { menuTrigger: menuTrigger = 'input' , shouldFlip: shouldFlip = true , direction: direction = 'bottom' , isQuiet: isQuiet , loadingState: loadingState , onLoadMore: onLoadMore } = props;
|
|
913
|
+
let formatMessage = $9LdFq$useMessageFormatter((/*@__PURE__*/$parcel$interopDefault($3e29a2ed63b3bab0$exports)));
|
|
914
|
+
let isAsync = loadingState != null;
|
|
915
|
+
let popoverRef = $9LdFq$useRef();
|
|
916
|
+
let unwrappedPopoverRef = $9LdFq$useUnwrapDOMRef(popoverRef);
|
|
917
|
+
let buttonRef = $9LdFq$useRef();
|
|
918
|
+
let unwrappedButtonRef = $9LdFq$useUnwrapDOMRef(buttonRef);
|
|
919
|
+
let listBoxRef = $9LdFq$useRef();
|
|
920
|
+
let inputRef = $9LdFq$useRef();
|
|
921
|
+
let domRef = $9LdFq$useFocusableRef(ref, inputRef);
|
|
922
|
+
let { contains: contains } = $9LdFq$useFilter({
|
|
923
|
+
sensitivity: 'base'
|
|
924
|
+
});
|
|
925
|
+
let state = $9LdFq$useComboBoxState({
|
|
926
|
+
...props,
|
|
927
|
+
defaultFilter: contains,
|
|
928
|
+
allowsEmptyCollection: isAsync
|
|
929
|
+
});
|
|
930
|
+
let layout = $9LdFq$useListBoxLayout(state);
|
|
931
|
+
let { buttonProps: buttonProps , inputProps: inputProps , listBoxProps: listBoxProps , labelProps: labelProps , descriptionProps: descriptionProps , errorMessageProps: errorMessageProps } = $9LdFq$useComboBox({
|
|
932
|
+
...props,
|
|
933
|
+
keyboardDelegate: layout,
|
|
934
|
+
buttonRef: unwrappedButtonRef,
|
|
935
|
+
popoverRef: unwrappedPopoverRef,
|
|
936
|
+
listBoxRef: listBoxRef,
|
|
937
|
+
inputRef: inputRef,
|
|
938
|
+
menuTrigger: menuTrigger
|
|
939
|
+
}, state);
|
|
940
|
+
let { overlayProps: overlayProps , placement: placement , updatePosition: updatePosition } = $9LdFq$useOverlayPosition({
|
|
941
|
+
targetRef: unwrappedButtonRef,
|
|
942
|
+
overlayRef: unwrappedPopoverRef,
|
|
943
|
+
scrollRef: listBoxRef,
|
|
944
|
+
placement: `${direction} end`,
|
|
945
|
+
shouldFlip: shouldFlip,
|
|
946
|
+
isOpen: state.isOpen,
|
|
947
|
+
onClose: state.close
|
|
948
|
+
});
|
|
949
|
+
// Measure the width of the inputfield and the button to inform the width of the menu (below).
|
|
950
|
+
let [menuWidth, setMenuWidth] = $9LdFq$useState(null);
|
|
951
|
+
let { scale: scale } = $9LdFq$useProvider();
|
|
952
|
+
let onResize = $9LdFq$useCallback(()=>{
|
|
953
|
+
if (unwrappedButtonRef.current && inputRef.current) {
|
|
954
|
+
let buttonWidth = unwrappedButtonRef.current.offsetWidth;
|
|
955
|
+
let inputWidth = inputRef.current.offsetWidth;
|
|
956
|
+
setMenuWidth(buttonWidth + inputWidth);
|
|
957
|
+
}
|
|
958
|
+
}, [
|
|
959
|
+
unwrappedButtonRef,
|
|
960
|
+
inputRef,
|
|
961
|
+
setMenuWidth
|
|
962
|
+
]);
|
|
963
|
+
$9LdFq$useResizeObserver({
|
|
964
|
+
ref: domRef,
|
|
965
|
+
onResize: onResize
|
|
966
|
+
});
|
|
967
|
+
$9LdFq$useLayoutEffect(onResize, [
|
|
968
|
+
scale,
|
|
969
|
+
onResize
|
|
970
|
+
]);
|
|
971
|
+
// Update position once the ListBox has rendered. This ensures that
|
|
972
|
+
// it flips properly when it doesn't fit in the available space.
|
|
973
|
+
// TODO: add ResizeObserver to useOverlayPosition so we don't need this.
|
|
974
|
+
$9LdFq$useLayoutEffect(()=>{
|
|
975
|
+
if (state.isOpen) requestAnimationFrame(()=>{
|
|
976
|
+
updatePosition();
|
|
977
|
+
});
|
|
978
|
+
}, [
|
|
979
|
+
state.isOpen,
|
|
980
|
+
updatePosition
|
|
981
|
+
]);
|
|
982
|
+
let style = {
|
|
983
|
+
...overlayProps.style,
|
|
984
|
+
width: isQuiet ? null : menuWidth,
|
|
985
|
+
minWidth: isQuiet ? `calc(${menuWidth}px + calc(2 * var(--spectrum-dropdown-quiet-offset)))` : menuWidth
|
|
986
|
+
};
|
|
987
|
+
return(/*#__PURE__*/ $9LdFq$react.createElement($9LdFq$react.Fragment, null, /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$Field, {
|
|
988
|
+
...props,
|
|
989
|
+
descriptionProps: descriptionProps,
|
|
990
|
+
errorMessageProps: errorMessageProps,
|
|
991
|
+
labelProps: labelProps,
|
|
992
|
+
ref: domRef
|
|
993
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement($934aeeeb7b1e4f80$var$ComboBoxInput, {
|
|
994
|
+
...props,
|
|
995
|
+
isOpen: state.isOpen,
|
|
996
|
+
loadingState: loadingState,
|
|
997
|
+
inputProps: inputProps,
|
|
998
|
+
inputRef: inputRef,
|
|
999
|
+
triggerProps: buttonProps,
|
|
1000
|
+
triggerRef: buttonRef
|
|
1001
|
+
})), /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$Popover, {
|
|
1002
|
+
isOpen: state.isOpen,
|
|
1003
|
+
UNSAFE_style: style,
|
|
1004
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-InputGroup-popover', {
|
|
1005
|
+
'spectrum-InputGroup-popover--quiet': isQuiet
|
|
1006
|
+
}),
|
|
1007
|
+
ref: popoverRef,
|
|
1008
|
+
placement: placement,
|
|
1009
|
+
hideArrow: true,
|
|
1010
|
+
isNonModal: true,
|
|
1011
|
+
isDismissable: false
|
|
1012
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$ListBoxBase, {
|
|
1013
|
+
...listBoxProps,
|
|
1014
|
+
ref: listBoxRef,
|
|
1015
|
+
disallowEmptySelection: true,
|
|
1016
|
+
autoFocus: state.focusStrategy,
|
|
1017
|
+
shouldSelectOnPressUp: true,
|
|
1018
|
+
focusOnPointerEnter: true,
|
|
1019
|
+
layout: layout,
|
|
1020
|
+
state: state,
|
|
1021
|
+
shouldUseVirtualFocus: true,
|
|
1022
|
+
isLoading: loadingState === 'loadingMore',
|
|
1023
|
+
onLoadMore: onLoadMore,
|
|
1024
|
+
renderEmptyState: ()=>isAsync && /*#__PURE__*/ $9LdFq$react.createElement("span", {
|
|
1025
|
+
className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($d19a056b45e63e97$exports)), 'no-results')
|
|
1026
|
+
}, loadingState === 'loading' ? formatMessage('loading') : formatMessage('noResults'))
|
|
1027
|
+
}), /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$DismissButton, {
|
|
1028
|
+
onDismiss: ()=>state.close()
|
|
1029
|
+
}))));
|
|
829
1030
|
});
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
loadingState
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
isQuiet: isQuiet,
|
|
912
|
-
validationState: validationState // loading circle should only be displayed if menu is open, if menuTrigger is "manual", or first time load (to stop circle from showing up when user selects an option)
|
|
913
|
-
// TODO: add special case for completionMode: complete as well
|
|
914
|
-
,
|
|
915
|
-
isLoading: showLoading && (isOpen || menuTrigger === 'manual' || loadingState === 'loading'),
|
|
916
|
-
loadingIndicator: loadingState != null && loadingCircle
|
|
917
|
-
}), /*#__PURE__*/_react.createElement(PressResponder, {
|
|
918
|
-
preventFocusOnPress: true,
|
|
919
|
-
isPressed: isOpen
|
|
920
|
-
}, /*#__PURE__*/_react.createElement(FieldButton, _babelRuntimeHelpersEsmExtends({}, triggerProps, {
|
|
921
|
-
ref: triggerRef,
|
|
922
|
-
UNSAFE_className: classNames($ed163f34af6780259e0266609fb62099$$interop$default, 'spectrum-FieldButton'),
|
|
923
|
-
isQuiet: isQuiet,
|
|
924
|
-
validationState: validationState
|
|
925
|
-
}), /*#__PURE__*/_react.createElement(_spectrumIconsUiChevronDownMedium, {
|
|
926
|
-
UNSAFE_className: classNames($ed163f34af6780259e0266609fb62099$$interop$default, 'spectrum-Dropdown-chevron')
|
|
927
|
-
})))));
|
|
1031
|
+
const $934aeeeb7b1e4f80$var$ComboBoxInput = /*#__PURE__*/ $9LdFq$react.forwardRef(function ComboBoxInput(props, ref) {
|
|
1032
|
+
let { isQuiet: isQuiet , isDisabled: isDisabled , validationState: validationState , inputProps: inputProps , inputRef: inputRef , triggerProps: triggerProps , triggerRef: triggerRef , autoFocus: autoFocus , style: style , className: className , loadingState: loadingState , isOpen: isOpen , menuTrigger: menuTrigger } = props;
|
|
1033
|
+
let { hoverProps: hoverProps , isHovered: isHovered } = $9LdFq$useHover({
|
|
1034
|
+
});
|
|
1035
|
+
let formatMessage = $9LdFq$useMessageFormatter((/*@__PURE__*/$parcel$interopDefault($3e29a2ed63b3bab0$exports)));
|
|
1036
|
+
let timeout = $9LdFq$useRef(null);
|
|
1037
|
+
let [showLoading, setShowLoading] = $9LdFq$useState(false);
|
|
1038
|
+
let loadingCircle = /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$ProgressCircle, {
|
|
1039
|
+
"aria-label": formatMessage('loading'),
|
|
1040
|
+
size: "S",
|
|
1041
|
+
isIndeterminate: true,
|
|
1042
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($e10bd19c72c588e6$exports)), 'spectrum-Textfield-circleLoader', $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-InputGroup-input-circleLoader'))
|
|
1043
|
+
});
|
|
1044
|
+
let isLoading = loadingState === 'loading' || loadingState === 'filtering';
|
|
1045
|
+
let inputValue = inputProps.value;
|
|
1046
|
+
let lastInputValue = $9LdFq$useRef(inputValue);
|
|
1047
|
+
$9LdFq$useEffect(()=>{
|
|
1048
|
+
if (isLoading && !showLoading) {
|
|
1049
|
+
if (timeout.current === null) timeout.current = setTimeout(()=>{
|
|
1050
|
+
setShowLoading(true);
|
|
1051
|
+
}, 500);
|
|
1052
|
+
// If user is typing, clear the timer and restart since it is a new request
|
|
1053
|
+
if (inputValue !== lastInputValue.current) {
|
|
1054
|
+
clearTimeout(timeout.current);
|
|
1055
|
+
timeout.current = setTimeout(()=>{
|
|
1056
|
+
setShowLoading(true);
|
|
1057
|
+
}, 500);
|
|
1058
|
+
}
|
|
1059
|
+
} else if (!isLoading) {
|
|
1060
|
+
// If loading is no longer happening, clear any timers and hide the loading circle
|
|
1061
|
+
setShowLoading(false);
|
|
1062
|
+
clearTimeout(timeout.current);
|
|
1063
|
+
timeout.current = null;
|
|
1064
|
+
}
|
|
1065
|
+
lastInputValue.current = inputValue;
|
|
1066
|
+
}, [
|
|
1067
|
+
isLoading,
|
|
1068
|
+
showLoading,
|
|
1069
|
+
inputValue
|
|
1070
|
+
]);
|
|
1071
|
+
return(/*#__PURE__*/ $9LdFq$react.createElement($9LdFq$FocusRing, {
|
|
1072
|
+
within: true,
|
|
1073
|
+
isTextInput: true,
|
|
1074
|
+
focusClass: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'is-focused'),
|
|
1075
|
+
focusRingClass: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'focus-ring'),
|
|
1076
|
+
autoFocus: autoFocus
|
|
1077
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement("div", {
|
|
1078
|
+
...hoverProps,
|
|
1079
|
+
ref: ref,
|
|
1080
|
+
style: style,
|
|
1081
|
+
className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-InputGroup', {
|
|
1082
|
+
'spectrum-InputGroup--quiet': isQuiet,
|
|
1083
|
+
'is-disabled': isDisabled,
|
|
1084
|
+
'spectrum-InputGroup--invalid': validationState === 'invalid',
|
|
1085
|
+
'is-hovered': isHovered
|
|
1086
|
+
}, className)
|
|
1087
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$TextFieldBase, {
|
|
1088
|
+
inputProps: inputProps,
|
|
1089
|
+
inputRef: inputRef,
|
|
1090
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-InputGroup-field'),
|
|
1091
|
+
inputClassName: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-InputGroup-input'),
|
|
1092
|
+
validationIconClassName: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-InputGroup-input-validationIcon'),
|
|
1093
|
+
isDisabled: isDisabled,
|
|
1094
|
+
isQuiet: isQuiet,
|
|
1095
|
+
validationState: validationState,
|
|
1096
|
+
// loading circle should only be displayed if menu is open, if menuTrigger is "manual", or first time load (to stop circle from showing up when user selects an option)
|
|
1097
|
+
// TODO: add special case for completionMode: complete as well
|
|
1098
|
+
isLoading: showLoading && (isOpen || menuTrigger === 'manual' || loadingState === 'loading'),
|
|
1099
|
+
loadingIndicator: loadingState != null && loadingCircle
|
|
1100
|
+
}), /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$PressResponder, {
|
|
1101
|
+
preventFocusOnPress: true,
|
|
1102
|
+
isPressed: isOpen
|
|
1103
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$FieldButton, {
|
|
1104
|
+
...triggerProps,
|
|
1105
|
+
ref: triggerRef,
|
|
1106
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-FieldButton'),
|
|
1107
|
+
isQuiet: isQuiet,
|
|
1108
|
+
validationState: validationState
|
|
1109
|
+
}, /*#__PURE__*/ $9LdFq$react.createElement($9LdFq$spectrumiconsuiChevronDownMedium, {
|
|
1110
|
+
UNSAFE_className: $9LdFq$classNames((/*@__PURE__*/$parcel$interopDefault($5114045f2eace5e5$exports)), 'spectrum-Dropdown-chevron')
|
|
1111
|
+
}))))));
|
|
928
1112
|
});
|
|
929
1113
|
/**
|
|
930
1114
|
* ComboBoxes combine a text entry with a picker menu, allowing users to filter longer lists to only the selections matching a query.
|
|
931
|
-
*/
|
|
1115
|
+
*/ const $934aeeeb7b1e4f80$export$72b9695b8216309a = /*#__PURE__*/ $9LdFq$react.forwardRef($934aeeeb7b1e4f80$var$ComboBox);
|
|
1116
|
+
|
|
1117
|
+
|
|
1118
|
+
|
|
932
1119
|
|
|
933
1120
|
|
|
934
|
-
export
|
|
1121
|
+
export {$9bebe0bd899521d2$re_export$Item as Item, $9bebe0bd899521d2$re_export$Section as Section, $934aeeeb7b1e4f80$export$72b9695b8216309a as ComboBox};
|
|
935
1122
|
//# sourceMappingURL=module.js.map
|