@skyux/lookup 6.16.0 → 6.18.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.
Files changed (50) hide show
  1. package/documentation.json +653 -697
  2. package/esm2020/lib/modules/autocomplete/autocomplete-input.directive.mjs +12 -12
  3. package/esm2020/lib/modules/lookup/lookup.component.mjs +2 -2
  4. package/esm2020/testing/autocomplete/autocomplete-harness-filters.mjs +1 -1
  5. package/esm2020/testing/autocomplete/autocomplete-harness.mjs +2 -1
  6. package/esm2020/testing/autocomplete/autocomplete-search-result-harness-filters.mjs +1 -1
  7. package/esm2020/testing/autocomplete/autocomplete-search-result-harness.mjs +2 -1
  8. package/esm2020/testing/country-field/country-field-fixture.mjs +2 -1
  9. package/esm2020/testing/country-field/country-field-testing.module.mjs +4 -1
  10. package/esm2020/testing/lookup/lookup-harness-filters.mjs +1 -1
  11. package/esm2020/testing/lookup/lookup-harness.mjs +2 -1
  12. package/esm2020/testing/lookup/lookup-selection-harness-filters.mjs +1 -1
  13. package/esm2020/testing/lookup/lookup-selection-harness.mjs +2 -1
  14. package/esm2020/testing/lookup/lookup-selections-list-harness.mjs +2 -1
  15. package/esm2020/testing/lookup/lookup-show-more-picker-harness-filters.mjs +1 -1
  16. package/esm2020/testing/lookup/lookup-show-more-picker-harness.mjs +2 -1
  17. package/esm2020/testing/lookup/lookup-show-more-picker-search-result-harness-filters.mjs +1 -1
  18. package/esm2020/testing/lookup/lookup-show-more-picker-search-result-harness.mjs +2 -1
  19. package/esm2020/testing/search/search-fixture.mjs +2 -1
  20. package/esm2020/testing/search/search-harness-filters.mjs +1 -1
  21. package/esm2020/testing/search/search-harness.mjs +2 -1
  22. package/esm2020/testing/search/search-testing.module.mjs +4 -1
  23. package/fesm2015/skyux-lookup-testing.mjs +16 -0
  24. package/fesm2015/skyux-lookup-testing.mjs.map +1 -1
  25. package/fesm2015/skyux-lookup.mjs +13 -13
  26. package/fesm2015/skyux-lookup.mjs.map +1 -1
  27. package/fesm2020/skyux-lookup-testing.mjs +16 -0
  28. package/fesm2020/skyux-lookup-testing.mjs.map +1 -1
  29. package/fesm2020/skyux-lookup.mjs +13 -13
  30. package/fesm2020/skyux-lookup.mjs.map +1 -1
  31. package/package.json +10 -10
  32. package/testing/autocomplete/autocomplete-harness-filters.d.ts +1 -0
  33. package/testing/autocomplete/autocomplete-harness.d.ts +1 -0
  34. package/testing/autocomplete/autocomplete-search-result-harness-filters.d.ts +1 -0
  35. package/testing/autocomplete/autocomplete-search-result-harness.d.ts +1 -0
  36. package/testing/country-field/country-field-fixture.d.ts +1 -0
  37. package/testing/country-field/country-field-testing.module.d.ts +3 -0
  38. package/testing/lookup/lookup-harness-filters.d.ts +1 -0
  39. package/testing/lookup/lookup-harness.d.ts +1 -0
  40. package/testing/lookup/lookup-selection-harness-filters.d.ts +1 -0
  41. package/testing/lookup/lookup-selection-harness.d.ts +1 -0
  42. package/testing/lookup/lookup-selections-list-harness.d.ts +1 -0
  43. package/testing/lookup/lookup-show-more-picker-harness-filters.d.ts +1 -0
  44. package/testing/lookup/lookup-show-more-picker-harness.d.ts +1 -0
  45. package/testing/lookup/lookup-show-more-picker-search-result-harness-filters.d.ts +1 -0
  46. package/testing/lookup/lookup-show-more-picker-search-result-harness.d.ts +1 -0
  47. package/testing/search/search-fixture.d.ts +1 -0
  48. package/testing/search/search-harness-filters.d.ts +1 -0
  49. package/testing/search/search-harness.d.ts +1 -0
  50. package/testing/search/search-testing.module.d.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/lookup",
3
- "version": "6.16.0",
3
+ "version": "6.18.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.16.0",
50
- "@skyux/core": "6.16.0",
51
- "@skyux/forms": "6.16.0",
52
- "@skyux/i18n": "6.16.0",
53
- "@skyux/indicators": "6.16.0",
54
- "@skyux/layout": "6.16.0",
55
- "@skyux/lists": "6.16.0",
56
- "@skyux/modals": "6.16.0",
57
- "@skyux/theme": "6.16.0"
49
+ "@skyux-sdk/testing": "6.18.0",
50
+ "@skyux/core": "6.18.0",
51
+ "@skyux/forms": "6.18.0",
52
+ "@skyux/i18n": "6.18.0",
53
+ "@skyux/indicators": "6.18.0",
54
+ "@skyux/layout": "6.18.0",
55
+ "@skyux/lists": "6.18.0",
56
+ "@skyux/modals": "6.18.0",
57
+ "@skyux/theme": "6.18.0"
58
58
  },
59
59
  "dependencies": {
60
60
  "intl-tel-input": "17.0.16",
@@ -1,6 +1,7 @@
1
1
  import { SkyHarnessFilters } from '@skyux/core/testing';
2
2
  /**
3
3
  * A set of criteria that can be used to filter a list of SkyAutocompleteHarness instances.
4
+ * @internal
4
5
  */
5
6
  export interface SkyAutocompleteHarnessFilters extends SkyHarnessFilters {
6
7
  }
@@ -5,6 +5,7 @@ import { SkyAutocompleteSearchResultHarness } from './autocomplete-search-result
5
5
  import { SkyAutocompleteSearchResultHarnessFilters } from './autocomplete-search-result-harness-filters';
6
6
  /**
7
7
  * Harness for interacting with an autocomplete component in tests.
8
+ * @internal
8
9
  */
9
10
  export declare class SkyAutocompleteHarness extends SkyComponentHarness {
10
11
  #private;
@@ -1,6 +1,7 @@
1
1
  import { BaseHarnessFilters } from '@angular/cdk/testing';
2
2
  /**
3
3
  * A set of criteria that can be used to filter a list of SkyAutocompleteSearchResultHarness instances.
4
+ * @internal
4
5
  */
5
6
  export interface SkyAutocompleteSearchResultHarnessFilters extends Omit<BaseHarnessFilters, 'selector'> {
6
7
  /**
@@ -2,6 +2,7 @@ import { ComponentHarness, HarnessPredicate, HarnessQuery } from '@angular/cdk/t
2
2
  import { SkyAutocompleteSearchResultHarnessFilters } from './autocomplete-search-result-harness-filters';
3
3
  /**
4
4
  * Harness for interacting with an autocomplete search results in tests.
5
+ * @internal
5
6
  */
6
7
  export declare class SkyAutocompleteSearchResultHarness extends ComponentHarness {
7
8
  static hostSelector: string;
@@ -1,6 +1,7 @@
1
1
  import { ComponentFixture } from '@angular/core/testing';
2
2
  /**
3
3
  * Allows interaction with a SKY UX country field component.
4
+ * @internal
4
5
  */
5
6
  export declare class SkyCountryFieldFixture {
6
7
  private fixture;
@@ -1,5 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "@skyux/lookup";
3
+ /**
4
+ * @internal
5
+ */
3
6
  export declare class SkyCountryFieldTestingModule {
4
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyCountryFieldTestingModule, never>;
5
8
  static ɵmod: i0.ɵɵNgModuleDeclaration<SkyCountryFieldTestingModule, never, never, [typeof i1.SkyCountryFieldModule]>;
@@ -1,6 +1,7 @@
1
1
  import { SkyHarnessFilters } from '@skyux/core/testing';
2
2
  /**
3
3
  * A set of criteria that can be used to filter a list of `SkyLookupHarness` instances.
4
+ * @internal
4
5
  */
5
6
  export interface SkyLookupHarnessFilters extends SkyHarnessFilters {
6
7
  }
@@ -5,6 +5,7 @@ import { SkyLookupSelectionHarness } from './lookup-selection-harness';
5
5
  import { SkyLookupShowMorePickerHarness } from './lookup-show-more-picker-harness';
6
6
  /**
7
7
  * Harness for interacting with a lookup component in tests.
8
+ * @internal
8
9
  */
9
10
  export declare class SkyLookupHarness extends SkyAutocompleteHarness {
10
11
  #private;
@@ -1,6 +1,7 @@
1
1
  import { SkyTokenHarnessFilters } from '@skyux/indicators/testing';
2
2
  /**
3
3
  * A set of criteria that can be used to filter a list of `SkyLookupSelectionHarness` instances.
4
+ * @internal
4
5
  */
5
6
  export interface SkyLookupSelectionHarnessFilters extends SkyTokenHarnessFilters {
6
7
  }
@@ -1,6 +1,7 @@
1
1
  import { SkyTokenHarness } from '@skyux/indicators/testing';
2
2
  /**
3
3
  * Harness for interacting with a multiselect lookup selection in tests.
4
+ * @internal
4
5
  */
5
6
  export declare class SkyLookupSelectionHarness extends SkyTokenHarness {
6
7
  }
@@ -2,6 +2,7 @@ import { SkyTokensHarness } from '@skyux/indicators/testing';
2
2
  import { SkyLookupSelectionHarness } from './lookup-selection-harness';
3
3
  /**
4
4
  * Harness for interacting with multiselect lookup selections in tests.
5
+ * @internal
5
6
  */
6
7
  export declare class SkyLookupSelectionsListHarness extends SkyTokensHarness {
7
8
  /**
@@ -1,6 +1,7 @@
1
1
  import { BaseHarnessFilters } from '@angular/cdk/testing';
2
2
  /**
3
3
  * A set of criteria that can be used to filter a list of `SkyLookupShowMorePickerHarness` instances.
4
+ * @internal
4
5
  */
5
6
  export interface SkyLookupShowMorePickerHarnessFilters extends Omit<BaseHarnessFilters, 'ancestor'> {
6
7
  }
@@ -4,6 +4,7 @@ import { SkyLookupShowMorePickerSearchResultHarness } from './lookup-show-more-p
4
4
  import { SkyLookupShowMorePickerSearchResultHarnessFilters } from './lookup-show-more-picker-search-result-harness-filters';
5
5
  /**
6
6
  * Harness for interacting with a lookup's "Show more" picker in tests.
7
+ * @internal
7
8
  */
8
9
  export declare class SkyLookupShowMorePickerHarness extends ComponentHarness {
9
10
  #private;
@@ -1,6 +1,7 @@
1
1
  import { SkyRepeaterItemHarnessFilters } from '@skyux/lists/testing';
2
2
  /**
3
3
  * A set of criteria that can be used to filter a list of `SkyLookupShowMorePickerSearchResultHarness` instances.
4
+ * @internal
4
5
  */
5
6
  export interface SkyLookupShowMorePickerSearchResultHarnessFilters extends Omit<SkyRepeaterItemHarnessFilters, 'titleText' | 'ancestor'> {
6
7
  }
@@ -1,6 +1,7 @@
1
1
  import { SkyRepeaterItemHarness } from '@skyux/lists/testing';
2
2
  /**
3
3
  * Harness for interacting with a lookup's "Show more" picker search results in tests.
4
+ * @internal
4
5
  */
5
6
  export declare class SkyLookupShowMorePickerSearchResultHarness extends SkyRepeaterItemHarness {
6
7
  }
@@ -2,6 +2,7 @@ import { ComponentFixture } from '@angular/core/testing';
2
2
  /**
3
3
  * Allows interaction with a SKY UX search component.
4
4
  * @deprecated Use `SkySearchHarness` instead.
5
+ * @internal
5
6
  */
6
7
  export declare class SkySearchFixture {
7
8
  /**
@@ -1,6 +1,7 @@
1
1
  import { SkyHarnessFilters } from '@skyux/core/testing';
2
2
  /**
3
3
  * A set of criteria that can be used to filter a list of `SkySearchHarness` instances.
4
+ * @internal
4
5
  */
5
6
  export interface SkySearchHarnessFilters extends SkyHarnessFilters {
6
7
  }
@@ -3,6 +3,7 @@ import { SkyComponentHarness } from '@skyux/core/testing';
3
3
  import { SkySearchHarnessFilters } from './search-harness-filters';
4
4
  /**
5
5
  * Harness for interacting with an search component in tests.
6
+ * @internal
6
7
  */
7
8
  export declare class SkySearchHarness extends SkyComponentHarness {
8
9
  #private;
@@ -1,6 +1,9 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "@angular/platform-browser/animations";
3
3
  import * as i2 from "@skyux/lookup";
4
+ /**
5
+ * @internal
6
+ */
4
7
  export declare class SkySearchTestingModule {
5
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SkySearchTestingModule, never>;
6
9
  static ɵmod: i0.ɵɵNgModuleDeclaration<SkySearchTestingModule, never, never, [typeof i1.NoopAnimationsModule, typeof i2.SkySearchModule]>;