@skyux/lookup 7.10.0 → 7.10.1
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 +717 -695
- package/esm2020/index.mjs +3 -1
- package/esm2020/lib/modules/country-field/country-field.component.mjs +8 -4
- package/esm2020/lib/modules/country-field/types/country-field-context-token.mjs +6 -0
- package/esm2020/lib/modules/country-field/types/country-field-context.mjs +2 -0
- package/fesm2015/skyux-lookup.mjs +12 -4
- package/fesm2015/skyux-lookup.mjs.map +1 -1
- package/fesm2020/skyux-lookup.mjs +12 -4
- package/fesm2020/skyux-lookup.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/lib/modules/country-field/country-field.component.d.ts +2 -0
- package/lib/modules/country-field/types/country-field-context-token.d.ts +6 -0
- package/lib/modules/country-field/types/country-field-context.d.ts +6 -0
- package/package.json +10 -10
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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "7.10.
|
|
3
|
+
"version": "7.10.1",
|
|
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.
|
|
50
|
-
"@skyux/core": "7.10.
|
|
51
|
-
"@skyux/forms": "7.10.
|
|
52
|
-
"@skyux/i18n": "7.10.
|
|
53
|
-
"@skyux/indicators": "7.10.
|
|
54
|
-
"@skyux/layout": "7.10.
|
|
55
|
-
"@skyux/lists": "7.10.
|
|
56
|
-
"@skyux/modals": "7.10.
|
|
57
|
-
"@skyux/theme": "7.10.
|
|
49
|
+
"@skyux-sdk/testing": "7.10.1",
|
|
50
|
+
"@skyux/core": "7.10.1",
|
|
51
|
+
"@skyux/forms": "7.10.1",
|
|
52
|
+
"@skyux/i18n": "7.10.1",
|
|
53
|
+
"@skyux/indicators": "7.10.1",
|
|
54
|
+
"@skyux/layout": "7.10.1",
|
|
55
|
+
"@skyux/lists": "7.10.1",
|
|
56
|
+
"@skyux/modals": "7.10.1",
|
|
57
|
+
"@skyux/theme": "7.10.1"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"intl-tel-input": "17.0.19",
|