libs/ngx-pfe/pfe-actions/update-state-values/update-state-values.model.ts
No results matching.
Properties |
|
| stateUpdates |
stateUpdates:
|
Type : StateUpdates[]
|
| type |
type:
|
Type : typeof PfeUpdateStateValuesType
|
|
This action provides the same functionality as the state updates. The functionality is closer explained in the "Update State from Config" section in the documentation |
| break |
break:
|
Type : boolean
|
| Optional |
|
If break is "true" and the action was executed (that means, no conditions or conditions returns true) The flow will be stopped and the next actions will not be executed |
| conditions |
conditions:
|
Type : Conditions
|
| Optional |
|
A list of conditions under which the actions are executed |
| globalConfigId |
globalConfigId:
|
Type : string
|
| Optional |
|
Only valid on the navigation. Will spread the actions. |
import { PfeBaseActionConfig } from '../pfe-actions.model';
import { StateUpdates } from './../../models/navigation-config.model';
export const PfeUpdateStateValuesType = 'PFE_UPDATE_STATE_VALUES';
export interface PfeUpdateStateValuesActionConfig extends PfeBaseActionConfig {
/**
* This action provides the same functionality as the state updates.
* The functionality is closer explained in the "Update State from Config" section in the documentation
*/
type: typeof PfeUpdateStateValuesType;
stateUpdates: StateUpdates[];
}