@flywheel-io/vision 0.11.2 → 0.12.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/components/button/button.component.d.ts +2 -1
- package/components/button/button.directives.d.ts +37 -0
- package/components/button/button.module.d.ts +5 -4
- package/components/card/card-attribute/card-attribute.component.d.ts +7 -0
- package/components/card/card-author/card-author.component.d.ts +7 -0
- package/components/card/card-content/card-content.component.d.ts +5 -0
- package/components/card/card-footer/card-footer.component.d.ts +9 -0
- package/components/card/card-header/card-header.component.d.ts +8 -0
- package/components/card/card.component.d.ts +12 -0
- package/components/card/card.module.d.ts +15 -0
- package/components/dialog/dialog-confirm.component.d.ts +22 -0
- package/components/dialog/dialog-simple.component.d.ts +19 -0
- package/components/dialog/dialog.component.d.ts +41 -0
- package/components/dialog/dialogs.module.d.ts +15 -0
- package/components/icon-button/icon-button.component.d.ts +1 -0
- package/components/{dialog → legacy/dialog}/choice-dialog.component.d.ts +4 -1
- package/components/{dialog → legacy/dialog}/confirm-dialog.component.d.ts +4 -1
- package/components/{dialog → legacy/dialog}/dialog.module.d.ts +4 -1
- package/components/{dialog → legacy/dialog}/dialog.service.d.ts +3 -0
- package/components/{dialog → legacy/dialog}/error-dialog.component.d.ts +4 -1
- package/components/{dialog → legacy/dialog}/portal-dialog.component.d.ts +4 -1
- package/components/{notification → legacy/notification}/notification.module.d.ts +2 -2
- package/components/stepper/step.component.d.ts +20 -0
- package/components/stepper/stepper.component.d.ts +23 -0
- package/components/stepper/stepper.module.d.ts +11 -0
- package/esm2020/components/alert/alert.component.mjs +2 -2
- package/esm2020/components/button/button.component.mjs +7 -4
- package/esm2020/components/button/button.directives.mjs +129 -0
- package/esm2020/components/button/button.module.mjs +24 -3
- package/esm2020/components/button-group/button-group.component.mjs +2 -2
- package/esm2020/components/card/card-attribute/card-attribute.component.mjs +17 -0
- package/esm2020/components/card/card-author/card-author.component.mjs +15 -0
- package/esm2020/components/card/card-content/card-content.component.mjs +11 -0
- package/esm2020/components/card/card-footer/card-footer.component.mjs +29 -0
- package/esm2020/components/card/card-header/card-header.component.mjs +19 -0
- package/esm2020/components/card/card.component.mjs +27 -0
- package/esm2020/components/card/card.module.mjs +57 -0
- package/esm2020/components/dialog/dialog-confirm.component.mjs +56 -0
- package/esm2020/components/dialog/dialog-simple.component.mjs +46 -0
- package/esm2020/components/dialog/dialog.component.mjs +122 -0
- package/esm2020/components/dialog/dialogs.module.mjs +66 -0
- package/esm2020/components/icon-button/icon-button.component.mjs +6 -3
- package/esm2020/components/legacy/dialog/choice-dialog.component.mjs +107 -0
- package/esm2020/components/legacy/dialog/confirm-dialog.component.mjs +61 -0
- package/esm2020/components/legacy/dialog/dialog.module.mjs +82 -0
- package/esm2020/components/legacy/dialog/dialog.service.mjs +75 -0
- package/esm2020/components/legacy/dialog/error-dialog.component.mjs +52 -0
- package/esm2020/components/legacy/dialog/portal-dialog.component.mjs +109 -0
- package/esm2020/components/legacy/notification/notification/notification.component.mjs +74 -0
- package/esm2020/components/legacy/notification/notification/notification.model.mjs +9 -0
- package/esm2020/components/legacy/notification/notification-container/notification-container.component.mjs +98 -0
- package/esm2020/components/legacy/notification/notification-timer.service.mjs +29 -0
- package/esm2020/components/legacy/notification/notification.module.mjs +51 -0
- package/esm2020/components/legacy/notification/notification.service.mjs +36 -0
- package/esm2020/components/legacy/popover/popover-trigger.component.mjs +66 -0
- package/esm2020/components/legacy/popover/popover-trigger.directive.mjs +139 -0
- package/esm2020/components/{popover → legacy/popover}/popover.component.mjs +1 -1
- package/esm2020/components/{popover → legacy/popover}/popover.module.mjs +1 -1
- package/esm2020/components/stepper/step.component.mjs +52 -0
- package/esm2020/components/stepper/stepper.component.mjs +95 -0
- package/esm2020/components/stepper/stepper.module.mjs +37 -0
- package/esm2020/components/text-input/text-input.component.mjs +2 -2
- package/esm2020/public-api.mjs +31 -16
- package/fesm2015/flywheel-io-vision.mjs +962 -192
- package/fesm2015/flywheel-io-vision.mjs.map +1 -1
- package/fesm2020/flywheel-io-vision.mjs +951 -187
- package/fesm2020/flywheel-io-vision.mjs.map +1 -1
- package/package.json +1 -9
- package/public-api.d.ts +30 -15
- package/scss/config/general.scss +4 -0
- package/scss/config/typography.scss +1 -1
- package/scss/config/vision-colors.scss +2 -2
- package/styles.css +8 -4
- package/elements/README.md +0 -20
- package/elements/elements.d.ts +0 -3
- package/elements/index.d.ts +0 -5
- package/elements/polyfills.d.ts +0 -57
- package/elements/public-api.d.ts +0 -1
- package/esm2020/components/dialog/choice-dialog.component.mjs +0 -90
- package/esm2020/components/dialog/confirm-dialog.component.mjs +0 -54
- package/esm2020/components/dialog/dialog.module.mjs +0 -79
- package/esm2020/components/dialog/dialog.service.mjs +0 -72
- package/esm2020/components/dialog/error-dialog.component.mjs +0 -49
- package/esm2020/components/dialog/portal-dialog.component.mjs +0 -106
- package/esm2020/components/notification/notification/notification.component.mjs +0 -74
- package/esm2020/components/notification/notification/notification.model.mjs +0 -9
- package/esm2020/components/notification/notification-container/notification-container.component.mjs +0 -98
- package/esm2020/components/notification/notification-timer.service.mjs +0 -29
- package/esm2020/components/notification/notification.module.mjs +0 -51
- package/esm2020/components/notification/notification.service.mjs +0 -36
- package/esm2020/components/popover/popover-trigger.component.mjs +0 -66
- package/esm2020/components/popover/popover-trigger.directive.mjs +0 -139
- package/esm2020/elements/elements.mjs +0 -59
- package/esm2020/elements/flywheel-io-vision-elements.mjs +0 -5
- package/esm2020/elements/polyfills.mjs +0 -60
- package/esm2020/elements/public-api.mjs +0 -2
- package/fesm2015/flywheel-io-vision-elements.mjs +0 -83
- package/fesm2015/flywheel-io-vision-elements.mjs.map +0 -1
- package/fesm2020/flywheel-io-vision-elements.mjs +0 -83
- package/fesm2020/flywheel-io-vision-elements.mjs.map +0 -1
- /package/components/{notification → legacy/notification}/notification/notification.component.d.ts +0 -0
- /package/components/{notification → legacy/notification}/notification/notification.model.d.ts +0 -0
- /package/components/{notification → legacy/notification}/notification-container/notification-container.component.d.ts +0 -0
- /package/components/{notification → legacy/notification}/notification-timer.service.d.ts +0 -0
- /package/components/{notification → legacy/notification}/notification.service.d.ts +0 -0
- /package/components/{popover → legacy/popover}/popover-trigger.component.d.ts +0 -0
- /package/components/{popover → legacy/popover}/popover-trigger.directive.d.ts +0 -0
- /package/components/{popover → legacy/popover}/popover.component.d.ts +0 -0
- /package/components/{popover → legacy/popover}/popover.module.d.ts +0 -0
|
@@ -5,8 +5,9 @@ export declare class FwButtonComponent {
|
|
|
5
5
|
size?: 'small' | 'medium' | 'large';
|
|
6
6
|
type?: 'ghost' | 'solid' | 'outline';
|
|
7
7
|
disabled?: boolean;
|
|
8
|
+
fullWidth?: boolean;
|
|
8
9
|
leftIcon?: string;
|
|
9
10
|
rightIcon?: string;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwButtonComponent, "fw-button", never, { "color": "color"; "size": "size"; "type": "type"; "disabled": "disabled"; "leftIcon": "leftIcon"; "rightIcon": "rightIcon"; }, {}, never, ["*"], false>;
|
|
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
13
|
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FwButtonDirective {
|
|
4
|
+
private sanitizer;
|
|
5
|
+
get style(): SafeStyle;
|
|
6
|
+
constructor(sanitizer: DomSanitizer);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FwButtonDirective, "[fwButton]", never, {}, {}, never, never, false>;
|
|
9
|
+
}
|
|
10
|
+
export declare class FwButtonPrimaryDirective {
|
|
11
|
+
private sanitizer;
|
|
12
|
+
get style(): SafeStyle;
|
|
13
|
+
constructor(sanitizer: DomSanitizer);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonPrimaryDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FwButtonPrimaryDirective, "[fwButtonPrimary]", never, {}, {}, never, never, false>;
|
|
16
|
+
}
|
|
17
|
+
export declare class FwButtonSecondaryDirective {
|
|
18
|
+
private sanitizer;
|
|
19
|
+
get style(): SafeStyle;
|
|
20
|
+
constructor(sanitizer: DomSanitizer);
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonSecondaryDirective, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FwButtonSecondaryDirective, "[fwButtonSecondary]", never, {}, {}, never, never, false>;
|
|
23
|
+
}
|
|
24
|
+
export declare class FwButtonDangerDirective {
|
|
25
|
+
private sanitizer;
|
|
26
|
+
get style(): SafeStyle;
|
|
27
|
+
constructor(sanitizer: DomSanitizer);
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonDangerDirective, never>;
|
|
29
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FwButtonDangerDirective, "[fwButtonDanger]", never, {}, {}, never, never, false>;
|
|
30
|
+
}
|
|
31
|
+
export declare class FwButtonSuccessDirective {
|
|
32
|
+
private sanitizer;
|
|
33
|
+
get style(): SafeStyle;
|
|
34
|
+
constructor(sanitizer: DomSanitizer);
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonSuccessDirective, never>;
|
|
36
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FwButtonSuccessDirective, "[fwButtonSuccess]", never, {}, {}, never, never, false>;
|
|
37
|
+
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./button.component";
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "@angular/
|
|
5
|
-
import * as i4 from "
|
|
3
|
+
import * as i2 from "./button.directives";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/material/button";
|
|
6
|
+
import * as i5 from "../icon/icon.module";
|
|
6
7
|
export declare class FwButtonModule {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FwButtonModule, [typeof i1.FwButtonComponent], [typeof
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FwButtonModule, [typeof i1.FwButtonComponent, typeof i2.FwButtonDirective, typeof i2.FwButtonDangerDirective, typeof i2.FwButtonPrimaryDirective, typeof i2.FwButtonSecondaryDirective, typeof i2.FwButtonSuccessDirective], [typeof i3.CommonModule, typeof i4.MatButtonModule, typeof i5.FwIconModule], [typeof i1.FwButtonComponent, typeof i2.FwButtonDirective, typeof i2.FwButtonDangerDirective, typeof i2.FwButtonPrimaryDirective, typeof i2.FwButtonSecondaryDirective, typeof i2.FwButtonSuccessDirective]>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<FwButtonModule>;
|
|
10
11
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FwCardAttributeComponent {
|
|
3
|
+
icon: string;
|
|
4
|
+
label: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwCardAttributeComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwCardAttributeComponent, "fw-card-attr", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"], false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FwCardAuthorComponent {
|
|
3
|
+
name: string;
|
|
4
|
+
details: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwCardAuthorComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwCardAuthorComponent, "fw-card-author", never, { "name": "name"; "details": "details"; }, {}, never, ["fw-avatar"], false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FwCardContentComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwCardContentComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwCardContentComponent, "fw-card-content", never, {}, {}, never, ["*"], false>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FwCardFooterComponent {
|
|
4
|
+
private sanitizer;
|
|
5
|
+
get style(): SafeStyle;
|
|
6
|
+
constructor(sanitizer: DomSanitizer);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwCardFooterComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwCardFooterComponent, "fw-card-footer", never, {}, {}, never, ["*"], false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FwCardHeaderComponent {
|
|
3
|
+
title?: string;
|
|
4
|
+
subtitle?: string;
|
|
5
|
+
leftIcon?: string;
|
|
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>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FwCardComponent {
|
|
4
|
+
value?: object | string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
focused?: boolean;
|
|
7
|
+
constrained?: boolean;
|
|
8
|
+
selectable?: boolean;
|
|
9
|
+
select?: EventEmitter<object | string>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwCardComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwCardComponent, "fw-card", never, { "value": "value"; "disabled": "disabled"; "focused": "focused"; "constrained": "constrained"; "selectable": "selectable"; }, { "select": "select"; }, never, ["fw-card-header", "fw-card-author", "fw-card-content", "fw-card-footer"], false>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./card-header/card-header.component";
|
|
3
|
+
import * as i2 from "./card-author/card-author.component";
|
|
4
|
+
import * as i3 from "./card-content/card-content.component";
|
|
5
|
+
import * as i4 from "./card-attribute/card-attribute.component";
|
|
6
|
+
import * as i5 from "./card-footer/card-footer.component";
|
|
7
|
+
import * as i6 from "./card.component";
|
|
8
|
+
import * as i7 from "@angular/common";
|
|
9
|
+
import * as i8 from "../icon/icon.module";
|
|
10
|
+
import * as i9 from "../avatar/avatar.module";
|
|
11
|
+
export declare class FwCardModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwCardModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FwCardModule, [typeof i1.FwCardHeaderComponent, typeof i2.FwCardAuthorComponent, typeof i3.FwCardContentComponent, typeof i4.FwCardAttributeComponent, typeof i5.FwCardFooterComponent, typeof i6.FwCardComponent], [typeof i7.CommonModule, typeof i8.FwIconModule, typeof i9.FwAvatarModule], [typeof i1.FwCardHeaderComponent, typeof i2.FwCardAuthorComponent, typeof i3.FwCardContentComponent, typeof i4.FwCardAttributeComponent, typeof i5.FwCardFooterComponent, typeof i6.FwCardComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FwCardModule>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { DialogRef } from '@angular/cdk/dialog';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { DialogWidth } from './dialog.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FwDialogConfirmComponent {
|
|
6
|
+
dialogRef: DialogRef;
|
|
7
|
+
title?: string;
|
|
8
|
+
confirmColor?: 'primary' | 'secondary' | 'danger' | 'slate' | 'warning' | 'success';
|
|
9
|
+
confirmButtonText?: string;
|
|
10
|
+
confirmButtonIcon?: string;
|
|
11
|
+
cancelButtonText?: string;
|
|
12
|
+
contentIcon?: string;
|
|
13
|
+
contentTitle?: string;
|
|
14
|
+
contentText?: string;
|
|
15
|
+
close?: EventEmitter<null>;
|
|
16
|
+
confirm?: EventEmitter<null>;
|
|
17
|
+
protected readonly DialogWidth: typeof DialogWidth;
|
|
18
|
+
constructor(dialogRef: DialogRef);
|
|
19
|
+
handleCloseButton(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogConfirmComponent, [{ optional: true; }]>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwDialogConfirmComponent, "fw-dialog-confirm", never, { "title": "title"; "confirmColor": "confirmColor"; "confirmButtonText": "confirmButtonText"; "confirmButtonIcon": "confirmButtonIcon"; "cancelButtonText": "cancelButtonText"; "contentIcon": "contentIcon"; "contentTitle": "contentTitle"; "contentText": "contentText"; }, { "close": "close"; "confirm": "confirm"; }, never, never, false>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { DialogRef } from '@angular/cdk/dialog';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { DialogWidth } from './dialog.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FwDialogSimpleComponent {
|
|
6
|
+
dialogRef: DialogRef;
|
|
7
|
+
width?: DialogWidth;
|
|
8
|
+
title?: string;
|
|
9
|
+
showClose?: boolean;
|
|
10
|
+
actionButtonText?: string;
|
|
11
|
+
cancelButtonText?: string;
|
|
12
|
+
contentText?: string;
|
|
13
|
+
close?: EventEmitter<null>;
|
|
14
|
+
action?: EventEmitter<null>;
|
|
15
|
+
constructor(dialogRef: DialogRef);
|
|
16
|
+
handleCloseButton(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogSimpleComponent, [{ optional: true; }]>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwDialogSimpleComponent, "fw-dialog-simple", never, { "width": "width"; "title": "title"; "showClose": "showClose"; "actionButtonText": "actionButtonText"; "cancelButtonText": "cancelButtonText"; "contentText": "contentText"; }, { "close": "close"; "action": "action"; }, never, ["fw-dialog-content"], false>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { DialogRef } from '@angular/cdk/dialog';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare enum DialogWidth {
|
|
6
|
+
ExtraSmall = "extra-small",
|
|
7
|
+
Small = "small",
|
|
8
|
+
Medium = "medium",
|
|
9
|
+
Large = "large",
|
|
10
|
+
ExtraLarge = "extra-large"
|
|
11
|
+
}
|
|
12
|
+
export declare class FwDialogComponent {
|
|
13
|
+
protected dialogRef: DialogRef;
|
|
14
|
+
width?: DialogWidth;
|
|
15
|
+
title?: string;
|
|
16
|
+
showClose?: boolean;
|
|
17
|
+
close?: EventEmitter<null>;
|
|
18
|
+
constructor(dialogRef: DialogRef);
|
|
19
|
+
get classes(): string;
|
|
20
|
+
protected handleCloseButton(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogComponent, [{ optional: true; }]>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwDialogComponent, "fw-dialog", never, { "width": "width"; "title": "title"; "showClose": "showClose"; }, { "close": "close"; }, never, ["fw-dialog-header", "fw-dialog-content", "fw-dialog-actions"], false>;
|
|
23
|
+
}
|
|
24
|
+
export declare class FwDialogHeaderComponent {
|
|
25
|
+
private sanitizer;
|
|
26
|
+
get style(): SafeStyle;
|
|
27
|
+
constructor(sanitizer: DomSanitizer);
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogHeaderComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwDialogHeaderComponent, "fw-dialog-header", never, {}, {}, never, ["*"], false>;
|
|
30
|
+
}
|
|
31
|
+
export declare class FwDialogContentComponent {
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogContentComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwDialogContentComponent, "fw-dialog-content", never, {}, {}, never, ["*"], false>;
|
|
34
|
+
}
|
|
35
|
+
export declare class FwDialogActionsComponent {
|
|
36
|
+
private sanitizer;
|
|
37
|
+
get style(): SafeStyle;
|
|
38
|
+
constructor(sanitizer: DomSanitizer);
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogActionsComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwDialogActionsComponent, "fw-dialog-actions", never, {}, {}, never, ["*"], false>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./dialog.component";
|
|
3
|
+
import * as i2 from "./dialog-confirm.component";
|
|
4
|
+
import * as i3 from "./dialog-simple.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/cdk/dialog";
|
|
7
|
+
import * as i6 from "../shared/pipes/pipes.module";
|
|
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";
|
|
11
|
+
export declare class FwDialogsModule {
|
|
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]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FwDialogsModule>;
|
|
15
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class FwIconButtonComponent {
|
|
3
3
|
get classes(): string;
|
|
4
|
+
tabindex: string;
|
|
4
5
|
color?: 'primary' | 'secondary' | 'red' | 'error' | 'warning' | 'orange' | 'success' | 'green' | 'light-slate' | 'slate' | 'overlay' | 'info';
|
|
5
6
|
icon: string;
|
|
6
7
|
size?: 'large' | 'medium' | 'small';
|
|
@@ -14,6 +14,9 @@ export interface FwChoiceDialogData {
|
|
|
14
14
|
content: string;
|
|
15
15
|
title?: string;
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated Legacy Vision: Please upgrade to the newer FwDialogComponent
|
|
19
|
+
*/
|
|
17
20
|
export declare class FwChoiceDialogComponent {
|
|
18
21
|
private data;
|
|
19
22
|
class: string;
|
|
@@ -27,6 +30,6 @@ export declare class FwChoiceDialogComponent {
|
|
|
27
30
|
get showCloseButton(): boolean;
|
|
28
31
|
getTestId(choice: Choice): string;
|
|
29
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwChoiceDialogComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwChoiceDialogComponent, "fw-choice-dialog", never, {}, {}, never, never, false>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwChoiceDialogComponent, "fw-dialog-choice-dialog", never, {}, {}, never, never, false>;
|
|
31
34
|
}
|
|
32
35
|
export {};
|
|
@@ -4,6 +4,9 @@ export interface FwConfirmDialogData {
|
|
|
4
4
|
content?: string;
|
|
5
5
|
html?: string;
|
|
6
6
|
}
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated Legacy Vision: Please upgrade to the newer FwDialogConfirmComponent
|
|
9
|
+
*/
|
|
7
10
|
export declare class FwConfirmDialogComponent {
|
|
8
11
|
private data;
|
|
9
12
|
class: string;
|
|
@@ -13,5 +16,5 @@ export declare class FwConfirmDialogComponent {
|
|
|
13
16
|
html: string;
|
|
14
17
|
constructor(data: FwConfirmDialogData);
|
|
15
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwConfirmDialogComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwConfirmDialogComponent, "fw-confirm-dialog", never, {}, {}, never, never, false>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwConfirmDialogComponent, "fw-dialog-confirm-dialog", never, {}, {}, never, never, false>;
|
|
17
20
|
}
|
|
@@ -7,8 +7,11 @@ import * as i5 from "@angular/common";
|
|
|
7
7
|
import * as i6 from "@angular/material/button";
|
|
8
8
|
import * as i7 from "@angular/material/dialog";
|
|
9
9
|
import * as i8 from "@angular/material/icon";
|
|
10
|
-
import * as i9 from "
|
|
10
|
+
import * as i9 from "../../shared/pipes/pipes.module";
|
|
11
11
|
import * as i10 from "@angular/cdk/portal";
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated Legacy Vision: Please upgrade to the newer FwDialogsModule
|
|
14
|
+
*/
|
|
12
15
|
export declare class FwDialogModule {
|
|
13
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwDialogModule, never>;
|
|
14
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]>;
|
|
@@ -9,6 +9,9 @@ export interface OpenDialog<T> {
|
|
|
9
9
|
component: Type<T>;
|
|
10
10
|
ref: MatDialogRef<T>;
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated Legacy Vision: Please upgrade to the newer CdkDialogService
|
|
14
|
+
*/
|
|
12
15
|
export declare class FwDialogService {
|
|
13
16
|
private matDialog;
|
|
14
17
|
readonly dialogs: OpenDialog<unknown>[];
|
|
@@ -3,6 +3,9 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export interface FwErrorDialogData {
|
|
4
4
|
message: string;
|
|
5
5
|
}
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Legacy Vision: Please upgrade to the newer FwDialogConfirmComponent
|
|
8
|
+
*/
|
|
6
9
|
export declare class FwErrorDialogComponent {
|
|
7
10
|
private data;
|
|
8
11
|
private ref;
|
|
@@ -11,5 +14,5 @@ export declare class FwErrorDialogComponent {
|
|
|
11
14
|
message: string;
|
|
12
15
|
constructor(data: FwErrorDialogData, ref: MatDialogRef<FwErrorDialogComponent>);
|
|
13
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwErrorDialogComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwErrorDialogComponent, "fw-error-dialog", never, {}, {}, never, never, false>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwErrorDialogComponent, "fw-dialog-error-dialog", never, {}, {}, never, never, false>;
|
|
15
18
|
}
|
|
@@ -12,6 +12,9 @@ export interface FwPortalDialogData {
|
|
|
12
12
|
template?: TemplateRef<unknown>;
|
|
13
13
|
title?: string;
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* @deprecated Legacy Vision: Please upgrade to the newer FwDialogComponent
|
|
17
|
+
*/
|
|
15
18
|
export declare class FwPortalDialogComponent implements OnDestroy {
|
|
16
19
|
private data;
|
|
17
20
|
private viewContainerRef;
|
|
@@ -25,6 +28,6 @@ export declare class FwPortalDialogComponent implements OnDestroy {
|
|
|
25
28
|
ngOnDestroy(): void;
|
|
26
29
|
attached(ref: CdkPortalOutletAttachedRef): void;
|
|
27
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwPortalDialogComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwPortalDialogComponent, "fw-portal-dialog", never, {}, {}, never, never, false>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwPortalDialogComponent, "fw-dialog-portal-dialog", never, {}, {}, never, never, false>;
|
|
29
32
|
}
|
|
30
33
|
export {};
|
|
@@ -2,8 +2,8 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./notification/notification.component";
|
|
3
3
|
import * as i2 from "./notification-container/notification-container.component";
|
|
4
4
|
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "
|
|
5
|
+
import * as i4 from "../../button/button.module";
|
|
6
|
+
import * as i5 from "../../button-group/button-group.module";
|
|
7
7
|
import * as i6 from "@angular/material/button";
|
|
8
8
|
import * as i7 from "@angular/material/icon";
|
|
9
9
|
export declare class FwNotificationModule {
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FwStepComponent {
|
|
4
|
+
stepNumber: number;
|
|
5
|
+
color?: 'slate' | 'success' | 'error' | 'warning' | 'info';
|
|
6
|
+
variant?: 'number' | 'icon' | 'decorator';
|
|
7
|
+
alignment?: 'left' | 'center';
|
|
8
|
+
backgroundColor?: string;
|
|
9
|
+
title: string;
|
|
10
|
+
subtitle?: string;
|
|
11
|
+
icon?: string;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
active?: boolean;
|
|
14
|
+
completed?: boolean;
|
|
15
|
+
done?: boolean;
|
|
16
|
+
select: EventEmitter<number>;
|
|
17
|
+
handleClick(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwStepComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwStepComponent, "fw-step", never, { "stepNumber": "stepNumber"; "color": "color"; "variant": "variant"; "alignment": "alignment"; "backgroundColor": "backgroundColor"; "title": "title"; "subtitle": "subtitle"; "icon": "icon"; "disabled": "disabled"; "active": "active"; "completed": "completed"; "done": "done"; }, { "select": "select"; }, never, ["fw-step-decorator"], false>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AfterContentInit, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
3
|
+
import { FwStepComponent } from './step.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FwStepperComponent implements OnChanges, OnDestroy, AfterContentInit {
|
|
6
|
+
private sanitizer;
|
|
7
|
+
activeStep: number;
|
|
8
|
+
doneStep?: number;
|
|
9
|
+
alignment?: 'left' | 'center';
|
|
10
|
+
backgroundColor?: string;
|
|
11
|
+
stepChange?: EventEmitter<number>;
|
|
12
|
+
steps: QueryList<FwStepComponent>;
|
|
13
|
+
get style(): SafeStyle;
|
|
14
|
+
private subscriptions;
|
|
15
|
+
constructor(sanitizer: DomSanitizer);
|
|
16
|
+
ngOnDestroy(): void;
|
|
17
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
18
|
+
ngAfterContentInit(): void;
|
|
19
|
+
handleSelect(step?: number): void;
|
|
20
|
+
updateSteps(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwStepperComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwStepperComponent, "fw-stepper", never, { "activeStep": "activeStep"; "doneStep": "doneStep"; "alignment": "alignment"; "backgroundColor": "backgroundColor"; }, { "stepChange": "stepChange"; }, ["steps"], ["fw-step"], false>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./step.component";
|
|
3
|
+
import * as i2 from "./stepper.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "../icon/icon.module";
|
|
6
|
+
import * as i5 from "../icon-button/icon-button.module";
|
|
7
|
+
export declare class FwStepperModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwStepperModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FwStepperModule, [typeof i1.FwStepComponent, typeof i2.FwStepperComponent], [typeof i3.CommonModule, typeof i4.FwIconModule, typeof i5.FwIconButtonModule], [typeof i1.FwStepComponent, typeof i2.FwStepperComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FwStepperModule>;
|
|
11
|
+
}
|