-
Notifications
You must be signed in to change notification settings - Fork 488
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(mixpanel): add formFieldTypes to diagram closed event
Closes #3132
- Loading branch information
Niklas Kiefer
committed
Nov 2, 2023
1 parent
81c6b7c
commit 5b762e2
Showing
4 changed files
with
214 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
87 changes: 87 additions & 0 deletions
87
client/src/plugins/user-journey-statistics/event-handlers/__tests__/fixtures/nested.form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
{ | ||
"components": [ | ||
{ | ||
"key": "text_root", | ||
"type": "textfield" | ||
}, | ||
{ | ||
"alt": "=alt_root", | ||
"type": "image" | ||
}, | ||
{ | ||
"label": "flat group", | ||
"path": "", | ||
"type": "group", | ||
"components": [ | ||
{ | ||
"key": "text_flat", | ||
"type": "textfield" | ||
}, | ||
{ | ||
"alt": "=alt_flat", | ||
"type": "image" | ||
} | ||
] | ||
}, | ||
{ | ||
"label": "nested group", | ||
"path": "", | ||
"type": "group", | ||
"components": [ | ||
{ | ||
"label": "nested group", | ||
"path": "", | ||
"type": "group", | ||
"components": [ | ||
{ | ||
"key": "text_nested", | ||
"type": "textfield" | ||
}, | ||
{ | ||
"alt": "=alt_nested", | ||
"type": "image" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"label": "pathed group", | ||
"path": "pathed", | ||
"type": "group", | ||
"components": [ | ||
{ | ||
"key": "text_pathed", | ||
"type": "textfield" | ||
}, | ||
{ | ||
"alt": "=alt_pathed", | ||
"type": "image" | ||
} | ||
] | ||
}, | ||
{ | ||
"label": "separated path group", | ||
"path": "separated.path", | ||
"type": "group", | ||
"components": [ | ||
{ | ||
"key": "text_separated", | ||
"type": "textfield" | ||
}, | ||
{ | ||
"alt": "=alt_separated", | ||
"type": "image" | ||
} | ||
] | ||
}, | ||
{ | ||
"label": "separated key textfield", | ||
"key": "separated2.key", | ||
"type": "textfield" | ||
} | ||
], | ||
"type": "default", | ||
"executionPlatform": "Camunda Cloud", | ||
"executionPlatformVersion": "8.4" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters