@skyux/lookup 11.27.0 → 11.29.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 +1295 -1029
- package/esm2022/lib/modules/lookup/lookup-show-more-modal.component.mjs +39 -41
- package/esm2022/testing/legacy/country-field/country-field-fixture.mjs +3 -3
- package/esm2022/testing/legacy/search/search-fixture.mjs +2 -1
- package/esm2022/testing/modules/country-field/country-field-harness.mjs +15 -8
- package/esm2022/testing/modules/lookup/lookup-harness.mjs +17 -10
- package/fesm2022/skyux-lookup-testing.mjs +33 -18
- package/fesm2022/skyux-lookup-testing.mjs.map +1 -1
- package/fesm2022/skyux-lookup.mjs +38 -40
- package/fesm2022/skyux-lookup.mjs.map +1 -1
- package/lib/modules/lookup/lookup-show-more-modal.component.d.ts +5 -5
- package/package.json +11 -11
- package/testing/modules/country-field/country-field-harness.d.ts +7 -0
- package/testing/modules/lookup/lookup-harness.d.ts +7 -0
|
@@ -43,15 +43,15 @@ export declare class SkyLookupShowMoreModalComponent implements AfterViewInit, O
|
|
|
43
43
|
ngAfterViewInit(): void;
|
|
44
44
|
ngOnDestroy(): void;
|
|
45
45
|
addButtonClicked(): void;
|
|
46
|
-
addItems(): void
|
|
47
|
-
clearAll(): void
|
|
46
|
+
addItems(): Promise<void>;
|
|
47
|
+
clearAll(): Promise<void>;
|
|
48
48
|
itemClick(selectedItem: any): void;
|
|
49
49
|
onItemSelect(newSelectState: boolean, itemToSelect: any): void;
|
|
50
50
|
searchApplied(searchText: string): void;
|
|
51
51
|
searchItems(items: any[]): Promise<any[]>;
|
|
52
|
-
selectAll(): void
|
|
53
|
-
updateDataState(): void
|
|
54
|
-
updateItemData(data: any[]): void
|
|
52
|
+
selectAll(): Promise<void>;
|
|
53
|
+
updateDataState(): Promise<void>;
|
|
54
|
+
updateItemData(data: any[]): Promise<void>;
|
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyLookupShowMoreModalComponent, never>;
|
|
56
56
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyLookupShowMoreModalComponent, "sky-lookup-show-more-modal", never, {}, {}, never, never, true, never>;
|
|
57
57
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.29.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -42,16 +42,16 @@
|
|
|
42
42
|
"@angular/core": "^18.2.13",
|
|
43
43
|
"@angular/forms": "^18.2.13",
|
|
44
44
|
"@angular/platform-browser": "^18.2.13",
|
|
45
|
-
"@skyux-sdk/testing": "11.
|
|
46
|
-
"@skyux/core": "11.
|
|
47
|
-
"@skyux/forms": "11.
|
|
48
|
-
"@skyux/i18n": "11.
|
|
49
|
-
"@skyux/icon": "11.
|
|
50
|
-
"@skyux/indicators": "11.
|
|
51
|
-
"@skyux/layout": "11.
|
|
52
|
-
"@skyux/lists": "11.
|
|
53
|
-
"@skyux/modals": "11.
|
|
54
|
-
"@skyux/theme": "11.
|
|
45
|
+
"@skyux-sdk/testing": "11.29.0",
|
|
46
|
+
"@skyux/core": "11.29.0",
|
|
47
|
+
"@skyux/forms": "11.29.0",
|
|
48
|
+
"@skyux/i18n": "11.29.0",
|
|
49
|
+
"@skyux/icon": "11.29.0",
|
|
50
|
+
"@skyux/indicators": "11.29.0",
|
|
51
|
+
"@skyux/layout": "11.29.0",
|
|
52
|
+
"@skyux/lists": "11.29.0",
|
|
53
|
+
"@skyux/modals": "11.29.0",
|
|
54
|
+
"@skyux/theme": "11.29.0"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"intl-tel-input": "24.4.0",
|
|
@@ -26,18 +26,22 @@ export declare class SkyCountryFieldHarness extends SkyAutocompleteHarness {
|
|
|
26
26
|
static with(filters: SkyCountryFieldHarnessFilters): HarnessPredicate<SkyCountryFieldHarness>;
|
|
27
27
|
/**
|
|
28
28
|
* Blurs the country field input.
|
|
29
|
+
* @deprecated Call `await (await countryField.getControl()).blur()` instead.
|
|
29
30
|
*/
|
|
30
31
|
blur(): Promise<void>;
|
|
31
32
|
/**
|
|
32
33
|
* Clears the country field input value.
|
|
34
|
+
* @deprecated Call `await (await countryField.getControl()).clear()` instead.
|
|
33
35
|
*/
|
|
34
36
|
clear(): Promise<void>;
|
|
35
37
|
/**
|
|
36
38
|
* Enters text into the country field input.
|
|
39
|
+
* @deprecated Call `await (await countryField.getControl()).setValue()` instead.
|
|
37
40
|
*/
|
|
38
41
|
enterText(value: string): Promise<void>;
|
|
39
42
|
/**
|
|
40
43
|
* Focuses the country field input.
|
|
44
|
+
* @deprecated Call `await (await countryField.getControl()).focus()` instead.
|
|
41
45
|
*/
|
|
42
46
|
focus(): Promise<void>;
|
|
43
47
|
/**
|
|
@@ -57,6 +61,7 @@ export declare class SkyCountryFieldHarness extends SkyAutocompleteHarness {
|
|
|
57
61
|
getSearchResultsText(filters?: SkyCountryFieldSearchResultHarnessFilters): Promise<string[]>;
|
|
58
62
|
/**
|
|
59
63
|
* Gets the value of the country field input.
|
|
64
|
+
* @deprecated Call `await (await countryField.getControl()).getValue()` instead.
|
|
60
65
|
*/
|
|
61
66
|
getValue(): Promise<string>;
|
|
62
67
|
/**
|
|
@@ -68,10 +73,12 @@ export declare class SkyCountryFieldHarness extends SkyAutocompleteHarness {
|
|
|
68
73
|
getNoResultsFoundText(): Promise<string | undefined>;
|
|
69
74
|
/**
|
|
70
75
|
* Whether the country field input is disabled.
|
|
76
|
+
* @deprecated Call `await (await countryField.getControl()).isDisabled()` instead.
|
|
71
77
|
*/
|
|
72
78
|
isDisabled(): Promise<boolean>;
|
|
73
79
|
/**
|
|
74
80
|
* Whether the country field input is focused.
|
|
81
|
+
* @deprecated Call `await (await countryField.getControl()).isFocused()` instead.
|
|
75
82
|
*/
|
|
76
83
|
isFocused(): Promise<boolean>;
|
|
77
84
|
/**
|
|
@@ -29,10 +29,12 @@ export declare class SkyLookupHarness extends SkyAutocompleteHarness {
|
|
|
29
29
|
static with(filters: SkyLookupHarnessFilters): HarnessPredicate<SkyLookupHarness>;
|
|
30
30
|
/**
|
|
31
31
|
* Blurs the lookup input.
|
|
32
|
+
* @deprecated Call `await (await lookup.getControl()).blur()` instead.
|
|
32
33
|
*/
|
|
33
34
|
blur(): Promise<void>;
|
|
34
35
|
/**
|
|
35
36
|
* Clears the lookup input value.
|
|
37
|
+
* @deprecated Call `await (await lookup.getControl()).clear()` instead.
|
|
36
38
|
*/
|
|
37
39
|
clear(): Promise<void>;
|
|
38
40
|
/**
|
|
@@ -49,10 +51,12 @@ export declare class SkyLookupHarness extends SkyAutocompleteHarness {
|
|
|
49
51
|
dismissSelections(): Promise<void>;
|
|
50
52
|
/**
|
|
51
53
|
* Enters text into the lookup input.
|
|
54
|
+
* @deprecated Call `await (await lookup.getControl()).setValue()` instead.
|
|
52
55
|
*/
|
|
53
56
|
enterText(value: string): Promise<void>;
|
|
54
57
|
/**
|
|
55
58
|
* Focuses the lookup input.
|
|
59
|
+
* @deprecated Call `await (await lookup.getControl()).focus()` instead.
|
|
56
60
|
*/
|
|
57
61
|
focus(): Promise<void>;
|
|
58
62
|
/**
|
|
@@ -82,14 +86,17 @@ export declare class SkyLookupHarness extends SkyAutocompleteHarness {
|
|
|
82
86
|
getSelectionsText(): Promise<string[]>;
|
|
83
87
|
/**
|
|
84
88
|
* Gets the value of the lookup input.
|
|
89
|
+
* @deprecated Call `await (await lookup.getControl()).getValue()` instead.
|
|
85
90
|
*/
|
|
86
91
|
getValue(): Promise<string>;
|
|
87
92
|
/**
|
|
88
93
|
* Whether the lookup input is disabled.
|
|
94
|
+
* @deprecated Call `await (await lookup.getControl()).isDisabled()` instead.
|
|
89
95
|
*/
|
|
90
96
|
isDisabled(): Promise<boolean>;
|
|
91
97
|
/**
|
|
92
98
|
* Whether the lookup input is focused.
|
|
99
|
+
* @deprecated Call `await (await lookup.getControl()).isFocused()` instead.
|
|
93
100
|
*/
|
|
94
101
|
isFocused(): Promise<boolean>;
|
|
95
102
|
/**
|