@skyux/forms 10.21.1 → 10.23.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.
@@ -32,17 +32,17 @@ export declare class SkyCheckboxGroupComponent {
32
32
  */
33
33
  headingHidden: boolean;
34
34
  /**
35
- * The semantic heading level in the document structure.
35
+ * The semantic heading level in the document structure. By default, the heading text is not wrapped in a heading element.
36
36
  * @preview
37
- * @default 3
38
37
  */
39
- headingLevel: SkyCheckboxGroupHeadingLevel;
38
+ set headingLevel(value: SkyCheckboxGroupHeadingLevel | undefined);
39
+ get headingLevel(): SkyCheckboxGroupHeadingLevel | undefined;
40
40
  /**
41
41
  * The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
42
42
  * @preview
43
- * @default 3
43
+ * @default 4
44
44
  */
45
- set headingStyle(value: SkyCheckboxGroupHeadingStyle);
45
+ headingStyle: SkyCheckboxGroupHeadingStyle;
46
46
  /**
47
47
  * [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
48
48
  * additional context to the user.
@@ -59,7 +59,8 @@ export declare class SkyCheckboxGroupComponent {
59
59
  * vertical spacing is automatically added to the checkbox group.
60
60
  * @preview
61
61
  */
62
- stacked: boolean;
62
+ set stacked(value: boolean);
63
+ get stacked(): boolean;
63
64
  /**
64
65
  * The form group that contains the group of checkboxes.
65
66
  * @preview
@@ -71,9 +72,11 @@ export declare class SkyCheckboxGroupComponent {
71
72
  * @preview
72
73
  */
73
74
  helpKey: string | undefined;
75
+ stackedLg: boolean;
76
+ stackedXL: boolean;
77
+ get headingClass(): string;
74
78
  protected errorId: string;
75
79
  protected formErrorsDataId: string;
76
- protected headingClass: string;
77
80
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyCheckboxGroupComponent, never>;
78
81
  static ɵcmp: i0.ɵɵComponentDeclaration<SkyCheckboxGroupComponent, "sky-checkbox-group", never, { "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "headingText": { "alias": "headingText"; "required": true; }; "headingHidden": { "alias": "headingHidden"; "required": false; }; "headingLevel": { "alias": "headingLevel"; "required": false; }; "headingStyle": { "alias": "headingStyle"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "required": { "alias": "required"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": true; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, {}, never, ["sky-checkbox[icon]", "sky-checkbox", "sky-form-error"], true, never>;
79
82
  static ngAcceptInputType_headingHidden: unknown;
@@ -41,17 +41,17 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
41
41
  set disabled(value: boolean | undefined);
42
42
  get disabled(): boolean;
43
43
  /**
44
- * The semantic heading level in the document structure.
44
+ * The semantic heading level in the document structure. By default, the heading text is not wrapped in a heading element.
45
45
  * @preview
46
- * @default 3
47
46
  */
48
- headingLevel: SkyRadioGroupHeadingLevel;
47
+ set headingLevel(value: SkyRadioGroupHeadingLevel | undefined);
48
+ get headingLevel(): SkyRadioGroupHeadingLevel | undefined;
49
49
  /**
50
50
  * The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
51
51
  * @preview
52
- * @default 3
52
+ * @default 4
53
53
  */
54
- set headingStyle(value: SkyRadioGroupHeadingStyle);
54
+ headingStyle: SkyRadioGroupHeadingStyle;
55
55
  /**
56
56
  * The name for the collection of radio buttons that the component groups together.
57
57
  * This property overwrites the deprecated `name` property on individual `sky-radio` elements,
@@ -74,7 +74,8 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
74
74
  * the appropriate vertical spacing is automatically added to the radio button group.
75
75
  * @preview
76
76
  */
77
- stacked: boolean;
77
+ set stacked(value: boolean);
78
+ get stacked(): boolean;
78
79
  /**
79
80
  * The value of the radio button to select by default when the group loads.
80
81
  * The value corresponds to the `value` property of an individual `sky-radio` element within the
@@ -100,7 +101,6 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
100
101
  * @preview
101
102
  */
102
103
  headingHidden: boolean;
103
- display: string | undefined;
104
104
  /**
105
105
  * [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
106
106
  * additional context to the user.
@@ -126,6 +126,7 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
126
126
  * @preview
127
127
  */
128
128
  helpKey: string | undefined;
129
+ get headingClass(): string;
129
130
  /**
130
131
  * Our radio components are usually implemented using an unordered list. This is an
131
132
  * accessibility violation because the unordered list has an implicit role which
@@ -135,9 +136,11 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
135
136
  */
136
137
  ariaOwns: string | undefined;
137
138
  radios: QueryList<SkyRadioComponent> | undefined;
139
+ display: string | undefined;
140
+ stackedLg: boolean;
141
+ stackedXL: boolean;
138
142
  protected errorId: string;
139
143
  protected ngControl: NgControl | undefined;
140
- protected headingClass: string;
141
144
  constructor(changeDetector: ChangeDetectorRef, radioGroupIdSvc: SkyRadioGroupIdService, ngControl: NgControl);
142
145
  ngAfterContentInit(): void;
143
146
  ngAfterViewInit(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/forms",
3
- "version": "10.21.1",
3
+ "version": "10.23.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -41,13 +41,13 @@
41
41
  "@angular/core": "^17.3.4",
42
42
  "@angular/forms": "^17.3.4",
43
43
  "@angular/platform-browser": "^17.3.4",
44
- "@skyux-sdk/testing": "10.21.1",
45
- "@skyux/core": "10.21.1",
46
- "@skyux/help-inline": "10.21.1",
47
- "@skyux/i18n": "10.21.1",
48
- "@skyux/indicators": "10.21.1",
49
- "@skyux/popovers": "10.21.1",
50
- "@skyux/theme": "10.21.1"
44
+ "@skyux-sdk/testing": "10.23.0",
45
+ "@skyux/core": "10.23.0",
46
+ "@skyux/help-inline": "10.23.0",
47
+ "@skyux/i18n": "10.23.0",
48
+ "@skyux/indicators": "10.23.0",
49
+ "@skyux/popovers": "10.23.0",
50
+ "@skyux/theme": "10.23.0"
51
51
  },
52
52
  "dependencies": {
53
53
  "tslib": "^2.6.2"