@skyux/forms 11.0.0-alpha.0 → 11.0.0-alpha.2

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.
@@ -36,7 +36,7 @@ export declare class SkyCheckboxGroupComponent implements Validator {
36
36
  * The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
37
37
  * @default 4
38
38
  */
39
- headingStyle: SkyCheckboxGroupHeadingStyle;
39
+ set headingStyle(value: SkyCheckboxGroupHeadingStyle);
40
40
  /**
41
41
  * [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
42
42
  * additional context to the user.
@@ -60,8 +60,8 @@ export declare class SkyCheckboxGroupComponent implements Validator {
60
60
  helpKey: string | undefined;
61
61
  stackedLg: boolean;
62
62
  stackedXL: boolean;
63
- get headingClass(): string;
64
63
  protected errorId: string;
64
+ protected headingClass: string;
65
65
  protected formErrorsDataId: string;
66
66
  protected formGroup: FormGroup | null | undefined;
67
67
  validate(formGroup: FormGroup): ValidationErrors | null;
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  export declare class SkyFileSizePipe implements PipeTransform {
9
9
  #private;
10
10
  constructor(decimalPipe: DecimalPipe, resourcesService: SkyLibResourcesService);
11
- transform(input?: number | null): string;
11
+ transform(input?: number | string | null): string;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyFileSizePipe, never>;
13
13
  static ɵpipe: i0.ɵɵPipeDeclaration<SkyFileSizePipe, "skyFileSize", false>;
14
14
  }
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
8
8
  export declare class SkyInputBoxHostService {
9
9
  #private;
10
10
  get controlId(): string;
11
+ get labelId(): string;
11
12
  get labelText(): string;
12
13
  get ariaDescribedBy(): Observable<string | undefined> | undefined;
13
14
  init(host: SkyInputBoxComponent): void;
@@ -81,6 +81,7 @@ export declare class SkyInputBoxComponent implements OnInit, AfterContentChecked
81
81
  protected hintTextScreenReaderOnly: boolean;
82
82
  protected hostHintText: string | undefined;
83
83
  readonly controlId: string;
84
+ readonly labelId: string;
84
85
  readonly errorId: string;
85
86
  readonly hintTextId: string;
86
87
  readonly ariaDescribedBy: ReplaySubject<string | undefined>;
@@ -49,7 +49,7 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
49
49
  * The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
50
50
  * @default 4
51
51
  */
52
- headingStyle: SkyRadioGroupHeadingStyle;
52
+ set headingStyle(value: SkyRadioGroupHeadingStyle);
53
53
  /**
54
54
  * The name for the collection of radio buttons that the component groups together.
55
55
  * This property overwrites the deprecated `name` property on individual `sky-radio` elements,
@@ -118,7 +118,6 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
118
118
  * as configured by the application.
119
119
  */
120
120
  helpKey: string | undefined;
121
- get headingClass(): string;
122
121
  /**
123
122
  * Our radio components are usually implemented using an unordered list. This is an
124
123
  * accessibility violation because the unordered list has an implicit role which
@@ -131,6 +130,7 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
131
130
  display: string | undefined;
132
131
  stackedLg: boolean;
133
132
  stackedXL: boolean;
133
+ protected headingClass: string;
134
134
  protected errorId: string;
135
135
  protected ngControl: NgControl | undefined;
136
136
  constructor(changeDetector: ChangeDetectorRef, radioGroupIdSvc: SkyRadioGroupIdService, ngControl: NgControl);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/forms",
3
- "version": "11.0.0-alpha.0",
3
+ "version": "11.0.0-alpha.2",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -41,16 +41,16 @@
41
41
  "@angular/core": "^18.0.5",
42
42
  "@angular/forms": "^18.0.5",
43
43
  "@angular/platform-browser": "^18.0.5",
44
- "@skyux-sdk/testing": "11.0.0-alpha.0",
45
- "@skyux/core": "11.0.0-alpha.0",
46
- "@skyux/help-inline": "11.0.0-alpha.0",
47
- "@skyux/i18n": "11.0.0-alpha.0",
48
- "@skyux/indicators": "11.0.0-alpha.0",
49
- "@skyux/popovers": "11.0.0-alpha.0",
50
- "@skyux/theme": "11.0.0-alpha.0"
44
+ "@skyux-sdk/testing": "11.0.0-alpha.2",
45
+ "@skyux/core": "11.0.0-alpha.2",
46
+ "@skyux/help-inline": "11.0.0-alpha.2",
47
+ "@skyux/i18n": "11.0.0-alpha.2",
48
+ "@skyux/indicators": "11.0.0-alpha.2",
49
+ "@skyux/popovers": "11.0.0-alpha.2",
50
+ "@skyux/theme": "11.0.0-alpha.2"
51
51
  },
52
52
  "dependencies": {
53
- "@skyux/icon": "11.0.0-alpha.0",
53
+ "@skyux/icon": "11.0.0-alpha.2",
54
54
  "tslib": "^2.6.3"
55
55
  },
56
56
  "module": "fesm2022/skyux-forms.mjs",