@skyux/forms 10.16.0 → 10.18.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.
- package/documentation.json +2752 -2483
- package/esm2022/lib/modules/field-group/field-group.component.mjs +5 -3
- package/esm2022/lib/modules/file-attachment/file-attachment.component.mjs +1 -3
- package/esm2022/lib/modules/input-box/input-box.component.mjs +7 -5
- package/esm2022/lib/modules/input-box/input-box.module.mjs +5 -5
- package/esm2022/testing/input-box/input-box-harness.mjs +27 -1
- package/fesm2022/skyux-forms-testing.mjs +26 -1
- package/fesm2022/skyux-forms-testing.mjs.map +1 -1
- package/fesm2022/skyux-forms.mjs +32 -68
- package/fesm2022/skyux-forms.mjs.map +1 -1
- package/lib/modules/field-group/field-group.component.d.ts +7 -1
- package/lib/modules/file-attachment/file-attachment.component.d.ts +0 -7
- package/lib/modules/input-box/input-box.component.d.ts +7 -1
- package/lib/modules/input-box/input-box.module.d.ts +3 -3
- package/package.json +8 -8
- package/testing/input-box/input-box-harness.d.ts +13 -0
- package/esm2022/lib/modules/input-box/input-box-help-inline.component.mjs +0 -48
- package/lib/modules/input-box/input-box-help-inline.component.d.ts +0 -17
|
@@ -51,9 +51,15 @@ export declare class SkyFieldGroupComponent {
|
|
|
51
51
|
* @preview
|
|
52
52
|
*/
|
|
53
53
|
helpPopoverTitle: string | undefined;
|
|
54
|
+
/**
|
|
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) button is
|
|
56
|
+
* placed beside the field group label. Clicking the button invokes global help as configured by the application.
|
|
57
|
+
* @preview
|
|
58
|
+
*/
|
|
59
|
+
helpKey: string | undefined;
|
|
54
60
|
protected headingClass: string;
|
|
55
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyFieldGroupComponent, never>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyFieldGroupComponent, "sky-field-group", never, { "labelText": { "alias": "labelText"; "required": true; }; "hintText": { "alias": "hintText"; "required": false; }; "labelHidden": { "alias": "labelHidden"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "headingLevel": { "alias": "headingLevel"; "required": false; }; "headingStyle": { "alias": "headingStyle"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyFieldGroupComponent, "sky-field-group", never, { "labelText": { "alias": "labelText"; "required": true; }; "hintText": { "alias": "hintText"; "required": false; }; "labelHidden": { "alias": "labelHidden"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "headingLevel": { "alias": "headingLevel"; "required": false; }; "headingStyle": { "alias": "headingStyle"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
57
63
|
static ngAcceptInputType_labelHidden: unknown;
|
|
58
64
|
static ngAcceptInputType_stacked: unknown;
|
|
59
65
|
static ngAcceptInputType_headingLevel: unknown;
|
|
@@ -32,35 +32,29 @@ export declare class SkyFileAttachmentComponent implements AfterViewInit, AfterC
|
|
|
32
32
|
* The content of the help popover. When specified along with `labelText`, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
|
|
33
33
|
* button is added to the single file attachment label. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
|
|
34
34
|
* when clicked using the specified content and optional title.
|
|
35
|
-
* @preview
|
|
36
35
|
*/
|
|
37
36
|
helpPopoverContent: string | TemplateRef<unknown> | undefined;
|
|
38
37
|
/**
|
|
39
38
|
* The title of the help popover. This property only applies when `helpPopoverContent` is
|
|
40
39
|
* also specified.
|
|
41
|
-
* @preview
|
|
42
40
|
*/
|
|
43
41
|
helpPopoverTitle: string | undefined;
|
|
44
42
|
/**
|
|
45
43
|
* A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) button is
|
|
46
44
|
* placed beside the single file attachment label. Clicking the button invokes global help as configured by the application.
|
|
47
|
-
* @preview
|
|
48
45
|
*/
|
|
49
46
|
helpKey: string | undefined;
|
|
50
47
|
/**
|
|
51
48
|
* The text to display as the file attachment's label.
|
|
52
|
-
* @preview
|
|
53
49
|
*/
|
|
54
50
|
labelText: string | undefined;
|
|
55
51
|
/**
|
|
56
52
|
* Whether to hide `labelText` from view.
|
|
57
|
-
* @preview
|
|
58
53
|
*/
|
|
59
54
|
labelHidden: boolean;
|
|
60
55
|
/**
|
|
61
56
|
* [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
|
|
62
57
|
* additional context to the user.
|
|
63
|
-
* @preview
|
|
64
58
|
*/
|
|
65
59
|
hintText: string | undefined;
|
|
66
60
|
/**
|
|
@@ -78,7 +72,6 @@ export declare class SkyFileAttachmentComponent implements AfterViewInit, AfterC
|
|
|
78
72
|
/**
|
|
79
73
|
* Whether the single file attachment is stacked on another form component. When specified,
|
|
80
74
|
* the appropriate vertical spacing is automatically added to the single file attachment.
|
|
81
|
-
* @preview
|
|
82
75
|
*/
|
|
83
76
|
stacked: boolean;
|
|
84
77
|
/**
|
|
@@ -54,6 +54,12 @@ export declare class SkyInputBoxComponent implements OnInit, AfterContentChecked
|
|
|
54
54
|
* when clicked using the specified content and optional title.
|
|
55
55
|
*/
|
|
56
56
|
helpPopoverContent: string | TemplateRef<unknown> | undefined;
|
|
57
|
+
/**
|
|
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) button is
|
|
59
|
+
* placed beside the input box label. Clicking the button invokes global help as configured by the application.
|
|
60
|
+
* @preview
|
|
61
|
+
*/
|
|
62
|
+
helpKey: string | undefined;
|
|
57
63
|
/**
|
|
58
64
|
* [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
|
|
59
65
|
* additional context to the user.
|
|
@@ -97,5 +103,5 @@ export declare class SkyInputBoxComponent implements OnInit, AfterContentChecked
|
|
|
97
103
|
setHostHintText(value: string | undefined): void;
|
|
98
104
|
setHintTextScreenReaderOnly(hide: boolean): void;
|
|
99
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyInputBoxComponent, never>;
|
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyInputBoxComponent, "sky-input-box", never, { "hasErrors": { "alias": "hasErrors"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "characterLimit": { "alias": "characterLimit"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; }, {}, ["formControl", "formControlByName", "ngModel", "inputRef"], [".sky-control-label", ".sky-control-help", "sky-character-counter-indicator", "input,select,.sky-form-control:not(textarea),sky-text-editor", "textarea", ".sky-input-group-btn.sky-input-box-btn-left", ".sky-input-group-btn:not(.sky-input-box-btn-left):not(.sky-input-box-btn-inset)", ".sky-input-group-btn.sky-input-box-btn-inset", ".sky-input-group-icon.sky-input-box-icon-inset", ".sky-input-group-icon.sky-input-box-icon-inset-left", "sky-form-error", ".sky-error-label,.sky-error-indicator"], false, never>;
|
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyInputBoxComponent, "sky-input-box", never, { "hasErrors": { "alias": "hasErrors"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "characterLimit": { "alias": "characterLimit"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpKey": { "alias": "helpKey"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; }, {}, ["formControl", "formControlByName", "ngModel", "inputRef"], [".sky-control-label", ".sky-control-help", "sky-character-counter-indicator", "input,select,.sky-form-control:not(textarea),sky-text-editor", "textarea", ".sky-input-group-btn.sky-input-box-btn-left", ".sky-input-group-btn:not(.sky-input-box-btn-left):not(.sky-input-box-btn-inset)", ".sky-input-group-btn.sky-input-box-btn-inset", ".sky-input-group-icon.sky-input-box-icon-inset", ".sky-input-group-icon.sky-input-box-icon-inset-left", "sky-form-error", ".sky-error-label,.sky-error-indicator"], false, never>;
|
|
101
107
|
}
|
|
@@ -5,12 +5,12 @@ import * as i3 from "../character-counter/character-counter.module";
|
|
|
5
5
|
import * as i4 from "../form-error/form-errors.module";
|
|
6
6
|
import * as i5 from "../form-error/form-error.module";
|
|
7
7
|
import * as i6 from "../shared/sky-forms-resources.module";
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "./input-box-
|
|
8
|
+
import * as i7 from "@skyux/help-inline";
|
|
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
12
|
export declare class SkyInputBoxModule {
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyInputBoxModule, never>;
|
|
14
|
-
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.
|
|
14
|
+
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]>;
|
|
15
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyInputBoxModule>;
|
|
16
16
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/forms",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.18.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.
|
|
45
|
-
"@skyux/core": "10.
|
|
46
|
-
"@skyux/help-inline": "10.
|
|
47
|
-
"@skyux/i18n": "10.
|
|
48
|
-
"@skyux/indicators": "10.
|
|
49
|
-
"@skyux/popovers": "10.
|
|
50
|
-
"@skyux/theme": "10.
|
|
44
|
+
"@skyux-sdk/testing": "10.18.0",
|
|
45
|
+
"@skyux/core": "10.18.0",
|
|
46
|
+
"@skyux/help-inline": "10.18.0",
|
|
47
|
+
"@skyux/i18n": "10.18.0",
|
|
48
|
+
"@skyux/indicators": "10.18.0",
|
|
49
|
+
"@skyux/popovers": "10.18.0",
|
|
50
|
+
"@skyux/theme": "10.18.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.6.2"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { HarnessPredicate } from '@angular/cdk/testing';
|
|
2
|
+
import { TemplateRef } from '@angular/core';
|
|
2
3
|
import { SkyQueryableComponentHarness } from '@skyux/core/testing';
|
|
3
4
|
import { SkyStatusIndicatorHarness } from '@skyux/indicators/testing';
|
|
4
5
|
import { SkyPopoverHarness } from '@skyux/popovers/testing';
|
|
@@ -18,6 +19,10 @@ export declare class SkyInputBoxHarness extends SkyQueryableComponentHarness {
|
|
|
18
19
|
* `SkyInputBoxHarness` that meets certain criteria.
|
|
19
20
|
*/
|
|
20
21
|
static with(filters: SkyInputBoxHarnessFilters): HarnessPredicate<SkyInputBoxHarness>;
|
|
22
|
+
/**
|
|
23
|
+
* Clicks the help inline button.
|
|
24
|
+
*/
|
|
25
|
+
clickHelpInline(): Promise<void>;
|
|
21
26
|
/**
|
|
22
27
|
* Gets the character counter indicator for the input box or throws an error if
|
|
23
28
|
* a character limit is not specified.
|
|
@@ -85,6 +90,14 @@ export declare class SkyInputBoxHarness extends SkyQueryableComponentHarness {
|
|
|
85
90
|
* the help popover is not configured.
|
|
86
91
|
*/
|
|
87
92
|
getHelpPopover(): Promise<SkyPopoverHarness>;
|
|
93
|
+
/**2
|
|
94
|
+
* Gets the help popover content.
|
|
95
|
+
*/
|
|
96
|
+
getHelpPopoverContent(): Promise<TemplateRef<unknown> | string | undefined>;
|
|
97
|
+
/**
|
|
98
|
+
* Gets the help popover title.
|
|
99
|
+
*/
|
|
100
|
+
getHelpPopoverTitle(): Promise<string | undefined>;
|
|
88
101
|
/**
|
|
89
102
|
* Gets the hint text for the input box.
|
|
90
103
|
*/
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, Input, TemplateRef, } from '@angular/core';
|
|
3
|
-
import { SkyIdModule } from '@skyux/core';
|
|
4
|
-
import { SkyI18nModule } from '@skyux/i18n';
|
|
5
|
-
import { SkyHelpInlineModule } from '@skyux/indicators';
|
|
6
|
-
import { SkyPopoverModule } from '@skyux/popovers';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
import * as i1 from "@angular/common";
|
|
9
|
-
import * as i2 from "@skyux/indicators";
|
|
10
|
-
import * as i3 from "@skyux/i18n";
|
|
11
|
-
import * as i4 from "@skyux/core";
|
|
12
|
-
import * as i5 from "@skyux/popovers";
|
|
13
|
-
/**
|
|
14
|
-
* @internal
|
|
15
|
-
*/
|
|
16
|
-
export class SkyInputBoxHelpInlineComponent {
|
|
17
|
-
get popoverContent() {
|
|
18
|
-
return this.#_popoverContent;
|
|
19
|
-
}
|
|
20
|
-
set popoverContent(value) {
|
|
21
|
-
this.#_popoverContent = value;
|
|
22
|
-
this.popoverContentTemplate =
|
|
23
|
-
value instanceof TemplateRef ? value : undefined;
|
|
24
|
-
}
|
|
25
|
-
#_popoverContent;
|
|
26
|
-
togglePopoverOpen(open) {
|
|
27
|
-
this.popoverOpen = open;
|
|
28
|
-
}
|
|
29
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.4", ngImport: i0, type: SkyInputBoxHelpInlineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
30
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.4", type: SkyInputBoxHelpInlineComponent, isStandalone: true, selector: "sky-input-box-help-inline", inputs: { labelText: "labelText", popoverTitle: "popoverTitle", popoverContent: "popoverContent" }, ngImport: i0, template: "<sky-help-inline\n [ariaControls]=\"popoverId.id\"\n [ariaExpanded]=\"popoverOpen\"\n [ariaLabel]=\"\n labelText\n ? ('skyux_input_box_help_inline_aria_label' | skyLibResources: labelText)\n : undefined\n \"\n [skyPopover]=\"helpPopover\"\n>\n</sky-help-inline>\n\n<sky-popover\n skyId\n [popoverTitle]=\"popoverTitle\"\n (popoverClosed)=\"togglePopoverOpen(false)\"\n (popoverOpened)=\"togglePopoverOpen(true)\"\n #helpPopover\n #popoverId=\"skyId\"\n>\n <ng-container *ngIf=\"popoverContentTemplate; else popoverContentText\">\n <ng-container *ngTemplateOutlet=\"popoverContentTemplate\" />\n </ng-container>\n</sky-popover>\n\n<ng-template #popoverContentText>\n {{ popoverContent }}\n</ng-template>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: SkyHelpInlineModule }, { kind: "component", type: i2.λ3, selector: "sky-help-inline", inputs: ["ariaControls", "ariaExpanded", "ariaLabel"], outputs: ["actionClick"] }, { kind: "ngmodule", type: SkyI18nModule }, { kind: "pipe", type: i3.SkyLibResourcesPipe, name: "skyLibResources" }, { kind: "ngmodule", type: SkyIdModule }, { kind: "directive", type: i4.λ2, selector: "[skyId]", exportAs: ["skyId"] }, { kind: "ngmodule", type: SkyPopoverModule }, { kind: "component", type: i5.λ6, selector: "sky-popover", inputs: ["alignment", "dismissOnBlur", "placement", "popoverTitle", "popoverType"], outputs: ["popoverClosed", "popoverOpened"] }, { kind: "directive", type: i5.λ7, selector: "[skyPopover]", inputs: ["skyPopover", "skyPopoverAlignment", "skyPopoverMessageStream", "skyPopoverPlacement", "skyPopoverTrigger"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
31
|
-
}
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.4", ngImport: i0, type: SkyInputBoxHelpInlineComponent, decorators: [{
|
|
33
|
-
type: Component,
|
|
34
|
-
args: [{ selector: 'sky-input-box-help-inline', standalone: true, imports: [
|
|
35
|
-
CommonModule,
|
|
36
|
-
SkyHelpInlineModule,
|
|
37
|
-
SkyI18nModule,
|
|
38
|
-
SkyIdModule,
|
|
39
|
-
SkyPopoverModule,
|
|
40
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<sky-help-inline\n [ariaControls]=\"popoverId.id\"\n [ariaExpanded]=\"popoverOpen\"\n [ariaLabel]=\"\n labelText\n ? ('skyux_input_box_help_inline_aria_label' | skyLibResources: labelText)\n : undefined\n \"\n [skyPopover]=\"helpPopover\"\n>\n</sky-help-inline>\n\n<sky-popover\n skyId\n [popoverTitle]=\"popoverTitle\"\n (popoverClosed)=\"togglePopoverOpen(false)\"\n (popoverOpened)=\"togglePopoverOpen(true)\"\n #helpPopover\n #popoverId=\"skyId\"\n>\n <ng-container *ngIf=\"popoverContentTemplate; else popoverContentText\">\n <ng-container *ngTemplateOutlet=\"popoverContentTemplate\" />\n </ng-container>\n</sky-popover>\n\n<ng-template #popoverContentText>\n {{ popoverContent }}\n</ng-template>\n" }]
|
|
41
|
-
}], propDecorators: { labelText: [{
|
|
42
|
-
type: Input
|
|
43
|
-
}], popoverTitle: [{
|
|
44
|
-
type: Input
|
|
45
|
-
}], popoverContent: [{
|
|
46
|
-
type: Input
|
|
47
|
-
}] } });
|
|
48
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtYm94LWhlbHAtaW5saW5lLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9mb3Jtcy9zcmMvbGliL21vZHVsZXMvaW5wdXQtYm94L2lucHV0LWJveC1oZWxwLWlubGluZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvZm9ybXMvc3JjL2xpYi9tb2R1bGVzL2lucHV0LWJveC9pbnB1dC1ib3gtaGVscC1pbmxpbmUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULEtBQUssRUFDTCxXQUFXLEdBQ1osTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGFBQWEsQ0FBQztBQUMxQyxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sYUFBYSxDQUFDO0FBQzVDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ3hELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGlCQUFpQixDQUFDOzs7Ozs7O0FBRW5EOztHQUVHO0FBY0gsTUFBTSxPQUFPLDhCQUE4QjtJQU96QyxJQUNXLGNBQWM7UUFDdkIsT0FBTyxJQUFJLENBQUMsZ0JBQWdCLENBQUM7SUFDL0IsQ0FBQztJQUVELElBQVcsY0FBYyxDQUFDLEtBQWdEO1FBQ3hFLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxLQUFLLENBQUM7UUFDOUIsSUFBSSxDQUFDLHNCQUFzQjtZQUN6QixLQUFLLFlBQVksV0FBVyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztJQUNyRCxDQUFDO0lBS0QsZ0JBQWdCLENBQTRDO0lBRWxELGlCQUFpQixDQUFDLElBQWE7UUFDdkMsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUM7SUFDMUIsQ0FBQzs4R0F6QlUsOEJBQThCO2tHQUE5Qiw4QkFBOEIseUxDNUIzQyxndUJBNEJBLDJDRFRJLFlBQVkseVNBQ1osbUJBQW1CLGdMQUNuQixhQUFhLHVHQUNiLFdBQVcsNEdBQ1gsZ0JBQWdCOzsyRkFLUCw4QkFBOEI7a0JBYjFDLFNBQVM7K0JBQ0UsMkJBQTJCLGNBQ3pCLElBQUksV0FDUDt3QkFDUCxZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsYUFBYTt3QkFDYixXQUFXO3dCQUNYLGdCQUFnQjtxQkFDakIsbUJBRWdCLHVCQUF1QixDQUFDLE1BQU07OEJBSXhDLFNBQVM7c0JBRGYsS0FBSztnQkFJQyxZQUFZO3NCQURsQixLQUFLO2dCQUlLLGNBQWM7c0JBRHhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgSW5wdXQsXG4gIFRlbXBsYXRlUmVmLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFNreUlkTW9kdWxlIH0gZnJvbSAnQHNreXV4L2NvcmUnO1xuaW1wb3J0IHsgU2t5STE4bk1vZHVsZSB9IGZyb20gJ0Bza3l1eC9pMThuJztcbmltcG9ydCB7IFNreUhlbHBJbmxpbmVNb2R1bGUgfSBmcm9tICdAc2t5dXgvaW5kaWNhdG9ycyc7XG5pbXBvcnQgeyBTa3lQb3BvdmVyTW9kdWxlIH0gZnJvbSAnQHNreXV4L3BvcG92ZXJzJztcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnc2t5LWlucHV0LWJveC1oZWxwLWlubGluZScsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgU2t5SGVscElubGluZU1vZHVsZSxcbiAgICBTa3lJMThuTW9kdWxlLFxuICAgIFNreUlkTW9kdWxlLFxuICAgIFNreVBvcG92ZXJNb2R1bGUsXG4gIF0sXG4gIHRlbXBsYXRlVXJsOiAnLi9pbnB1dC1ib3gtaGVscC1pbmxpbmUuY29tcG9uZW50Lmh0bWwnLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgU2t5SW5wdXRCb3hIZWxwSW5saW5lQ29tcG9uZW50IHtcbiAgQElucHV0KClcbiAgcHVibGljIGxhYmVsVGV4dDogc3RyaW5nIHwgdW5kZWZpbmVkO1xuXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBwb3BvdmVyVGl0bGU6IHN0cmluZyB8IHVuZGVmaW5lZDtcblxuICBASW5wdXQoKVxuICBwdWJsaWMgZ2V0IHBvcG92ZXJDb250ZW50KCk6IHN0cmluZyB8IFRlbXBsYXRlUmVmPHVua25vd24+IHwgdW5kZWZpbmVkIHtcbiAgICByZXR1cm4gdGhpcy4jX3BvcG92ZXJDb250ZW50O1xuICB9XG5cbiAgcHVibGljIHNldCBwb3BvdmVyQ29udGVudCh2YWx1ZTogc3RyaW5nIHwgVGVtcGxhdGVSZWY8dW5rbm93bj4gfCB1bmRlZmluZWQpIHtcbiAgICB0aGlzLiNfcG9wb3ZlckNvbnRlbnQgPSB2YWx1ZTtcbiAgICB0aGlzLnBvcG92ZXJDb250ZW50VGVtcGxhdGUgPVxuICAgICAgdmFsdWUgaW5zdGFuY2VvZiBUZW1wbGF0ZVJlZiA/IHZhbHVlIDogdW5kZWZpbmVkO1xuICB9XG5cbiAgcHJvdGVjdGVkIHBvcG92ZXJPcGVuOiBib29sZWFuIHwgdW5kZWZpbmVkO1xuICBwcm90ZWN0ZWQgcG9wb3ZlckNvbnRlbnRUZW1wbGF0ZTogVGVtcGxhdGVSZWY8dW5rbm93bj4gfCB1bmRlZmluZWQ7XG5cbiAgI19wb3BvdmVyQ29udGVudDogc3RyaW5nIHwgVGVtcGxhdGVSZWY8dW5rbm93bj4gfCB1bmRlZmluZWQ7XG5cbiAgcHJvdGVjdGVkIHRvZ2dsZVBvcG92ZXJPcGVuKG9wZW46IGJvb2xlYW4pOiB2b2lkIHtcbiAgICB0aGlzLnBvcG92ZXJPcGVuID0gb3BlbjtcbiAgfVxufVxuIiwiPHNreS1oZWxwLWlubGluZVxuICBbYXJpYUNvbnRyb2xzXT1cInBvcG92ZXJJZC5pZFwiXG4gIFthcmlhRXhwYW5kZWRdPVwicG9wb3Zlck9wZW5cIlxuICBbYXJpYUxhYmVsXT1cIlxuICAgIGxhYmVsVGV4dFxuICAgICAgPyAoJ3NreXV4X2lucHV0X2JveF9oZWxwX2lubGluZV9hcmlhX2xhYmVsJyB8IHNreUxpYlJlc291cmNlczogbGFiZWxUZXh0KVxuICAgICAgOiB1bmRlZmluZWRcbiAgXCJcbiAgW3NreVBvcG92ZXJdPVwiaGVscFBvcG92ZXJcIlxuPlxuPC9za3ktaGVscC1pbmxpbmU+XG5cbjxza3ktcG9wb3ZlclxuICBza3lJZFxuICBbcG9wb3ZlclRpdGxlXT1cInBvcG92ZXJUaXRsZVwiXG4gIChwb3BvdmVyQ2xvc2VkKT1cInRvZ2dsZVBvcG92ZXJPcGVuKGZhbHNlKVwiXG4gIChwb3BvdmVyT3BlbmVkKT1cInRvZ2dsZVBvcG92ZXJPcGVuKHRydWUpXCJcbiAgI2hlbHBQb3BvdmVyXG4gICNwb3BvdmVySWQ9XCJza3lJZFwiXG4+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJwb3BvdmVyQ29udGVudFRlbXBsYXRlOyBlbHNlIHBvcG92ZXJDb250ZW50VGV4dFwiPlxuICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJwb3BvdmVyQ29udGVudFRlbXBsYXRlXCIgLz5cbiAgPC9uZy1jb250YWluZXI+XG48L3NreS1wb3BvdmVyPlxuXG48bmctdGVtcGxhdGUgI3BvcG92ZXJDb250ZW50VGV4dD5cbiAge3sgcG9wb3ZlckNvbnRlbnQgfX1cbjwvbmctdGVtcGxhdGU+XG4iXX0=
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { TemplateRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
/**
|
|
4
|
-
* @internal
|
|
5
|
-
*/
|
|
6
|
-
export declare class SkyInputBoxHelpInlineComponent {
|
|
7
|
-
#private;
|
|
8
|
-
labelText: string | undefined;
|
|
9
|
-
popoverTitle: string | undefined;
|
|
10
|
-
get popoverContent(): string | TemplateRef<unknown> | undefined;
|
|
11
|
-
set popoverContent(value: string | TemplateRef<unknown> | undefined);
|
|
12
|
-
protected popoverOpen: boolean | undefined;
|
|
13
|
-
protected popoverContentTemplate: TemplateRef<unknown> | undefined;
|
|
14
|
-
protected togglePopoverOpen(open: boolean): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SkyInputBoxHelpInlineComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyInputBoxHelpInlineComponent, "sky-input-box-help-inline", never, { "labelText": { "alias": "labelText"; "required": false; }; "popoverTitle": { "alias": "popoverTitle"; "required": false; }; "popoverContent": { "alias": "popoverContent"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
-
}
|