@skyux/forms 12.0.0-alpha.2 → 12.0.0-alpha.3
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 +4111 -3721
- package/fesm2022/skyux-forms.mjs +73 -20
- package/fesm2022/skyux-forms.mjs.map +1 -1
- package/lib/modules/character-counter/character-counter.module.d.ts +3 -0
- package/lib/modules/checkbox/checkbox-group.component.d.ts +1 -1
- package/lib/modules/checkbox/checkbox.component.d.ts +10 -3
- package/lib/modules/checkbox/checkbox.module.d.ts +3 -0
- package/lib/modules/field-group/field-group.module.d.ts +3 -0
- package/lib/modules/file-attachment/file-attachment/file-attachment.module.d.ts +3 -0
- package/lib/modules/file-attachment/file-drop/file-drop.module.d.ts +3 -0
- package/lib/modules/form-error/form-error.component.d.ts +1 -0
- package/lib/modules/form-error/form-error.module.d.ts +3 -0
- package/lib/modules/input-box/input-box.module.d.ts +3 -0
- package/lib/modules/radio/radio.component.d.ts +8 -1
- package/lib/modules/radio/radio.module.d.ts +3 -0
- package/lib/modules/selection-box/selection-box.module.d.ts +3 -0
- package/lib/modules/toggle-switch/toggle-switch.module.d.ts +3 -0
- package/package.json +9 -9
|
@@ -5,6 +5,9 @@ import * as i3 from "@angular/common";
|
|
|
5
5
|
import * as i4 from "@angular/forms";
|
|
6
6
|
import * as i5 from "./character-counter-screen-reader.pipe";
|
|
7
7
|
import * as i6 from "../shared/sky-forms-resources.module";
|
|
8
|
+
/**
|
|
9
|
+
* @docsIncludeIds SkyCharacterCounterIndicatorComponent, SkyCharacterCounterInputDirective, SkyCharacterCounterScreenReaderPipe, SkyCharacterCounterIndicatorHarness
|
|
10
|
+
*/
|
|
8
11
|
export declare class SkyCharacterCounterModule {
|
|
9
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyCharacterCounterModule, never>;
|
|
10
13
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyCharacterCounterModule, [typeof i1.SkyCharacterCounterInputDirective, typeof i2.SkyCharacterCounterIndicatorComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.SkyCharacterCounterScreenReaderPipe, typeof i6.SkyFormsResourcesModule], [typeof i1.SkyCharacterCounterInputDirective, typeof i2.SkyCharacterCounterIndicatorComponent]>;
|
|
@@ -67,7 +67,7 @@ export declare class SkyCheckboxGroupComponent implements Validator {
|
|
|
67
67
|
protected formGroup: FormGroup | null | undefined;
|
|
68
68
|
validate(formGroup: FormGroup): ValidationErrors | null;
|
|
69
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyCheckboxGroupComponent, never>;
|
|
70
|
-
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; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, {}, never, ["sky-checkbox[icon]", "sky-checkbox", "sky-form-error"], true, [{ directive: typeof i1.SkyThemeComponentClassDirective; inputs: {}; outputs: {}; }]>;
|
|
70
|
+
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; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, {}, never, ["sky-checkbox[icon], sky-checkbox[iconName]", "sky-checkbox", "sky-form-error"], true, [{ directive: typeof i1.SkyThemeComponentClassDirective; inputs: {}; outputs: {}; }]>;
|
|
71
71
|
static ngAcceptInputType_headingHidden: unknown;
|
|
72
72
|
static ngAcceptInputType_headingLevel: unknown;
|
|
73
73
|
static ngAcceptInputType_headingStyle: unknown;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, TemplateRef } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, TemplateRef } from '@angular/core';
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { SkyCheckboxChange } from './checkbox-change';
|
|
@@ -8,7 +8,7 @@ import * as i1 from "@skyux/theme";
|
|
|
8
8
|
* Replaces the HTML input element with `type="checkbox"`. When users select a checkbox, its value
|
|
9
9
|
* is driven through an `ngModel` attribute that you specify on the `sky-checkbox` element.
|
|
10
10
|
*/
|
|
11
|
-
export declare class SkyCheckboxComponent implements ControlValueAccessor, Validator {
|
|
11
|
+
export declare class SkyCheckboxComponent implements AfterViewInit, ControlValueAccessor, Validator {
|
|
12
12
|
#private;
|
|
13
13
|
/**
|
|
14
14
|
* The ARIA label for the checkbox. This sets the checkbox's `aria-label` attribute
|
|
@@ -72,8 +72,14 @@ export declare class SkyCheckboxComponent implements ControlValueAccessor, Valid
|
|
|
72
72
|
/**
|
|
73
73
|
* The icon to display in place of the checkbox. To group icon checkboxes
|
|
74
74
|
* like in the demo, place the checkboxes within a `sky-checkbox-group`.
|
|
75
|
+
* @deprecated Use `iconName` instead.
|
|
75
76
|
*/
|
|
76
77
|
icon: string | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* The SVG icon to display in place of the checkbox. To group icon checkboxes
|
|
80
|
+
* like in the demo, place the checkboxes within a `sky-checkbox-group`.
|
|
81
|
+
*/
|
|
82
|
+
iconName: string | undefined;
|
|
77
83
|
/**
|
|
78
84
|
* The background color type after users select a checkbox where the
|
|
79
85
|
* `icon` property displays an icon in place of the checkbox. The valid options correspond to
|
|
@@ -154,6 +160,7 @@ export declare class SkyCheckboxComponent implements ControlValueAccessor, Valid
|
|
|
154
160
|
protected inputId: string;
|
|
155
161
|
protected readonly errorId: string;
|
|
156
162
|
constructor();
|
|
163
|
+
ngAfterViewInit(): void;
|
|
157
164
|
validate(control: AbstractControl<boolean>): ValidationErrors | null;
|
|
158
165
|
/**
|
|
159
166
|
* Implemented as part of ControlValueAccessor.
|
|
@@ -180,7 +187,7 @@ export declare class SkyCheckboxComponent implements ControlValueAccessor, Valid
|
|
|
180
187
|
/** Called when the checkbox is blurred. Needed to properly implement ControlValueAccessor. */
|
|
181
188
|
onTouched: () => any;
|
|
182
189
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyCheckboxComponent, never>;
|
|
183
|
-
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: {}; }]>;
|
|
190
|
+
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; }; "iconName": { "alias": "iconName"; "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: {}; }]>;
|
|
184
191
|
static ngAcceptInputType_disabled: unknown;
|
|
185
192
|
static ngAcceptInputType_required: unknown;
|
|
186
193
|
static ngAcceptInputType_labelHidden: unknown;
|
|
@@ -12,6 +12,9 @@ import * as i10 from "@skyux/help-inline";
|
|
|
12
12
|
import * as i11 from "@skyux/icon";
|
|
13
13
|
import * as i12 from "@skyux/core";
|
|
14
14
|
import * as i13 from "@skyux/theme";
|
|
15
|
+
/**
|
|
16
|
+
* @docsIncludeIds SkyCheckboxComponent, SkyCheckboxGroupComponent, SkyCheckboxLabelComponent, SkyCheckboxChange, SkyCheckboxGroupHeadingLevel, SkyCheckboxGroupHeadingStyle, SkyCheckboxHarness, SkyCheckboxGroupHarness
|
|
17
|
+
*/
|
|
15
18
|
export declare class SkyCheckboxModule {
|
|
16
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyCheckboxModule, never>;
|
|
17
20
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyCheckboxModule, [typeof i1.SkyCheckboxComponent, typeof i2.SkyCheckboxLabelComponent, typeof i3.SkyCheckboxLabelTextLabelComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i6.SkyCheckboxGroupComponent, typeof i7.SkyFormErrorModule, typeof i8.SkyFormErrorsModule, typeof i9.SkyFormsResourcesModule, typeof i10.SkyHelpInlineModule, typeof i11.SkyIconModule, typeof i12.SkyIdModule, typeof i12.SkyTrimModule, typeof i13.SkyThemeModule], [typeof i1.SkyCheckboxComponent, typeof i2.SkyCheckboxLabelComponent, typeof i6.SkyCheckboxGroupComponent, typeof i7.SkyFormErrorModule]>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./field-group.component";
|
|
3
|
+
/**
|
|
4
|
+
* @docsIncludeIds SkyFieldGroupComponent, SkyFieldGroupHeadingLevel, SkyFieldGroupHeadingStyle, SkyFieldGroupHarness
|
|
5
|
+
*/
|
|
3
6
|
export declare class SkyFieldGroupModule {
|
|
4
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyFieldGroupModule, never>;
|
|
5
8
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyFieldGroupModule, never, [typeof i1.SkyFieldGroupComponent], [typeof i1.SkyFieldGroupComponent]>;
|
|
@@ -2,6 +2,9 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./file-attachment.component";
|
|
3
3
|
import * as i2 from "./file-attachment-label.component";
|
|
4
4
|
import * as i3 from "../../form-error/form-error.module";
|
|
5
|
+
/**
|
|
6
|
+
* @docsIncludeIds SkyFileAttachmentComponent, SkyFileAttachmentLabelComponent, SkyFileAttachmentChange, SkyFileAttachmentClick, SkyFileLink, SkyFileItemErrorType, SkyFileItem, SkyFileValidateFn, SkyFileAttachmentHarness, provideSkyFileAttachmentTesting
|
|
7
|
+
*/
|
|
5
8
|
export declare class SkyFileAttachmentModule {
|
|
6
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyFileAttachmentModule, never>;
|
|
7
10
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyFileAttachmentModule, never, [typeof i1.SkyFileAttachmentComponent, typeof i2.SkyFileAttachmentLabelComponent], [typeof i1.SkyFileAttachmentComponent, typeof i2.SkyFileAttachmentLabelComponent, typeof i3.SkyFormErrorModule]>;
|
|
@@ -2,6 +2,9 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./file-drop.component";
|
|
3
3
|
import * as i2 from "./file-item.component";
|
|
4
4
|
import * as i3 from "../../form-error/form-error.module";
|
|
5
|
+
/**
|
|
6
|
+
* @docsIncludeIds SkyFileDropComponent, SkyFileItemComponent, SkyFileDropChange, SkyFileLink, SkyFileItem, SkyFileValidateFn, SkyFileDropHarness, SkyFileItemHarness, SkyFileItemHarnessFilters, provideSkyFileAttachmentTesting
|
|
7
|
+
*/
|
|
5
8
|
export declare class SkyFileDropModule {
|
|
6
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyFileDropModule, never>;
|
|
7
10
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyFileDropModule, never, [typeof i1.SkyFileDropComponent, typeof i2.SkyFileItemComponent], [typeof i1.SkyFileDropComponent, typeof i2.SkyFileItemComponent, typeof i3.SkyFormErrorModule]>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./form-error.component";
|
|
3
|
+
/**
|
|
4
|
+
* @docsIncludeIds SkyFormErrorComponent, SkyFormErrorsHarness, SkyFormErrorsHarnessFilters, SkyFormErrorHarness, SkyFormErrorHarnessFilters
|
|
5
|
+
*/
|
|
3
6
|
export declare class SkyFormErrorModule {
|
|
4
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyFormErrorModule, never>;
|
|
5
8
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyFormErrorModule, never, [typeof i1.SkyFormErrorComponent], [typeof i1.SkyFormErrorComponent]>;
|
|
@@ -9,6 +9,9 @@ import * as i7 from "@skyux/help-inline";
|
|
|
9
9
|
import * as i8 from "./input-box-control.directive";
|
|
10
10
|
import * as i9 from "./input-box-hint-text.pipe";
|
|
11
11
|
import * as i10 from "@skyux/theme";
|
|
12
|
+
/**
|
|
13
|
+
* @docsIncludeIds SkyInputBoxComponent, SkyInputBoxHarness
|
|
14
|
+
*/
|
|
12
15
|
export declare class SkyInputBoxModule {
|
|
13
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyInputBoxModule, never>;
|
|
14
17
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyInputBoxModule, [typeof i1.SkyInputBoxComponent], [typeof i2.CommonModule, typeof i3.SkyCharacterCounterModule, typeof i4.SkyFormErrorsModule, typeof i5.SkyFormErrorModule, typeof i6.SkyFormsResourcesModule, typeof i7.SkyHelpInlineModule, typeof i8.SkyInputBoxControlDirective, typeof i9.SkyInputBoxHintTextPipe, typeof i10.SkyThemeModule], [typeof i9.SkyInputBoxHintTextPipe, typeof i1.SkyInputBoxComponent, typeof i8.SkyInputBoxControlDirective, typeof i5.SkyFormErrorModule]>;
|
|
@@ -94,8 +94,15 @@ export declare class SkyRadioComponent implements OnDestroy, ControlValueAccesso
|
|
|
94
94
|
* The icon to display in place of the radio button. To group radio buttons like in
|
|
95
95
|
* the demo above, place the `sky-switch-icon-group` class on the direct parent element of the
|
|
96
96
|
* radio buttons.
|
|
97
|
+
* @deprecated Use `iconName` instead.
|
|
97
98
|
*/
|
|
98
99
|
icon: string | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* The SVG icon to display in place of the radio button. To group radio buttons like in
|
|
102
|
+
* the demo above, place the `sky-switch-icon-group` class on the direct parent element of the
|
|
103
|
+
* radio buttons.
|
|
104
|
+
*/
|
|
105
|
+
iconName: string | undefined;
|
|
99
106
|
/**
|
|
100
107
|
* The background color type after users select an icon radio button.
|
|
101
108
|
* The valid options correspond
|
|
@@ -156,7 +163,7 @@ export declare class SkyRadioComponent implements OnDestroy, ControlValueAccesso
|
|
|
156
163
|
onInputChange(event: Event): void;
|
|
157
164
|
onInputFocusChange(): void;
|
|
158
165
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyRadioComponent, never>;
|
|
159
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyRadioComponent, "sky-radio", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelledBy": { "alias": "labelledBy"; "required": false; }; "name": { "alias": "name"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "value": { "alias": "value"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "radioType": { "alias": "radioType"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "labelHidden": { "alias": "labelHidden"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, { "change": "change"; "checkedChange": "checkedChange"; "disabledChange": "disabledChange"; }, never, ["sky-radio-label"], false, [{ directive: typeof i1.SkyThemeComponentClassDirective; inputs: {}; outputs: {}; }]>;
|
|
166
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyRadioComponent, "sky-radio", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelledBy": { "alias": "labelledBy"; "required": false; }; "name": { "alias": "name"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "value": { "alias": "value"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "radioType": { "alias": "radioType"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "labelHidden": { "alias": "labelHidden"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, { "change": "change"; "checkedChange": "checkedChange"; "disabledChange": "disabledChange"; }, never, ["sky-radio-label"], false, [{ directive: typeof i1.SkyThemeComponentClassDirective; inputs: {}; outputs: {}; }]>;
|
|
160
167
|
static ngAcceptInputType_disabled: unknown;
|
|
161
168
|
static ngAcceptInputType_labelHidden: unknown;
|
|
162
169
|
}
|
|
@@ -11,6 +11,9 @@ import * as i9 from "@skyux/icon";
|
|
|
11
11
|
import * as i10 from "@skyux/core";
|
|
12
12
|
import * as i11 from "../shared/sky-forms-resources.module";
|
|
13
13
|
import * as i12 from "@skyux/theme";
|
|
14
|
+
/**
|
|
15
|
+
* @docsIncludeIds SkyRadioGroupComponent, SkyRadioComponent, SkyRadioLabelComponent, SkyRadioGroupHeadingLevel, SkyRadioGroupHeadingStyle, SkyRadioChange, SkyRadioType, SkyRadioGroupHarness, SkyRadioHarness
|
|
16
|
+
*/
|
|
14
17
|
export declare class SkyRadioModule {
|
|
15
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyRadioModule, never>;
|
|
16
19
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyRadioModule, [typeof i1.SkyRadioComponent, typeof i2.SkyRadioGroupComponent, typeof i3.SkyRadioLabelComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i6.SkyFormErrorModule, typeof i7.SkyFormErrorsModule, typeof i8.SkyHelpInlineModule, typeof i9.SkyIconModule, typeof i10.SkyIdModule, typeof i11.SkyFormsResourcesModule, typeof i10.SkyTrimModule, typeof i12.SkyThemeModule], [typeof i6.SkyFormErrorModule, typeof i1.SkyRadioComponent, typeof i2.SkyRadioGroupComponent, typeof i3.SkyRadioLabelComponent]>;
|
|
@@ -5,6 +5,9 @@ import * as i3 from "./selection-box-description.component";
|
|
|
5
5
|
import * as i4 from "./selection-box-header.component";
|
|
6
6
|
import * as i5 from "@angular/common";
|
|
7
7
|
import * as i6 from "@skyux/theme";
|
|
8
|
+
/**
|
|
9
|
+
* @docsIncludeIds SkySelectionBoxComponent, SkySelectionBoxHeaderComponent, SkySelectionBoxDescriptionComponent, SkySelectionBoxGridComponent
|
|
10
|
+
*/
|
|
8
11
|
export declare class SkySelectionBoxModule {
|
|
9
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkySelectionBoxModule, never>;
|
|
10
13
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkySelectionBoxModule, [typeof i1.SkySelectionBoxGridComponent, typeof i2.SkySelectionBoxComponent, typeof i3.SkySelectionBoxDescriptionComponent, typeof i4.SkySelectionBoxHeaderComponent], [typeof i5.CommonModule, typeof i6.SkyThemeModule], [typeof i1.SkySelectionBoxGridComponent, typeof i2.SkySelectionBoxComponent, typeof i3.SkySelectionBoxDescriptionComponent, typeof i4.SkySelectionBoxHeaderComponent]>;
|
|
@@ -5,6 +5,9 @@ import * as i3 from "@angular/common";
|
|
|
5
5
|
import * as i4 from "@angular/forms";
|
|
6
6
|
import * as i5 from "@skyux/help-inline";
|
|
7
7
|
import * as i6 from "@skyux/core";
|
|
8
|
+
/**
|
|
9
|
+
* @docsIncludeIds SkyToggleSwitchComponent, SkyToggleSwitchLabelComponent, SkyToggleSwitchChange
|
|
10
|
+
*/
|
|
8
11
|
export declare class SkyToggleSwitchModule {
|
|
9
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyToggleSwitchModule, never>;
|
|
10
13
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyToggleSwitchModule, [typeof i1.SkyToggleSwitchLabelComponent, typeof i2.SkyToggleSwitchComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.SkyHelpInlineModule, typeof i6.SkyIdModule, typeof i6.SkyTrimModule], [typeof i1.SkyToggleSwitchLabelComponent, typeof i2.SkyToggleSwitchComponent]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/forms",
|
|
3
|
-
"version": "12.0.0-alpha.
|
|
3
|
+
"version": "12.0.0-alpha.3",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"@angular/core": "^19.0.5",
|
|
38
38
|
"@angular/forms": "^19.0.5",
|
|
39
39
|
"@angular/platform-browser": "^19.0.5",
|
|
40
|
-
"@skyux-sdk/testing": "12.0.0-alpha.
|
|
41
|
-
"@skyux/core": "12.0.0-alpha.
|
|
42
|
-
"@skyux/help-inline": "12.0.0-alpha.
|
|
43
|
-
"@skyux/i18n": "12.0.0-alpha.
|
|
44
|
-
"@skyux/icon": "12.0.0-alpha.
|
|
45
|
-
"@skyux/indicators": "12.0.0-alpha.
|
|
46
|
-
"@skyux/popovers": "12.0.0-alpha.
|
|
47
|
-
"@skyux/theme": "12.0.0-alpha.
|
|
40
|
+
"@skyux-sdk/testing": "12.0.0-alpha.3",
|
|
41
|
+
"@skyux/core": "12.0.0-alpha.3",
|
|
42
|
+
"@skyux/help-inline": "12.0.0-alpha.3",
|
|
43
|
+
"@skyux/i18n": "12.0.0-alpha.3",
|
|
44
|
+
"@skyux/icon": "12.0.0-alpha.3",
|
|
45
|
+
"@skyux/indicators": "12.0.0-alpha.3",
|
|
46
|
+
"@skyux/popovers": "12.0.0-alpha.3",
|
|
47
|
+
"@skyux/theme": "12.0.0-alpha.3"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"tslib": "^2.8.1"
|