@gravitee/ui-policy-studio-angular 12.20.0 → 12.21.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.
@@ -13,7 +13,7 @@ export declare class GioPolicyStudioDetailsPhaseStepComponent implements OnChang
13
13
  disabled: EventEmitter<void>;
14
14
  protected genericPolicy?: GenericPolicy;
15
15
  protected policyNotFound: false | 'SHARED_POLICY_GROUP' | 'POLICY';
16
- protected policyIcon?: string;
16
+ protected get getPrerequisiteMessage(): string | undefined;
17
17
  constructor(matDialog: MatDialog);
18
18
  ngOnChanges(changes: SimpleChanges): void;
19
19
  onEditOrView(): void;
@@ -15,6 +15,7 @@ export declare class GioPolicyStudioStepFormComponent implements OnChanges, OnIn
15
15
  isValid: EventEmitter<boolean>;
16
16
  policySchema$?: Observable<GioJsonSchema | null | undefined>;
17
17
  policyDocumentation$?: Observable<string>;
18
+ infoBanner?: string;
18
19
  stepForm?: UntypedFormGroup;
19
20
  context?: GioJsonSchemaContext;
20
21
  private unsubscribe$;
@@ -5,6 +5,7 @@ export type SharedPolicyGroupPolicy = {
5
5
  policyId: string;
6
6
  name: string;
7
7
  description?: string;
8
+ prerequisiteMessage?: string;
8
9
  apiType: ApiType;
9
10
  phase: ExecutionPhase;
10
11
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-policy-studio-angular",
3
- "version": "12.20.0",
3
+ "version": "12.21.0",
4
4
  "description": "Gravitee.io - UI Policy Studio Angular",
5
5
  "repository": {
6
6
  "type": "git",
@@ -11,6 +11,7 @@ export declare class GioPolicyStudioDetailsPhaseStepHarness extends ComponentHar
11
11
  static with(options?: GioPolicyStudioDetailsPhaseStepHarnessFilters): HarnessPredicate<GioPolicyStudioDetailsPhaseStepHarness>;
12
12
  getName(): Promise<string>;
13
13
  getDescription(): Promise<string | undefined>;
14
+ getInfoMessage(): Promise<string | undefined>;
14
15
  clickOnEdit(): Promise<void>;
15
16
  clickOnDelete(): Promise<void>;
16
17
  clickOnDisableEnable(): Promise<void>;
@@ -5,6 +5,7 @@ export type SharedPolicyGroupPolicy = {
5
5
  policyId: string;
6
6
  name: string;
7
7
  description?: string;
8
+ prerequisiteMessage?: string;
8
9
  apiType: ApiType;
9
10
  phase: ExecutionPhase;
10
11
  };