@flywheel-io/vision 0.12.0 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/README.md +28 -2
  2. package/components/chip/chip.component.d.ts +1 -0
  3. package/components/layouts/context/context.component.d.ts +12 -0
  4. package/components/layouts/layout-group.component.d.ts +7 -0
  5. package/components/layouts/layout-width.d.ts +6 -0
  6. package/components/layouts/layouts.module.d.ts +9 -0
  7. package/components/layouts/toolbar/toolbar.component.d.ts +5 -0
  8. package/components/menu/menu-container/menu-container.component.d.ts +21 -0
  9. package/components/menu/menu-header/menu-header.component.d.ts +5 -0
  10. package/components/menu/menu-item/menu-item.component.d.ts +22 -0
  11. package/components/menu/menu-separator/menu-separator.component.d.ts +5 -0
  12. package/components/menu/menu.component.d.ts +32 -0
  13. package/components/menu/menu.module.d.ts +20 -0
  14. package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +54 -0
  15. package/components/select-menu/select-menu.component.d.ts +38 -0
  16. package/components/select-menu/select-menu.module.d.ts +16 -0
  17. package/components/text-input/text-input.component.d.ts +2 -1
  18. package/esm2020/components/chip/chip.component.mjs +9 -3
  19. package/esm2020/components/layouts/context/context.component.mjs +38 -0
  20. package/esm2020/components/layouts/layout-group.component.mjs +27 -0
  21. package/esm2020/components/layouts/layout-width.mjs +8 -0
  22. package/esm2020/components/layouts/layouts.module.mjs +29 -0
  23. package/esm2020/components/layouts/toolbar/toolbar.component.mjs +11 -0
  24. package/esm2020/components/menu/menu-container/menu-container.component.mjs +71 -0
  25. package/esm2020/components/menu/menu-header/menu-header.component.mjs +11 -0
  26. package/esm2020/components/menu/menu-item/menu-item.component.mjs +70 -0
  27. package/esm2020/components/menu/menu-separator/menu-separator.component.mjs +11 -0
  28. package/esm2020/components/menu/menu.component.mjs +165 -0
  29. package/esm2020/components/menu/menu.module.mjs +76 -0
  30. package/esm2020/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +281 -0
  31. package/esm2020/components/select-menu/select-menu.component.mjs +127 -0
  32. package/esm2020/components/select-menu/select-menu.module.mjs +57 -0
  33. package/esm2020/components/stepper/step.component.mjs +2 -2
  34. package/esm2020/components/text-input/text-input.component.mjs +6 -4
  35. package/esm2020/public-api.mjs +14 -1
  36. package/fesm2015/flywheel-io-vision.mjs +1090 -182
  37. package/fesm2015/flywheel-io-vision.mjs.map +1 -1
  38. package/fesm2020/flywheel-io-vision.mjs +1090 -182
  39. package/fesm2020/flywheel-io-vision.mjs.map +1 -1
  40. package/package.json +1 -1
  41. package/public-api.d.ts +13 -0
  42. package/scss/config/vision-colors.scss +3 -3
  43. package/scss/icons/_icon-glyphs.scss +1 -0
  44. package/styles.css +4 -3
package/README.md CHANGED
@@ -21,15 +21,41 @@ For an Angular application, import and add the modules you would like to use to
21
21
 
22
22
  ```ts
23
23
  import '@flywheel-io/vision/styles.scss'; // global styles and theme
24
- import { FwButtonModule, FwButtonGroupModule } from '@flywheel-io/vision';
24
+ import { CommonModule } from '@angular/common';
25
+ import { BrowserModule } from '@angular/platform-browser';
26
+ import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
27
+ import {
28
+ FwAlertModule, FwAvatarModule, FwBreadcrumbsModule,
29
+ FwButtonModule, FwButtonGroupModule, FwCardModule,
30
+ FwChipModule, FwDialogsModule, FwIconModule,
31
+ FwIconButtonModule, FwLayoutsModule, FwMenuModule,
32
+ FwSectionHeadingModule, FwSelectMenuModule,
33
+ FwStepperModule, FwTextInputModule
34
+ } from '@flywheel-io/vision';
25
35
 
26
36
  @NgModule({
27
37
  imports: [
28
38
  BrowserModule,
29
39
  BrowserAnimationsModule,
40
+ CommonModule,
41
+ FwAlertModule,
42
+ FwAvatarModule,
43
+ FwBreadcrumbsModule,
30
44
  FwButtonModule,
31
45
  FwButtonGroupModule,
46
+ FwCardModule,
47
+ FwChipModule,
48
+ FwDialogsModule,
49
+ FwIconModule,
50
+ FwIconButtonModule,
51
+ FwLayoutsModule,
52
+ FwMenuModule,
53
+ FwSectionHeadingModule,
54
+ FwSelectMenuModule,
55
+ FwStepperModule,
56
+ FwTextInputModule
32
57
  ],
33
58
  })
34
- export class AppModule {}
59
+ export class AppModule {
60
+ }
35
61
  ```
@@ -13,6 +13,7 @@ export declare class FwChipComponent {
13
13
  selectable?: boolean;
14
14
  close?: EventEmitter<null>;
15
15
  select?: EventEmitter<object | string>;
16
+ handleClose(event: MouseEvent): void;
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<FwChipComponent, never>;
17
18
  static ɵcmp: i0.ɵɵComponentDeclaration<FwChipComponent, "fw-chip", never, { "value": "value"; "variant": "variant"; "color": "color"; "icon": "icon"; "label": "label"; "secondaryLabel": "secondaryLabel"; "showClose": "showClose"; "disabled": "disabled"; "selected": "selected"; "selectable": "selectable"; }, { "close": "close"; "select": "select"; }, never, ["fw-avatar"], false>;
18
19
  }
@@ -0,0 +1,12 @@
1
+ import { LayoutWidth } from '../layout-width';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FwLayoutContextComponent {
4
+ width?: LayoutWidth;
5
+ icon?: string;
6
+ iconColor?: 'primary' | 'secondary' | 'danger' | 'slate' | 'warning' | 'success';
7
+ title?: string;
8
+ description?: string;
9
+ get classes(): string;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwLayoutContextComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwLayoutContextComponent, "fw-layout-context", never, { "width": "width"; "icon": "icon"; "iconColor": "iconColor"; "title": "title"; "description": "description"; }, {}, never, ["fw-button"], false>;
12
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FwLayoutGroupComponent {
3
+ stackable: boolean;
4
+ get classes(): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwLayoutGroupComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwLayoutGroupComponent, "fw-layout-group", never, { "stackable": "stackable"; }, {}, never, ["*"], false>;
7
+ }
@@ -0,0 +1,6 @@
1
+ export declare enum LayoutWidth {
2
+ Small = "small",
3
+ Medium = "medium",
4
+ Large = "large",
5
+ ExtraLarge = "extra-large"
6
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./toolbar/toolbar.component";
3
+ import * as i2 from "./layout-group.component";
4
+ import * as i3 from "@angular/common";
5
+ export declare class FwLayoutsModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwLayoutsModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwLayoutsModule, [typeof i1.FwLayoutToolbarComponent, typeof i2.FwLayoutGroupComponent], [typeof i3.CommonModule], [typeof i1.FwLayoutToolbarComponent, typeof i2.FwLayoutGroupComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwLayoutsModule>;
9
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FwLayoutToolbarComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwLayoutToolbarComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwLayoutToolbarComponent, "fw-layout-toolbar", never, {}, {}, never, ["*"], false>;
5
+ }
@@ -0,0 +1,21 @@
1
+ import { AfterContentInit } from '@angular/core';
2
+ import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
3
+ import { FwMenuComponent } from '../menu.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FwMenuContainerComponent implements AfterContentInit {
6
+ private sanitizer;
7
+ width?: string;
8
+ maxHeight?: string;
9
+ border?: 'none' | 'default';
10
+ shadow?: 'none' | 'small' | 'medium' | 'large' | 'extra-large' | 'inner';
11
+ showFilter?: boolean;
12
+ filterText?: string;
13
+ menu: FwMenuComponent;
14
+ get classes(): string;
15
+ get style(): SafeStyle;
16
+ constructor(sanitizer: DomSanitizer);
17
+ ngAfterContentInit(): void;
18
+ filterTextChange(text: string): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwMenuContainerComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuContainerComponent, "fw-menu-container", never, { "width": "width"; "maxHeight": "maxHeight"; "border": "border"; "shadow": "shadow"; "showFilter": "showFilter"; "filterText": "filterText"; }, {}, ["menu"], ["*"], false>;
21
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FwMenuHeaderComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwMenuHeaderComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuHeaderComponent, "fw-menu-header", never, {}, {}, never, ["*"], false>;
5
+ }
@@ -0,0 +1,22 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FwMenuItemComponent {
4
+ value?: string;
5
+ variant?: 'default' | 'modern' | 'button';
6
+ size?: 'default' | 'compact';
7
+ label: string;
8
+ subtitle?: string;
9
+ icon?: string;
10
+ disabled?: boolean;
11
+ showCheckbox?: boolean;
12
+ hidden?: boolean;
13
+ collapsed?: boolean;
14
+ href?: string;
15
+ routerLink?: string[] | string | null | undefined;
16
+ select?: EventEmitter<string>;
17
+ focused?: boolean;
18
+ selected?: boolean;
19
+ handleClick(evt: Event): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwMenuItemComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuItemComponent, "fw-menu-item", never, { "value": "value"; "variant": "variant"; "size": "size"; "label": "label"; "subtitle": "subtitle"; "icon": "icon"; "disabled": "disabled"; "showCheckbox": "showCheckbox"; "hidden": "hidden"; "collapsed": "collapsed"; "href": "href"; "routerLink": "routerLink"; "focused": "focused"; "selected": "selected"; }, { "select": "select"; }, never, ["fw-avatar", "*"], false>;
22
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FwMenuSeparatorComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwMenuSeparatorComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuSeparatorComponent, "fw-menu-separator", never, {}, {}, never, never, false>;
5
+ }
@@ -0,0 +1,32 @@
1
+ import { AfterContentInit, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
2
+ import { ControlValueAccessor } from '@angular/forms';
3
+ import { FwMenuItemComponent } from './menu-item/menu-item.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FwMenuComponent implements ControlValueAccessor, OnChanges, OnDestroy, AfterContentInit {
6
+ disabled: boolean;
7
+ size?: 'default' | 'compact';
8
+ variant?: 'default' | 'modern' | 'button';
9
+ collapsed?: boolean;
10
+ multiSelect?: boolean;
11
+ useCheckbox?: boolean;
12
+ openWidth?: string;
13
+ collapsedWidth?: string;
14
+ value?: string | string[];
15
+ menuItems: QueryList<FwMenuItemComponent>;
16
+ private _filterText;
17
+ onChange: (value: string | string[]) => void;
18
+ onTouched: () => void;
19
+ private subscriptions;
20
+ ngOnChanges(changes: SimpleChanges): void;
21
+ ngOnDestroy(): void;
22
+ ngAfterContentInit(): void;
23
+ writeValue(value: string | string[]): void;
24
+ registerOnChange(fn: (value: string | string[]) => void): void;
25
+ registerOnTouched(fn: () => void): void;
26
+ setDisabledState?(isDisabled: boolean): void;
27
+ setFilter(filterText: string): void;
28
+ handleSelect(value: string): void;
29
+ updateLayout(): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwMenuComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuComponent, "fw-menu", never, { "disabled": "disabled"; "size": "size"; "variant": "variant"; "collapsed": "collapsed"; "multiSelect": "multiSelect"; "useCheckbox": "useCheckbox"; "openWidth": "openWidth"; "collapsedWidth": "collapsedWidth"; "value": "value"; }, {}, ["menuItems"], ["*"], false>;
32
+ }
@@ -0,0 +1,20 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./menu.component";
3
+ import * as i2 from "./menu-container/menu-container.component";
4
+ import * as i3 from "./menu-header/menu-header.component";
5
+ import * as i4 from "./menu-item/menu-item.component";
6
+ import * as i5 from "./menu-separator/menu-separator.component";
7
+ import * as i6 from "@angular/cdk/menu";
8
+ import * as i7 from "@angular/common";
9
+ import * as i8 from "@angular/forms";
10
+ import * as i9 from "../icon-button/icon-button.module";
11
+ import * as i10 from "../icon/icon.module";
12
+ import * as i11 from "@angular/material/checkbox";
13
+ import * as i12 from "@angular/material/menu";
14
+ import * as i13 from "@angular/router";
15
+ import * as i14 from "../text-input/text-input.module";
16
+ export declare class FwMenuModule {
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwMenuModule, never>;
18
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwMenuModule, [typeof i1.FwMenuComponent, typeof i2.FwMenuContainerComponent, typeof i3.FwMenuHeaderComponent, typeof i4.FwMenuItemComponent, typeof i5.FwMenuSeparatorComponent], [typeof i6.CdkMenuModule, typeof i7.CommonModule, typeof i8.FormsModule, typeof i9.FwIconButtonModule, typeof i10.FwIconModule, typeof i11.MatCheckboxModule, typeof i12.MatMenuModule, typeof i13.RouterModule, typeof i14.FwTextInputModule], [typeof i1.FwMenuComponent, typeof i2.FwMenuContainerComponent, typeof i3.FwMenuHeaderComponent, typeof i4.FwMenuItemComponent, typeof i5.FwMenuSeparatorComponent]>;
19
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwMenuModule>;
20
+ }
@@ -0,0 +1,54 @@
1
+ import { CdkMenuTrigger } from '@angular/cdk/menu';
2
+ import { AfterContentInit, ElementRef, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
3
+ import { ControlValueAccessor } from '@angular/forms';
4
+ import { FwMenuComponent } from '../../menu/menu.component';
5
+ import { FwMenuItemComponent } from '../../menu/menu-item/menu-item.component';
6
+ import * as i0 from "@angular/core";
7
+ export declare class FwMultiSelectMenuComponent implements ControlValueAccessor, AfterContentInit, OnChanges, OnDestroy {
8
+ options: object[];
9
+ valueProperty?: string;
10
+ labelProperty?: string;
11
+ iconProperty?: string;
12
+ disabled?: boolean;
13
+ useCheckbox?: boolean;
14
+ closeOnSelect?: boolean;
15
+ filterItemsOnSelect?: boolean;
16
+ maxSelectedShown: number;
17
+ width: string;
18
+ minHeight: string;
19
+ maxHeight: string;
20
+ optionsWidth?: string;
21
+ maxOptionsHeight?: string;
22
+ placeholder: string;
23
+ trigger: CdkMenuTrigger;
24
+ menu: FwMenuComponent;
25
+ renderedMenuItems: QueryList<FwMenuItemComponent>;
26
+ menuItems: QueryList<FwMenuItemComponent>;
27
+ value: object[];
28
+ selectedValues: string[];
29
+ filteredOptions: object[];
30
+ private subscriptions;
31
+ textInput: ElementRef<HTMLInputElement>;
32
+ textInitialInput: ElementRef<HTMLInputElement>;
33
+ focused: number;
34
+ private touched;
35
+ onChange: (value: object[]) => void;
36
+ onTouched: () => void;
37
+ registerOnChange(fn: (value: object[]) => void): void;
38
+ registerOnTouched(fn: () => void): void;
39
+ setDisabledState?(isDisabled: boolean): void;
40
+ writeValue(value: object[]): void;
41
+ ngOnChanges(changes: SimpleChanges): void;
42
+ ngOnDestroy(): void;
43
+ ngAfterContentInit(): void;
44
+ handleTouched(): void;
45
+ handleClose(chip: object): void;
46
+ handleClick(e: string[]): void;
47
+ updateFilteredItems(): void;
48
+ updateValue(value: object[]): void;
49
+ moveFocused(direction: string): void;
50
+ handleKeyDown(event: KeyboardEvent): void;
51
+ handleKeyUp(event: KeyboardEvent): void;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwMultiSelectMenuComponent, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMultiSelectMenuComponent, "fw-multi-select", never, { "options": "options"; "valueProperty": "valueProperty"; "labelProperty": "labelProperty"; "iconProperty": "iconProperty"; "disabled": "disabled"; "useCheckbox": "useCheckbox"; "closeOnSelect": "closeOnSelect"; "filterItemsOnSelect": "filterItemsOnSelect"; "maxSelectedShown": "maxSelectedShown"; "width": "width"; "minHeight": "minHeight"; "maxHeight": "maxHeight"; "optionsWidth": "optionsWidth"; "maxOptionsHeight": "maxOptionsHeight"; "placeholder": "placeholder"; }, {}, ["menuItems"], ["[fw-menu-item, fw-menu-separator]"], false>;
54
+ }
@@ -0,0 +1,38 @@
1
+ import { CdkMenuTrigger } from '@angular/cdk/menu';
2
+ import { AfterContentInit, OnDestroy, QueryList } from '@angular/core';
3
+ import { ControlValueAccessor } from '@angular/forms';
4
+ import { FwMenuComponent } from '../menu/menu.component';
5
+ import { FwMenuItemComponent } from '../menu/menu-item/menu-item.component';
6
+ import * as i0 from "@angular/core";
7
+ export declare class FwSelectMenuComponent implements ControlValueAccessor, AfterContentInit, OnDestroy {
8
+ options: object[];
9
+ valueProperty?: string;
10
+ labelProperty?: string;
11
+ iconProperty?: string;
12
+ showFilter?: boolean;
13
+ disabled?: boolean;
14
+ width: string;
15
+ optionsWidth?: string;
16
+ maxOptionsHeight?: string;
17
+ placeholder: string;
18
+ trigger: CdkMenuTrigger;
19
+ menu: FwMenuComponent;
20
+ menuItems: QueryList<FwMenuItemComponent>;
21
+ value: object;
22
+ selectValue: string;
23
+ selectLabel: string;
24
+ selectIcon: string;
25
+ private subscriptions;
26
+ onChange: (value: object) => void;
27
+ onTouched: () => void;
28
+ registerOnChange(fn: (value: object) => void): void;
29
+ registerOnTouched(fn: () => void): void;
30
+ setDisabledState?(isDisabled: boolean): void;
31
+ writeValue(value: object): void;
32
+ ngOnDestroy(): void;
33
+ ngAfterContentInit(): void;
34
+ handleClick(e: string): void;
35
+ updateValue(value: object): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwSelectMenuComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwSelectMenuComponent, "fw-select", never, { "options": "options"; "valueProperty": "valueProperty"; "labelProperty": "labelProperty"; "iconProperty": "iconProperty"; "showFilter": "showFilter"; "disabled": "disabled"; "width": "width"; "optionsWidth": "optionsWidth"; "maxOptionsHeight": "maxOptionsHeight"; "placeholder": "placeholder"; }, {}, ["menuItems"], ["[fw-menu-item, fw-menu-separator]"], false>;
38
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./multi-select-menu/multi-select-menu.component";
3
+ import * as i2 from "./select-menu.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/cdk/menu";
6
+ import * as i5 from "@angular/forms";
7
+ import * as i6 from "../chip/chip.module";
8
+ import * as i7 from "../icon/icon.module";
9
+ import * as i8 from "../menu/menu.module";
10
+ import * as i9 from "../text-input/text-input.module";
11
+ import * as i10 from "@angular/router";
12
+ export declare class FwSelectMenuModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwSelectMenuModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwSelectMenuModule, [typeof i1.FwMultiSelectMenuComponent, typeof i2.FwSelectMenuComponent], [typeof i3.CommonModule, typeof i4.CdkMenuModule, typeof i5.FormsModule, typeof i6.FwChipModule, typeof i7.FwIconModule, typeof i8.FwMenuModule, typeof i9.FwTextInputModule, typeof i10.RouterModule], [typeof i1.FwMultiSelectMenuComponent, typeof i2.FwSelectMenuComponent]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwSelectMenuModule>;
16
+ }
@@ -6,6 +6,7 @@ export declare class FwTextInputComponent implements ControlValueAccessor {
6
6
  context?: string;
7
7
  helperText?: string;
8
8
  placeholder?: string;
9
+ readOnly?: boolean;
9
10
  size?: 'small' | 'medium' | 'large';
10
11
  error?: boolean;
11
12
  value: string;
@@ -20,5 +21,5 @@ export declare class FwTextInputComponent implements ControlValueAccessor {
20
21
  changeHandler(event: KeyboardEvent): void;
21
22
  blurHandler(): void;
22
23
  static ɵfac: i0.ɵɵFactoryDeclaration<FwTextInputComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<FwTextInputComponent, "fw-text-input", never, { "leftIcon": "leftIcon"; "rightIcon": "rightIcon"; "context": "context"; "helperText": "helperText"; "placeholder": "placeholder"; "size": "size"; "error": "error"; }, {}, never, never, false>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTextInputComponent, "fw-text-input", never, { "leftIcon": "leftIcon"; "rightIcon": "rightIcon"; "context": "context"; "helperText": "helperText"; "placeholder": "placeholder"; "readOnly": "readOnly"; "size": "size"; "error": "error"; }, {}, never, never, false>;
24
25
  }