@skyux/lookup 8.2.6 → 8.2.7
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 +96 -96
- package/esm2020/lib/modules/autocomplete/autocomplete-input.directive.mjs +3 -2
- package/esm2020/lib/modules/country-field/country-field.component.mjs +11 -4
- package/esm2020/lib/modules/lookup/lookup.component.mjs +3 -2
- package/fesm2015/skyux-lookup.mjs +14 -5
- package/fesm2015/skyux-lookup.mjs.map +1 -1
- package/fesm2020/skyux-lookup.mjs +14 -5
- package/fesm2020/skyux-lookup.mjs.map +1 -1
- package/lib/modules/autocomplete/autocomplete-input.directive.d.ts +2 -1
- package/lib/modules/country-field/country-field.component.d.ts +2 -1
- package/lib/modules/lookup/lookup.component.d.ts +2 -1
- package/package.json +10 -10
|
@@ -12,7 +12,8 @@ export declare class SkyAutocompleteInputDirective implements OnInit, OnDestroy,
|
|
|
12
12
|
set autocompleteAttribute(value: string | undefined);
|
|
13
13
|
get autocompleteAttribute(): string;
|
|
14
14
|
/**
|
|
15
|
-
* Whether to disable the autocomplete field.
|
|
15
|
+
* Whether to disable the autocomplete field on template-driven forms. Don't use this input on reactive forms because they may overwrite the input or leave the control out of sync.
|
|
16
|
+
* To set the disabled state on reactive forms, use the `FormControl` instead.
|
|
16
17
|
* @default false
|
|
17
18
|
*/
|
|
18
19
|
set disabled(value: boolean | undefined);
|
|
@@ -25,7 +25,8 @@ export declare class SkyCountryFieldComponent implements AfterViewInit, ControlV
|
|
|
25
25
|
set defaultCountry(value: string | undefined);
|
|
26
26
|
get defaultCountry(): string | undefined;
|
|
27
27
|
/**
|
|
28
|
-
* Whether to disable the country field.
|
|
28
|
+
* Whether to disable the country field on template-driven forms. Don't use this input on reactive forms because they may overwrite the input or leave the control out of sync.
|
|
29
|
+
* To set the disabled state on reactive forms, use the `FormControl` instead.
|
|
29
30
|
* @default false
|
|
30
31
|
*/
|
|
31
32
|
set disabled(isDisabled: boolean | undefined);
|
|
@@ -51,7 +51,8 @@ export declare class SkyLookupComponent extends SkyLookupAutocompleteAdapter imp
|
|
|
51
51
|
set data(value: any[] | undefined);
|
|
52
52
|
get data(): any[];
|
|
53
53
|
/**
|
|
54
|
-
* Whether to disable the lookup field.
|
|
54
|
+
* Whether to disable the lookup field on template-driven forms. Don't use this input on reactive forms because they may overwrite the input or leave the control out of sync.
|
|
55
|
+
* To set the disabled state on reactive forms, use the `FormControl` instead.
|
|
55
56
|
* @default false
|
|
56
57
|
*/
|
|
57
58
|
set disabled(value: boolean | undefined);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.7",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -46,15 +46,15 @@
|
|
|
46
46
|
"@angular/core": "^15.2.9",
|
|
47
47
|
"@angular/forms": "^15.2.9",
|
|
48
48
|
"@angular/platform-browser": "^15.2.9",
|
|
49
|
-
"@skyux-sdk/testing": "8.2.
|
|
50
|
-
"@skyux/core": "8.2.
|
|
51
|
-
"@skyux/forms": "8.2.
|
|
52
|
-
"@skyux/i18n": "8.2.
|
|
53
|
-
"@skyux/indicators": "8.2.
|
|
54
|
-
"@skyux/layout": "8.2.
|
|
55
|
-
"@skyux/lists": "8.2.
|
|
56
|
-
"@skyux/modals": "8.2.
|
|
57
|
-
"@skyux/theme": "8.2.
|
|
49
|
+
"@skyux-sdk/testing": "8.2.7",
|
|
50
|
+
"@skyux/core": "8.2.7",
|
|
51
|
+
"@skyux/forms": "8.2.7",
|
|
52
|
+
"@skyux/i18n": "8.2.7",
|
|
53
|
+
"@skyux/indicators": "8.2.7",
|
|
54
|
+
"@skyux/layout": "8.2.7",
|
|
55
|
+
"@skyux/lists": "8.2.7",
|
|
56
|
+
"@skyux/modals": "8.2.7",
|
|
57
|
+
"@skyux/theme": "8.2.7"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"intl-tel-input": "17.0.21",
|