@gravitee/ui-policy-studio-angular 7.60.2 → 7.60.3
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/esm2020/lib/components/flow-details-phase/gio-ps-flow-details-phase.component.mjs +3 -3
- package/esm2020/lib/components/flow-details-phase-step/gio-ps-flow-details-phase-step.component.mjs +5 -2
- package/esm2020/lib/components/policies-catalog-dialog/gio-ps-policies-catalog-dialog.component.mjs +4 -3
- package/esm2020/lib/components/step-edit-dialog/gio-ps-step-edit-dialog.component.mjs +4 -3
- package/esm2020/lib/components/step-form/gio-ps-step-form.component.mjs +11 -3
- package/fesm2015/gravitee-ui-policy-studio-angular.mjs +25 -13
- package/fesm2015/gravitee-ui-policy-studio-angular.mjs.map +1 -1
- package/fesm2020/gravitee-ui-policy-studio-angular.mjs +22 -9
- package/fesm2020/gravitee-ui-policy-studio-angular.mjs.map +1 -1
- package/lib/components/flow-details-phase-step/gio-ps-flow-details-phase-step.component.d.ts +3 -2
- package/lib/components/policies-catalog-dialog/gio-ps-policies-catalog-dialog.component.d.ts +1 -0
- package/lib/components/step-edit-dialog/gio-ps-step-edit-dialog.component.d.ts +3 -1
- package/lib/components/step-form/gio-ps-step-form.component.d.ts +4 -2
- package/package.json +1 -1
package/lib/components/flow-details-phase-step/gio-ps-flow-details-phase-step.component.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
-
import { Policy, Step } from '../../models';
|
|
3
|
+
import { ExecutionPhase, Policy, Step } from '../../models';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class GioPolicyStudioDetailsPhaseStepComponent implements OnChanges {
|
|
6
6
|
private readonly matDialog;
|
|
@@ -9,6 +9,7 @@ export declare class GioPolicyStudioDetailsPhaseStepComponent implements OnChang
|
|
|
9
9
|
stepChange: EventEmitter<Step>;
|
|
10
10
|
deleted: EventEmitter<void>;
|
|
11
11
|
disabled: EventEmitter<void>;
|
|
12
|
+
phase: ExecutionPhase;
|
|
12
13
|
policy?: Policy;
|
|
13
14
|
constructor(matDialog: MatDialog);
|
|
14
15
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -16,5 +17,5 @@ export declare class GioPolicyStudioDetailsPhaseStepComponent implements OnChang
|
|
|
16
17
|
onDisable(): void;
|
|
17
18
|
onDelete(): void;
|
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<GioPolicyStudioDetailsPhaseStepComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GioPolicyStudioDetailsPhaseStepComponent, "gio-ps-flow-details-phase-step", never, { "step": "step"; "policies": "policies"; }, { "stepChange": "stepChange"; "deleted": "deleted"; "disabled": "disabled"; }, never, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GioPolicyStudioDetailsPhaseStepComponent, "gio-ps-flow-details-phase-step", never, { "step": "step"; "policies": "policies"; "phase": "phase"; }, { "stepChange": "stepChange"; "deleted": "deleted"; "disabled": "disabled"; }, never, never>;
|
|
20
21
|
}
|
package/lib/components/policies-catalog-dialog/gio-ps-policies-catalog-dialog.component.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export declare class GioPolicyStudioPoliciesCatalogDialogComponent implements On
|
|
|
27
27
|
private unsubscribe$;
|
|
28
28
|
isUnlicensed: boolean;
|
|
29
29
|
trialUrl?: string;
|
|
30
|
+
phase: ExecutionPhase;
|
|
30
31
|
constructor(dialogRef: MatDialogRef<GioPolicyStudioPoliciesCatalogDialogComponent, GioPolicyStudioPoliciesCatalogDialogResult>, flowDialogData: GioPolicyStudioPoliciesCatalogDialogData);
|
|
31
32
|
ngOnDestroy(): void;
|
|
32
33
|
onSelectPolicy(policy: Policy): void;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
-
import { Policy, Step } from '../../models';
|
|
2
|
+
import { ExecutionPhase, Policy, Step } from '../../models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare type GioPolicyStudioStepEditDialogData = {
|
|
5
|
+
phase: ExecutionPhase;
|
|
5
6
|
policy: Policy;
|
|
6
7
|
step: Step;
|
|
7
8
|
};
|
|
@@ -11,6 +12,7 @@ export declare class GioPolicyStudioStepEditDialogComponent {
|
|
|
11
12
|
policy: Policy;
|
|
12
13
|
step: Step;
|
|
13
14
|
isValid: boolean;
|
|
15
|
+
phase: ExecutionPhase;
|
|
14
16
|
constructor(dialogRef: MatDialogRef<GioPolicyStudioStepEditDialogComponent, GioPolicyStudioStepEditDialogResult>, flowDialogData: GioPolicyStudioStepEditDialogData);
|
|
15
17
|
onSave(): void;
|
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<GioPolicyStudioStepEditDialogComponent, never>;
|
|
@@ -3,18 +3,20 @@ import { FormGroup } from '@angular/forms';
|
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { GioJsonSchema } from '@gravitee/ui-particles-angular';
|
|
5
5
|
import { GioPolicyStudioService } from '../../gio-policy-studio.service';
|
|
6
|
-
import { Policy, Step } from '../../models';
|
|
6
|
+
import { ExecutionPhase, Policy, Step } from '../../models';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class GioPolicyStudioStepFormComponent implements OnChanges, OnInit, OnDestroy {
|
|
9
9
|
private readonly policyStudioService;
|
|
10
10
|
step?: Step;
|
|
11
11
|
policy: Policy;
|
|
12
|
+
phase: ExecutionPhase;
|
|
12
13
|
stepChange: EventEmitter<Step>;
|
|
13
14
|
isValid: EventEmitter<boolean>;
|
|
14
15
|
policySchema$?: Observable<GioJsonSchema | null | undefined>;
|
|
15
16
|
policyDocumentation$?: Observable<string>;
|
|
16
17
|
stepForm?: FormGroup;
|
|
17
18
|
private unsubscribe$;
|
|
19
|
+
isMessagePhase: boolean;
|
|
18
20
|
constructor(policyStudioService: GioPolicyStudioService);
|
|
19
21
|
ngOnChanges(changes: SimpleChanges): void;
|
|
20
22
|
ngOnInit(): void;
|
|
@@ -23,5 +25,5 @@ export declare class GioPolicyStudioStepFormComponent implements OnChanges, OnIn
|
|
|
23
25
|
onJsonSchemaReady(isReady: boolean): void;
|
|
24
26
|
emitStepChange(): void;
|
|
25
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<GioPolicyStudioStepFormComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GioPolicyStudioStepFormComponent, "gio-ps-step-form", never, { "step": "step"; "policy": "policy"; }, { "stepChange": "stepChange"; "isValid": "isValid"; }, never, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GioPolicyStudioStepFormComponent, "gio-ps-step-form", never, { "step": "step"; "policy": "policy"; "phase": "phase"; }, { "stepChange": "stepChange"; "isValid": "isValid"; }, never, never>;
|
|
27
29
|
}
|