@flywheel-io/vision 0.4.2 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/README.md +1 -19
  2. package/assets/fonts/Flywheel-Vision-Icons.svg +239 -0
  3. package/assets/fonts/Flywheel-Vision-Icons.ttf +0 -0
  4. package/assets/fonts/Flywheel-Vision-Icons.woff +0 -0
  5. package/bundles/flywheel-io-vision-elements.umd.js +40 -16
  6. package/bundles/flywheel-io-vision-elements.umd.js.map +1 -1
  7. package/bundles/flywheel-io-vision.umd.js +884 -662
  8. package/bundles/flywheel-io-vision.umd.js.map +1 -1
  9. package/components/button/button.component.d.ts +3 -0
  10. package/components/button/button.module.d.ts +7 -0
  11. package/components/button-group/button-group.component.d.ts +3 -0
  12. package/components/button-group/button-group.module.d.ts +5 -0
  13. package/components/dialog/choice-dialog.component.d.ts +3 -0
  14. package/components/dialog/confirm-dialog.component.d.ts +3 -0
  15. package/components/dialog/dialog.module.d.ts +14 -0
  16. package/components/dialog/dialog.service.d.ts +3 -0
  17. package/components/dialog/error-dialog.component.d.ts +3 -0
  18. package/components/dialog/portal-dialog.component.d.ts +3 -0
  19. package/components/icon/icon.component.d.ts +5 -0
  20. package/components/icon/icon.module.d.ts +8 -0
  21. package/components/notification/notification/notification.component.d.ts +3 -0
  22. package/components/notification/notification-container/notification-container.component.d.ts +3 -0
  23. package/components/notification/notification.module.d.ts +11 -0
  24. package/components/notification/notification.service.d.ts +3 -0
  25. package/components/popover/popover-trigger.component.d.ts +3 -0
  26. package/components/popover/popover-trigger.directive.d.ts +3 -0
  27. package/components/popover/popover.component.d.ts +3 -0
  28. package/components/popover/popover.module.d.ts +8 -0
  29. package/components/shared/pipes/pipes.module.d.ts +6 -0
  30. package/components/shared/pipes/translate.pipe.d.ts +3 -0
  31. package/components/shared/pipes/trusthtml.pipe.d.ts +3 -0
  32. package/components/shared/translation.service.d.ts +3 -0
  33. package/components/table/table.component.d.ts +3 -0
  34. package/components/table/table.module.d.ts +12 -0
  35. package/elements/flywheel-io-vision-elements.d.ts +1 -0
  36. package/elements/package.json +0 -1
  37. package/esm2015/components/button/button.component.js +29 -21
  38. package/esm2015/components/button/button.module.js +27 -18
  39. package/esm2015/components/button-group/button-group.component.js +24 -20
  40. package/esm2015/components/button-group/button-group.module.js +19 -14
  41. package/esm2015/components/dialog/choice-dialog.component.js +41 -15
  42. package/esm2015/components/dialog/confirm-dialog.component.js +33 -16
  43. package/esm2015/components/dialog/dialog.module.js +58 -31
  44. package/esm2015/components/dialog/dialog.service.js +8 -8
  45. package/esm2015/components/dialog/error-dialog.component.js +30 -17
  46. package/esm2015/components/dialog/portal-dialog.component.js +43 -18
  47. package/esm2015/components/icon/icon.component.js +19 -0
  48. package/esm2015/components/icon/icon.module.js +26 -0
  49. package/esm2015/components/notification/notification/notification.component.js +31 -26
  50. package/esm2015/components/notification/notification-container/notification-container.component.js +25 -21
  51. package/esm2015/components/notification/notification.module.js +45 -26
  52. package/esm2015/components/notification/notification.service.js +9 -7
  53. package/esm2015/components/popover/popover-trigger.component.js +32 -25
  54. package/esm2015/components/popover/popover-trigger.directive.js +24 -23
  55. package/esm2015/components/popover/popover.component.js +25 -13
  56. package/esm2015/components/popover/popover.module.js +38 -25
  57. package/esm2015/components/shared/pipes/pipes.module.js +25 -13
  58. package/esm2015/components/shared/pipes/translate.pipe.js +12 -13
  59. package/esm2015/components/shared/pipes/trusthtml.pipe.js +12 -11
  60. package/esm2015/components/shared/translation.service.js +7 -4
  61. package/esm2015/components/table/table.component.js +45 -26
  62. package/esm2015/components/table/table.module.js +45 -24
  63. package/esm2015/elements/elements.js +19 -14
  64. package/esm2015/flywheel-io-vision.js +1 -5
  65. package/esm2015/public-api.js +3 -1
  66. package/fesm2015/flywheel-io-vision-elements.js +18 -13
  67. package/fesm2015/flywheel-io-vision-elements.js.map +1 -1
  68. package/fesm2015/flywheel-io-vision.js +775 -524
  69. package/fesm2015/flywheel-io-vision.js.map +1 -1
  70. package/flywheel-io-vision.d.ts +1 -4
  71. package/package.json +11 -12
  72. package/public-api.d.ts +2 -0
  73. package/scss/atoms/cards.scss +12 -0
  74. package/scss/atoms/grid.scss +21 -0
  75. package/scss/atoms/typography.scss +16 -0
  76. package/scss/icons/_icon-font-face.scss +10 -0
  77. package/scss/icons/_icon-glyphs.scss +370 -0
  78. package/scss/icons/icons.scss +3 -0
  79. package/styles.css +118 -108
  80. package/styles.scss +3 -3
  81. package/bundles/flywheel-io-vision-elements.umd.min.js +0 -2
  82. package/bundles/flywheel-io-vision-elements.umd.min.js.map +0 -1
  83. package/bundles/flywheel-io-vision.umd.min.js +0 -2
  84. package/bundles/flywheel-io-vision.umd.min.js.map +0 -1
  85. package/elements/flywheel-io-vision-elements.metadata.json +0 -1
  86. package/flywheel-io-vision.metadata.json +0 -1
@@ -1,2 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./button.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/button";
1
5
  export declare class FwButtonModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwButtonModule, [typeof i1.FwButtonComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule], [typeof i1.FwButtonComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwButtonModule>;
2
9
  }
@@ -1,4 +1,7 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class FwButtonGroupComponent {
2
3
  layout?: 'basic' | 'compact';
3
4
  size?: 'small' | 'medium' | 'large';
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonGroupComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwButtonGroupComponent, "fw-button-group", never, { "layout": "layout"; "size": "size"; }, {}, never, ["*"]>;
4
7
  }
@@ -1,2 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./button-group.component";
1
3
  export declare class FwButtonGroupModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonGroupModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwButtonGroupModule, [typeof i1.FwButtonGroupComponent], never, [typeof i1.FwButtonGroupComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwButtonGroupModule>;
2
7
  }
@@ -1,4 +1,5 @@
1
1
  import { ThemePalette } from '@angular/material/core';
2
+ import * as i0 from "@angular/core";
2
3
  interface Choice {
3
4
  color?: ThemePalette;
4
5
  label: string;
@@ -20,5 +21,7 @@ export declare class FwChoiceDialog {
20
21
  title: string;
21
22
  constructor(data: FwChoiceDialogData);
22
23
  getTestId(choice: any): string;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwChoiceDialog, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwChoiceDialog, "fw-choice-dialog", never, {}, {}, never, never>;
23
26
  }
24
27
  export {};
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export interface FwConfirmDialogData {
2
3
  title?: string;
3
4
  content?: string;
@@ -9,4 +10,6 @@ export declare class FwConfirmDialog {
9
10
  content: string;
10
11
  html: string;
11
12
  constructor(data: FwConfirmDialogData);
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwConfirmDialog, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwConfirmDialog, "fw-confirm-dialog", never, {}, {}, never, never>;
12
15
  }
@@ -1,2 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./choice-dialog.component";
3
+ import * as i2 from "./confirm-dialog.component";
4
+ import * as i3 from "./error-dialog.component";
5
+ import * as i4 from "./portal-dialog.component";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "@angular/material/button";
8
+ import * as i7 from "@angular/material/dialog";
9
+ import * as i8 from "@angular/material/icon";
10
+ import * as i9 from "../shared/pipes/pipes.module";
11
+ import * as i10 from "@angular/cdk/portal";
1
12
  export declare class FwDialogModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwDialogModule, [typeof i1.FwChoiceDialog, typeof i2.FwConfirmDialog, typeof i3.FwErrorDialog, typeof i4.FwPortalDialog], [typeof i5.CommonModule, typeof i6.MatButtonModule, typeof i7.MatDialogModule, typeof i8.MatIconModule, typeof i9.PipesModule, typeof i10.PortalModule], never>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwDialogModule>;
2
16
  }
@@ -1,5 +1,6 @@
1
1
  import { Type } from '@angular/core';
2
2
  import { MatDialog, MatDialogConfig, MatDialogRef } from '@angular/material/dialog';
3
+ import * as i0 from "@angular/core";
3
4
  export declare type StackingStrategy = 'allow' | 'replace' | 'ignore';
4
5
  export interface DialogConfig<T> extends MatDialogConfig<T> {
5
6
  multi: StackingStrategy;
@@ -16,4 +17,6 @@ export declare class FwDialogService {
16
17
  closeAll(component?: Type<unknown>): void;
17
18
  open<T, D, R>(component: Type<T>, config?: MatDialogConfig<D>): MatDialogRef<T, R>;
18
19
  registerDialog(component: Type<unknown>, config: DialogConfig<unknown>): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<FwDialogService>;
19
22
  }
@@ -1,4 +1,5 @@
1
1
  import { MatDialogRef } from '@angular/material/dialog';
2
+ import * as i0 from "@angular/core";
2
3
  export interface FwErrorDialogData {
3
4
  message: string;
4
5
  }
@@ -7,4 +8,6 @@ export declare class FwErrorDialog {
7
8
  private ref;
8
9
  message: string;
9
10
  constructor(data: FwErrorDialogData, ref: MatDialogRef<FwErrorDialog>);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwErrorDialog, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwErrorDialog, "fw-error-dialog", never, {}, {}, never, never>;
10
13
  }
@@ -1,5 +1,6 @@
1
1
  import { CdkPortalOutletAttachedRef, ComponentType, Portal } from '@angular/cdk/portal';
2
2
  import { OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  interface ComponentSpec {
4
5
  type: ComponentType<unknown>;
5
6
  inputs?: Record<string, unknown>;
@@ -21,5 +22,7 @@ export declare class FwPortalDialog implements OnDestroy {
21
22
  constructor(data: FwPortalDialogData, viewContainerRef: ViewContainerRef);
22
23
  ngOnDestroy(): void;
23
24
  attached(ref: CdkPortalOutletAttachedRef): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwPortalDialog, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwPortalDialog, "fw-portal-dialog", never, {}, {}, never, never>;
24
27
  }
25
28
  export {};
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FwIconComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwIconComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwIconComponent, "fw-icon", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./icon.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class FwIconModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwIconModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwIconModule, [typeof i1.FwIconComponent], [typeof i2.CommonModule], [typeof i1.FwIconComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwIconModule>;
8
+ }
@@ -1,6 +1,7 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, EventEmitter } from '@angular/core';
2
2
  import { FwNotificationTimerService } from '../notification-timer.service';
3
3
  import { Notification } from './notification.model';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class FwNotificationComponent implements AfterViewInit {
5
6
  private cdr;
6
7
  private timerService;
@@ -14,4 +15,6 @@ export declare class FwNotificationComponent implements AfterViewInit {
14
15
  startTimer(): void;
15
16
  stopTimer(): void;
16
17
  onClickDismiss(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwNotificationComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwNotificationComponent, "fw-notification", never, { "notification": "notification"; "notificationDuration": "notificationDuration"; }, { "ready": "ready"; "dismiss": "dismiss"; }, never, never>;
17
20
  }
@@ -2,6 +2,7 @@ import { ChangeDetectorRef, OnDestroy } from '@angular/core';
2
2
  import { FwNotificationService } from '../notification.service';
3
3
  import { FwNotificationComponent } from '../notification/notification.component';
4
4
  import { Notification } from '../notification/notification.model';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FwNotificationContainerComponent implements OnDestroy {
6
7
  private cdr;
7
8
  private notificationService;
@@ -18,4 +19,6 @@ export declare class FwNotificationContainerComponent implements OnDestroy {
18
19
  clearAll(): void;
19
20
  onShowMore(): void;
20
21
  onShowLess(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwNotificationContainerComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwNotificationContainerComponent, "fw-notification-container", never, {}, {}, never, never>;
21
24
  }
@@ -1,2 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./notification/notification.component";
3
+ import * as i2 from "./notification-container/notification-container.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../button/button.module";
6
+ import * as i5 from "../button-group/button-group.module";
7
+ import * as i6 from "@angular/material/button";
8
+ import * as i7 from "@angular/material/icon";
1
9
  export declare class FwNotificationModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwNotificationModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwNotificationModule, [typeof i1.FwNotificationComponent, typeof i2.FwNotificationContainerComponent], [typeof i3.CommonModule, typeof i4.FwButtonModule, typeof i5.FwButtonGroupModule, typeof i6.MatButtonModule, typeof i7.MatIconModule], [typeof i1.FwNotificationComponent, typeof i2.FwNotificationContainerComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwNotificationModule>;
2
13
  }
@@ -1,5 +1,6 @@
1
1
  import { BehaviorSubject } from 'rxjs';
2
2
  import { Notification } from './notification/notification.model';
3
+ import * as i0 from "@angular/core";
3
4
  export declare function genId(): string;
4
5
  export declare class FwNotificationService {
5
6
  readonly notifications$: BehaviorSubject<Notification[]>;
@@ -7,4 +8,6 @@ export declare class FwNotificationService {
7
8
  show(notification: Notification): void;
8
9
  dismiss(notificationId: string): void;
9
10
  dismissAll(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwNotificationService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<FwNotificationService>;
10
13
  }
@@ -2,6 +2,7 @@ import { Overlay } from '@angular/cdk/overlay';
2
2
  import { TemplateRef } from '@angular/core';
3
3
  import { ElementRef, ViewContainerRef } from '@angular/core';
4
4
  import { FwPopoverPosition, FwPopoverTriggerDirective } from './popover-trigger.directive';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FwPopoverTriggerComponent extends FwPopoverTriggerDirective {
6
7
  element: ElementRef;
7
8
  overlay: Overlay;
@@ -12,4 +13,6 @@ export declare class FwPopoverTriggerComponent extends FwPopoverTriggerDirective
12
13
  popoverHTML: string;
13
14
  constructor(element: ElementRef, overlay: Overlay, viewContainerRef: ViewContainerRef);
14
15
  showPopover(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwPopoverTriggerComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwPopoverTriggerComponent, "fw-popover-trigger", never, { "popoverId": "trigger-for"; "position": "position"; }, {}, never, ["*"]>;
15
18
  }
@@ -1,6 +1,7 @@
1
1
  import { Overlay, OverlayRef } from '@angular/cdk/overlay';
2
2
  import { ElementRef, OnChanges, OnDestroy, SimpleChanges, ViewContainerRef } from '@angular/core';
3
3
  import { FwPopoverComponent } from './popover.component';
4
+ import * as i0 from "@angular/core";
4
5
  export declare type FwPopoverPosition = 'left' | 'right' | 'above' | 'below' | 'before' | 'after';
5
6
  export declare class FwPopoverTriggerDirective implements OnChanges, OnDestroy {
6
7
  element: ElementRef;
@@ -26,4 +27,6 @@ export declare class FwPopoverTriggerDirective implements OnChanges, OnDestroy {
26
27
  private getMainPosition;
27
28
  private getFallbackPosition;
28
29
  private getPositions;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwPopoverTriggerDirective, never>;
31
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FwPopoverTriggerDirective, "[fwPopoverTriggerFor]", ["fwPopoverTrigger"], { "popover": "fwPopoverTriggerFor"; "position": "fwPopoverPosition"; }, {}, never>;
29
32
  }
@@ -1,4 +1,7 @@
1
1
  import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class FwPopoverComponent {
3
4
  templateRef: TemplateRef<any>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwPopoverComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwPopoverComponent, "fw-popover", never, {}, {}, never, ["*"]>;
4
7
  }
@@ -1,2 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./popover.component";
3
+ import * as i2 from "./popover-trigger.component";
4
+ import * as i3 from "./popover-trigger.directive";
5
+ import * as i4 from "@angular/common";
1
6
  export declare class FwPopoverModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwPopoverModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwPopoverModule, [typeof i1.FwPopoverComponent, typeof i2.FwPopoverTriggerComponent, typeof i3.FwPopoverTriggerDirective], [typeof i4.CommonModule], [typeof i1.FwPopoverComponent, typeof i2.FwPopoverTriggerComponent, typeof i3.FwPopoverTriggerDirective]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwPopoverModule>;
2
10
  }
@@ -1,4 +1,10 @@
1
1
  import { TranslationService } from '../translation.service';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./translate.pipe";
4
+ import * as i2 from "./trusthtml.pipe";
2
5
  export declare class PipesModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<PipesModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PipesModule, [typeof i1.TranslatePipe, typeof i2.TrustHtmlPipe], never, [typeof i1.TranslatePipe, typeof i2.TrustHtmlPipe]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<PipesModule>;
3
9
  }
4
10
  export { TranslationService };
@@ -1,6 +1,7 @@
1
1
  import { ChangeDetectorRef, OnDestroy } from '@angular/core';
2
2
  import { PipeTransform } from '@angular/core';
3
3
  import { TranslationService } from '../translation.service';
4
+ import * as i0 from "@angular/core";
4
5
  /**
5
6
  * Translate a message given a nested key to a location in the loaded locale copy.
6
7
  */
@@ -12,4 +13,6 @@ export declare class TranslatePipe implements PipeTransform, OnDestroy {
12
13
  constructor(cdr: ChangeDetectorRef, translationService: TranslationService);
13
14
  ngOnDestroy(): void;
14
15
  transform(key: string, silent?: boolean): string;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<TranslatePipe, never>;
17
+ static ɵpipe: i0.ɵɵPipeDeclaration<TranslatePipe, "translate">;
15
18
  }
@@ -1,7 +1,10 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class TrustHtmlPipe implements PipeTransform {
4
5
  private sanitizer;
5
6
  constructor(sanitizer: DomSanitizer);
6
7
  transform(html: string): SafeHtml;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TrustHtmlPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<TrustHtmlPipe, "trusthtml">;
7
10
  }
@@ -1,4 +1,5 @@
1
1
  import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
2
3
  export declare abstract class TranslationService {
3
4
  abstract getMessage(key: string, silent?: boolean): Observable<string>;
4
5
  }
@@ -8,4 +9,6 @@ export declare abstract class TranslationService {
8
9
  export declare class MinimalTranslationService implements TranslationService {
9
10
  private static messages;
10
11
  getMessage(key: string, silent?: boolean): Observable<string>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<MinimalTranslationService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<MinimalTranslationService>;
11
14
  }
@@ -3,6 +3,7 @@ import { FormGroup } from '@angular/forms';
3
3
  import { MatPaginator } from '@angular/material/paginator';
4
4
  import { MatSort } from '@angular/material/sort';
5
5
  import { MatTableDataSource } from '@angular/material/table';
6
+ import * as i0 from "@angular/core";
6
7
  interface ColumnFilter {
7
8
  control: 'input' | 'select' | 'multi-select';
8
9
  options?: string[];
@@ -45,5 +46,7 @@ export declare class FwTableComponent implements OnInit, OnChanges {
45
46
  onInputFilter(event: KeyboardEvent, column: Column): void;
46
47
  onSelectFilter(event: MouseEvent, column: Column): void;
47
48
  onMultiSelectFilter(event: MouseEvent, column: Column): void;
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTableComponent, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTableComponent, "fw-table", never, { "columns": "columns"; "dataSource": "dataSource"; "layout": "layout"; "pageSize": "pageSize"; "webCompPageSize": "page-size"; "sort": "sort"; }, {}, never, never>;
48
51
  }
49
52
  export {};
@@ -1,2 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./table.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "@angular/material/input";
6
+ import * as i5 from "@angular/material/paginator";
7
+ import * as i6 from "@angular/material/select";
8
+ import * as i7 from "@angular/material/sort";
9
+ import * as i8 from "@angular/material/table";
1
10
  export declare class FwTableModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTableModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwTableModule, [typeof i1.FwTableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.MatInputModule, typeof i5.MatPaginatorModule, typeof i6.MatSelectModule, typeof i7.MatSortModule, typeof i8.MatTableModule], [typeof i1.FwTableComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwTableModule>;
2
14
  }
@@ -1,4 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@flywheel-io/vision/elements" />
4
5
  export * from './public-api';
@@ -5,7 +5,6 @@
5
5
  "esm2015": "../esm2015/elements/flywheel-io-vision-elements.js",
6
6
  "fesm2015": "../fesm2015/flywheel-io-vision-elements.js",
7
7
  "typings": "flywheel-io-vision-elements.d.ts",
8
- "metadata": "flywheel-io-vision-elements.metadata.json",
9
8
  "sideEffects": false,
10
9
  "name": "@flywheel-io/vision/elements"
11
10
  }
@@ -1,4 +1,7 @@
1
1
  import { Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/material/button";
4
+ import * as i2 from "@angular/common";
2
5
  export class FwButtonComponent {
3
6
  constructor() {
4
7
  this.layout = 'basic';
@@ -6,24 +9,29 @@ export class FwButtonComponent {
6
9
  this.type = 'basic';
7
10
  }
8
11
  }
9
- FwButtonComponent.decorators = [
10
- { type: Component, args: [{
11
- host: {
12
- 'class': 'fw-button',
13
- '[class.small]': 'size === "small"',
14
- '[class.medium]': 'size === "medium"',
15
- '[class.large]': 'size === "large"',
16
- '[class.compact]': 'layout === "compact"',
17
- },
18
- selector: 'fw-button',
19
- template: "<ng-container [ngSwitch]=\"type\">\n <button *ngSwitchCase=\"'raised'\" mat-raised-button [color]=\"color\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </button>\n <button *ngSwitchCase=\"'stroked'\" mat-stroked-button [color]=\"color\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </button>\n <button *ngSwitchCase=\"'flat'\" mat-flat-button [color]=\"color\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </button>\n <button *ngSwitchDefault mat-button [color]=\"color\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </button>\n</ng-container>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n",
20
- styles: [":host.compact>button{line-height:24px}:host.small{font-size:12px}:host.medium{font-size:14px}:host.large{font-size:18px}button{font-size:inherit}"]
21
- },] }
22
- ];
23
- FwButtonComponent.propDecorators = {
24
- color: [{ type: Input }],
25
- layout: [{ type: Input }],
26
- size: [{ type: Input }],
27
- type: [{ type: Input }]
28
- };
29
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2J1dHRvbi9idXR0b24uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBZWpELE1BQU0sT0FBTyxpQkFBaUI7SUFaOUI7UUFjVyxXQUFNLEdBQXlCLE9BQU8sQ0FBQTtRQUN0QyxTQUFJLEdBQWtDLFFBQVEsQ0FBQTtRQUM5QyxTQUFJLEdBQTZDLE9BQU8sQ0FBQTtJQUNuRSxDQUFDOzs7WUFqQkEsU0FBUyxTQUFDO2dCQUNULElBQUksRUFBRTtvQkFDSixPQUFPLEVBQUUsV0FBVztvQkFDcEIsZUFBZSxFQUFFLGtCQUFrQjtvQkFDbkMsZ0JBQWdCLEVBQUUsbUJBQW1CO29CQUNyQyxlQUFlLEVBQUUsa0JBQWtCO29CQUNuQyxpQkFBaUIsRUFBRSxzQkFBc0I7aUJBQzFDO2dCQUNELFFBQVEsRUFBRSxXQUFXO2dCQUVyQix5dEJBQXNDOzthQUN2Qzs7O29CQUVFLEtBQUs7cUJBQ0wsS0FBSzttQkFDTCxLQUFLO21CQUNMLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgdHlwZSB7IFRoZW1lUGFsZXR0ZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgaG9zdDoge1xuICAgICdjbGFzcyc6ICdmdy1idXR0b24nLFxuICAgICdbY2xhc3Muc21hbGxdJzogJ3NpemUgPT09IFwic21hbGxcIicsXG4gICAgJ1tjbGFzcy5tZWRpdW1dJzogJ3NpemUgPT09IFwibWVkaXVtXCInLFxuICAgICdbY2xhc3MubGFyZ2VdJzogJ3NpemUgPT09IFwibGFyZ2VcIicsXG4gICAgJ1tjbGFzcy5jb21wYWN0XSc6ICdsYXlvdXQgPT09IFwiY29tcGFjdFwiJyxcbiAgfSxcbiAgc2VsZWN0b3I6ICdmdy1idXR0b24nLFxuICBzdHlsZVVybHM6IFsnLi9idXR0b24uY29tcG9uZW50LnNjc3MnXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2J1dHRvbi5jb21wb25lbnQuaHRtbCcsXG59KVxuZXhwb3J0IGNsYXNzIEZ3QnV0dG9uQ29tcG9uZW50IHtcbiAgQElucHV0KCkgY29sb3I/OiBUaGVtZVBhbGV0dGVcbiAgQElucHV0KCkgbGF5b3V0PzogJ2Jhc2ljJyB8ICdjb21wYWN0JyA9ICdiYXNpYydcbiAgQElucHV0KCkgc2l6ZT86ICdzbWFsbCcgfCAnbWVkaXVtJyB8ICdsYXJnZScgPSAnbWVkaXVtJ1xuICBASW5wdXQoKSB0eXBlPzogJ2Jhc2ljJyB8ICdmbGF0JyB8ICdyYWlzZWQnIHwgJ3N0cm9rZWQnID0gJ2Jhc2ljJ1xufVxuIl19
12
+ FwButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
13
+ FwButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: FwButtonComponent, selector: "fw-button", inputs: { color: "color", layout: "layout", size: "size", type: "type" }, host: { properties: { "class.small": "size === \"small\"", "class.medium": "size === \"medium\"", "class.large": "size === \"large\"", "class.compact": "layout === \"compact\"" }, classAttribute: "fw-button" }, ngImport: i0, template: "<ng-container [ngSwitch]=\"type\">\n <button *ngSwitchCase=\"'raised'\" mat-raised-button [color]=\"color\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </button>\n <button *ngSwitchCase=\"'stroked'\" mat-stroked-button [color]=\"color\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </button>\n <button *ngSwitchCase=\"'flat'\" mat-flat-button [color]=\"color\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </button>\n <button *ngSwitchDefault mat-button [color]=\"color\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </button>\n</ng-container>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n", styles: [":host.compact>button{line-height:24px}:host.small{font-size:12px}:host.medium{font-size:14px}:host.large{font-size:18px}button{font-size:inherit}\n"], components: [{ type: i1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: i2.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i2.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.NgSwitchDefault, selector: "[ngSwitchDefault]" }] });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonComponent, decorators: [{
15
+ type: Component,
16
+ args: [{
17
+ host: {
18
+ 'class': 'fw-button',
19
+ '[class.small]': 'size === "small"',
20
+ '[class.medium]': 'size === "medium"',
21
+ '[class.large]': 'size === "large"',
22
+ '[class.compact]': 'layout === "compact"',
23
+ },
24
+ selector: 'fw-button',
25
+ styleUrls: ['./button.component.scss'],
26
+ templateUrl: './button.component.html',
27
+ }]
28
+ }], propDecorators: { color: [{
29
+ type: Input
30
+ }], layout: [{
31
+ type: Input
32
+ }], size: [{
33
+ type: Input
34
+ }], type: [{
35
+ type: Input
36
+ }] } });
37
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2J1dHRvbi9idXR0b24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYnV0dG9uL2J1dHRvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7OztBQWVqRCxNQUFNLE9BQU8saUJBQWlCO0lBWjlCO1FBY1csV0FBTSxHQUF5QixPQUFPLENBQUE7UUFDdEMsU0FBSSxHQUFrQyxRQUFRLENBQUE7UUFDOUMsU0FBSSxHQUE2QyxPQUFPLENBQUE7S0FDbEU7OytHQUxZLGlCQUFpQjttR0FBakIsaUJBQWlCLDhVQ2Y5Qiwrc0JBa0JBOzRGREhhLGlCQUFpQjtrQkFaN0IsU0FBUzttQkFBQztvQkFDVCxJQUFJLEVBQUU7d0JBQ0osT0FBTyxFQUFFLFdBQVc7d0JBQ3BCLGVBQWUsRUFBRSxrQkFBa0I7d0JBQ25DLGdCQUFnQixFQUFFLG1CQUFtQjt3QkFDckMsZUFBZSxFQUFFLGtCQUFrQjt3QkFDbkMsaUJBQWlCLEVBQUUsc0JBQXNCO3FCQUMxQztvQkFDRCxRQUFRLEVBQUUsV0FBVztvQkFDckIsU0FBUyxFQUFFLENBQUMseUJBQXlCLENBQUM7b0JBQ3RDLFdBQVcsRUFBRSx5QkFBeUI7aUJBQ3ZDOzhCQUVVLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB0eXBlIHsgVGhlbWVQYWxldHRlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBob3N0OiB7XG4gICAgJ2NsYXNzJzogJ2Z3LWJ1dHRvbicsXG4gICAgJ1tjbGFzcy5zbWFsbF0nOiAnc2l6ZSA9PT0gXCJzbWFsbFwiJyxcbiAgICAnW2NsYXNzLm1lZGl1bV0nOiAnc2l6ZSA9PT0gXCJtZWRpdW1cIicsXG4gICAgJ1tjbGFzcy5sYXJnZV0nOiAnc2l6ZSA9PT0gXCJsYXJnZVwiJyxcbiAgICAnW2NsYXNzLmNvbXBhY3RdJzogJ2xheW91dCA9PT0gXCJjb21wYWN0XCInLFxuICB9LFxuICBzZWxlY3RvcjogJ2Z3LWJ1dHRvbicsXG4gIHN0eWxlVXJsczogWycuL2J1dHRvbi5jb21wb25lbnQuc2NzcyddLFxuICB0ZW1wbGF0ZVVybDogJy4vYnV0dG9uLmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgRndCdXR0b25Db21wb25lbnQge1xuICBASW5wdXQoKSBjb2xvcj86IFRoZW1lUGFsZXR0ZVxuICBASW5wdXQoKSBsYXlvdXQ/OiAnYmFzaWMnIHwgJ2NvbXBhY3QnID0gJ2Jhc2ljJ1xuICBASW5wdXQoKSBzaXplPzogJ3NtYWxsJyB8ICdtZWRpdW0nIHwgJ2xhcmdlJyA9ICdtZWRpdW0nXG4gIEBJbnB1dCgpIHR5cGU/OiAnYmFzaWMnIHwgJ2ZsYXQnIHwgJ3JhaXNlZCcgfCAnc3Ryb2tlZCcgPSAnYmFzaWMnXG59XG4iLCI8bmctY29udGFpbmVyIFtuZ1N3aXRjaF09XCJ0eXBlXCI+XG4gIDxidXR0b24gKm5nU3dpdGNoQ2FzZT1cIidyYWlzZWQnXCIgbWF0LXJhaXNlZC1idXR0b24gW2NvbG9yXT1cImNvbG9yXCI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImNvbnRlbnRcIj48L25nLWNvbnRhaW5lcj5cbiAgPC9idXR0b24+XG4gIDxidXR0b24gKm5nU3dpdGNoQ2FzZT1cIidzdHJva2VkJ1wiIG1hdC1zdHJva2VkLWJ1dHRvbiBbY29sb3JdPVwiY29sb3JcIj5cbiAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiY29udGVudFwiPjwvbmctY29udGFpbmVyPlxuICA8L2J1dHRvbj5cbiAgPGJ1dHRvbiAqbmdTd2l0Y2hDYXNlPVwiJ2ZsYXQnXCIgbWF0LWZsYXQtYnV0dG9uIFtjb2xvcl09XCJjb2xvclwiPlxuICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJjb250ZW50XCI+PC9uZy1jb250YWluZXI+XG4gIDwvYnV0dG9uPlxuICA8YnV0dG9uICpuZ1N3aXRjaERlZmF1bHQgbWF0LWJ1dHRvbiBbY29sb3JdPVwiY29sb3JcIj5cbiAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiY29udGVudFwiPjwvbmctY29udGFpbmVyPlxuICA8L2J1dHRvbj5cbjwvbmctY29udGFpbmVyPlxuXG48bmctdGVtcGxhdGUgI2NvbnRlbnQ+XG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbjwvbmctdGVtcGxhdGU+XG4iXX0=
@@ -2,23 +2,32 @@ import { CommonModule } from '@angular/common';
2
2
  import { NgModule } from '@angular/core';
3
3
  import { MatButtonModule } from '@angular/material/button';
4
4
  import { FwButtonComponent } from './button.component';
5
+ import * as i0 from "@angular/core";
5
6
  export class FwButtonModule {
6
7
  }
7
- FwButtonModule.decorators = [
8
- { type: NgModule, args: [{
9
- imports: [
10
- CommonModule,
11
- MatButtonModule,
12
- ],
13
- exports: [
14
- FwButtonComponent,
15
- ],
16
- declarations: [
17
- FwButtonComponent,
18
- ],
19
- entryComponents: [
20
- FwButtonComponent,
21
- ],
22
- },] }
23
- ];
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2J1dHRvbi9idXR0b24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUUzRCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQWlCdkQsTUFBTSxPQUFPLGNBQWM7OztZQWYxQixRQUFRLFNBQUM7Z0JBQ1IsT0FBTyxFQUFFO29CQUNQLFlBQVk7b0JBQ1osZUFBZTtpQkFDaEI7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLGlCQUFpQjtpQkFDbEI7Z0JBQ0QsWUFBWSxFQUFFO29CQUNaLGlCQUFpQjtpQkFDbEI7Z0JBQ0QsZUFBZSxFQUFFO29CQUNmLGlCQUFpQjtpQkFDbEI7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTWF0QnV0dG9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYnV0dG9uJztcblxuaW1wb3J0IHsgRndCdXR0b25Db21wb25lbnQgfSBmcm9tICcuL2J1dHRvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIE1hdEJ1dHRvbk1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIEZ3QnV0dG9uQ29tcG9uZW50LFxuICBdLFxuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBGd0J1dHRvbkNvbXBvbmVudCxcbiAgXSxcbiAgZW50cnlDb21wb25lbnRzOiBbXG4gICAgRndCdXR0b25Db21wb25lbnQsXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIEZ3QnV0dG9uTW9kdWxlIHt9XG4iXX0=
8
+ FwButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9
+ FwButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonModule, declarations: [FwButtonComponent], imports: [CommonModule,
10
+ MatButtonModule], exports: [FwButtonComponent] });
11
+ FwButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonModule, imports: [[
12
+ CommonModule,
13
+ MatButtonModule,
14
+ ]] });
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonModule, decorators: [{
16
+ type: NgModule,
17
+ args: [{
18
+ imports: [
19
+ CommonModule,
20
+ MatButtonModule,
21
+ ],
22
+ exports: [
23
+ FwButtonComponent,
24
+ ],
25
+ declarations: [
26
+ FwButtonComponent,
27
+ ],
28
+ entryComponents: [
29
+ FwButtonComponent,
30
+ ],
31
+ }]
32
+ }] });
33
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2J1dHRvbi9idXR0b24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUUzRCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQzs7QUFpQnZELE1BQU0sT0FBTyxjQUFjOzs0R0FBZCxjQUFjOzZHQUFkLGNBQWMsaUJBTnZCLGlCQUFpQixhQVBqQixZQUFZO1FBQ1osZUFBZSxhQUdmLGlCQUFpQjs2R0FTUixjQUFjLFlBZGhCO1lBQ1AsWUFBWTtZQUNaLGVBQWU7U0FDaEI7NEZBV1UsY0FBYztrQkFmMUIsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixlQUFlO3FCQUNoQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsaUJBQWlCO3FCQUNsQjtvQkFDRCxZQUFZLEVBQUU7d0JBQ1osaUJBQWlCO3FCQUNsQjtvQkFDRCxlQUFlLEVBQUU7d0JBQ2YsaUJBQWlCO3FCQUNsQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTWF0QnV0dG9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYnV0dG9uJztcblxuaW1wb3J0IHsgRndCdXR0b25Db21wb25lbnQgfSBmcm9tICcuL2J1dHRvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIE1hdEJ1dHRvbk1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIEZ3QnV0dG9uQ29tcG9uZW50LFxuICBdLFxuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBGd0J1dHRvbkNvbXBvbmVudCxcbiAgXSxcbiAgZW50cnlDb21wb25lbnRzOiBbXG4gICAgRndCdXR0b25Db21wb25lbnQsXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIEZ3QnV0dG9uTW9kdWxlIHt9XG4iXX0=
@@ -1,27 +1,31 @@
1
1
  import { Component, Input, ViewEncapsulation } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export class FwButtonGroupComponent {
3
4
  constructor() {
4
5
  this.layout = 'basic';
5
6
  this.size = 'medium';
6
7
  }
7
8
  }
8
- FwButtonGroupComponent.decorators = [
9
- { type: Component, args: [{
10
- host: {
11
- 'class': 'fw-button-group',
12
- '[class.small]': 'size === "small"',
13
- '[class.medium]': 'size === "medium"',
14
- '[class.large]': 'size === "large"',
15
- '[class.compact]': 'layout === "compact"',
16
- },
17
- selector: 'fw-button-group',
18
- template: `<ng-content></ng-content>`,
19
- encapsulation: ViewEncapsulation.None,
20
- styles: ["fw-button-group.fw-button-group{border-radius:4px;display:inline-flex;align-items:stretch}fw-button-group.fw-button-group.compact button{line-height:24px;height:24px}fw-button-group.fw-button-group.small button{font-size:12px}fw-button-group.fw-button-group.medium button{font-size:14px}fw-button-group.fw-button-group.large button{font-size:18px}fw-button-group.fw-button-group button{min-width:0;margin:0!important;border-radius:0}fw-button-group.fw-button-group>button:first-of-type,fw-button-group.fw-button-group>fw-button:first-of-type>button{border-top-left-radius:4px;border-bottom-left-radius:4px}fw-button-group.fw-button-group>button:last-of-type,fw-button-group.fw-button-group>fw-button:last-of-type>button{border-top-right-radius:4px;border-bottom-right-radius:4px}fw-button-group.fw-button-group>button.mat-stroked-button,fw-button-group.fw-button-group>button.mat-stroked-button+button.mat-stroke-button,fw-button-group.fw-button-group>fw-button[ng-reflect-type=stroked]+fw-button[ng-reflect-type=stroked]>button,fw-button-group.fw-button-group>fw-button[ng-reflect-type=stroked]>button,fw-button-group.fw-button-group>fw-button[type=stroked]+fw-button[type=stroked]>button,fw-button-group.fw-button-group>fw-button[type=stroked]>button{border-right-width:0}fw-button-group.fw-button-group>button.mat-stroked-button:last-of-type,fw-button-group.fw-button-group>fw-button[ng-reflect-type=stroked]:last-of-type>button,fw-button-group.fw-button-group>fw-button[type=stroked]:last-of-type>button{border-right-width:1px!important}fw-button-group.fw-button-group>button:not(.mat-stroked-button)+button.mat-stroked-button,fw-button-group.fw-button-group>fw-button:not([ng-reflect-type=stroked])+fw-button[ng-reflect-type=stroked]>button,fw-button-group.fw-button-group>fw-button:not([type=stroked])+fw-button[type=stroked]>button{border-left-width:0}"]
21
- },] }
22
- ];
23
- FwButtonGroupComponent.propDecorators = {
24
- layout: [{ type: Input }],
25
- size: [{ type: Input }]
26
- };
27
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLWdyb3VwLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2J1dHRvbi1ncm91cC9idXR0b24tZ3JvdXAuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBZXBFLE1BQU0sT0FBTyxzQkFBc0I7SUFibkM7UUFjVyxXQUFNLEdBQXlCLE9BQU8sQ0FBQTtRQUN0QyxTQUFJLEdBQWtDLFFBQVEsQ0FBQTtJQUN6RCxDQUFDOzs7WUFoQkEsU0FBUyxTQUFDO2dCQUNULElBQUksRUFBRTtvQkFDSixPQUFPLEVBQUUsaUJBQWlCO29CQUMxQixlQUFlLEVBQUUsa0JBQWtCO29CQUNuQyxnQkFBZ0IsRUFBRSxtQkFBbUI7b0JBQ3JDLGVBQWUsRUFBRSxrQkFBa0I7b0JBQ25DLGlCQUFpQixFQUFFLHNCQUFzQjtpQkFDMUM7Z0JBQ0QsUUFBUSxFQUFFLGlCQUFpQjtnQkFFM0IsUUFBUSxFQUFFLDJCQUEyQjtnQkFDckMsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7O2FBQ3RDOzs7cUJBRUUsS0FBSzttQkFDTCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIGhvc3Q6IHtcbiAgICAnY2xhc3MnOiAnZnctYnV0dG9uLWdyb3VwJyxcbiAgICAnW2NsYXNzLnNtYWxsXSc6ICdzaXplID09PSBcInNtYWxsXCInLFxuICAgICdbY2xhc3MubWVkaXVtXSc6ICdzaXplID09PSBcIm1lZGl1bVwiJyxcbiAgICAnW2NsYXNzLmxhcmdlXSc6ICdzaXplID09PSBcImxhcmdlXCInLFxuICAgICdbY2xhc3MuY29tcGFjdF0nOiAnbGF5b3V0ID09PSBcImNvbXBhY3RcIicsXG4gIH0sXG4gIHNlbGVjdG9yOiAnZnctYnV0dG9uLWdyb3VwJyxcbiAgc3R5bGVVcmxzOiBbICcuL2J1dHRvbi1ncm91cC5jb21wb25lbnQuc2NzcycgXSxcbiAgdGVtcGxhdGU6IGA8bmctY29udGVudD48L25nLWNvbnRlbnQ+YCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgRndCdXR0b25Hcm91cENvbXBvbmVudCB7XG4gIEBJbnB1dCgpIGxheW91dD86ICdiYXNpYycgfCAnY29tcGFjdCcgPSAnYmFzaWMnXG4gIEBJbnB1dCgpIHNpemU/OiAnc21hbGwnIHwgJ21lZGl1bScgfCAnbGFyZ2UnID0gJ21lZGl1bSdcbn1cbiJdfQ==
9
+ FwButtonGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
10
+ FwButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: FwButtonGroupComponent, selector: "fw-button-group", inputs: { layout: "layout", size: "size" }, host: { properties: { "class.small": "size === \"small\"", "class.medium": "size === \"medium\"", "class.large": "size === \"large\"", "class.compact": "layout === \"compact\"" }, classAttribute: "fw-button-group" }, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, styles: ["fw-button-group.fw-button-group{border-radius:4px;display:inline-flex;align-items:stretch}fw-button-group.fw-button-group.compact button{line-height:24px;height:24px}fw-button-group.fw-button-group.small button{font-size:12px}fw-button-group.fw-button-group.medium button{font-size:14px}fw-button-group.fw-button-group.large button{font-size:18px}fw-button-group.fw-button-group button{min-width:0;margin:0!important;border-radius:0}fw-button-group.fw-button-group>fw-button:first-of-type>button,fw-button-group.fw-button-group>button:first-of-type{border-top-left-radius:4px;border-bottom-left-radius:4px}fw-button-group.fw-button-group>fw-button:last-of-type>button,fw-button-group.fw-button-group>button:last-of-type{border-top-right-radius:4px;border-bottom-right-radius:4px}fw-button-group.fw-button-group>fw-button[ng-reflect-type=stroked]>button,fw-button-group.fw-button-group>fw-button[ng-reflect-type=stroked]+fw-button[ng-reflect-type=stroked]>button,fw-button-group.fw-button-group>fw-button[type=stroked]>button,fw-button-group.fw-button-group>fw-button[type=stroked]+fw-button[type=stroked]>button,fw-button-group.fw-button-group>button.mat-stroked-button,fw-button-group.fw-button-group>button.mat-stroked-button+button.mat-stroke-button{border-right-width:0}fw-button-group.fw-button-group>fw-button[ng-reflect-type=stroked]:last-of-type>button,fw-button-group.fw-button-group>fw-button[type=stroked]:last-of-type>button,fw-button-group.fw-button-group>button.mat-stroked-button:last-of-type{border-right-width:1px!important}fw-button-group.fw-button-group>fw-button:not([ng-reflect-type=stroked])+fw-button[ng-reflect-type=stroked]>button,fw-button-group.fw-button-group>fw-button:not([type=stroked])+fw-button[type=stroked]>button,fw-button-group.fw-button-group>button:not(.mat-stroked-button)+button.mat-stroked-button{border-left-width:0}\n"], encapsulation: i0.ViewEncapsulation.None });
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonGroupComponent, decorators: [{
12
+ type: Component,
13
+ args: [{
14
+ host: {
15
+ 'class': 'fw-button-group',
16
+ '[class.small]': 'size === "small"',
17
+ '[class.medium]': 'size === "medium"',
18
+ '[class.large]': 'size === "large"',
19
+ '[class.compact]': 'layout === "compact"',
20
+ },
21
+ selector: 'fw-button-group',
22
+ styleUrls: ['./button-group.component.scss'],
23
+ template: `<ng-content></ng-content>`,
24
+ encapsulation: ViewEncapsulation.None,
25
+ }]
26
+ }], propDecorators: { layout: [{
27
+ type: Input
28
+ }], size: [{
29
+ type: Input
30
+ }] } });
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLWdyb3VwLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2J1dHRvbi1ncm91cC9idXR0b24tZ3JvdXAuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOztBQWVwRSxNQUFNLE9BQU8sc0JBQXNCO0lBYm5DO1FBY1csV0FBTSxHQUF5QixPQUFPLENBQUE7UUFDdEMsU0FBSSxHQUFrQyxRQUFRLENBQUE7S0FDeEQ7O29IQUhZLHNCQUFzQjt3R0FBdEIsc0JBQXNCLDRUQUh2QiwyQkFBMkI7NEZBRzFCLHNCQUFzQjtrQkFibEMsU0FBUzttQkFBQztvQkFDVCxJQUFJLEVBQUU7d0JBQ0osT0FBTyxFQUFFLGlCQUFpQjt3QkFDMUIsZUFBZSxFQUFFLGtCQUFrQjt3QkFDbkMsZ0JBQWdCLEVBQUUsbUJBQW1CO3dCQUNyQyxlQUFlLEVBQUUsa0JBQWtCO3dCQUNuQyxpQkFBaUIsRUFBRSxzQkFBc0I7cUJBQzFDO29CQUNELFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFNBQVMsRUFBRSxDQUFFLCtCQUErQixDQUFFO29CQUM5QyxRQUFRLEVBQUUsMkJBQTJCO29CQUNyQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtpQkFDdEM7OEJBRVUsTUFBTTtzQkFBZCxLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBob3N0OiB7XG4gICAgJ2NsYXNzJzogJ2Z3LWJ1dHRvbi1ncm91cCcsXG4gICAgJ1tjbGFzcy5zbWFsbF0nOiAnc2l6ZSA9PT0gXCJzbWFsbFwiJyxcbiAgICAnW2NsYXNzLm1lZGl1bV0nOiAnc2l6ZSA9PT0gXCJtZWRpdW1cIicsXG4gICAgJ1tjbGFzcy5sYXJnZV0nOiAnc2l6ZSA9PT0gXCJsYXJnZVwiJyxcbiAgICAnW2NsYXNzLmNvbXBhY3RdJzogJ2xheW91dCA9PT0gXCJjb21wYWN0XCInLFxuICB9LFxuICBzZWxlY3RvcjogJ2Z3LWJ1dHRvbi1ncm91cCcsXG4gIHN0eWxlVXJsczogWyAnLi9idXR0b24tZ3JvdXAuY29tcG9uZW50LnNjc3MnIF0sXG4gIHRlbXBsYXRlOiBgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PmAsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG59KVxuZXhwb3J0IGNsYXNzIEZ3QnV0dG9uR3JvdXBDb21wb25lbnQge1xuICBASW5wdXQoKSBsYXlvdXQ/OiAnYmFzaWMnIHwgJ2NvbXBhY3QnID0gJ2Jhc2ljJ1xuICBASW5wdXQoKSBzaXplPzogJ3NtYWxsJyB8ICdtZWRpdW0nIHwgJ2xhcmdlJyA9ICdtZWRpdW0nXG59XG4iXX0=
@@ -1,18 +1,23 @@
1
1
  import { NgModule } from '@angular/core';
2
2
  import { FwButtonGroupComponent } from './button-group.component';
3
+ import * as i0 from "@angular/core";
3
4
  export class FwButtonGroupModule {
4
5
  }
5
- FwButtonGroupModule.decorators = [
6
- { type: NgModule, args: [{
7
- exports: [
8
- FwButtonGroupComponent,
9
- ],
10
- declarations: [
11
- FwButtonGroupComponent,
12
- ],
13
- entryComponents: [
14
- FwButtonGroupComponent,
15
- ]
16
- },] }
17
- ];
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLWdyb3VwLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2J1dHRvbi1ncm91cC9idXR0b24tZ3JvdXAubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFhbEUsTUFBTSxPQUFPLG1CQUFtQjs7O1lBWC9CLFFBQVEsU0FBQztnQkFDUixPQUFPLEVBQUU7b0JBQ1Asc0JBQXNCO2lCQUN2QjtnQkFDRCxZQUFZLEVBQUU7b0JBQ1osc0JBQXNCO2lCQUN2QjtnQkFDRCxlQUFlLEVBQUU7b0JBQ2Ysc0JBQXNCO2lCQUN2QjthQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgRndCdXR0b25Hcm91cENvbXBvbmVudCB9IGZyb20gJy4vYnV0dG9uLWdyb3VwLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGV4cG9ydHM6IFtcbiAgICBGd0J1dHRvbkdyb3VwQ29tcG9uZW50LFxuICBdLFxuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBGd0J1dHRvbkdyb3VwQ29tcG9uZW50LFxuICBdLFxuICBlbnRyeUNvbXBvbmVudHM6IFtcbiAgICBGd0J1dHRvbkdyb3VwQ29tcG9uZW50LFxuICBdXG59KVxuZXhwb3J0IGNsYXNzIEZ3QnV0dG9uR3JvdXBNb2R1bGUge30iXX0=
6
+ FwButtonGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7
+ FwButtonGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonGroupModule, declarations: [FwButtonGroupComponent], exports: [FwButtonGroupComponent] });
8
+ FwButtonGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonGroupModule });
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FwButtonGroupModule, decorators: [{
10
+ type: NgModule,
11
+ args: [{
12
+ exports: [
13
+ FwButtonGroupComponent,
14
+ ],
15
+ declarations: [
16
+ FwButtonGroupComponent,
17
+ ],
18
+ entryComponents: [
19
+ FwButtonGroupComponent,
20
+ ]
21
+ }]
22
+ }] });
23
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLWdyb3VwLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2J1dHRvbi1ncm91cC9idXR0b24tZ3JvdXAubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7O0FBYWxFLE1BQU0sT0FBTyxtQkFBbUI7O2lIQUFuQixtQkFBbUI7a0hBQW5CLG1CQUFtQixpQkFONUIsc0JBQXNCLGFBSHRCLHNCQUFzQjtrSEFTYixtQkFBbUI7NEZBQW5CLG1CQUFtQjtrQkFYL0IsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUU7d0JBQ1Asc0JBQXNCO3FCQUN2QjtvQkFDRCxZQUFZLEVBQUU7d0JBQ1osc0JBQXNCO3FCQUN2QjtvQkFDRCxlQUFlLEVBQUU7d0JBQ2Ysc0JBQXNCO3FCQUN2QjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEZ3QnV0dG9uR3JvdXBDb21wb25lbnQgfSBmcm9tICcuL2J1dHRvbi1ncm91cC5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBleHBvcnRzOiBbXG4gICAgRndCdXR0b25Hcm91cENvbXBvbmVudCxcbiAgXSxcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgRndCdXR0b25Hcm91cENvbXBvbmVudCxcbiAgXSxcbiAgZW50cnlDb21wb25lbnRzOiBbXG4gICAgRndCdXR0b25Hcm91cENvbXBvbmVudCxcbiAgXVxufSlcbmV4cG9ydCBjbGFzcyBGd0J1dHRvbkdyb3VwTW9kdWxlIHt9Il19