@flywheel-io/vision 19.3.1 → 19.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +1,12 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class FwFormHeadingComponent {
3
3
  class: string;
4
- title: string;
5
- description?: string;
6
- required?: boolean;
7
- status?: string;
8
- statusColor?: 'slate' | 'primary' | 'secondary' | 'red' | 'green' | 'orange';
4
+ title: import("@angular/core").InputSignal<string>;
5
+ description: import("@angular/core").InputSignal<string>;
6
+ required: import("@angular/core").InputSignal<boolean>;
7
+ status: import("@angular/core").InputSignal<string>;
8
+ statusColor: import("@angular/core").InputSignal<"primary" | "secondary" | "red" | "orange" | "green" | "slate">;
9
9
  constructor();
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<FwFormHeadingComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<FwFormHeadingComponent, "fw-form-heading", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "required": { "alias": "required"; "required": false; }; "status": { "alias": "status"; "required": false; }; "statusColor": { "alias": "statusColor"; "required": false; }; }, {}, never, ["fw-tooltip", "fw-icon", "fw-chip", "p", "*"], true, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwFormHeadingComponent, "fw-form-heading", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "statusColor": { "alias": "statusColor"; "required": false; "isSignal": true; }; }, {}, never, ["fw-tooltip", "fw-icon", "fw-chip", "p", "*"], true, never>;
12
12
  }
@@ -3,6 +3,8 @@ import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
3
3
  import { FwTextInputComponent } from '../../text-input/text-input.component';
4
4
  import { FwMenuComponent } from '../menu.component';
5
5
  import { FwMenuItemComponent } from '../menu-item/menu-item.component';
6
+ import { FwMenuItemGroupComponent } from '../menu-item-group/menu-item-group.component';
7
+ import { FwMenuSeparatorComponent } from '../menu-separator/menu-separator.component';
6
8
  import * as i0 from "@angular/core";
7
9
  import * as i1 from "@angular/cdk/coercion";
8
10
  export declare class FwMenuContainerComponent implements AfterViewInit {
@@ -13,7 +15,7 @@ export declare class FwMenuContainerComponent implements AfterViewInit {
13
15
  border?: 'none' | 'default';
14
16
  shadow?: 'none' | 'small' | 'medium' | 'large' | 'extra-large' | 'inner';
15
17
  showFilter: boolean;
16
- filterText?: string;
18
+ filterText: import("@angular/core").InputSignal<string>;
17
19
  focusFilterOnMount: boolean;
18
20
  offset?: string;
19
21
  emptyText: import("@angular/core").InputSignal<string>;
@@ -24,8 +26,12 @@ export declare class FwMenuContainerComponent implements AfterViewInit {
24
26
  filterChanged: import("@angular/core").OutputEmitterRef<string>;
25
27
  filterRef: FwTextInputComponent;
26
28
  menu: FwMenuComponent;
27
- additionalMenuItems: import("@angular/core").InputSignal<FwMenuItemComponent[]>;
29
+ additionalMenuItems: import("@angular/core").InputSignal<readonly FwMenuItemComponent[]>;
30
+ additionalGroups: import("@angular/core").InputSignal<readonly FwMenuItemGroupComponent[]>;
31
+ additionalSeparators: import("@angular/core").InputSignal<readonly FwMenuSeparatorComponent[]>;
28
32
  childMenuItems: import("@angular/core").Signal<readonly FwMenuItemComponent[]>;
33
+ childSeparators: import("@angular/core").Signal<readonly FwMenuSeparatorComponent[]>;
34
+ childGroups: import("@angular/core").Signal<readonly FwMenuItemGroupComponent[]>;
29
35
  private combinedMenuItems;
30
36
  keyHandler: (event: KeyboardEvent) => void;
31
37
  get classes(): string;
@@ -37,7 +43,7 @@ export declare class FwMenuContainerComponent implements AfterViewInit {
37
43
  handleFilterInput(event: Event): void;
38
44
  onFilterChange(filter: string): void;
39
45
  static ɵfac: i0.ɵɵFactoryDeclaration<FwMenuContainerComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuContainerComponent, "fw-menu-container, fw-menu-filter", never, { "width": { "alias": "width"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "border": { "alias": "border"; "required": false; }; "shadow": { "alias": "shadow"; "required": false; }; "showFilter": { "alias": "showFilter"; "required": false; }; "filterText": { "alias": "filterText"; "required": false; }; "focusFilterOnMount": { "alias": "focusFilterOnMount"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "filterFn": { "alias": "filterFn"; "required": false; "isSignal": true; }; "additionalMenuItems": { "alias": "additionalMenuItems"; "required": false; "isSignal": true; }; "keyHandler": { "alias": "keyHandler"; "required": false; }; }, { "filteredMenuItemChange": "filteredMenuItemChange"; "filterChanged": "filterChanged"; }, ["childMenuItems", "menu"], [".filter-content", "*", "custom-menu-items"], true, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuContainerComponent, "fw-menu-container, fw-menu-filter", never, { "width": { "alias": "width"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "border": { "alias": "border"; "required": false; }; "shadow": { "alias": "shadow"; "required": false; }; "showFilter": { "alias": "showFilter"; "required": false; }; "filterText": { "alias": "filterText"; "required": false; "isSignal": true; }; "focusFilterOnMount": { "alias": "focusFilterOnMount"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "filterFn": { "alias": "filterFn"; "required": false; "isSignal": true; }; "additionalMenuItems": { "alias": "additionalMenuItems"; "required": false; "isSignal": true; }; "additionalGroups": { "alias": "additionalGroups"; "required": false; "isSignal": true; }; "additionalSeparators": { "alias": "additionalSeparators"; "required": false; "isSignal": true; }; "keyHandler": { "alias": "keyHandler"; "required": false; }; }, { "filteredMenuItemChange": "filteredMenuItemChange"; "filterChanged": "filterChanged"; }, ["childMenuItems", "childSeparators", "childGroups", "menu"], [".filter-content", "*", "custom-menu-items"], true, never>;
41
47
  static ngAcceptInputType_showFilter: i1.BooleanInput;
42
48
  static ngAcceptInputType_focusFilterOnMount: i1.BooleanInput;
43
49
  }
@@ -1,11 +1,16 @@
1
+ import { QueryList } from '@angular/core';
1
2
  import { IconType } from '../../icon/icon.types';
3
+ import { FwMenuItemComponent } from '../menu-item/menu-item.component';
2
4
  import * as i0 from "@angular/core";
3
5
  export declare class FwMenuItemGroupComponent {
4
6
  role: string;
7
+ hidden: boolean;
5
8
  title?: string;
6
9
  icon?: IconType;
7
10
  iconColor?: 'primary' | 'secondary' | 'red' | 'orange' | 'green' | 'slate' | 'typography';
8
11
  disabled: boolean;
12
+ menuItems: QueryList<FwMenuItemComponent>;
13
+ get allItemsHidden(): boolean;
9
14
  static ɵfac: i0.ɵɵFactoryDeclaration<FwMenuItemGroupComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuItemGroupComponent, "fw-menu-item-group", never, { "role": { "alias": "role"; "required": false; }; "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], true, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuItemGroupComponent, "fw-menu-item-group", never, { "role": { "alias": "role"; "required": false; }; "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["menuItems"], ["*"], true, never>;
11
16
  }
@@ -1,5 +1,6 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class FwMenuSeparatorComponent {
3
+ hidden: boolean;
3
4
  static ɵfac: i0.ɵɵFactoryDeclaration<FwMenuSeparatorComponent, never>;
4
5
  static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuSeparatorComponent, "fw-menu-separator", never, {}, {}, never, never, true, never>;
5
6
  }
@@ -14,8 +14,10 @@ export declare class FwMenuComponent implements ControlValueAccessor, OnChanges,
14
14
  onChange: (value: string | string[]) => void;
15
15
  onTouched: () => void;
16
16
  private subscriptions;
17
+ private menuItemSubscriptions;
17
18
  ngOnChanges(): void;
18
19
  ngOnDestroy(): void;
20
+ private subscribeToMenuItems;
19
21
  ngAfterContentInit(): void;
20
22
  writeValue(value: string | string[]): void;
21
23
  registerOnChange(fn: (value: string | string[]) => void): void;
@@ -1,12 +1,14 @@
1
1
  import { CdkMenuTrigger } from '@angular/cdk/menu';
2
- import { AfterContentInit, EventEmitter, OnDestroy, QueryList } from '@angular/core';
2
+ import { EventEmitter, OnDestroy } from '@angular/core';
3
3
  import { ControlValueAccessor, NgControl } from '@angular/forms';
4
4
  import { IconType } from '../icon/icon.types';
5
5
  import { FwMenuComponent } from '../menu/menu.component';
6
6
  import { FwMenuItemComponent } from '../menu/menu-item/menu-item.component';
7
+ import { FwMenuItemGroupComponent } from '../menu/menu-item-group/menu-item-group.component';
8
+ import { FwMenuSeparatorComponent } from '../menu/menu-separator/menu-separator.component';
7
9
  import { FwTextInputComponent } from '../text-input/text-input.component';
8
10
  import * as i0 from "@angular/core";
9
- export declare class FwSelectMenuComponent implements AfterContentInit, OnDestroy, ControlValueAccessor {
11
+ export declare class FwSelectMenuComponent implements OnDestroy, ControlValueAccessor {
10
12
  private ngControl;
11
13
  outsideClick(evt: any): void;
12
14
  get disabledClass(): boolean;
@@ -28,9 +30,11 @@ export declare class FwSelectMenuComponent implements AfterContentInit, OnDestro
28
30
  size: import("@angular/core").InputSignal<"large" | "medium" | "small">;
29
31
  placeholder: import("@angular/core").InputSignal<string>;
30
32
  trigger: CdkMenuTrigger;
31
- menu: FwMenuComponent;
32
33
  textInput: FwTextInputComponent;
33
- menuItems: QueryList<FwMenuItemComponent>;
34
+ menu: import("@angular/core").Signal<FwMenuComponent>;
35
+ menuItems: import("@angular/core").Signal<readonly FwMenuItemComponent[]>;
36
+ menuItemGroups: import("@angular/core").Signal<readonly FwMenuItemGroupComponent[]>;
37
+ menuSeparators: import("@angular/core").Signal<readonly FwMenuSeparatorComponent[]>;
34
38
  change: EventEmitter<any>;
35
39
  readonly filterChanged: EventEmitter<string>;
36
40
  selectValue: string;
@@ -48,7 +52,8 @@ export declare class FwSelectMenuComponent implements AfterContentInit, OnDestro
48
52
  set value(newValue: any);
49
53
  private _value;
50
54
  constructor(ngControl: NgControl);
51
- ngAfterContentInit(): void;
55
+ private subscribeToMenuItems;
56
+ private menuItemsWatcher;
52
57
  ngOnDestroy(): void;
53
58
  get invalid(): boolean;
54
59
  get touched(): boolean;
@@ -89,5 +94,5 @@ export declare class FwSelectMenuComponent implements AfterContentInit, OnDestro
89
94
  onFilterChanged(value: string): void;
90
95
  onInputChange(event: Event): void;
91
96
  static ɵfac: i0.ɵɵFactoryDeclaration<FwSelectMenuComponent, [{ optional: true; self: true; }]>;
92
- static ɵcmp: i0.ɵɵComponentDeclaration<FwSelectMenuComponent, "fw-select", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "valueProperty": { "alias": "valueProperty"; "required": false; "isSignal": true; }; "useFullOptionAsValue": { "alias": "useFullOptionAsValue"; "required": false; "isSignal": true; }; "titleProperty": { "alias": "titleProperty"; "required": false; "isSignal": true; }; "iconProperty": { "alias": "iconProperty"; "required": false; "isSignal": true; }; "staticIcon": { "alias": "staticIcon"; "required": false; "isSignal": true; }; "descriptionProperty": { "alias": "descriptionProperty"; "required": false; "isSignal": true; }; "showFilter": { "alias": "showFilter"; "required": false; "isSignal": true; }; "showReset": { "alias": "showReset"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "errored": { "alias": "errored"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "optionsWidth": { "alias": "optionsWidth"; "required": false; "isSignal": true; }; "minOptionsHeight": { "alias": "minOptionsHeight"; "required": false; "isSignal": true; }; "maxOptionsHeight": { "alias": "maxOptionsHeight"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; }; }, { "disabled": "disabledChange"; "change": "change"; "filterChanged": "filterChanged"; }, ["menuItems"], ["[fw-menu-item, fw-menu-separator, fw-menu-item-group]"], true, never>;
97
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwSelectMenuComponent, "fw-select", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "valueProperty": { "alias": "valueProperty"; "required": false; "isSignal": true; }; "useFullOptionAsValue": { "alias": "useFullOptionAsValue"; "required": false; "isSignal": true; }; "titleProperty": { "alias": "titleProperty"; "required": false; "isSignal": true; }; "iconProperty": { "alias": "iconProperty"; "required": false; "isSignal": true; }; "staticIcon": { "alias": "staticIcon"; "required": false; "isSignal": true; }; "descriptionProperty": { "alias": "descriptionProperty"; "required": false; "isSignal": true; }; "showFilter": { "alias": "showFilter"; "required": false; "isSignal": true; }; "showReset": { "alias": "showReset"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "errored": { "alias": "errored"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "optionsWidth": { "alias": "optionsWidth"; "required": false; "isSignal": true; }; "minOptionsHeight": { "alias": "minOptionsHeight"; "required": false; "isSignal": true; }; "maxOptionsHeight": { "alias": "maxOptionsHeight"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; }; }, { "disabled": "disabledChange"; "change": "change"; "filterChanged": "filterChanged"; }, ["menuItems", "menuItemGroups", "menuSeparators"], ["[fw-menu-item, fw-menu-separator, fw-menu-item-group]"], true, never>;
93
98
  }
@@ -6,8 +6,9 @@ import * as i0 from "@angular/core";
6
6
  */
7
7
  export declare class FwHeaderRowDef extends CdkHeaderRowDef {
8
8
  columns: string[];
9
+ set stickyInput(value: boolean);
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<FwHeaderRowDef, never>;
10
- static ɵdir: i0.ɵɵDirectiveDeclaration<FwHeaderRowDef, "[fwHeaderRowDef]", never, { "columns": { "alias": "fwHeaderRowDef"; "required": false; }; }, {}, never, never, true, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FwHeaderRowDef, "[fwHeaderRowDef]", never, { "columns": { "alias": "fwHeaderRowDef"; "required": false; }; "stickyInput": { "alias": "fwHeaderRowDefSticky"; "required": false; }; }, {}, never, never, true, never>;
11
12
  }
12
13
  /**
13
14
  * Footer row definition for the fw-table.
@@ -15,8 +16,9 @@ export declare class FwHeaderRowDef extends CdkHeaderRowDef {
15
16
  */
16
17
  export declare class FwFooterRowDef extends CdkFooterRowDef {
17
18
  columns: string[];
19
+ set stickyInput(value: boolean);
18
20
  static ɵfac: i0.ɵɵFactoryDeclaration<FwFooterRowDef, never>;
19
- static ɵdir: i0.ɵɵDirectiveDeclaration<FwFooterRowDef, "[fwFooterRowDef]", never, { "columns": { "alias": "fwFooterRowDef"; "required": false; }; }, {}, never, never, true, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FwFooterRowDef, "[fwFooterRowDef]", never, { "columns": { "alias": "fwFooterRowDef"; "required": false; }; "stickyInput": { "alias": "fwFooterRowDefSticky"; "required": false; }; }, {}, never, never, true, never>;
20
22
  }
21
23
  /**
22
24
  * Data row definition for the fw-table.
@@ -1,10 +1,9 @@
1
- import { IconType } from '../icon/icon.types';
2
1
  import * as i0 from "@angular/core";
3
2
  export declare class FwTagComponent {
4
- size?: 'small' | 'large';
5
- color?: 'slate' | 'primary' | 'secondary' | 'red' | 'green' | 'orange';
6
- icon?: IconType;
7
- title?: string;
3
+ size: import("@angular/core").InputSignal<"large" | "small">;
4
+ color: import("@angular/core").InputSignal<"primary" | "secondary" | "red" | "orange" | "green" | "slate">;
5
+ icon: import("@angular/core").InputSignal<"filter" | "server" | "search" | "link" | "3d-sphere-rotate-arrows" | "add-circle" | "add-new-create" | "add-row-above" | "add-row-below" | "add-server" | "add-server-databases-endpoint" | "add-user" | "ai" | "apple" | "apply-copy-duplicate" | "archive-documents-box-big" | "arrange-filter-sort" | "arrow" | "arrow-annotate" | "arrow-back" | "arrow-back-collapse" | "arrow-down" | "arrow-forward" | "arrow-forward-collapse" | "arrow-redo" | "arrow-rotate" | "arrow-rotate-restore" | "arrow-undo" | "arrow-up" | "arrow-up-high-priority" | "arrow-up-low-priority" | "barcode-serial" | "barcode-stack-scan" | "bell-notification" | "bezier-curve" | "blocks-code-test-checkmark" | "book-lab-flask" | "bookmark" | "bookmark-plus-add" | "brain" | "brightness-photo-edit" | "browser-internet-web-windows" | "brush-edit-create" | "bucket-paint" | "button-form-element" | "calendar-arrow-left-center" | "calendar-schedule" | "camera-photo-capture" | "cash-banknotes" | "certificate" | "chart-square" | "chart-trend-square" | "chat-messages-bubble" | "check-mark-certificate" | "checklist" | "checklist-tasks-chechmark-square" | "chevron-back" | "chevron-down" | "chevron-forward" | "chevron-input-number" | "chevron-up" | "circle" | "circle-ellipses" | "clap-applause-hands" | "clip-attachment" | "clock-history" | "clock-hour-4" | "clock-loading" | "close" | "close-circled" | "closed-freehand-vector-poly" | "cloud-network-add" | "cloud-storage-checkmark" | "cloud-upload" | "code-block-embed" | "code-text" | "color-design-profile" | "color-ven-design-profile-central" | "column-edit" | "computer-chip" | "contract-vertical" | "contrast-photo-edit" | "conversion-exchange" | "copy-item" | "creative-commons" | "crosshair" | "crown-style-circle" | "cursor-click" | "cursor-select" | "curve-object-secet-cursor" | "data-tree" | "delivery-shipment-packages" | "dna-hospital-medical" | "document-file-add-plus-bottom-left" | "document-file-blank" | "document-file-checkmark-bottom-left" | "document-file-deleted-cross-remove-center-cancel" | "document-file-download" | "document-file-list-protocol" | "document-file-tar" | "document-file-upload-bottom-center" | "document-file-zip" | "document-status-done-checkmark" | "document-visible" | "documents-file" | "documents-file-checkmark" | "documents-file-move-arrow-right" | "documents-files" | "done-check" | "done-check-tracked" | "download" | "download-status" | "drag-drop-indicator" | "draw-rectangle" | "earth-globe-fail" | "edit" | "edit-boxed" | "edit-erase" | "email" | "email-mail-checkmark-group" | "embed-circle" | "exchange" | "expand-pathfinder-dot-square-segmentation" | "facebook" | "file-blank-image-load-mask" | "file-blank-search" | "file-download" | "file-text" | "files" | "files-library" | "files-library-content" | "filter-sort-add" | "filter-sort-check-mark" | "filter-sort-delete" | "flag" | "flip-horizontal" | "flip-vertical" | "floppy-save" | "flywheel-mark-logo" | "flywheel-viewer-mark-logo" | "folder-add" | "folder-blank" | "folder-checked" | "folder-copy-expand-arrow-down" | "folder-copy-expand-arrow-up" | "folder-group" | "folder-move" | "folder-open" | "folder-share" | "form-metadata-element" | "free-rights" | "freehand-vector-poly" | "full-screen-zoom" | "git-add-branch" | "git-branch" | "git-merge" | "git-merge-draft" | "git-pull-request-2" | "github-color-login" | "gitlab" | "graduate-hat" | "grid-dot-square" | "grid-layout" | "grid-layout-9-square" | "hammer-legal-square" | "hammer-screwdriver" | "hand-money-currency" | "header-form-element" | "home-modern-door" | "home-modern-option-lines" | "human-artificial-intelligence" | "icon-placeholder" | "image-photo-copy-left-down" | "image-picture-square" | "information-circle" | "invoice" | "invoice-checkmark-paid" | "italic" | "items-group-elements" | "key" | "keyboard" | "keychain" | "label-tag" | "laptop-health-medical-cross" | "layers" | "layout" | "layout-grid" | "line" | "link-unlink" | "linkedin" | "linux" | "list-paragraph" | "list-paragraph-number" | "list-test-lab-flask" | "livewire-tool" | "loading-status-checkmark" | "lock" | "lock-unlock" | "logout" | "lungs" | "markdown" | "measure-angle" | "measure-ruler-calibration" | "media-library-imports-dowload" | "menu-burger-handle" | "menu-horizontal" | "menu-list-form-square" | "menu-vertical" | "message-chat-add-plus" | "message-chat-info" | "message-chat-question-support" | "message-checkmark-sent" | "message-question-checkmark" | "microphone-mic-rec" | "microphone-mic-rec-circle" | "microphone-mic-recording-circle" | "minus" | "modalities" | "molecule" | "money" | "money-coin" | "money-dollar" | "monitor-computer" | "moon-night-mode" | "mouse-big" | "mouse-scroll" | "move" | "music-play-resume" | "music-stop" | "mute" | "network-storage-alert" | "notebook" | "notebook-add-plus" | "notebook-open" | "notebook-pen-edit" | "notes-pen" | "object-search-zoom-plus" | "open" | "paint-roller" | "pause" | "pen-edit-circle" | "pen-edit-compose-new" | "pencil-edit-create" | "photo-edit-brightness-invert" | "pie-chart" | "pie-graph-chart-sample" | "plus-add-rectangle" | "polygon" | "private-mode-protection-circle" | "protection-target" | "protective-mask" | "question-circle" | "quote" | "radiology-scan" | "radiology-scan-circle" | "reader-studies" | "rotate" | "rotate-arrow-manual" | "rotate-item-left" | "rotate-item-right" | "rotate-refresh" | "ruler" | "ruler-bidirectional" | "scanner" | "search-loop" | "search-user-profile-person" | "search-zoom-minus" | "search-zoom-plus" | "section-form-element" | "send-message-share" | "server-checkmark" | "server-database-endpoint" | "server-databases-checkmark-user" | "server-databases-connect" | "server-databases-download" | "server-databases-key-protection" | "server-databases-minimal-download" | "server-databases-sync" | "server-databases-sync-import" | "server-upload" | "servers-database" | "setting-gear" | "settings-adjust" | "settings-gear" | "settings-gear-square" | "settings-select" | "shapes-objects" | "share" | "shield-protect" | "show-visible" | "smiley-emoji-face" | "speed-dashboard" | "square-fill" | "square-fill-outline" | "square-outline" | "star" | "star-ai-artificial-intelligence" | "stars-light-sparkle" | "stomach" | "stop-minus" | "stretch-vertical" | "substract-group" | "switch" | "target" | "target-space-object-select" | "tasklist-to-do-checkmark" | "technology-cube-3d" | "test-lab-flask" | "text-bold" | "text-cross" | "text-h1" | "text-h2" | "text-input-form" | "text-long" | "text-short-form-element" | "text-underline" | "thumbs-down-dislike" | "thumbs-up-like" | "timer-clock-style" | "trash-bin-warning" | "trash-delete" | "twitter" | "undone-uncheck-untracked" | "unlimited-repeat-subscription-circle" | "upload" | "user" | "user-checked" | "user-delete-cross" | "user-document" | "user-group" | "user-key" | "user-lock" | "user-profile-cards-pool" | "user-profile-group-discovery" | "user-setting-gear" | "video-player-controls" | "visible-eye-hidden" | "volume-full" | "warning" | "warning-circle" | "window-finder-resize-arrow-down" | "window-finder-resize-arrow-up" | "window-resize-left" | "window-resize-right" | "window-zoom-plus-loupe" | "windows" | "workspace-mode" | "youtube" | "zendesk-logo">;
6
+ title: import("@angular/core").InputSignal<string>;
8
7
  static ɵfac: i0.ɵɵFactoryDeclaration<FwTagComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<FwTagComponent, "fw-tag", never, { "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTagComponent, "fw-tag", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
10
9
  }
@@ -15,10 +15,13 @@ export declare class FwTypeaheadComponent implements ControlValueAccessor {
15
15
  changeDetector: ChangeDetectorRef;
16
16
  loading: import("@angular/core").ModelSignal<boolean>;
17
17
  disabled: import("@angular/core").ModelSignal<boolean>;
18
+ touched: import("@angular/core").WritableSignal<boolean>;
19
+ hasAmbiguousInput: import("@angular/core").WritableSignal<boolean>;
18
20
  setDisabledState(isDisabled: boolean): void;
19
21
  writeValue(incomingValue: string[]): void;
20
22
  onChange: (_: string[]) => void;
21
- registerOnChange(onChangeFn: any): void;
23
+ clearValue(): void;
24
+ registerOnChange(onChangeFn: typeof this.onChange): void;
22
25
  onTouched: () => void;
23
26
  registerOnTouched(onTouchedFn: any): void;
24
27
  onClick(event: MouseEvent): void;
@@ -30,13 +33,16 @@ export declare class FwTypeaheadComponent implements ControlValueAccessor {
30
33
  minOptionsHeight: import("@angular/core").InputSignal<string>;
31
34
  optionsWidth: import("@angular/core").InputSignal<string>;
32
35
  maxHeight: import("@angular/core").InputSignal<string>;
36
+ selectType: import("@angular/core").InputSignal<"multiple" | "single">;
33
37
  notifyOnValueChanges: import("@angular/core").EffectRef;
34
38
  searchValue: import("@angular/core").ModelSignal<string>;
35
39
  searchValueChanges$: Observable<string>;
36
40
  handleSearchChange(event: KeyboardEvent): void;
37
41
  allowNew: import("@angular/core").InputSignal<boolean>;
38
42
  placeholder: import("@angular/core").InputSignal<string>;
39
- showPlaceholder: import("@angular/core").Signal<boolean>;
43
+ errorText: import("@angular/core").WritableSignal<string>;
44
+ displayedPlaceholder: import("@angular/core").Signal<string>;
45
+ highlightPlaceholder: import("@angular/core").Signal<boolean>;
40
46
  /**
41
47
  * Options after they've been both filtered for matching the search and already selected
42
48
  */
@@ -48,7 +54,7 @@ export declare class FwTypeaheadComponent implements ControlValueAccessor {
48
54
  closeChip(chipValue: string): void;
49
55
  displayNewOption: import("@angular/core").Signal<boolean>;
50
56
  addValue: (newValue: string) => void;
51
- handleOptionClick: (optionValue: any) => void;
57
+ handleOptionClick: (optionValue: string) => void;
52
58
  resetFocusOnOptionsChange: import("@angular/core").EffectRef;
53
59
  displayedOptions: import("@angular/core").Signal<readonly FwMenuItemComponent[]>;
54
60
  focusedIndex: import("@angular/core").WritableSignal<number>;
@@ -63,6 +69,6 @@ export declare class FwTypeaheadComponent implements ControlValueAccessor {
63
69
  setFocusByValue(value: string): void;
64
70
  private moveFocused;
65
71
  static ɵfac: i0.ɵɵFactoryDeclaration<FwTypeaheadComponent, never>;
66
- static ɵcmp: i0.ɵɵComponentDeclaration<FwTypeaheadComponent, "fw-typeahead", never, { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "optionsInput": { "alias": "options"; "required": false; "isSignal": true; }; "maxOptionsHeight": { "alias": "maxOptionsHeight"; "required": false; "isSignal": true; }; "minOptionsHeight": { "alias": "minOptionsHeight"; "required": false; "isSignal": true; }; "optionsWidth": { "alias": "optionsWidth"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "searchValue": { "alias": "searchValue"; "required": false; "isSignal": true; }; "allowNew": { "alias": "allowNew"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, { "loading": "loadingChange"; "disabled": "disabledChange"; "value": "valueChange"; "searchValue": "searchValueChange"; }, never, never, true, never>;
72
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTypeaheadComponent, "fw-typeahead", never, { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "optionsInput": { "alias": "options"; "required": false; "isSignal": true; }; "maxOptionsHeight": { "alias": "maxOptionsHeight"; "required": false; "isSignal": true; }; "minOptionsHeight": { "alias": "minOptionsHeight"; "required": false; "isSignal": true; }; "optionsWidth": { "alias": "optionsWidth"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "selectType": { "alias": "selectType"; "required": false; "isSignal": true; }; "searchValue": { "alias": "searchValue"; "required": false; "isSignal": true; }; "allowNew": { "alias": "allowNew"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, { "loading": "loadingChange"; "disabled": "disabledChange"; "value": "valueChange"; "searchValue": "searchValueChange"; }, never, never, true, never>;
67
73
  }
68
74
  export {};