@skyux/lookup 7.10.0 → 7.11.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/index.d.ts CHANGED
@@ -10,6 +10,8 @@ export * from './lib/modules/autocomplete/types/autocomplete-selection-change';
10
10
  export * from './lib/modules/autocomplete/autocomplete.module';
11
11
  export * from './lib/modules/country-field/country-field.module';
12
12
  export * from './lib/modules/country-field/types/country';
13
+ export * from './lib/modules/country-field/types/country-field-context';
14
+ export * from './lib/modules/country-field/types/country-field-context-token';
13
15
  export * from './lib/modules/lookup/lookup.module';
14
16
  export * from './lib/modules/lookup/types/lookup-add-click-callback-args';
15
17
  export * from './lib/modules/lookup/types/lookup-add-click-event-args';
@@ -7,6 +7,7 @@ import 'intl-tel-input';
7
7
  import { SkyAutocompleteInputDirective } from '../autocomplete/autocomplete-input.directive';
8
8
  import { SkyAutocompleteSelectionChange } from '../autocomplete/types/autocomplete-selection-change';
9
9
  import { SkyCountryFieldCountry } from './types/country';
10
+ import { SkyCountryFieldContext } from './types/country-field-context';
10
11
  import * as i0 from "@angular/core";
11
12
  export declare class SkyCountryFieldComponent implements AfterViewInit, ControlValueAccessor, OnDestroy, OnInit, Validator {
12
13
  #private;
@@ -58,6 +59,7 @@ export declare class SkyCountryFieldComponent implements AfterViewInit, ControlV
58
59
  countrySearchAutocompleteDirective: SkyAutocompleteInputDirective | undefined;
59
60
  set selectedCountry(newCountry: SkyCountryFieldCountry | undefined);
60
61
  get selectedCountry(): SkyCountryFieldCountry | undefined;
62
+ context: SkyCountryFieldContext | null;
61
63
  currentTheme: string;
62
64
  inputId: string;
63
65
  inputTemplateRef: TemplateRef<unknown> | undefined;
@@ -0,0 +1,6 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { SkyCountryFieldContext } from './country-field-context';
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const SKY_COUNTRY_FIELD_CONTEXT: InjectionToken<SkyCountryFieldContext>;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @internal
3
+ */
4
+ export interface SkyCountryFieldContext {
5
+ showPlaceholderText: boolean;
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/lookup",
3
- "version": "7.10.0",
3
+ "version": "7.11.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -46,15 +46,15 @@
46
46
  "@angular/core": "^14.2.11",
47
47
  "@angular/forms": "^14.2.11",
48
48
  "@angular/platform-browser": "^14.2.11",
49
- "@skyux-sdk/testing": "7.10.0",
50
- "@skyux/core": "7.10.0",
51
- "@skyux/forms": "7.10.0",
52
- "@skyux/i18n": "7.10.0",
53
- "@skyux/indicators": "7.10.0",
54
- "@skyux/layout": "7.10.0",
55
- "@skyux/lists": "7.10.0",
56
- "@skyux/modals": "7.10.0",
57
- "@skyux/theme": "7.10.0"
49
+ "@skyux-sdk/testing": "7.11.0",
50
+ "@skyux/core": "7.11.0",
51
+ "@skyux/forms": "7.11.0",
52
+ "@skyux/i18n": "7.11.0",
53
+ "@skyux/indicators": "7.11.0",
54
+ "@skyux/layout": "7.11.0",
55
+ "@skyux/lists": "7.11.0",
56
+ "@skyux/modals": "7.11.0",
57
+ "@skyux/theme": "7.11.0"
58
58
  },
59
59
  "dependencies": {
60
60
  "intl-tel-input": "17.0.19",