@skyux/lookup 6.13.0 → 6.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation.json +716 -627
- package/esm2020/lib/modules/autocomplete/autocomplete-input.directive.mjs +9 -1
- package/esm2020/lib/modules/autocomplete/autocomplete.component.mjs +10 -4
- package/esm2020/lib/modules/lookup/lookup-show-more-async-modal.component.mjs +8 -7
- package/esm2020/lib/modules/lookup/lookup-show-more-modal.component.mjs +20 -14
- package/esm2020/lib/modules/lookup/lookup.component.mjs +7 -3
- package/esm2020/testing/autocomplete/autocomplete-harness-filters.mjs +2 -0
- package/esm2020/testing/autocomplete/autocomplete-harness.mjs +157 -0
- package/esm2020/testing/autocomplete/autocomplete-input-harness.mjs +60 -0
- package/esm2020/testing/autocomplete/autocomplete-search-result-harness-filters.mjs +2 -0
- package/esm2020/testing/autocomplete/autocomplete-search-result-harness.mjs +40 -0
- package/esm2020/testing/lookup/lookup-harness-filters.mjs +2 -0
- package/esm2020/testing/lookup/lookup-harness.mjs +81 -0
- package/esm2020/testing/lookup/lookup-selection-harness-filters.mjs +2 -0
- package/esm2020/testing/lookup/lookup-selection-harness.mjs +7 -0
- package/esm2020/testing/lookup/lookup-selections-list-harness.mjs +25 -0
- package/esm2020/testing/lookup/lookup-show-more-picker-harness-filters.mjs +2 -0
- package/esm2020/testing/lookup/lookup-show-more-picker-harness.mjs +118 -0
- package/esm2020/testing/lookup/lookup-show-more-picker-search-result-harness-filters.mjs +2 -0
- package/esm2020/testing/lookup/lookup-show-more-picker-search-result-harness.mjs +7 -0
- package/esm2020/testing/public-api.mjs +16 -1
- package/esm2020/testing/search/search-fixture.mjs +2 -1
- package/esm2020/testing/search/search-harness-filters.mjs +2 -0
- package/esm2020/testing/search/search-harness.mjs +82 -0
- package/esm2020/testing/search/search-testing.module.mjs +5 -4
- package/fesm2015/skyux-lookup-testing.mjs +691 -5
- package/fesm2015/skyux-lookup-testing.mjs.map +1 -1
- package/fesm2015/skyux-lookup.mjs +54 -29
- package/fesm2015/skyux-lookup.mjs.map +1 -1
- package/fesm2020/skyux-lookup-testing.mjs +569 -4
- package/fesm2020/skyux-lookup-testing.mjs.map +1 -1
- package/fesm2020/skyux-lookup.mjs +53 -29
- package/fesm2020/skyux-lookup.mjs.map +1 -1
- package/lib/modules/autocomplete/autocomplete-input.directive.d.ts +1 -0
- package/lib/modules/lookup/lookup-show-more-async-modal.component.d.ts +6 -2
- package/lib/modules/lookup/lookup-show-more-modal.component.d.ts +6 -1
- package/lib/modules/lookup/lookup.component.d.ts +1 -0
- package/package.json +11 -10
- package/testing/autocomplete/autocomplete-harness-filters.d.ts +6 -0
- package/testing/autocomplete/autocomplete-harness.d.ts +79 -0
- package/testing/autocomplete/autocomplete-input-harness.d.ts +39 -0
- package/testing/autocomplete/autocomplete-search-result-harness-filters.d.ts +10 -0
- package/testing/autocomplete/autocomplete-search-result-harness.d.ts +30 -0
- package/testing/lookup/lookup-harness-filters.d.ts +6 -0
- package/testing/lookup/lookup-harness.d.ts +50 -0
- package/testing/lookup/lookup-selection-harness-filters.d.ts +6 -0
- package/testing/lookup/lookup-selection-harness.d.ts +6 -0
- package/testing/lookup/lookup-selections-list-harness.d.ts +19 -0
- package/testing/lookup/lookup-show-more-picker-harness-filters.d.ts +6 -0
- package/testing/lookup/lookup-show-more-picker-harness.d.ts +60 -0
- package/testing/lookup/lookup-show-more-picker-search-result-harness-filters.d.ts +6 -0
- package/testing/lookup/lookup-show-more-picker-search-result-harness.d.ts +6 -0
- package/testing/public-api.d.ts +15 -0
- package/testing/search/search-fixture.d.ts +1 -0
- package/testing/search/search-harness-filters.d.ts +6 -0
- package/testing/search/search-harness.d.ts +47 -0
- package/testing/search/search-testing.module.d.ts +3 -2
|
@@ -1,9 +1,317 @@
|
|
|
1
|
-
import { __awaiter } from 'tslib';
|
|
1
|
+
import { __awaiter, __classPrivateFieldGet } from 'tslib';
|
|
2
|
+
import { SkyComponentHarness, SkyOverlayHarness } from '@skyux/core/testing';
|
|
3
|
+
import { ComponentHarness, HarnessPredicate } from '@angular/cdk/testing';
|
|
2
4
|
import { By } from '@angular/platform-browser';
|
|
3
5
|
import { SkyAppTestUtility } from '@skyux-sdk/testing';
|
|
4
6
|
import * as i0 from '@angular/core';
|
|
5
7
|
import { NgModule } from '@angular/core';
|
|
6
8
|
import { SkyCountryFieldModule, SkySearchModule } from '@skyux/lookup';
|
|
9
|
+
import { SkyTokensHarness, SkyTokenHarness } from '@skyux/indicators/testing';
|
|
10
|
+
import { SkyInfiniteScrollHarness, SkyRepeaterItemHarness } from '@skyux/lists/testing';
|
|
11
|
+
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
class SkyAutocompleteInputHarness extends ComponentHarness {
|
|
17
|
+
/**
|
|
18
|
+
* Blurs the input.
|
|
19
|
+
*/
|
|
20
|
+
blur() {
|
|
21
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
22
|
+
return (yield this.host()).blur();
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Clears the input value.
|
|
27
|
+
*/
|
|
28
|
+
clear() {
|
|
29
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
30
|
+
return (yield this.host()).clear();
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Enters text into the input.
|
|
35
|
+
*/
|
|
36
|
+
enterText(value) {
|
|
37
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
38
|
+
const el = yield this.host();
|
|
39
|
+
yield el.focus();
|
|
40
|
+
yield el.clear();
|
|
41
|
+
yield el.sendKeys(value);
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Focuses the input.
|
|
46
|
+
*/
|
|
47
|
+
focus() {
|
|
48
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
49
|
+
return (yield this.host()).focus();
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Gets the value of the input.
|
|
54
|
+
*/
|
|
55
|
+
getValue() {
|
|
56
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
57
|
+
return (yield this.host()).getProperty('value');
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Whether the input is disabled.
|
|
62
|
+
*/
|
|
63
|
+
isDisabled() {
|
|
64
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
65
|
+
const disabled = yield (yield this.host()).getAttribute('disabled');
|
|
66
|
+
return disabled !== null;
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Whether the input is focused.
|
|
71
|
+
*/
|
|
72
|
+
isFocused() {
|
|
73
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
74
|
+
return (yield this.host()).isFocused();
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Returns the value of the input's `aria-owns` attribute.
|
|
79
|
+
*/
|
|
80
|
+
getAriaOwns() {
|
|
81
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
82
|
+
return (yield this.host()).getAttribute('aria-owns');
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
SkyAutocompleteInputHarness.hostSelector = '[skyAutocomplete]';
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Harness for interacting with an autocomplete search results in tests.
|
|
90
|
+
*/
|
|
91
|
+
class SkyAutocompleteSearchResultHarness extends ComponentHarness {
|
|
92
|
+
/**
|
|
93
|
+
* Gets a `HarnessPredicate` that can be used to search for a
|
|
94
|
+
* `SkyAutocompleteSearchResultHarness` that meets certain criteria.
|
|
95
|
+
*/
|
|
96
|
+
static with(filters) {
|
|
97
|
+
return new HarnessPredicate(SkyAutocompleteSearchResultHarness, filters).addOption('textContent', filters.textContent, (harness, text) => __awaiter(this, void 0, void 0, function* () { return HarnessPredicate.stringMatches(yield harness.textContent(), text); }));
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Returns the value of the search result's descriptor property.
|
|
101
|
+
* This value is set by the autocomplete's `descriptorProperty` input.
|
|
102
|
+
*/
|
|
103
|
+
getDescriptorValue() {
|
|
104
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
105
|
+
return (yield (yield this.host()).getAttribute('data-descriptor-value'));
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Returns a child harness.
|
|
110
|
+
*/
|
|
111
|
+
queryHarness(query) {
|
|
112
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
113
|
+
return this.locatorForOptional(query)();
|
|
114
|
+
});
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Selects the search result.
|
|
118
|
+
*/
|
|
119
|
+
select() {
|
|
120
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
121
|
+
return (yield this.host()).click();
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* Returns the text content of the search result.
|
|
126
|
+
*/
|
|
127
|
+
textContent() {
|
|
128
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
129
|
+
return (yield this.host()).text();
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
SkyAutocompleteSearchResultHarness.hostSelector = '.sky-autocomplete-result';
|
|
134
|
+
|
|
135
|
+
var _SkyAutocompleteHarness_instances, _SkyAutocompleteHarness_documentRootLocator, _SkyAutocompleteHarness_getInput, _SkyAutocompleteHarness_getOverlay;
|
|
136
|
+
/**
|
|
137
|
+
* Harness for interacting with an autocomplete component in tests.
|
|
138
|
+
*/
|
|
139
|
+
class SkyAutocompleteHarness extends SkyComponentHarness {
|
|
140
|
+
constructor() {
|
|
141
|
+
super(...arguments);
|
|
142
|
+
_SkyAutocompleteHarness_instances.add(this);
|
|
143
|
+
_SkyAutocompleteHarness_documentRootLocator.set(this, this.documentRootLocatorFactory());
|
|
144
|
+
_SkyAutocompleteHarness_getInput.set(this, this.locatorFor(SkyAutocompleteInputHarness));
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* Gets a `HarnessPredicate` that can be used to search for a
|
|
148
|
+
* `SkyAutocompleteHarness` that meets certain criteria.
|
|
149
|
+
*/
|
|
150
|
+
static with(filters) {
|
|
151
|
+
return SkyAutocompleteHarness.getDataSkyIdPredicate(filters);
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* Blurs the autocomplete input.
|
|
155
|
+
*/
|
|
156
|
+
blur() {
|
|
157
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
158
|
+
return (yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_getInput, "f").call(this)).blur();
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* Clears the input value.
|
|
163
|
+
*/
|
|
164
|
+
clear() {
|
|
165
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
166
|
+
return (yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_getInput, "f").call(this)).clear();
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* Enters text into the autocomplete input.
|
|
171
|
+
*/
|
|
172
|
+
enterText(value) {
|
|
173
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
174
|
+
return (yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_getInput, "f").call(this)).enterText(value);
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* Focuses the autocomplete input.
|
|
179
|
+
*/
|
|
180
|
+
focus() {
|
|
181
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
182
|
+
return (yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_getInput, "f").call(this)).focus();
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* Returns search result harnesses.
|
|
187
|
+
*/
|
|
188
|
+
getSearchResults(filters) {
|
|
189
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
190
|
+
const overlay = yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_instances, "m", _SkyAutocompleteHarness_getOverlay).call(this);
|
|
191
|
+
if (!overlay) {
|
|
192
|
+
throw new Error('Unable to retrieve search results. The autocomplete is closed.');
|
|
193
|
+
}
|
|
194
|
+
const harnesses = yield overlay.queryHarnesses(SkyAutocompleteSearchResultHarness.with(filters || {}));
|
|
195
|
+
if (filters && harnesses.length === 0) {
|
|
196
|
+
// Stringify the regular expression so that it's readable in the console log.
|
|
197
|
+
if (filters.textContent instanceof RegExp) {
|
|
198
|
+
filters.textContent = filters.textContent.toString();
|
|
199
|
+
}
|
|
200
|
+
throw new Error(`Could not find search results matching filter(s): ${JSON.stringify(filters)}`);
|
|
201
|
+
}
|
|
202
|
+
return harnesses;
|
|
203
|
+
});
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* Returns the text content for each search result.
|
|
207
|
+
*/
|
|
208
|
+
getSearchResultsText(filters) {
|
|
209
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
210
|
+
const harnesses = yield this.getSearchResults(filters);
|
|
211
|
+
const text = [];
|
|
212
|
+
for (const harness of harnesses) {
|
|
213
|
+
text.push(yield harness.textContent());
|
|
214
|
+
}
|
|
215
|
+
return text;
|
|
216
|
+
});
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* Gets the value of the autocomplete input.
|
|
220
|
+
*/
|
|
221
|
+
getValue() {
|
|
222
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
223
|
+
return (yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_getInput, "f").call(this)).getValue();
|
|
224
|
+
});
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* Whether the autocomplete input is disabled.
|
|
228
|
+
*/
|
|
229
|
+
isDisabled() {
|
|
230
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
231
|
+
return (yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_getInput, "f").call(this)).isDisabled();
|
|
232
|
+
});
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* Whether the autocomplete input is focused.
|
|
236
|
+
*/
|
|
237
|
+
isFocused() {
|
|
238
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
239
|
+
return (yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_getInput, "f").call(this)).isFocused();
|
|
240
|
+
});
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* Whether the autocomplete is open.
|
|
244
|
+
*/
|
|
245
|
+
isOpen() {
|
|
246
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
247
|
+
const overlay = yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_instances, "m", _SkyAutocompleteHarness_getOverlay).call(this);
|
|
248
|
+
return !!overlay;
|
|
249
|
+
});
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* Selects a search result.
|
|
253
|
+
*/
|
|
254
|
+
selectSearchResult(filters) {
|
|
255
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
256
|
+
const results = yield this.getSearchResults(filters);
|
|
257
|
+
if (results && results.length > 0) {
|
|
258
|
+
yield results[0].select();
|
|
259
|
+
}
|
|
260
|
+
});
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* Clicks the "Add" button in the autocomplete search results panel.
|
|
264
|
+
* (The "Add" functionality is not included in the public API
|
|
265
|
+
* of a "vanilla" autocomplete component, so this method is protected
|
|
266
|
+
* to prevent consumers of the autocomplete harness from calling it.
|
|
267
|
+
* The lookup harness, which extends the autocomplete harness, may
|
|
268
|
+
* still access this feature, however.)
|
|
269
|
+
*/
|
|
270
|
+
clickAddButton() {
|
|
271
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
272
|
+
const overlay = yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_instances, "m", _SkyAutocompleteHarness_getOverlay).call(this);
|
|
273
|
+
if (!overlay) {
|
|
274
|
+
throw new Error('Unable to find the "Add" button. The autocomplete is closed.');
|
|
275
|
+
}
|
|
276
|
+
const button = yield overlay.querySelector('button.sky-autocomplete-action-add');
|
|
277
|
+
if (!button) {
|
|
278
|
+
throw new Error('The "Add" button cannot be clicked because it does not exist.');
|
|
279
|
+
}
|
|
280
|
+
yield button.click();
|
|
281
|
+
});
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* Clicks the "Show more" button.
|
|
285
|
+
* (The "Show more" functionality is not included in the public API
|
|
286
|
+
* of a "vanilla" autocomplete component, so this method is protected
|
|
287
|
+
* to prevent consumers of the autocomplete harness from calling it.
|
|
288
|
+
* The lookup harness, which extends the autocomplete harness, may
|
|
289
|
+
* still access this feature, however.)
|
|
290
|
+
*/
|
|
291
|
+
clickShowMoreButton() {
|
|
292
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
293
|
+
const overlay = yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_instances, "m", _SkyAutocompleteHarness_getOverlay).call(this);
|
|
294
|
+
if (!overlay) {
|
|
295
|
+
throw new Error('Unable to find the "Show more" button. ' +
|
|
296
|
+
'The autocomplete is closed.');
|
|
297
|
+
}
|
|
298
|
+
const button = yield overlay.querySelector('button.sky-autocomplete-action-more');
|
|
299
|
+
if (!button) {
|
|
300
|
+
throw new Error('The "Show more" button cannot be clicked because it does not exist.');
|
|
301
|
+
}
|
|
302
|
+
yield button.click();
|
|
303
|
+
});
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
_SkyAutocompleteHarness_documentRootLocator = new WeakMap(), _SkyAutocompleteHarness_getInput = new WeakMap(), _SkyAutocompleteHarness_instances = new WeakSet(), _SkyAutocompleteHarness_getOverlay = function _SkyAutocompleteHarness_getOverlay() {
|
|
307
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
308
|
+
const overlayId = yield (yield __classPrivateFieldGet(this, _SkyAutocompleteHarness_getInput, "f").call(this)).getAriaOwns();
|
|
309
|
+
return overlayId
|
|
310
|
+
? __classPrivateFieldGet(this, _SkyAutocompleteHarness_documentRootLocator, "f").locatorForOptional(SkyOverlayHarness.with({ selector: `#${overlayId}` }))()
|
|
311
|
+
: null;
|
|
312
|
+
});
|
|
313
|
+
};
|
|
314
|
+
SkyAutocompleteHarness.hostSelector = 'sky-autocomplete';
|
|
7
315
|
|
|
8
316
|
/**
|
|
9
317
|
* Allows interaction with a SKY UX country field component.
|
|
@@ -137,8 +445,386 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
137
445
|
}]
|
|
138
446
|
}] });
|
|
139
447
|
|
|
448
|
+
/**
|
|
449
|
+
* Harness for interacting with multiselect lookup selections in tests.
|
|
450
|
+
*/
|
|
451
|
+
class SkyLookupSelectionsListHarness extends SkyTokensHarness {
|
|
452
|
+
/**
|
|
453
|
+
* Gets a list of selections.
|
|
454
|
+
*/
|
|
455
|
+
getSelections() {
|
|
456
|
+
const _super = Object.create(null, {
|
|
457
|
+
getTokens: { get: () => super.getTokens }
|
|
458
|
+
});
|
|
459
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
460
|
+
return _super.getTokens.call(this);
|
|
461
|
+
});
|
|
462
|
+
}
|
|
463
|
+
/**
|
|
464
|
+
* Dismisses the selections in the list.
|
|
465
|
+
*/
|
|
466
|
+
dismissSelections() {
|
|
467
|
+
const _super = Object.create(null, {
|
|
468
|
+
dismissTokens: { get: () => super.dismissTokens }
|
|
469
|
+
});
|
|
470
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
471
|
+
return _super.dismissTokens.call(this);
|
|
472
|
+
});
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* Gets the text content of all selections in the list.
|
|
476
|
+
*/
|
|
477
|
+
getSelectionsText() {
|
|
478
|
+
const _super = Object.create(null, {
|
|
479
|
+
getTokensText: { get: () => super.getTokensText }
|
|
480
|
+
});
|
|
481
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
482
|
+
return _super.getTokensText.call(this);
|
|
483
|
+
});
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
var _SkySearchHarness_instances, _SkySearchHarness_getInput, _SkySearchHarness_getSubmitButton, _SkySearchHarness_clickSubmitButton;
|
|
488
|
+
/**
|
|
489
|
+
* Harness for interacting with an search component in tests.
|
|
490
|
+
*/
|
|
491
|
+
class SkySearchHarness extends SkyComponentHarness {
|
|
492
|
+
constructor() {
|
|
493
|
+
super(...arguments);
|
|
494
|
+
_SkySearchHarness_instances.add(this);
|
|
495
|
+
_SkySearchHarness_getInput.set(this, this.locatorFor('input.sky-search-input'));
|
|
496
|
+
_SkySearchHarness_getSubmitButton.set(this, this.locatorFor('button.sky-search-btn-apply'));
|
|
497
|
+
}
|
|
498
|
+
/**
|
|
499
|
+
* Gets a `HarnessPredicate` that can be used to search for a
|
|
500
|
+
* `SkySearchHarness` that meets certain criteria.
|
|
501
|
+
*/
|
|
502
|
+
static with(filters) {
|
|
503
|
+
return this.getDataSkyIdPredicate(filters);
|
|
504
|
+
}
|
|
505
|
+
/**
|
|
506
|
+
* Blurs the input.
|
|
507
|
+
*/
|
|
508
|
+
blur() {
|
|
509
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
510
|
+
yield (yield __classPrivateFieldGet(this, _SkySearchHarness_getInput, "f").call(this)).blur();
|
|
511
|
+
});
|
|
512
|
+
}
|
|
513
|
+
/**
|
|
514
|
+
* Clears the input.
|
|
515
|
+
*/
|
|
516
|
+
clear() {
|
|
517
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
518
|
+
const input = yield __classPrivateFieldGet(this, _SkySearchHarness_getInput, "f").call(this);
|
|
519
|
+
yield input.focus();
|
|
520
|
+
yield input.clear();
|
|
521
|
+
yield __classPrivateFieldGet(this, _SkySearchHarness_instances, "m", _SkySearchHarness_clickSubmitButton).call(this);
|
|
522
|
+
});
|
|
523
|
+
}
|
|
524
|
+
/**
|
|
525
|
+
* Enters text into the input and performs a search.
|
|
526
|
+
*/
|
|
527
|
+
enterText(value) {
|
|
528
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
529
|
+
const input = yield __classPrivateFieldGet(this, _SkySearchHarness_getInput, "f").call(this);
|
|
530
|
+
yield input.clear();
|
|
531
|
+
yield input.focus();
|
|
532
|
+
yield input.sendKeys(value);
|
|
533
|
+
yield __classPrivateFieldGet(this, _SkySearchHarness_instances, "m", _SkySearchHarness_clickSubmitButton).call(this);
|
|
534
|
+
});
|
|
535
|
+
}
|
|
536
|
+
/**
|
|
537
|
+
* Focuses the input.
|
|
538
|
+
*/
|
|
539
|
+
focus() {
|
|
540
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
541
|
+
yield (yield __classPrivateFieldGet(this, _SkySearchHarness_getInput, "f").call(this)).focus();
|
|
542
|
+
});
|
|
543
|
+
}
|
|
544
|
+
/**
|
|
545
|
+
* Gets the value of the input's placeholder attribute.
|
|
546
|
+
*/
|
|
547
|
+
getPlaceholderText() {
|
|
548
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
549
|
+
return (yield __classPrivateFieldGet(this, _SkySearchHarness_getInput, "f").call(this)).getAttribute('placeholder');
|
|
550
|
+
});
|
|
551
|
+
}
|
|
552
|
+
/**
|
|
553
|
+
* Gets the value of the input.
|
|
554
|
+
*/
|
|
555
|
+
getValue() {
|
|
556
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
557
|
+
return (yield __classPrivateFieldGet(this, _SkySearchHarness_getInput, "f").call(this)).getProperty('value');
|
|
558
|
+
});
|
|
559
|
+
}
|
|
560
|
+
/**
|
|
561
|
+
* Whether the input is disabled.
|
|
562
|
+
*/
|
|
563
|
+
isDisabled() {
|
|
564
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
565
|
+
const disabled = yield (yield __classPrivateFieldGet(this, _SkySearchHarness_getInput, "f").call(this)).getAttribute('disabled');
|
|
566
|
+
return disabled !== null;
|
|
567
|
+
});
|
|
568
|
+
}
|
|
569
|
+
/**
|
|
570
|
+
* Whether the input is focused.
|
|
571
|
+
*/
|
|
572
|
+
isFocused() {
|
|
573
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
574
|
+
return (yield __classPrivateFieldGet(this, _SkySearchHarness_getInput, "f").call(this)).isFocused();
|
|
575
|
+
});
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
_SkySearchHarness_getInput = new WeakMap(), _SkySearchHarness_getSubmitButton = new WeakMap(), _SkySearchHarness_instances = new WeakSet(), _SkySearchHarness_clickSubmitButton = function _SkySearchHarness_clickSubmitButton() {
|
|
579
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
580
|
+
return (yield __classPrivateFieldGet(this, _SkySearchHarness_getSubmitButton, "f").call(this)).click();
|
|
581
|
+
});
|
|
582
|
+
};
|
|
583
|
+
SkySearchHarness.hostSelector = 'sky-search';
|
|
584
|
+
|
|
585
|
+
var _SkyLookupShowMorePickerHarness_getCancelButton, _SkyLookupShowMorePickerHarness_getClearAllButton, _SkyLookupShowMorePickerHarness_getInfiniteScroll, _SkyLookupShowMorePickerHarness_getSaveButton, _SkyLookupShowMorePickerHarness_getSearchHarness, _SkyLookupShowMorePickerHarness_getSelectAllButton;
|
|
586
|
+
/**
|
|
587
|
+
* Harness for interacting with a lookup's "Show more" picker in tests.
|
|
588
|
+
*/
|
|
589
|
+
class SkyLookupShowMorePickerHarness extends ComponentHarness {
|
|
590
|
+
constructor() {
|
|
591
|
+
super(...arguments);
|
|
592
|
+
_SkyLookupShowMorePickerHarness_getCancelButton.set(this, this.locatorFor('button.sky-lookup-show-more-modal-close'));
|
|
593
|
+
_SkyLookupShowMorePickerHarness_getClearAllButton.set(this, this.locatorForOptional('button.sky-lookup-show-more-modal-clear-all-btn'));
|
|
594
|
+
_SkyLookupShowMorePickerHarness_getInfiniteScroll.set(this, this.locatorFor(SkyInfiniteScrollHarness));
|
|
595
|
+
_SkyLookupShowMorePickerHarness_getSaveButton.set(this, this.locatorFor('button.sky-lookup-show-more-modal-save'));
|
|
596
|
+
_SkyLookupShowMorePickerHarness_getSearchHarness.set(this, this.locatorFor(SkySearchHarness));
|
|
597
|
+
_SkyLookupShowMorePickerHarness_getSelectAllButton.set(this, this.locatorForOptional('button.sky-lookup-show-more-modal-select-all-btn'));
|
|
598
|
+
}
|
|
599
|
+
/**
|
|
600
|
+
* Gets a `HarnessPredicate` that can be used to search for a
|
|
601
|
+
* `SkyLookupShowMorePickerHarness` that meets certain criteria.
|
|
602
|
+
*/
|
|
603
|
+
static with(filters) {
|
|
604
|
+
return new HarnessPredicate(SkyLookupShowMorePickerHarness, filters);
|
|
605
|
+
}
|
|
606
|
+
/**
|
|
607
|
+
* Clears the text of the search input.
|
|
608
|
+
*/
|
|
609
|
+
clearSearchText() {
|
|
610
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
611
|
+
return (yield __classPrivateFieldGet(this, _SkyLookupShowMorePickerHarness_getSearchHarness, "f").call(this)).clear();
|
|
612
|
+
});
|
|
613
|
+
}
|
|
614
|
+
/**
|
|
615
|
+
* Enters text into the search input and performs a search.
|
|
616
|
+
*/
|
|
617
|
+
enterSearchText(value) {
|
|
618
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
619
|
+
return (yield __classPrivateFieldGet(this, _SkyLookupShowMorePickerHarness_getSearchHarness, "f").call(this)).enterText(value);
|
|
620
|
+
});
|
|
621
|
+
}
|
|
622
|
+
/**
|
|
623
|
+
* Selects multiple search results based on a set of criteria.
|
|
624
|
+
*/
|
|
625
|
+
selectSearchResult(filters) {
|
|
626
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
627
|
+
const harnesses = yield this.getSearchResults(filters);
|
|
628
|
+
if (yield this.isMultiselect()) {
|
|
629
|
+
for (const harness of harnesses) {
|
|
630
|
+
yield harness.select();
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
else {
|
|
634
|
+
// Click on the item directly because we've added a custom click event in the picker's template.
|
|
635
|
+
yield (yield harnesses[0].host()).click();
|
|
636
|
+
}
|
|
637
|
+
});
|
|
638
|
+
}
|
|
639
|
+
/**
|
|
640
|
+
* Saves any selections made and closes the picker.
|
|
641
|
+
*/
|
|
642
|
+
saveAndClose() {
|
|
643
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
644
|
+
return (yield __classPrivateFieldGet(this, _SkyLookupShowMorePickerHarness_getSaveButton, "f").call(this)).click();
|
|
645
|
+
});
|
|
646
|
+
}
|
|
647
|
+
/**
|
|
648
|
+
* Closes the picker without saving any selections made.
|
|
649
|
+
*/
|
|
650
|
+
cancel() {
|
|
651
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
652
|
+
return (yield __classPrivateFieldGet(this, _SkyLookupShowMorePickerHarness_getCancelButton, "f").call(this)).click();
|
|
653
|
+
});
|
|
654
|
+
}
|
|
655
|
+
/**
|
|
656
|
+
* Gets a list of search results.
|
|
657
|
+
*/
|
|
658
|
+
getSearchResults(filters) {
|
|
659
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
660
|
+
const pickerId = (yield (yield this.host()).getAttribute('id'));
|
|
661
|
+
const harnesses = yield this.locatorForAll(SkyRepeaterItemHarness.with(Object.assign(Object.assign({}, (filters || {})), { ancestor: `#${pickerId}` })))();
|
|
662
|
+
if (filters && harnesses.length === 0) {
|
|
663
|
+
throw new Error(`Could not find search results in the picker matching filter(s): ${JSON.stringify(filters)}`);
|
|
664
|
+
}
|
|
665
|
+
return harnesses;
|
|
666
|
+
});
|
|
667
|
+
}
|
|
668
|
+
/**
|
|
669
|
+
* Clears all selections made.
|
|
670
|
+
*/
|
|
671
|
+
clearAll() {
|
|
672
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
673
|
+
const button = yield __classPrivateFieldGet(this, _SkyLookupShowMorePickerHarness_getClearAllButton, "f").call(this);
|
|
674
|
+
if (!button) {
|
|
675
|
+
throw new Error('Could not clear all selections because the "Clear all" button could not be found.');
|
|
676
|
+
}
|
|
677
|
+
yield button.click();
|
|
678
|
+
});
|
|
679
|
+
}
|
|
680
|
+
/**
|
|
681
|
+
* Whether the picker is configured to allow multiple selections.
|
|
682
|
+
*/
|
|
683
|
+
isMultiselect() {
|
|
684
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
685
|
+
return !(yield (yield this.host()).hasClass('sky-lookup-show-more-modal-single'));
|
|
686
|
+
});
|
|
687
|
+
}
|
|
688
|
+
/**
|
|
689
|
+
* Selects all search results.
|
|
690
|
+
*/
|
|
691
|
+
selectAll() {
|
|
692
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
693
|
+
const button = yield __classPrivateFieldGet(this, _SkyLookupShowMorePickerHarness_getSelectAllButton, "f").call(this);
|
|
694
|
+
if (!button) {
|
|
695
|
+
throw new Error('Could not select all selections because the "Select all" button could not be found.');
|
|
696
|
+
}
|
|
697
|
+
yield button.click();
|
|
698
|
+
});
|
|
699
|
+
}
|
|
700
|
+
/**
|
|
701
|
+
* Loads more results in the picker.
|
|
702
|
+
*/
|
|
703
|
+
loadMore() {
|
|
704
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
705
|
+
return (yield __classPrivateFieldGet(this, _SkyLookupShowMorePickerHarness_getInfiniteScroll, "f").call(this)).loadMore();
|
|
706
|
+
});
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
_SkyLookupShowMorePickerHarness_getCancelButton = new WeakMap(), _SkyLookupShowMorePickerHarness_getClearAllButton = new WeakMap(), _SkyLookupShowMorePickerHarness_getInfiniteScroll = new WeakMap(), _SkyLookupShowMorePickerHarness_getSaveButton = new WeakMap(), _SkyLookupShowMorePickerHarness_getSearchHarness = new WeakMap(), _SkyLookupShowMorePickerHarness_getSelectAllButton = new WeakMap();
|
|
710
|
+
/**
|
|
711
|
+
* Use the class name since the async and non-async pickers use different
|
|
712
|
+
* host components but share the same wrapper CSS class.
|
|
713
|
+
*/
|
|
714
|
+
SkyLookupShowMorePickerHarness.hostSelector = '.sky-lookup-show-more-modal';
|
|
715
|
+
|
|
716
|
+
var _SkyLookupHarness_documentRootLocator, _SkyLookupHarness_getAutocompleteHarness, _SkyLookupHarness_getSelectionsListHarness, _SkyLookupHarness_getWrapper;
|
|
717
|
+
/**
|
|
718
|
+
* Harness for interacting with a lookup component in tests.
|
|
719
|
+
*/
|
|
720
|
+
class SkyLookupHarness extends SkyAutocompleteHarness {
|
|
721
|
+
constructor() {
|
|
722
|
+
super(...arguments);
|
|
723
|
+
_SkyLookupHarness_documentRootLocator.set(this, this.documentRootLocatorFactory());
|
|
724
|
+
_SkyLookupHarness_getAutocompleteHarness.set(this, this.locatorFor(SkyAutocompleteHarness));
|
|
725
|
+
_SkyLookupHarness_getSelectionsListHarness.set(this, this.locatorFor(SkyLookupSelectionsListHarness));
|
|
726
|
+
_SkyLookupHarness_getWrapper.set(this, this.locatorFor('.sky-lookup'));
|
|
727
|
+
}
|
|
728
|
+
/**
|
|
729
|
+
* Gets a `HarnessPredicate` that can be used to search for a
|
|
730
|
+
* `SkyLookupHarness` that meets certain criteria.
|
|
731
|
+
*/
|
|
732
|
+
static with(filters) {
|
|
733
|
+
return SkyLookupHarness.getDataSkyIdPredicate(filters);
|
|
734
|
+
}
|
|
735
|
+
/**
|
|
736
|
+
* Clicks the "Add" button on the search results panel.
|
|
737
|
+
*/
|
|
738
|
+
clickAddButton() {
|
|
739
|
+
const _super = Object.create(null, {
|
|
740
|
+
clickAddButton: { get: () => super.clickAddButton }
|
|
741
|
+
});
|
|
742
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
743
|
+
yield this.focus();
|
|
744
|
+
yield _super.clickAddButton.call(this);
|
|
745
|
+
});
|
|
746
|
+
}
|
|
747
|
+
/**
|
|
748
|
+
* Clicks the "Show more" button on the search results panel.
|
|
749
|
+
*/
|
|
750
|
+
clickShowMoreButton() {
|
|
751
|
+
const _super = Object.create(null, {
|
|
752
|
+
clickShowMoreButton: { get: () => super.clickShowMoreButton }
|
|
753
|
+
});
|
|
754
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
755
|
+
yield this.focus();
|
|
756
|
+
yield _super.clickShowMoreButton.call(this);
|
|
757
|
+
});
|
|
758
|
+
}
|
|
759
|
+
/**
|
|
760
|
+
* Dismisses the selections made with a multiselect lookup.
|
|
761
|
+
*/
|
|
762
|
+
dismissSelections() {
|
|
763
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
764
|
+
return (yield __classPrivateFieldGet(this, _SkyLookupHarness_getSelectionsListHarness, "f").call(this)).dismissSelections();
|
|
765
|
+
});
|
|
766
|
+
}
|
|
767
|
+
/**
|
|
768
|
+
* Gets the "Show more" picker harness.
|
|
769
|
+
*/
|
|
770
|
+
getShowMorePicker() {
|
|
771
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
772
|
+
const pickerId = yield (yield (yield __classPrivateFieldGet(this, _SkyLookupHarness_getAutocompleteHarness, "f").call(this)).host()).getAttribute('data-sky-lookup-show-more-picker-id');
|
|
773
|
+
const defaultPicker = yield __classPrivateFieldGet(this, _SkyLookupHarness_documentRootLocator, "f").locatorForOptional(SkyLookupShowMorePickerHarness.with({ selector: `#${pickerId}` }))();
|
|
774
|
+
if (!defaultPicker) {
|
|
775
|
+
throw new Error('Cannot get the "Show more" picker because it is not open.');
|
|
776
|
+
}
|
|
777
|
+
return defaultPicker;
|
|
778
|
+
});
|
|
779
|
+
}
|
|
780
|
+
/**
|
|
781
|
+
* Gets a list of selections made with a multiselect lookup.
|
|
782
|
+
*/
|
|
783
|
+
getSelections() {
|
|
784
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
785
|
+
return (yield __classPrivateFieldGet(this, _SkyLookupHarness_getSelectionsListHarness, "f").call(this)).getSelections();
|
|
786
|
+
});
|
|
787
|
+
}
|
|
788
|
+
/**
|
|
789
|
+
* Gets the text content of all selections made with a multiselect lookup.
|
|
790
|
+
*/
|
|
791
|
+
getSelectionsText() {
|
|
792
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
793
|
+
return (yield __classPrivateFieldGet(this, _SkyLookupHarness_getSelectionsListHarness, "f").call(this)).getSelectionsText();
|
|
794
|
+
});
|
|
795
|
+
}
|
|
796
|
+
/**
|
|
797
|
+
* Whether the lookup allows for multiple selections.
|
|
798
|
+
*/
|
|
799
|
+
isMultiselect() {
|
|
800
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
801
|
+
return !(yield (yield __classPrivateFieldGet(this, _SkyLookupHarness_getWrapper, "f").call(this)).hasClass('sky-lookup-single'));
|
|
802
|
+
});
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
_SkyLookupHarness_documentRootLocator = new WeakMap(), _SkyLookupHarness_getAutocompleteHarness = new WeakMap(), _SkyLookupHarness_getSelectionsListHarness = new WeakMap(), _SkyLookupHarness_getWrapper = new WeakMap();
|
|
806
|
+
/**
|
|
807
|
+
* Finds a standard lookup component, or a lookup component that is wrapped by an input box component.
|
|
808
|
+
* For input box implementations, we need to use the `.sky-input-box` selector since the `sky-lookup`
|
|
809
|
+
* element is removed from the DOM.
|
|
810
|
+
*/
|
|
811
|
+
SkyLookupHarness.hostSelector = 'sky-lookup,.sky-input-box';
|
|
812
|
+
|
|
813
|
+
/**
|
|
814
|
+
* Harness for interacting with a multiselect lookup selection in tests.
|
|
815
|
+
*/
|
|
816
|
+
class SkyLookupSelectionHarness extends SkyTokenHarness {
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
/**
|
|
820
|
+
* Harness for interacting with a lookup's "Show more" picker search results in tests.
|
|
821
|
+
*/
|
|
822
|
+
class SkyLookupShowMorePickerSearchResultHarness extends SkyRepeaterItemHarness {
|
|
823
|
+
}
|
|
824
|
+
|
|
140
825
|
/**
|
|
141
826
|
* Allows interaction with a SKY UX search component.
|
|
827
|
+
* @deprecated Use `SkySearchHarness` instead.
|
|
142
828
|
*/
|
|
143
829
|
class SkySearchFixture {
|
|
144
830
|
constructor(fixture, skyTestId) {
|
|
@@ -195,12 +881,12 @@ class SkySearchFixture {
|
|
|
195
881
|
class SkySearchTestingModule {
|
|
196
882
|
}
|
|
197
883
|
SkySearchTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkySearchTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
198
|
-
SkySearchTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkySearchTestingModule, exports: [SkySearchModule] });
|
|
199
|
-
SkySearchTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkySearchTestingModule, imports: [SkySearchModule] });
|
|
884
|
+
SkySearchTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkySearchTestingModule, exports: [NoopAnimationsModule, SkySearchModule] });
|
|
885
|
+
SkySearchTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkySearchTestingModule, imports: [NoopAnimationsModule, SkySearchModule] });
|
|
200
886
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkySearchTestingModule, decorators: [{
|
|
201
887
|
type: NgModule,
|
|
202
888
|
args: [{
|
|
203
|
-
exports: [SkySearchModule],
|
|
889
|
+
exports: [NoopAnimationsModule, SkySearchModule],
|
|
204
890
|
}]
|
|
205
891
|
}] });
|
|
206
892
|
|
|
@@ -208,5 +894,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
208
894
|
* Generated bundle index. Do not edit.
|
|
209
895
|
*/
|
|
210
896
|
|
|
211
|
-
export { SkyCountryFieldFixture, SkyCountryFieldTestingModule, SkySearchFixture, SkySearchTestingModule };
|
|
897
|
+
export { SkyAutocompleteHarness, SkyAutocompleteSearchResultHarness, SkyCountryFieldFixture, SkyCountryFieldTestingModule, SkyLookupHarness, SkyLookupSelectionHarness, SkyLookupSelectionsListHarness, SkyLookupShowMorePickerHarness, SkyLookupShowMorePickerSearchResultHarness, SkySearchFixture, SkySearchHarness, SkySearchTestingModule };
|
|
212
898
|
//# sourceMappingURL=skyux-lookup-testing.mjs.map
|