@skyux/lookup 6.17.1 → 6.19.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/esm2020/lib/modules/lookup/lookup.component.mjs +2 -2
- package/esm2020/testing/autocomplete/autocomplete-harness.mjs +4 -1
- package/esm2020/testing/autocomplete/autocomplete-input-harness.mjs +4 -1
- package/esm2020/testing/autocomplete/autocomplete-search-result-harness.mjs +4 -1
- package/esm2020/testing/lookup/lookup-harness.mjs +2 -1
- package/esm2020/testing/lookup/lookup-show-more-picker-harness.mjs +2 -1
- package/esm2020/testing/search/search-harness.mjs +4 -1
- package/fesm2015/skyux-lookup-testing.mjs +14 -0
- package/fesm2015/skyux-lookup-testing.mjs.map +1 -1
- package/fesm2015/skyux-lookup.mjs +2 -2
- package/fesm2015/skyux-lookup.mjs.map +1 -1
- package/fesm2020/skyux-lookup-testing.mjs +14 -0
- package/fesm2020/skyux-lookup-testing.mjs.map +1 -1
- package/fesm2020/skyux-lookup.mjs +2 -2
- package/fesm2020/skyux-lookup.mjs.map +1 -1
- package/package.json +10 -10
- package/testing/autocomplete/autocomplete-harness.d.ts +3 -0
- package/testing/autocomplete/autocomplete-input-harness.d.ts +3 -0
- package/testing/autocomplete/autocomplete-search-result-harness.d.ts +3 -0
- package/testing/lookup/lookup-harness.d.ts +1 -0
- package/testing/lookup/lookup-show-more-picker-harness.d.ts +1 -0
- package/testing/search/search-harness.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.19.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -46,15 +46,15 @@
|
|
|
46
46
|
"@angular/core": "^13.3.2",
|
|
47
47
|
"@angular/forms": "^13.3.2",
|
|
48
48
|
"@angular/platform-browser": "^13.3.2",
|
|
49
|
-
"@skyux-sdk/testing": "6.
|
|
50
|
-
"@skyux/core": "6.
|
|
51
|
-
"@skyux/forms": "6.
|
|
52
|
-
"@skyux/i18n": "6.
|
|
53
|
-
"@skyux/indicators": "6.
|
|
54
|
-
"@skyux/layout": "6.
|
|
55
|
-
"@skyux/lists": "6.
|
|
56
|
-
"@skyux/modals": "6.
|
|
57
|
-
"@skyux/theme": "6.
|
|
49
|
+
"@skyux-sdk/testing": "6.19.0",
|
|
50
|
+
"@skyux/core": "6.19.0",
|
|
51
|
+
"@skyux/forms": "6.19.0",
|
|
52
|
+
"@skyux/i18n": "6.19.0",
|
|
53
|
+
"@skyux/indicators": "6.19.0",
|
|
54
|
+
"@skyux/layout": "6.19.0",
|
|
55
|
+
"@skyux/lists": "6.19.0",
|
|
56
|
+
"@skyux/modals": "6.19.0",
|
|
57
|
+
"@skyux/theme": "6.19.0"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"intl-tel-input": "17.0.16",
|
|
@@ -9,6 +9,9 @@ import { SkyAutocompleteSearchResultHarnessFilters } from './autocomplete-search
|
|
|
9
9
|
*/
|
|
10
10
|
export declare class SkyAutocompleteHarness extends SkyComponentHarness {
|
|
11
11
|
#private;
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
12
15
|
static hostSelector: string;
|
|
13
16
|
/**
|
|
14
17
|
* Gets a `HarnessPredicate` that can be used to search for a
|
|
@@ -5,6 +5,9 @@ import { SkyAutocompleteSearchResultHarnessFilters } from './autocomplete-search
|
|
|
5
5
|
* @internal
|
|
6
6
|
*/
|
|
7
7
|
export declare class SkyAutocompleteSearchResultHarness extends ComponentHarness {
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
8
11
|
static hostSelector: string;
|
|
9
12
|
/**
|
|
10
13
|
* Gets a `HarnessPredicate` that can be used to search for a
|
|
@@ -13,6 +13,7 @@ export declare class SkyLookupHarness extends SkyAutocompleteHarness {
|
|
|
13
13
|
* Finds a standard lookup component, or a lookup component that is wrapped by an input box component.
|
|
14
14
|
* For input box implementations, we need to use the `.sky-input-box` selector since the `sky-lookup`
|
|
15
15
|
* element is removed from the DOM.
|
|
16
|
+
* @internal
|
|
16
17
|
*/
|
|
17
18
|
static hostSelector: string;
|
|
18
19
|
/**
|
|
@@ -11,6 +11,7 @@ export declare class SkyLookupShowMorePickerHarness extends ComponentHarness {
|
|
|
11
11
|
/**
|
|
12
12
|
* Use the class name since the async and non-async pickers use different
|
|
13
13
|
* host components but share the same wrapper CSS class.
|
|
14
|
+
* @internal
|
|
14
15
|
*/
|
|
15
16
|
static hostSelector: string;
|
|
16
17
|
/**
|
|
@@ -7,6 +7,9 @@ import { SkySearchHarnessFilters } from './search-harness-filters';
|
|
|
7
7
|
*/
|
|
8
8
|
export declare class SkySearchHarness extends SkyComponentHarness {
|
|
9
9
|
#private;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
10
13
|
static hostSelector: string;
|
|
11
14
|
/**
|
|
12
15
|
* Gets a `HarnessPredicate` that can be used to search for a
|