@skyux/code-examples 12.38.1 → 12.40.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.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Component, inject, ChangeDetectionStrategy, Input, ChangeDetectorRef, ViewChild, Injectable, signal, InjectionToken } from '@angular/core';
2
+ import { Component, inject, ChangeDetectionStrategy, Input, ChangeDetectorRef, ViewChild, Injectable, signal, model, InjectionToken } from '@angular/core';
3
3
  import * as i2 from '@skyux/action-bars';
4
4
  import { SkySummaryActionBarModule } from '@skyux/action-bars';
5
5
  import * as i1 from '@skyux/indicators';
@@ -31,7 +31,7 @@ import * as i2$2 from '@skyux/forms';
31
31
  import { SkyCheckboxModule, SkyInputBoxModule, SkyCharacterCounterModule, SkyFieldGroupModule, SkyFileAttachmentModule, SkyFileDropModule, SkyRadioModule, SkySelectionBoxModule, SkyToggleSwitchModule, SkyFormErrorModule } from '@skyux/forms';
32
32
  import * as i1$6 from '@skyux/help-inline';
33
33
  import { SkyHelpInlineModule } from '@skyux/help-inline';
34
- import * as i1$c from '@angular/router';
34
+ import * as i1$d from '@angular/router';
35
35
  import { ActivatedRoute, Router, NavigationEnd, RouterModule } from '@angular/router';
36
36
  import * as i2$3 from '@skyux/lists';
37
37
  import { SkyPagingModule, SkyRepeaterModule, SkyInfiniteScrollModule, SkyFilterModule, SkySortModule } from '@skyux/lists';
@@ -54,6 +54,8 @@ import * as i3$4 from '@skyux/datetime';
54
54
  import { SkyDatePipeModule, SkyDateRangeCalculatorId, SkyDateRangePickerModule, SkyDateRangeService, SkyDateRangeCalculatorType, SkyDatepickerModule, SkyTimepickerModule } from '@skyux/datetime';
55
55
  import * as i1$b from '@skyux/errors';
56
56
  import { SkyErrorModule, SkyErrorModalService } from '@skyux/errors';
57
+ import * as i1$c from '@skyux/filter-bar';
58
+ import { SkyFilterItemModalInstance, SkyFilterBarModule } from '@skyux/filter-bar';
57
59
  import { SkyFlyoutService } from '@skyux/flyout';
58
60
  import * as i2$8 from '@skyux/validation';
59
61
  import { SkyValidators, SkyEmailValidationModule, SkyUrlValidationModule } from '@skyux/validation';
@@ -61,17 +63,17 @@ import * as i3$5 from '@skyux/inline-form';
61
63
  import { SkyInlineFormButtonLayout, SkyInlineFormModule } from '@skyux/inline-form';
62
64
  import * as i3$6 from '@skyux/navbar';
63
65
  import { SkyNavbarModule } from '@skyux/navbar';
64
- import * as i1$d from '@skyux/pages';
66
+ import * as i1$e from '@skyux/pages';
65
67
  import { SkyActionHubModule, SkyPageModule as SkyPageModule$1 } from '@skyux/pages';
66
- import * as i1$e from '@skyux/tiles';
68
+ import * as i1$f from '@skyux/tiles';
67
69
  import { SkyTilesModule } from '@skyux/tiles';
68
70
  import * as i5 from '@skyux/split-view';
69
71
  import { SkySplitViewMessageType, SkySplitViewModule } from '@skyux/split-view';
70
72
  import * as i3$7 from '@skyux/phone-field';
71
73
  import { SkyPhoneFieldModule } from '@skyux/phone-field';
72
- import * as i1$f from '@skyux/progress-indicator';
74
+ import * as i1$g from '@skyux/progress-indicator';
73
75
  import { SkyProgressIndicatorModule, SkyProgressIndicatorMessageType } from '@skyux/progress-indicator';
74
- import * as i1$g from '@skyux/router';
76
+ import * as i1$h from '@skyux/router';
75
77
  import { SkyHrefModule } from '@skyux/router';
76
78
  import * as i2$7 from '@skyux/text-editor';
77
79
  import { SkyTextEditorModule, SkyRichTextDisplayModule } from '@skyux/text-editor';
@@ -6271,6 +6273,302 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
6271
6273
  args: [{ standalone: true, selector: 'app-errors-error-modal-example', template: "<button\n class=\"sky-btn sky-btn-default\"\n type=\"button\"\n (click)=\"openErrorModal()\"\n>\n Open error modal\n</button>\n" }]
6272
6274
  }] });
6273
6275
 
6276
+ class CommunityConnectionFilterModalComponent {
6277
+ constructor() {
6278
+ this.modalInstance = inject(SkyFilterItemModalInstance);
6279
+ this.#context = this.modalInstance.context;
6280
+ this.#formBuilder = inject(FormBuilder);
6281
+ this.headingText = this.#context.filterLabelText;
6282
+ this.items = this.#context.additionalContext.items;
6283
+ this.selectedValue = this.#context.filterValue;
6284
+ this.formGroup = this.#formBuilder.group({
6285
+ selectedOption: this.#formBuilder.control(this.selectedValue?.value),
6286
+ });
6287
+ }
6288
+ #context;
6289
+ #formBuilder;
6290
+ save() {
6291
+ const selectedValue = this.formGroup.get('selectedOption')?.value;
6292
+ if (selectedValue) {
6293
+ // Map the primitive value back to the full object
6294
+ const selectedItem = this.items.find((item) => item.value === selectedValue);
6295
+ this.modalInstance.save({ filterValue: selectedItem });
6296
+ }
6297
+ else {
6298
+ this.modalInstance.save({ filterValue: undefined });
6299
+ }
6300
+ }
6301
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: CommunityConnectionFilterModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6302
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: CommunityConnectionFilterModalComponent, isStandalone: true, selector: "app-community-connection-filter-modal", ngImport: i0, template: "<form class=\"filter-modal-demo-form\" novalidate [formGroup]=\"formGroup\">\n <sky-modal [headingText]=\"headingText\">\n <sky-modal-content>\n <sky-input-box [labelText]=\"headingText\">\n <select formControlName=\"selectedOption\" class=\"sky-form-control\">\n <option [value]=\"null\">-- Select an option --</option>\n @for (item of items; track item.value) {\n <option [value]=\"item.value\">\n {{ item.displayValue }}\n </option>\n }\n </select>\n </sky-input-box>\n </sky-modal-content>\n <sky-modal-footer>\n <button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"save()\">\n Save\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"modalInstance.cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n </sky-modal>\n</form>\n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: SkyInputBoxModule }, { kind: "component", type: i2$2.λ10, selector: "sky-input-box", inputs: ["hasErrors", "disabled", "labelText", "characterLimit", "stacked", "helpPopoverTitle", "helpPopoverContent", "helpKey", "hintText"] }, { kind: "ngmodule", type: SkyModalModule }, { kind: "component", type: i3.λ5, selector: "sky-modal", inputs: ["formErrors", "headingText", "helpKey", "helpPopoverContent", "helpPopoverTitle", "ariaRole", "tiledBody", "ariaDescribedBy", "ariaLabelledBy", "layout"] }, { kind: "component", type: i3.λ2, selector: "sky-modal-content" }, { kind: "component", type: i3.λ3, selector: "sky-modal-footer" }, { kind: "ngmodule", type: SkyRepeaterModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6303
+ }
6304
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: CommunityConnectionFilterModalComponent, decorators: [{
6305
+ type: Component,
6306
+ args: [{ selector: 'app-community-connection-filter-modal', imports: [
6307
+ FormsModule,
6308
+ ReactiveFormsModule,
6309
+ SkyInputBoxModule,
6310
+ SkyModalModule,
6311
+ SkyRepeaterModule,
6312
+ ], changeDetection: ChangeDetectionStrategy.OnPush, template: "<form class=\"filter-modal-demo-form\" novalidate [formGroup]=\"formGroup\">\n <sky-modal [headingText]=\"headingText\">\n <sky-modal-content>\n <sky-input-box [labelText]=\"headingText\">\n <select formControlName=\"selectedOption\" class=\"sky-form-control\">\n <option [value]=\"null\">-- Select an option --</option>\n @for (item of items; track item.value) {\n <option [value]=\"item.value\">\n {{ item.displayValue }}\n </option>\n }\n </select>\n </sky-input-box>\n </sky-modal-content>\n <sky-modal-footer>\n <button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"save()\">\n Save\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"modalInstance.cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n </sky-modal>\n</form>\n" }]
6313
+ }] });
6314
+
6315
+ class CurrentGradeFilterModalComponent {
6316
+ constructor() {
6317
+ this.modalInstance = inject(SkyFilterItemModalInstance);
6318
+ this.#context = this.modalInstance.context;
6319
+ this.#formBuilder = inject(FormBuilder);
6320
+ this.headingText = this.#context.filterLabelText;
6321
+ this.items = this.#context.additionalContext.items;
6322
+ this.selectedValue = this.#context.filterValue;
6323
+ this.formGroup = this.#formBuilder.group({
6324
+ selectedOption: this.#formBuilder.control(this.selectedValue?.value),
6325
+ });
6326
+ }
6327
+ #context;
6328
+ #formBuilder;
6329
+ save() {
6330
+ const selectedValue = this.formGroup.get('selectedOption')?.value;
6331
+ if (selectedValue) {
6332
+ const selectedItem = this.items.find((item) => item.value === selectedValue);
6333
+ this.modalInstance.save({ filterValue: selectedItem });
6334
+ }
6335
+ else {
6336
+ this.modalInstance.save({ filterValue: undefined });
6337
+ }
6338
+ }
6339
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: CurrentGradeFilterModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6340
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: CurrentGradeFilterModalComponent, isStandalone: true, selector: "app-current-grade-filter-modal", ngImport: i0, template: "<form class=\"filter-modal-demo-form\" novalidate [formGroup]=\"formGroup\">\n <sky-modal [headingText]=\"headingText\">\n <sky-modal-content>\n <sky-input-box [labelText]=\"headingText\">\n <select formControlName=\"selectedOption\" class=\"sky-form-control\">\n <option [value]=\"null\">-- Select an option --</option>\n @for (item of items; track item.value) {\n <option [value]=\"item.value\">\n {{ item.displayValue }}\n </option>\n }\n </select>\n </sky-input-box>\n </sky-modal-content>\n <sky-modal-footer>\n <button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"save()\">\n Save\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"modalInstance.cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n </sky-modal>\n</form>\n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: SkyInputBoxModule }, { kind: "component", type: i2$2.λ10, selector: "sky-input-box", inputs: ["hasErrors", "disabled", "labelText", "characterLimit", "stacked", "helpPopoverTitle", "helpPopoverContent", "helpKey", "hintText"] }, { kind: "ngmodule", type: SkyModalModule }, { kind: "component", type: i3.λ5, selector: "sky-modal", inputs: ["formErrors", "headingText", "helpKey", "helpPopoverContent", "helpPopoverTitle", "ariaRole", "tiledBody", "ariaDescribedBy", "ariaLabelledBy", "layout"] }, { kind: "component", type: i3.λ2, selector: "sky-modal-content" }, { kind: "component", type: i3.λ3, selector: "sky-modal-footer" }, { kind: "ngmodule", type: SkyRepeaterModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6341
+ }
6342
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: CurrentGradeFilterModalComponent, decorators: [{
6343
+ type: Component,
6344
+ args: [{ selector: 'app-current-grade-filter-modal', imports: [
6345
+ FormsModule,
6346
+ ReactiveFormsModule,
6347
+ SkyInputBoxModule,
6348
+ SkyModalModule,
6349
+ SkyRepeaterModule,
6350
+ ], changeDetection: ChangeDetectionStrategy.OnPush, template: "<form class=\"filter-modal-demo-form\" novalidate [formGroup]=\"formGroup\">\n <sky-modal [headingText]=\"headingText\">\n <sky-modal-content>\n <sky-input-box [labelText]=\"headingText\">\n <select formControlName=\"selectedOption\" class=\"sky-form-control\">\n <option [value]=\"null\">-- Select an option --</option>\n @for (item of items; track item.value) {\n <option [value]=\"item.value\">\n {{ item.displayValue }}\n </option>\n }\n </select>\n </sky-input-box>\n </sky-modal-content>\n <sky-modal-footer>\n <button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"save()\">\n Save\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"modalInstance.cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n </sky-modal>\n</form>\n" }]
6351
+ }] });
6352
+
6353
+ class EnteringGradeFilterModalComponent {
6354
+ constructor() {
6355
+ this.modalInstance = inject(SkyFilterItemModalInstance);
6356
+ this.#context = this.modalInstance.context;
6357
+ this.#formBuilder = inject(FormBuilder);
6358
+ this.headingText = this.#context.filterLabelText;
6359
+ this.items = this.#context.additionalContext.items;
6360
+ this.selectedValue = this.#context.filterValue;
6361
+ this.formGroup = this.#formBuilder.group({
6362
+ selectedOption: this.#formBuilder.control(this.selectedValue?.value),
6363
+ });
6364
+ }
6365
+ #context;
6366
+ #formBuilder;
6367
+ save() {
6368
+ const selectedValue = this.formGroup.get('selectedOption')?.value;
6369
+ if (selectedValue) {
6370
+ const selectedItem = this.items.find((item) => item.value === selectedValue);
6371
+ this.modalInstance.save({ filterValue: selectedItem });
6372
+ }
6373
+ else {
6374
+ this.modalInstance.save({ filterValue: undefined });
6375
+ }
6376
+ }
6377
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: EnteringGradeFilterModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6378
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: EnteringGradeFilterModalComponent, isStandalone: true, selector: "app-entering-grade-filter-modal", ngImport: i0, template: "<form class=\"filter-modal-demo-form\" novalidate [formGroup]=\"formGroup\">\n <sky-modal [headingText]=\"headingText\">\n <sky-modal-content>\n <sky-input-box [labelText]=\"headingText\">\n <select formControlName=\"selectedOption\" class=\"sky-form-control\">\n <option [value]=\"null\">-- Select an option --</option>\n @for (item of items; track item.value) {\n <option [value]=\"item.value\">\n {{ item.displayValue }}\n </option>\n }\n </select>\n </sky-input-box>\n </sky-modal-content>\n <sky-modal-footer>\n <button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"save()\">\n Save\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"modalInstance.cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n </sky-modal>\n</form>\n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: SkyInputBoxModule }, { kind: "component", type: i2$2.λ10, selector: "sky-input-box", inputs: ["hasErrors", "disabled", "labelText", "characterLimit", "stacked", "helpPopoverTitle", "helpPopoverContent", "helpKey", "hintText"] }, { kind: "ngmodule", type: SkyModalModule }, { kind: "component", type: i3.λ5, selector: "sky-modal", inputs: ["formErrors", "headingText", "helpKey", "helpPopoverContent", "helpPopoverTitle", "ariaRole", "tiledBody", "ariaDescribedBy", "ariaLabelledBy", "layout"] }, { kind: "component", type: i3.λ2, selector: "sky-modal-content" }, { kind: "component", type: i3.λ3, selector: "sky-modal-footer" }, { kind: "ngmodule", type: SkyRepeaterModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6379
+ }
6380
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: EnteringGradeFilterModalComponent, decorators: [{
6381
+ type: Component,
6382
+ args: [{ selector: 'app-entering-grade-filter-modal', imports: [
6383
+ FormsModule,
6384
+ ReactiveFormsModule,
6385
+ SkyInputBoxModule,
6386
+ SkyModalModule,
6387
+ SkyRepeaterModule,
6388
+ ], changeDetection: ChangeDetectionStrategy.OnPush, template: "<form class=\"filter-modal-demo-form\" novalidate [formGroup]=\"formGroup\">\n <sky-modal [headingText]=\"headingText\">\n <sky-modal-content>\n <sky-input-box [labelText]=\"headingText\">\n <select formControlName=\"selectedOption\" class=\"sky-form-control\">\n <option [value]=\"null\">-- Select an option --</option>\n @for (item of items; track item.value) {\n <option [value]=\"item.value\">\n {{ item.displayValue }}\n </option>\n }\n </select>\n </sky-input-box>\n </sky-modal-content>\n <sky-modal-footer>\n <button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"save()\">\n Save\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"modalInstance.cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n </sky-modal>\n</form>\n" }]
6389
+ }] });
6390
+
6391
+ class RoleFilterModalComponent {
6392
+ constructor() {
6393
+ this.modalInstance = inject(SkyFilterItemModalInstance);
6394
+ this.#context = this.modalInstance.context;
6395
+ this.#formBuilder = inject(FormBuilder);
6396
+ this.headingText = this.#context.filterLabelText;
6397
+ this.items = this.#context.additionalContext.items;
6398
+ this.selectedValue = this.#context.filterValue;
6399
+ this.formGroup = this.#formBuilder.group({
6400
+ selectedOption: this.#formBuilder.control(this.selectedValue?.value),
6401
+ });
6402
+ }
6403
+ #context;
6404
+ #formBuilder;
6405
+ save() {
6406
+ const selectedValue = this.formGroup.get('selectedOption')?.value;
6407
+ if (selectedValue) {
6408
+ const selectedItem = this.items.find((item) => item.value === selectedValue);
6409
+ this.modalInstance.save({ filterValue: selectedItem });
6410
+ }
6411
+ else {
6412
+ this.modalInstance.save({ filterValue: undefined });
6413
+ }
6414
+ }
6415
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: RoleFilterModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6416
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: RoleFilterModalComponent, isStandalone: true, selector: "app-role-filter-modal", ngImport: i0, template: "<form class=\"filter-modal-demo-form\" novalidate [formGroup]=\"formGroup\">\n <sky-modal [headingText]=\"headingText\">\n <sky-modal-content>\n <sky-input-box [labelText]=\"headingText\">\n <select formControlName=\"selectedOption\" class=\"sky-form-control\">\n <option [value]=\"null\">-- Select an option --</option>\n @for (item of items; track item.value) {\n <option [value]=\"item.value\">\n {{ item.displayValue }}\n </option>\n }\n </select>\n </sky-input-box>\n </sky-modal-content>\n <sky-modal-footer>\n <button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"save()\">\n Save\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"modalInstance.cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n </sky-modal>\n</form>\n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: SkyInputBoxModule }, { kind: "component", type: i2$2.λ10, selector: "sky-input-box", inputs: ["hasErrors", "disabled", "labelText", "characterLimit", "stacked", "helpPopoverTitle", "helpPopoverContent", "helpKey", "hintText"] }, { kind: "ngmodule", type: SkyModalModule }, { kind: "component", type: i3.λ5, selector: "sky-modal", inputs: ["formErrors", "headingText", "helpKey", "helpPopoverContent", "helpPopoverTitle", "ariaRole", "tiledBody", "ariaDescribedBy", "ariaLabelledBy", "layout"] }, { kind: "component", type: i3.λ2, selector: "sky-modal-content" }, { kind: "component", type: i3.λ3, selector: "sky-modal-footer" }, { kind: "ngmodule", type: SkyRepeaterModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6417
+ }
6418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: RoleFilterModalComponent, decorators: [{
6419
+ type: Component,
6420
+ args: [{ selector: 'app-role-filter-modal', imports: [
6421
+ FormsModule,
6422
+ ReactiveFormsModule,
6423
+ SkyInputBoxModule,
6424
+ SkyModalModule,
6425
+ SkyRepeaterModule,
6426
+ ], changeDetection: ChangeDetectionStrategy.OnPush, template: "<form class=\"filter-modal-demo-form\" novalidate [formGroup]=\"formGroup\">\n <sky-modal [headingText]=\"headingText\">\n <sky-modal-content>\n <sky-input-box [labelText]=\"headingText\">\n <select formControlName=\"selectedOption\" class=\"sky-form-control\">\n <option [value]=\"null\">-- Select an option --</option>\n @for (item of items; track item.value) {\n <option [value]=\"item.value\">\n {{ item.displayValue }}\n </option>\n }\n </select>\n </sky-input-box>\n </sky-modal-content>\n <sky-modal-footer>\n <button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"save()\">\n Save\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"modalInstance.cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n </sky-modal>\n</form>\n" }]
6427
+ }] });
6428
+
6429
+ class StaffAssignedFilterModalComponent {
6430
+ constructor() {
6431
+ this.modalInstance = inject(SkyFilterItemModalInstance);
6432
+ this.#context = this.modalInstance.context;
6433
+ this.#formBuilder = inject(FormBuilder);
6434
+ this.headingText = this.#context.filterLabelText;
6435
+ this.items = this.#context.additionalContext.items;
6436
+ this.selectedValue = this.#context.filterValue;
6437
+ this.formGroup = this.#formBuilder.group({
6438
+ selectedOption: this.#formBuilder.control(this.selectedValue?.value),
6439
+ });
6440
+ }
6441
+ #context;
6442
+ #formBuilder;
6443
+ save() {
6444
+ const selectedValue = this.formGroup.get('selectedOption')?.value;
6445
+ if (selectedValue) {
6446
+ const selectedItem = this.items.find((item) => item.value === selectedValue);
6447
+ this.modalInstance.save({ filterValue: selectedItem });
6448
+ }
6449
+ else {
6450
+ this.modalInstance.save({ filterValue: undefined });
6451
+ }
6452
+ }
6453
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: StaffAssignedFilterModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6454
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: StaffAssignedFilterModalComponent, isStandalone: true, selector: "app-staff-assigned-filter-modal", ngImport: i0, template: "<form class=\"filter-modal-demo-form\" novalidate [formGroup]=\"formGroup\">\n <sky-modal [headingText]=\"headingText\">\n <sky-modal-content>\n <sky-input-box [labelText]=\"headingText\">\n <select formControlName=\"selectedOption\" class=\"sky-form-control\">\n <option [value]=\"null\">-- Select an option --</option>\n @for (item of items; track item.value) {\n <option [value]=\"item.value\">\n {{ item.displayValue }}\n </option>\n }\n </select>\n </sky-input-box>\n </sky-modal-content>\n <sky-modal-footer>\n <button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"save()\">\n Save\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"modalInstance.cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n </sky-modal>\n</form>\n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: SkyInputBoxModule }, { kind: "component", type: i2$2.λ10, selector: "sky-input-box", inputs: ["hasErrors", "disabled", "labelText", "characterLimit", "stacked", "helpPopoverTitle", "helpPopoverContent", "helpKey", "hintText"] }, { kind: "ngmodule", type: SkyModalModule }, { kind: "component", type: i3.λ5, selector: "sky-modal", inputs: ["formErrors", "headingText", "helpKey", "helpPopoverContent", "helpPopoverTitle", "ariaRole", "tiledBody", "ariaDescribedBy", "ariaLabelledBy", "layout"] }, { kind: "component", type: i3.λ2, selector: "sky-modal-content" }, { kind: "component", type: i3.λ3, selector: "sky-modal-footer" }, { kind: "ngmodule", type: SkyRepeaterModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6455
+ }
6456
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: StaffAssignedFilterModalComponent, decorators: [{
6457
+ type: Component,
6458
+ args: [{ selector: 'app-staff-assigned-filter-modal', imports: [
6459
+ FormsModule,
6460
+ ReactiveFormsModule,
6461
+ SkyInputBoxModule,
6462
+ SkyModalModule,
6463
+ SkyRepeaterModule,
6464
+ ], changeDetection: ChangeDetectionStrategy.OnPush, template: "<form class=\"filter-modal-demo-form\" novalidate [formGroup]=\"formGroup\">\n <sky-modal [headingText]=\"headingText\">\n <sky-modal-content>\n <sky-input-box [labelText]=\"headingText\">\n <select formControlName=\"selectedOption\" class=\"sky-form-control\">\n <option [value]=\"null\">-- Select an option --</option>\n @for (item of items; track item.value) {\n <option [value]=\"item.value\">\n {{ item.displayValue }}\n </option>\n }\n </select>\n </sky-input-box>\n </sky-modal-content>\n <sky-modal-footer>\n <button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"save()\">\n Save\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"modalInstance.cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n </sky-modal>\n</form>\n" }]
6465
+ }] });
6466
+
6467
+ // eslint-disable @cspell/spellchecker
6468
+ const FILTER_SELECTION_VALUES = {
6469
+ 'community-connection': [
6470
+ { value: 'child-of-faculty', displayValue: 'Child of faculty' },
6471
+ { value: 'child-of-alum', displayValue: 'Child of alum' },
6472
+ { value: 'grandparent-is-alum', displayValue: 'Grandchild of alum' },
6473
+ { value: 'related-to-trustee', displayValue: 'Related to trustee' },
6474
+ { value: 'sibling-candidate', displayValue: 'Sibling is candidate' },
6475
+ {
6476
+ value: 'sibling-past-candidate',
6477
+ displayValue: 'Sibling is past candidate',
6478
+ },
6479
+ { value: 'sibling-student', displayValue: 'Sibling is student' },
6480
+ { value: 'sibling alum', displayValue: 'Sibling is alum' },
6481
+ {
6482
+ value: 'sibling-incoming',
6483
+ displayValue: 'Sibling is incoming student',
6484
+ },
6485
+ ],
6486
+ 'current-grade': [
6487
+ { value: 'pre-k', displayValue: 'Pre-k' },
6488
+ { value: 'kindergarten', displayValue: 'Kindergarten' },
6489
+ { value: 'grade-1', displayValue: '1st grade' },
6490
+ { value: 'grade-2', displayValue: '2nd grade' },
6491
+ { value: 'grade-3', displayValue: '3rd grade' },
6492
+ { value: 'grade-4', displayValue: '4th grade' },
6493
+ { value: 'grade-5', displayValue: '5th grade' },
6494
+ { value: 'grade-6', displayValue: '6th grade' },
6495
+ { value: 'grade-7', displayValue: '7th grade' },
6496
+ { value: 'grade-8', displayValue: '8th grade' },
6497
+ { value: 'grade-9', displayValue: '9th grade' },
6498
+ { value: 'grade-10', displayValue: '10th grade' },
6499
+ { value: 'grade-11', displayValue: '11th grade' },
6500
+ { value: 'grade-12', displayValue: '12th grade' },
6501
+ ],
6502
+ 'entering-grade': [
6503
+ { value: 'pre-k', displayValue: 'Pre-k' },
6504
+ { value: 'kindergarten', displayValue: 'Kindergarten' },
6505
+ { value: 'grade-1', displayValue: '1st grade' },
6506
+ { value: 'grade-2', displayValue: '2nd grade' },
6507
+ { value: 'grade-3', displayValue: '3rd grade' },
6508
+ { value: 'grade-4', displayValue: '4th grade' },
6509
+ { value: 'grade-5', displayValue: '5th grade' },
6510
+ { value: 'grade-6', displayValue: '6th grade' },
6511
+ { value: 'grade-7', displayValue: '7th grade' },
6512
+ { value: 'grade-8', displayValue: '8th grade' },
6513
+ { value: 'grade-9', displayValue: '9th grade' },
6514
+ { value: 'grade-10', displayValue: '10th grade' },
6515
+ { value: 'grade-11', displayValue: '11th grade' },
6516
+ { value: 'grade-12', displayValue: '12th grade' },
6517
+ ],
6518
+ role: [
6519
+ { value: 'candidate', displayValue: 'Candidate' },
6520
+ { value: 'incoming-student', displayValue: 'Incoming student' },
6521
+ { value: 'student', displayValue: 'Student' },
6522
+ ],
6523
+ 'staff-assigned': [
6524
+ { value: '1', displayValue: 'Solomon Hurley' },
6525
+ { value: '2', displayValue: 'Kanesha Hutto' },
6526
+ { value: '3', displayValue: 'Darcel Lenz' },
6527
+ { value: '4', displayValue: 'Cheyenne Lightfoot' },
6528
+ { value: '5', displayValue: 'Jack Lovett' },
6529
+ { value: '6', displayValue: 'Wonda Lumpkin' },
6530
+ { value: '7', displayValue: 'Kristeen Lunsford' },
6531
+ { value: '8', displayValue: 'Clarice Overton' },
6532
+ { value: '9', displayValue: 'Martine Rocha' },
6533
+ { value: '10', displayValue: 'Tonja Sanderson' },
6534
+ { value: '11', displayValue: 'Molly Seymour' },
6535
+ { value: '12', displayValue: 'Ed Sipes' },
6536
+ { value: '13', displayValue: 'Cristen Sizemore' },
6537
+ { value: '14', displayValue: 'Rod Tomlinson' },
6538
+ { value: '15', displayValue: 'Eliza Vanhorn' },
6539
+ { value: '16', displayValue: 'Jessy Witherspoon' },
6540
+ { value: '17', displayValue: 'Ilene Woo' },
6541
+ ],
6542
+ };
6543
+
6544
+ /**
6545
+ * @title Filter bar basic example
6546
+ */
6547
+ class FilterBarBasicExampleComponent {
6548
+ constructor() {
6549
+ this.appliedFilters = model();
6550
+ this.selectedFilterIds = model([
6551
+ 'staff-assigned',
6552
+ 'entering-grade',
6553
+ 'current-grade',
6554
+ ]);
6555
+ this.communityConnectionModal = CommunityConnectionFilterModalComponent;
6556
+ this.currentGradeModal = CurrentGradeFilterModalComponent;
6557
+ this.enteringGradeModal = EnteringGradeFilterModalComponent;
6558
+ this.roleModal = RoleFilterModalComponent;
6559
+ this.staffAssignedModal = StaffAssignedFilterModalComponent;
6560
+ }
6561
+ onModalOpened(args) {
6562
+ args.data = of({ items: FILTER_SELECTION_VALUES[args.filterId] });
6563
+ }
6564
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: FilterBarBasicExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6565
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.14", type: FilterBarBasicExampleComponent, isStandalone: true, selector: "app-filter-bar-basic-example", inputs: { appliedFilters: { classPropertyName: "appliedFilters", publicName: "appliedFilters", isSignal: true, isRequired: false, transformFunction: null }, selectedFilterIds: { classPropertyName: "selectedFilterIds", publicName: "selectedFilterIds", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { appliedFilters: "appliedFiltersChange", selectedFilterIds: "selectedFilterIdsChange" }, ngImport: i0, template: "<sky-filter-bar\n [(appliedFilters)]=\"appliedFilters\"\n [(selectedFilterIds)]=\"selectedFilterIds\"\n>\n <sky-filter-item-modal\n filterId=\"community-connection\"\n labelText=\"Community connection\"\n modalSize=\"medium\"\n [modalComponent]=\"communityConnectionModal\"\n (modalOpened)=\"onModalOpened($event)\"\n />\n <sky-filter-item-modal\n filterId=\"current-grade\"\n labelText=\"Current grade\"\n modalSize=\"medium\"\n [modalComponent]=\"currentGradeModal\"\n (modalOpened)=\"onModalOpened($event)\"\n />\n <sky-filter-item-modal\n filterId=\"entering-grade\"\n labelText=\"Entering grade\"\n modalSize=\"medium\"\n [modalComponent]=\"enteringGradeModal\"\n (modalOpened)=\"onModalOpened($event)\"\n />\n <sky-filter-item-modal\n filterId=\"role\"\n labelText=\"Role\"\n modalSize=\"medium\"\n [modalComponent]=\"roleModal\"\n (modalOpened)=\"onModalOpened($event)\"\n />\n <sky-filter-item-modal\n filterId=\"staff-assigned\"\n labelText=\"Staff assigned\"\n modalSize=\"medium\"\n [modalComponent]=\"staffAssignedModal\"\n (modalOpened)=\"onModalOpened($event)\"\n />\n</sky-filter-bar>\n", dependencies: [{ kind: "ngmodule", type: SkyFilterBarModule }, { kind: "component", type: i1$c.λ1, selector: "sky-filter-bar", inputs: ["appliedFilters", "selectedFilterIds"], outputs: ["appliedFiltersChange", "selectedFilterIdsChange"] }, { kind: "component", type: i1$c.λ2, selector: "sky-filter-item-modal", inputs: ["filterId", "labelText", "modalComponent", "modalSize"], outputs: ["modalOpened"] }] }); }
6566
+ }
6567
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: FilterBarBasicExampleComponent, decorators: [{
6568
+ type: Component,
6569
+ args: [{ selector: 'app-filter-bar-basic-example', imports: [SkyFilterBarModule], template: "<sky-filter-bar\n [(appliedFilters)]=\"appliedFilters\"\n [(selectedFilterIds)]=\"selectedFilterIds\"\n>\n <sky-filter-item-modal\n filterId=\"community-connection\"\n labelText=\"Community connection\"\n modalSize=\"medium\"\n [modalComponent]=\"communityConnectionModal\"\n (modalOpened)=\"onModalOpened($event)\"\n />\n <sky-filter-item-modal\n filterId=\"current-grade\"\n labelText=\"Current grade\"\n modalSize=\"medium\"\n [modalComponent]=\"currentGradeModal\"\n (modalOpened)=\"onModalOpened($event)\"\n />\n <sky-filter-item-modal\n filterId=\"entering-grade\"\n labelText=\"Entering grade\"\n modalSize=\"medium\"\n [modalComponent]=\"enteringGradeModal\"\n (modalOpened)=\"onModalOpened($event)\"\n />\n <sky-filter-item-modal\n filterId=\"role\"\n labelText=\"Role\"\n modalSize=\"medium\"\n [modalComponent]=\"roleModal\"\n (modalOpened)=\"onModalOpened($event)\"\n />\n <sky-filter-item-modal\n filterId=\"staff-assigned\"\n labelText=\"Staff assigned\"\n modalSize=\"medium\"\n [modalComponent]=\"staffAssignedModal\"\n (modalOpened)=\"onModalOpened($event)\"\n />\n</sky-filter-bar>\n" }]
6570
+ }] });
6571
+
6274
6572
  let FlyoutComponent$1 = class FlyoutComponent {
6275
6573
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: FlyoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6276
6574
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: FlyoutComponent, isStandalone: true, selector: "app-flyout", ngImport: i0, template: `
@@ -7368,6 +7666,9 @@ class IllustrationDemoResolverService extends SkyIllustrationResolverService {
7368
7666
  : '';
7369
7667
  return Promise.resolve(url);
7370
7668
  }
7669
+ async resolveHref() {
7670
+ return await Promise.resolve('');
7671
+ }
7371
7672
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: IllustrationDemoResolverService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
7372
7673
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: IllustrationDemoResolverService }); }
7373
7674
  }
@@ -11499,7 +11800,7 @@ class NavbarExampleComponent {
11499
11800
  alert(buttonText + ' button clicked!');
11500
11801
  }
11501
11802
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NavbarExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
11502
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: NavbarExampleComponent, isStandalone: true, selector: "app-navbar-example", ngImport: i0, template: "<sky-navbar data-sky-id=\"basic-navbar\">\n <sky-navbar-item data-sky-id=\"navbar-item-1\">\n <a\n routerLink=\"/\"\n routerLinkActive=\"sky-navbar-item-active\"\n (click)=\"onItemClick('Selected item')\"\n >\n Selected item\n </a>\n </sky-navbar-item>\n <sky-navbar-item data-sky-id=\"navbar-item-2\">\n <sky-dropdown>\n <sky-dropdown-button> Show dropdown </sky-dropdown-button>\n <sky-dropdown-menu>\n <sky-dropdown-item>\n <a routerLink=\"/\" (click)=\"onItemClick('Item 1')\"> Item 1 </a>\n </sky-dropdown-item>\n <sky-dropdown-item>\n <a routerLink=\"/\" (click)=\"onItemClick('Item 2')\"> Item 2 </a>\n </sky-dropdown-item>\n <sky-dropdown-item>\n <a routerLink=\"/\" (click)=\"onItemClick('Item 3')\"> Item 3 </a>\n </sky-dropdown-item>\n </sky-dropdown-menu>\n </sky-dropdown>\n </sky-navbar-item>\n</sky-navbar>\n", dependencies: [{ kind: "ngmodule", type: RouterModule }, { kind: "directive", type: i1$c.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i1$c.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "ngmodule", type: SkyDropdownModule }, { kind: "component", type: i1$3.λ2, selector: "sky-dropdown-button" }, { kind: "component", type: i1$3.λ3, selector: "sky-dropdown", inputs: ["buttonStyle", "buttonType", "disabled", "label", "horizontalAlignment", "messageStream", "title", "trigger"] }, { kind: "component", type: i1$3.λ1, selector: "sky-dropdown-item", inputs: ["ariaRole"] }, { kind: "component", type: i1$3.λ4, selector: "sky-dropdown-menu", inputs: ["ariaLabelledBy", "ariaRole", "useNativeFocus"], outputs: ["menuChanges"] }, { kind: "ngmodule", type: SkyNavbarModule }, { kind: "component", type: i3$6.λ1, selector: "sky-navbar" }, { kind: "component", type: i3$6.λ2, selector: "sky-navbar-item", inputs: ["active"] }] }); }
11803
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: NavbarExampleComponent, isStandalone: true, selector: "app-navbar-example", ngImport: i0, template: "<sky-navbar data-sky-id=\"basic-navbar\">\n <sky-navbar-item data-sky-id=\"navbar-item-1\">\n <a\n routerLink=\"/\"\n routerLinkActive=\"sky-navbar-item-active\"\n (click)=\"onItemClick('Selected item')\"\n >\n Selected item\n </a>\n </sky-navbar-item>\n <sky-navbar-item data-sky-id=\"navbar-item-2\">\n <sky-dropdown>\n <sky-dropdown-button> Show dropdown </sky-dropdown-button>\n <sky-dropdown-menu>\n <sky-dropdown-item>\n <a routerLink=\"/\" (click)=\"onItemClick('Item 1')\"> Item 1 </a>\n </sky-dropdown-item>\n <sky-dropdown-item>\n <a routerLink=\"/\" (click)=\"onItemClick('Item 2')\"> Item 2 </a>\n </sky-dropdown-item>\n <sky-dropdown-item>\n <a routerLink=\"/\" (click)=\"onItemClick('Item 3')\"> Item 3 </a>\n </sky-dropdown-item>\n </sky-dropdown-menu>\n </sky-dropdown>\n </sky-navbar-item>\n</sky-navbar>\n", dependencies: [{ kind: "ngmodule", type: RouterModule }, { kind: "directive", type: i1$d.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i1$d.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "ngmodule", type: SkyDropdownModule }, { kind: "component", type: i1$3.λ2, selector: "sky-dropdown-button" }, { kind: "component", type: i1$3.λ3, selector: "sky-dropdown", inputs: ["buttonStyle", "buttonType", "disabled", "label", "horizontalAlignment", "messageStream", "title", "trigger"] }, { kind: "component", type: i1$3.λ1, selector: "sky-dropdown-item", inputs: ["ariaRole"] }, { kind: "component", type: i1$3.λ4, selector: "sky-dropdown-menu", inputs: ["ariaLabelledBy", "ariaRole", "useNativeFocus"], outputs: ["menuChanges"] }, { kind: "ngmodule", type: SkyNavbarModule }, { kind: "component", type: i3$6.λ1, selector: "sky-navbar" }, { kind: "component", type: i3$6.λ2, selector: "sky-navbar-item", inputs: ["active"] }] }); }
11503
11804
  }
11504
11805
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NavbarExampleComponent, decorators: [{
11505
11806
  type: Component,
@@ -11733,7 +12034,7 @@ class PagesActionHubExampleComponent {
11733
12034
  this.title = 'Active accounts';
11734
12035
  }
11735
12036
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesActionHubExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
11736
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: PagesActionHubExampleComponent, isStandalone: true, selector: "app-pages-action-hub-example", ngImport: i0, template: "<sky-action-hub\n data-sky-id=\"action-hub\"\n [needsAttention]=\"needsAttention\"\n [recentLinks]=\"recentLinks\"\n [relatedLinks]=\"relatedLinks\"\n [settingsLinks]=\"settingsLinks\"\n [title]=\"title\"\n>\n <sky-action-hub-buttons>\n @for (button of buttons; track button) {\n <a\n class=\"sky-btn sky-btn-default sky-margin-inline-sm\"\n [attr.aria-label]=\"button.ariaLabel\"\n [href]=\"button.permalink.url\"\n >\n {{ button.label }}\n </a>\n }\n </sky-action-hub-buttons>\n\n <sky-action-hub-content>\n <h2 class=\"sky-font-heading-2\">Additional content</h2>\n <p>More content can go here as needed for the functional area.</p>\n </sky-action-hub-content>\n</sky-action-hub>\n", dependencies: [{ kind: "ngmodule", type: SkyActionHubModule }, { kind: "component", type: i1$d.λ2, selector: "sky-action-hub-buttons" }, { kind: "component", type: i1$d.λ1, selector: "sky-action-hub", inputs: ["needsAttention", "parentLink", "recentLinks", "relatedLinks", "settingsLinks", "title"] }, { kind: "component", type: i1$d.λ3, selector: "sky-action-hub-content" }] }); }
12037
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: PagesActionHubExampleComponent, isStandalone: true, selector: "app-pages-action-hub-example", ngImport: i0, template: "<sky-action-hub\n data-sky-id=\"action-hub\"\n [needsAttention]=\"needsAttention\"\n [recentLinks]=\"recentLinks\"\n [relatedLinks]=\"relatedLinks\"\n [settingsLinks]=\"settingsLinks\"\n [title]=\"title\"\n>\n <sky-action-hub-buttons>\n @for (button of buttons; track button) {\n <a\n class=\"sky-btn sky-btn-default sky-margin-inline-sm\"\n [attr.aria-label]=\"button.ariaLabel\"\n [href]=\"button.permalink.url\"\n >\n {{ button.label }}\n </a>\n }\n </sky-action-hub-buttons>\n\n <sky-action-hub-content>\n <h2 class=\"sky-font-heading-2\">Additional content</h2>\n <p>More content can go here as needed for the functional area.</p>\n </sky-action-hub-content>\n</sky-action-hub>\n", dependencies: [{ kind: "ngmodule", type: SkyActionHubModule }, { kind: "component", type: i1$e.λ2, selector: "sky-action-hub-buttons" }, { kind: "component", type: i1$e.λ1, selector: "sky-action-hub", inputs: ["needsAttention", "parentLink", "recentLinks", "relatedLinks", "settingsLinks", "title"] }, { kind: "component", type: i1$e.λ3, selector: "sky-action-hub-content" }] }); }
11737
12038
  }
11738
12039
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesActionHubExampleComponent, decorators: [{
11739
12040
  type: Component,
@@ -11761,7 +12062,7 @@ class TileMyActionsComponent {
11761
12062
  alert(buttonText + ' was clicked!');
11762
12063
  }
11763
12064
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: TileMyActionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
11764
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: TileMyActionsComponent, isStandalone: true, selector: "app-tile-my-actions", ngImport: i0, template: "<sky-tile tileName=\"My actions\">\n <sky-tile-title> My actions </sky-tile-title>\n <sky-tile-summary> 3 </sky-tile-summary>\n <sky-tile-content>\n <sky-tile-content-section>\n <sky-repeater data-sky-id=\"repeater-example\">\n @for (item of items; track item) {\n <sky-repeater-item [itemName]=\"item.accessibilityLabel\">\n @if (item.title) {\n <sky-repeater-item-title class=\"example-repeater-flex\">\n <div class=\"example-repeater-item-title sky-margin-stacked-sm\">\n <a href=\"/\">{{ item.title }}</a>\n </div>\n <div class=\"sky-font-deemphasized\">{{ item.date }}</div>\n </sky-repeater-item-title>\n }\n <sky-repeater-item-context-menu>\n <sky-dropdown buttonType=\"context-menu\">\n <sky-dropdown-menu>\n <sky-dropdown-item>\n <button\n type=\"button\"\n [attr.aria-label]=\"\n 'Action 1 for ' +\n (item.title ?? item.accessibilityLabel)\n \"\n (click)=\"onActionClicked('Action 1')\"\n >\n Edit\n </button>\n </sky-dropdown-item>\n <sky-dropdown-item>\n <button\n type=\"button\"\n [attr.aria-label]=\"\n 'Action 2 for ' +\n (item.title ?? item.accessibilityLabel)\n \"\n (click)=\"onActionClicked('Action 2')\"\n >\n Mark as complete\n </button>\n </sky-dropdown-item>\n </sky-dropdown-menu>\n </sky-dropdown>\n </sky-repeater-item-context-menu>\n </sky-repeater-item>\n }\n </sky-repeater>\n </sky-tile-content-section>\n </sky-tile-content>\n</sky-tile>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$e.λ5, selector: "sky-tile-content" }, { kind: "component", type: i1$e.λ4, selector: "sky-tile-content-section" }, { kind: "component", type: i1$e.λ1, selector: "sky-tile", inputs: ["helpKey", "helpPopoverContent", "helpPopoverTitle", "showSettings", "showHelp", "tileName", "isCollapsed"], outputs: ["settingsClick", "isCollapsedChange", "helpClick"] }, { kind: "component", type: i1$e.λ2, selector: "sky-tile-summary" }, { kind: "component", type: i1$e.λ3, selector: "sky-tile-title" }, { kind: "ngmodule", type: SkyDropdownModule }, { kind: "component", type: i1$3.λ3, selector: "sky-dropdown", inputs: ["buttonStyle", "buttonType", "disabled", "label", "horizontalAlignment", "messageStream", "title", "trigger"] }, { kind: "component", type: i1$3.λ1, selector: "sky-dropdown-item", inputs: ["ariaRole"] }, { kind: "component", type: i1$3.λ4, selector: "sky-dropdown-menu", inputs: ["ariaLabelledBy", "ariaRole", "useNativeFocus"], outputs: ["menuChanges"] }, { kind: "ngmodule", type: SkyRepeaterModule }, { kind: "component", type: i2$3.λ11, selector: "sky-repeater", inputs: ["activeIndex", "ariaLabel", "reorderable", "expandMode"], outputs: ["activeIndexChange", "orderChange"] }, { kind: "component", type: i2$3.λ10, selector: "sky-repeater-item", inputs: ["disabled", "itemName", "inlineFormConfig", "inlineFormTemplate", "isExpanded", "isSelected", "reorderable", "selectable", "showInlineForm", "tag"], outputs: ["collapse", "expand", "inlineFormClose", "isSelectedChange"] }, { kind: "component", type: i2$3.λ9, selector: "sky-repeater-item-context-menu" }, { kind: "component", type: i2$3.λ12, selector: "sky-repeater-item-title" }] }); }
12065
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: TileMyActionsComponent, isStandalone: true, selector: "app-tile-my-actions", ngImport: i0, template: "<sky-tile tileName=\"My actions\">\n <sky-tile-title> My actions </sky-tile-title>\n <sky-tile-summary> 3 </sky-tile-summary>\n <sky-tile-content>\n <sky-tile-content-section>\n <sky-repeater data-sky-id=\"repeater-example\">\n @for (item of items; track item) {\n <sky-repeater-item [itemName]=\"item.accessibilityLabel\">\n @if (item.title) {\n <sky-repeater-item-title class=\"example-repeater-flex\">\n <div class=\"example-repeater-item-title sky-margin-stacked-sm\">\n <a href=\"/\">{{ item.title }}</a>\n </div>\n <div class=\"sky-font-deemphasized\">{{ item.date }}</div>\n </sky-repeater-item-title>\n }\n <sky-repeater-item-context-menu>\n <sky-dropdown buttonType=\"context-menu\">\n <sky-dropdown-menu>\n <sky-dropdown-item>\n <button\n type=\"button\"\n [attr.aria-label]=\"\n 'Action 1 for ' +\n (item.title ?? item.accessibilityLabel)\n \"\n (click)=\"onActionClicked('Action 1')\"\n >\n Edit\n </button>\n </sky-dropdown-item>\n <sky-dropdown-item>\n <button\n type=\"button\"\n [attr.aria-label]=\"\n 'Action 2 for ' +\n (item.title ?? item.accessibilityLabel)\n \"\n (click)=\"onActionClicked('Action 2')\"\n >\n Mark as complete\n </button>\n </sky-dropdown-item>\n </sky-dropdown-menu>\n </sky-dropdown>\n </sky-repeater-item-context-menu>\n </sky-repeater-item>\n }\n </sky-repeater>\n </sky-tile-content-section>\n </sky-tile-content>\n</sky-tile>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$f.λ5, selector: "sky-tile-content" }, { kind: "component", type: i1$f.λ4, selector: "sky-tile-content-section" }, { kind: "component", type: i1$f.λ1, selector: "sky-tile", inputs: ["helpKey", "helpPopoverContent", "helpPopoverTitle", "showSettings", "showHelp", "tileName", "isCollapsed"], outputs: ["settingsClick", "isCollapsedChange", "helpClick"] }, { kind: "component", type: i1$f.λ2, selector: "sky-tile-summary" }, { kind: "component", type: i1$f.λ3, selector: "sky-tile-title" }, { kind: "ngmodule", type: SkyDropdownModule }, { kind: "component", type: i1$3.λ3, selector: "sky-dropdown", inputs: ["buttonStyle", "buttonType", "disabled", "label", "horizontalAlignment", "messageStream", "title", "trigger"] }, { kind: "component", type: i1$3.λ1, selector: "sky-dropdown-item", inputs: ["ariaRole"] }, { kind: "component", type: i1$3.λ4, selector: "sky-dropdown-menu", inputs: ["ariaLabelledBy", "ariaRole", "useNativeFocus"], outputs: ["menuChanges"] }, { kind: "ngmodule", type: SkyRepeaterModule }, { kind: "component", type: i2$3.λ11, selector: "sky-repeater", inputs: ["activeIndex", "ariaLabel", "reorderable", "expandMode"], outputs: ["activeIndexChange", "orderChange"] }, { kind: "component", type: i2$3.λ10, selector: "sky-repeater-item", inputs: ["disabled", "itemName", "inlineFormConfig", "inlineFormTemplate", "isExpanded", "isSelected", "reorderable", "selectable", "showInlineForm", "tag"], outputs: ["collapse", "expand", "inlineFormClose", "isSelectedChange"] }, { kind: "component", type: i2$3.λ9, selector: "sky-repeater-item-context-menu" }, { kind: "component", type: i2$3.λ12, selector: "sky-repeater-item-title" }] }); }
11765
12066
  }
11766
12067
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: TileMyActionsComponent, decorators: [{
11767
12068
  type: Component,
@@ -11770,7 +12071,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
11770
12071
 
11771
12072
  class TileUpdatesComponent {
11772
12073
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: TileUpdatesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
11773
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: TileUpdatesComponent, isStandalone: true, selector: "app-tile-updates", ngImport: i0, template: "<sky-tile tileName=\"Updates\" [showSettings]=\"false\">\n <sky-tile-title> Updates </sky-tile-title>\n <sky-tile-summary> 2 </sky-tile-summary>\n <sky-tile-content>\n <sky-tile-content-section>\n <h3 class=\"sky-font-heading-3 sky-margin-stacked-sm\">\n <a href=\"#\">Prepare for Giving Tuesday</a>\n </h3>\n <div class=\"sky-font-deemphasized sky-margin-stacked-sm\">10/1/2025</div>\n <div>\n Tips for creating a clear and compelling message, leveraging social\n media and email marketing, and providing multiple ways for donors to\n give.\n </div>\n </sky-tile-content-section>\n <sky-tile-content-section>\n <h3 class=\"sky-font-heading-3 sky-margin-stacked-sm\">\n <a href=\"#\">What's new</a>\n </h3>\n <div class=\"sky-font-deemphasized sky-margin-stacked-sm\">9/28/2025</div>\n <ul>\n <li>Enhancement visualizations in reporting capabilities</li>\n <li>New automation for routine tasks</li>\n <li>Scan attachments for viruses</li>\n </ul>\n </sky-tile-content-section>\n </sky-tile-content>\n</sky-tile>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$e.λ5, selector: "sky-tile-content" }, { kind: "component", type: i1$e.λ4, selector: "sky-tile-content-section" }, { kind: "component", type: i1$e.λ1, selector: "sky-tile", inputs: ["helpKey", "helpPopoverContent", "helpPopoverTitle", "showSettings", "showHelp", "tileName", "isCollapsed"], outputs: ["settingsClick", "isCollapsedChange", "helpClick"] }, { kind: "component", type: i1$e.λ2, selector: "sky-tile-summary" }, { kind: "component", type: i1$e.λ3, selector: "sky-tile-title" }] }); }
12074
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: TileUpdatesComponent, isStandalone: true, selector: "app-tile-updates", ngImport: i0, template: "<sky-tile tileName=\"Updates\" [showSettings]=\"false\">\n <sky-tile-title> Updates </sky-tile-title>\n <sky-tile-summary> 2 </sky-tile-summary>\n <sky-tile-content>\n <sky-tile-content-section>\n <h3 class=\"sky-font-heading-3 sky-margin-stacked-sm\">\n <a href=\"#\">Prepare for Giving Tuesday</a>\n </h3>\n <div class=\"sky-font-deemphasized sky-margin-stacked-sm\">10/1/2025</div>\n <div>\n Tips for creating a clear and compelling message, leveraging social\n media and email marketing, and providing multiple ways for donors to\n give.\n </div>\n </sky-tile-content-section>\n <sky-tile-content-section>\n <h3 class=\"sky-font-heading-3 sky-margin-stacked-sm\">\n <a href=\"#\">What's new</a>\n </h3>\n <div class=\"sky-font-deemphasized sky-margin-stacked-sm\">9/28/2025</div>\n <ul>\n <li>Enhancement visualizations in reporting capabilities</li>\n <li>New automation for routine tasks</li>\n <li>Scan attachments for viruses</li>\n </ul>\n </sky-tile-content-section>\n </sky-tile-content>\n</sky-tile>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$f.λ5, selector: "sky-tile-content" }, { kind: "component", type: i1$f.λ4, selector: "sky-tile-content-section" }, { kind: "component", type: i1$f.λ1, selector: "sky-tile", inputs: ["helpKey", "helpPopoverContent", "helpPopoverTitle", "showSettings", "showHelp", "tileName", "isCollapsed"], outputs: ["settingsClick", "isCollapsedChange", "helpClick"] }, { kind: "component", type: i1$f.λ2, selector: "sky-tile-summary" }, { kind: "component", type: i1$f.λ3, selector: "sky-tile-title" }] }); }
11774
12075
  }
11775
12076
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: TileUpdatesComponent, decorators: [{
11776
12077
  type: Component,
@@ -11825,7 +12126,7 @@ class HomePageContentComponent {
11825
12126
  };
11826
12127
  }
11827
12128
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: HomePageContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
11828
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: HomePageContentComponent, isStandalone: true, selector: "app-home-page-content", ngImport: i0, template: "<sky-tile-dashboard [(config)]=\"dashboardConfig\" />\n", dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$e.λ7, selector: "sky-tile-dashboard", inputs: ["config", "messageStream", "settingsKey"], outputs: ["configChange"] }] }); }
12129
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: HomePageContentComponent, isStandalone: true, selector: "app-home-page-content", ngImport: i0, template: "<sky-tile-dashboard [(config)]=\"dashboardConfig\" />\n", dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$f.λ7, selector: "sky-tile-dashboard", inputs: ["config", "messageStream", "settingsKey"], outputs: ["configChange"] }] }); }
11829
12130
  }
11830
12131
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: HomePageContentComponent, decorators: [{
11831
12132
  type: Component,
@@ -11852,7 +12153,7 @@ class PagesPageHomePageBlocksLayoutExampleComponent {
11852
12153
  ];
11853
12154
  }
11854
12155
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageHomePageBlocksLayoutExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
11855
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageHomePageBlocksLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-home-page-blocks-layout-example", ngImport: i0, template: "<sky-page layout=\"blocks\">\n <sky-page-header pageTitle=\"Home\">\n <sky-page-header-actions>\n <button type=\"button\" class=\"sky-btn sky-btn-default\">\n <sky-icon iconName=\"add\" /> New\n </button>\n </sky-page-header-actions>\n </sky-page-header>\n <sky-page-content>\n <app-home-page-content />\n </sky-page-content>\n\n <sky-page-links>\n <sky-link-list-recently-accessed [recentLinks]=\"recentLinks\" />\n <sky-link-list headingText=\"Resources\">\n <sky-link-list-item>\n <a href=\"#\">Help</a>\n </sky-link-list-item>\n <sky-link-list-item>\n <a href=\"#\">Support</a>\n </sky-link-list-item>\n <sky-link-list-item>\n <a href=\"#\">Training</a>\n </sky-link-list-item>\n </sky-link-list>\n </sky-page-links>\n</sky-page>\n", dependencies: [{ kind: "component", type: HomePageContentComponent, selector: "app-home-page-content" }, { kind: "ngmodule", type: SkyIconModule }, { kind: "component", type: i1$9.λ1, selector: "sky-icon", inputs: ["icon", "iconName", "iconType", "size", "fixedWidth", "variant", "iconSize"] }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$d.λ13, selector: "sky-link-list", inputs: ["headingText", "links"] }, { kind: "component", type: i1$d.λ14, selector: "sky-link-list-item" }, { kind: "component", type: i1$d.λ15, selector: "sky-link-list-recently-accessed", inputs: ["recentLinks"] }, { kind: "component", type: i1$d.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$d.λ9, selector: "sky-page-header-actions" }, { kind: "component", type: i1$d.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$d.λ7, selector: "sky-page-content" }, { kind: "component", type: i1$d.λ12, selector: "sky-page-links" }] }); }
12156
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageHomePageBlocksLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-home-page-blocks-layout-example", ngImport: i0, template: "<sky-page layout=\"blocks\">\n <sky-page-header pageTitle=\"Home\">\n <sky-page-header-actions>\n <button type=\"button\" class=\"sky-btn sky-btn-default\">\n <sky-icon iconName=\"add\" /> New\n </button>\n </sky-page-header-actions>\n </sky-page-header>\n <sky-page-content>\n <app-home-page-content />\n </sky-page-content>\n\n <sky-page-links>\n <sky-link-list-recently-accessed [recentLinks]=\"recentLinks\" />\n <sky-link-list headingText=\"Resources\">\n <sky-link-list-item>\n <a href=\"#\">Help</a>\n </sky-link-list-item>\n <sky-link-list-item>\n <a href=\"#\">Support</a>\n </sky-link-list-item>\n <sky-link-list-item>\n <a href=\"#\">Training</a>\n </sky-link-list-item>\n </sky-link-list>\n </sky-page-links>\n</sky-page>\n", dependencies: [{ kind: "component", type: HomePageContentComponent, selector: "app-home-page-content" }, { kind: "ngmodule", type: SkyIconModule }, { kind: "component", type: i1$9.λ1, selector: "sky-icon", inputs: ["icon", "iconName", "iconType", "size", "fixedWidth", "variant", "iconSize"] }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$e.λ13, selector: "sky-link-list", inputs: ["headingText", "links"] }, { kind: "component", type: i1$e.λ14, selector: "sky-link-list-item" }, { kind: "component", type: i1$e.λ15, selector: "sky-link-list-recently-accessed", inputs: ["recentLinks"] }, { kind: "component", type: i1$e.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$e.λ9, selector: "sky-page-header-actions" }, { kind: "component", type: i1$e.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$e.λ7, selector: "sky-page-content" }, { kind: "component", type: i1$e.λ12, selector: "sky-page-links" }] }); }
11856
12157
  }
11857
12158
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageHomePageBlocksLayoutExampleComponent, decorators: [{
11858
12159
  type: Component,
@@ -11997,7 +12298,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
11997
12298
  */
11998
12299
  class PagesPageListPageListLayoutExampleComponent {
11999
12300
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageListPageListLayoutExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
12000
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageListPageListLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-list-page-list-layout-example", ngImport: i0, template: "<sky-page layout=\"list\" helpKey=\"example-help\">\n <sky-page-header pageTitle=\"Dashboards\" />\n <sky-page-content>\n <app-list-page-content />\n </sky-page-content>\n</sky-page>\n", dependencies: [{ kind: "component", type: ListPageContentComponent$1, selector: "app-list-page-content" }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$d.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$d.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$d.λ7, selector: "sky-page-content" }] }); }
12301
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageListPageListLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-list-page-list-layout-example", ngImport: i0, template: "<sky-page layout=\"list\" helpKey=\"example-help\">\n <sky-page-header pageTitle=\"Dashboards\" />\n <sky-page-content>\n <app-list-page-content />\n </sky-page-content>\n</sky-page>\n", dependencies: [{ kind: "component", type: ListPageContentComponent$1, selector: "app-list-page-content" }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$e.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$e.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$e.λ7, selector: "sky-page-content" }] }); }
12001
12302
  }
12002
12303
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageListPageListLayoutExampleComponent, decorators: [{
12003
12304
  type: Component,
@@ -12192,7 +12493,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
12192
12493
  */
12193
12494
  class PagesPageListPageTabsLayoutExampleComponent {
12194
12495
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageListPageTabsLayoutExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
12195
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageListPageTabsLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-list-page-tabs-layout-example", ngImport: i0, template: "<sky-page layout=\"tabs\" helpKey=\"example-help\">\n <sky-page-header pageTitle=\"Contacts\" />\n <sky-page-content>\n <app-list-page-content />\n </sky-page-content>\n</sky-page>\n", dependencies: [{ kind: "component", type: ListPageContentComponent, selector: "app-list-page-content" }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$d.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$d.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$d.λ7, selector: "sky-page-content" }] }); }
12496
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageListPageTabsLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-list-page-tabs-layout-example", ngImport: i0, template: "<sky-page layout=\"tabs\" helpKey=\"example-help\">\n <sky-page-header pageTitle=\"Contacts\" />\n <sky-page-content>\n <app-list-page-content />\n </sky-page-content>\n</sky-page>\n", dependencies: [{ kind: "component", type: ListPageContentComponent, selector: "app-list-page-content" }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$e.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$e.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$e.λ7, selector: "sky-page-content" }] }); }
12196
12497
  }
12197
12498
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageListPageTabsLayoutExampleComponent, decorators: [{
12198
12499
  type: Component,
@@ -12306,7 +12607,7 @@ class PagesPageRecordPageBlocksLayoutExampleComponent {
12306
12607
  ];
12307
12608
  }
12308
12609
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageRecordPageBlocksLayoutExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
12309
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageRecordPageBlocksLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-record-page-blocks-layout-example", ngImport: i0, template: "<sky-page layout=\"blocks\" helpKey=\"example-help\">\n <sky-page-header\n pageTitle=\"$500 pledge\"\n [parentLink]=\"{\n label: 'Pledges',\n permalink: {\n route: {\n commands: ['/']\n }\n }\n }\"\n />\n <sky-page-content>\n <app-record-page-content />\n </sky-page-content>\n <sky-page-links>\n <sky-link-list-recently-accessed [recentLinks]=\"recentLinks\" />\n <sky-link-list headingText=\"Related links\">\n <sky-link-list-item>\n <a href=\"#\">Analysis</a>\n </sky-link-list-item>\n <sky-link-list-item>\n <a href=\"#\">Tools</a>\n </sky-link-list-item>\n <sky-link-list-item>\n <button type=\"button\" class=\"sky-btn-link-inline\">Settings</button>\n </sky-link-list-item>\n </sky-link-list>\n </sky-page-links>\n</sky-page>\n", dependencies: [{ kind: "component", type: RecordPageContentComponent$1, selector: "app-record-page-content" }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$d.λ13, selector: "sky-link-list", inputs: ["headingText", "links"] }, { kind: "component", type: i1$d.λ14, selector: "sky-link-list-item" }, { kind: "component", type: i1$d.λ15, selector: "sky-link-list-recently-accessed", inputs: ["recentLinks"] }, { kind: "component", type: i1$d.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$d.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$d.λ7, selector: "sky-page-content" }, { kind: "component", type: i1$d.λ12, selector: "sky-page-links" }] }); }
12610
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageRecordPageBlocksLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-record-page-blocks-layout-example", ngImport: i0, template: "<sky-page layout=\"blocks\" helpKey=\"example-help\">\n <sky-page-header\n pageTitle=\"$500 pledge\"\n [parentLink]=\"{\n label: 'Pledges',\n permalink: {\n route: {\n commands: ['/']\n }\n }\n }\"\n />\n <sky-page-content>\n <app-record-page-content />\n </sky-page-content>\n <sky-page-links>\n <sky-link-list-recently-accessed [recentLinks]=\"recentLinks\" />\n <sky-link-list headingText=\"Related links\">\n <sky-link-list-item>\n <a href=\"#\">Analysis</a>\n </sky-link-list-item>\n <sky-link-list-item>\n <a href=\"#\">Tools</a>\n </sky-link-list-item>\n <sky-link-list-item>\n <button type=\"button\" class=\"sky-btn-link-inline\">Settings</button>\n </sky-link-list-item>\n </sky-link-list>\n </sky-page-links>\n</sky-page>\n", dependencies: [{ kind: "component", type: RecordPageContentComponent$1, selector: "app-record-page-content" }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$e.λ13, selector: "sky-link-list", inputs: ["headingText", "links"] }, { kind: "component", type: i1$e.λ14, selector: "sky-link-list-item" }, { kind: "component", type: i1$e.λ15, selector: "sky-link-list-recently-accessed", inputs: ["recentLinks"] }, { kind: "component", type: i1$e.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$e.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$e.λ7, selector: "sky-page-content" }, { kind: "component", type: i1$e.λ12, selector: "sky-page-links" }] }); }
12310
12611
  }
12311
12612
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageRecordPageBlocksLayoutExampleComponent, decorators: [{
12312
12613
  type: Component,
@@ -12574,7 +12875,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
12574
12875
  */
12575
12876
  class PagesPageRecordPageTabsLayoutExampleComponent {
12576
12877
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageRecordPageTabsLayoutExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
12577
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageRecordPageTabsLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-record-page-tabs-layout-example", ngImport: i0, template: "<sky-page layout=\"tabs\" helpKey=\"example-help\">\n <sky-page-header pageTitle=\"Charlene Conners\">\n <sky-page-header-alerts>\n <sky-alert alertType=\"warning\" descriptionType=\"warning\">\n Missing phone number for Charlene Conners.\n </sky-alert>\n </sky-page-header-alerts>\n <sky-page-header-avatar>\n <sky-avatar name=\"Charlene Conners\" />\n </sky-page-header-avatar>\n <sky-page-header-details>\n <sky-label labelType=\"info\" descriptionType=\"important-info\">\n VIP\n </sky-label>\n </sky-page-header-details>\n <sky-page-header-actions>\n <button class=\"sky-btn sky-btn-default\" type=\"button\">\n Email contact\n </button>\n <button class=\"sky-btn sky-btn-default\" type=\"button\">\n Add to my contacts\n </button>\n </sky-page-header-actions>\n </sky-page-header>\n <sky-page-content>\n <app-record-page-content />\n </sky-page-content>\n</sky-page>\n", dependencies: [{ kind: "component", type: RecordPageContentComponent, selector: "app-record-page-content" }, { kind: "ngmodule", type: SkyAlertModule }, { kind: "component", type: i1.λ1, selector: "sky-alert", inputs: ["alertType", "closeable", "closed", "descriptionType", "customDescription"], outputs: ["closedChange"] }, { kind: "ngmodule", type: SkyAvatarModule }, { kind: "component", type: i1$8.λ1, selector: "sky-avatar", inputs: ["canChange", "name", "src", "maxFileSize", "size"], outputs: ["avatarChanged"] }, { kind: "ngmodule", type: SkyLabelModule }, { kind: "component", type: i1.λ9, selector: "sky-label", inputs: ["labelType", "descriptionType", "customDescription"] }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$d.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$d.λ9, selector: "sky-page-header-actions" }, { kind: "component", type: i1$d.λ11, selector: "sky-page-header-alerts" }, { kind: "component", type: i1$d.λ10, selector: "sky-page-header-avatar" }, { kind: "component", type: i1$d.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$d.λ8, selector: "sky-page-header-details" }, { kind: "component", type: i1$d.λ7, selector: "sky-page-content" }] }); }
12878
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageRecordPageTabsLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-record-page-tabs-layout-example", ngImport: i0, template: "<sky-page layout=\"tabs\" helpKey=\"example-help\">\n <sky-page-header pageTitle=\"Charlene Conners\">\n <sky-page-header-alerts>\n <sky-alert alertType=\"warning\" descriptionType=\"warning\">\n Missing phone number for Charlene Conners.\n </sky-alert>\n </sky-page-header-alerts>\n <sky-page-header-avatar>\n <sky-avatar name=\"Charlene Conners\" />\n </sky-page-header-avatar>\n <sky-page-header-details>\n <sky-label labelType=\"info\" descriptionType=\"important-info\">\n VIP\n </sky-label>\n </sky-page-header-details>\n <sky-page-header-actions>\n <button class=\"sky-btn sky-btn-default\" type=\"button\">\n Email contact\n </button>\n <button class=\"sky-btn sky-btn-default\" type=\"button\">\n Add to my contacts\n </button>\n </sky-page-header-actions>\n </sky-page-header>\n <sky-page-content>\n <app-record-page-content />\n </sky-page-content>\n</sky-page>\n", dependencies: [{ kind: "component", type: RecordPageContentComponent, selector: "app-record-page-content" }, { kind: "ngmodule", type: SkyAlertModule }, { kind: "component", type: i1.λ1, selector: "sky-alert", inputs: ["alertType", "closeable", "closed", "descriptionType", "customDescription"], outputs: ["closedChange"] }, { kind: "ngmodule", type: SkyAvatarModule }, { kind: "component", type: i1$8.λ1, selector: "sky-avatar", inputs: ["canChange", "name", "src", "maxFileSize", "size"], outputs: ["avatarChanged"] }, { kind: "ngmodule", type: SkyLabelModule }, { kind: "component", type: i1.λ9, selector: "sky-label", inputs: ["labelType", "descriptionType", "customDescription"] }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$e.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$e.λ9, selector: "sky-page-header-actions" }, { kind: "component", type: i1$e.λ11, selector: "sky-page-header-alerts" }, { kind: "component", type: i1$e.λ10, selector: "sky-page-header-avatar" }, { kind: "component", type: i1$e.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$e.λ8, selector: "sky-page-header-details" }, { kind: "component", type: i1$e.λ7, selector: "sky-page-content" }] }); }
12578
12879
  }
12579
12880
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageRecordPageTabsLayoutExampleComponent, decorators: [{
12580
12881
  type: Component,
@@ -12773,7 +13074,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
12773
13074
  */
12774
13075
  class PagesPageSplitViewPageFitLayoutExampleComponent {
12775
13076
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageSplitViewPageFitLayoutExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
12776
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageSplitViewPageFitLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-split-view-page-fit-layout-example", ngImport: i0, template: "<sky-page layout=\"fit\" helpKey=\"example-help\">\n <sky-page-header\n pageTitle=\"Expenses to approve\"\n [parentLink]=\"{\n label: 'Expenses',\n permalink: {\n route: {\n commands: ['/']\n }\n }\n }\"\n >\n <sky-page-header-alerts>\n <sky-alert alertType=\"warning\" descriptionType=\"warning\">\n There are multiple expense approvals due soon.\n </sky-alert>\n </sky-page-header-alerts>\n <sky-page-header-actions>\n <button class=\"sky-btn sky-btn-default\" type=\"button\">Approve all</button>\n </sky-page-header-actions>\n </sky-page-header>\n <sky-page-content>\n <app-split-view-page-content />\n </sky-page-content>\n</sky-page>\n", dependencies: [{ kind: "ngmodule", type: SkyAlertModule }, { kind: "component", type: i1.λ1, selector: "sky-alert", inputs: ["alertType", "closeable", "closed", "descriptionType", "customDescription"], outputs: ["closedChange"] }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$d.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$d.λ9, selector: "sky-page-header-actions" }, { kind: "component", type: i1$d.λ11, selector: "sky-page-header-alerts" }, { kind: "component", type: i1$d.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$d.λ7, selector: "sky-page-content" }, { kind: "component", type: SplitViewPageContentComponent, selector: "app-split-view-page-content" }] }); }
13077
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: PagesPageSplitViewPageFitLayoutExampleComponent, isStandalone: true, selector: "app-pages-page-split-view-page-fit-layout-example", ngImport: i0, template: "<sky-page layout=\"fit\" helpKey=\"example-help\">\n <sky-page-header\n pageTitle=\"Expenses to approve\"\n [parentLink]=\"{\n label: 'Expenses',\n permalink: {\n route: {\n commands: ['/']\n }\n }\n }\"\n >\n <sky-page-header-alerts>\n <sky-alert alertType=\"warning\" descriptionType=\"warning\">\n There are multiple expense approvals due soon.\n </sky-alert>\n </sky-page-header-alerts>\n <sky-page-header-actions>\n <button class=\"sky-btn sky-btn-default\" type=\"button\">Approve all</button>\n </sky-page-header-actions>\n </sky-page-header>\n <sky-page-content>\n <app-split-view-page-content />\n </sky-page-content>\n</sky-page>\n", dependencies: [{ kind: "ngmodule", type: SkyAlertModule }, { kind: "component", type: i1.λ1, selector: "sky-alert", inputs: ["alertType", "closeable", "closed", "descriptionType", "customDescription"], outputs: ["closedChange"] }, { kind: "ngmodule", type: SkyPageModule$1 }, { kind: "component", type: i1$e.λ6, selector: "sky-page", inputs: ["layout", "helpKey"] }, { kind: "component", type: i1$e.λ9, selector: "sky-page-header-actions" }, { kind: "component", type: i1$e.λ11, selector: "sky-page-header-alerts" }, { kind: "component", type: i1$e.λ4, selector: "sky-page-header", inputs: ["parentLink", "pageTitle"] }, { kind: "component", type: i1$e.λ7, selector: "sky-page-content" }, { kind: "component", type: SplitViewPageContentComponent, selector: "app-split-view-page-content" }] }); }
12777
13078
  }
12778
13079
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: PagesPageSplitViewPageFitLayoutExampleComponent, decorators: [{
12779
13080
  type: Component,
@@ -12880,7 +13181,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
12880
13181
  */
12881
13182
  class ProgressIndicatorPassiveIndicatorBasicExampleComponent {
12882
13183
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ProgressIndicatorPassiveIndicatorBasicExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
12883
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: ProgressIndicatorPassiveIndicatorBasicExampleComponent, isStandalone: true, selector: "app-progress-indicator-passive-indicator-basic-example", ngImport: i0, template: "<sky-progress-indicator\n data-sky-id=\"example-progress-indicator\"\n [isPassive]=\"true\"\n [startingIndex]=\"1\"\n>\n <sky-progress-indicator-item\n data-sky-id=\"finished-step\"\n helpPopoverContent=\"Example help content for finished step\"\n helpPopoverTitle=\"Start here\"\n title=\"Finished step\"\n >Optional details about this step\n </sky-progress-indicator-item>\n <sky-progress-indicator-item\n helpPopoverContent=\"Example help content for current step\"\n title=\"Current step\"\n />\n <sky-progress-indicator-item title=\"HIDDEN TITLE\" />\n</sky-progress-indicator>\n", dependencies: [{ kind: "ngmodule", type: SkyProgressIndicatorModule }, { kind: "component", type: i1$f.λ2, selector: "sky-progress-indicator", inputs: ["displayMode", "isPassive", "messageStream", "startingIndex"], outputs: ["progressChanges"] }, { kind: "component", type: i1$f.λ1, selector: "sky-progress-indicator-item", inputs: ["title", "helpKey", "helpPopoverContent", "helpPopoverTitle"] }] }); }
13184
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: ProgressIndicatorPassiveIndicatorBasicExampleComponent, isStandalone: true, selector: "app-progress-indicator-passive-indicator-basic-example", ngImport: i0, template: "<sky-progress-indicator\n data-sky-id=\"example-progress-indicator\"\n [isPassive]=\"true\"\n [startingIndex]=\"1\"\n>\n <sky-progress-indicator-item\n data-sky-id=\"finished-step\"\n helpPopoverContent=\"Example help content for finished step\"\n helpPopoverTitle=\"Start here\"\n title=\"Finished step\"\n >Optional details about this step\n </sky-progress-indicator-item>\n <sky-progress-indicator-item\n helpPopoverContent=\"Example help content for current step\"\n title=\"Current step\"\n />\n <sky-progress-indicator-item title=\"HIDDEN TITLE\" />\n</sky-progress-indicator>\n", dependencies: [{ kind: "ngmodule", type: SkyProgressIndicatorModule }, { kind: "component", type: i1$g.λ2, selector: "sky-progress-indicator", inputs: ["displayMode", "isPassive", "messageStream", "startingIndex"], outputs: ["progressChanges"] }, { kind: "component", type: i1$g.λ1, selector: "sky-progress-indicator-item", inputs: ["title", "helpKey", "helpPopoverContent", "helpPopoverTitle"] }] }); }
12884
13185
  }
12885
13186
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ProgressIndicatorPassiveIndicatorBasicExampleComponent, decorators: [{
12886
13187
  type: Component,
@@ -12967,7 +13268,7 @@ class ProgressIndicatorWaterfallIndicatorBasicExampleComponent {
12967
13268
  });
12968
13269
  }
12969
13270
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ProgressIndicatorWaterfallIndicatorBasicExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
12970
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: ProgressIndicatorWaterfallIndicatorBasicExampleComponent, isStandalone: true, selector: "app-progress-indicator-waterfall-indicator-basic-example", ngImport: i0, template: "<sky-progress-indicator\n #progressIndicator\n data-sky-id=\"example-progress-indicator\"\n [messageStream]=\"progressMessageStream\"\n [startingIndex]=\"2\"\n (progressChanges)=\"updateIndex($event)\"\n>\n <sky-progress-indicator-title>\n Set up my connection\n </sky-progress-indicator-title>\n\n <sky-progress-indicator-item\n data-sky-id=\"configure-connection\"\n helpPopoverContent=\"Example help for configure connection\"\n title=\"Configure connection\"\n >\n <div>\n @if (activeIndex === 0) {\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"configureConnection(true)\"\n >\n Set up connection\n </button>\n }\n @if (activeIndex && activeIndex > 0) {\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"configureConnection(false)\"\n >\n Edit connection\n </button>\n }\n </div>\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item\n helpPopoverContent=\"Example help for select remote server\"\n helpPopoverTitle=\"Which server is right for me?\"\n title=\"Select remote server\"\n >\n @if (activeIndex && activeIndex >= 1) {\n <div>\n @if (activeIndex === 1) {\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"setServer(true)\"\n >\n Select server\n </button>\n } @else {\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"setServer(false)\"\n >\n Change server\n </button>\n }\n </div>\n }\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item\n data-sky-id=\"test-connection\"\n title=\"Test connection\"\n >\n @if (activeIndex && activeIndex >= 2) {\n <div>\n @if (activeIndex === 2) {\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"testConnection(true)\"\n >\n Test connection\n </button>\n } @else {\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"testConnection(false)\"\n >\n Retest connection\n </button>\n }\n </div>\n }\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item title=\"Turn on connection\">\n @if (activeIndex && activeIndex >= 3) {\n <div>\n @if (activeIndex === 3) {\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"alertMessage('Form completed')\"\n >\n Turn on\n </button>\n }\n </div>\n }\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-reset-button [progressIndicator]=\"progressIndicator\">\n Erase all settings\n </sky-progress-indicator-reset-button>\n</sky-progress-indicator>\n", dependencies: [{ kind: "ngmodule", type: SkyProgressIndicatorModule }, { kind: "component", type: i1$f.λ2, selector: "sky-progress-indicator", inputs: ["displayMode", "isPassive", "messageStream", "startingIndex"], outputs: ["progressChanges"] }, { kind: "component", type: i1$f.λ1, selector: "sky-progress-indicator-item", inputs: ["title", "helpKey", "helpPopoverContent", "helpPopoverTitle"] }, { kind: "component", type: i1$f.λ4, selector: "sky-progress-indicator-reset-button", inputs: ["disabled", "progressIndicator"], outputs: ["resetClick"] }, { kind: "component", type: i1$f.λ5, selector: "sky-progress-indicator-title" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13271
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: ProgressIndicatorWaterfallIndicatorBasicExampleComponent, isStandalone: true, selector: "app-progress-indicator-waterfall-indicator-basic-example", ngImport: i0, template: "<sky-progress-indicator\n #progressIndicator\n data-sky-id=\"example-progress-indicator\"\n [messageStream]=\"progressMessageStream\"\n [startingIndex]=\"2\"\n (progressChanges)=\"updateIndex($event)\"\n>\n <sky-progress-indicator-title>\n Set up my connection\n </sky-progress-indicator-title>\n\n <sky-progress-indicator-item\n data-sky-id=\"configure-connection\"\n helpPopoverContent=\"Example help for configure connection\"\n title=\"Configure connection\"\n >\n <div>\n @if (activeIndex === 0) {\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"configureConnection(true)\"\n >\n Set up connection\n </button>\n }\n @if (activeIndex && activeIndex > 0) {\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"configureConnection(false)\"\n >\n Edit connection\n </button>\n }\n </div>\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item\n helpPopoverContent=\"Example help for select remote server\"\n helpPopoverTitle=\"Which server is right for me?\"\n title=\"Select remote server\"\n >\n @if (activeIndex && activeIndex >= 1) {\n <div>\n @if (activeIndex === 1) {\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"setServer(true)\"\n >\n Select server\n </button>\n } @else {\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"setServer(false)\"\n >\n Change server\n </button>\n }\n </div>\n }\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item\n data-sky-id=\"test-connection\"\n title=\"Test connection\"\n >\n @if (activeIndex && activeIndex >= 2) {\n <div>\n @if (activeIndex === 2) {\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"testConnection(true)\"\n >\n Test connection\n </button>\n } @else {\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"testConnection(false)\"\n >\n Retest connection\n </button>\n }\n </div>\n }\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item title=\"Turn on connection\">\n @if (activeIndex && activeIndex >= 3) {\n <div>\n @if (activeIndex === 3) {\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"alertMessage('Form completed')\"\n >\n Turn on\n </button>\n }\n </div>\n }\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-reset-button [progressIndicator]=\"progressIndicator\">\n Erase all settings\n </sky-progress-indicator-reset-button>\n</sky-progress-indicator>\n", dependencies: [{ kind: "ngmodule", type: SkyProgressIndicatorModule }, { kind: "component", type: i1$g.λ2, selector: "sky-progress-indicator", inputs: ["displayMode", "isPassive", "messageStream", "startingIndex"], outputs: ["progressChanges"] }, { kind: "component", type: i1$g.λ1, selector: "sky-progress-indicator-item", inputs: ["title", "helpKey", "helpPopoverContent", "helpPopoverTitle"] }, { kind: "component", type: i1$g.λ4, selector: "sky-progress-indicator-reset-button", inputs: ["disabled", "progressIndicator"], outputs: ["resetClick"] }, { kind: "component", type: i1$g.λ5, selector: "sky-progress-indicator-title" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
12971
13272
  }
12972
13273
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ProgressIndicatorWaterfallIndicatorBasicExampleComponent, decorators: [{
12973
13274
  type: Component,
@@ -13006,7 +13307,7 @@ let ModalComponent$2 = class ModalComponent {
13006
13307
  this.activeIndex = changes.activeIndex;
13007
13308
  }
13008
13309
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
13009
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: ModalComponent, isStandalone: true, selector: "app-modal", ngImport: i0, template: "<sky-modal [headingText]=\"title\">\n <sky-modal-content>\n <form [formGroup]=\"formGroup\">\n <sky-progress-indicator\n #wizardDemo\n [displayMode]=\"displayMode\"\n (progressChanges)=\"updateIndex($event)\"\n >\n <sky-progress-indicator-item title=\"First step\">\n <sky-input-box labelText=\"Enter text to continue\">\n <input type=\"text\" formControlName=\"requiredValue1\" />\n </sky-input-box>\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item title=\"Second step\">\n <div>\n <sky-checkbox\n formControlName=\"requiredValue2\"\n labelText=\"Select to continue\"\n />\n </div>\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item title=\"Third step\">\n <div>Additional content or tasks go here.</div>\n </sky-progress-indicator-item>\n </sky-progress-indicator>\n </form>\n </sky-modal-content>\n <sky-modal-footer>\n <sky-progress-indicator-nav-button\n buttonType=\"previous\"\n [progressIndicator]=\"wizardDemo\"\n />\n <sky-progress-indicator-nav-button\n buttonType=\"next\"\n [disabled]=\"!requirementsMet\"\n [progressIndicator]=\"wizardDemo\"\n />\n <sky-progress-indicator-nav-button\n buttonType=\"finish\"\n buttonText=\"Finish\"\n [progressIndicator]=\"wizardDemo\"\n (actionClick)=\"onSaveClick($event)\"\n />\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"onCancelClick()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n</sky-modal>\n", dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: SkyCheckboxModule }, { kind: "component", type: i2$2.λ3, selector: "sky-checkbox", inputs: ["label", "labelledBy", "id", "disabled", "tabindex", "name", "helpPopoverContent", "helpPopoverTitle", "icon", "iconName", "checkboxType", "checked", "indeterminate", "required", "labelText", "labelHidden", "hintText", "stacked", "helpKey"], outputs: ["change", "checkedChange", "disabledChange", "indeterminateChange"] }, { kind: "ngmodule", type: SkyInputBoxModule }, { kind: "component", type: i2$2.λ10, selector: "sky-input-box", inputs: ["hasErrors", "disabled", "labelText", "characterLimit", "stacked", "helpPopoverTitle", "helpPopoverContent", "helpKey", "hintText"] }, { kind: "directive", type: i2$2.λ20, selector: "input:not([skyId]):not(.sky-form-control),select:not([skyId]):not(.sky-form-control),textarea:not([skyId]):not(.sky-form-control)", inputs: ["autocomplete"] }, { kind: "ngmodule", type: SkyModalModule }, { kind: "component", type: i3.λ5, selector: "sky-modal", inputs: ["formErrors", "headingText", "helpKey", "helpPopoverContent", "helpPopoverTitle", "ariaRole", "tiledBody", "ariaDescribedBy", "ariaLabelledBy", "layout"] }, { kind: "component", type: i3.λ2, selector: "sky-modal-content" }, { kind: "component", type: i3.λ3, selector: "sky-modal-footer" }, { kind: "ngmodule", type: SkyProgressIndicatorModule }, { kind: "component", type: i1$f.λ2, selector: "sky-progress-indicator", inputs: ["displayMode", "isPassive", "messageStream", "startingIndex"], outputs: ["progressChanges"] }, { kind: "component", type: i1$f.λ1, selector: "sky-progress-indicator-item", inputs: ["title", "helpKey", "helpPopoverContent", "helpPopoverTitle"] }, { kind: "component", type: i1$f.λ3, selector: "sky-progress-indicator-nav-button", inputs: ["buttonText", "buttonType", "disabled", "progressIndicator"], outputs: ["actionClick"] }] }); }
13310
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: ModalComponent, isStandalone: true, selector: "app-modal", ngImport: i0, template: "<sky-modal [headingText]=\"title\">\n <sky-modal-content>\n <form [formGroup]=\"formGroup\">\n <sky-progress-indicator\n #wizardDemo\n [displayMode]=\"displayMode\"\n (progressChanges)=\"updateIndex($event)\"\n >\n <sky-progress-indicator-item title=\"First step\">\n <sky-input-box labelText=\"Enter text to continue\">\n <input type=\"text\" formControlName=\"requiredValue1\" />\n </sky-input-box>\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item title=\"Second step\">\n <div>\n <sky-checkbox\n formControlName=\"requiredValue2\"\n labelText=\"Select to continue\"\n />\n </div>\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item title=\"Third step\">\n <div>Additional content or tasks go here.</div>\n </sky-progress-indicator-item>\n </sky-progress-indicator>\n </form>\n </sky-modal-content>\n <sky-modal-footer>\n <sky-progress-indicator-nav-button\n buttonType=\"previous\"\n [progressIndicator]=\"wizardDemo\"\n />\n <sky-progress-indicator-nav-button\n buttonType=\"next\"\n [disabled]=\"!requirementsMet\"\n [progressIndicator]=\"wizardDemo\"\n />\n <sky-progress-indicator-nav-button\n buttonType=\"finish\"\n buttonText=\"Finish\"\n [progressIndicator]=\"wizardDemo\"\n (actionClick)=\"onSaveClick($event)\"\n />\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"onCancelClick()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n</sky-modal>\n", dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: SkyCheckboxModule }, { kind: "component", type: i2$2.λ3, selector: "sky-checkbox", inputs: ["label", "labelledBy", "id", "disabled", "tabindex", "name", "helpPopoverContent", "helpPopoverTitle", "icon", "iconName", "checkboxType", "checked", "indeterminate", "required", "labelText", "labelHidden", "hintText", "stacked", "helpKey"], outputs: ["change", "checkedChange", "disabledChange", "indeterminateChange"] }, { kind: "ngmodule", type: SkyInputBoxModule }, { kind: "component", type: i2$2.λ10, selector: "sky-input-box", inputs: ["hasErrors", "disabled", "labelText", "characterLimit", "stacked", "helpPopoverTitle", "helpPopoverContent", "helpKey", "hintText"] }, { kind: "directive", type: i2$2.λ20, selector: "input:not([skyId]):not(.sky-form-control),select:not([skyId]):not(.sky-form-control),textarea:not([skyId]):not(.sky-form-control)", inputs: ["autocomplete"] }, { kind: "ngmodule", type: SkyModalModule }, { kind: "component", type: i3.λ5, selector: "sky-modal", inputs: ["formErrors", "headingText", "helpKey", "helpPopoverContent", "helpPopoverTitle", "ariaRole", "tiledBody", "ariaDescribedBy", "ariaLabelledBy", "layout"] }, { kind: "component", type: i3.λ2, selector: "sky-modal-content" }, { kind: "component", type: i3.λ3, selector: "sky-modal-footer" }, { kind: "ngmodule", type: SkyProgressIndicatorModule }, { kind: "component", type: i1$g.λ2, selector: "sky-progress-indicator", inputs: ["displayMode", "isPassive", "messageStream", "startingIndex"], outputs: ["progressChanges"] }, { kind: "component", type: i1$g.λ1, selector: "sky-progress-indicator-item", inputs: ["title", "helpKey", "helpPopoverContent", "helpPopoverTitle"] }, { kind: "component", type: i1$g.λ3, selector: "sky-progress-indicator-nav-button", inputs: ["buttonText", "buttonType", "disabled", "progressIndicator"], outputs: ["actionClick"] }] }); }
13010
13311
  };
13011
13312
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ModalComponent$2, decorators: [{
13012
13313
  type: Component,
@@ -13040,7 +13341,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
13040
13341
  */
13041
13342
  class RouterHrefBasicExampleComponent {
13042
13343
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: RouterHrefBasicExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
13043
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: RouterHrefBasicExampleComponent, isStandalone: true, selector: "app-router-href-basic-example", ngImport: i0, template: "<p>\n <span>Link where the user has access:</span>\n <a skyHref=\"https://example.com\" data-sky-id=\"my-href-1\">Example.com</a>\n</p>\n<p>\n <span>Link where the user has access, translated:</span>\n <a skyHref=\"allow://example.com\" data-sky-id=\"my-href-allow\"\n >Example.com with \u201Callow\u201D protocol</a\n >\n</p>\n<p>\n <span>Link where the user does not have access, hidden by default:</span>\n <a skyHref=\"deny://example.com\" data-sky-id=\"my-href-hidden\"\n >Example.com with \u201Cdeny\u201D protocol</a\n >\n</p>\n<p>\n <span>Link where the user does not have access, shown as plain text:</span>\n <a\n skyHref=\"deny://example.com\"\n skyHrefElse=\"unlink\"\n data-sky-id=\"my-href-unlinked\"\n >Example.com with \u201Cdeny\u201D protocol</a\n >\n</p>\n", styles: [":host{display:block}span{display:inline-block;margin-right:var(--sky-margin-inline-xs)}a[skyhref]:after{display:block;content:\"skyhref=\\201c\" attr(skyhref) \"\\201d \\279c href=\\201c\" attr(href) \"\\201d\";font-size:10px;color:var(--sky-text-color-deemphasized);text-decoration:none}\n"], dependencies: [{ kind: "ngmodule", type: SkyHrefModule }, { kind: "directive", type: i1$g.λ1, selector: "[skyHref]", inputs: ["skyHref", "queryParams", "skyHrefElse"], outputs: ["skyHrefChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13344
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: RouterHrefBasicExampleComponent, isStandalone: true, selector: "app-router-href-basic-example", ngImport: i0, template: "<p>\n <span>Link where the user has access:</span>\n <a skyHref=\"https://example.com\" data-sky-id=\"my-href-1\">Example.com</a>\n</p>\n<p>\n <span>Link where the user has access, translated:</span>\n <a skyHref=\"allow://example.com\" data-sky-id=\"my-href-allow\"\n >Example.com with \u201Callow\u201D protocol</a\n >\n</p>\n<p>\n <span>Link where the user does not have access, hidden by default:</span>\n <a skyHref=\"deny://example.com\" data-sky-id=\"my-href-hidden\"\n >Example.com with \u201Cdeny\u201D protocol</a\n >\n</p>\n<p>\n <span>Link where the user does not have access, shown as plain text:</span>\n <a\n skyHref=\"deny://example.com\"\n skyHrefElse=\"unlink\"\n data-sky-id=\"my-href-unlinked\"\n >Example.com with \u201Cdeny\u201D protocol</a\n >\n</p>\n", styles: [":host{display:block}span{display:inline-block;margin-right:var(--sky-margin-inline-xs)}a[skyhref]:after{display:block;content:\"skyhref=\\201c\" attr(skyhref) \"\\201d \\279c href=\\201c\" attr(href) \"\\201d\";font-size:10px;color:var(--sky-text-color-deemphasized);text-decoration:none}\n"], dependencies: [{ kind: "ngmodule", type: SkyHrefModule }, { kind: "directive", type: i1$h.λ1, selector: "[skyHref]", inputs: ["skyHref", "queryParams", "skyHrefElse"], outputs: ["skyHrefChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13044
13345
  }
13045
13346
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: RouterHrefBasicExampleComponent, decorators: [{
13046
13347
  type: Component,
@@ -13846,7 +14147,7 @@ class Tile1Component {
13846
14147
  alert('tile settings clicked');
13847
14148
  }
13848
14149
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: Tile1Component, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
13849
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: Tile1Component, isStandalone: true, selector: "div.tile1", ngImport: i0, template: "<sky-tile\n data-sky-id=\"tile-1\"\n helpPopoverContent=\"Sample help information for tile 1.\"\n helpPopoverTitle=\"Sample help content\"\n tileName=\"Tile 1\"\n (settingsClick)=\"tileSettingsClick()\"\n>\n <sky-tile-title> Tile 1 </sky-tile-title>\n <sky-tile-summary> $123.4m </sky-tile-summary>\n <sky-tile-content>\n <sky-tile-content-section data-sky-id=\"section-1\">\n Section 1\n </sky-tile-content-section>\n <sky-tile-content-section> Section 2 </sky-tile-content-section>\n <sky-tile-content-section> Section 3 </sky-tile-content-section>\n </sky-tile-content>\n</sky-tile>\n", dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$e.λ5, selector: "sky-tile-content" }, { kind: "component", type: i1$e.λ4, selector: "sky-tile-content-section" }, { kind: "component", type: i1$e.λ1, selector: "sky-tile", inputs: ["helpKey", "helpPopoverContent", "helpPopoverTitle", "showSettings", "showHelp", "tileName", "isCollapsed"], outputs: ["settingsClick", "isCollapsedChange", "helpClick"] }, { kind: "component", type: i1$e.λ2, selector: "sky-tile-summary" }, { kind: "component", type: i1$e.λ3, selector: "sky-tile-title" }] }); }
14150
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: Tile1Component, isStandalone: true, selector: "div.tile1", ngImport: i0, template: "<sky-tile\n data-sky-id=\"tile-1\"\n helpPopoverContent=\"Sample help information for tile 1.\"\n helpPopoverTitle=\"Sample help content\"\n tileName=\"Tile 1\"\n (settingsClick)=\"tileSettingsClick()\"\n>\n <sky-tile-title> Tile 1 </sky-tile-title>\n <sky-tile-summary> $123.4m </sky-tile-summary>\n <sky-tile-content>\n <sky-tile-content-section data-sky-id=\"section-1\">\n Section 1\n </sky-tile-content-section>\n <sky-tile-content-section> Section 2 </sky-tile-content-section>\n <sky-tile-content-section> Section 3 </sky-tile-content-section>\n </sky-tile-content>\n</sky-tile>\n", dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$f.λ5, selector: "sky-tile-content" }, { kind: "component", type: i1$f.λ4, selector: "sky-tile-content-section" }, { kind: "component", type: i1$f.λ1, selector: "sky-tile", inputs: ["helpKey", "helpPopoverContent", "helpPopoverTitle", "showSettings", "showHelp", "tileName", "isCollapsed"], outputs: ["settingsClick", "isCollapsedChange", "helpClick"] }, { kind: "component", type: i1$f.λ2, selector: "sky-tile-summary" }, { kind: "component", type: i1$f.λ3, selector: "sky-tile-title" }] }); }
13850
14151
  }
13851
14152
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: Tile1Component, decorators: [{
13852
14153
  type: Component,
@@ -13855,7 +14156,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
13855
14156
 
13856
14157
  class Tile2Component {
13857
14158
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: Tile2Component, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
13858
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: Tile2Component, isStandalone: true, selector: "div.tile2", ngImport: i0, template: "<sky-tile helpKey=\"tile-2-help\" tileName=\"Tile 2\" [attr.data-sky-id]=\"'tile-2'\">\n <sky-tile-title> Tile 2 </sky-tile-title>\n <sky-tile-content>\n <sky-tile-content-section> Section 1 </sky-tile-content-section>\n <sky-tile-content-section> Section 2 </sky-tile-content-section>\n <sky-tile-content-section> Section 3 </sky-tile-content-section>\n </sky-tile-content>\n</sky-tile>\n", dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$e.λ5, selector: "sky-tile-content" }, { kind: "component", type: i1$e.λ4, selector: "sky-tile-content-section" }, { kind: "component", type: i1$e.λ1, selector: "sky-tile", inputs: ["helpKey", "helpPopoverContent", "helpPopoverTitle", "showSettings", "showHelp", "tileName", "isCollapsed"], outputs: ["settingsClick", "isCollapsedChange", "helpClick"] }, { kind: "component", type: i1$e.λ3, selector: "sky-tile-title" }] }); }
14159
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: Tile2Component, isStandalone: true, selector: "div.tile2", ngImport: i0, template: "<sky-tile helpKey=\"tile-2-help\" tileName=\"Tile 2\" [attr.data-sky-id]=\"'tile-2'\">\n <sky-tile-title> Tile 2 </sky-tile-title>\n <sky-tile-content>\n <sky-tile-content-section> Section 1 </sky-tile-content-section>\n <sky-tile-content-section> Section 2 </sky-tile-content-section>\n <sky-tile-content-section> Section 3 </sky-tile-content-section>\n </sky-tile-content>\n</sky-tile>\n", dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$f.λ5, selector: "sky-tile-content" }, { kind: "component", type: i1$f.λ4, selector: "sky-tile-content-section" }, { kind: "component", type: i1$f.λ1, selector: "sky-tile", inputs: ["helpKey", "helpPopoverContent", "helpPopoverTitle", "showSettings", "showHelp", "tileName", "isCollapsed"], outputs: ["settingsClick", "isCollapsedChange", "helpClick"] }, { kind: "component", type: i1$f.λ3, selector: "sky-tile-title" }] }); }
13859
14160
  }
13860
14161
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: Tile2Component, decorators: [{
13861
14162
  type: Component,
@@ -13913,7 +14214,7 @@ class TilesBasicExampleComponent {
13913
14214
  };
13914
14215
  }
13915
14216
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: TilesBasicExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
13916
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: TilesBasicExampleComponent, isStandalone: true, selector: "app-tiles-basic-example", ngImport: i0, template: "<sky-tile-dashboard\n data-sky-id=\"basic-dashboard\"\n [(config)]=\"dashboardConfig\"\n/>\n", dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$e.λ7, selector: "sky-tile-dashboard", inputs: ["config", "messageStream", "settingsKey"], outputs: ["configChange"] }] }); }
14217
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: TilesBasicExampleComponent, isStandalone: true, selector: "app-tiles-basic-example", ngImport: i0, template: "<sky-tile-dashboard\n data-sky-id=\"basic-dashboard\"\n [(config)]=\"dashboardConfig\"\n/>\n", dependencies: [{ kind: "ngmodule", type: SkyTilesModule }, { kind: "component", type: i1$f.λ7, selector: "sky-tile-dashboard", inputs: ["config", "messageStream", "settingsKey"], outputs: ["configChange"] }] }); }
13917
14218
  }
13918
14219
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: TilesBasicExampleComponent, decorators: [{
13919
14220
  type: Component,
@@ -14086,5 +14387,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
14086
14387
  * Generated bundle index. Do not edit.
14087
14388
  */
14088
14389
 
14089
- export { ActionBarsSummaryActionBarBasicExampleComponent, ActionBarsSummaryActionBarErrorExampleComponent, ActionBarsSummaryActionBarModalExampleComponent, ActionBarsSummaryActionBarTabExampleComponent, AgGridDataEntryGridBasicExampleComponent, AgGridDataEntryGridDataManagerAddedExampleComponent, AgGridDataEntryGridFocusExampleComponent, AgGridDataEntryGridInlineHelpExampleComponent, AgGridDataGridBasicExampleComponent, AgGridDataGridBasicMultiselectExampleComponent, AgGridDataGridDataManagerExampleComponent, AgGridDataGridDataManagerMultiselectExampleComponent, AgGridDataGridInlineHelpExampleComponent, AgGridDataGridPagingExampleComponent, AgGridDataGridTemplateRefColumnExampleComponent, AgGridDataGridTopScrollExampleComponent, AngularTreeComponentAngularTreeBasicExampleComponent, AngularTreeComponentAngularTreeHelpKeyExampleComponent, AutonumericCurrencyExampleComponent, AutonumericInternationalFormattingExampleComponent, AutonumericOptionsProviderExampleComponent, AutonumericPresetExampleComponent, AvatarExampleComponent, ColorpickerBasicExampleComponent, ColorpickerHelpKeyExampleComponent, ColorpickerProgrammaticExampleComponent, CoreIdExampleComponent, CoreMediaQueryBasicExampleComponent, CoreMediaQueryResponsiveHostExampleComponent, CoreNumericBasicExampleComponent, DataManagerBasicExampleComponent, DatetimeDatePipeBasicExampleComponent, DatetimeDateRangePickerBasicExampleComponent, DatetimeDateRangePickerCustomCalculatorExampleComponent, DatetimeDateRangePickerHelpKeyExampleComponent, DatetimeDatepickerBasicExampleComponent, DatetimeDatepickerCustomDatesExampleComponent, DatetimeDatepickerFuzzyExampleComponent, DatetimeTimepickerBasicExampleComponent, ErrorsErrorEmbeddedExampleComponent, ErrorsErrorModalExampleComponent, FlyoutBasicExampleComponent, FlyoutCustomHeadersExampleComponent, FormsCharacterCountExampleComponent, FormsCheckboxBasicExampleComponent, FormsCheckboxHelpKeyExampleComponent, FormsCheckboxIconGroupExampleComponent, FormsFieldGroupBasicExampleComponent, FormsFieldGroupHelpKeyExampleComponent, FormsFileAttachmentBasicExampleComponent, FormsFileAttachmentHelpKeyExampleComponent, FormsFileDropBasicExampleComponent, FormsFileDropHelpKeyExampleComponent, FormsInputBoxBasicExampleComponent, FormsInputBoxWithCustomFormErrorsExampleComponent, FormsRadioHelpKeyExampleComponent, FormsRadioIconExampleComponent, FormsRadioStandardExampleComponent, FormsSelectionBoxCheckboxExampleComponent, FormsSelectionBoxRadioExampleComponent, FormsToggleSwitchBasicExampleComponent, FormsToggleSwitchHelpKeyExampleComponent, HelpInlineActionClickExampleComponent, HelpInlineHelpKeyExampleComponent, HelpInlinePopoverExampleComponent, IconBasicExampleComponent, IconIconButtonExampleComponent, IndicatorsAlertBasicExampleComponent, IndicatorsIllustrationBasicExampleComponent, IndicatorsKeyInfoBasicExampleComponent, IndicatorsKeyInfoHelpKeyExampleComponent, IndicatorsLabelBasicExampleComponent, IndicatorsStatusIndicatorBasicExampleComponent, IndicatorsStatusIndicatorHelpKeyExampleComponent, IndicatorsTextHighlightBasicExampleComponent, IndicatorsTokensBasicExampleComponent, IndicatorsTokensCustomExampleComponent, IndicatorsWaitElementExampleComponent, IndicatorsWaitPageExampleComponent, InlineFormBasicExampleComponent, InlineFormCustomButtonsExampleComponent, InlineFormRepeatersExampleComponent, LayoutActionButtonBasicExampleComponent, LayoutActionButtonPermalinkExampleComponent, LayoutBackToTopInfiniteScrollExampleComponent, LayoutBackToTopRepeaterExampleComponent, LayoutBoxBasicExampleComponent, LayoutBoxHelpKeyExampleComponent, LayoutCardBasicExampleComponent, LayoutDefinitionListBasicExampleComponent, LayoutDescriptionListHelpKeyExampleComponent, LayoutDescriptionListHorizontalExampleComponent, LayoutDescriptionListInlineHelpExampleComponent, LayoutDescriptionListLongDescriptionExampleComponent, LayoutDescriptionListVerticalExampleComponent, LayoutFluidGridExampleComponent, LayoutFormatExampleComponent, LayoutInlineDeleteCustomExampleComponent, LayoutInlineDeleteRepeaterExampleComponent, LayoutPageLayoutFitExampleComponent, LayoutPageSummaryBasicExampleComponent, LayoutTextExpandInlineExampleComponent, LayoutTextExpandModalExampleComponent, LayoutTextExpandNewlineExampleComponent, LayoutTextExpandRepeaterExampleComponent, LayoutToolbarBasicExampleComponent, LayoutToolbarSectionedExampleComponent, ListsFilterInlineExampleComponent, ListsFilterModalExampleComponent, ListsInfiniteScrollRepeaterExampleComponent, ListsPagingBasicExampleComponent, ListsPagingWithContentExampleComponent, ListsRepeaterAddRemoveExampleComponent, ListsRepeaterBasicExampleComponent, ListsRepeaterInlineFormExampleComponent, ListsSortBasicExampleComponent, LookupAddItemExampleComponent, LookupAutocompleteAdvancedExampleComponent, LookupAutocompleteAnyValueExampleComponent, LookupAutocompleteBasicExampleComponent, LookupAutocompleteCustomSearchExampleComponent, LookupAutocompleteSearchFiltersExampleComponent, LookupCountryFieldBasicExampleComponent, LookupCustomPickerExampleComponent, LookupMultiSelectExampleComponent, LookupResultTemplatesExampleComponent, LookupSearchBasicExampleComponent, LookupSelectionModalAddItemExampleComponent, LookupSelectionModalBasicExampleComponent, LookupSingleSelectExampleComponent, ModalsConfirmBasicWithControllerExampleComponent, ModalsConfirmBasicWithHarnessExampleComponent, ModalsModalBasicWithControllerExampleComponent, ModalsModalBasicWithHarnessExampleComponent, ModalsModalBasicWithHarnessHelpKeyExampleComponent, ModalsModalWithErrorExampleComponent, NavbarExampleComponent, PagesActionHubExampleComponent, PagesPageHomePageBlocksLayoutExampleComponent, PagesPageListPageListLayoutExampleComponent, PagesPageListPageTabsLayoutExampleComponent, PagesPageRecordPageBlocksLayoutExampleComponent, PagesPageRecordPageTabsLayoutExampleComponent, PagesPageSplitViewPageFitLayoutExampleComponent, PhoneFieldBasicExampleComponent, PopoversDropdownBasicExampleComponent, PopoversPopoverBasicExampleComponent, PopoversPopoverProgrammaticExampleComponent, ProgressIndicatorPassiveIndicatorBasicExampleComponent, ProgressIndicatorWaterfallIndicatorBasicExampleComponent, ProgressIndicatorWizardBasicExampleComponent, RouterHrefBasicExampleComponent, SplitViewBasicExampleComponent, SplitViewPageBoundExampleComponent, TabsDynamicAddCloseExampleComponent, TabsDynamicExampleComponent, TabsSectionedFormModalExampleComponent, TabsStaticAddCloseExampleComponent, TabsStaticExampleComponent, TabsVerticalTabsBasicExampleComponent, TabsVerticalTabsGroupedExampleComponent, TabsWizardBasicExampleComponent, TextEditorExampleComponent, TextEditorHelpKeyExampleComponent, TextEditorRichTextDisplayExampleComponent, TilesBasicExampleComponent, ToastBasicExampleComponent, ToastCustomComponentExampleComponent, ValidationEmailValidationControlValidatorExampleComponent, ValidationEmailValidationDirectiveExampleComponent, ValidationUrlValidationControlValidatorExampleComponent, ValidationUrlValidationDirectiveExampleComponent };
14390
+ export { ActionBarsSummaryActionBarBasicExampleComponent, ActionBarsSummaryActionBarErrorExampleComponent, ActionBarsSummaryActionBarModalExampleComponent, ActionBarsSummaryActionBarTabExampleComponent, AgGridDataEntryGridBasicExampleComponent, AgGridDataEntryGridDataManagerAddedExampleComponent, AgGridDataEntryGridFocusExampleComponent, AgGridDataEntryGridInlineHelpExampleComponent, AgGridDataGridBasicExampleComponent, AgGridDataGridBasicMultiselectExampleComponent, AgGridDataGridDataManagerExampleComponent, AgGridDataGridDataManagerMultiselectExampleComponent, AgGridDataGridInlineHelpExampleComponent, AgGridDataGridPagingExampleComponent, AgGridDataGridTemplateRefColumnExampleComponent, AgGridDataGridTopScrollExampleComponent, AngularTreeComponentAngularTreeBasicExampleComponent, AngularTreeComponentAngularTreeHelpKeyExampleComponent, AutonumericCurrencyExampleComponent, AutonumericInternationalFormattingExampleComponent, AutonumericOptionsProviderExampleComponent, AutonumericPresetExampleComponent, AvatarExampleComponent, ColorpickerBasicExampleComponent, ColorpickerHelpKeyExampleComponent, ColorpickerProgrammaticExampleComponent, CoreIdExampleComponent, CoreMediaQueryBasicExampleComponent, CoreMediaQueryResponsiveHostExampleComponent, CoreNumericBasicExampleComponent, DataManagerBasicExampleComponent, DatetimeDatePipeBasicExampleComponent, DatetimeDateRangePickerBasicExampleComponent, DatetimeDateRangePickerCustomCalculatorExampleComponent, DatetimeDateRangePickerHelpKeyExampleComponent, DatetimeDatepickerBasicExampleComponent, DatetimeDatepickerCustomDatesExampleComponent, DatetimeDatepickerFuzzyExampleComponent, DatetimeTimepickerBasicExampleComponent, ErrorsErrorEmbeddedExampleComponent, ErrorsErrorModalExampleComponent, FilterBarBasicExampleComponent, FlyoutBasicExampleComponent, FlyoutCustomHeadersExampleComponent, FormsCharacterCountExampleComponent, FormsCheckboxBasicExampleComponent, FormsCheckboxHelpKeyExampleComponent, FormsCheckboxIconGroupExampleComponent, FormsFieldGroupBasicExampleComponent, FormsFieldGroupHelpKeyExampleComponent, FormsFileAttachmentBasicExampleComponent, FormsFileAttachmentHelpKeyExampleComponent, FormsFileDropBasicExampleComponent, FormsFileDropHelpKeyExampleComponent, FormsInputBoxBasicExampleComponent, FormsInputBoxWithCustomFormErrorsExampleComponent, FormsRadioHelpKeyExampleComponent, FormsRadioIconExampleComponent, FormsRadioStandardExampleComponent, FormsSelectionBoxCheckboxExampleComponent, FormsSelectionBoxRadioExampleComponent, FormsToggleSwitchBasicExampleComponent, FormsToggleSwitchHelpKeyExampleComponent, HelpInlineActionClickExampleComponent, HelpInlineHelpKeyExampleComponent, HelpInlinePopoverExampleComponent, IconBasicExampleComponent, IconIconButtonExampleComponent, IndicatorsAlertBasicExampleComponent, IndicatorsIllustrationBasicExampleComponent, IndicatorsKeyInfoBasicExampleComponent, IndicatorsKeyInfoHelpKeyExampleComponent, IndicatorsLabelBasicExampleComponent, IndicatorsStatusIndicatorBasicExampleComponent, IndicatorsStatusIndicatorHelpKeyExampleComponent, IndicatorsTextHighlightBasicExampleComponent, IndicatorsTokensBasicExampleComponent, IndicatorsTokensCustomExampleComponent, IndicatorsWaitElementExampleComponent, IndicatorsWaitPageExampleComponent, InlineFormBasicExampleComponent, InlineFormCustomButtonsExampleComponent, InlineFormRepeatersExampleComponent, LayoutActionButtonBasicExampleComponent, LayoutActionButtonPermalinkExampleComponent, LayoutBackToTopInfiniteScrollExampleComponent, LayoutBackToTopRepeaterExampleComponent, LayoutBoxBasicExampleComponent, LayoutBoxHelpKeyExampleComponent, LayoutCardBasicExampleComponent, LayoutDefinitionListBasicExampleComponent, LayoutDescriptionListHelpKeyExampleComponent, LayoutDescriptionListHorizontalExampleComponent, LayoutDescriptionListInlineHelpExampleComponent, LayoutDescriptionListLongDescriptionExampleComponent, LayoutDescriptionListVerticalExampleComponent, LayoutFluidGridExampleComponent, LayoutFormatExampleComponent, LayoutInlineDeleteCustomExampleComponent, LayoutInlineDeleteRepeaterExampleComponent, LayoutPageLayoutFitExampleComponent, LayoutPageSummaryBasicExampleComponent, LayoutTextExpandInlineExampleComponent, LayoutTextExpandModalExampleComponent, LayoutTextExpandNewlineExampleComponent, LayoutTextExpandRepeaterExampleComponent, LayoutToolbarBasicExampleComponent, LayoutToolbarSectionedExampleComponent, ListsFilterInlineExampleComponent, ListsFilterModalExampleComponent, ListsInfiniteScrollRepeaterExampleComponent, ListsPagingBasicExampleComponent, ListsPagingWithContentExampleComponent, ListsRepeaterAddRemoveExampleComponent, ListsRepeaterBasicExampleComponent, ListsRepeaterInlineFormExampleComponent, ListsSortBasicExampleComponent, LookupAddItemExampleComponent, LookupAutocompleteAdvancedExampleComponent, LookupAutocompleteAnyValueExampleComponent, LookupAutocompleteBasicExampleComponent, LookupAutocompleteCustomSearchExampleComponent, LookupAutocompleteSearchFiltersExampleComponent, LookupCountryFieldBasicExampleComponent, LookupCustomPickerExampleComponent, LookupMultiSelectExampleComponent, LookupResultTemplatesExampleComponent, LookupSearchBasicExampleComponent, LookupSelectionModalAddItemExampleComponent, LookupSelectionModalBasicExampleComponent, LookupSingleSelectExampleComponent, ModalsConfirmBasicWithControllerExampleComponent, ModalsConfirmBasicWithHarnessExampleComponent, ModalsModalBasicWithControllerExampleComponent, ModalsModalBasicWithHarnessExampleComponent, ModalsModalBasicWithHarnessHelpKeyExampleComponent, ModalsModalWithErrorExampleComponent, NavbarExampleComponent, PagesActionHubExampleComponent, PagesPageHomePageBlocksLayoutExampleComponent, PagesPageListPageListLayoutExampleComponent, PagesPageListPageTabsLayoutExampleComponent, PagesPageRecordPageBlocksLayoutExampleComponent, PagesPageRecordPageTabsLayoutExampleComponent, PagesPageSplitViewPageFitLayoutExampleComponent, PhoneFieldBasicExampleComponent, PopoversDropdownBasicExampleComponent, PopoversPopoverBasicExampleComponent, PopoversPopoverProgrammaticExampleComponent, ProgressIndicatorPassiveIndicatorBasicExampleComponent, ProgressIndicatorWaterfallIndicatorBasicExampleComponent, ProgressIndicatorWizardBasicExampleComponent, RouterHrefBasicExampleComponent, SplitViewBasicExampleComponent, SplitViewPageBoundExampleComponent, TabsDynamicAddCloseExampleComponent, TabsDynamicExampleComponent, TabsSectionedFormModalExampleComponent, TabsStaticAddCloseExampleComponent, TabsStaticExampleComponent, TabsVerticalTabsBasicExampleComponent, TabsVerticalTabsGroupedExampleComponent, TabsWizardBasicExampleComponent, TextEditorExampleComponent, TextEditorHelpKeyExampleComponent, TextEditorRichTextDisplayExampleComponent, TilesBasicExampleComponent, ToastBasicExampleComponent, ToastCustomComponentExampleComponent, ValidationEmailValidationControlValidatorExampleComponent, ValidationEmailValidationDirectiveExampleComponent, ValidationUrlValidationControlValidatorExampleComponent, ValidationUrlValidationDirectiveExampleComponent };
14090
14391
  //# sourceMappingURL=skyux-code-examples.mjs.map