forked from salesforce/sfdx-lwc-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflowSupport.js
More file actions
41 lines (36 loc) · 1.41 KB
/
flowSupport.js
File metadata and controls
41 lines (36 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* Copyright (c) 2025, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/
export const FlowAttributeChangeEventName = 'lightning__flowattributechange';
export const FlowNavigationBackEventName = 'lightning__flownavigationback';
export const FlowNavigationNextEventName = 'lightning__flownavigationnext';
export const FlowNavigationPauseEventName = 'lightning__flownavigationpause';
export const FlowNavigationFinishEventName = 'lightning__flownavigationfinish';
export class FlowAttributeChangeEvent extends CustomEvent {
constructor() {
super(FlowAttributeChangeEventName, { bubbles: true, composed: true });
}
}
export class FlowNavigationBackEvent extends CustomEvent {
constructor() {
super(FlowNavigationBackEventName, { bubbles: true, composed: true });
}
}
export class FlowNavigationNextEvent extends CustomEvent {
constructor() {
super(FlowNavigationNextEventName, { bubbles: true, composed: true });
}
}
export class FlowNavigationPauseEvent extends CustomEvent {
constructor() {
super(FlowNavigationPauseEventName, { bubbles: true, composed: true });
}
}
export class FlowNavigationFinishEvent extends CustomEvent {
constructor() {
super(FlowNavigationFinishEventName, { bubbles: true, composed: true });
}
}