@skyux/lookup 8.2.5 → 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.
@@ -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);
@@ -55,4 +55,9 @@ export interface SkySelectionModalOpenArgs {
55
55
  * Called when users select the button to add options to the list.
56
56
  */
57
57
  addClick?: (args: SkySelectionModalAddClickEventArgs) => void;
58
+ /**
59
+ * The CSS class to add to the modal, such as `ag-custom-component-popup` for
60
+ * using a modal as part of a cell editor in Data Entry Grid.
61
+ */
62
+ wrapperClass?: string;
58
63
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/lookup",
3
- "version": "8.2.5",
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.5",
50
- "@skyux/core": "8.2.5",
51
- "@skyux/forms": "8.2.5",
52
- "@skyux/i18n": "8.2.5",
53
- "@skyux/indicators": "8.2.5",
54
- "@skyux/layout": "8.2.5",
55
- "@skyux/lists": "8.2.5",
56
- "@skyux/modals": "8.2.5",
57
- "@skyux/theme": "8.2.5"
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",