@flywheel-io/vision 0.16.0 → 1.0.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 (125) hide show
  1. package/README.md +41 -45
  2. package/components/alert/alert.component.d.ts +1 -1
  3. package/components/app-icon/app-icon.component.d.ts +4 -3
  4. package/components/badge/badge.component.d.ts +9 -0
  5. package/components/badge/badge.module.d.ts +8 -0
  6. package/components/breadcrumbs/breadcrumbs.component.d.ts +9 -0
  7. package/components/breadcrumbs/breadcrumbs.module.d.ts +10 -0
  8. package/components/breadcrumbs/crumb.component.d.ts +12 -0
  9. package/components/button/button.component.d.ts +2 -2
  10. package/components/card/card-attribute/card-attribute.component.d.ts +2 -2
  11. package/components/card/card-header/card-header.component.d.ts +2 -2
  12. package/components/chip/chip.component.d.ts +3 -3
  13. package/components/dialog/dialog.service.d.ts +17 -0
  14. package/components/dialog/dialogs.module.d.ts +4 -4
  15. package/components/layouts/grid/grid.component.d.ts +19 -0
  16. package/components/layouts/layouts.module.d.ts +4 -3
  17. package/components/legacy/dialog/choice-dialog.component.d.ts +3 -3
  18. package/components/legacy/dialog/confirm-dialog.component.d.ts +3 -3
  19. package/components/legacy/dialog/dialog.module.d.ts +4 -4
  20. package/components/legacy/dialog/dialog.service.d.ts +3 -3
  21. package/components/legacy/dialog/error-dialog.component.d.ts +4 -4
  22. package/components/legacy/dialog/portal-dialog.component.d.ts +3 -3
  23. package/components/menu/menu-container/menu-container.component.d.ts +2 -1
  24. package/components/menu/menu-item/menu-item.component.d.ts +4 -3
  25. package/components/popover/popover-panel/popover-panel.component.d.ts +10 -0
  26. package/components/popover/popover.component.d.ts +19 -0
  27. package/components/popover/popover.module.d.ts +11 -0
  28. package/components/section-heading/back-button/back-button.component.d.ts +1 -0
  29. package/components/section-heading/section-heading.component.d.ts +3 -2
  30. package/components/section-heading/section-heading.module.d.ts +7 -6
  31. package/components/section-heading/subsection-heading/subsection-heading.component.d.ts +8 -0
  32. package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +2 -2
  33. package/components/select-menu/select-menu.component.d.ts +3 -3
  34. package/components/stepper/step.component.d.ts +2 -2
  35. package/components/tabs/tab/tab.component.d.ts +20 -0
  36. package/components/tabs/tab-panel/tab-panel.component.d.ts +6 -0
  37. package/components/tabs/tabs.component.d.ts +16 -0
  38. package/components/tabs/tabs.module.d.ts +11 -0
  39. package/components/tooltip/tooltip-panel/tooltip-panel.component.d.ts +12 -0
  40. package/components/tooltip/tooltip.component.d.ts +15 -0
  41. package/components/tooltip/tooltip.module.d.ts +11 -0
  42. package/esm2020/components/alert/alert.component.mjs +3 -3
  43. package/esm2020/components/app-icon/app-icon.component.mjs +6 -4
  44. package/esm2020/components/avatar/avatar.component.mjs +2 -2
  45. package/esm2020/components/badge/badge.component.mjs +28 -0
  46. package/esm2020/components/badge/badge.module.mjs +24 -0
  47. package/esm2020/components/breadcrumbs/breadcrumbs.component.mjs +22 -0
  48. package/esm2020/components/breadcrumbs/breadcrumbs.module.mjs +33 -0
  49. package/esm2020/components/breadcrumbs/crumb.component.mjs +34 -0
  50. package/esm2020/components/button/button.component.mjs +5 -6
  51. package/esm2020/components/card/card-attribute/card-attribute.component.mjs +4 -4
  52. package/esm2020/components/card/card-content/card-content.component.mjs +2 -2
  53. package/esm2020/components/card/card-header/card-header.component.mjs +4 -4
  54. package/esm2020/components/card/card.component.mjs +2 -2
  55. package/esm2020/components/chip/chip.component.mjs +5 -5
  56. package/esm2020/components/dialog/dialog-confirm.component.mjs +3 -3
  57. package/esm2020/components/dialog/dialog-simple.component.mjs +3 -3
  58. package/esm2020/components/dialog/dialog.component.mjs +2 -2
  59. package/esm2020/components/dialog/dialog.service.mjs +49 -0
  60. package/esm2020/components/dialog/dialogs.module.mjs +29 -23
  61. package/esm2020/components/icon-button/icon-button.component.mjs +2 -2
  62. package/esm2020/components/layouts/grid/grid.component.mjs +60 -0
  63. package/esm2020/components/layouts/layouts.module.mjs +12 -3
  64. package/esm2020/components/legacy/dialog/choice-dialog.component.mjs +6 -6
  65. package/esm2020/components/legacy/dialog/confirm-dialog.component.mjs +5 -5
  66. package/esm2020/components/legacy/dialog/dialog.module.mjs +28 -28
  67. package/esm2020/components/legacy/dialog/dialog.service.mjs +5 -5
  68. package/esm2020/components/legacy/dialog/error-dialog.component.mjs +5 -5
  69. package/esm2020/components/legacy/dialog/portal-dialog.component.mjs +5 -5
  70. package/esm2020/components/legacy/notification/notification-container/notification-container.component.mjs +1 -1
  71. package/esm2020/components/menu/menu-container/menu-container.component.mjs +8 -4
  72. package/esm2020/components/menu/menu-item/menu-item.component.mjs +14 -6
  73. package/esm2020/components/menu/menu.component.mjs +3 -3
  74. package/esm2020/components/popover/popover-panel/popover-panel.component.mjs +30 -0
  75. package/esm2020/components/popover/popover.component.mjs +76 -0
  76. package/esm2020/components/popover/popover.module.mjs +42 -0
  77. package/esm2020/components/section-heading/back-button/back-button.component.mjs +9 -5
  78. package/esm2020/components/section-heading/section-heading.component.mjs +9 -5
  79. package/esm2020/components/section-heading/section-heading.module.mjs +10 -5
  80. package/esm2020/components/section-heading/subsection-heading/subsection-heading.component.mjs +19 -0
  81. package/esm2020/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +8 -8
  82. package/esm2020/components/select-menu/select-menu.component.mjs +9 -9
  83. package/esm2020/components/snackbar/snackbar/snackbar.component.mjs +2 -2
  84. package/esm2020/components/snackbar/snackbar-container/snackbar-container.component.mjs +1 -1
  85. package/esm2020/components/stepper/step.component.mjs +4 -4
  86. package/esm2020/components/tabs/tab/tab.component.mjs +79 -0
  87. package/esm2020/components/tabs/tab-panel/tab-panel.component.mjs +19 -0
  88. package/esm2020/components/tabs/tabs.component.mjs +65 -0
  89. package/esm2020/components/tabs/tabs.module.mjs +38 -0
  90. package/esm2020/components/tooltip/tooltip-panel/tooltip-panel.component.mjs +37 -0
  91. package/esm2020/components/tooltip/tooltip.component.mjs +39 -0
  92. package/esm2020/components/tooltip/tooltip.module.mjs +42 -0
  93. package/esm2020/public-api.mjs +20 -5
  94. package/fesm2015/flywheel-io-vision.mjs +903 -463
  95. package/fesm2015/flywheel-io-vision.mjs.map +1 -1
  96. package/fesm2020/flywheel-io-vision.mjs +901 -461
  97. package/fesm2020/flywheel-io-vision.mjs.map +1 -1
  98. package/global.scss +5 -29
  99. package/package.json +2 -2
  100. package/public-api.d.ts +19 -4
  101. package/public-api.scss +4 -1
  102. package/scss/config/colors.scss +136 -161
  103. package/scss/config/shadows.scss +23 -0
  104. package/scss/icons/_icon-font-face.scss +10 -8
  105. package/scss/icons/icons.scss +9 -2
  106. package/scss/material/theme.scss +239 -0
  107. package/styles.css +6554 -4649
  108. package/components/legacy/popover/popover-trigger.component.d.ts +0 -19
  109. package/components/legacy/popover/popover-trigger.directive.d.ts +0 -33
  110. package/components/legacy/popover/popover.component.d.ts +0 -8
  111. package/components/legacy/popover/popover.module.d.ts +0 -10
  112. package/esm2020/components/legacy/popover/popover-trigger.component.mjs +0 -66
  113. package/esm2020/components/legacy/popover/popover-trigger.directive.mjs +0 -139
  114. package/esm2020/components/legacy/popover/popover.component.mjs +0 -35
  115. package/esm2020/components/legacy/popover/popover.module.mjs +0 -40
  116. package/scss/atoms/cards.scss +0 -12
  117. package/scss/atoms/grid.scss +0 -55
  118. package/scss/atoms/typography.scss +0 -21
  119. package/scss/config/config.scss +0 -23
  120. package/scss/config/general.scss +0 -45
  121. package/scss/config/theme.scss +0 -160
  122. package/scss/config/vision-colors.scss +0 -131
  123. package/scss/global/variables.scss +0 -79
  124. package/scss/material/overrides.scss +0 -371
  125. package/scss/vendor/reset.scss +0 -53
package/README.md CHANGED
@@ -1,61 +1,57 @@
1
- # Project Vision
1
+ # Vision Component Library
2
2
 
3
- Flywheel UI elements provided as Angular components
3
+ [![NPM Version](https://img.shields.io/npm/v/%40flywheel-io%2Fvision?style=flat&color=black)](https://www.npmjs.com/package/@flywheel-io/vision)
4
+ [![storybook badge](https://img.shields.io/badge/Storybook-Storybook?style=flat&logo=storybook&color=black)](https://cdn.flywheel.io/docs/vision/latest/)
5
+ [![gitlab badge](https://img.shields.io/badge/Gitlab-Gitlab?style=flat&logo=gitlab&color=black)](https://gitlab.com/flywheel-io/product/frontend/vision)
6
+ [![figma badge](https://img.shields.io/badge/Figma-Figma?style=flat&logo=figma&color=black)](https://www.figma.com/file/yjtHt1Pn8c8t5moaab3pIH/Vision-Design-System?type=design&node-id=0-1&mode=design&t=uWLS8FwgwmsyB5ge-0)
7
+ [![slack badge](https://img.shields.io/badge/Slack-Slack?style=flat&logo=slack&color=black)](https://flywheel-io.slack.com/archives/C06F731KZUG)
8
+ [![jira badge](https://img.shields.io/badge/Jira-Jira?style=flat&logo=jira&color=black)](https://flywheelio.atlassian.net/jira/software/c/projects/VDS/boards/1219)
4
9
 
5
- ## Installation
10
+ Vision is Flywheel's Design System with the goal of unifying the look and feel of all applications throughout Flywheel. This is a collection of scss styles and angular components for aiding and simplifying frontend work.
6
11
 
7
- Install the package with NPM.
12
+ # Installation
8
13
 
9
- ```shell
10
- npm install @flywheel-io/vision
14
+ To use vision first install it from npm
15
+
16
+ ```bash
17
+ $ npm install --save @flywheel-io/vision
18
+ ```
19
+
20
+ Then you need to do some scss setup, in your global scss stylesheet add:
21
+
22
+ ```scss
23
+ @use '@flywheel-io/vision' as vision;
24
+
25
+ @include vision.icons; // adds the icon font face and glyph classes
26
+ @include vision.colors; // defines the colors vision relies on
27
+
28
+ // optional inclusions
29
+ @include vision.mat-theme; // uses the vision angular material theme
30
+ @include vision.global-typography; // adds global styles for text elements
11
31
  ```
12
32
 
13
- ### Dependencies
33
+ For more info on colors and theming check out the [colors docs](https://cdn.flywheel.io/docs/vision/latest/?path=/docs/docs-colors--docs)
14
34
 
15
- If you're using NPM >= 7, peer dependencies for this package will be installed automatically if they're not in your project already.
16
- However, older versions of NPM will produce warnings about unmet peer dependencies but you will have to install them explictly yourself.
35
+ And just like that, you're ready to use vision! 🥳
17
36
 
18
- ## Usage
37
+ # Using Components
19
38
 
20
- For an Angular application, import and add the modules you would like to use to your AppModule or other module.
39
+ To use the components, you just need to import their module into the module you're working in
21
40
 
22
41
  ```ts
23
- import '@flywheel-io/vision/styles.scss'; // global styles and theme
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';
42
+ import { FwAlertModule } from '@flywheel-io/vision';
35
43
 
36
44
  @NgModule({
37
45
  imports: [
38
- BrowserModule,
39
- BrowserAnimationsModule,
40
- CommonModule,
41
46
  FwAlertModule,
42
- FwAvatarModule,
43
- FwBreadcrumbsModule,
44
- FwButtonModule,
45
- FwButtonGroupModule,
46
- FwCardModule,
47
- FwChipModule,
48
- FwDialogsModule,
49
- FwIconModule,
50
- FwIconButtonModule,
51
- FwLayoutsModule,
52
- FwMenuModule,
53
- FwSectionHeadingModule,
54
- FwSelectMenuModule,
55
- FwStepperModule,
56
- FwTextInputModule
57
- ],
58
- })
59
- export class AppModule {
60
- }
47
+ ...anyOtherFwModulesYouMightNeed,
48
+ ...
61
49
  ```
50
+
51
+ Then add it to your html
52
+
53
+ ```html
54
+ <fw-alert description="Look I'm an alert"></fw-alert>
55
+ ```
56
+
57
+ # For more details on using specific components, including their module name and selector, you can check out its docs page in [the storybook](https://cdn.flywheel.io/docs/vision/latest/)
@@ -9,5 +9,5 @@ export declare class FwAlertComponent {
9
9
  showClose?: boolean;
10
10
  close?: EventEmitter<null>;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FwAlertComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<FwAlertComponent, "fw-alert", never, { "description": "description"; "icon": "icon"; "severity": "severity"; "title": "title"; "variant": "variant"; "showClose": "showClose"; }, { "close": "close"; }, never, ["*"], false>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwAlertComponent, "fw-alert", never, { "description": "description"; "icon": "icon"; "severity": "severity"; "title": "title"; "variant": "variant"; "showClose": "showClose"; }, { "close": "close"; }, never, ["*", "fw-button"], false>;
13
13
  }
@@ -1,8 +1,9 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class FwAppIconComponent {
3
- label?: string;
3
+ title?: string;
4
4
  icon?: string;
5
- color?: 'primary' | 'dark' | 'light' | 'gradient';
5
+ imageUrl?: string;
6
+ color?: 'primary' | 'dark' | 'light' | 'gradient' | 'transparent';
6
7
  size?: 'small' | 'medium' | 'large' | 'extra-large';
7
8
  variant?: 'interactive' | 'hover' | 'focused' | 'static';
8
9
  badge?: string;
@@ -12,5 +13,5 @@ export declare class FwAppIconComponent {
12
13
  role: string;
13
14
  get cssClass(): string;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<FwAppIconComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<FwAppIconComponent, "fw-app-icon", never, { "label": "label"; "icon": "icon"; "color": "color"; "size": "size"; "variant": "variant"; "badge": "badge"; "tabindex": "tabindex"; "locked": "locked"; "animated": "animated"; }, {}, never, never, false>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwAppIconComponent, "fw-app-icon", never, { "title": "title"; "icon": "icon"; "imageUrl": "imageUrl"; "color": "color"; "size": "size"; "variant": "variant"; "badge": "badge"; "tabindex": "tabindex"; "locked": "locked"; "animated": "animated"; }, {}, never, never, false>;
16
17
  }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FwBadgeComponent {
3
+ color?: 'default' | 'primary' | 'secondary' | 'error' | 'warning' | 'success';
4
+ variant?: 'standard' | 'dot' | 'static';
5
+ value?: string;
6
+ get cssClass(): string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwBadgeComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwBadgeComponent, "fw-badge", never, { "color": "color"; "variant": "variant"; "value": "value"; }, {}, never, ["*"], false>;
9
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./badge.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class FwBadgeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwBadgeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwBadgeModule, [typeof i1.FwBadgeComponent], [typeof i2.CommonModule], [typeof i1.FwBadgeComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwBadgeModule>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import { AfterContentInit, QueryList } from '@angular/core';
2
+ import { FwCrumbComponent } from './crumb.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FwBreadcrumbsComponent implements AfterContentInit {
5
+ crumbs: QueryList<FwCrumbComponent>;
6
+ ngAfterContentInit(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwBreadcrumbsComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwBreadcrumbsComponent, "fw-breadcrumbs", never, {}, {}, ["crumbs"], ["fw-crumb"], false>;
9
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./breadcrumbs.component";
3
+ import * as i2 from "./crumb.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../icon/icon.module";
6
+ export declare class FwBreadcrumbsModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwBreadcrumbsModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwBreadcrumbsModule, [typeof i1.FwBreadcrumbsComponent, typeof i2.FwCrumbComponent], [typeof i3.CommonModule, typeof i4.FwIconModule], [typeof i1.FwBreadcrumbsComponent, typeof i2.FwCrumbComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwBreadcrumbsModule>;
10
+ }
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FwCrumbComponent {
4
+ title: string;
5
+ description?: string;
6
+ href?: string;
7
+ last?: boolean;
8
+ click: EventEmitter<Event>;
9
+ handleClick(evt: Event): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwCrumbComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwCrumbComponent, "fw-crumb", never, { "title": "title"; "description": "description"; "href": "href"; "last": "last"; }, { "click": "click"; }, never, never, false>;
12
+ }
@@ -3,11 +3,11 @@ export declare class FwButtonComponent {
3
3
  get classes(): string;
4
4
  color?: 'primary' | 'secondary' | 'danger' | 'slate' | 'skeleton' | 'warning' | 'success';
5
5
  size?: 'small' | 'medium' | 'large';
6
- type?: 'ghost' | 'solid' | 'outline';
6
+ variant?: 'ghost' | 'solid' | 'outline';
7
7
  disabled?: boolean;
8
8
  fullWidth?: boolean;
9
9
  leftIcon?: string;
10
10
  rightIcon?: string;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<FwButtonComponent, "fw-button", never, { "color": "color"; "size": "size"; "type": "type"; "disabled": "disabled"; "fullWidth": "fullWidth"; "leftIcon": "leftIcon"; "rightIcon": "rightIcon"; }, {}, never, ["*"], false>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwButtonComponent, "fw-button", never, { "color": "color"; "size": "size"; "variant": "variant"; "disabled": "disabled"; "fullWidth": "fullWidth"; "leftIcon": "leftIcon"; "rightIcon": "rightIcon"; }, {}, never, ["*"], false>;
13
13
  }
@@ -1,7 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class FwCardAttributeComponent {
3
3
  icon: string;
4
- label: string;
4
+ title: string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<FwCardAttributeComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<FwCardAttributeComponent, "fw-card-attr", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"], false>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwCardAttributeComponent, "fw-card-attr", never, { "icon": "icon"; "title": "title"; }, {}, never, ["*"], false>;
7
7
  }
@@ -1,8 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class FwCardHeaderComponent {
3
3
  title?: string;
4
- subtitle?: string;
4
+ description?: string;
5
5
  leftIcon?: string;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<FwCardHeaderComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<FwCardHeaderComponent, "fw-card-header", never, { "title": "title"; "subtitle": "subtitle"; "leftIcon": "leftIcon"; }, {}, never, ["*"], false>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwCardHeaderComponent, "fw-card-header", never, { "title": "title"; "description": "description"; "leftIcon": "leftIcon"; }, {}, never, ["fw-app-icon", "*"], false>;
8
8
  }
@@ -5,8 +5,8 @@ export declare class FwChipComponent {
5
5
  variant?: 'enabled' | 'hovered' | 'focused' | 'disabled';
6
6
  color?: 'slate' | 'primary' | 'secondary' | 'red' | 'green' | 'orange';
7
7
  icon?: string;
8
- label?: string;
9
- secondaryLabel?: string;
8
+ title?: string;
9
+ description?: string;
10
10
  showClose?: boolean;
11
11
  disabled?: boolean;
12
12
  selected?: boolean;
@@ -15,5 +15,5 @@ export declare class FwChipComponent {
15
15
  select?: EventEmitter<object | string>;
16
16
  handleClose(event: MouseEvent): void;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<FwChipComponent, never>;
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
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwChipComponent, "fw-chip", never, { "value": "value"; "variant": "variant"; "color": "color"; "icon": "icon"; "title": "title"; "description": "description"; "showClose": "showClose"; "disabled": "disabled"; "selected": "selected"; "selectable": "selectable"; }, { "close": "close"; "select": "select"; }, never, ["fw-avatar"], false>;
19
19
  }
@@ -0,0 +1,17 @@
1
+ import { Dialog, DialogConfig, DialogRef } from '@angular/cdk/dialog';
2
+ import { ComponentType, Overlay, OverlayContainer } from '@angular/cdk/overlay';
3
+ import { Injector } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FwDialogService extends Dialog {
6
+ private overlay;
7
+ injector: Injector;
8
+ _overlayContainerRef: OverlayContainer;
9
+ dialogRef: DialogRef<any>;
10
+ constructor(overlay: Overlay, _injector: Injector, injector: Injector, _dialogConfig: DialogConfig, _overlayContainerRef: OverlayContainer, scrollStrategy: any, _parentDialog: Dialog, dialogRef: DialogRef<any>);
11
+ /**
12
+ * Open a custom component in an overlay and positioned near the top
13
+ */
14
+ openDialog<T>(component: ComponentType<T>, config?: DialogConfig, topOffset?: string): DialogRef<unknown, any>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogService, [null, null, null, { optional: true; }, null, null, { optional: true; skipSelf: true; }, { optional: true; }]>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<FwDialogService>;
17
+ }
@@ -4,12 +4,12 @@ import * as i2 from "./dialog-confirm.component";
4
4
  import * as i3 from "./dialog-simple.component";
5
5
  import * as i4 from "@angular/common";
6
6
  import * as i5 from "@angular/cdk/dialog";
7
- import * as i6 from "../shared/pipes/pipes.module";
7
+ import * as i6 from "../button/button.module";
8
8
  import * as i7 from "../icon-button/icon-button.module";
9
- import * as i8 from "../button/button.module";
10
- import * as i9 from "../icon/icon.module";
9
+ import * as i8 from "../icon/icon.module";
10
+ import * as i9 from "../shared/pipes/pipes.module";
11
11
  export declare class FwDialogsModule {
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogsModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<FwDialogsModule, [typeof i1.FwDialogComponent, typeof i1.FwDialogHeaderComponent, typeof i1.FwDialogContentComponent, typeof i1.FwDialogActionsComponent, typeof i2.FwDialogConfirmComponent, typeof i3.FwDialogSimpleComponent], [typeof i4.CommonModule, typeof i5.DialogModule, typeof i6.PipesModule, typeof i7.FwIconButtonModule, typeof i8.FwButtonModule, typeof i9.FwIconModule], [typeof i1.FwDialogComponent, typeof i1.FwDialogHeaderComponent, typeof i1.FwDialogContentComponent, typeof i1.FwDialogActionsComponent, typeof i2.FwDialogConfirmComponent, typeof i3.FwDialogSimpleComponent]>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwDialogsModule, [typeof i1.FwDialogActionsComponent, typeof i1.FwDialogComponent, typeof i2.FwDialogConfirmComponent, typeof i1.FwDialogContentComponent, typeof i1.FwDialogHeaderComponent, typeof i3.FwDialogSimpleComponent], [typeof i4.CommonModule, typeof i5.DialogModule, typeof i6.FwButtonModule, typeof i7.FwIconButtonModule, typeof i8.FwIconModule, typeof i9.PipesModule], [typeof i1.FwDialogActionsComponent, typeof i1.FwDialogComponent, typeof i2.FwDialogConfirmComponent, typeof i1.FwDialogContentComponent, typeof i1.FwDialogHeaderComponent, typeof i3.FwDialogSimpleComponent]>;
14
14
  static ɵinj: i0.ɵɵInjectorDeclaration<FwDialogsModule>;
15
15
  }
@@ -0,0 +1,19 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FwGridComponent {
3
+ get cssClass(): string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwGridComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwGridComponent, "fw-grid", never, {}, {}, never, ["fw-grid-item"], false>;
6
+ }
7
+ export declare class FwGridItemComponent {
8
+ cols: number;
9
+ sm?: number;
10
+ md?: number;
11
+ lg?: number;
12
+ xl?: number;
13
+ padded?: boolean;
14
+ rounded?: boolean;
15
+ variant?: 'page-light' | 'page-shaded' | 'card-header' | 'card-background';
16
+ get cssClass(): string;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwGridItemComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwGridItemComponent, "fw-grid-item", never, { "cols": "cols"; "sm": "sm"; "md": "md"; "lg": "lg"; "xl": "xl"; "padded": "padded"; "rounded": "rounded"; "variant": "variant"; }, {}, never, ["*"], false>;
19
+ }
@@ -2,10 +2,11 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./context/context.component";
3
3
  import * as i2 from "./toolbar/toolbar.component";
4
4
  import * as i3 from "./layout-group.component";
5
- import * as i4 from "@angular/common";
6
- import * as i5 from "../icon/icon.module";
5
+ import * as i4 from "./grid/grid.component";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "../icon/icon.module";
7
8
  export declare class FwLayoutsModule {
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<FwLayoutsModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<FwLayoutsModule, [typeof i1.FwLayoutContextComponent, typeof i2.FwLayoutToolbarComponent, typeof i3.FwLayoutGroupComponent], [typeof i4.CommonModule, typeof i5.FwIconModule], [typeof i1.FwLayoutContextComponent, typeof i2.FwLayoutToolbarComponent, typeof i3.FwLayoutGroupComponent]>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwLayoutsModule, [typeof i1.FwLayoutContextComponent, typeof i2.FwLayoutToolbarComponent, typeof i3.FwLayoutGroupComponent, typeof i4.FwGridComponent, typeof i4.FwGridItemComponent], [typeof i5.CommonModule, typeof i6.FwIconModule], [typeof i1.FwLayoutContextComponent, typeof i2.FwLayoutToolbarComponent, typeof i3.FwLayoutGroupComponent, typeof i4.FwGridComponent, typeof i4.FwGridItemComponent]>;
10
11
  static ɵinj: i0.ɵɵInjectorDeclaration<FwLayoutsModule>;
11
12
  }
@@ -17,7 +17,7 @@ export interface FwChoiceDialogData {
17
17
  /**
18
18
  * @deprecated Legacy Vision: Please upgrade to the newer FwDialogComponent
19
19
  */
20
- export declare class FwChoiceDialogComponent {
20
+ export declare class FwLegacyChoiceDialogComponent {
21
21
  private data;
22
22
  class: string;
23
23
  'test-id': string;
@@ -29,7 +29,7 @@ export declare class FwChoiceDialogComponent {
29
29
  constructor(data: FwChoiceDialogData);
30
30
  get showCloseButton(): boolean;
31
31
  getTestId(choice: Choice): string;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<FwChoiceDialogComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<FwChoiceDialogComponent, "fw-dialog-choice-dialog", never, {}, {}, never, never, false>;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwLegacyChoiceDialogComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwLegacyChoiceDialogComponent, "fw-legacy-dialog-choice-dialog", never, {}, {}, never, never, false>;
34
34
  }
35
35
  export {};
@@ -7,7 +7,7 @@ export interface FwConfirmDialogData {
7
7
  /**
8
8
  * @deprecated Legacy Vision: Please upgrade to the newer FwDialogConfirmComponent
9
9
  */
10
- export declare class FwConfirmDialogComponent {
10
+ export declare class FwLegacyConfirmDialogComponent {
11
11
  private data;
12
12
  class: string;
13
13
  'test-id': string;
@@ -15,6 +15,6 @@ export declare class FwConfirmDialogComponent {
15
15
  content: string;
16
16
  html: string;
17
17
  constructor(data: FwConfirmDialogData);
18
- static ɵfac: i0.ɵɵFactoryDeclaration<FwConfirmDialogComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<FwConfirmDialogComponent, "fw-dialog-confirm-dialog", never, {}, {}, never, never, false>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwLegacyConfirmDialogComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwLegacyConfirmDialogComponent, "fw-dialog-confirm-dialog", never, {}, {}, never, never, false>;
20
20
  }
@@ -12,8 +12,8 @@ import * as i10 from "@angular/cdk/portal";
12
12
  /**
13
13
  * @deprecated Legacy Vision: Please upgrade to the newer FwDialogsModule
14
14
  */
15
- export declare class FwDialogModule {
16
- static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogModule, never>;
17
- static ɵmod: i0.ɵɵNgModuleDeclaration<FwDialogModule, [typeof i1.FwChoiceDialogComponent, typeof i2.FwConfirmDialogComponent, typeof i3.FwErrorDialogComponent, typeof i4.FwPortalDialogComponent], [typeof i5.CommonModule, typeof i6.MatButtonModule, typeof i7.MatDialogModule, typeof i8.MatIconModule, typeof i9.PipesModule, typeof i10.PortalModule], [typeof i1.FwChoiceDialogComponent, typeof i2.FwConfirmDialogComponent, typeof i3.FwErrorDialogComponent, typeof i4.FwPortalDialogComponent]>;
18
- static ɵinj: i0.ɵɵInjectorDeclaration<FwDialogModule>;
15
+ export declare class FwLegacyDialogModule {
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwLegacyDialogModule, never>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwLegacyDialogModule, [typeof i1.FwLegacyChoiceDialogComponent, typeof i2.FwLegacyConfirmDialogComponent, typeof i3.FwLegacyErrorDialogComponent, typeof i4.FwLegacyPortalDialogComponent], [typeof i5.CommonModule, typeof i6.MatButtonModule, typeof i7.MatDialogModule, typeof i8.MatIconModule, typeof i9.PipesModule, typeof i10.PortalModule], [typeof i1.FwLegacyChoiceDialogComponent, typeof i2.FwLegacyConfirmDialogComponent, typeof i3.FwLegacyErrorDialogComponent, typeof i4.FwLegacyPortalDialogComponent]>;
18
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwLegacyDialogModule>;
19
19
  }
@@ -12,7 +12,7 @@ export interface OpenDialog<T> {
12
12
  /**
13
13
  * @deprecated Legacy Vision: Please upgrade to the newer CdkDialogService
14
14
  */
15
- export declare class FwDialogService {
15
+ export declare class FwLegacyDialogService {
16
16
  private matDialog;
17
17
  readonly dialogs: OpenDialog<unknown>[];
18
18
  private config;
@@ -20,6 +20,6 @@ export declare class FwDialogService {
20
20
  closeAll(component?: Type<unknown>): void;
21
21
  open<T, D, R>(component: Type<T>, config?: MatDialogConfig<D>): MatDialogRef<T, R>;
22
22
  registerDialog(component: Type<unknown>, config: DialogConfig<unknown>): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogService, never>;
24
- static ɵprov: i0.ɵɵInjectableDeclaration<FwDialogService>;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwLegacyDialogService, never>;
24
+ static ɵprov: i0.ɵɵInjectableDeclaration<FwLegacyDialogService>;
25
25
  }
@@ -6,13 +6,13 @@ export interface FwErrorDialogData {
6
6
  /**
7
7
  * @deprecated Legacy Vision: Please upgrade to the newer FwDialogConfirmComponent
8
8
  */
9
- export declare class FwErrorDialogComponent {
9
+ export declare class FwLegacyErrorDialogComponent {
10
10
  private data;
11
11
  private ref;
12
12
  class: string;
13
13
  'test-id': string;
14
14
  message: string;
15
- constructor(data: FwErrorDialogData, ref: MatDialogRef<FwErrorDialogComponent>);
16
- static ɵfac: i0.ɵɵFactoryDeclaration<FwErrorDialogComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<FwErrorDialogComponent, "fw-dialog-error-dialog", never, {}, {}, never, never, false>;
15
+ constructor(data: FwErrorDialogData, ref: MatDialogRef<FwLegacyErrorDialogComponent>);
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwLegacyErrorDialogComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwLegacyErrorDialogComponent, "fw-dialog-error-dialog", never, {}, {}, never, never, false>;
18
18
  }
@@ -15,7 +15,7 @@ export interface FwPortalDialogData {
15
15
  /**
16
16
  * @deprecated Legacy Vision: Please upgrade to the newer FwDialogComponent
17
17
  */
18
- export declare class FwPortalDialogComponent implements OnDestroy {
18
+ export declare class FwLegacyPortalDialogComponent implements OnDestroy {
19
19
  private data;
20
20
  private viewContainerRef;
21
21
  class: string;
@@ -27,7 +27,7 @@ export declare class FwPortalDialogComponent implements OnDestroy {
27
27
  constructor(data: FwPortalDialogData, viewContainerRef: ViewContainerRef);
28
28
  ngOnDestroy(): void;
29
29
  attached(ref: CdkPortalOutletAttachedRef): void;
30
- static ɵfac: i0.ɵɵFactoryDeclaration<FwPortalDialogComponent, never>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<FwPortalDialogComponent, "fw-dialog-portal-dialog", never, {}, {}, never, never, false>;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwLegacyPortalDialogComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwLegacyPortalDialogComponent, "fw-dialog-portal-dialog", never, {}, {}, never, never, false>;
32
32
  }
33
33
  export {};
@@ -10,6 +10,7 @@ export declare class FwMenuContainerComponent implements AfterContentInit {
10
10
  shadow?: 'none' | 'small' | 'medium' | 'large' | 'extra-large' | 'inner';
11
11
  showFilter?: boolean;
12
12
  filterText?: string;
13
+ offset?: string;
13
14
  menu: FwMenuComponent;
14
15
  get classes(): string;
15
16
  get style(): SafeStyle;
@@ -17,5 +18,5 @@ export declare class FwMenuContainerComponent implements AfterContentInit {
17
18
  ngAfterContentInit(): void;
18
19
  filterTextChange(text: string): void;
19
20
  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
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuContainerComponent, "fw-menu-container", never, { "width": "width"; "maxHeight": "maxHeight"; "border": "border"; "shadow": "shadow"; "showFilter": "showFilter"; "filterText": "filterText"; "offset": "offset"; }, {}, ["menu"], ["*"], false>;
21
22
  }
@@ -4,18 +4,19 @@ export declare class FwMenuItemComponent {
4
4
  value?: string;
5
5
  variant?: 'default' | 'modern' | 'button';
6
6
  size?: 'default' | 'compact';
7
- label: string;
8
- subtitle?: string;
7
+ title: string;
8
+ description?: string;
9
9
  icon?: string;
10
10
  disabled?: boolean;
11
11
  showCheckbox?: boolean;
12
12
  hidden?: boolean;
13
13
  collapsed?: boolean;
14
14
  href?: string;
15
+ target?: string;
15
16
  click: EventEmitter<string>;
16
17
  focused?: boolean;
17
18
  selected?: boolean;
18
19
  handleClick(evt: Event): void;
19
20
  static ɵfac: i0.ɵɵFactoryDeclaration<FwMenuItemComponent, never>;
20
- 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"; "focused": "focused"; "selected": "selected"; }, { "click": "click"; }, never, ["fw-avatar", "*"], false>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMenuItemComponent, "fw-menu-item", never, { "value": "value"; "variant": "variant"; "size": "size"; "title": "title"; "description": "description"; "icon": "icon"; "disabled": "disabled"; "showCheckbox": "showCheckbox"; "hidden": "hidden"; "collapsed": "collapsed"; "href": "href"; "target": "target"; "focused": "focused"; "selected": "selected"; }, { "click": "click"; }, never, ["fw-avatar", "*"], false>;
21
22
  }
@@ -0,0 +1,10 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FwPopoverPanelComponent {
4
+ position: 'above' | 'above-left' | 'above-right' | 'below' | 'below-left' | 'below-right' | 'left' | 'left-above' | 'left-below' | 'right' | 'right-above' | 'right-below';
5
+ mouseLeave: EventEmitter<MouseEvent>;
6
+ get classes(): string;
7
+ hidePopover(e: MouseEvent): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwPopoverPanelComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwPopoverPanelComponent, "fw-popover-panel", never, { "position": "position"; }, { "mouseLeave": "mouseLeave"; }, never, ["*"], false>;
10
+ }
@@ -0,0 +1,19 @@
1
+ import { CdkOverlayOrigin, ConnectedPosition, FlexibleConnectedPositionStrategyOrigin } from '@angular/cdk/overlay';
2
+ import { OnChanges } from '@angular/core';
3
+ import { FwPopoverPanelComponent } from './popover-panel/popover-panel.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FwPopoverComponent implements OnChanges {
6
+ position: 'above' | 'above-left' | 'above-right' | 'below' | 'below-left' | 'below-right' | 'left' | 'left-above' | 'left-below' | 'right' | 'right-above' | 'right-below';
7
+ trigger: CdkOverlayOrigin | FlexibleConnectedPositionStrategyOrigin;
8
+ isOpen: boolean;
9
+ action: 'mouseenter' | 'click';
10
+ flyoutPanel: FwPopoverPanelComponent;
11
+ positionMap: {
12
+ [key: string]: ConnectedPosition;
13
+ };
14
+ ngOnChanges(): void;
15
+ backdropClick(): void;
16
+ handlePanelLeave(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwPopoverComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwPopoverComponent, "fw-popover", never, { "position": "position"; "trigger": "trigger"; "isOpen": "isOpen"; "action": "action"; "flyoutPanel": "flyoutPanel"; }, {}, never, ["*"], false>;
19
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./popover.component";
3
+ import * as i2 from "./popover-panel/popover-panel.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../layouts/layouts.module";
6
+ import * as i5 from "@angular/cdk/overlay";
7
+ export declare class FwPopoverModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwPopoverModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwPopoverModule, [typeof i1.FwPopoverComponent, typeof i2.FwPopoverPanelComponent], [typeof i3.CommonModule, typeof i4.FwLayoutsModule, typeof i5.OverlayModule], [typeof i1.FwPopoverComponent, typeof i2.FwPopoverPanelComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwPopoverModule>;
11
+ }
@@ -2,6 +2,7 @@ import { Location } from '@angular/common';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class BackButtonComponent {
4
4
  location: Location;
5
+ class: string;
5
6
  constructor(location: Location);
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<BackButtonComponent, never>;
7
8
  static ɵcmp: i0.ɵɵComponentDeclaration<BackButtonComponent, "fw-back-button", never, {}, {}, never, never, false>;
@@ -1,10 +1,11 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class FwSectionHeadingComponent {
3
- heading: string;
3
+ class: string;
4
+ title: string;
4
5
  description?: string;
5
6
  backButton?: boolean;
6
7
  icon?: string;
7
8
  constructor();
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<FwSectionHeadingComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<FwSectionHeadingComponent, "fw-section-heading", never, { "heading": "heading"; "description": "description"; "backButton": "backButton"; "icon": "icon"; }, {}, never, ["*"], false>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwSectionHeadingComponent, "fw-section-heading", never, { "title": "title"; "description": "description"; "backButton": "backButton"; "icon": "icon"; }, {}, never, ["fw-icon", "p", "*"], false>;
10
11
  }
@@ -1,11 +1,12 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./section-heading.component";
3
- import * as i2 from "./back-button/back-button.component";
4
- import * as i3 from "@angular/common";
5
- import * as i4 from "../button/button.module";
6
- import * as i5 from "../icon/icon.module";
2
+ import * as i1 from "./back-button/back-button.component";
3
+ import * as i2 from "./section-heading.component";
4
+ import * as i3 from "./subsection-heading/subsection-heading.component";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "../button/button.module";
7
+ import * as i6 from "../icon/icon.module";
7
8
  export declare class FwSectionHeadingModule {
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<FwSectionHeadingModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<FwSectionHeadingModule, [typeof i1.FwSectionHeadingComponent, typeof i2.BackButtonComponent], [typeof i3.CommonModule, typeof i4.FwButtonModule, typeof i5.FwIconModule], [typeof i1.FwSectionHeadingComponent]>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwSectionHeadingModule, [typeof i1.BackButtonComponent, typeof i2.FwSectionHeadingComponent, typeof i3.FwSubsectionHeadingComponent], [typeof i4.CommonModule, typeof i5.FwButtonModule, typeof i6.FwIconModule], [typeof i2.FwSectionHeadingComponent, typeof i3.FwSubsectionHeadingComponent]>;
10
11
  static ɵinj: i0.ɵɵInjectorDeclaration<FwSectionHeadingModule>;
11
12
  }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FwSubsectionHeadingComponent {
3
+ title: string;
4
+ icon?: string;
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwSubsectionHeadingComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwSubsectionHeadingComponent, "fw-subsection-heading", never, { "title": "title"; "icon": "icon"; }, {}, never, ["*"], false>;
8
+ }
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
7
7
  export declare class FwMultiSelectMenuComponent implements ControlValueAccessor, AfterContentInit, OnChanges, OnDestroy {
8
8
  options: object[];
9
9
  valueProperty?: string;
10
- labelProperty?: string;
10
+ titleProperty?: string;
11
11
  iconProperty?: string;
12
12
  disabled?: boolean;
13
13
  useCheckbox?: boolean;
@@ -50,5 +50,5 @@ export declare class FwMultiSelectMenuComponent implements ControlValueAccessor,
50
50
  handleKeyDown(event: KeyboardEvent): void;
51
51
  handleKeyUp(event: KeyboardEvent): void;
52
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>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwMultiSelectMenuComponent, "fw-multi-select", never, { "options": "options"; "valueProperty": "valueProperty"; "titleProperty": "titleProperty"; "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
54
  }