@jay-framework/aiditor 0.19.6 → 0.20.0

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.
Files changed (28) hide show
  1. package/dist/actions/cancel-agent-task.jay-action +9 -0
  2. package/dist/actions/cancel-agent-task.jay-action.d.ts +8 -0
  3. package/dist/actions/check-aiditor-publish.jay-action +7 -0
  4. package/dist/actions/check-aiditor-publish.jay-action.d.ts +5 -0
  5. package/dist/actions/get-contract-inspector-tags.jay-action +9 -0
  6. package/dist/actions/get-contract-inspector-tags.jay-action.d.ts +6 -0
  7. package/dist/actions/get-page-assets.jay-action +10 -0
  8. package/dist/actions/get-page-assets.jay-action.d.ts +7 -0
  9. package/dist/actions/get-page-meta.jay-action +9 -0
  10. package/dist/actions/get-page-meta.jay-action.d.ts +6 -0
  11. package/dist/actions/run-aiditor-publish.jay-action +7 -0
  12. package/dist/actions/run-aiditor-publish.jay-action.d.ts +5 -0
  13. package/dist/actions/save-page-assets.jay-action +8 -0
  14. package/dist/actions/save-page-assets.jay-action.d.ts +5 -0
  15. package/dist/actions/save-page-meta.jay-action +8 -0
  16. package/dist/actions/save-page-meta.jay-action.d.ts +5 -0
  17. package/dist/actions/sync-detected-page-assets.jay-action +12 -0
  18. package/dist/actions/sync-detected-page-assets.jay-action.d.ts +10 -0
  19. package/dist/agent-kit-template/plugin/aiditor-add-menu.md +24 -0
  20. package/dist/index.client.d.ts +451 -210
  21. package/dist/index.client.js +9364 -1552
  22. package/dist/index.d.ts +176 -4
  23. package/dist/index.js +974 -86
  24. package/dist/pages/aiditor/page.css +2272 -594
  25. package/dist/pages/aiditor/page.jay-html +4310 -1374
  26. package/dist/pages/aiditor/page.jay-html.d.ts +1013 -0
  27. package/package.json +20 -7
  28. package/plugin.yaml +18 -0
@@ -4,11 +4,13 @@ import * as _jay_framework_component from '@jay-framework/component';
4
4
  import { HTMLElementProxy, HTMLElementCollectionProxy } from '@jay-framework/runtime';
5
5
 
6
6
  interface ChunkOfPageViewState {
7
+ id: string,
7
8
  text: string,
8
9
  cssClass: string,
9
10
  filePath: string,
10
11
  toolName: string,
11
- showUserPrefix: boolean
12
+ showUserPrefix: boolean,
13
+ isDivider: boolean
12
14
  }
13
15
 
14
16
  interface PageSelectOptionOfPageViewState {
@@ -16,15 +18,173 @@ interface PageSelectOptionOfPageViewState {
16
18
  label: string
17
19
  }
18
20
 
19
- interface PreviewPathOptionOfPageViewState {
20
- path: string
21
+ interface FilteredPageRouteRowOfPageViewState {
22
+ url: string,
23
+ label: string,
24
+ isSelected: boolean,
25
+ checkGlyph: string,
26
+ cssClass: string
27
+ }
28
+
29
+ interface InstanceSwitcherRowOfPageViewState {
30
+ path: string,
31
+ label: string,
32
+ isSelected: boolean,
33
+ cssClass: string
34
+ }
35
+
36
+ interface FilteredSnapshotRowOfPageViewState {
37
+ value: string,
38
+ label: string,
39
+ isSelected: boolean,
40
+ checkGlyph: string,
41
+ cssClass: string
42
+ }
43
+
44
+ interface AddMenuPickerLeftNavRowOfPageViewState {
45
+ rowKey: string,
46
+ navKey: string,
47
+ label: string,
48
+ itemCount: number,
49
+ selectedCount: number,
50
+ showSelectedCount: boolean,
51
+ isSelected: boolean,
52
+ cssClass: string
53
+ }
54
+
55
+ interface AddMenuPickerSubCategoryFilterRowOfPageViewState {
56
+ rowKey: string,
57
+ navKey: string,
58
+ label: string,
59
+ itemCount: number,
60
+ selectedCount: number,
61
+ showCount: boolean,
62
+ showSelectedCount: boolean,
63
+ showSubCategoryCount: boolean,
64
+ subCategoryCountLabel: string,
65
+ isSelected: boolean,
66
+ cssClass: string
67
+ }
68
+
69
+ interface AddMenuPickerBrowseRowOfPageViewState {
70
+ rowKey: string,
71
+ isSectionHeader: boolean,
72
+ label: string,
73
+ itemId: string,
74
+ isPickable: boolean,
75
+ showPickable: boolean,
76
+ showBrowseOnly: boolean,
77
+ isItemSelected: boolean,
78
+ cardCssClass: string,
79
+ showThumbnail: boolean,
80
+ showInfoIcon: boolean,
81
+ thumbnailUrl: string,
82
+ isAnimatedThumbnail: boolean,
83
+ thumbCssClass: string
84
+ }
85
+
86
+ interface PageInfoComponentRowOfPageViewState {
87
+ rowKey: string,
88
+ detectedKey: string,
89
+ title: string,
90
+ pluginName: string,
91
+ contractName: string,
92
+ componentKey: string,
93
+ showDuplicateBadge: boolean,
94
+ showComponentKey: boolean,
95
+ showContractSubtitle: boolean,
96
+ contractSubtitle: string,
97
+ isSelected: boolean,
98
+ rowClass: string
99
+ }
100
+
101
+ interface PageInfoMissingParamRowOfPageViewState {
102
+ rowKey: string,
103
+ name: string,
104
+ chipLabel: string
105
+ }
106
+
107
+ interface PageInfoRouteParamRowOfPageViewState {
108
+ rowKey: string,
109
+ name: string
110
+ }
111
+
112
+ interface PageInfoInspectorTagRowOfPageViewState {
113
+ rowKey: string,
114
+ tagPath: string,
115
+ tagKind: string,
116
+ tagDescription: string,
117
+ usedInTemplate: boolean,
118
+ tagUsageClass: string,
119
+ showTagSamples: boolean,
120
+ tagSampleText: string,
121
+ showTagBound: boolean,
122
+ showTagAvailable: boolean
123
+ }
124
+
125
+ interface AddMenuDockLeftNavRowOfPageViewState {
126
+ rowKey: string,
127
+ navKey: string,
128
+ label: string,
129
+ itemCount: number,
130
+ selectedCount: number,
131
+ showSelectedCount: boolean,
132
+ isSelected: boolean,
133
+ cssClass: string
134
+ }
135
+
136
+ interface AddMenuDockSubCategoryFilterRowOfPageViewState {
137
+ rowKey: string,
138
+ navKey: string,
139
+ label: string,
140
+ itemCount: number,
141
+ selectedCount: number,
142
+ showCount: boolean,
143
+ showSelectedCount: boolean,
144
+ showSubCategoryCount: boolean,
145
+ subCategoryCountLabel: string,
146
+ isSelected: boolean,
147
+ cssClass: string
148
+ }
149
+
150
+ interface AddMenuDockBrowseRowOfPageViewState {
151
+ rowKey: string,
152
+ isSectionHeader: boolean,
153
+ label: string,
154
+ itemId: string,
155
+ isPickable: boolean,
156
+ showPickable: boolean,
157
+ showBrowseOnly: boolean,
158
+ isItemSelected: boolean,
159
+ cardCssClass: string,
160
+ showThumbnail: boolean,
161
+ showInfoIcon: boolean,
162
+ thumbnailUrl: string,
163
+ isAnimatedThumbnail: boolean,
164
+ thumbCssClass: string
165
+ }
166
+
167
+ interface AssetMentionRowOfPageViewState {
168
+ rowKey: string,
169
+ rowIndex: number,
170
+ rowKind: string,
171
+ title: string,
172
+ subtitle: string,
173
+ thumbnailUrl: string,
174
+ showThumbnail: boolean,
175
+ showInfoIcon: boolean,
176
+ showAtIcon: boolean,
177
+ showNavIcon: boolean,
178
+ cssClass: string
21
179
  }
22
180
 
23
181
  interface VisualPointDisplayItemOfPageViewState {
24
182
  id: string,
25
183
  leftPct: number,
26
184
  topPct: number,
27
- indexLabel: string
185
+ indexLabel: string,
186
+ markerOpen: boolean,
187
+ markerEditMode: boolean
28
188
  }
29
189
 
30
190
  interface VisualAreaDisplayItemOfPageViewState {
@@ -33,22 +193,9 @@ interface VisualAreaDisplayItemOfPageViewState {
33
193
  topPct: number,
34
194
  widthPct: number,
35
195
  heightPct: number,
36
- indexLabel: string
37
- }
38
-
39
- interface VisualArrowDisplayItemOfPageViewState {
40
- id: string,
41
- x1Pct: number,
42
- y1Pct: number,
43
- x2Pct: number,
44
- y2Pct: number
45
- }
46
-
47
- interface VisualArrowPinItemOfPageViewState {
48
- id: string,
49
- leftPct: number,
50
- topPct: number,
51
- indexLabel: string
196
+ indexLabel: string,
197
+ markerOpen: boolean,
198
+ markerEditMode: boolean
52
199
  }
53
200
 
54
201
  interface AttachmentChipOfVisualAnnotationRowOfPageViewState {
@@ -62,20 +209,11 @@ interface MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState {
62
209
  rowKey: string,
63
210
  itemId: string,
64
211
  title: string,
65
- subtitle: string
66
- }
67
-
68
- declare enum KindOfMarkerPickerNavRowOfVisualAnnotationRowOfPageViewState {
69
- category,
70
- subCategory,
71
- item
72
- }
73
-
74
- interface MarkerPickerNavRowOfVisualAnnotationRowOfPageViewState {
75
- rowKey: string,
76
- label: string,
77
- value: string,
78
- kind: KindOfMarkerPickerNavRowOfVisualAnnotationRowOfPageViewState
212
+ subtitle: string,
213
+ tooltip: string,
214
+ showThumbnail: boolean,
215
+ showInfoIcon: boolean,
216
+ thumbnailUrl: string
79
217
  }
80
218
 
81
219
  interface CrAddMenuRouteParamRowOfVisualAnnotationRowOfPageViewState {
@@ -87,7 +225,8 @@ interface VisualAnnotationRowOfPageViewState {
87
225
  id: string,
88
226
  kindLabel: string,
89
227
  instruction: string,
90
- runDisabled: boolean,
228
+ showPopover: boolean,
229
+ quickSendDisabled: boolean,
91
230
  leftPct: number,
92
231
  topPct: number,
93
232
  popoverFlipX: boolean,
@@ -98,11 +237,6 @@ interface VisualAnnotationRowOfPageViewState {
98
237
  showMarkerAddMenuChips: boolean,
99
238
  showMarkerAddMenuEmptyHint: boolean,
100
239
  markerAddMenuChips: Array<MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState>,
101
- addMenuSelectedCategory: string,
102
- showAddMenuItemPicker: boolean,
103
- markerPickerNavRows: Array<MarkerPickerNavRowOfVisualAnnotationRowOfPageViewState>,
104
- showMarkerPickerLoading: boolean,
105
- showMarkerPickerCatalogEmpty: boolean,
106
240
  crAddMenuParamCollisionWarning: string,
107
241
  crAddMenuRouteParamHint: string,
108
242
  showCrAddMenuRouteParams: boolean,
@@ -142,7 +276,9 @@ interface VideoPointDisplayItemOfPageViewState {
142
276
  id: string,
143
277
  leftPct: number,
144
278
  topPct: number,
145
- indexLabel: string
279
+ indexLabel: string,
280
+ markerOpen: boolean,
281
+ markerEditMode: boolean
146
282
  }
147
283
 
148
284
  interface VideoAreaDisplayItemOfPageViewState {
@@ -151,22 +287,9 @@ interface VideoAreaDisplayItemOfPageViewState {
151
287
  topPct: number,
152
288
  widthPct: number,
153
289
  heightPct: number,
154
- indexLabel: string
155
- }
156
-
157
- interface VideoArrowDisplayItemOfPageViewState {
158
- id: string,
159
- x1Pct: number,
160
- y1Pct: number,
161
- x2Pct: number,
162
- y2Pct: number
163
- }
164
-
165
- interface VideoArrowPinItemOfPageViewState {
166
- id: string,
167
- leftPct: number,
168
- topPct: number,
169
- indexLabel: string
290
+ indexLabel: string,
291
+ markerOpen: boolean,
292
+ markerEditMode: boolean
170
293
  }
171
294
 
172
295
  interface AttachmentChipOfVideoAnnotationRowOfPageViewState {
@@ -180,20 +303,11 @@ interface MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState {
180
303
  rowKey: string,
181
304
  itemId: string,
182
305
  title: string,
183
- subtitle: string
184
- }
185
-
186
- declare enum KindOfMarkerPickerNavRowOfVideoAnnotationRowOfPageViewState {
187
- category,
188
- subCategory,
189
- item
190
- }
191
-
192
- interface MarkerPickerNavRowOfVideoAnnotationRowOfPageViewState {
193
- rowKey: string,
194
- label: string,
195
- value: string,
196
- kind: KindOfMarkerPickerNavRowOfVideoAnnotationRowOfPageViewState
306
+ subtitle: string,
307
+ tooltip: string,
308
+ showThumbnail: boolean,
309
+ showInfoIcon: boolean,
310
+ thumbnailUrl: string
197
311
  }
198
312
 
199
313
  interface CrAddMenuRouteParamRowOfVideoAnnotationRowOfPageViewState {
@@ -205,7 +319,9 @@ interface VideoAnnotationRowOfPageViewState {
205
319
  id: string,
206
320
  kindLabel: string,
207
321
  instruction: string,
322
+ showPopover: boolean,
208
323
  runDisabled: boolean,
324
+ quickSendDisabled: boolean,
209
325
  leftPct: number,
210
326
  topPct: number,
211
327
  popoverFlipX: boolean,
@@ -216,11 +332,6 @@ interface VideoAnnotationRowOfPageViewState {
216
332
  showMarkerAddMenuChips: boolean,
217
333
  showMarkerAddMenuEmptyHint: boolean,
218
334
  markerAddMenuChips: Array<MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState>,
219
- addMenuSelectedCategory: string,
220
- showAddMenuItemPicker: boolean,
221
- markerPickerNavRows: Array<MarkerPickerNavRowOfVideoAnnotationRowOfPageViewState>,
222
- showMarkerPickerLoading: boolean,
223
- showMarkerPickerCatalogEmpty: boolean,
224
335
  crAddMenuParamCollisionWarning: string,
225
336
  crAddMenuRouteParamHint: string,
226
337
  showCrAddMenuRouteParams: boolean,
@@ -242,7 +353,8 @@ interface SnapshotPointDisplayItemOfPageViewState {
242
353
  id: string,
243
354
  leftPct: number,
244
355
  topPct: number,
245
- indexLabel: string
356
+ indexLabel: string,
357
+ markerEditMode: boolean
246
358
  }
247
359
 
248
360
  interface SnapshotAreaDisplayItemOfPageViewState {
@@ -251,22 +363,8 @@ interface SnapshotAreaDisplayItemOfPageViewState {
251
363
  topPct: number,
252
364
  widthPct: number,
253
365
  heightPct: number,
254
- indexLabel: string
255
- }
256
-
257
- interface SnapshotArrowDisplayItemOfPageViewState {
258
- id: string,
259
- x1Pct: number,
260
- y1Pct: number,
261
- x2Pct: number,
262
- y2Pct: number
263
- }
264
-
265
- interface SnapshotArrowPinItemOfPageViewState {
266
- id: string,
267
- leftPct: number,
268
- topPct: number,
269
- indexLabel: string
366
+ indexLabel: string,
367
+ markerEditMode: boolean
270
368
  }
271
369
 
272
370
  interface AttachmentChipOfSnapshotAnnotationItemOfPageViewState {
@@ -280,20 +378,11 @@ interface MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState {
280
378
  rowKey: string,
281
379
  itemId: string,
282
380
  title: string,
283
- subtitle: string
284
- }
285
-
286
- declare enum KindOfMarkerPickerNavRowOfSnapshotAnnotationItemOfPageViewState {
287
- category,
288
- subCategory,
289
- item
290
- }
291
-
292
- interface MarkerPickerNavRowOfSnapshotAnnotationItemOfPageViewState {
293
- rowKey: string,
294
- label: string,
295
- value: string,
296
- kind: KindOfMarkerPickerNavRowOfSnapshotAnnotationItemOfPageViewState
381
+ subtitle: string,
382
+ tooltip: string,
383
+ showThumbnail: boolean,
384
+ showInfoIcon: boolean,
385
+ thumbnailUrl: string
297
386
  }
298
387
 
299
388
  interface CrAddMenuRouteParamRowOfSnapshotAnnotationItemOfPageViewState {
@@ -306,6 +395,7 @@ interface SnapshotAnnotationItemOfPageViewState {
306
395
  indexLabel: string,
307
396
  kindLabel: string,
308
397
  instruction: string,
398
+ quickSendDisabled: boolean,
309
399
  kind: string,
310
400
  leftPct: number,
311
401
  topPct: number,
@@ -317,11 +407,6 @@ interface SnapshotAnnotationItemOfPageViewState {
317
407
  showMarkerAddMenuChips: boolean,
318
408
  showMarkerAddMenuEmptyHint: boolean,
319
409
  markerAddMenuChips: Array<MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState>,
320
- addMenuSelectedCategory: string,
321
- showAddMenuItemPicker: boolean,
322
- markerPickerNavRows: Array<MarkerPickerNavRowOfSnapshotAnnotationItemOfPageViewState>,
323
- showMarkerPickerLoading: boolean,
324
- showMarkerPickerCatalogEmpty: boolean,
325
410
  crAddMenuParamCollisionWarning: string,
326
411
  crAddMenuRouteParamHint: string,
327
412
  showCrAddMenuRouteParams: boolean,
@@ -367,46 +452,12 @@ interface ProjectSettingsInstalledRowOfPageViewState {
367
452
  updateButtonDisabled: boolean
368
453
  }
369
454
 
370
- interface AddMenuChipRowOfPageViewState {
371
- rowKey: string,
372
- itemId: string,
373
- title: string,
374
- subtitle: string,
375
- annotationId?: string
376
- }
377
-
378
- declare enum KindOfAddMenuNavRowOfPageViewState {
379
- category,
380
- subCategory,
381
- item
382
- }
383
-
384
- interface AddMenuNavRowOfPageViewState {
385
- rowKey: string,
386
- label: string,
387
- value: string,
388
- kind: KindOfAddMenuNavRowOfPageViewState
389
- }
390
-
391
- declare enum KindOfMarkerAddMenuNavRowOfPageViewState {
392
- category,
393
- subCategory,
394
- item
395
- }
396
-
397
- interface MarkerAddMenuNavRowOfPageViewState {
398
- rowKey: string,
399
- label: string,
400
- value: string,
401
- kind: KindOfMarkerAddMenuNavRowOfPageViewState
402
- }
403
-
404
- interface CrAddMenuRouteParamRowOfPageViewState {
455
+ interface AddMenuRouteParamRowOfPageViewState {
405
456
  rowKey: string,
406
457
  name: string
407
458
  }
408
459
 
409
- interface AddMenuRouteParamRowOfPageViewState {
460
+ interface CrAddMenuRouteParamRowOfPageViewState {
410
461
  rowKey: string,
411
462
  name: string
412
463
  }
@@ -438,15 +489,146 @@ interface PageViewState {
438
489
  hasChunks: boolean,
439
490
  outputEmpty: boolean,
440
491
  pageSelectOptions: Array<PageSelectOptionOfPageViewState>,
441
- selectedRouteSelectValue: string,
442
492
  hasPages: boolean,
493
+ showPagesPanel: boolean,
494
+ pageNavBtnClass: string,
495
+ pageNavBtnLabel: string,
496
+ pagesPanelSearchQuery: string,
497
+ filteredPageRouteRows: Array<FilteredPageRouteRowOfPageViewState>,
498
+ showPagesPanelEmptySearch: boolean,
499
+ showInstanceSwitcher: boolean,
500
+ showInstanceSwitcherMenu: boolean,
501
+ instanceSwitcherRows: Array<InstanceSwitcherRowOfPageViewState>,
502
+ instanceSwitcherCurrentLabel: string,
503
+ instanceSwitcherCountLabel: string,
504
+ instanceSwitcherTriggerClass: string,
505
+ instanceSwitcherLeft: string,
506
+ instanceSwitcherTop: string,
507
+ instanceSwitcherTransform: string,
508
+ instanceSwitcherMenuOpensAbove: boolean,
509
+ showSnapshotNav: boolean,
510
+ showSnowflakeFeatures: boolean,
511
+ showSnapshotPanel: boolean,
512
+ snapshotNavBtnClass: string,
513
+ snapshotNavBtnLabel: string,
514
+ snapshotPanelSearchQuery: string,
515
+ filteredSnapshotRows: Array<FilteredSnapshotRowOfPageViewState>,
516
+ showSnapshotPanelEmptySearch: boolean,
517
+ showAddMenuPickerModal: boolean,
518
+ showAddMenuPickerDismissConfirm: boolean,
519
+ addMenuPickerDismissConfirmMessage: string,
520
+ showAddMenuPickerLoading: boolean,
521
+ showAddMenuPickerEmpty: boolean,
522
+ showAddMenuPickerBrowse: boolean,
523
+ showAddMenuPickerBrowseLayout: boolean,
524
+ showAddMenuPickerSearchMode: boolean,
525
+ showAddMenuPickerSearchBack: boolean,
526
+ showAddMenuPickerSearchClear: boolean,
527
+ showAddMenuPickerBrowseTitle: boolean,
528
+ showAddMenuPickerSearchSummary: boolean,
529
+ showAddMenuPickerSubCategoryFilters: boolean,
530
+ showAddMenuPickerSubCategoryScrollPrev: boolean,
531
+ showAddMenuPickerSubCategoryScrollNext: boolean,
532
+ showAddMenuPickerComponents: boolean,
533
+ showAddMenuPickerNoComponents: boolean,
534
+ showAddMenuPickerNoSearchResults: boolean,
535
+ showAddMenuPickerLoadMore: boolean,
536
+ addMenuPickerLoadMoreLabel: string,
537
+ showAddMenuPickerDone: boolean,
538
+ addMenuPickerDoneDisabled: boolean,
539
+ addMenuPickerDoneLabel: string,
540
+ addMenuPickerDialogClass: string,
541
+ addMenuPickerOverlayClass: string,
542
+ addMenuPickerHeaderTitle: string,
543
+ showAddMenuPickerHeaderBack: boolean,
544
+ addMenuPickerBrowseCategoryTitle: string,
545
+ addMenuPickerSearchSummary: string,
546
+ addMenuPickerSearchQuery: string,
547
+ addMenuPickerBrowseLayoutClass: string,
548
+ addMenuPickerLeftNavRows: Array<AddMenuPickerLeftNavRowOfPageViewState>,
549
+ addMenuPickerSubCategoryFilterRows: Array<AddMenuPickerSubCategoryFilterRowOfPageViewState>,
550
+ addMenuPickerBrowseRows: Array<AddMenuPickerBrowseRowOfPageViewState>,
551
+ showPageInfoPanel: boolean,
552
+ pageInfoPanelLeft: number,
553
+ pageInfoPanelTop: number,
554
+ addMenuDockLeft: number,
555
+ addMenuDockTop: number,
556
+ pageInfoComponentRows: Array<PageInfoComponentRowOfPageViewState>,
557
+ showPageInfoComponentsEmpty: boolean,
558
+ showPageInfoLoading: boolean,
559
+ showPageInfoComponentsLoading: boolean,
560
+ pageInfoDisplayRoute: string,
561
+ pageInfoDraftRoute: string,
562
+ pageInfoRouteFieldClass: string,
563
+ pageInfoRouteProblemTooltip: string,
564
+ showPageInfoRouteProblem: boolean,
565
+ showPageInfoRouteEditing: boolean,
566
+ showPageInfoRouteEditBtn: boolean,
567
+ showPageInfoRouteApproveBtn: boolean,
568
+ showPageInfoRouteCancelEditBtn: boolean,
569
+ showPageInfoRouteMissingParamChips: boolean,
570
+ pageInfoMissingParamRows: Array<PageInfoMissingParamRowOfPageViewState>,
571
+ showPageInfoRouteChangeConfirm: boolean,
572
+ pageInfoRouteChangeConfirmFrom: string,
573
+ pageInfoRouteChangeConfirmTo: string,
574
+ showPageInfoRouteMigration: boolean,
575
+ showPageInfoRouteParams: boolean,
576
+ pageInfoRouteParamRows: Array<PageInfoRouteParamRowOfPageViewState>,
577
+ pageInfoParamCollisionWarning: string,
578
+ pageInfoRouteParamHint: string,
579
+ pageInfoPlannedRoute: string,
580
+ showPageInfoRouteParamConfirm: boolean,
581
+ pageInfoPendingRouteParamTitle: string,
582
+ pageInfoDuplicateKeyWarning: string,
583
+ showPageInfoDuplicateWarning: boolean,
584
+ pageInfoRouteSectionClass: string,
585
+ showPageInfoMainView: boolean,
586
+ showPageInfoInspectorDetail: boolean,
587
+ showPageInfoHeaderBack: boolean,
588
+ pageInfoInspectorDetailTitle: string,
589
+ showPageInfoInspectorLoading: boolean,
590
+ showPageInfoInspectorNoContract: boolean,
591
+ showPageInfoInspectorHasTags: boolean,
592
+ showPageInfoInspectorError: boolean,
593
+ pageInfoInspectorError: string,
594
+ pageInfoInspectorTagRows: Array<PageInfoInspectorTagRowOfPageViewState>,
595
+ showAddMenuDock: boolean,
596
+ showAddMenuDockLoading: boolean,
597
+ showAddMenuDockEmpty: boolean,
598
+ showAddMenuDockBrowse: boolean,
599
+ addMenuDockSearchQuery: string,
600
+ showAddMenuDockBrowseLayout: boolean,
601
+ showAddMenuDockSubCategoryFilters: boolean,
602
+ addMenuDockBrowseCategoryTitle: string,
603
+ showAddMenuDockComponents: boolean,
604
+ showAddMenuDockLoadMore: boolean,
605
+ showAddMenuDockNoComponents: boolean,
606
+ showAddMenuDockNoSearchResults: boolean,
607
+ showAddMenuDockSearchBack: boolean,
608
+ showAddMenuDockSearchClear: boolean,
609
+ showAddMenuDockBrowseTitle: boolean,
610
+ showAddMenuDockSearchSummary: boolean,
611
+ addMenuDockBrowseLayoutClass: string,
612
+ addMenuDockLoadMoreLabel: string,
613
+ addMenuDockLeftNavRows: Array<AddMenuDockLeftNavRowOfPageViewState>,
614
+ addMenuDockSubCategoryFilterRows: Array<AddMenuDockSubCategoryFilterRowOfPageViewState>,
615
+ addMenuDockBrowseRows: Array<AddMenuDockBrowseRowOfPageViewState>,
616
+ showAddMenuDockSearchMode: boolean,
617
+ addMenuDockSearchSummary: string,
618
+ showAssetMentionPanel: boolean,
619
+ assetMentionLeft: number,
620
+ assetMentionTop: number,
621
+ assetMentionHeaderTitle: string,
622
+ showAssetMentionHeaderBack: boolean,
623
+ showAssetMentionSearchField: boolean,
624
+ assetMentionSearchQuery: string,
625
+ assetMentionRows: Array<AssetMentionRowOfPageViewState>,
626
+ showToastMessage: boolean,
627
+ toastMessage: string,
443
628
  isPreviewMode: boolean,
444
629
  previewUrlBar: string,
445
630
  previewLoading: boolean,
446
- paramsLoadingHint: string,
447
631
  previewError: string,
448
- showPathSelect: boolean,
449
- previewPathOptions: Array<PreviewPathOptionOfPageViewState>,
450
632
  selectedPreviewPath: string,
451
633
  showPreviewIframe: boolean,
452
634
  previewSrc: string,
@@ -456,6 +638,8 @@ interface PageViewState {
456
638
  bottomPanelClass: string,
457
639
  bottomPanelToggleGlyph: string,
458
640
  showBottomPanelRunning: boolean,
641
+ showAgentStopConfirm: boolean,
642
+ agentStopBtnClass: string,
459
643
  showFilePreview: boolean,
460
644
  filePreviewPath: string,
461
645
  filePreviewContent: string,
@@ -463,10 +647,14 @@ interface PageViewState {
463
647
  filePreviewImageSrc: string,
464
648
  filePreviewLoading: boolean,
465
649
  showVisualToolbar: boolean,
650
+ showClearMarkersConfirm: boolean,
651
+ clearMarkersConfirmText: string,
466
652
  visualToolNoneOn: boolean,
467
653
  visualToolPointOn: boolean,
468
654
  visualToolAreaOn: boolean,
469
- visualToolArrowOn: boolean,
655
+ visualMarkerToolsDisabled: boolean,
656
+ visualPointMarkerTooltip: string,
657
+ visualAreaMarkerTooltip: string,
470
658
  visualPointDisplayItems: Array<VisualPointDisplayItemOfPageViewState>,
471
659
  showVisualPointMarkers: boolean,
472
660
  visualAreaDisplayItems: Array<VisualAreaDisplayItemOfPageViewState>,
@@ -476,12 +664,6 @@ interface PageViewState {
476
664
  areaDraftWidthPct: number,
477
665
  areaDraftHeightPct: number,
478
666
  showAreaDraftRect: boolean,
479
- visualArrowDisplayItems: Array<VisualArrowDisplayItemOfPageViewState>,
480
- visualArrowPinItems: Array<VisualArrowPinItemOfPageViewState>,
481
- hasVisualArrowLines: boolean,
482
- showArrowPending: boolean,
483
- arrowPendingLeftPct: number,
484
- arrowPendingTopPct: number,
485
667
  visualAnnotationRows: Array<VisualAnnotationRowOfPageViewState>,
486
668
  recordingDraftUi: RecordingDraftUiOfPageViewState,
487
669
  recordingDraftAttachmentChips: Array<RecordingDraftAttachmentChipOfPageViewState>,
@@ -492,19 +674,21 @@ interface PageViewState {
492
674
  visualOverlayPointerNone: boolean,
493
675
  showVideoRecordUi: boolean,
494
676
  isVideoRecording: boolean,
495
- videoRecordLabel: string,
677
+ videoRecordTooltip: string,
496
678
  videoRecordDisabled: boolean,
679
+ showFreezeBtn: boolean,
497
680
  freezeDisabled: boolean,
681
+ sendToAgentDisabled: boolean,
682
+ sendToAgentTooltip: string,
498
683
  showVideoReviewModal: boolean,
684
+ showVideoReviewCloseConfirm: boolean,
499
685
  videoReviewPreparing: boolean,
500
686
  videoReviewReady: boolean,
501
687
  videoReviewError: boolean,
502
688
  videoReviewErrorText: string,
503
689
  videoReviewObjectUrl: string,
504
- videoModalToolNoneOn: boolean,
505
690
  videoModalToolPointOn: boolean,
506
691
  videoModalToolAreaOn: boolean,
507
- videoModalToolArrowOn: boolean,
508
692
  videoPointDisplayItems: Array<VideoPointDisplayItemOfPageViewState>,
509
693
  showVideoPointMarkers: boolean,
510
694
  videoAreaDisplayItems: Array<VideoAreaDisplayItemOfPageViewState>,
@@ -514,12 +698,6 @@ interface PageViewState {
514
698
  videoAreaDraftWidthPct: number,
515
699
  videoAreaDraftHeightPct: number,
516
700
  showVideoAreaDraftRect: boolean,
517
- videoArrowDisplayItems: Array<VideoArrowDisplayItemOfPageViewState>,
518
- videoArrowPinItems: Array<VideoArrowPinItemOfPageViewState>,
519
- hasVideoArrowLines: boolean,
520
- showVideoArrowPending: boolean,
521
- videoArrowPendingLeftPct: number,
522
- videoArrowPendingTopPct: number,
523
701
  videoAnnotationRows: Array<VideoAnnotationRowOfPageViewState>,
524
702
  showVideoAnnotationsPanel: boolean,
525
703
  videoModalOverlayPointerNone: boolean,
@@ -535,12 +713,12 @@ interface PageViewState {
535
713
  breakpointDesktopOn: boolean,
536
714
  breakpointTabletOn: boolean,
537
715
  breakpointMobileOn: boolean,
716
+ stageWidthPx: number,
538
717
  showSnapshotModal: boolean,
539
718
  snapshotImageSrc: string,
540
719
  snapshotToolNoneOn: boolean,
541
720
  snapshotToolPointOn: boolean,
542
721
  snapshotToolAreaOn: boolean,
543
- snapshotToolArrowOn: boolean,
544
722
  snapshotCanSubmit: boolean,
545
723
  snapshotShowDiscardConfirm: boolean,
546
724
  snapshotOverlayPointerNone: boolean,
@@ -553,17 +731,15 @@ interface PageViewState {
553
731
  snapshotAreaDraftWidthPct: number,
554
732
  snapshotAreaDraftHeightPct: number,
555
733
  showSnapshotAreaDraft: boolean,
556
- snapshotArrowDisplayItems: Array<SnapshotArrowDisplayItemOfPageViewState>,
557
- snapshotArrowPinItems: Array<SnapshotArrowPinItemOfPageViewState>,
558
- hasSnapshotArrowLines: boolean,
559
- showSnapshotArrowPending: boolean,
560
- snapshotArrowPendingLeftPct: number,
561
- snapshotArrowPendingTopPct: number,
562
734
  snapshotAnnotationItems: Array<SnapshotAnnotationItemOfPageViewState>,
563
735
  showSnapshotAnnotationsPanel: boolean,
564
736
  showSnapshotSubmitError: boolean,
565
737
  snapshotSubmitError: string,
566
738
  showAddPageComposer: boolean,
739
+ showAddPageContentTab: boolean,
740
+ showAddPageDesignTab: boolean,
741
+ addPageContentTabClass: string,
742
+ addPageDesignTabClass: string,
567
743
  addPageRoute: string,
568
744
  addPageContentMd: string,
569
745
  addPageDesignMd: string,
@@ -598,21 +774,12 @@ interface PageViewState {
598
774
  projectLocalPluginName: string,
599
775
  projectLocalPackageName: string,
600
776
  projectLocalPath: string,
601
- showAddMenuPanel: boolean,
602
- showAddMenuChips: boolean,
603
- addMenuChipRows: Array<AddMenuChipRowOfPageViewState>,
604
- showAddMenuEmptyHint: boolean,
605
- showAddMenuPopover: boolean,
606
- addMenuNavRows: Array<AddMenuNavRowOfPageViewState>,
607
- addMenuSelectedCategory: string,
608
- showMarkerAddMenuPopover: boolean,
609
- markerAddMenuPopoverLeftPct: number,
610
- markerAddMenuPopoverTopPct: number,
611
- markerAddMenuPickerAnnotationId: string,
612
- markerAddMenuNavRows: Array<MarkerAddMenuNavRowOfPageViewState>,
613
- markerAddMenuSelectedCategory: string,
614
- showMarkerAddMenuPickerLoading: boolean,
615
- showMarkerAddMenuPickerCatalogEmpty: boolean,
777
+ addMenuParamCollisionWarning: string,
778
+ addMenuRouteParamHint: string,
779
+ showAddMenuRouteParams: boolean,
780
+ addMenuRouteParamRows: Array<AddMenuRouteParamRowOfPageViewState>,
781
+ showAddMenuRouteParamConfirm: boolean,
782
+ addMenuPendingRouteParamTitle: string,
616
783
  crAddMenuParamCollisionWarning: string,
617
784
  crAddMenuRouteParamHint: string,
618
785
  showCrAddMenuRouteParams: boolean,
@@ -621,18 +788,17 @@ interface PageViewState {
621
788
  crPendingRouteParamTitle: string,
622
789
  showCrPlannedRoutePanel: boolean,
623
790
  crPlannedRoute: string,
624
- addMenuParamCollisionWarning: string,
625
- addMenuRouteParamHint: string,
626
- showAddMenuRouteParams: boolean,
627
- addMenuRouteParamRows: Array<AddMenuRouteParamRowOfPageViewState>,
628
- showAddMenuRouteParamConfirm: boolean,
629
- addMenuPendingRouteParamTitle: string,
630
791
  showAddPageResultBanner: boolean,
631
792
  addPageResultBannerClass: string,
632
793
  addPageResultBannerMessage: string,
633
794
  showAddPageRetry: boolean,
634
795
  showAddPageFixWithAiditor: boolean,
635
796
  showAddPageFromBriefBtn: boolean,
797
+ hasPublishScript: boolean,
798
+ publishDisabled: boolean,
799
+ publishTooltip: string,
800
+ publishBtnLabel: string,
801
+ isPublishing: boolean,
636
802
  showBriefFillPopover: boolean,
637
803
  briefFillContextNotes: string,
638
804
  briefFillPopoverError: string,
@@ -652,12 +818,24 @@ interface PageViewState {
652
818
 
653
819
  interface PageElementRefs {
654
820
  retryBootstrapBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
655
- pageRouteSelect: HTMLElementProxy<PageViewState, HTMLSelectElement>,
656
- previewPathSelect: HTMLElementProxy<PageViewState, HTMLSelectElement>,
657
- projectSettingsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
658
- addPageOpenBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
821
+ pageNavBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
822
+ snapshotNavBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
659
823
  addPageFromBriefBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
824
+ publishBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
825
+ pagesPanelCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
826
+ pagesPanelSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
827
+ pagesPanelDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
828
+ pagesPanelOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
829
+ snapshotPanelCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
830
+ snapshotPanelSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
831
+ snapshotPanelDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
832
+ snapshotPanelOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
833
+ harmonyStageAddBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
834
+ harmonyAddPageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
660
835
  visualAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
836
+ stageResizeLeft: HTMLElementProxy<PageViewState, HTMLDivElement>,
837
+ stageResizeRight: HTMLElementProxy<PageViewState, HTMLDivElement>,
838
+ harmonyAssetsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
661
839
  breakpointDesktopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
662
840
  breakpointTabletBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
663
841
  breakpointMobileBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
@@ -665,14 +843,25 @@ interface PageElementRefs {
665
843
  visualOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
666
844
  recordingDraftPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
667
845
  previewCaptureRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
846
+ instanceSwitcherDragHandle: HTMLElementProxy<PageViewState, HTMLButtonElement>,
847
+ instanceSwitcherTrigger: HTMLElementProxy<PageViewState, HTMLButtonElement>,
848
+ instanceSwitcherMenu: HTMLElementProxy<PageViewState, HTMLDivElement>,
849
+ instanceSwitcher: HTMLElementProxy<PageViewState, HTMLDivElement>,
850
+ clearMarkersCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
851
+ clearMarkersConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
668
852
  visualToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
669
853
  visualToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
670
854
  visualToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
671
- visualToolArrowBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
672
855
  videoRecordBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
673
856
  freezeBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
857
+ sendToAgentBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
858
+ projectSettingsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
674
859
  addPageResultBannerSlot: HTMLElementProxy<PageViewState, HTMLDivElement>,
675
860
  bottomPanelResize: HTMLElementProxy<PageViewState, HTMLDivElement>,
861
+ agentStopCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
862
+ agentStopConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
863
+ agentStopConfirmDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
864
+ agentStopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
676
865
  bottomPanelClearBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
677
866
  bottomPanelToggleBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
678
867
  bottomPanelHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
@@ -686,17 +875,19 @@ interface PageElementRefs {
686
875
  projectPluginsPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
687
876
  projectSettingsOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
688
877
  addPageCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
878
+ addPageContentTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
879
+ addPageDesignTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
689
880
  addPageRouteInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
690
881
  addPageRouteParamsPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
882
+ addMenuPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
691
883
  addPageSuggestedRouteApplyBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
692
884
  addPageSuggestedRouteDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
693
- addPageFillContentFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
694
885
  addPageContentMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
695
- addMenuPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
696
- addPageFillDesignFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
886
+ addPageFillContentFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
697
887
  addPageDesignMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
698
- addPageReferenceDrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
888
+ addPageFillDesignFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
699
889
  addPageAttachReferenceBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
890
+ addPageReferenceDrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
700
891
  addPageReferenceFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
701
892
  addPageAttachmentsList: HTMLElementProxy<PageViewState, HTMLDivElement>,
702
893
  addPageCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
@@ -711,13 +902,45 @@ interface PageElementRefs {
711
902
  addPageBriefFillPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
712
903
  addPageSlideover: HTMLElementProxy<PageViewState, HTMLDivElement>,
713
904
  addPageOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
905
+ pageInfoInspectorBackBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
906
+ pageInfoPanelCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
907
+ pageInfoPanelHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
908
+ pageInfoRouteEditBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
909
+ pageInfoRouteApproveBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
910
+ pageInfoRouteCancelEditBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
911
+ pageInfoRouteInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
912
+ pageInfoRouteParamCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
913
+ pageInfoRouteParamConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
914
+ pageInfoPanelBody: HTMLElementProxy<PageViewState, HTMLDivElement>,
915
+ pageInfoPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
916
+ pageInfoRouteChangeCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
917
+ pageInfoRouteChangeConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
918
+ pageInfoRouteChangeConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
919
+ addMenuDockBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
920
+ addMenuDockCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
921
+ addMenuDockHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
922
+ addMenuDockSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
923
+ addMenuDockPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
924
+ assetMentionHeaderBack: HTMLElementProxy<PageViewState, HTMLButtonElement>,
925
+ assetMentionHeaderSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
926
+ assetMentionHeaderSearchClose: HTMLElementProxy<PageViewState, HTMLButtonElement>,
927
+ assetMentionHeaderSearchToggle: HTMLElementProxy<PageViewState, HTMLButtonElement>,
928
+ assetMentionPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
929
+ stageDropGhost: HTMLElementProxy<PageViewState, HTMLDivElement>,
930
+ assetMentionCaretMirrorSpan: HTMLElementProxy<PageViewState, HTMLSpanElement>,
931
+ assetMentionCaretMirror: HTMLElementProxy<PageViewState, HTMLDivElement>,
932
+ addMenuPickerBackBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
933
+ addMenuPickerCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
934
+ addMenuPickerSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
935
+ addMenuPickerSubCategoryFilters: HTMLElementProxy<PageViewState, HTMLDivElement>,
936
+ addMenuPickerDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
937
+ addMenuPickerOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
938
+ addMenuPickerDismissConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
714
939
  filePreviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
715
940
  filePreviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
716
941
  videoReviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
717
- videoModalToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
718
942
  videoModalToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
719
943
  videoModalToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
720
- videoModalToolArrowBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
721
944
  videoReviewAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
722
945
  videoReviewPlayer: HTMLElementProxy<PageViewState, HTMLVideoElement>,
723
946
  videoReviewOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
@@ -725,14 +948,16 @@ interface PageElementRefs {
725
948
  videoPlayPauseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
726
949
  videoTimeline: HTMLElementProxy<PageViewState, HTMLInputElement>,
727
950
  videoReviewTimelineWrap: HTMLElementProxy<PageViewState, HTMLDivElement>,
728
- videoReviewDiscardBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
951
+ videoReviewCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
729
952
  videoReviewSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
730
953
  videoReviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
954
+ videoReviewCloseConfirmCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
955
+ videoReviewCloseConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
956
+ videoReviewCloseConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
731
957
  snapshotCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
958
+ snapshotToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
732
959
  snapshotToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
733
960
  snapshotToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
734
- snapshotToolArrowBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
735
- snapshotToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
736
961
  snapshotUndoBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
737
962
  snapshotClearBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
738
963
  snapshotAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
@@ -743,9 +968,25 @@ interface PageElementRefs {
743
968
  snapshotCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
744
969
  snapshotSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
745
970
  snapshotBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
971
+ appRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
972
+ visualPointDisplayItems: {
973
+ visualAnnotationMarker: HTMLElementCollectionProxy<VisualPointDisplayItemOfPageViewState, HTMLDivElement>
974
+ },
975
+ visualAreaDisplayItems: {
976
+ visualAnnotationMarker: HTMLElementCollectionProxy<VisualAreaDisplayItemOfPageViewState, HTMLDivElement>
977
+ },
746
978
  visualAnnotationRows: {
747
979
  annotationRow: HTMLElementCollectionProxy<VisualAnnotationRowOfPageViewState, HTMLDivElement>
748
980
  },
981
+ assetMentionRows: {
982
+ assetMentionRow: HTMLElementCollectionProxy<AssetMentionRowOfPageViewState, HTMLButtonElement>
983
+ },
984
+ videoPointDisplayItems: {
985
+ visualAnnotationMarker: HTMLElementCollectionProxy<VideoPointDisplayItemOfPageViewState, HTMLDivElement>
986
+ },
987
+ videoAreaDisplayItems: {
988
+ visualAnnotationMarker: HTMLElementCollectionProxy<VideoAreaDisplayItemOfPageViewState, HTMLDivElement>
989
+ },
749
990
  videoAnnotationRows: {
750
991
  videoAnnotationRow: HTMLElementCollectionProxy<VideoAnnotationRowOfPageViewState, HTMLDivElement>
751
992
  },