Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/cjs/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ export type RumActionEvent = CommonProperties & ViewContainerSchema & {
* CSS selector path of the target element
*/
readonly selector?: string;
/**
* Selector data based on the click event composed path
*/
readonly composed_path_selector?: string;
/**
* Width of the target element (in pixels)
*/
Expand Down
4 changes: 4 additions & 0 deletions lib/esm/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ export type RumActionEvent = CommonProperties & ViewContainerSchema & {
* CSS selector path of the target element
*/
readonly selector?: string;
/**
* Selector data based on the click event composed path
*/
readonly composed_path_selector?: string;
/**
* Width of the target element (in pixels)
*/
Expand Down
5 changes: 5 additions & 0 deletions schemas/rum/action-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,11 @@
"description": "CSS selector path of the target element",
"readOnly": true
},
"composed_path_selector": {
"type": "string",
"description": "Selector data based on the click event composed path",
"readOnly": true
},
"width": {
"type": "integer",
"description": "Width of the target element (in pixels)",
Expand Down
Loading