@skyux/forms 10.32.0 → 11.0.0-alpha.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.
Files changed (58) hide show
  1. package/documentation.json +1395 -1717
  2. package/esm2022/lib/modules/character-counter/character-counter-indicator.component.mjs +3 -3
  3. package/esm2022/lib/modules/character-counter/character-counter-screen-reader.pipe.mjs +3 -3
  4. package/esm2022/lib/modules/character-counter/character-counter.directive.mjs +3 -3
  5. package/esm2022/lib/modules/character-counter/character-counter.module.mjs +4 -4
  6. package/esm2022/lib/modules/checkbox/checkbox-group.component.mjs +5 -10
  7. package/esm2022/lib/modules/checkbox/checkbox-label-text-label.component.mjs +5 -5
  8. package/esm2022/lib/modules/checkbox/checkbox-label.component.mjs +3 -3
  9. package/esm2022/lib/modules/checkbox/checkbox.component.mjs +16 -16
  10. package/esm2022/lib/modules/checkbox/checkbox.module.mjs +4 -4
  11. package/esm2022/lib/modules/field-group/field-group.component.mjs +4 -8
  12. package/esm2022/lib/modules/field-group/field-group.module.mjs +4 -4
  13. package/esm2022/lib/modules/file-attachment/file-attachment-label.component.mjs +3 -3
  14. package/esm2022/lib/modules/file-attachment/file-attachment.component.mjs +4 -4
  15. package/esm2022/lib/modules/file-attachment/file-attachment.service.mjs +3 -3
  16. package/esm2022/lib/modules/file-attachment/file-attachments.module.mjs +4 -4
  17. package/esm2022/lib/modules/file-attachment/file-drop.component.mjs +5 -8
  18. package/esm2022/lib/modules/file-attachment/file-item.component.mjs +3 -3
  19. package/esm2022/lib/modules/file-attachment/file-item.service.mjs +3 -3
  20. package/esm2022/lib/modules/file-attachment/file-size.pipe.mjs +3 -3
  21. package/esm2022/lib/modules/form-error/form-error.component.mjs +3 -3
  22. package/esm2022/lib/modules/form-error/form-error.module.mjs +4 -4
  23. package/esm2022/lib/modules/form-error/form-errors.component.mjs +3 -3
  24. package/esm2022/lib/modules/form-error/form-errors.module.mjs +4 -4
  25. package/esm2022/lib/modules/input-box/input-box-adapter.service.mjs +3 -3
  26. package/esm2022/lib/modules/input-box/input-box-control.directive.mjs +3 -3
  27. package/esm2022/lib/modules/input-box/input-box-hint-text.pipe.mjs +3 -3
  28. package/esm2022/lib/modules/input-box/input-box-host.service.mjs +3 -3
  29. package/esm2022/lib/modules/input-box/input-box.component.mjs +5 -5
  30. package/esm2022/lib/modules/input-box/input-box.module.mjs +4 -4
  31. package/esm2022/lib/modules/radio/radio-group-id.service.mjs +3 -3
  32. package/esm2022/lib/modules/radio/radio-group.component.mjs +5 -9
  33. package/esm2022/lib/modules/radio/radio-label.component.mjs +4 -4
  34. package/esm2022/lib/modules/radio/radio.component.mjs +5 -6
  35. package/esm2022/lib/modules/radio/radio.module.mjs +4 -4
  36. package/esm2022/lib/modules/required-state/required-state.directive.mjs +3 -3
  37. package/esm2022/lib/modules/selection-box/selection-box-adapter.service.mjs +3 -3
  38. package/esm2022/lib/modules/selection-box/selection-box-description.component.mjs +3 -3
  39. package/esm2022/lib/modules/selection-box/selection-box-grid.component.mjs +3 -3
  40. package/esm2022/lib/modules/selection-box/selection-box-header.component.mjs +3 -3
  41. package/esm2022/lib/modules/selection-box/selection-box.component.mjs +3 -3
  42. package/esm2022/lib/modules/selection-box/selection-box.module.mjs +4 -4
  43. package/esm2022/lib/modules/shared/form-field-label-text-required.service.mjs +3 -3
  44. package/esm2022/lib/modules/shared/sky-forms-resources.module.mjs +4 -4
  45. package/esm2022/lib/modules/toggle-switch/toggle-switch-label.component.mjs +3 -3
  46. package/esm2022/lib/modules/toggle-switch/toggle-switch.component.mjs +5 -6
  47. package/esm2022/lib/modules/toggle-switch/toggle-switch.module.mjs +4 -4
  48. package/fesm2022/skyux-forms.mjs +163 -183
  49. package/fesm2022/skyux-forms.mjs.map +1 -1
  50. package/lib/modules/checkbox/checkbox-group.component.d.ts +0 -10
  51. package/lib/modules/checkbox/checkbox.component.d.ts +2 -8
  52. package/lib/modules/field-group/field-group.component.d.ts +0 -9
  53. package/lib/modules/file-attachment/file-drop.component.d.ts +0 -8
  54. package/lib/modules/input-box/input-box.component.d.ts +0 -1
  55. package/lib/modules/radio/radio-group.component.d.ts +0 -9
  56. package/lib/modules/radio/radio.component.d.ts +0 -6
  57. package/lib/modules/toggle-switch/toggle-switch.component.d.ts +0 -5
  58. package/package.json +15 -15
@@ -12,52 +12,43 @@ export declare class SkyCheckboxGroupComponent implements Validator {
12
12
  * The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
13
13
  * button is added to the checkbox group fieldset legend. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
14
14
  * when clicked using the specified content and optional title.
15
- * @preview
16
15
  */
17
16
  helpPopoverContent: string | TemplateRef<unknown> | undefined;
18
17
  /**
19
18
  * The title of the help popover. This property only applies when `helpPopoverContent` is
20
19
  * also specified.
21
- * @preview
22
20
  */
23
21
  helpPopoverTitle: string | undefined;
24
22
  /**
25
23
  * The text to display as the checkbox group's heading.
26
- * @preview
27
24
  */
28
25
  headingText: string;
29
26
  /**
30
27
  * Indicates whether to hide the `headingText`.
31
- * @preview
32
28
  */
33
29
  headingHidden: boolean;
34
30
  /**
35
31
  * The semantic heading level in the document structure. By default, the heading text is not wrapped in a heading element.
36
- * @preview
37
32
  */
38
33
  set headingLevel(value: SkyCheckboxGroupHeadingLevel | undefined);
39
34
  get headingLevel(): SkyCheckboxGroupHeadingLevel | undefined;
40
35
  /**
41
36
  * The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
42
- * @preview
43
37
  * @default 4
44
38
  */
45
39
  headingStyle: SkyCheckboxGroupHeadingStyle;
46
40
  /**
47
41
  * [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
48
42
  * additional context to the user.
49
- * @preview
50
43
  */
51
44
  hintText: string | undefined;
52
45
  /**
53
46
  * Whether the checkbox group is required.
54
- * @preview
55
47
  */
56
48
  required: boolean;
57
49
  /**
58
50
  * Whether the checkbox group is stacked on another form component. When specified, the appropriate
59
51
  * vertical spacing is automatically added to the checkbox group.
60
- * @preview
61
52
  */
62
53
  set stacked(value: boolean);
63
54
  get stacked(): boolean;
@@ -65,7 +56,6 @@ export declare class SkyCheckboxGroupComponent implements Validator {
65
56
  * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
66
57
  * button is placed beside the checkbox group heading. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
67
58
  * as configured by the application.
68
- * @preview
69
59
  */
70
60
  helpKey: string | undefined;
71
61
  stackedLg: boolean;
@@ -3,6 +3,7 @@ import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } fr
3
3
  import { Observable } from 'rxjs';
4
4
  import { SkyCheckboxChange } from './checkbox-change';
5
5
  import * as i0 from "@angular/core";
6
+ import * as i1 from "@skyux/theme";
6
7
  /**
7
8
  * Replaces the HTML input element with `type="checkbox"`. When users select a checkbox, its value
8
9
  * is driven through an `ngModel` attribute that you specify on the `sky-checkbox` element.
@@ -57,13 +58,11 @@ export declare class SkyCheckboxComponent implements ControlValueAccessor, OnIni
57
58
  * The content of the help popover. When specified along with `labelText`, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
58
59
  * button is added to the checkbox label. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
59
60
  * when clicked using the specified content and optional title.
60
- * @preview
61
61
  */
62
62
  helpPopoverContent: string | TemplateRef<unknown> | undefined;
63
63
  /**
64
64
  * The title of the help popover. This property only applies when `helpPopoverContent` is
65
65
  * also specified.
66
- * @preview
67
66
  */
68
67
  helpPopoverTitle: string | undefined;
69
68
  /**
@@ -112,32 +111,27 @@ export declare class SkyCheckboxComponent implements ControlValueAccessor, OnIni
112
111
  /**
113
112
  * The text to display as the checkbox's label. Use this instead of the `sky-checkbox-label` when the label is text-only.
114
113
  * Specifying `labelText` also enables automatic error message handling for checkbox.
115
- * @preview
116
114
  */
117
115
  labelText: string | undefined;
118
116
  /**
119
117
  * Indicates whether to hide the `labelText`.
120
- * @preview
121
118
  */
122
119
  labelHidden: boolean;
123
120
  /**
124
121
  * [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
125
122
  * additional context to the user.
126
- * @preview
127
123
  */
128
124
  hintText: string | undefined;
129
125
  /**
130
126
  * Whether the checkbox is stacked on another form component. When specified, the appropriate
131
127
  * vertical spacing is automatically added to the checkbox. If the checkbox is within a checkbox group,
132
128
  * set `stacked` on the checkbox group component instead.
133
- * @preview
134
129
  */
135
130
  stacked: boolean;
136
131
  /**
137
132
  * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
138
133
  * button is placed beside the checkbox label. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
139
134
  * as configured by the application.
140
- * @preview
141
135
  */
142
136
  helpKey: string | undefined;
143
137
  /**
@@ -188,7 +182,7 @@ export declare class SkyCheckboxComponent implements ControlValueAccessor, OnIni
188
182
  /** Called when the checkbox is blurred. Needed to properly implement ControlValueAccessor. */
189
183
  onTouched: () => any;
190
184
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyCheckboxComponent, never>;
191
- static ɵcmp: i0.ɵɵComponentDeclaration<SkyCheckboxComponent, "sky-checkbox", never, { "label": { "alias": "label"; "required": false; }; "labelledBy": { "alias": "labelledBy"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "name": { "alias": "name"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "checkboxType": { "alias": "checkboxType"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "required": { "alias": "required"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "labelHidden": { "alias": "labelHidden"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, { "change": "change"; "checkedChange": "checkedChange"; "disabledChange": "disabledChange"; "indeterminateChange": "indeterminateChange"; }, never, ["sky-checkbox-label", "sky-form-error"], false, never>;
185
+ static ɵcmp: i0.ɵɵComponentDeclaration<SkyCheckboxComponent, "sky-checkbox", never, { "label": { "alias": "label"; "required": false; }; "labelledBy": { "alias": "labelledBy"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "name": { "alias": "name"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "checkboxType": { "alias": "checkboxType"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "required": { "alias": "required"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "labelHidden": { "alias": "labelHidden"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, { "change": "change"; "checkedChange": "checkedChange"; "disabledChange": "disabledChange"; "indeterminateChange": "indeterminateChange"; }, never, ["sky-checkbox-label", "sky-form-error"], false, [{ directive: typeof i1.SkyThemeComponentClassDirective; inputs: {}; outputs: {}; }]>;
192
186
  static ngAcceptInputType_required: unknown;
193
187
  static ngAcceptInputType_labelHidden: unknown;
194
188
  static ngAcceptInputType_stacked: unknown;
@@ -8,35 +8,29 @@ import * as i0 from "@angular/core";
8
8
  export declare class SkyFieldGroupComponent {
9
9
  /**
10
10
  * The text to display as the field group's heading.
11
- * @preview
12
11
  */
13
12
  headingText: string;
14
13
  /**
15
14
  * [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
16
15
  * additional context to the user.
17
- * @preview
18
16
  */
19
17
  hintText: string | undefined;
20
18
  /**
21
19
  * Indicates whether to hide the `headingText`.
22
- * @preview
23
20
  */
24
21
  headingHidden: boolean;
25
22
  /**
26
23
  * Whether the field group is stacked on another field group. When specified, the appropriate
27
24
  * vertical spacing is automatically added to the field group.
28
- * @preview
29
25
  */
30
26
  stacked: boolean;
31
27
  /**
32
28
  * The semantic heading level in the document structure.
33
- * @preview
34
29
  * @default 3
35
30
  */
36
31
  headingLevel: SkyFieldGroupHeadingLevel;
37
32
  /**
38
33
  * The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
39
- * @preview
40
34
  * @default 3
41
35
  */
42
36
  set headingStyle(value: SkyFieldGroupHeadingStyle);
@@ -44,20 +38,17 @@ export declare class SkyFieldGroupComponent {
44
38
  * The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
45
39
  * button is added to the field group heading. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
46
40
  * when clicked using the specified content and optional title.
47
- * @preview
48
41
  */
49
42
  helpPopoverContent: string | TemplateRef<unknown> | undefined;
50
43
  /**
51
44
  * The title of the help popover. This property only applies when `helpPopoverContent` is
52
45
  * also specified.
53
- * @preview
54
46
  */
55
47
  helpPopoverTitle: string | undefined;
56
48
  /**
57
49
  * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
58
50
  * button is placed beside the field group heading. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
59
51
  * as configured by the application.
60
- * @preview
61
52
  */
62
53
  helpKey: string | undefined;
63
54
  protected headingClass: string;
@@ -80,18 +80,15 @@ export declare class SkyFileDropComponent implements OnInit, OnDestroy {
80
80
  allowLinks: boolean | undefined;
81
81
  /**
82
82
  * The text to display as the file attachment's label.
83
- * @preview
84
83
  */
85
84
  labelText: string | undefined;
86
85
  /**
87
86
  * Whether to hide `labelText` from view.
88
- * @preview
89
87
  */
90
88
  labelHidden: boolean;
91
89
  /**
92
90
  * [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
93
91
  * additional context to the user.
94
- * @preview
95
92
  */
96
93
  hintText: string | undefined;
97
94
  /**
@@ -100,33 +97,28 @@ export declare class SkyFileDropComponent implements OnInit, OnDestroy {
100
97
  * attributes to the input elements so that screen readers announce an invalid state until the input element
101
98
  * is complete.
102
99
  * For more information about the `aria-required` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-required).
103
- * @preview
104
100
  */
105
101
  required: boolean;
106
102
  /**
107
103
  * The content of the help popover. When specified along with `labelText`, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
108
104
  * button is added to the file attachment label. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
109
105
  * when clicked using the specified content and optional title.
110
- * @preview
111
106
  */
112
107
  helpPopoverContent: string | TemplateRef<unknown> | undefined;
113
108
  /**
114
109
  * The title of the help popover. This property only applies when `helpPopoverContent` is
115
110
  * also specified.
116
- * @preview
117
111
  */
118
112
  helpPopoverTitle: string | undefined;
119
113
  /**
120
114
  * Whether the file attachment is stacked on another form component. When specified, the appropriate
121
115
  * vertical spacing is automatically added to the file attachment.
122
- * @preview
123
116
  */
124
117
  stacked: boolean;
125
118
  /**
126
119
  * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
127
120
  * button is placed beside the file attachment label. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
128
121
  * as configured by the application.
129
- * @preview
130
122
  */
131
123
  helpKey: string | undefined;
132
124
  inputEl: ElementRef | undefined;
@@ -58,7 +58,6 @@ export declare class SkyInputBoxComponent implements OnInit, AfterContentChecked
58
58
  * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
59
59
  * button is placed beside the input box label. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
60
60
  * as configured by the application.
61
- * @preview
62
61
  */
63
62
  helpKey: string | undefined;
64
63
  /**
@@ -42,13 +42,11 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
42
42
  get disabled(): boolean;
43
43
  /**
44
44
  * The semantic heading level in the document structure. By default, the heading text is not wrapped in a heading element.
45
- * @preview
46
45
  */
47
46
  set headingLevel(value: SkyRadioGroupHeadingLevel | undefined);
48
47
  get headingLevel(): SkyRadioGroupHeadingLevel | undefined;
49
48
  /**
50
49
  * The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
51
- * @preview
52
50
  * @default 4
53
51
  */
54
52
  headingStyle: SkyRadioGroupHeadingStyle;
@@ -72,7 +70,6 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
72
70
  /**
73
71
  * Whether the radio button group is stacked on another form component. When specified,
74
72
  * the appropriate vertical spacing is automatically added to the radio button group.
75
- * @preview
76
73
  */
77
74
  set stacked(value: boolean);
78
75
  get stacked(): boolean;
@@ -93,38 +90,32 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
93
90
  get tabIndex(): number | undefined;
94
91
  /**
95
92
  * The text to display as the radio group's heading.
96
- * @preview
97
93
  */
98
94
  headingText: string | undefined;
99
95
  /**
100
96
  * Indicates whether to hide the `headingText`.
101
- * @preview
102
97
  */
103
98
  headingHidden: boolean;
104
99
  /**
105
100
  * [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
106
101
  * additional context to the user.
107
- * @preview
108
102
  */
109
103
  hintText: string | undefined;
110
104
  /**
111
105
  * The content of the help popover. When specified along with `headingText`, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
112
106
  * button is added to radio group. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
113
107
  * when clicked using the specified content and optional title.
114
- * @preview
115
108
  */
116
109
  helpPopoverContent: string | TemplateRef<unknown> | undefined;
117
110
  /**
118
111
  * The title of the help popover. This property only applies when `helpPopoverContent` is
119
112
  * also specified.
120
- * @preview
121
113
  */
122
114
  helpPopoverTitle: string | undefined;
123
115
  /**
124
116
  * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
125
117
  * button is placed beside the radio group heading. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
126
118
  * as configured by the application.
127
- * @preview
128
119
  */
129
120
  helpKey: string | undefined;
130
121
  get headingClass(): string;
@@ -82,13 +82,11 @@ export declare class SkyRadioComponent implements OnInit, OnDestroy, ControlValu
82
82
  * The content of the help popover. When specified along with `labelText`, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
83
83
  * button is added to radio button. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
84
84
  * when clicked using the specified content and optional title.
85
- * @preview
86
85
  */
87
86
  helpPopoverContent: string | TemplateRef<unknown> | undefined;
88
87
  /**
89
88
  * The title of the help popover. This property only applies when `helpPopoverContent` is
90
89
  * also specified.
91
- * @preview
92
90
  */
93
91
  helpPopoverTitle: string | undefined;
94
92
  /**
@@ -110,25 +108,21 @@ export declare class SkyRadioComponent implements OnInit, OnDestroy, ControlValu
110
108
  set radioType(value: SkyRadioType | undefined);
111
109
  /**
112
110
  * The text to display as the radio button's label. Use this instead of the `sky-radio-label` when the label is text-only.
113
- * @preview
114
111
  */
115
112
  labelText: string | undefined;
116
113
  /**
117
114
  * Indicates whether to hide the `labelText`.
118
- * @preview
119
115
  */
120
116
  labelHidden: boolean;
121
117
  /**
122
118
  * [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
123
119
  * additional context to the user.
124
- * @preview
125
120
  */
126
121
  hintText: string | undefined;
127
122
  /**
128
123
  * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
129
124
  * button is placed beside the radio button label. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
130
125
  * as configured by the application.
131
- * @preview
132
126
  */
133
127
  helpKey: string | undefined;
134
128
  /**
@@ -31,13 +31,11 @@ export declare class SkyToggleSwitchComponent implements AfterContentInit, OnIni
31
31
  * The content of the help popover. When specified along with `labelText`, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
32
32
  * button is added to the toggle switch. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
33
33
  * when clicked using the specified content and optional title.
34
- * @preview
35
34
  */
36
35
  helpPopoverContent: string | TemplateRef<unknown> | undefined;
37
36
  /**
38
37
  * The title of the help popover. This property only applies when `helpPopoverContent` is
39
38
  * also specified.
40
- * @preview
41
39
  */
42
40
  helpPopoverTitle: string | undefined;
43
41
  /**
@@ -47,19 +45,16 @@ export declare class SkyToggleSwitchComponent implements AfterContentInit, OnIni
47
45
  tabIndex: number | undefined;
48
46
  /**
49
47
  * The text to display as the toggle switch's label.
50
- * @preview
51
48
  */
52
49
  labelText: string | undefined;
53
50
  /**
54
51
  * Whether to hide `labelText` from view.
55
- * @preview
56
52
  */
57
53
  labelHidden: boolean;
58
54
  /**
59
55
  * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
60
56
  * button is placed beside the toggle switch label. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
61
57
  * as configured by the application.
62
- * @preview
63
58
  */
64
59
  helpKey: string | undefined;
65
60
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/forms",
3
- "version": "10.32.0",
3
+ "version": "11.0.0-alpha.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -36,22 +36,22 @@
36
36
  }
37
37
  },
38
38
  "peerDependencies": {
39
- "@angular/cdk": "^17.3.4",
40
- "@angular/common": "^17.3.4",
41
- "@angular/core": "^17.3.4",
42
- "@angular/forms": "^17.3.4",
43
- "@angular/platform-browser": "^17.3.4",
44
- "@skyux-sdk/testing": "10.32.0",
45
- "@skyux/core": "10.32.0",
46
- "@skyux/help-inline": "10.32.0",
47
- "@skyux/i18n": "10.32.0",
48
- "@skyux/indicators": "10.32.0",
49
- "@skyux/popovers": "10.32.0",
50
- "@skyux/theme": "10.32.0"
39
+ "@angular/cdk": "^18.0.5",
40
+ "@angular/common": "^18.0.5",
41
+ "@angular/core": "^18.0.5",
42
+ "@angular/forms": "^18.0.5",
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"
51
51
  },
52
52
  "dependencies": {
53
- "@skyux/icon": "10.32.0",
54
- "tslib": "^2.6.2"
53
+ "@skyux/icon": "11.0.0-alpha.0",
54
+ "tslib": "^2.6.3"
55
55
  },
56
56
  "module": "fesm2022/skyux-forms.mjs",
57
57
  "typings": "index.d.ts",