@gravitee/ui-policy-studio-angular 7.20.0 → 7.21.0-improve-btn-d6b8d6c
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/flows-menu/gio-ps-flows-menu.component.mjs +11 -3
- package/esm2020/lib/components/step-form/gio-ps-step-form.component.mjs +5 -3
- package/esm2020/lib/gio-policy-studio.component.mjs +2 -2
- package/esm2020/testing/lib/components/flow-details-phase/gio-ps-flow-details-phase.harness.mjs +3 -1
- package/esm2020/testing/lib/components/flows-menu/gio-ps-flows-menu.harness.mjs +3 -1
- package/esm2020/testing/lib/components/step-form/gio-ps-step-form.harness.mjs +6 -1
- package/esm2020/testing/lib/models/flow/Flow.fixture.mjs +41 -1
- package/fesm2015/gravitee-ui-policy-studio-angular-testing.mjs +42 -2
- package/fesm2015/gravitee-ui-policy-studio-angular-testing.mjs.map +1 -1
- package/fesm2015/gravitee-ui-policy-studio-angular.mjs +24 -15
- package/fesm2015/gravitee-ui-policy-studio-angular.mjs.map +1 -1
- package/fesm2020/gravitee-ui-policy-studio-angular-testing.mjs +50 -1
- package/fesm2020/gravitee-ui-policy-studio-angular-testing.mjs.map +1 -1
- package/fesm2020/gravitee-ui-policy-studio-angular.mjs +18 -8
- package/fesm2020/gravitee-ui-policy-studio-angular.mjs.map +1 -1
- package/lib/components/flows-menu/gio-ps-flows-menu.component.d.ts +1 -0
- package/package.json +1 -1
- package/testing/lib/components/flow-details-phase/gio-ps-flow-details-phase.harness.d.ts +1 -0
- package/testing/lib/components/flows-menu/gio-ps-flows-menu.harness.d.ts +1 -0
- package/testing/lib/components/step-form/gio-ps-step-form.harness.d.ts +2 -0
- package/testing/lib/models/flow/Flow.fixture.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { ComponentHarness, LocatorFactory } from '@angular/cdk/testing';
|
|
2
2
|
export declare type StepForm = {
|
|
3
3
|
description?: string;
|
|
4
|
+
condition?: string;
|
|
4
5
|
waitForPolicyFormCompletionCb?: (locator: LocatorFactory) => Promise<void>;
|
|
5
6
|
};
|
|
6
7
|
export declare class GioPolicyStudioStepFormHarness extends ComponentHarness {
|
|
7
8
|
static hostSelector: string;
|
|
8
9
|
private getDescriptionInput;
|
|
10
|
+
private getConditionInput;
|
|
9
11
|
setStepForm(stepForm: StepForm): Promise<void>;
|
|
10
12
|
getStepFormValue(): Promise<{
|
|
11
13
|
description?: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { Flow } from './Flow';
|
|
2
2
|
export declare function fakeChannelFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flow)): Flow;
|
|
3
|
+
export declare function fakeConditionedChannelFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flow)): Flow;
|
|
3
4
|
export declare function fakeHttpFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flow)): Flow;
|
|
5
|
+
export declare function fakeConditionedHttpFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flow)): Flow;
|