@flywheel-io/vision 19.3.1 → 19.3.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.
- package/components/form-heading/form-heading.component.d.ts +6 -6
- package/components/menu/menu-container/menu-container.component.d.ts +9 -3
- package/components/menu/menu-item-group/menu-item-group.component.d.ts +6 -1
- package/components/menu/menu-separator/menu-separator.component.d.ts +1 -0
- package/components/select-menu/select-menu.component.d.ts +8 -4
- package/components/table/row.d.ts +4 -2
- package/components/tag/tag.component.d.ts +5 -6
- package/fesm2022/flywheel-io-vision.mjs +154 -109
- package/fesm2022/flywheel-io-vision.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
6
|
-
required
|
|
7
|
-
status
|
|
8
|
-
statusColor
|
|
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":
|
|
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
|
|
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; }; }, {},
|
|
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
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { CdkMenuTrigger } from '@angular/cdk/menu';
|
|
2
|
-
import { AfterContentInit, EventEmitter, OnDestroy
|
|
2
|
+
import { AfterContentInit, 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
11
|
export declare class FwSelectMenuComponent implements AfterContentInit, OnDestroy, ControlValueAccessor {
|
|
@@ -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
|
-
|
|
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;
|
|
@@ -89,5 +93,5 @@ export declare class FwSelectMenuComponent implements AfterContentInit, OnDestro
|
|
|
89
93
|
onFilterChanged(value: string): void;
|
|
90
94
|
onInputChange(event: Event): void;
|
|
91
95
|
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>;
|
|
96
|
+
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
97
|
}
|
|
@@ -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
|
|
5
|
-
color
|
|
6
|
-
icon
|
|
7
|
-
title
|
|
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
|
}
|