@flywheel-io/vision 2.9.0 → 2.9.2

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 (33) hide show
  1. package/components/layouts/context/context.component.d.ts +1 -1
  2. package/components/radio/radio-group.component.d.ts +9 -11
  3. package/components/radio/radio.component.d.ts +3 -3
  4. package/components/text-input/text-input.component.d.ts +2 -1
  5. package/components/text-input/text-input.module.d.ts +3 -2
  6. package/esm2022/components/button/button.component.mjs +2 -2
  7. package/esm2022/components/card/card-content/card-content.component.mjs +2 -2
  8. package/esm2022/components/card/card-header/card-header.component.mjs +2 -2
  9. package/esm2022/components/card/card.component.mjs +2 -2
  10. package/esm2022/components/chip-list/chip-list.component.mjs +8 -4
  11. package/esm2022/components/date-input/date-input.component.mjs +2 -2
  12. package/esm2022/components/icon/icon.component.mjs +2 -2
  13. package/esm2022/components/layouts/context/context.component.mjs +3 -3
  14. package/esm2022/components/layouts/grid/grid.component.mjs +4 -4
  15. package/esm2022/components/menu/menu-container/menu-container.component.mjs +1 -1
  16. package/esm2022/components/menu/menu-item/menu-item.component.mjs +1 -1
  17. package/esm2022/components/menu/menu-item-group/menu-item-group.component.mjs +2 -2
  18. package/esm2022/components/number-input/number-input.component.mjs +2 -2
  19. package/esm2022/components/phone-input/phone-input.component.mjs +2 -2
  20. package/esm2022/components/radio/radio-group.component.mjs +50 -50
  21. package/esm2022/components/radio/radio.component.mjs +7 -10
  22. package/esm2022/components/select-menu/select-menu.component.mjs +1 -1
  23. package/esm2022/components/table/table-dense.component.mjs +2 -2
  24. package/esm2022/components/table/table.component.mjs +2 -2
  25. package/esm2022/components/tabs/tab/tab.component.mjs +2 -2
  26. package/esm2022/components/text-input/text-input.component.mjs +8 -4
  27. package/esm2022/components/text-input/text-input.module.mjs +4 -1
  28. package/esm2022/components/textarea-input/textarea-input.component.mjs +2 -2
  29. package/esm2022/components/typeahead/typeahead.component.mjs +2 -2
  30. package/fesm2022/flywheel-io-vision.mjs +107 -101
  31. package/fesm2022/flywheel-io-vision.mjs.map +1 -1
  32. package/package.json +4 -1
  33. package/styles.css +3 -1
@@ -14,5 +14,5 @@ export declare class FwLayoutContextComponent {
14
14
  description?: string;
15
15
  get classes(): string;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<FwLayoutContextComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<FwLayoutContextComponent, "fw-layout-context", never, { "width": { "alias": "width"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, {}, never, ["fw-button"], false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwLayoutContextComponent, "fw-layout-context", never, { "width": { "alias": "width"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, {}, never, ["[slot='description']", "[slot='actions']"], false, never>;
18
18
  }
@@ -1,10 +1,9 @@
1
- import { AfterContentInit, EventEmitter, OnChanges, OnDestroy, QueryList } from '@angular/core';
1
+ import { EventEmitter } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
- import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
3
+ import { SafeStyle } from '@angular/platform-browser';
4
4
  import { FwRadioComponent } from './radio.component';
5
5
  import * as i0 from "@angular/core";
6
- export declare class FwRadioGroupComponent implements ControlValueAccessor, OnChanges, OnDestroy, AfterContentInit {
7
- private sanitizer;
6
+ export declare class FwRadioGroupComponent implements ControlValueAccessor {
8
7
  value: string;
9
8
  group: string;
10
9
  color?: 'primary' | 'secondary' | 'default';
@@ -12,14 +11,13 @@ export declare class FwRadioGroupComponent implements ControlValueAccessor, OnCh
12
11
  disabled?: boolean;
13
12
  direction?: 'horizontal' | 'vertical';
14
13
  change: EventEmitter<string>;
15
- radioButtons: QueryList<FwRadioComponent>;
14
+ private sanitizer;
15
+ private dr;
16
+ protected radioButtons: import("@angular/core").Signal<readonly FwRadioComponent[]>;
17
+ private _value;
18
+ private radioSubs;
16
19
  get style(): SafeStyle;
17
- private subscriptions;
18
- constructor(sanitizer: DomSanitizer);
19
- ngOnChanges(): void;
20
- ngOnDestroy(): void;
21
- ngAfterContentInit(): void;
22
- updateLayout(): void;
20
+ constructor();
23
21
  onTouch: () => void;
24
22
  onChange: (value: string) => void;
25
23
  writeValue(value: string): void;
@@ -1,8 +1,8 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class FwRadioComponent {
4
- checked: boolean;
5
- value: string;
4
+ value: import("@angular/core").InputSignal<string>;
5
+ checked: import("@angular/core").ModelSignal<boolean>;
6
6
  group: string;
7
7
  disabled: boolean;
8
8
  size: 'medium' | 'compact';
@@ -13,5 +13,5 @@ export declare class FwRadioComponent {
13
13
  get radioStyles(): string[];
14
14
  handleChange(event: any): void;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<FwRadioComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<FwRadioComponent, "fw-radio-button", never, { "checked": { "alias": "checked"; "required": false; }; "value": { "alias": "value"; "required": false; }; "group": { "alias": "group"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "title": { "alias": "title"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; }, { "change": "change"; }, never, ["*"], false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwRadioComponent, "fw-radio-button", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "group": { "alias": "group"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "title": { "alias": "title"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; }, { "checked": "checkedChange"; "change": "change"; }, never, ["*"], false, never>;
17
17
  }
@@ -17,6 +17,7 @@ export declare class FwTextInputComponent implements ControlValueAccessor {
17
17
  * @deprecated please use fw-wrapped-input instead
18
18
  */
19
19
  errorText?: string;
20
+ errorInIconTooltip?: boolean;
20
21
  placeholder?: string;
21
22
  readOnly?: boolean;
22
23
  size?: 'small' | 'medium' | 'large';
@@ -44,5 +45,5 @@ export declare class FwTextInputComponent implements ControlValueAccessor {
44
45
  onRightIconClick(): void;
45
46
  focus(): void;
46
47
  static ɵfac: i0.ɵɵFactoryDeclaration<FwTextInputComponent, never>;
47
- static ɵcmp: i0.ɵɵComponentDeclaration<FwTextInputComponent, "fw-text-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "useActionableIcons": { "alias": "useActionableIcons"; "required": false; }; "leftIcon": { "alias": "leftIcon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "context": { "alias": "context"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "value": { "alias": "value"; "required": false; }; "error": { "alias": "error"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "leftIconAction": "leftIconAction"; "rightIconAction": "rightIconAction"; }, ["textInput"], ["input", "*"], false, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTextInputComponent, "fw-text-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "useActionableIcons": { "alias": "useActionableIcons"; "required": false; }; "leftIcon": { "alias": "leftIcon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "context": { "alias": "context"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "errorInIconTooltip": { "alias": "errorInIconTooltip"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "value": { "alias": "value"; "required": false; }; "error": { "alias": "error"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "leftIconAction": "leftIconAction"; "rightIconAction": "rightIconAction"; }, ["textInput"], ["input", "*"], false, never>;
48
49
  }
@@ -2,9 +2,10 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./text-input.component";
3
3
  import * as i2 from "@angular/common";
4
4
  import * as i3 from "../icon/icon.module";
5
- import * as i4 from "@angular/forms";
5
+ import * as i4 from "../tooltip/tooltip.directive";
6
+ import * as i5 from "@angular/forms";
6
7
  export declare class FwTextInputModule {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FwTextInputModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<FwTextInputModule, [typeof i1.FwTextInputComponent], [typeof i2.CommonModule, typeof i3.FwIconModule, typeof i4.ReactiveFormsModule], [typeof i1.FwTextInputComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwTextInputModule, [typeof i1.FwTextInputComponent], [typeof i2.CommonModule, typeof i3.FwIconModule, typeof i4.FwTooltipDirective, typeof i5.ReactiveFormsModule], [typeof i1.FwTextInputComponent]>;
9
10
  static ɵinj: i0.ɵɵInjectorDeclaration<FwTextInputModule>;
10
11
  }
@@ -31,11 +31,11 @@ export class FwButtonComponent {
31
31
  }
32
32
  }
33
33
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
34
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwButtonComponent, selector: "fw-button", inputs: { color: "color", size: "size", variant: "variant", type: "type", disabled: "disabled", fullWidth: "fullWidth", leftIcon: "leftIcon", rightIcon: "rightIcon" }, host: { properties: { "attr.class": "this.classes" } }, ngImport: i0, template: "<button [type]=\"type\" [class]=\"[color + '-' + variant, size]\" [disabled]=\"disabled\">\n <fw-progress-spinner size=\"small\" [color]=\"getMappedColor()\" *ngIf=\"variant==='progress'\"></fw-progress-spinner>\n <fw-icon *ngIf=\"!!leftIcon && variant!=='progress'\">{{ leftIcon }}</fw-icon>\n <div class=\"spacer\" *ngIf=\"!leftIcon\"></div>\n <span><ng-content></ng-content></span>\n <fw-icon *ngIf=\"!!rightIcon\">{{ rightIcon }}</fw-icon>\n</button>\n", styles: [":host.full-width{flex:1;display:flex}:host.full-width button{flex:1}button{cursor:pointer;font-family:Inter,sans-serif;font-size:14px;line-height:14px;font-style:normal;font-weight:500;display:inline-flex;height:36px;padding:12px;justify-content:center;align-items:center;gap:8px;flex-shrink:0;border:1px solid transparent;border-radius:8px}button .spacer{height:18px;width:0;margin-left:-8px}button fw-icon{height:18px;font-size:20px;width:20px;min-width:20px}button span{white-space:nowrap}button:disabled{opacity:.4;cursor:not-allowed}.large{font-size:16px;height:40px;padding:12px 14px}.large fw-icon{font-size:24px;width:24px;min-width:24px}.small{height:30px;padding:12px 10px}.primary-solid{background-color:var(--primary-base);color:var(--typography-contrast)}.primary-solid:hover{background-color:var(--primary-medium)}.primary-solid:active{background-color:var(--primary-dark)}.primary-ghost{background-color:transparent;color:var(--primary-base)}.primary-ghost:hover{background-color:var(--primary-hover)}.primary-ghost:active{background-color:var(--primary-focus)}.primary-outline{background-color:transparent;color:var(--primary-base);border:1px solid var(--separations-base)}.primary-outline:hover{background-color:var(--primary-hover)}.primary-outline:active{background-color:var(--primary-focus)}.primary-progress{background-color:transparent;background-color:var(--primary-hover);color:var(--primary-base)}.primary-progress:hover{background-color:var(--primary-hover)}.primary-progress:active{background-color:var(--primary-focus)}.primary-progress span{opacity:.6}.primary-progress:disabled{opacity:.6;cursor:not-allowed}.secondary-solid{background-color:var(--secondary-base);color:var(--typography-contrast)}.secondary-solid:hover{background-color:var(--secondary-medium)}.secondary-solid:active{background-color:var(--secondary-dark)}.secondary-ghost{background-color:transparent;color:var(--secondary-base)}.secondary-ghost:hover{background-color:var(--secondary-hover)}.secondary-ghost:active{background-color:var(--secondary-focus)}.secondary-outline{background-color:transparent;color:var(--secondary-base);border:1px solid var(--separations-base)}.secondary-outline:hover{background-color:var(--secondary-hover)}.secondary-outline:active{background-color:var(--secondary-focus)}.secondary-progress{background-color:transparent;background-color:var(--secondary-hover);color:var(--secondary-base)}.secondary-progress:hover{background-color:var(--secondary-hover)}.secondary-progress:active{background-color:var(--secondary-focus)}.secondary-progress span{opacity:.6}.secondary-progress:disabled{opacity:.6;cursor:not-allowed}.slate-solid{background-color:var(--slate-base);color:var(--typography-contrast)}.slate-solid:hover{background-color:var(--slate-medium)}.slate-solid:active{background-color:var(--slate-dark)}.slate-ghost{background-color:transparent;color:var(--slate-base)}.slate-ghost:hover{background-color:var(--slate-hover)}.slate-ghost:active{background-color:var(--slate-focus)}.slate-outline{background-color:transparent;color:var(--slate-base);border:1px solid var(--separations-base)}.slate-outline:hover{background-color:var(--slate-hover)}.slate-outline:active{background-color:var(--slate-focus)}.slate-progress{background-color:transparent;background-color:var(--slate-hover);color:var(--slate-base)}.slate-progress:hover{background-color:var(--slate-hover)}.slate-progress:active{background-color:var(--slate-focus)}.slate-progress span{opacity:.6}.slate-progress:disabled{opacity:.6;cursor:not-allowed}.danger-solid{background-color:var(--red-base);color:var(--typography-contrast)}.danger-solid:hover{background-color:var(--red-medium)}.danger-solid:active{background-color:var(--red-dark)}.danger-ghost{background-color:transparent;color:var(--red-base)}.danger-ghost:hover{background-color:var(--red-hover)}.danger-ghost:active{background-color:var(--red-focus)}.danger-outline{background-color:transparent;color:var(--red-base);border:1px solid var(--separations-base)}.danger-outline:hover{background-color:var(--red-hover)}.danger-outline:active{background-color:var(--red-focus)}.danger-progress{background-color:transparent;background-color:var(--red-hover);color:var(--red-base)}.danger-progress:hover{background-color:var(--red-hover)}.danger-progress:active{background-color:var(--red-focus)}.danger-progress span{opacity:.6}.danger-progress:disabled{opacity:.6;cursor:not-allowed}.skeleton-solid{background-color:var(---base);color:var(--typography-contrast)}.skeleton-solid:hover{background-color:var(---medium)}.skeleton-solid:active{background-color:var(---dark)}.skeleton-ghost{background-color:transparent;color:var(---base)}.skeleton-ghost:hover{background-color:var(---hover)}.skeleton-ghost:active{background-color:var(---focus)}.skeleton-outline{background-color:transparent;color:var(---base);border:1px solid var(--separations-base)}.skeleton-outline:hover{background-color:var(---hover)}.skeleton-outline:active{background-color:var(---focus)}.skeleton-progress{background-color:transparent;background-color:var(---hover);color:var(---base)}.skeleton-progress:hover{background-color:var(---hover)}.skeleton-progress:active{background-color:var(---focus)}.skeleton-progress span{opacity:.6}.skeleton-progress:disabled{opacity:.6;cursor:not-allowed}.warning-solid{background-color:var(--orange-base);color:var(--typography-contrast)}.warning-solid:hover{background-color:var(--orange-medium)}.warning-solid:active{background-color:var(--orange-dark)}.warning-ghost{background-color:transparent;color:var(--orange-base)}.warning-ghost:hover{background-color:var(--orange-hover)}.warning-ghost:active{background-color:var(--orange-focus)}.warning-outline{background-color:transparent;color:var(--orange-base);border:1px solid var(--separations-base)}.warning-outline:hover{background-color:var(--orange-hover)}.warning-outline:active{background-color:var(--orange-focus)}.warning-progress{background-color:transparent;background-color:var(--orange-hover);color:var(--orange-base)}.warning-progress:hover{background-color:var(--orange-hover)}.warning-progress:active{background-color:var(--orange-focus)}.warning-progress span{opacity:.6}.warning-progress:disabled{opacity:.6;cursor:not-allowed}.success-solid{background-color:var(--green-base);color:var(--typography-contrast)}.success-solid:hover{background-color:var(--green-medium)}.success-solid:active{background-color:var(--green-dark)}.success-ghost{background-color:transparent;color:var(--green-base)}.success-ghost:hover{background-color:var(--green-hover)}.success-ghost:active{background-color:var(--green-focus)}.success-outline{background-color:transparent;color:var(--green-base);border:1px solid var(--separations-base)}.success-outline:hover{background-color:var(--green-hover)}.success-outline:active{background-color:var(--green-focus)}.success-progress{background-color:transparent;background-color:var(--green-hover);color:var(--green-base)}.success-progress:hover{background-color:var(--green-hover)}.success-progress:active{background-color:var(--green-focus)}.success-progress span{opacity:.6}.success-progress:disabled{opacity:.6;cursor:not-allowed}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FwIconComponent, selector: "fw-icon", inputs: ["size", "color"] }, { kind: "component", type: i3.FwProgressSpinnerComponent, selector: "fw-progress-spinner", inputs: ["mode", "size", "color", "showValue", "value"] }] }); }
34
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwButtonComponent, selector: "fw-button", inputs: { color: "color", size: "size", variant: "variant", type: "type", disabled: "disabled", fullWidth: "fullWidth", leftIcon: "leftIcon", rightIcon: "rightIcon" }, host: { properties: { "attr.class": "this.classes" } }, ngImport: i0, template: "<button [type]=\"type\" [class]=\"[color + '-' + variant, size]\" [disabled]=\"disabled\">\n <fw-progress-spinner size=\"small\" [color]=\"getMappedColor()\" *ngIf=\"variant==='progress'\"></fw-progress-spinner>\n <fw-icon *ngIf=\"!!leftIcon && variant!=='progress'\">{{ leftIcon }}</fw-icon>\n <div class=\"spacer\" *ngIf=\"!leftIcon\"></div>\n <span><ng-content></ng-content></span>\n <fw-icon *ngIf=\"!!rightIcon\">{{ rightIcon }}</fw-icon>\n</button>\n", styles: [":host.full-width{flex:1;display:flex}:host.full-width button{flex:1}button{cursor:pointer;font-family:Inter,sans-serif;font-size:14px;line-height:14px;font-style:normal;font-weight:500;display:inline-flex;height:36px;padding:12px;justify-content:center;align-items:center;gap:8px;flex-shrink:0;border:1px solid transparent;border-radius:8px}button .spacer{height:18px;width:0;margin-left:-8px}button fw-icon{height:18px;font-size:20px;width:20px;min-width:20px}button span{white-space:nowrap}button:disabled{opacity:.4;cursor:not-allowed}.large{font-size:16px;height:40px;padding:12px 14px}.large fw-icon{font-size:24px;width:24px;min-width:24px}.small{height:30px;padding:12px 10px}.primary-solid{background-color:var(--primary-base);color:var(--typography-contrast)}.primary-solid:hover{background-color:var(--primary-medium)}.primary-solid:active{background-color:var(--primary-dark)}.primary-ghost{background-color:transparent;color:var(--primary-base)}.primary-ghost:hover{background-color:var(--primary-hover)}.primary-ghost:active{background-color:var(--primary-focus)}.primary-outline{background-color:transparent;color:var(--primary-base)}.primary-outline:hover{background-color:var(--primary-hover)}.primary-outline:active{background-color:var(--primary-focus)}.primary-outline{border:1px solid var(--separations-base)}.primary-progress{background-color:transparent;color:var(--primary-base)}.primary-progress:hover{background-color:var(--primary-hover)}.primary-progress:active{background-color:var(--primary-focus)}.primary-progress{background-color:var(--primary-hover);color:var(--primary-base)}.primary-progress span{opacity:.6}.primary-progress:disabled{opacity:.6;cursor:not-allowed}.secondary-solid{background-color:var(--secondary-base);color:var(--typography-contrast)}.secondary-solid:hover{background-color:var(--secondary-medium)}.secondary-solid:active{background-color:var(--secondary-dark)}.secondary-ghost{background-color:transparent;color:var(--secondary-base)}.secondary-ghost:hover{background-color:var(--secondary-hover)}.secondary-ghost:active{background-color:var(--secondary-focus)}.secondary-outline{background-color:transparent;color:var(--secondary-base)}.secondary-outline:hover{background-color:var(--secondary-hover)}.secondary-outline:active{background-color:var(--secondary-focus)}.secondary-outline{border:1px solid var(--separations-base)}.secondary-progress{background-color:transparent;color:var(--secondary-base)}.secondary-progress:hover{background-color:var(--secondary-hover)}.secondary-progress:active{background-color:var(--secondary-focus)}.secondary-progress{background-color:var(--secondary-hover);color:var(--secondary-base)}.secondary-progress span{opacity:.6}.secondary-progress:disabled{opacity:.6;cursor:not-allowed}.slate-solid{background-color:var(--slate-base);color:var(--typography-contrast)}.slate-solid:hover{background-color:var(--slate-medium)}.slate-solid:active{background-color:var(--slate-dark)}.slate-ghost{background-color:transparent;color:var(--slate-base)}.slate-ghost:hover{background-color:var(--slate-hover)}.slate-ghost:active{background-color:var(--slate-focus)}.slate-outline{background-color:transparent;color:var(--slate-base)}.slate-outline:hover{background-color:var(--slate-hover)}.slate-outline:active{background-color:var(--slate-focus)}.slate-outline{border:1px solid var(--separations-base)}.slate-progress{background-color:transparent;color:var(--slate-base)}.slate-progress:hover{background-color:var(--slate-hover)}.slate-progress:active{background-color:var(--slate-focus)}.slate-progress{background-color:var(--slate-hover);color:var(--slate-base)}.slate-progress span{opacity:.6}.slate-progress:disabled{opacity:.6;cursor:not-allowed}.danger-solid{background-color:var(--red-base);color:var(--typography-contrast)}.danger-solid:hover{background-color:var(--red-medium)}.danger-solid:active{background-color:var(--red-dark)}.danger-ghost{background-color:transparent;color:var(--red-base)}.danger-ghost:hover{background-color:var(--red-hover)}.danger-ghost:active{background-color:var(--red-focus)}.danger-outline{background-color:transparent;color:var(--red-base)}.danger-outline:hover{background-color:var(--red-hover)}.danger-outline:active{background-color:var(--red-focus)}.danger-outline{border:1px solid var(--separations-base)}.danger-progress{background-color:transparent;color:var(--red-base)}.danger-progress:hover{background-color:var(--red-hover)}.danger-progress:active{background-color:var(--red-focus)}.danger-progress{background-color:var(--red-hover);color:var(--red-base)}.danger-progress span{opacity:.6}.danger-progress:disabled{opacity:.6;cursor:not-allowed}.skeleton-solid{background-color:var(---base);color:var(--typography-contrast)}.skeleton-solid:hover{background-color:var(---medium)}.skeleton-solid:active{background-color:var(---dark)}.skeleton-ghost{background-color:transparent;color:var(---base)}.skeleton-ghost:hover{background-color:var(---hover)}.skeleton-ghost:active{background-color:var(---focus)}.skeleton-outline{background-color:transparent;color:var(---base)}.skeleton-outline:hover{background-color:var(---hover)}.skeleton-outline:active{background-color:var(---focus)}.skeleton-outline{border:1px solid var(--separations-base)}.skeleton-progress{background-color:transparent;color:var(---base)}.skeleton-progress:hover{background-color:var(---hover)}.skeleton-progress:active{background-color:var(---focus)}.skeleton-progress{background-color:var(---hover);color:var(---base)}.skeleton-progress span{opacity:.6}.skeleton-progress:disabled{opacity:.6;cursor:not-allowed}.warning-solid{background-color:var(--orange-base);color:var(--typography-contrast)}.warning-solid:hover{background-color:var(--orange-medium)}.warning-solid:active{background-color:var(--orange-dark)}.warning-ghost{background-color:transparent;color:var(--orange-base)}.warning-ghost:hover{background-color:var(--orange-hover)}.warning-ghost:active{background-color:var(--orange-focus)}.warning-outline{background-color:transparent;color:var(--orange-base)}.warning-outline:hover{background-color:var(--orange-hover)}.warning-outline:active{background-color:var(--orange-focus)}.warning-outline{border:1px solid var(--separations-base)}.warning-progress{background-color:transparent;color:var(--orange-base)}.warning-progress:hover{background-color:var(--orange-hover)}.warning-progress:active{background-color:var(--orange-focus)}.warning-progress{background-color:var(--orange-hover);color:var(--orange-base)}.warning-progress span{opacity:.6}.warning-progress:disabled{opacity:.6;cursor:not-allowed}.success-solid{background-color:var(--green-base);color:var(--typography-contrast)}.success-solid:hover{background-color:var(--green-medium)}.success-solid:active{background-color:var(--green-dark)}.success-ghost{background-color:transparent;color:var(--green-base)}.success-ghost:hover{background-color:var(--green-hover)}.success-ghost:active{background-color:var(--green-focus)}.success-outline{background-color:transparent;color:var(--green-base)}.success-outline:hover{background-color:var(--green-hover)}.success-outline:active{background-color:var(--green-focus)}.success-outline{border:1px solid var(--separations-base)}.success-progress{background-color:transparent;color:var(--green-base)}.success-progress:hover{background-color:var(--green-hover)}.success-progress:active{background-color:var(--green-focus)}.success-progress{background-color:var(--green-hover);color:var(--green-base)}.success-progress span{opacity:.6}.success-progress:disabled{opacity:.6;cursor:not-allowed}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FwIconComponent, selector: "fw-icon", inputs: ["size", "color"] }, { kind: "component", type: i3.FwProgressSpinnerComponent, selector: "fw-progress-spinner", inputs: ["mode", "size", "color", "showValue", "value"] }] }); }
35
35
  }
36
36
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwButtonComponent, decorators: [{
37
37
  type: Component,
38
- args: [{ selector: 'fw-button', template: "<button [type]=\"type\" [class]=\"[color + '-' + variant, size]\" [disabled]=\"disabled\">\n <fw-progress-spinner size=\"small\" [color]=\"getMappedColor()\" *ngIf=\"variant==='progress'\"></fw-progress-spinner>\n <fw-icon *ngIf=\"!!leftIcon && variant!=='progress'\">{{ leftIcon }}</fw-icon>\n <div class=\"spacer\" *ngIf=\"!leftIcon\"></div>\n <span><ng-content></ng-content></span>\n <fw-icon *ngIf=\"!!rightIcon\">{{ rightIcon }}</fw-icon>\n</button>\n", styles: [":host.full-width{flex:1;display:flex}:host.full-width button{flex:1}button{cursor:pointer;font-family:Inter,sans-serif;font-size:14px;line-height:14px;font-style:normal;font-weight:500;display:inline-flex;height:36px;padding:12px;justify-content:center;align-items:center;gap:8px;flex-shrink:0;border:1px solid transparent;border-radius:8px}button .spacer{height:18px;width:0;margin-left:-8px}button fw-icon{height:18px;font-size:20px;width:20px;min-width:20px}button span{white-space:nowrap}button:disabled{opacity:.4;cursor:not-allowed}.large{font-size:16px;height:40px;padding:12px 14px}.large fw-icon{font-size:24px;width:24px;min-width:24px}.small{height:30px;padding:12px 10px}.primary-solid{background-color:var(--primary-base);color:var(--typography-contrast)}.primary-solid:hover{background-color:var(--primary-medium)}.primary-solid:active{background-color:var(--primary-dark)}.primary-ghost{background-color:transparent;color:var(--primary-base)}.primary-ghost:hover{background-color:var(--primary-hover)}.primary-ghost:active{background-color:var(--primary-focus)}.primary-outline{background-color:transparent;color:var(--primary-base);border:1px solid var(--separations-base)}.primary-outline:hover{background-color:var(--primary-hover)}.primary-outline:active{background-color:var(--primary-focus)}.primary-progress{background-color:transparent;background-color:var(--primary-hover);color:var(--primary-base)}.primary-progress:hover{background-color:var(--primary-hover)}.primary-progress:active{background-color:var(--primary-focus)}.primary-progress span{opacity:.6}.primary-progress:disabled{opacity:.6;cursor:not-allowed}.secondary-solid{background-color:var(--secondary-base);color:var(--typography-contrast)}.secondary-solid:hover{background-color:var(--secondary-medium)}.secondary-solid:active{background-color:var(--secondary-dark)}.secondary-ghost{background-color:transparent;color:var(--secondary-base)}.secondary-ghost:hover{background-color:var(--secondary-hover)}.secondary-ghost:active{background-color:var(--secondary-focus)}.secondary-outline{background-color:transparent;color:var(--secondary-base);border:1px solid var(--separations-base)}.secondary-outline:hover{background-color:var(--secondary-hover)}.secondary-outline:active{background-color:var(--secondary-focus)}.secondary-progress{background-color:transparent;background-color:var(--secondary-hover);color:var(--secondary-base)}.secondary-progress:hover{background-color:var(--secondary-hover)}.secondary-progress:active{background-color:var(--secondary-focus)}.secondary-progress span{opacity:.6}.secondary-progress:disabled{opacity:.6;cursor:not-allowed}.slate-solid{background-color:var(--slate-base);color:var(--typography-contrast)}.slate-solid:hover{background-color:var(--slate-medium)}.slate-solid:active{background-color:var(--slate-dark)}.slate-ghost{background-color:transparent;color:var(--slate-base)}.slate-ghost:hover{background-color:var(--slate-hover)}.slate-ghost:active{background-color:var(--slate-focus)}.slate-outline{background-color:transparent;color:var(--slate-base);border:1px solid var(--separations-base)}.slate-outline:hover{background-color:var(--slate-hover)}.slate-outline:active{background-color:var(--slate-focus)}.slate-progress{background-color:transparent;background-color:var(--slate-hover);color:var(--slate-base)}.slate-progress:hover{background-color:var(--slate-hover)}.slate-progress:active{background-color:var(--slate-focus)}.slate-progress span{opacity:.6}.slate-progress:disabled{opacity:.6;cursor:not-allowed}.danger-solid{background-color:var(--red-base);color:var(--typography-contrast)}.danger-solid:hover{background-color:var(--red-medium)}.danger-solid:active{background-color:var(--red-dark)}.danger-ghost{background-color:transparent;color:var(--red-base)}.danger-ghost:hover{background-color:var(--red-hover)}.danger-ghost:active{background-color:var(--red-focus)}.danger-outline{background-color:transparent;color:var(--red-base);border:1px solid var(--separations-base)}.danger-outline:hover{background-color:var(--red-hover)}.danger-outline:active{background-color:var(--red-focus)}.danger-progress{background-color:transparent;background-color:var(--red-hover);color:var(--red-base)}.danger-progress:hover{background-color:var(--red-hover)}.danger-progress:active{background-color:var(--red-focus)}.danger-progress span{opacity:.6}.danger-progress:disabled{opacity:.6;cursor:not-allowed}.skeleton-solid{background-color:var(---base);color:var(--typography-contrast)}.skeleton-solid:hover{background-color:var(---medium)}.skeleton-solid:active{background-color:var(---dark)}.skeleton-ghost{background-color:transparent;color:var(---base)}.skeleton-ghost:hover{background-color:var(---hover)}.skeleton-ghost:active{background-color:var(---focus)}.skeleton-outline{background-color:transparent;color:var(---base);border:1px solid var(--separations-base)}.skeleton-outline:hover{background-color:var(---hover)}.skeleton-outline:active{background-color:var(---focus)}.skeleton-progress{background-color:transparent;background-color:var(---hover);color:var(---base)}.skeleton-progress:hover{background-color:var(---hover)}.skeleton-progress:active{background-color:var(---focus)}.skeleton-progress span{opacity:.6}.skeleton-progress:disabled{opacity:.6;cursor:not-allowed}.warning-solid{background-color:var(--orange-base);color:var(--typography-contrast)}.warning-solid:hover{background-color:var(--orange-medium)}.warning-solid:active{background-color:var(--orange-dark)}.warning-ghost{background-color:transparent;color:var(--orange-base)}.warning-ghost:hover{background-color:var(--orange-hover)}.warning-ghost:active{background-color:var(--orange-focus)}.warning-outline{background-color:transparent;color:var(--orange-base);border:1px solid var(--separations-base)}.warning-outline:hover{background-color:var(--orange-hover)}.warning-outline:active{background-color:var(--orange-focus)}.warning-progress{background-color:transparent;background-color:var(--orange-hover);color:var(--orange-base)}.warning-progress:hover{background-color:var(--orange-hover)}.warning-progress:active{background-color:var(--orange-focus)}.warning-progress span{opacity:.6}.warning-progress:disabled{opacity:.6;cursor:not-allowed}.success-solid{background-color:var(--green-base);color:var(--typography-contrast)}.success-solid:hover{background-color:var(--green-medium)}.success-solid:active{background-color:var(--green-dark)}.success-ghost{background-color:transparent;color:var(--green-base)}.success-ghost:hover{background-color:var(--green-hover)}.success-ghost:active{background-color:var(--green-focus)}.success-outline{background-color:transparent;color:var(--green-base);border:1px solid var(--separations-base)}.success-outline:hover{background-color:var(--green-hover)}.success-outline:active{background-color:var(--green-focus)}.success-progress{background-color:transparent;background-color:var(--green-hover);color:var(--green-base)}.success-progress:hover{background-color:var(--green-hover)}.success-progress:active{background-color:var(--green-focus)}.success-progress span{opacity:.6}.success-progress:disabled{opacity:.6;cursor:not-allowed}\n"] }]
38
+ args: [{ selector: 'fw-button', template: "<button [type]=\"type\" [class]=\"[color + '-' + variant, size]\" [disabled]=\"disabled\">\n <fw-progress-spinner size=\"small\" [color]=\"getMappedColor()\" *ngIf=\"variant==='progress'\"></fw-progress-spinner>\n <fw-icon *ngIf=\"!!leftIcon && variant!=='progress'\">{{ leftIcon }}</fw-icon>\n <div class=\"spacer\" *ngIf=\"!leftIcon\"></div>\n <span><ng-content></ng-content></span>\n <fw-icon *ngIf=\"!!rightIcon\">{{ rightIcon }}</fw-icon>\n</button>\n", styles: [":host.full-width{flex:1;display:flex}:host.full-width button{flex:1}button{cursor:pointer;font-family:Inter,sans-serif;font-size:14px;line-height:14px;font-style:normal;font-weight:500;display:inline-flex;height:36px;padding:12px;justify-content:center;align-items:center;gap:8px;flex-shrink:0;border:1px solid transparent;border-radius:8px}button .spacer{height:18px;width:0;margin-left:-8px}button fw-icon{height:18px;font-size:20px;width:20px;min-width:20px}button span{white-space:nowrap}button:disabled{opacity:.4;cursor:not-allowed}.large{font-size:16px;height:40px;padding:12px 14px}.large fw-icon{font-size:24px;width:24px;min-width:24px}.small{height:30px;padding:12px 10px}.primary-solid{background-color:var(--primary-base);color:var(--typography-contrast)}.primary-solid:hover{background-color:var(--primary-medium)}.primary-solid:active{background-color:var(--primary-dark)}.primary-ghost{background-color:transparent;color:var(--primary-base)}.primary-ghost:hover{background-color:var(--primary-hover)}.primary-ghost:active{background-color:var(--primary-focus)}.primary-outline{background-color:transparent;color:var(--primary-base)}.primary-outline:hover{background-color:var(--primary-hover)}.primary-outline:active{background-color:var(--primary-focus)}.primary-outline{border:1px solid var(--separations-base)}.primary-progress{background-color:transparent;color:var(--primary-base)}.primary-progress:hover{background-color:var(--primary-hover)}.primary-progress:active{background-color:var(--primary-focus)}.primary-progress{background-color:var(--primary-hover);color:var(--primary-base)}.primary-progress span{opacity:.6}.primary-progress:disabled{opacity:.6;cursor:not-allowed}.secondary-solid{background-color:var(--secondary-base);color:var(--typography-contrast)}.secondary-solid:hover{background-color:var(--secondary-medium)}.secondary-solid:active{background-color:var(--secondary-dark)}.secondary-ghost{background-color:transparent;color:var(--secondary-base)}.secondary-ghost:hover{background-color:var(--secondary-hover)}.secondary-ghost:active{background-color:var(--secondary-focus)}.secondary-outline{background-color:transparent;color:var(--secondary-base)}.secondary-outline:hover{background-color:var(--secondary-hover)}.secondary-outline:active{background-color:var(--secondary-focus)}.secondary-outline{border:1px solid var(--separations-base)}.secondary-progress{background-color:transparent;color:var(--secondary-base)}.secondary-progress:hover{background-color:var(--secondary-hover)}.secondary-progress:active{background-color:var(--secondary-focus)}.secondary-progress{background-color:var(--secondary-hover);color:var(--secondary-base)}.secondary-progress span{opacity:.6}.secondary-progress:disabled{opacity:.6;cursor:not-allowed}.slate-solid{background-color:var(--slate-base);color:var(--typography-contrast)}.slate-solid:hover{background-color:var(--slate-medium)}.slate-solid:active{background-color:var(--slate-dark)}.slate-ghost{background-color:transparent;color:var(--slate-base)}.slate-ghost:hover{background-color:var(--slate-hover)}.slate-ghost:active{background-color:var(--slate-focus)}.slate-outline{background-color:transparent;color:var(--slate-base)}.slate-outline:hover{background-color:var(--slate-hover)}.slate-outline:active{background-color:var(--slate-focus)}.slate-outline{border:1px solid var(--separations-base)}.slate-progress{background-color:transparent;color:var(--slate-base)}.slate-progress:hover{background-color:var(--slate-hover)}.slate-progress:active{background-color:var(--slate-focus)}.slate-progress{background-color:var(--slate-hover);color:var(--slate-base)}.slate-progress span{opacity:.6}.slate-progress:disabled{opacity:.6;cursor:not-allowed}.danger-solid{background-color:var(--red-base);color:var(--typography-contrast)}.danger-solid:hover{background-color:var(--red-medium)}.danger-solid:active{background-color:var(--red-dark)}.danger-ghost{background-color:transparent;color:var(--red-base)}.danger-ghost:hover{background-color:var(--red-hover)}.danger-ghost:active{background-color:var(--red-focus)}.danger-outline{background-color:transparent;color:var(--red-base)}.danger-outline:hover{background-color:var(--red-hover)}.danger-outline:active{background-color:var(--red-focus)}.danger-outline{border:1px solid var(--separations-base)}.danger-progress{background-color:transparent;color:var(--red-base)}.danger-progress:hover{background-color:var(--red-hover)}.danger-progress:active{background-color:var(--red-focus)}.danger-progress{background-color:var(--red-hover);color:var(--red-base)}.danger-progress span{opacity:.6}.danger-progress:disabled{opacity:.6;cursor:not-allowed}.skeleton-solid{background-color:var(---base);color:var(--typography-contrast)}.skeleton-solid:hover{background-color:var(---medium)}.skeleton-solid:active{background-color:var(---dark)}.skeleton-ghost{background-color:transparent;color:var(---base)}.skeleton-ghost:hover{background-color:var(---hover)}.skeleton-ghost:active{background-color:var(---focus)}.skeleton-outline{background-color:transparent;color:var(---base)}.skeleton-outline:hover{background-color:var(---hover)}.skeleton-outline:active{background-color:var(---focus)}.skeleton-outline{border:1px solid var(--separations-base)}.skeleton-progress{background-color:transparent;color:var(---base)}.skeleton-progress:hover{background-color:var(---hover)}.skeleton-progress:active{background-color:var(---focus)}.skeleton-progress{background-color:var(---hover);color:var(---base)}.skeleton-progress span{opacity:.6}.skeleton-progress:disabled{opacity:.6;cursor:not-allowed}.warning-solid{background-color:var(--orange-base);color:var(--typography-contrast)}.warning-solid:hover{background-color:var(--orange-medium)}.warning-solid:active{background-color:var(--orange-dark)}.warning-ghost{background-color:transparent;color:var(--orange-base)}.warning-ghost:hover{background-color:var(--orange-hover)}.warning-ghost:active{background-color:var(--orange-focus)}.warning-outline{background-color:transparent;color:var(--orange-base)}.warning-outline:hover{background-color:var(--orange-hover)}.warning-outline:active{background-color:var(--orange-focus)}.warning-outline{border:1px solid var(--separations-base)}.warning-progress{background-color:transparent;color:var(--orange-base)}.warning-progress:hover{background-color:var(--orange-hover)}.warning-progress:active{background-color:var(--orange-focus)}.warning-progress{background-color:var(--orange-hover);color:var(--orange-base)}.warning-progress span{opacity:.6}.warning-progress:disabled{opacity:.6;cursor:not-allowed}.success-solid{background-color:var(--green-base);color:var(--typography-contrast)}.success-solid:hover{background-color:var(--green-medium)}.success-solid:active{background-color:var(--green-dark)}.success-ghost{background-color:transparent;color:var(--green-base)}.success-ghost:hover{background-color:var(--green-hover)}.success-ghost:active{background-color:var(--green-focus)}.success-outline{background-color:transparent;color:var(--green-base)}.success-outline:hover{background-color:var(--green-hover)}.success-outline:active{background-color:var(--green-focus)}.success-outline{border:1px solid var(--separations-base)}.success-progress{background-color:transparent;color:var(--green-base)}.success-progress:hover{background-color:var(--green-hover)}.success-progress:active{background-color:var(--green-focus)}.success-progress{background-color:var(--green-hover);color:var(--green-base)}.success-progress span{opacity:.6}.success-progress:disabled{opacity:.6;cursor:not-allowed}\n"] }]
39
39
  }], propDecorators: { classes: [{
40
40
  type: HostBinding,
41
41
  args: ['attr.class']
@@ -2,10 +2,10 @@ import { Component, ViewEncapsulation } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export class FwCardContentComponent {
4
4
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwCardContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwCardContentComponent, selector: "fw-card-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: ["@import\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700\";.vision-h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}.vision-h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}.vision-h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}.vision-h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}.vision-h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}.vision-h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}.vision-p1{font-size:18px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p2,:host p{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p3{font-size:12px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p4{font-size:10px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p5{font-size:8px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-link{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link:hover{text-decoration:none}.vision-link:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link:visited{color:var(--secondary-base)}.vision-link-inherited{text-decoration:underline;color:var(--primary-base);cursor:pointer;color:inherit}.vision-link-inherited:hover{text-decoration:none}.vision-link-inherited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-inherited:visited{color:var(--secondary-base)}.vision-link-inherited:visited{color:inherit}.vision-link-no-visited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-no-visited:hover{text-decoration:none}.vision-link-no-visited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-no-visited:visited{color:var(--secondary-base)}.vision-link-no-visited:visited{color:var(--primary-base)}:host{overflow:hidden}:host h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}:host h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}:host h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}:host h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}:host h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}:host h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}:host p{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}:host a{text-decoration:underline;color:var(--primary-base);cursor:pointer}:host a:hover{text-decoration:none}:host a:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}:host a:visited{color:var(--secondary-base)}:host p{margin:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:8;overflow-y:hidden;text-overflow:ellipsis;line-height:140%;color:var(--typography-muted)}:host img{max-width:100%;margin:auto;border-radius:4px;border:1px solid var(--separations-base, #1e3154)}\n"], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
5
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwCardContentComponent, selector: "fw-card-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700\";.vision-h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}.vision-h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}.vision-h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}.vision-h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}.vision-h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}.vision-h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}.vision-p1{font-size:18px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p2,:host p{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p3{font-size:12px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p4{font-size:10px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p5{font-size:8px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-link{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link:hover{text-decoration:none}.vision-link:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link:visited{color:var(--secondary-base)}.vision-link-inherited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-inherited:hover{text-decoration:none}.vision-link-inherited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-inherited:visited{color:var(--secondary-base)}.vision-link-inherited,.vision-link-inherited:visited{color:inherit}.vision-link-no-visited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-no-visited:hover{text-decoration:none}.vision-link-no-visited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-no-visited:visited{color:var(--secondary-base)}.vision-link-no-visited:visited{color:var(--primary-base)}:host{overflow:hidden}:host h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}:host h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}:host h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}:host h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}:host h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}:host h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}:host p{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}:host a{text-decoration:underline;color:var(--primary-base);cursor:pointer}:host a:hover{text-decoration:none}:host a:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}:host a:visited{color:var(--secondary-base)}:host .vision-icon{white-space:pre}@supports (font: -apple-system-body){:host .vision-icon:after{content:\"\";padding-left:100%;padding-right:100%}}:host .vision-icon,:host [class^=icon-],:host [class*=\" icon-\"]{font-family:Flywheel-Vision-Icons!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:\"liga\";-moz-font-feature-settings:\"liga=1\";-moz-font-feature-settings:\"liga\";-ms-font-feature-settings:\"liga\" 1;font-feature-settings:\"liga\" 1;-webkit-font-variant-ligatures:discretionary-ligatures;font-variant-ligatures:discretionary-ligatures;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:host .icon-thumbs-down-dislike:before{content:\"\\ea54\"}:host .icon-mouse-scroll:before{content:\"\\ea55\"}:host .icon-folder-move:before{content:\"\\ea56\"}:host .icon-documents-file-move-arrow-right:before{content:\"\\ea57\"}:host .icon-contract-vertical:before{content:\"\\ea46\"}:host .icon-stretch-vertical:before{content:\"\\ea47\"}:host .icon-grid-layout-9-square:before{content:\"\\ea48\"}:host .icon-git-add-branch:before{content:\"\\ea49\"}:host .icon-git-branch:before{content:\"\\ea4a\"}:host .icon-git-merge-draft:before{content:\"\\ea4b\"}:host .icon-git-merge:before{content:\"\\ea4c\"}:host .icon-git-pull-request-2:before{content:\"\\ea4d\"}:host .icon-conversion-exchange:before{content:\"\\ea4e\"}:host .icon-archive-documents-box-big:before{content:\"\\ea4f\"}:host .icon-cursor-click:before{content:\"\\ea50\"}:host .icon-document-file-deleted-cross-remove-center-cancel:before{content:\"\\ea51\"}:host .icon-documents-file-checkmark:before{content:\"\\ea52\"}:host .icon-file-blank-search:before{content:\"\\ea53\"}:host .icon-user-profile-cards-pool:before{content:\"\\ea3b\"}:host .icon-certificate:before{content:\"\\ea3c\"}:host .icon-check-mark-certificate:before{content:\"\\ea3d\"}:host .icon-server-databases-checkmark-user:before{content:\"\\ea3e\"}:host .icon-arrow-up-high-priority:before{content:\"\\ea3f\"}:host .icon-arrow-up-low-priority:before{content:\"\\ea40\"}:host .icon-stop-minus:before{content:\"\\ea41\"}:host .icon-document-file-checkmark-bottom-left:before{content:\"\\ea42\"}:host .icon-monitor-computer:before{content:\"\\ea43\"}:host .icon-arrow-redo:before{content:\"\\ea44\"}:host .icon-arrow-undo:before{content:\"\\ea45\"}:host .icon-folders-copy-expand-arrow-down:before{content:\"\\ea39\"}:host .icon-folders-copy-expand-arrow-up:before{content:\"\\ea3a\"}:host .icon-clock-hour-4:before{content:\"\\ea32\"}:host .icon-documents-file:before{content:\"\\ea33\"}:host .icon-expand-pathfinder-dot-square-segmentation:before{content:\"\\ea34\"}:host .icon-square-fill-outline:before{content:\"\\ea35\"}:host .icon-square-fill:before{content:\"\\ea36\"}:host .icon-square-outline:before{content:\"\\ea37\"}:host .icon-flywheel-viewer-mark-logo:before{content:\"\\ea38\"}:host .icon-filter-sort-check-mark:before{content:\"\\ea2e\"}:host .icon-filter-sort-delete:before{content:\"\\ea2f\"}:host .icon-filter-sort-add:before{content:\"\\ea31\"}:host .icon-chevron-input-number:before{content:\"\\ea30\"}:host .icon-shield-protect:before{content:\"\\ea29\"}:host .icon-3d-sphere-rotate-arrows:before{content:\"\\ea2b\"}:host .icon-livewire-tool:before{content:\"\\ea2c\"}:host .icon-bezier-curve:before{content:\"\\ea2d\"}:host .icon-technology-cube-3d:before{content:\"\\ea28\"}:host .icon-brightness-photo-edit:before{content:\"\\bea29\"}:host .icon-target-space-object-select:before{content:\"\\ea2a\"}:host .icon-crown-style-circle:before{content:\"\\ea27\"}:host .icon-hammer-legal-square:before{content:\"\\ea18\"}:host .icon-browser-internet-web-windows:before{content:\"\\ea26\"}:host .icon-settings-adjust:before{content:\"\\e912\"}:host .icon-lock-unlock:before{content:\"\\e939\"}:host .icon-private-mode-protection-circle:before{content:\"\\ea17\"}:host .icon-ai:before{content:\"\\ea19\"}:host .icon-reader-studies:before{content:\"\\ea1a\"}:host .icon-shapes-objects:before{content:\"\\ea1b\"}:host .icon-cloud-upload:before{content:\"\\ea1c\"}:host .icon-floppy-save:before{content:\"\\ea1d\"}:host .icon-text-input-form:before{content:\"\\ea1e\"}:host .icon-document-file-add-plus-bottom-left:before{content:\"\\ea1f\"}:host .icon-document-file-upload-bottom-center:before{content:\"\\ea20\"}:host .icon-paint-roller:before{content:\"\\ea21\"}:host .icon-brush-edit-create:before{content:\"\\ea22\"}:host .icon-bucket-paint:before{content:\"\\ea23\"}:host .icon-edit-erase:before{content:\"\\ea24\"}:host .icon-grid-dot-square:before{content:\"\\ea25\"}:host .icon-column-edit:before{content:\"\\ea0c\"}:host .icon-molecule:before{content:\"\\ea0d\"}:host .icon-invoice-checkmark-paid:before{content:\"\\ea0e\"}:host .icon-invoice:before{content:\"\\ea0f\"}:host .icon-pause:before{content:\"\\ea10\"}:host .icon-calendar-arrow-left-center:before{content:\"\\ea11\"}:host .icon-file-blank-image-load-mask:before{content:\"\\ea12\"}:host .icon-closed-freehand-vector-poly:before{content:\"\\ea13\"}:host .icon-curve-object-secet-cursor:before{content:\"\\ea14\"}:host .icon-freehand-vector-poly:before{content:\"\\ea15\"}:host .icon-pen-edit-circle:before{content:\"\\ea16\"}:host .icon-code-block-embed:before{content:\"\\e9fd\"}:host .icon-italic:before{content:\"\\e9fe\"}:host .icon-list-paragraph-number:before{content:\"\\e9ff\"}:host .icon-list-paragraph:before{content:\"\\ea00\"}:host .icon-text-bold:before{content:\"\\ea01\"}:host .icon-text-cross:before{content:\"\\ea02\"}:host .icon-text-h1:before{content:\"\\ea03\"}:host .icon-text-h2:before{content:\"\\ea04\"}:host .icon-text-underline:before{content:\"\\ea05\"}:host .icon-twitter:before{content:\"\\ea06\"}:host .icon-smiley-emoji-face:before{content:\"\\ea07\"}:host .icon-exchange:before{content:\"\\ea08\"}:host .icon-markdown:before{content:\"\\ea09\"}:host .icon-quote:before{content:\"\\ea0a\"}:host .icon-measure-ruler-calibration:before{content:\"\\ea0b\"}:host .icon-zendesk-logo:before{content:\"\\e9f1\"}:host .icon-add-server-databases-endpoint:before{content:\"\\e9f2\"}:host .icon-cloud-network-add:before{content:\"\\e9f3\"}:host .icon-server-database-endpoint:before{content:\"\\e9f4\"}:host .icon-book-lab-flask:before{content:\"\\e9f5\"}:host .icon-list-test-lab-flask:before{content:\"\\e9f6\"}:host .icon-test-lab-flask:before{content:\"\\e9f7\"}:host .icon-message-checkmark-sent:before{content:\"\\e9f8\"}:host .icon-send-message-share:before{content:\"\\e9f9\"}:host .icon-flywheel-mark-logo:before{content:\"\\e9fa\"}:host .icon-speed-dashboard:before{content:\"\\e9fb\"}:host .icon-arrange-filter-sort:before{content:\"\\e9fc\"}:host .icon-delivery-shipment-packages:before{content:\"\\e9bb\"}:host .icon-color-ven-design-profile-central:before{content:\"\\e9ce\"}:host .icon-home-modern-door:before{content:\"\\e9e4\"}:host .icon-tasklist-to-do-checkmark:before{content:\"\\e9eb\"}:host .icon-user-profile-group-discovery:before{content:\"\\e999\"}:host .icon-flip-horizontal:before{content:\"\\e9b5\"}:host .icon-flip-vertical:before{content:\"\\e9b6\"}:host .icon-facebook:before{content:\"\\e9b7\"}:host .icon-github-color-login:before{content:\"\\e9b8\"}:host .icon-linkedin:before{content:\"\\e9b9\"}:host .icon-youtube:before{content:\"\\e9ba\"}:host .icon-server-databases-connect:before{content:\"\\e9bc\"}:host .icon-server-databases-download:before{content:\"\\e9bd\"}:host .icon-server-databases-minimal-download:before{content:\"\\e9be\"}:host .icon-server-databases-sync:before{content:\"\\e9bf\"}:host .icon-graduate-hat:before{content:\"\\e9c0\"}:host .icon-blocks-code-test-checkmark:before{content:\"\\e9c1\"}:host .icon-camera-photo-capture:before{content:\"\\e9c2\"}:host .icon-photo-edit-brightness-invert:before{content:\"\\e9c3\"}:host .icon-unlimited-repeat-subscription-circle:before{content:\"\\e9c4\"}:host .icon-mute:before{content:\"\\e9c5\"}:host .icon-volume-full:before{content:\"\\e9c6\"}:host .icon-hand-money-currency:before{content:\"\\e9c7\"}:host .icon-bookmark-plus-add:before{content:\"\\e9c8\"}:host .icon-circle:before{content:\"\\e9c9\"}:host .icon-clip-attachment:before{content:\"\\e9ca\"}:host .icon-code-text:before{content:\"\\e9cb\"}:host .icon-document-status-done-checkmark:before{content:\"\\e9cc\"}:host .icon-done-check-tracked:before{content:\"\\e9cd\"}:host .icon-home-modern-option-lines:before{content:\"\\e9cf\"}:host .icon-keyboard:before{content:\"\\e9d0\"}:host .icon-line:before{content:\"\\e9d1\"}:host .icon-link-unlink:before{content:\"\\e9d2\"}:host .icon-measure-angle:before{content:\"\\e9d3\"}:host .icon-media-library-imports-dowload:before{content:\"\\e9d4\"}:host .icon-message-chat-info:before{content:\"\\e9d5\"}:host .icon-microphone-mic-rec-circle:before{content:\"\\e9d6\"}:host .icon-microphone-mic-rec:before{content:\"\\e9d7\"}:host .icon-microphone-mic-recording-circle:before{content:\"\\e9d8\"}:host .icon-pie-graph-chart-sample:before{content:\"\\e9d9\"}:host .icon-plus-add-rectangle:before{content:\"\\e9da\"}:host .icon-polygon:before{content:\"\\e9db\"}:host .icon-rotate-arrow-manual:before{content:\"\\e9dc\"}:host .icon-rotate-item-left:before{content:\"\\e9dd\"}:host .icon-rotate-item-right:before{content:\"\\e9de\"}:host .icon-stars-light-sparkle:before{content:\"\\e9df\"}:host .icon-undone-uncheck-untracked:before{content:\"\\e9e0\"}:host .icon-clap-applause-hands:before{content:\"\\e9e1\"}:host .icon-email-mail-checkmark-group:before{content:\"\\e9e2\"}:host .icon-circle-ellipses:before{content:\"\\e9e3\"}:host .icon-crosshair:before{content:\"\\e9e5\"}:host .icon-cursor-select:before{content:\"\\e9e6\"}:host .icon-draw-rectangle:before{content:\"\\e9e7\"}:host .icon-ruler-bidirectional:before{content:\"\\e9e8\"}:host .icon-ruler:before{content:\"\\e9e9\"}:host .icon-workspace-mode:before{content:\"\\e9ea\"}:host .icon-creative-commons:before{content:\"\\e9ec\"}:host .icon-free-rights:before{content:\"\\e9ed\"}:host .icon-hammer-screwdriver:before{content:\"\\e9ee\"}:host .icon-arrow-annotate:before{content:\"\\e9ef\"}:host .icon-arrow:before{content:\"\\e9f0\"}:host .icon-notebook-open:before{content:\"\\e998\"}:host .icon-windows:before{content:\"\\e963\"}:host .icon-add-new-create:before{content:\"\\e969\"}:host .icon-add-row-above:before{content:\"\\e96a\"}:host .icon-add-row-below:before{content:\"\\e96b\"}:host .icon-arrow-rotate-restore:before{content:\"\\e96c\"}:host .icon-arrow-rotate:before{content:\"\\e96d\"}:host .icon-arrow-back-collapse:before{content:\"\\e96e\"}:host .icon-arrow-forward-collapse:before{content:\"\\e96f\"}:host .icon-barcode-serial:before{content:\"\\e97a\"}:host .icon-barcode-stack-scan:before{content:\"\\e97b\"}:host .icon-button-form-element:before{content:\"\\e97c\"}:host .icon-calendar-schedule:before{content:\"\\e97d\"}:host .icon-chat-messages-bubble:before{content:\"\\e97e\"}:host .icon-checklist-tasks-chechmark-square:before{content:\"\\e97f\"}:host .icon-color-design-profile:before{content:\"\\e980\"}:host .icon-computer-chip:before{content:\"\\e981\"}:host .icon-contrast-photo-edit:before{content:\"\\e982\"}:host .icon-document-file-list-protocol:before{content:\"\\e983\"}:host .icon-drag-drop-indicator:before{content:\"\\e984\"}:host .icon-form-metadata-element:before{content:\"\\e985\"}:host .icon-full-screen-zoom:before{content:\"\\e986\"}:host .icon-layout:before{content:\"\\e987\"}:host .icon-header-form-element:before{content:\"\\e988\"}:host .icon-human-artificial-intelligence:before{content:\"\\e989\"}:host .icon-image-photo-copy-left-down:before{content:\"\\e98a\"}:host .icon-image-picture-square:before{content:\"\\e98b\"}:host .icon-items-group-elements:before{content:\"\\e98c\"}:host .icon-layers:before{content:\"\\e98d\"}:host .icon-menu-burger-handle:before{content:\"\\e98e\"}:host .icon-menu-list-form-square:before{content:\"\\e98f\"}:host .icon-message-chat-question-support:before{content:\"\\e990\"}:host .icon-message-question-checkmark:before{content:\"\\e991\"}:host .icon-minus:before{content:\"\\e992\"}:host .icon-mouse-big:before{content:\"\\e993\"}:host .icon-move:before{content:\"\\e994\"}:host .icon-music-play-resume:before{content:\"\\e995\"}:host .icon-music-stop:before{content:\"\\e996\"}:host .icon-notebook-add-plus:before{content:\"\\e997\"}:host .icon-notebook-pen-edit:before{content:\"\\e99a\"}:host .icon-notebook:before{content:\"\\e99b\"}:host .icon-notes-pen:before{content:\"\\e99c\"}:host .icon-object-search-zoom-plus:before{content:\"\\e99d\"}:host .icon-pencil-edit-create:before{content:\"\\e99e\"}:host .icon-protection-target:before{content:\"\\e99f\"}:host .icon-rotate:before{content:\"\\e9a0\"}:host .icon-scanner:before{content:\"\\e9a1\"}:host .icon-search-user-profile-person:before{content:\"\\e9a2\"}:host .icon-search-zoom-minus:before{content:\"\\e9a3\"}:host .icon-search-zoom-plus:before{content:\"\\e9a4\"}:host .icon-section-form-element:before{content:\"\\e9a5\"}:host .icon-server-databases-key-protection:before{content:\"\\e9a6\"}:host .icon-server-databases-sync-import:before{content:\"\\e9a7\"}:host .icon-servers-database:before{content:\"\\e9a8\"}:host .icon-target:before{content:\"\\e9a9\"}:host .icon-text-long:before{content:\"\\e9aa\"}:host .icon-text-short-form-element:before{content:\"\\e9ab\"}:host .icon-timer-clock-style:before{content:\"\\e9ac\"}:host .icon-user-document:before{content:\"\\e9ad\"}:host .icon-video-player-controls:before{content:\"\\e9ae\"}:host .icon-visible-eye-hidden:before{content:\"\\e9af\"}:host .icon-window-finder-resize-arrow-down:before{content:\"\\e9b0\"}:host .icon-window-finder-resize-arrow-up:before{content:\"\\e9b1\"}:host .icon-window-resize-left:before{content:\"\\e9b2\"}:host .icon-window-resize-right:before{content:\"\\e9b3\"}:host .icon-window-zoom-plus-loupe:before{content:\"\\e9b4\"}:host .icon-laptop-health-medical-cross:before{content:\"\\e971\"}:host .icon-radiology-scan-circle:before{content:\"\\e974\"}:host .icon-money-coin:before{content:\"\\e965\"}:host .icon-brain:before{content:\"\\e972\"}:host .icon-dna-hospital-medical:before{content:\"\\e973\"}:host .icon-lungs:before{content:\"\\e976\"}:host .icon-protective-mask:before{content:\"\\e977\"}:host .icon-radiology-scan:before{content:\"\\e978\"}:host .icon-stomach:before{content:\"\\e979\"}:host .icon-cash-banknotes:before{content:\"\\e964\"}:host .icon-money-dollar:before{content:\"\\e966\"}:host .icon-money:before{content:\"\\e967\"}:host .icon-cloud-storage-checkmark:before{content:\"\\e968\"}:host .icon-modalities:before{content:\"\\e970\"}:host .icon-search-loop:before{content:\"\\e936\"}:host .icon-question-circle:before{content:\"\\e921\"}:host .icon-earth-globe-fail:before{content:\"\\e935\"}:host .icon-user-setting-gear:before{content:\"\\e909\"}:host .icon-user-delete-cross:before{content:\"\\e95b\"}:host .icon-apply-copy-duplicate:before{content:\"\\e95c\"}:host .icon-arrow-down:before{content:\"\\e95d\"}:host .icon-arrow-up:before{content:\"\\e95e\"}:host .icon-grid-layout:before{content:\"\\e95f\"}:host .icon-folder-blank:before{content:\"\\e960\"}:host .icon-folder-group:before{content:\"\\e961\"}:host .icon-file-text:before{content:\"\\e962\"}:host .icon-edit-boxed:before{content:\"\\e922\"}:host .icon-chart-trend-square:before{content:\"\\e900\"}:host .icon-layout-grid:before{content:\"\\e901\"}:host .icon-files-library-content:before{content:\"\\e902\"}:host .icon-user-lock:before{content:\"\\e903\"}:host .icon-lock:before{content:\"\\e904\"}:host .icon-add-user:before{content:\"\\e905\"}:host .icon-user-checked:before{content:\"\\e906\"}:host .icon-user-group:before{content:\"\\e907\"}:host .icon-user-key:before{content:\"\\e908\"}:host .icon-thumbs-up-like:before{content:\"\\e90a\"}:host .icon-apple:before{content:\"\\e90b\"}:host .icon-gitlab:before{content:\"\\e90c\"}:host .icon-linux:before{content:\"\\e90d\"}:host .icon-add-server:before{content:\"\\e90e\"}:host .icon-server-checkmark:before{content:\"\\e90f\"}:host .icon-server-upload:before{content:\"\\e910\"}:host .icon-server:before{content:\"\\e911\"}:host .icon-data-tree:before{content:\"\\e913\"}:host .icon-add-circle:before{content:\"\\e914\"}:host .icon-bell-notification:before{content:\"\\e915\"}:host .icon-bookmark:before{content:\"\\e916\"}:host .icon-chart-square:before{content:\"\\e917\"}:host .icon-checklist:before{content:\"\\e918\"}:host .icon-clock-history:before{content:\"\\e919\"}:host .icon-clock-loading:before{content:\"\\e91a\"}:host .icon-close-circled:before{content:\"\\e91b\"}:host .icon-close:before{content:\"\\e91c\"}:host .icon-copy-item:before{content:\"\\e91d\"}:host .icon-done-check:before{content:\"\\e91e\"}:host .icon-download-status:before{content:\"\\e91f\"}:host .icon-download:before{content:\"\\e920\"}:host .icon-edit:before{content:\"\\e923\"}:host .icon-email:before{content:\"\\e924\"}:host .icon-file-download:before{content:\"\\e925\"}:host .icon-files-library:before{content:\"\\e926\"}:host .icon-files:before{content:\"\\e927\"}:host .icon-filter:before{content:\"\\e928\"}:host .icon-flag:before{content:\"\\e929\"}:host .icon-information-circle:before{content:\"\\e92a\"}:host .icon-key:before{content:\"\\e92b\"}:host .icon-keychain:before{content:\"\\e92c\"}:host .icon-label-tag:before{content:\"\\e92d\"}:host .icon-link:before{content:\"\\e92e\"}:host .icon-loading-status-checkmark:before{content:\"\\e92f\"}:host .icon-logout:before{content:\"\\e930\"}:host .icon-menu-horizontal:before{content:\"\\e931\"}:host .icon-menu-vertical:before{content:\"\\e932\"}:host .icon-open:before{content:\"\\e933\"}:host .icon-pie-chart:before{content:\"\\e934\"}:host .icon-search:before{content:\"\\e937\"}:host .icon-setting-gear:before{content:\"\\e938\"}:host .icon-settings-gear-square:before{content:\"\\e93a\"}:host .icon-settings-gear:before{content:\"\\e93b\"}:host .icon-settings-select:before{content:\"\\e93c\"}:host .icon-share:before{content:\"\\e93d\"}:host .icon-show-visible:before{content:\"\\e93e\"}:host .icon-star:before{content:\"\\e93f\"}:host .icon-substract-group:before{content:\"\\e940\"}:host .icon-switch:before{content:\"\\e941\"}:host .icon-trash-delete:before{content:\"\\e942\"}:host .icon-upload:before{content:\"\\e943\"}:host .icon-user:before{content:\"\\e944\"}:host .icon-warning-circle:before{content:\"\\e945\"}:host .icon-warning:before{content:\"\\e946\"}:host .icon-icon-placeholder:before{content:\"\\e947\"}:host .icon-network-storage-alert:before{content:\"\\e948\"}:host .icon-folder-add:before{content:\"\\e949\"}:host .icon-folder-checked:before{content:\"\\e94a\"}:host .icon-folder-open:before{content:\"\\e94b\"}:host .icon-folder-share:before{content:\"\\e94c\"}:host .icon-document-file-blank:before{content:\"\\e94d\"}:host .icon-document-file-download:before{content:\"\\e94e\"}:host .icon-document-file-tar:before{content:\"\\e94f\"}:host .icon-document-file-zip:before{content:\"\\e950\"}:host .icon-document-visible:before{content:\"\\e951\"}:host .icon-documents-files:before{content:\"\\e952\"}:host .icon-arrow-back:before{content:\"\\e953\"}:host .icon-arrow-forward:before{content:\"\\e954\"}:host .icon-chevron-back:before{content:\"\\e955\"}:host .icon-chevron-down:before{content:\"\\e956\"}:host .icon-chevron-forward:before{content:\"\\e957\"}:host .icon-chevron-up:before{content:\"\\e958\"}:host .icon-embed-circle:before{content:\"\\e959\"}:host .icon-rotate-refresh:before{content:\"\\e95a\"}:host p{margin:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:8;overflow-y:hidden;text-overflow:ellipsis;line-height:140%;color:var(--typography-muted)}:host img{max-width:100%;margin:auto;border-radius:4px;border:1px solid var(--separations-base, #1e3154)}\n"], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
6
6
  }
7
7
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwCardContentComponent, decorators: [{
8
8
  type: Component,
9
- args: [{ selector: 'fw-card-content', template: '<ng-content></ng-content>', encapsulation: ViewEncapsulation.ShadowDom, styles: ["@import\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700\";.vision-h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}.vision-h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}.vision-h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}.vision-h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}.vision-h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}.vision-h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}.vision-p1{font-size:18px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p2,:host p{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p3{font-size:12px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p4{font-size:10px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p5{font-size:8px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-link{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link:hover{text-decoration:none}.vision-link:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link:visited{color:var(--secondary-base)}.vision-link-inherited{text-decoration:underline;color:var(--primary-base);cursor:pointer;color:inherit}.vision-link-inherited:hover{text-decoration:none}.vision-link-inherited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-inherited:visited{color:var(--secondary-base)}.vision-link-inherited:visited{color:inherit}.vision-link-no-visited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-no-visited:hover{text-decoration:none}.vision-link-no-visited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-no-visited:visited{color:var(--secondary-base)}.vision-link-no-visited:visited{color:var(--primary-base)}:host{overflow:hidden}:host h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}:host h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}:host h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}:host h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}:host h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}:host h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}:host p{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}:host a{text-decoration:underline;color:var(--primary-base);cursor:pointer}:host a:hover{text-decoration:none}:host a:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}:host a:visited{color:var(--secondary-base)}:host p{margin:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:8;overflow-y:hidden;text-overflow:ellipsis;line-height:140%;color:var(--typography-muted)}:host img{max-width:100%;margin:auto;border-radius:4px;border:1px solid var(--separations-base, #1e3154)}\n"] }]
9
+ args: [{ selector: 'fw-card-content', template: '<ng-content></ng-content>', encapsulation: ViewEncapsulation.ShadowDom, styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700\";.vision-h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}.vision-h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}.vision-h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}.vision-h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}.vision-h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}.vision-h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}.vision-p1{font-size:18px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p2,:host p{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p3{font-size:12px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p4{font-size:10px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p5{font-size:8px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-link{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link:hover{text-decoration:none}.vision-link:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link:visited{color:var(--secondary-base)}.vision-link-inherited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-inherited:hover{text-decoration:none}.vision-link-inherited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-inherited:visited{color:var(--secondary-base)}.vision-link-inherited,.vision-link-inherited:visited{color:inherit}.vision-link-no-visited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-no-visited:hover{text-decoration:none}.vision-link-no-visited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-no-visited:visited{color:var(--secondary-base)}.vision-link-no-visited:visited{color:var(--primary-base)}:host{overflow:hidden}:host h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}:host h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}:host h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}:host h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}:host h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}:host h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}:host p{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}:host a{text-decoration:underline;color:var(--primary-base);cursor:pointer}:host a:hover{text-decoration:none}:host a:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}:host a:visited{color:var(--secondary-base)}:host .vision-icon{white-space:pre}@supports (font: -apple-system-body){:host .vision-icon:after{content:\"\";padding-left:100%;padding-right:100%}}:host .vision-icon,:host [class^=icon-],:host [class*=\" icon-\"]{font-family:Flywheel-Vision-Icons!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:\"liga\";-moz-font-feature-settings:\"liga=1\";-moz-font-feature-settings:\"liga\";-ms-font-feature-settings:\"liga\" 1;font-feature-settings:\"liga\" 1;-webkit-font-variant-ligatures:discretionary-ligatures;font-variant-ligatures:discretionary-ligatures;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:host .icon-thumbs-down-dislike:before{content:\"\\ea54\"}:host .icon-mouse-scroll:before{content:\"\\ea55\"}:host .icon-folder-move:before{content:\"\\ea56\"}:host .icon-documents-file-move-arrow-right:before{content:\"\\ea57\"}:host .icon-contract-vertical:before{content:\"\\ea46\"}:host .icon-stretch-vertical:before{content:\"\\ea47\"}:host .icon-grid-layout-9-square:before{content:\"\\ea48\"}:host .icon-git-add-branch:before{content:\"\\ea49\"}:host .icon-git-branch:before{content:\"\\ea4a\"}:host .icon-git-merge-draft:before{content:\"\\ea4b\"}:host .icon-git-merge:before{content:\"\\ea4c\"}:host .icon-git-pull-request-2:before{content:\"\\ea4d\"}:host .icon-conversion-exchange:before{content:\"\\ea4e\"}:host .icon-archive-documents-box-big:before{content:\"\\ea4f\"}:host .icon-cursor-click:before{content:\"\\ea50\"}:host .icon-document-file-deleted-cross-remove-center-cancel:before{content:\"\\ea51\"}:host .icon-documents-file-checkmark:before{content:\"\\ea52\"}:host .icon-file-blank-search:before{content:\"\\ea53\"}:host .icon-user-profile-cards-pool:before{content:\"\\ea3b\"}:host .icon-certificate:before{content:\"\\ea3c\"}:host .icon-check-mark-certificate:before{content:\"\\ea3d\"}:host .icon-server-databases-checkmark-user:before{content:\"\\ea3e\"}:host .icon-arrow-up-high-priority:before{content:\"\\ea3f\"}:host .icon-arrow-up-low-priority:before{content:\"\\ea40\"}:host .icon-stop-minus:before{content:\"\\ea41\"}:host .icon-document-file-checkmark-bottom-left:before{content:\"\\ea42\"}:host .icon-monitor-computer:before{content:\"\\ea43\"}:host .icon-arrow-redo:before{content:\"\\ea44\"}:host .icon-arrow-undo:before{content:\"\\ea45\"}:host .icon-folders-copy-expand-arrow-down:before{content:\"\\ea39\"}:host .icon-folders-copy-expand-arrow-up:before{content:\"\\ea3a\"}:host .icon-clock-hour-4:before{content:\"\\ea32\"}:host .icon-documents-file:before{content:\"\\ea33\"}:host .icon-expand-pathfinder-dot-square-segmentation:before{content:\"\\ea34\"}:host .icon-square-fill-outline:before{content:\"\\ea35\"}:host .icon-square-fill:before{content:\"\\ea36\"}:host .icon-square-outline:before{content:\"\\ea37\"}:host .icon-flywheel-viewer-mark-logo:before{content:\"\\ea38\"}:host .icon-filter-sort-check-mark:before{content:\"\\ea2e\"}:host .icon-filter-sort-delete:before{content:\"\\ea2f\"}:host .icon-filter-sort-add:before{content:\"\\ea31\"}:host .icon-chevron-input-number:before{content:\"\\ea30\"}:host .icon-shield-protect:before{content:\"\\ea29\"}:host .icon-3d-sphere-rotate-arrows:before{content:\"\\ea2b\"}:host .icon-livewire-tool:before{content:\"\\ea2c\"}:host .icon-bezier-curve:before{content:\"\\ea2d\"}:host .icon-technology-cube-3d:before{content:\"\\ea28\"}:host .icon-brightness-photo-edit:before{content:\"\\bea29\"}:host .icon-target-space-object-select:before{content:\"\\ea2a\"}:host .icon-crown-style-circle:before{content:\"\\ea27\"}:host .icon-hammer-legal-square:before{content:\"\\ea18\"}:host .icon-browser-internet-web-windows:before{content:\"\\ea26\"}:host .icon-settings-adjust:before{content:\"\\e912\"}:host .icon-lock-unlock:before{content:\"\\e939\"}:host .icon-private-mode-protection-circle:before{content:\"\\ea17\"}:host .icon-ai:before{content:\"\\ea19\"}:host .icon-reader-studies:before{content:\"\\ea1a\"}:host .icon-shapes-objects:before{content:\"\\ea1b\"}:host .icon-cloud-upload:before{content:\"\\ea1c\"}:host .icon-floppy-save:before{content:\"\\ea1d\"}:host .icon-text-input-form:before{content:\"\\ea1e\"}:host .icon-document-file-add-plus-bottom-left:before{content:\"\\ea1f\"}:host .icon-document-file-upload-bottom-center:before{content:\"\\ea20\"}:host .icon-paint-roller:before{content:\"\\ea21\"}:host .icon-brush-edit-create:before{content:\"\\ea22\"}:host .icon-bucket-paint:before{content:\"\\ea23\"}:host .icon-edit-erase:before{content:\"\\ea24\"}:host .icon-grid-dot-square:before{content:\"\\ea25\"}:host .icon-column-edit:before{content:\"\\ea0c\"}:host .icon-molecule:before{content:\"\\ea0d\"}:host .icon-invoice-checkmark-paid:before{content:\"\\ea0e\"}:host .icon-invoice:before{content:\"\\ea0f\"}:host .icon-pause:before{content:\"\\ea10\"}:host .icon-calendar-arrow-left-center:before{content:\"\\ea11\"}:host .icon-file-blank-image-load-mask:before{content:\"\\ea12\"}:host .icon-closed-freehand-vector-poly:before{content:\"\\ea13\"}:host .icon-curve-object-secet-cursor:before{content:\"\\ea14\"}:host .icon-freehand-vector-poly:before{content:\"\\ea15\"}:host .icon-pen-edit-circle:before{content:\"\\ea16\"}:host .icon-code-block-embed:before{content:\"\\e9fd\"}:host .icon-italic:before{content:\"\\e9fe\"}:host .icon-list-paragraph-number:before{content:\"\\e9ff\"}:host .icon-list-paragraph:before{content:\"\\ea00\"}:host .icon-text-bold:before{content:\"\\ea01\"}:host .icon-text-cross:before{content:\"\\ea02\"}:host .icon-text-h1:before{content:\"\\ea03\"}:host .icon-text-h2:before{content:\"\\ea04\"}:host .icon-text-underline:before{content:\"\\ea05\"}:host .icon-twitter:before{content:\"\\ea06\"}:host .icon-smiley-emoji-face:before{content:\"\\ea07\"}:host .icon-exchange:before{content:\"\\ea08\"}:host .icon-markdown:before{content:\"\\ea09\"}:host .icon-quote:before{content:\"\\ea0a\"}:host .icon-measure-ruler-calibration:before{content:\"\\ea0b\"}:host .icon-zendesk-logo:before{content:\"\\e9f1\"}:host .icon-add-server-databases-endpoint:before{content:\"\\e9f2\"}:host .icon-cloud-network-add:before{content:\"\\e9f3\"}:host .icon-server-database-endpoint:before{content:\"\\e9f4\"}:host .icon-book-lab-flask:before{content:\"\\e9f5\"}:host .icon-list-test-lab-flask:before{content:\"\\e9f6\"}:host .icon-test-lab-flask:before{content:\"\\e9f7\"}:host .icon-message-checkmark-sent:before{content:\"\\e9f8\"}:host .icon-send-message-share:before{content:\"\\e9f9\"}:host .icon-flywheel-mark-logo:before{content:\"\\e9fa\"}:host .icon-speed-dashboard:before{content:\"\\e9fb\"}:host .icon-arrange-filter-sort:before{content:\"\\e9fc\"}:host .icon-delivery-shipment-packages:before{content:\"\\e9bb\"}:host .icon-color-ven-design-profile-central:before{content:\"\\e9ce\"}:host .icon-home-modern-door:before{content:\"\\e9e4\"}:host .icon-tasklist-to-do-checkmark:before{content:\"\\e9eb\"}:host .icon-user-profile-group-discovery:before{content:\"\\e999\"}:host .icon-flip-horizontal:before{content:\"\\e9b5\"}:host .icon-flip-vertical:before{content:\"\\e9b6\"}:host .icon-facebook:before{content:\"\\e9b7\"}:host .icon-github-color-login:before{content:\"\\e9b8\"}:host .icon-linkedin:before{content:\"\\e9b9\"}:host .icon-youtube:before{content:\"\\e9ba\"}:host .icon-server-databases-connect:before{content:\"\\e9bc\"}:host .icon-server-databases-download:before{content:\"\\e9bd\"}:host .icon-server-databases-minimal-download:before{content:\"\\e9be\"}:host .icon-server-databases-sync:before{content:\"\\e9bf\"}:host .icon-graduate-hat:before{content:\"\\e9c0\"}:host .icon-blocks-code-test-checkmark:before{content:\"\\e9c1\"}:host .icon-camera-photo-capture:before{content:\"\\e9c2\"}:host .icon-photo-edit-brightness-invert:before{content:\"\\e9c3\"}:host .icon-unlimited-repeat-subscription-circle:before{content:\"\\e9c4\"}:host .icon-mute:before{content:\"\\e9c5\"}:host .icon-volume-full:before{content:\"\\e9c6\"}:host .icon-hand-money-currency:before{content:\"\\e9c7\"}:host .icon-bookmark-plus-add:before{content:\"\\e9c8\"}:host .icon-circle:before{content:\"\\e9c9\"}:host .icon-clip-attachment:before{content:\"\\e9ca\"}:host .icon-code-text:before{content:\"\\e9cb\"}:host .icon-document-status-done-checkmark:before{content:\"\\e9cc\"}:host .icon-done-check-tracked:before{content:\"\\e9cd\"}:host .icon-home-modern-option-lines:before{content:\"\\e9cf\"}:host .icon-keyboard:before{content:\"\\e9d0\"}:host .icon-line:before{content:\"\\e9d1\"}:host .icon-link-unlink:before{content:\"\\e9d2\"}:host .icon-measure-angle:before{content:\"\\e9d3\"}:host .icon-media-library-imports-dowload:before{content:\"\\e9d4\"}:host .icon-message-chat-info:before{content:\"\\e9d5\"}:host .icon-microphone-mic-rec-circle:before{content:\"\\e9d6\"}:host .icon-microphone-mic-rec:before{content:\"\\e9d7\"}:host .icon-microphone-mic-recording-circle:before{content:\"\\e9d8\"}:host .icon-pie-graph-chart-sample:before{content:\"\\e9d9\"}:host .icon-plus-add-rectangle:before{content:\"\\e9da\"}:host .icon-polygon:before{content:\"\\e9db\"}:host .icon-rotate-arrow-manual:before{content:\"\\e9dc\"}:host .icon-rotate-item-left:before{content:\"\\e9dd\"}:host .icon-rotate-item-right:before{content:\"\\e9de\"}:host .icon-stars-light-sparkle:before{content:\"\\e9df\"}:host .icon-undone-uncheck-untracked:before{content:\"\\e9e0\"}:host .icon-clap-applause-hands:before{content:\"\\e9e1\"}:host .icon-email-mail-checkmark-group:before{content:\"\\e9e2\"}:host .icon-circle-ellipses:before{content:\"\\e9e3\"}:host .icon-crosshair:before{content:\"\\e9e5\"}:host .icon-cursor-select:before{content:\"\\e9e6\"}:host .icon-draw-rectangle:before{content:\"\\e9e7\"}:host .icon-ruler-bidirectional:before{content:\"\\e9e8\"}:host .icon-ruler:before{content:\"\\e9e9\"}:host .icon-workspace-mode:before{content:\"\\e9ea\"}:host .icon-creative-commons:before{content:\"\\e9ec\"}:host .icon-free-rights:before{content:\"\\e9ed\"}:host .icon-hammer-screwdriver:before{content:\"\\e9ee\"}:host .icon-arrow-annotate:before{content:\"\\e9ef\"}:host .icon-arrow:before{content:\"\\e9f0\"}:host .icon-notebook-open:before{content:\"\\e998\"}:host .icon-windows:before{content:\"\\e963\"}:host .icon-add-new-create:before{content:\"\\e969\"}:host .icon-add-row-above:before{content:\"\\e96a\"}:host .icon-add-row-below:before{content:\"\\e96b\"}:host .icon-arrow-rotate-restore:before{content:\"\\e96c\"}:host .icon-arrow-rotate:before{content:\"\\e96d\"}:host .icon-arrow-back-collapse:before{content:\"\\e96e\"}:host .icon-arrow-forward-collapse:before{content:\"\\e96f\"}:host .icon-barcode-serial:before{content:\"\\e97a\"}:host .icon-barcode-stack-scan:before{content:\"\\e97b\"}:host .icon-button-form-element:before{content:\"\\e97c\"}:host .icon-calendar-schedule:before{content:\"\\e97d\"}:host .icon-chat-messages-bubble:before{content:\"\\e97e\"}:host .icon-checklist-tasks-chechmark-square:before{content:\"\\e97f\"}:host .icon-color-design-profile:before{content:\"\\e980\"}:host .icon-computer-chip:before{content:\"\\e981\"}:host .icon-contrast-photo-edit:before{content:\"\\e982\"}:host .icon-document-file-list-protocol:before{content:\"\\e983\"}:host .icon-drag-drop-indicator:before{content:\"\\e984\"}:host .icon-form-metadata-element:before{content:\"\\e985\"}:host .icon-full-screen-zoom:before{content:\"\\e986\"}:host .icon-layout:before{content:\"\\e987\"}:host .icon-header-form-element:before{content:\"\\e988\"}:host .icon-human-artificial-intelligence:before{content:\"\\e989\"}:host .icon-image-photo-copy-left-down:before{content:\"\\e98a\"}:host .icon-image-picture-square:before{content:\"\\e98b\"}:host .icon-items-group-elements:before{content:\"\\e98c\"}:host .icon-layers:before{content:\"\\e98d\"}:host .icon-menu-burger-handle:before{content:\"\\e98e\"}:host .icon-menu-list-form-square:before{content:\"\\e98f\"}:host .icon-message-chat-question-support:before{content:\"\\e990\"}:host .icon-message-question-checkmark:before{content:\"\\e991\"}:host .icon-minus:before{content:\"\\e992\"}:host .icon-mouse-big:before{content:\"\\e993\"}:host .icon-move:before{content:\"\\e994\"}:host .icon-music-play-resume:before{content:\"\\e995\"}:host .icon-music-stop:before{content:\"\\e996\"}:host .icon-notebook-add-plus:before{content:\"\\e997\"}:host .icon-notebook-pen-edit:before{content:\"\\e99a\"}:host .icon-notebook:before{content:\"\\e99b\"}:host .icon-notes-pen:before{content:\"\\e99c\"}:host .icon-object-search-zoom-plus:before{content:\"\\e99d\"}:host .icon-pencil-edit-create:before{content:\"\\e99e\"}:host .icon-protection-target:before{content:\"\\e99f\"}:host .icon-rotate:before{content:\"\\e9a0\"}:host .icon-scanner:before{content:\"\\e9a1\"}:host .icon-search-user-profile-person:before{content:\"\\e9a2\"}:host .icon-search-zoom-minus:before{content:\"\\e9a3\"}:host .icon-search-zoom-plus:before{content:\"\\e9a4\"}:host .icon-section-form-element:before{content:\"\\e9a5\"}:host .icon-server-databases-key-protection:before{content:\"\\e9a6\"}:host .icon-server-databases-sync-import:before{content:\"\\e9a7\"}:host .icon-servers-database:before{content:\"\\e9a8\"}:host .icon-target:before{content:\"\\e9a9\"}:host .icon-text-long:before{content:\"\\e9aa\"}:host .icon-text-short-form-element:before{content:\"\\e9ab\"}:host .icon-timer-clock-style:before{content:\"\\e9ac\"}:host .icon-user-document:before{content:\"\\e9ad\"}:host .icon-video-player-controls:before{content:\"\\e9ae\"}:host .icon-visible-eye-hidden:before{content:\"\\e9af\"}:host .icon-window-finder-resize-arrow-down:before{content:\"\\e9b0\"}:host .icon-window-finder-resize-arrow-up:before{content:\"\\e9b1\"}:host .icon-window-resize-left:before{content:\"\\e9b2\"}:host .icon-window-resize-right:before{content:\"\\e9b3\"}:host .icon-window-zoom-plus-loupe:before{content:\"\\e9b4\"}:host .icon-laptop-health-medical-cross:before{content:\"\\e971\"}:host .icon-radiology-scan-circle:before{content:\"\\e974\"}:host .icon-money-coin:before{content:\"\\e965\"}:host .icon-brain:before{content:\"\\e972\"}:host .icon-dna-hospital-medical:before{content:\"\\e973\"}:host .icon-lungs:before{content:\"\\e976\"}:host .icon-protective-mask:before{content:\"\\e977\"}:host .icon-radiology-scan:before{content:\"\\e978\"}:host .icon-stomach:before{content:\"\\e979\"}:host .icon-cash-banknotes:before{content:\"\\e964\"}:host .icon-money-dollar:before{content:\"\\e966\"}:host .icon-money:before{content:\"\\e967\"}:host .icon-cloud-storage-checkmark:before{content:\"\\e968\"}:host .icon-modalities:before{content:\"\\e970\"}:host .icon-search-loop:before{content:\"\\e936\"}:host .icon-question-circle:before{content:\"\\e921\"}:host .icon-earth-globe-fail:before{content:\"\\e935\"}:host .icon-user-setting-gear:before{content:\"\\e909\"}:host .icon-user-delete-cross:before{content:\"\\e95b\"}:host .icon-apply-copy-duplicate:before{content:\"\\e95c\"}:host .icon-arrow-down:before{content:\"\\e95d\"}:host .icon-arrow-up:before{content:\"\\e95e\"}:host .icon-grid-layout:before{content:\"\\e95f\"}:host .icon-folder-blank:before{content:\"\\e960\"}:host .icon-folder-group:before{content:\"\\e961\"}:host .icon-file-text:before{content:\"\\e962\"}:host .icon-edit-boxed:before{content:\"\\e922\"}:host .icon-chart-trend-square:before{content:\"\\e900\"}:host .icon-layout-grid:before{content:\"\\e901\"}:host .icon-files-library-content:before{content:\"\\e902\"}:host .icon-user-lock:before{content:\"\\e903\"}:host .icon-lock:before{content:\"\\e904\"}:host .icon-add-user:before{content:\"\\e905\"}:host .icon-user-checked:before{content:\"\\e906\"}:host .icon-user-group:before{content:\"\\e907\"}:host .icon-user-key:before{content:\"\\e908\"}:host .icon-thumbs-up-like:before{content:\"\\e90a\"}:host .icon-apple:before{content:\"\\e90b\"}:host .icon-gitlab:before{content:\"\\e90c\"}:host .icon-linux:before{content:\"\\e90d\"}:host .icon-add-server:before{content:\"\\e90e\"}:host .icon-server-checkmark:before{content:\"\\e90f\"}:host .icon-server-upload:before{content:\"\\e910\"}:host .icon-server:before{content:\"\\e911\"}:host .icon-data-tree:before{content:\"\\e913\"}:host .icon-add-circle:before{content:\"\\e914\"}:host .icon-bell-notification:before{content:\"\\e915\"}:host .icon-bookmark:before{content:\"\\e916\"}:host .icon-chart-square:before{content:\"\\e917\"}:host .icon-checklist:before{content:\"\\e918\"}:host .icon-clock-history:before{content:\"\\e919\"}:host .icon-clock-loading:before{content:\"\\e91a\"}:host .icon-close-circled:before{content:\"\\e91b\"}:host .icon-close:before{content:\"\\e91c\"}:host .icon-copy-item:before{content:\"\\e91d\"}:host .icon-done-check:before{content:\"\\e91e\"}:host .icon-download-status:before{content:\"\\e91f\"}:host .icon-download:before{content:\"\\e920\"}:host .icon-edit:before{content:\"\\e923\"}:host .icon-email:before{content:\"\\e924\"}:host .icon-file-download:before{content:\"\\e925\"}:host .icon-files-library:before{content:\"\\e926\"}:host .icon-files:before{content:\"\\e927\"}:host .icon-filter:before{content:\"\\e928\"}:host .icon-flag:before{content:\"\\e929\"}:host .icon-information-circle:before{content:\"\\e92a\"}:host .icon-key:before{content:\"\\e92b\"}:host .icon-keychain:before{content:\"\\e92c\"}:host .icon-label-tag:before{content:\"\\e92d\"}:host .icon-link:before{content:\"\\e92e\"}:host .icon-loading-status-checkmark:before{content:\"\\e92f\"}:host .icon-logout:before{content:\"\\e930\"}:host .icon-menu-horizontal:before{content:\"\\e931\"}:host .icon-menu-vertical:before{content:\"\\e932\"}:host .icon-open:before{content:\"\\e933\"}:host .icon-pie-chart:before{content:\"\\e934\"}:host .icon-search:before{content:\"\\e937\"}:host .icon-setting-gear:before{content:\"\\e938\"}:host .icon-settings-gear-square:before{content:\"\\e93a\"}:host .icon-settings-gear:before{content:\"\\e93b\"}:host .icon-settings-select:before{content:\"\\e93c\"}:host .icon-share:before{content:\"\\e93d\"}:host .icon-show-visible:before{content:\"\\e93e\"}:host .icon-star:before{content:\"\\e93f\"}:host .icon-substract-group:before{content:\"\\e940\"}:host .icon-switch:before{content:\"\\e941\"}:host .icon-trash-delete:before{content:\"\\e942\"}:host .icon-upload:before{content:\"\\e943\"}:host .icon-user:before{content:\"\\e944\"}:host .icon-warning-circle:before{content:\"\\e945\"}:host .icon-warning:before{content:\"\\e946\"}:host .icon-icon-placeholder:before{content:\"\\e947\"}:host .icon-network-storage-alert:before{content:\"\\e948\"}:host .icon-folder-add:before{content:\"\\e949\"}:host .icon-folder-checked:before{content:\"\\e94a\"}:host .icon-folder-open:before{content:\"\\e94b\"}:host .icon-folder-share:before{content:\"\\e94c\"}:host .icon-document-file-blank:before{content:\"\\e94d\"}:host .icon-document-file-download:before{content:\"\\e94e\"}:host .icon-document-file-tar:before{content:\"\\e94f\"}:host .icon-document-file-zip:before{content:\"\\e950\"}:host .icon-document-visible:before{content:\"\\e951\"}:host .icon-documents-files:before{content:\"\\e952\"}:host .icon-arrow-back:before{content:\"\\e953\"}:host .icon-arrow-forward:before{content:\"\\e954\"}:host .icon-chevron-back:before{content:\"\\e955\"}:host .icon-chevron-down:before{content:\"\\e956\"}:host .icon-chevron-forward:before{content:\"\\e957\"}:host .icon-chevron-up:before{content:\"\\e958\"}:host .icon-embed-circle:before{content:\"\\e959\"}:host .icon-rotate-refresh:before{content:\"\\e95a\"}:host p{margin:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:8;overflow-y:hidden;text-overflow:ellipsis;line-height:140%;color:var(--typography-muted)}:host img{max-width:100%;margin:auto;border-radius:4px;border:1px solid var(--separations-base, #1e3154)}\n"] }]
10
10
  }] });
11
11
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1jb250ZW50LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2NhcmQvY2FyZC1jb250ZW50L2NhcmQtY29udGVudC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFRN0QsTUFBTSxPQUFPLHNCQUFzQjsrR0FBdEIsc0JBQXNCO21HQUF0QixzQkFBc0IsdURBSnZCLDJCQUEyQjs7NEZBSTFCLHNCQUFzQjtrQkFObEMsU0FBUzsrQkFDRSxpQkFBaUIsWUFDakIsMkJBQTJCLGlCQUV0QixpQkFBaUIsQ0FBQyxTQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdmdy1jYXJkLWNvbnRlbnQnLFxuICB0ZW1wbGF0ZTogJzxuZy1jb250ZW50PjwvbmctY29udGVudD4nLFxuICBzdHlsZVVybHM6IFsnLi9jYXJkLWNvbnRlbnQuY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uU2hhZG93RG9tLFxufSlcbmV4cG9ydCBjbGFzcyBGd0NhcmRDb250ZW50Q29tcG9uZW50IHtcblxufVxuIl19
@@ -7,11 +7,11 @@ export class FwCardHeaderComponent {
7
7
  this.iconColor = 'primary';
8
8
  }
9
9
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwCardHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
10
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwCardHeaderComponent, selector: "fw-card-header", inputs: { title: "title", description: "description", leftIcon: "leftIcon", iconColor: "iconColor" }, ngImport: i0, template: "<ng-content select=\"fw-app-icon\"></ng-content>\n<fw-icon [color]=\"iconColor\" *ngIf=\"leftIcon\">{{ leftIcon }}</fw-icon>\n<div class=\"card-header-title\">\n <h3 *ngIf=\"title\" class=\"vision-h3\">{{ title }}</h3>\n <p *ngIf=\"description\" class=\"vision-p3\">{{ description }}</p>\n</div>\n<div class=\"card-header-key\">\n <ng-content></ng-content>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700\";.vision-h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}.vision-h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}.vision-h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}.vision-h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}.vision-h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}.vision-h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}.vision-p1{font-size:18px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p2,:host .card-header-key{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p3{font-size:12px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p4{font-size:10px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p5{font-size:8px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-link{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link:hover{text-decoration:none}.vision-link:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link:visited{color:var(--secondary-base)}.vision-link-inherited{text-decoration:underline;color:var(--primary-base);cursor:pointer;color:inherit}.vision-link-inherited:hover{text-decoration:none}.vision-link-inherited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-inherited:visited{color:var(--secondary-base)}.vision-link-inherited:visited{color:inherit}.vision-link-no-visited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-no-visited:hover{text-decoration:none}.vision-link-no-visited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-no-visited:visited{color:var(--secondary-base)}.vision-link-no-visited:visited{color:var(--primary-base)}:host{width:100%;display:flex;flex-direction:row;justify-content:space-between;align-items:center;gap:8px}:host fw-icon{font-size:22px}:host .card-header-title{flex:1}:host .card-header-title h3{flex:1;margin:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow-y:hidden;text-overflow:ellipsis}:host .card-header-title p{color:var(--typography-muted);margin:0}:host .card-header-key{display:flex;align-items:flex-start;color:var(--typography-muted);gap:8px}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FwIconComponent, selector: "fw-icon", inputs: ["size", "color"] }] }); }
10
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwCardHeaderComponent, selector: "fw-card-header", inputs: { title: "title", description: "description", leftIcon: "leftIcon", iconColor: "iconColor" }, ngImport: i0, template: "<ng-content select=\"fw-app-icon\"></ng-content>\n<fw-icon [color]=\"iconColor\" *ngIf=\"leftIcon\">{{ leftIcon }}</fw-icon>\n<div class=\"card-header-title\">\n <h3 *ngIf=\"title\" class=\"vision-h3\">{{ title }}</h3>\n <p *ngIf=\"description\" class=\"vision-p3\">{{ description }}</p>\n</div>\n<div class=\"card-header-key\">\n <ng-content></ng-content>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700\";.vision-h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}.vision-h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}.vision-h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}.vision-h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}.vision-h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}.vision-h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}.vision-p1{font-size:18px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p2,:host .card-header-key{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p3{font-size:12px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p4{font-size:10px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p5{font-size:8px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-link{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link:hover{text-decoration:none}.vision-link:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link:visited{color:var(--secondary-base)}.vision-link-inherited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-inherited:hover{text-decoration:none}.vision-link-inherited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-inherited:visited{color:var(--secondary-base)}.vision-link-inherited,.vision-link-inherited:visited{color:inherit}.vision-link-no-visited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-no-visited:hover{text-decoration:none}.vision-link-no-visited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-no-visited:visited{color:var(--secondary-base)}.vision-link-no-visited:visited{color:var(--primary-base)}:host{width:100%;display:flex;flex-direction:row;justify-content:space-between;align-items:center;gap:8px}:host fw-icon{font-size:22px}:host .card-header-title{flex:1}:host .card-header-title h3{flex:1;margin:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow-y:hidden;text-overflow:ellipsis}:host .card-header-title p{color:var(--typography-muted);margin:0}:host .card-header-key{display:flex;align-items:flex-start;color:var(--typography-muted);gap:8px}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FwIconComponent, selector: "fw-icon", inputs: ["size", "color"] }] }); }
11
11
  }
12
12
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwCardHeaderComponent, decorators: [{
13
13
  type: Component,
14
- args: [{ selector: 'fw-card-header', template: "<ng-content select=\"fw-app-icon\"></ng-content>\n<fw-icon [color]=\"iconColor\" *ngIf=\"leftIcon\">{{ leftIcon }}</fw-icon>\n<div class=\"card-header-title\">\n <h3 *ngIf=\"title\" class=\"vision-h3\">{{ title }}</h3>\n <p *ngIf=\"description\" class=\"vision-p3\">{{ description }}</p>\n</div>\n<div class=\"card-header-key\">\n <ng-content></ng-content>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700\";.vision-h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}.vision-h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}.vision-h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}.vision-h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}.vision-h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}.vision-h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}.vision-p1{font-size:18px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p2,:host .card-header-key{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p3{font-size:12px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p4{font-size:10px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p5{font-size:8px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-link{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link:hover{text-decoration:none}.vision-link:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link:visited{color:var(--secondary-base)}.vision-link-inherited{text-decoration:underline;color:var(--primary-base);cursor:pointer;color:inherit}.vision-link-inherited:hover{text-decoration:none}.vision-link-inherited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-inherited:visited{color:var(--secondary-base)}.vision-link-inherited:visited{color:inherit}.vision-link-no-visited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-no-visited:hover{text-decoration:none}.vision-link-no-visited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-no-visited:visited{color:var(--secondary-base)}.vision-link-no-visited:visited{color:var(--primary-base)}:host{width:100%;display:flex;flex-direction:row;justify-content:space-between;align-items:center;gap:8px}:host fw-icon{font-size:22px}:host .card-header-title{flex:1}:host .card-header-title h3{flex:1;margin:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow-y:hidden;text-overflow:ellipsis}:host .card-header-title p{color:var(--typography-muted);margin:0}:host .card-header-key{display:flex;align-items:flex-start;color:var(--typography-muted);gap:8px}\n"] }]
14
+ args: [{ selector: 'fw-card-header', template: "<ng-content select=\"fw-app-icon\"></ng-content>\n<fw-icon [color]=\"iconColor\" *ngIf=\"leftIcon\">{{ leftIcon }}</fw-icon>\n<div class=\"card-header-title\">\n <h3 *ngIf=\"title\" class=\"vision-h3\">{{ title }}</h3>\n <p *ngIf=\"description\" class=\"vision-p3\">{{ description }}</p>\n</div>\n<div class=\"card-header-key\">\n <ng-content></ng-content>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700\";.vision-h1{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:22px}.vision-h2{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:18px}.vision-h3{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:16px}.vision-h4{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:14px}.vision-h5{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:12px;line-height:130%}.vision-h6{font-family:Inter,sans-serif;color:var(--typography-base);font-weight:500;font-size:10px;line-height:120%}.vision-p1{font-size:18px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p2,:host .card-header-key{font-size:14px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p3{font-size:12px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p4{font-size:10px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-p5{font-size:8px;font-family:Inter,sans-serif;color:var(--typography-base);font-weight:400}.vision-link{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link:hover{text-decoration:none}.vision-link:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link:visited{color:var(--secondary-base)}.vision-link-inherited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-inherited:hover{text-decoration:none}.vision-link-inherited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-inherited:visited{color:var(--secondary-base)}.vision-link-inherited,.vision-link-inherited:visited{color:inherit}.vision-link-no-visited{text-decoration:underline;color:var(--primary-base);cursor:pointer}.vision-link-no-visited:hover{text-decoration:none}.vision-link-no-visited:active{text-decoration:none;outline:2px solid var(--primary-dark);border-radius:4px}.vision-link-no-visited:visited{color:var(--secondary-base)}.vision-link-no-visited:visited{color:var(--primary-base)}:host{width:100%;display:flex;flex-direction:row;justify-content:space-between;align-items:center;gap:8px}:host fw-icon{font-size:22px}:host .card-header-title{flex:1}:host .card-header-title h3{flex:1;margin:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow-y:hidden;text-overflow:ellipsis}:host .card-header-title p{color:var(--typography-muted);margin:0}:host .card-header-key{display:flex;align-items:flex-start;color:var(--typography-muted);gap:8px}\n"] }]
15
15
  }], propDecorators: { title: [{
16
16
  type: Input
17
17
  }], description: [{
@@ -6,11 +6,11 @@ export class FwCardComponent {
6
6
  this.select = new EventEmitter();
7
7
  }
8
8
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwCardComponent, selector: "fw-card", inputs: { value: "value", disabled: "disabled", focused: "focused", constrained: "constrained", selectable: "selectable" }, outputs: { select: "select" }, ngImport: i0, template: "<div\n class=\"fw-card\"\n [class.focused]=\"focused\"\n [class.constrained]=\"constrained\"\n [class.selectable]=\"selectable\"\n [class.disabled]=\"disabled\"\n (click)=\"select && selectable && !disabled ? select.emit(value) : undefined\">\n <ng-content select=\"fw-card-header\"></ng-content>\n <ng-content select=\"fw-card-author\"></ng-content>\n <ng-content select=\"fw-card-content\"></ng-content>\n <ng-content select=\"fw-card-footer\"></ng-content>\n</div>\n", styles: [".vision-shadow-extra-large{box-shadow:0 8px 25px #0000001a}.vision-shadow-large,.fw-card.focused,.fw-card.selectable:hover:not(.disabled){box-shadow:0 5px 15px #0000001a}.vision-shadow-medium{box-shadow:0 2px 5px #0000001a}.vision-shadow-small{box-shadow:0 1px 2px #0000000d}.vision-shadow-inner{box-shadow:0 2px 4px #00000014 inset}.fw-card{display:flex;padding:16px;flex-direction:column;align-items:flex-start;gap:16px;flex:1 0 0;align-self:stretch;border-radius:8px;border:1px solid var(--separations-base, #e3e6ea);background:var(--card-background, #ffffff)}.fw-card.focused{border:1px solid var(--primary-border, rgba(27, 105, 250, .4));background:var(--primary-hover, rgba(27, 105, 250, .05))}.fw-card.constrained{max-width:320px;max-height:320px}.fw-card.selectable{cursor:pointer}.fw-card.selectable:hover:not(.disabled){border:1px solid var(--primary-border, rgba(27, 105, 250, .4));background:var(--primary-hover, rgba(27, 105, 250, .05))}.fw-card.disabled{opacity:.4;cursor:not-allowed}\n"] }); }
9
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwCardComponent, selector: "fw-card", inputs: { value: "value", disabled: "disabled", focused: "focused", constrained: "constrained", selectable: "selectable" }, outputs: { select: "select" }, ngImport: i0, template: "<div\n class=\"fw-card\"\n [class.focused]=\"focused\"\n [class.constrained]=\"constrained\"\n [class.selectable]=\"selectable\"\n [class.disabled]=\"disabled\"\n (click)=\"select && selectable && !disabled ? select.emit(value) : undefined\">\n <ng-content select=\"fw-card-header\"></ng-content>\n <ng-content select=\"fw-card-author\"></ng-content>\n <ng-content select=\"fw-card-content\"></ng-content>\n <ng-content select=\"fw-card-footer\"></ng-content>\n</div>\n", styles: [".vision-shadow-extra-large{box-shadow:0 8px 25px #0000001a}.vision-shadow-large,.fw-card.focused,.fw-card.selectable:hover:not(.disabled){box-shadow:0 5px 15px #0000001a}.vision-shadow-medium{box-shadow:0 2px 5px #0000001a}.vision-shadow-small{box-shadow:0 1px 2px #0000000d}.vision-shadow-inner{box-shadow:0 2px 4px #00000014 inset}.fw-card{display:flex;padding:16px;flex-direction:column;align-items:flex-start;gap:16px;flex:1 0 0;align-self:stretch;border-radius:8px;border:1px solid var(--separations-base, #e3e6ea);background:var(--card-background, #ffffff);height:100%}.fw-card.focused{border:1px solid var(--primary-border, rgba(27, 105, 250, .4));background:var(--primary-hover, rgba(27, 105, 250, .05))}.fw-card.constrained{max-width:320px;max-height:320px}.fw-card.selectable{cursor:pointer}.fw-card.selectable:hover:not(.disabled){border:1px solid var(--primary-border, rgba(27, 105, 250, .4));background:var(--primary-hover, rgba(27, 105, 250, .05))}.fw-card.disabled{opacity:.4;cursor:not-allowed}\n"] }); }
10
10
  }
11
11
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwCardComponent, decorators: [{
12
12
  type: Component,
13
- args: [{ selector: 'fw-card', template: "<div\n class=\"fw-card\"\n [class.focused]=\"focused\"\n [class.constrained]=\"constrained\"\n [class.selectable]=\"selectable\"\n [class.disabled]=\"disabled\"\n (click)=\"select && selectable && !disabled ? select.emit(value) : undefined\">\n <ng-content select=\"fw-card-header\"></ng-content>\n <ng-content select=\"fw-card-author\"></ng-content>\n <ng-content select=\"fw-card-content\"></ng-content>\n <ng-content select=\"fw-card-footer\"></ng-content>\n</div>\n", styles: [".vision-shadow-extra-large{box-shadow:0 8px 25px #0000001a}.vision-shadow-large,.fw-card.focused,.fw-card.selectable:hover:not(.disabled){box-shadow:0 5px 15px #0000001a}.vision-shadow-medium{box-shadow:0 2px 5px #0000001a}.vision-shadow-small{box-shadow:0 1px 2px #0000000d}.vision-shadow-inner{box-shadow:0 2px 4px #00000014 inset}.fw-card{display:flex;padding:16px;flex-direction:column;align-items:flex-start;gap:16px;flex:1 0 0;align-self:stretch;border-radius:8px;border:1px solid var(--separations-base, #e3e6ea);background:var(--card-background, #ffffff)}.fw-card.focused{border:1px solid var(--primary-border, rgba(27, 105, 250, .4));background:var(--primary-hover, rgba(27, 105, 250, .05))}.fw-card.constrained{max-width:320px;max-height:320px}.fw-card.selectable{cursor:pointer}.fw-card.selectable:hover:not(.disabled){border:1px solid var(--primary-border, rgba(27, 105, 250, .4));background:var(--primary-hover, rgba(27, 105, 250, .05))}.fw-card.disabled{opacity:.4;cursor:not-allowed}\n"] }]
13
+ args: [{ selector: 'fw-card', template: "<div\n class=\"fw-card\"\n [class.focused]=\"focused\"\n [class.constrained]=\"constrained\"\n [class.selectable]=\"selectable\"\n [class.disabled]=\"disabled\"\n (click)=\"select && selectable && !disabled ? select.emit(value) : undefined\">\n <ng-content select=\"fw-card-header\"></ng-content>\n <ng-content select=\"fw-card-author\"></ng-content>\n <ng-content select=\"fw-card-content\"></ng-content>\n <ng-content select=\"fw-card-footer\"></ng-content>\n</div>\n", styles: [".vision-shadow-extra-large{box-shadow:0 8px 25px #0000001a}.vision-shadow-large,.fw-card.focused,.fw-card.selectable:hover:not(.disabled){box-shadow:0 5px 15px #0000001a}.vision-shadow-medium{box-shadow:0 2px 5px #0000001a}.vision-shadow-small{box-shadow:0 1px 2px #0000000d}.vision-shadow-inner{box-shadow:0 2px 4px #00000014 inset}.fw-card{display:flex;padding:16px;flex-direction:column;align-items:flex-start;gap:16px;flex:1 0 0;align-self:stretch;border-radius:8px;border:1px solid var(--separations-base, #e3e6ea);background:var(--card-background, #ffffff);height:100%}.fw-card.focused{border:1px solid var(--primary-border, rgba(27, 105, 250, .4));background:var(--primary-hover, rgba(27, 105, 250, .05))}.fw-card.constrained{max-width:320px;max-height:320px}.fw-card.selectable{cursor:pointer}.fw-card.selectable:hover:not(.disabled){border:1px solid var(--primary-border, rgba(27, 105, 250, .4));background:var(--primary-hover, rgba(27, 105, 250, .05))}.fw-card.disabled{opacity:.4;cursor:not-allowed}\n"] }]
14
14
  }], propDecorators: { value: [{
15
15
  type: Input
16
16
  }], disabled: [{
@@ -12,7 +12,7 @@ export class FwChipListComponent {
12
12
  this.changeDetector = inject(ChangeDetectorRef);
13
13
  this.hostElement = inject(ElementRef);
14
14
  this.childChipElementRefs = contentChildren(FwChipComponent, { read: ElementRef });
15
- this.moreText = viewChild.required('moreText');
15
+ this.moreText = viewChild('moreText');
16
16
  this.subscriptions = [];
17
17
  this.hiddenElementCount = signal(0);
18
18
  this.hiddenChips = signal([]);
@@ -49,9 +49,13 @@ export class FwChipListComponent {
49
49
  if (this.disableOverflow()) {
50
50
  return;
51
51
  }
52
+ const moreTextRef = this.moreText();
53
+ if (!moreTextRef) {
54
+ return;
55
+ }
52
56
  const hostRect = this.hostElement.nativeElement.getBoundingClientRect();
53
57
  const chipElements = this.childChipElementRefs().map(ref => ref.nativeElement);
54
- const moreTextElement = this.moreText().nativeElement;
58
+ const moreTextElement = moreTextRef.nativeElement;
55
59
  chipElements.forEach(chip => chip.classList.remove('hidden'));
56
60
  moreTextElement.classList.remove('hidden');
57
61
  const visibleChips = chipElements.filter(chip => {
@@ -71,7 +75,7 @@ export class FwChipListComponent {
71
75
  });
72
76
  }
73
77
  else {
74
- this.moreText().nativeElement.classList.add('hidden');
78
+ moreTextElement.classList.add('hidden');
75
79
  }
76
80
  // eslint-disable-next-line @rx-angular/no-explicit-change-detection-apis
77
81
  this.changeDetector.detectChanges();
@@ -89,4 +93,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
89
93
  FwTooltipModule,
90
94
  ], template: "<ng-content></ng-content>\n@if(!disableOverflow()) {\n <fw-tooltip [title]=\"hiddenLabels()\">\n <p #moreText> +{{hiddenChips().length}} more </p>\n </fw-tooltip>\n}\n", styles: [":host{flex-basis:max-content;display:flex;flex-flow:row wrap;gap:8px;align-items:flex-start;justify-content:flex-start}:host p{line-height:24px;cursor:default;margin:0 8px 0 0;text-wrap:nowrap;color:var(--typography-muted)}:host::ng-deep .hidden{display:none}\n"] }]
91
95
  }] });
92
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcC1saXN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2NoaXAtbGlzdC9jaGlwLWxpc3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvY2hpcC1saXN0L2NoaXAtbGlzdC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsaUJBQWlCLEVBQ2pCLFNBQVMsRUFDVCxRQUFRLEVBQ1IsZUFBZSxFQUNmLE1BQU0sRUFDTixVQUFVLEVBQ1YsTUFBTSxFQUNOLEtBQUssRUFHTCxNQUFNLEVBQ04sU0FBUyxHQUNWLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxlQUFlLEVBQUUsUUFBUSxFQUFFLG9CQUFvQixFQUFFLEtBQUssRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUU5RSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDekQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ25ELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQzs7O0FBRTVELCtGQUErRjtBQUMvRixnRUFBZ0U7QUFZaEUsTUFBTSxPQUFPLG1CQUFtQjtJQVZoQztRQVdFLG1CQUFjLEdBQUcsTUFBTSxDQUFDLGlCQUFpQixDQUFDLENBQUM7UUFDM0MsZ0JBQVcsR0FBRyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7UUFDakMseUJBQW9CLEdBQUcsZUFBZSxDQUE4QixlQUFlLEVBQUUsRUFBRSxJQUFJLEVBQUUsVUFBVSxFQUFFLENBQUMsQ0FBQztRQUMzRyxhQUFRLEdBQUcsU0FBUyxDQUFDLFFBQVEsQ0FBbUMsVUFBVSxDQUFDLENBQUM7UUFFNUUsa0JBQWEsR0FBRyxFQUFFLENBQUM7UUFFbkIsdUJBQWtCLEdBQUcsTUFBTSxDQUFDLENBQUMsQ0FBQyxDQUFD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VyxFQUFFLENBQUMsQ0FBQztJQUN2RCxDQUFDOytHQXRGVSxtQkFBbUI7bUdBQW5CLG1CQUFtQix3YUFHc0MsZUFBZSxRQUFVLFVBQVUsbUtDcEN6Ryw4S0FNQSw4VERxQkksWUFBWSw4QkFDWixlQUFlOzs0RkFLTixtQkFBbUI7a0JBVi9CLFNBQVM7K0JBQ0UsY0FBYyxjQUNaLElBQUksV0FDUDt3QkFDUCxZQUFZO3dCQUNaLGVBQWU7cUJBQ2hCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gIENvbXBvbmVudCxcbiAgY29tcHV0ZWQsXG4gIGNvbnRlbnRDaGlsZHJlbixcbiAgZWZmZWN0LFxuICBFbGVtZW50UmVmLFxuICBpbmplY3QsXG4gIGlucHV0LFxuICBPbkRlc3Ryb3ksXG4gIE9uSW5pdCxcbiAgc2lnbmFsLFxuICB2aWV3Q2hpbGQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBkZWJvdW5jZSwgZGlzdGluY3RVbnRpbENoYW5nZWQsIHRpbWVyIH0gZnJvbSAncnhqcyc7XG5cbmltcG9ydCB7IEZ3Q2hpcENvbXBvbmVudCB9IGZyb20gJy4uL2NoaXAvY2hpcC5jb21wb25lbnQnO1xuaW1wb3J0IHsgRndDaGlwTW9kdWxlIH0gZnJvbSAnLi4vY2hpcC9jaGlwLm1vZHVsZSc7XG5pbXBvcnQgeyBGd1Rvb2x0aXBNb2R1bGUgfSBmcm9tICcuLi90b29sdGlwL3Rvb2x0aXAubW9kdWxlJztcblxuLy8gdGhlIG5hdHVyZSBvZiB0aGlzIGNvbXBvbmVudCBpcyB0byBoYW5kbGUgYSBjb21wbGV4IGxheW91dCBpc3N1ZSBzbyBkaXNhYmxpbmcgdGhpcyBsaW50IHJ1bGVcbi8qIGVzbGludC1kaXNhYmxlIEByeC1hbmd1bGFyL3ByZWZlci1uby1sYXlvdXQtc2Vuc2l0aXZlLWFwaXMgKi9cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZnctY2hpcC1saXN0JyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIEZ3Q2hpcE1vZHVsZSxcbiAgICBGd1Rvb2x0aXBNb2R1bGUsXG4gIF0sXG4gIHRlbXBsYXRlVXJsOiAnLi9jaGlwLWxpc3QuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybDogJy4vY2hpcC1saXN0LmNvbXBvbmVudC5zY3NzJyxcbn0pXG5leHBvcnQgY2xhc3MgRndDaGlwTGlzdENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95IHtcbiAgY2hhbmdlRGV0ZWN0b3IgPSBpbmplY3QoQ2hhbmdlRGV0ZWN0b3JSZWYpO1xuICBob3N0RWxlbWVudCA9IGluamVjdChFbGVtZW50UmVmKTtcbiAgY2hpbGRDaGlwRWxlbWVudFJlZnMgPSBjb250ZW50Q2hpbGRyZW48RndDaGlwQ29tcG9uZW50LCBFbGVtZW50UmVmPihGd0NoaXBDb21wb25lbnQsIHsgcmVhZDogRWxlbWVudFJlZiB9KTtcbiAgbW9yZVRleHQgPSB2aWV3Q2hpbGQucmVxdWlyZWQ8RWxlbWVudFJlZjxIVE1MUGFyYWdyYXBoRWxlbWVudD4+KCdtb3JlVGV4dCcpO1xuXG4gIHN1YnNjcmlwdGlvbnMgPSBbXTtcblxuICBoaWRkZW5FbGVtZW50Q291bnQgPSBzaWduYWwoMCk7XG4gIGhpZGRlbkNoaXBzID0gc2lnbmFsPEhUTUxFbGVtZW50W10+KFtdKTtcbiAgaGlkZGVuTGFiZWxzID0gY29tcHV0ZWQoKCkgPT4ge1xuICAgIHJldHVybiB0aGlzLmhpZGRlbkNoaXBzKCkubWFwKGNoaXAgPT4ge1xuICAgICAgLy8gdGhpcyByZWxpZXMgb24gdGhlIGRvbSBzaGFwZSBvZiB0aGUgY2hpcCwgbWlnaHQgYmUgZnJhZ2lsZVxuICAgICAgY29uc3QgY29udGVudFNwYW4gPSBjaGlwLnF1ZXJ5U2VsZWN0b3IoJ3NwYW4nKTtcbiAgICAgIHJldHVybiBjb250ZW50U3Bhbi5pbm5lclRleHQ7XG4gICAgfSkuam9pbignLCAnKTtcbiAgfSk7XG5cbiAgcmVzaXplRGVib3VuY2VNcyA9IGlucHV0KDEwMCk7XG4gIGRpc2FibGVPdmVyZmxvdyA9IGlucHV0KGZhbHNlKTtcblxuICBjaGlsZHJlbkNoYW5nZWQgPSBlZmZlY3QoKCkgPT4ge1xuICAgIHRoaXMuY2hpbGRDaGlwRWxlbWVudFJlZnMoKTtcbiAgICB0aGlzLmNhbGNDaGlwT3ZlcmZsb3coKTtcbiAgfSwgeyBhbGxvd1NpZ25hbFdyaXRlczogdHJ1ZSB9KTtcblxuICByZXNpemVPYnNlcnZlciA9IG5ldyBSZXNpemVPYnNlcnZlcigoKSA9PiB7XG4gICAgdGhpcy5jYWxjQ2hpcE92ZXJmbG93KCk7XG4gIH0pO1xuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIC8vIHdpcmUgdXAgcmVzaXplIG9ic2VydmVyIHRvIHJ4anMgYW5kIGRlYm91Y2VcbiAgICBjb25zdCByZXNpemUkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxSZXNpemVPYnNlcnZlckVudHJ5W10+KFtdKTtcbiAgICBjb25zdCByZWNhbGNPblJlc2l6ZSQgPSByZXNpemUkLnBpcGUoXG4gICAgICBkZWJvdW5jZSgoKSA9PiB0aW1lcih0aGlzLnJlc2l6ZURlYm91bmNlTXMoKSkpLCAvLyBkZWJvdW5jZSBvdGhlcndpc2UgaXQgY2FuIHJ1biBFVkVSWSBmcmFtZVxuICAgICAgZGlzdGluY3RVbnRpbENoYW5nZWQoKSxcbiAgICApO1xuXG4gICAgY29uc3QgcmVzaXplT2JzZXJ2ZXIgPSBuZXcgUmVzaXplT2JzZXJ2ZXIoKHJlc2l6ZUVudHJpZXMpID0+IHtcbiAgICAgIHJlc2l6ZSQubmV4dChyZXNpemVFbnRyaWVzKTtcbiAgICB9KVxuICAgIHJlc2l6ZU9ic2VydmVyLm9ic2VydmUodGhpcy5ob3N0RWxlbWVudC5uYXRpdmVFbGVtZW50LCB7IH0pO1xuICAgIGNvbnN0IHN1YiA9IHJlY2FsY09uUmVzaXplJC5zdWJzY3JpYmUoKCkgPT4gdGhpcy5jYWxjQ2hpcE92ZXJmbG93KCkpO1xuICAgIHRoaXMuc3Vic2NyaXB0aW9ucy5wdXNoKHN1Yik7XG4gIH1cblxuICBjYWxjQ2hpcE92ZXJmbG93KCk6IHZvaWQge1xuICAgIGlmICh0aGlzLmRpc2FibGVPdmVyZmxvdygpKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgY29uc3QgaG9zdFJlY3QgPSAodGhpcy5ob3N0RWxlbWVudC5uYXRpdmVFbGVtZW50IGFzIEhUTUxFbGVtZW50KS5nZXRCb3VuZGluZ0NsaWVudFJlY3QoKTtcbiAgICBjb25zdCBjaGlwRWxlbWVudHMgPSB0aGlzLmNoaWxkQ2hpcEVsZW1lbnRSZWZzKCkubWFwKHJlZiA9PiByZWYubmF0aXZlRWxlbWVudCBhcyBIVE1MRWxlbWVudCk7XG4gICAgY29uc3QgbW9yZVRleHRFbGVtZW50ID0gdGhpcy5tb3JlVGV4dCgpLm5hdGl2ZUVsZW1lbnQ7XG5cbiAgICBjaGlwRWxlbWVudHMuZm9yRWFjaChjaGlwID0+IGNoaXAuY2xhc3NMaXN0LnJlbW92ZSgnaGlkZGVuJykpO1xuICAgIG1vcmVUZXh0RWxlbWVudC5jbGFzc0xpc3QucmVtb3ZlKCdoaWRkZW4nKTtcblxuICAgIGNvbnN0IHZpc2libGVDaGlwcyA9IGNoaXBFbGVtZW50cy5maWx0ZXIoY2hpcCA9PiB7XG4gICAgICBjb25zdCBjaGlwUmVjdCA9IGNoaXAuZ2V0Qm91bmRpbmdDbGllbnRSZWN0KCk7XG4gICAgICByZXR1cm4gIShjaGlwUmVjdC5yaWdodCA+IGhvc3RSZWN0LnJpZ2h0IHx8IGNoaXBSZWN0LmJvdHRvbSA+IGhvc3RSZWN0LmJvdHRvbSk7XG4gICAgfSk7XG5cbiAgICBjb25zdCBvdmVyZmxvd0NoaXBzID0gY2hpcEVsZW1lbnRzLnRvU3BsaWNlZCgwLCB2aXNpYmxlQ2hpcHMubGVuZ3RoKTtcblxuICAgIGlmIChvdmVyZmxvd0NoaXBzLmxlbmd0aCA+IDApIHtcbiAgICAgIGNvbnN0IGxhc3RWaXNpYmxlQ2hpcCA9IHZpc2libGVDaGlwc1t2aXNpYmxlQ2hpcHMubGVuZ3RoIC0gMV07XG4gICAgICBjb25zdCBlbm91Z2hSb29tRm9yTW9yZVRleHQgPSAoaG9zdFJlY3QucmlnaHQgLSBsYXN0VmlzaWJsZUNoaXAuZ2V0Qm91bmRpbmdDbGllbnRSZWN0KCkucmlnaHQpID4gKG1vcmVUZXh0RWxlbWVudC5vZmZzZXRXaWR0aCk7XG5cbiAgICAgIGlmICghZW5vdWdoUm9vbUZvck1vcmVUZXh0KSB7XG4gICAgICAgIG92ZXJmbG93Q2hpcHMucHVzaChsYXN0VmlzaWJsZUNoaXApO1xuICAgICAgfVxuXG4gICAgICB0aGlzLmhpZGRlbkNoaXBzLnNldChvdmVyZmxvd0NoaXBzKTtcbiAgICAgIG92ZXJmbG93Q2hpcHMuZm9yRWFjaChoaWRkZW5DaGlwID0+IHtcbiAgICAgICAgaGlkZGVuQ2hpcC5jbGFzc0xpc3QuYWRkKCdoaWRkZW4nKTtcbiAgICAgIH0pO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLm1vcmVUZXh0KCkubmF0aXZlRWxlbWVudC5jbGFzc0xpc3QuYWRkKCdoaWRkZW4nKTtcbiAgICB9XG5cbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQHJ4LWFuZ3VsYXIvbm8tZXhwbGljaXQtY2hhbmdlLWRldGVjdGlvbi1hcGlzXG4gICAgdGhpcy5jaGFuZ2VEZXRlY3Rvci5kZXRlY3RDaGFuZ2VzKCk7XG4gIH1cbiAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgdGhpcy5zdWJzY3JpcHRpb25zLmZvckVhY2goc3ViID0+IHN1Yi51bnN1YnNjcmliZSgpKTtcbiAgfVxufVxuIiwiPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuQGlmKCFkaXNhYmxlT3ZlcmZsb3coKSkge1xuICA8ZnctdG9vbHRpcCBbdGl0bGVdPVwiaGlkZGVuTGFiZWxzKClcIj5cbiAgICA8cCAjbW9yZVRleHQ+ICt7e2hpZGRlbkNoaXBzKCkubGVuZ3RofX0gbW9yZSA8L3A+XG4gIDwvZnctdG9vbHRpcD5cbn1cbiJdfQ==
96
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcC1saXN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2NoaXAtbGlzdC9jaGlwLWxpc3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvY2hpcC1saXN0L2NoaXAtbGlzdC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsaUJBQWlCLEVBQ2pCLFNBQVMsRUFDVCxRQUFRLEVBQ1IsZUFBZSxFQUNmLE1BQU0sRUFDTixVQUFVLEVBQ1YsTUFBTSxFQUNOLEtBQUssRUFHTCxNQUFNLEVBQ04sU0FBUyxHQUNWLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxlQUFlLEVBQUUsUUFBUSxFQUFFLG9CQUFvQixFQUFFLEtBQUssRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUU5RSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDekQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ25ELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQzs7O0FBRTVELCtGQUErRjtBQUMvRixnRUFBZ0U7QUFZaEUsTUFBTSxPQUFPLG1CQUFtQjtJQVZoQztRQVdFLG1CQUFjLEdBQUcsTUFBTSxDQUFDLGlCQUFpQixDQUFDLENBQUM7UUFDM0MsZ0JBQVcsR0FBRyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7UUFDakMseUJBQW9CLEdBQUcsZUFBZSxDQUE4QixlQUFlLEVBQUUsRUFBRSxJQUFJLEVBQUUsVUFBVSxFQUFFLENBQUMsQ0FBQztRQUMzRyxhQUFRLEdBQUcsU0FBUyxDQUFtQyxVQUFVLENBQUMsQ0FBQztRQUVuRSxrQkFBYSxHQUFHLEVBQUUsQ0FBQztRQUVuQix1QkFBa0IsR0FBRyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDL0IsZ0JB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QUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFDO0lBQ3ZELENBQUM7K0dBM0ZVLG1CQUFtQjttR0FBbkIsbUJBQW1CLHdhQUdzQyxlQUFlLFFBQVUsVUFBVSxtS0NwQ3pHLDhLQU1BLDhURHFCSSxZQUFZLDhCQUNaLGVBQWU7OzRGQUtOLG1CQUFtQjtrQkFWL0IsU0FBUzsrQkFDRSxjQUFjLGNBQ1osSUFBSSxXQUNQO3dCQUNQLFlBQVk7d0JBQ1osZUFBZTtxQkFDaEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgQ29tcG9uZW50LFxuICBjb21wdXRlZCxcbiAgY29udGVudENoaWxkcmVuLFxuICBlZmZlY3QsXG4gIEVsZW1lbnRSZWYsXG4gIGluamVjdCxcbiAgaW5wdXQsXG4gIE9uRGVzdHJveSxcbiAgT25Jbml0LFxuICBzaWduYWwsXG4gIHZpZXdDaGlsZCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCZWhhdmlvclN1YmplY3QsIGRlYm91bmNlLCBkaXN0aW5jdFVudGlsQ2hhbmdlZCwgdGltZXIgfSBmcm9tICdyeGpzJztcblxuaW1wb3J0IHsgRndDaGlwQ29tcG9uZW50IH0gZnJvbSAnLi4vY2hpcC9jaGlwLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBGd0NoaXBNb2R1bGUgfSBmcm9tICcuLi9jaGlwL2NoaXAubW9kdWxlJztcbmltcG9ydCB7IEZ3VG9vbHRpcE1vZHVsZSB9IGZyb20gJy4uL3Rvb2x0aXAvdG9vbHRpcC5tb2R1bGUnO1xuXG4vLyB0aGUgbmF0dXJlIG9mIHRoaXMgY29tcG9uZW50IGlzIHRvIGhhbmRsZSBhIGNvbXBsZXggbGF5b3V0IGlzc3VlIHNvIGRpc2FibGluZyB0aGlzIGxpbnQgcnVsZVxuLyogZXNsaW50LWRpc2FibGUgQHJ4LWFuZ3VsYXIvcHJlZmVyLW5vLWxheW91dC1zZW5zaXRpdmUtYXBpcyAqL1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdmdy1jaGlwLWxpc3QnLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgRndDaGlwTW9kdWxlLFxuICAgIEZ3VG9vbHRpcE1vZHVsZSxcbiAgXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2NoaXAtbGlzdC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsOiAnLi9jaGlwLWxpc3QuY29tcG9uZW50LnNjc3MnLFxufSlcbmV4cG9ydCBjbGFzcyBGd0NoaXBMaXN0Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xuICBjaGFuZ2VEZXRlY3RvciA9IGluamVjdChDaGFuZ2VEZXRlY3RvclJlZik7XG4gIGhvc3RFbGVtZW50ID0gaW5qZWN0KEVsZW1lbnRSZWYpO1xuICBjaGlsZENoaXBFbGVtZW50UmVmcyA9IGNvbnRlbnRDaGlsZHJlbjxGd0NoaXBDb21wb25lbnQsIEVsZW1lbnRSZWY+KEZ3Q2hpcENvbXBvbmVudCwgeyByZWFkOiBFbGVtZW50UmVmIH0pO1xuICBtb3JlVGV4dCA9IHZpZXdDaGlsZDxFbGVtZW50UmVmPEhUTUxQYXJhZ3JhcGhFbGVtZW50Pj4oJ21vcmVUZXh0Jyk7XG5cbiAgc3Vic2NyaXB0aW9ucyA9IFtdO1xuXG4gIGhpZGRlbkVsZW1lbnRDb3VudCA9IHNpZ25hbCgwKTtcbiAgaGlkZGVuQ2hpcHMgPSBzaWduYWw8SFRNTEVsZW1lbnRbXT4oW10pO1xuICBoaWRkZW5MYWJlbHMgPSBjb21wdXRlZCgoKSA9PiB7XG4gICAgcmV0dXJuIHRoaXMuaGlkZGVuQ2hpcHMoKS5tYXAoY2hpcCA9PiB7XG4gICAgICAvLyB0aGlzIHJlbGllcyBvbiB0aGUgZG9tIHNoYXBlIG9mIHRoZSBjaGlwLCBtaWdodCBiZSBmcmFnaWxlXG4gICAgICBjb25zdCBjb250ZW50U3BhbiA9IGNoaXAucXVlcnlTZWxlY3Rvcignc3BhbicpO1xuICAgICAgcmV0dXJuIGNvbnRlbnRTcGFuLmlubmVyVGV4dDtcbiAgICB9KS5qb2luKCcsICcpO1xuICB9KTtcblxuICByZXNpemVEZWJvdW5jZU1zID0gaW5wdXQoMTAwKTtcbiAgZGlzYWJsZU92ZXJmbG93ID0gaW5wdXQoZmFsc2UpO1xuXG4gIGNoaWxkcmVuQ2hhbmdlZCA9IGVmZmVjdCgoKSA9PiB7XG4gICAgdGhpcy5jaGlsZENoaXBFbGVtZW50UmVmcygpO1xuICAgIHRoaXMuY2FsY0NoaXBPdmVyZmxvdygpO1xuICB9LCB7IGFsbG93U2lnbmFsV3JpdGVzOiB0cnVlIH0pO1xuXG4gIHJlc2l6ZU9ic2VydmVyID0gbmV3IFJlc2l6ZU9ic2VydmVyKCgpID0+IHtcbiAgICB0aGlzLmNhbGNDaGlwT3ZlcmZsb3coKTtcbiAgfSk7XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgLy8gd2lyZSB1cCByZXNpemUgb2JzZXJ2ZXIgdG8gcnhqcyBhbmQgZGVib3VjZVxuICAgIGNvbnN0IHJlc2l6ZSQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PFJlc2l6ZU9ic2VydmVyRW50cnlbXT4oW10pO1xuICAgIGNvbnN0IHJlY2FsY09uUmVzaXplJCA9IHJlc2l6ZSQucGlwZShcbiAgICAgIGRlYm91bmNlKCgpID0+IHRpbWVyKHRoaXMucmVzaXplRGVib3VuY2VNcygpKSksIC8vIGRlYm91bmNlIG90aGVyd2lzZSBpdCBjYW4gcnVuIEVWRVJZIGZyYW1lXG4gICAgICBkaXN0aW5jdFVudGlsQ2hhbmdlZCgpLFxuICAgICk7XG5cbiAgICBjb25zdCByZXNpemVPYnNlcnZlciA9IG5ldyBSZXNpemVPYnNlcnZlcigocmVzaXplRW50cmllcykgPT4ge1xuICAgICAgcmVzaXplJC5uZXh0KHJlc2l6ZUVudHJpZXMpO1xuICAgIH0pXG4gICAgcmVzaXplT2JzZXJ2ZXIub2JzZXJ2ZSh0aGlzLmhvc3RFbGVtZW50Lm5hdGl2ZUVsZW1lbnQsIHsgfSk7XG4gICAgY29uc3Qgc3ViID0gcmVjYWxjT25SZXNpemUkLnN1YnNjcmliZSgoKSA9PiB0aGlzLmNhbGNDaGlwT3ZlcmZsb3coKSk7XG4gICAgdGhpcy5zdWJzY3JpcHRpb25zLnB1c2goc3ViKTtcbiAgfVxuXG4gIGNhbGNDaGlwT3ZlcmZsb3coKTogdm9pZCB7XG4gICAgaWYgKHRoaXMuZGlzYWJsZU92ZXJmbG93KCkpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICBjb25zdCBtb3JlVGV4dFJlZiA9IHRoaXMubW9yZVRleHQoKTtcbiAgICBpZiAoIW1vcmVUZXh0UmVmKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgY29uc3QgaG9zdFJlY3QgPSAodGhpcy5ob3N0RWxlbWVudC5uYXRpdmVFbGVtZW50IGFzIEhUTUxFbGVtZW50KS5nZXRCb3VuZGluZ0NsaWVudFJlY3QoKTtcbiAgICBjb25zdCBjaGlwRWxlbWVudHMgPSB0aGlzLmNoaWxkQ2hpcEVsZW1lbnRSZWZzKCkubWFwKHJlZiA9PiByZWYubmF0aXZlRWxlbWVudCBhcyBIVE1MRWxlbWVudCk7XG4gICAgY29uc3QgbW9yZVRleHRFbGVtZW50ID0gbW9yZVRleHRSZWYubmF0aXZlRWxlbWVudDtcblxuICAgIGNoaXBFbGVtZW50cy5mb3JFYWNoKGNoaXAgPT4gY2hpcC5jbGFzc0xpc3QucmVtb3ZlKCdoaWRkZW4nKSk7XG4gICAgbW9yZVRleHRFbGVtZW50LmNsYXNzTGlzdC5yZW1vdmUoJ2hpZGRlbicpO1xuXG4gICAgY29uc3QgdmlzaWJsZUNoaXBzID0gY2hpcEVsZW1lbnRzLmZpbHRlcihjaGlwID0+IHtcbiAgICAgIGNvbnN0IGNoaXBSZWN0ID0gY2hpcC5nZXRCb3VuZGluZ0NsaWVudFJlY3QoKTtcbiAgICAgIHJldHVybiAhKGNoaXBSZWN0LnJpZ2h0ID4gaG9zdFJlY3QucmlnaHQgfHwgY2hpcFJlY3QuYm90dG9tID4gaG9zdFJlY3QuYm90dG9tKTtcbiAgICB9KTtcblxuICAgIGNvbnN0IG92ZXJmbG93Q2hpcHMgPSBjaGlwRWxlbWVudHMudG9TcGxpY2VkKDAsIHZpc2libGVDaGlwcy5sZW5ndGgpO1xuXG4gICAgaWYgKG92ZXJmbG93Q2hpcHMubGVuZ3RoID4gMCkge1xuICAgICAgY29uc3QgbGFzdFZpc2libGVDaGlwID0gdmlzaWJsZUNoaXBzW3Zpc2libGVDaGlwcy5sZW5ndGggLSAxXTtcbiAgICAgIGNvbnN0IGVub3VnaFJvb21Gb3JNb3JlVGV4dCA9IChob3N0UmVjdC5yaWdodCAtIGxhc3RWaXNpYmxlQ2hpcC5nZXRCb3VuZGluZ0NsaWVudFJlY3QoKS5yaWdodCkgPiAobW9yZVRleHRFbGVtZW50Lm9mZnNldFdpZHRoKTtcblxuICAgICAgaWYgKCFlbm91Z2hSb29tRm9yTW9yZVRleHQpIHtcbiAgICAgICAgb3ZlcmZsb3dDaGlwcy5wdXNoKGxhc3RWaXNpYmxlQ2hpcCk7XG4gICAgICB9XG5cbiAgICAgIHRoaXMuaGlkZGVuQ2hpcHMuc2V0KG92ZXJmbG93Q2hpcHMpO1xuICAgICAgb3ZlcmZsb3dDaGlwcy5mb3JFYWNoKGhpZGRlbkNoaXAgPT4ge1xuICAgICAgICBoaWRkZW5DaGlwLmNsYXNzTGlzdC5hZGQoJ2hpZGRlbicpO1xuICAgICAgfSk7XG4gICAgfSBlbHNlIHtcbiAgICAgIG1vcmVUZXh0RWxlbWVudC5jbGFzc0xpc3QuYWRkKCdoaWRkZW4nKTtcbiAgICB9XG5cbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQHJ4LWFuZ3VsYXIvbm8tZXhwbGljaXQtY2hhbmdlLWRldGVjdGlvbi1hcGlzXG4gICAgdGhpcy5jaGFuZ2VEZXRlY3Rvci5kZXRlY3RDaGFuZ2VzKCk7XG4gIH1cbiAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgdGhpcy5zdWJzY3JpcHRpb25zLmZvckVhY2goc3ViID0+IHN1Yi51bnN1YnNjcmliZSgpKTtcbiAgfVxufVxuIiwiPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuQGlmKCFkaXNhYmxlT3ZlcmZsb3coKSkge1xuICA8ZnctdG9vbHRpcCBbdGl0bGVdPVwiaGlkZGVuTGFiZWxzKClcIj5cbiAgICA8cCAjbW9yZVRleHQ+ICt7e2hpZGRlbkNoaXBzKCkubGVuZ3RofX0gbW9yZSA8L3A+XG4gIDwvZnctdG9vbHRpcD5cbn1cbiJdfQ==