@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.
- package/README.md +41 -45
- package/components/alert/alert.component.d.ts +1 -1
- package/components/app-icon/app-icon.component.d.ts +4 -3
- package/components/badge/badge.component.d.ts +9 -0
- package/components/badge/badge.module.d.ts +8 -0
- package/components/breadcrumbs/breadcrumbs.component.d.ts +9 -0
- package/components/breadcrumbs/breadcrumbs.module.d.ts +10 -0
- package/components/breadcrumbs/crumb.component.d.ts +12 -0
- package/components/button/button.component.d.ts +2 -2
- package/components/card/card-attribute/card-attribute.component.d.ts +2 -2
- package/components/card/card-header/card-header.component.d.ts +2 -2
- package/components/chip/chip.component.d.ts +3 -3
- package/components/dialog/dialog.service.d.ts +17 -0
- package/components/dialog/dialogs.module.d.ts +4 -4
- package/components/layouts/grid/grid.component.d.ts +19 -0
- package/components/layouts/layouts.module.d.ts +4 -3
- package/components/legacy/dialog/choice-dialog.component.d.ts +3 -3
- package/components/legacy/dialog/confirm-dialog.component.d.ts +3 -3
- package/components/legacy/dialog/dialog.module.d.ts +4 -4
- package/components/legacy/dialog/dialog.service.d.ts +3 -3
- package/components/legacy/dialog/error-dialog.component.d.ts +4 -4
- package/components/legacy/dialog/portal-dialog.component.d.ts +3 -3
- package/components/menu/menu-container/menu-container.component.d.ts +2 -1
- package/components/menu/menu-item/menu-item.component.d.ts +4 -3
- package/components/popover/popover-panel/popover-panel.component.d.ts +10 -0
- package/components/popover/popover.component.d.ts +19 -0
- package/components/popover/popover.module.d.ts +11 -0
- package/components/section-heading/back-button/back-button.component.d.ts +1 -0
- package/components/section-heading/section-heading.component.d.ts +3 -2
- package/components/section-heading/section-heading.module.d.ts +7 -6
- package/components/section-heading/subsection-heading/subsection-heading.component.d.ts +8 -0
- package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +2 -2
- package/components/select-menu/select-menu.component.d.ts +3 -3
- package/components/stepper/step.component.d.ts +2 -2
- package/components/tabs/tab/tab.component.d.ts +20 -0
- package/components/tabs/tab-panel/tab-panel.component.d.ts +6 -0
- package/components/tabs/tabs.component.d.ts +16 -0
- package/components/tabs/tabs.module.d.ts +11 -0
- package/components/tooltip/tooltip-panel/tooltip-panel.component.d.ts +12 -0
- package/components/tooltip/tooltip.component.d.ts +15 -0
- package/components/tooltip/tooltip.module.d.ts +11 -0
- package/esm2020/components/alert/alert.component.mjs +3 -3
- package/esm2020/components/app-icon/app-icon.component.mjs +6 -4
- package/esm2020/components/avatar/avatar.component.mjs +2 -2
- package/esm2020/components/badge/badge.component.mjs +28 -0
- package/esm2020/components/badge/badge.module.mjs +24 -0
- package/esm2020/components/breadcrumbs/breadcrumbs.component.mjs +22 -0
- package/esm2020/components/breadcrumbs/breadcrumbs.module.mjs +33 -0
- package/esm2020/components/breadcrumbs/crumb.component.mjs +34 -0
- package/esm2020/components/button/button.component.mjs +5 -6
- package/esm2020/components/card/card-attribute/card-attribute.component.mjs +4 -4
- package/esm2020/components/card/card-content/card-content.component.mjs +2 -2
- package/esm2020/components/card/card-header/card-header.component.mjs +4 -4
- package/esm2020/components/card/card.component.mjs +2 -2
- package/esm2020/components/chip/chip.component.mjs +5 -5
- package/esm2020/components/dialog/dialog-confirm.component.mjs +3 -3
- package/esm2020/components/dialog/dialog-simple.component.mjs +3 -3
- package/esm2020/components/dialog/dialog.component.mjs +2 -2
- package/esm2020/components/dialog/dialog.service.mjs +49 -0
- package/esm2020/components/dialog/dialogs.module.mjs +29 -23
- package/esm2020/components/icon-button/icon-button.component.mjs +2 -2
- package/esm2020/components/layouts/grid/grid.component.mjs +60 -0
- package/esm2020/components/layouts/layouts.module.mjs +12 -3
- package/esm2020/components/legacy/dialog/choice-dialog.component.mjs +6 -6
- package/esm2020/components/legacy/dialog/confirm-dialog.component.mjs +5 -5
- package/esm2020/components/legacy/dialog/dialog.module.mjs +28 -28
- package/esm2020/components/legacy/dialog/dialog.service.mjs +5 -5
- package/esm2020/components/legacy/dialog/error-dialog.component.mjs +5 -5
- package/esm2020/components/legacy/dialog/portal-dialog.component.mjs +5 -5
- package/esm2020/components/legacy/notification/notification-container/notification-container.component.mjs +1 -1
- package/esm2020/components/menu/menu-container/menu-container.component.mjs +8 -4
- package/esm2020/components/menu/menu-item/menu-item.component.mjs +14 -6
- package/esm2020/components/menu/menu.component.mjs +3 -3
- package/esm2020/components/popover/popover-panel/popover-panel.component.mjs +30 -0
- package/esm2020/components/popover/popover.component.mjs +76 -0
- package/esm2020/components/popover/popover.module.mjs +42 -0
- package/esm2020/components/section-heading/back-button/back-button.component.mjs +9 -5
- package/esm2020/components/section-heading/section-heading.component.mjs +9 -5
- package/esm2020/components/section-heading/section-heading.module.mjs +10 -5
- package/esm2020/components/section-heading/subsection-heading/subsection-heading.component.mjs +19 -0
- package/esm2020/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +8 -8
- package/esm2020/components/select-menu/select-menu.component.mjs +9 -9
- package/esm2020/components/snackbar/snackbar/snackbar.component.mjs +2 -2
- package/esm2020/components/snackbar/snackbar-container/snackbar-container.component.mjs +1 -1
- package/esm2020/components/stepper/step.component.mjs +4 -4
- package/esm2020/components/tabs/tab/tab.component.mjs +79 -0
- package/esm2020/components/tabs/tab-panel/tab-panel.component.mjs +19 -0
- package/esm2020/components/tabs/tabs.component.mjs +65 -0
- package/esm2020/components/tabs/tabs.module.mjs +38 -0
- package/esm2020/components/tooltip/tooltip-panel/tooltip-panel.component.mjs +37 -0
- package/esm2020/components/tooltip/tooltip.component.mjs +39 -0
- package/esm2020/components/tooltip/tooltip.module.mjs +42 -0
- package/esm2020/public-api.mjs +20 -5
- package/fesm2015/flywheel-io-vision.mjs +903 -463
- package/fesm2015/flywheel-io-vision.mjs.map +1 -1
- package/fesm2020/flywheel-io-vision.mjs +901 -461
- package/fesm2020/flywheel-io-vision.mjs.map +1 -1
- package/global.scss +5 -29
- package/package.json +2 -2
- package/public-api.d.ts +19 -4
- package/public-api.scss +4 -1
- package/scss/config/colors.scss +136 -161
- package/scss/config/shadows.scss +23 -0
- package/scss/icons/_icon-font-face.scss +10 -8
- package/scss/icons/icons.scss +9 -2
- package/scss/material/theme.scss +239 -0
- package/styles.css +6554 -4649
- package/components/legacy/popover/popover-trigger.component.d.ts +0 -19
- package/components/legacy/popover/popover-trigger.directive.d.ts +0 -33
- package/components/legacy/popover/popover.component.d.ts +0 -8
- package/components/legacy/popover/popover.module.d.ts +0 -10
- package/esm2020/components/legacy/popover/popover-trigger.component.mjs +0 -66
- package/esm2020/components/legacy/popover/popover-trigger.directive.mjs +0 -139
- package/esm2020/components/legacy/popover/popover.component.mjs +0 -35
- package/esm2020/components/legacy/popover/popover.module.mjs +0 -40
- package/scss/atoms/cards.scss +0 -12
- package/scss/atoms/grid.scss +0 -55
- package/scss/atoms/typography.scss +0 -21
- package/scss/config/config.scss +0 -23
- package/scss/config/general.scss +0 -45
- package/scss/config/theme.scss +0 -160
- package/scss/config/vision-colors.scss +0 -131
- package/scss/global/variables.scss +0 -79
- package/scss/material/overrides.scss +0 -371
- package/scss/vendor/reset.scss +0 -53
package/README.md
CHANGED
|
@@ -1,61 +1,57 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Vision Component Library
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@flywheel-io/vision)
|
|
4
|
+
[](https://cdn.flywheel.io/docs/vision/latest/)
|
|
5
|
+
[](https://gitlab.com/flywheel-io/product/frontend/vision)
|
|
6
|
+
[](https://www.figma.com/file/yjtHt1Pn8c8t5moaab3pIH/Vision-Design-System?type=design&node-id=0-1&mode=design&t=uWLS8FwgwmsyB5ge-0)
|
|
7
|
+
[](https://flywheel-io.slack.com/archives/C06F731KZUG)
|
|
8
|
+
[](https://flywheelio.atlassian.net/jira/software/c/projects/VDS/boards/1219)
|
|
4
9
|
|
|
5
|
-
|
|
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
|
-
|
|
12
|
+
# Installation
|
|
8
13
|
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
37
|
+
# Using Components
|
|
19
38
|
|
|
20
|
-
|
|
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
|
|
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
|
-
|
|
43
|
-
|
|
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
|
-
|
|
3
|
+
title?: string;
|
|
4
4
|
icon?: string;
|
|
5
|
-
|
|
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, { "
|
|
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
|
-
|
|
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"; "
|
|
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
|
-
|
|
4
|
+
title: string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwCardAttributeComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwCardAttributeComponent, "fw-card-attr", never, { "icon": "icon"; "
|
|
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
|
-
|
|
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"; "
|
|
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
|
-
|
|
9
|
-
|
|
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"; "
|
|
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 "../
|
|
7
|
+
import * as i6 from "../button/button.module";
|
|
8
8
|
import * as i7 from "../icon-button/icon-button.module";
|
|
9
|
-
import * as i8 from "../
|
|
10
|
-
import * as i9 from "../
|
|
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.
|
|
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 "
|
|
6
|
-
import * as i5 from "
|
|
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
|
|
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
|
|
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<
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
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<
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<
|
|
18
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<
|
|
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
|
|
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<
|
|
24
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
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
|
|
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<
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
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<
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
-
|
|
8
|
-
|
|
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"; "
|
|
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
|
-
|
|
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, { "
|
|
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 "./
|
|
3
|
-
import * as i2 from "./
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "../
|
|
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.
|
|
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
|
-
|
|
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"; "
|
|
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
|
}
|