@skyux/lookup 14.12.0 → 14.13.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.13.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@angular/core": "^21.2.0",
|
|
22
22
|
"@angular/forms": "^21.2.0",
|
|
23
23
|
"@angular/platform-browser": "^21.2.0",
|
|
24
|
-
"@skyux-sdk/testing": "14.
|
|
25
|
-
"@skyux/core": "14.
|
|
26
|
-
"@skyux/forms": "14.
|
|
27
|
-
"@skyux/i18n": "14.
|
|
28
|
-
"@skyux/icon": "14.
|
|
29
|
-
"@skyux/indicators": "14.
|
|
30
|
-
"@skyux/layout": "14.
|
|
31
|
-
"@skyux/lists": "14.
|
|
32
|
-
"@skyux/modals": "14.
|
|
33
|
-
"@skyux/theme": "14.
|
|
24
|
+
"@skyux-sdk/testing": "14.13.0",
|
|
25
|
+
"@skyux/core": "14.13.0",
|
|
26
|
+
"@skyux/forms": "14.13.0",
|
|
27
|
+
"@skyux/i18n": "14.13.0",
|
|
28
|
+
"@skyux/icon": "14.13.0",
|
|
29
|
+
"@skyux/indicators": "14.13.0",
|
|
30
|
+
"@skyux/layout": "14.13.0",
|
|
31
|
+
"@skyux/lists": "14.13.0",
|
|
32
|
+
"@skyux/modals": "14.13.0",
|
|
33
|
+
"@skyux/theme": "14.13.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"intl-tel-input": "26.7.6",
|
|
@@ -361,6 +361,10 @@ declare class SkySelectionModalHarness extends ComponentHarness {
|
|
|
361
361
|
* Gets the search input's aria-label.
|
|
362
362
|
*/
|
|
363
363
|
getSearchAriaLabel(): Promise<string | null>;
|
|
364
|
+
/**
|
|
365
|
+
* Gets the selection modal's heading text.
|
|
366
|
+
*/
|
|
367
|
+
getHeadingText(): Promise<string | undefined>;
|
|
364
368
|
/**
|
|
365
369
|
* Selects multiple search results based on a set of criteria.
|
|
366
370
|
*/
|
package/types/skyux-lookup.d.ts
CHANGED
|
@@ -314,7 +314,10 @@ declare class SkyAutocompleteComponent implements OnDestroy, AfterViewInit {
|
|
|
314
314
|
/**
|
|
315
315
|
* When using `searchAsync`, allows the user to specify arbitrary
|
|
316
316
|
* values not in the search results. This only works in combination
|
|
317
|
-
* with `searchAsync`.
|
|
317
|
+
* with `searchAsync`. On blur, the typed text is kept as the value
|
|
318
|
+
* rather than reverted, using a matching search result if one is
|
|
319
|
+
* available. Consumers should guard against values set before a
|
|
320
|
+
* `searchAsync` call resolves.
|
|
318
321
|
* @default false
|
|
319
322
|
*/
|
|
320
323
|
allowAnyValue: i0.InputSignalWithTransform<boolean, unknown>;
|