@jay-framework/aiditor 0.19.7 → 0.21.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.
@@ -0,0 +1,1039 @@
1
+ import {JayElement, RenderElement, HTMLElementCollectionProxy, HTMLElementProxy, RenderElementOptions, JayContract} from "@jay-framework/runtime";
2
+
3
+ import './page.css';
4
+
5
+ export interface ChunkOfPageViewState {
6
+ id: string,
7
+ text: string,
8
+ cssClass: string,
9
+ filePath: string,
10
+ toolName: string,
11
+ showUserPrefix: boolean,
12
+ isDivider: boolean
13
+ }
14
+
15
+ export interface PageSelectOptionOfPageViewState {
16
+ url: string,
17
+ label: string
18
+ }
19
+
20
+ export interface FilteredPageRouteRowOfPageViewState {
21
+ url: string,
22
+ label: string,
23
+ isSelected: boolean,
24
+ checkGlyph: string,
25
+ cssClass: string,
26
+ rowCssClass: string
27
+ }
28
+
29
+ export interface InstanceSwitcherRowOfPageViewState {
30
+ path: string,
31
+ label: string,
32
+ isSelected: boolean,
33
+ cssClass: string
34
+ }
35
+
36
+ export interface FilteredSnapshotRowOfPageViewState {
37
+ value: string,
38
+ label: string,
39
+ isSelected: boolean,
40
+ checkGlyph: string,
41
+ cssClass: string
42
+ }
43
+
44
+ export 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
+ export 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
+ export 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
+ export 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
+ export interface PageInfoMissingParamRowOfPageViewState {
102
+ rowKey: string,
103
+ name: string,
104
+ chipLabel: string
105
+ }
106
+
107
+ export interface PageInfoRouteParamRowOfPageViewState {
108
+ rowKey: string,
109
+ name: string
110
+ }
111
+
112
+ export 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
+ export 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
+ export 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
+ export 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
+ export 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
179
+ }
180
+
181
+ export interface VisualPointDisplayItemOfPageViewState {
182
+ id: string,
183
+ leftPct: number,
184
+ topPct: number,
185
+ indexLabel: string,
186
+ markerOpen: boolean,
187
+ markerEditMode: boolean
188
+ }
189
+
190
+ export interface VisualAreaDisplayItemOfPageViewState {
191
+ id: string,
192
+ leftPct: number,
193
+ topPct: number,
194
+ widthPct: number,
195
+ heightPct: number,
196
+ indexLabel: string,
197
+ markerOpen: boolean,
198
+ markerEditMode: boolean
199
+ }
200
+
201
+ export interface AttachmentChipOfVisualAnnotationRowOfPageViewState {
202
+ key: string,
203
+ name: string,
204
+ thumbUrl: string,
205
+ annotationId: string,
206
+ numberLabel: string
207
+ }
208
+
209
+ export interface MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState {
210
+ rowKey: string,
211
+ itemId: string,
212
+ title: string,
213
+ subtitle: string,
214
+ tooltip: string,
215
+ showThumbnail: boolean,
216
+ showInfoIcon: boolean,
217
+ thumbnailUrl: string
218
+ }
219
+
220
+ export interface CrAddMenuRouteParamRowOfVisualAnnotationRowOfPageViewState {
221
+ rowKey: string,
222
+ name: string
223
+ }
224
+
225
+ export interface VisualAnnotationRowOfPageViewState {
226
+ id: string,
227
+ kindLabel: string,
228
+ instruction: string,
229
+ showPopover: boolean,
230
+ quickSendDisabled: boolean,
231
+ leftPct: number,
232
+ topPct: number,
233
+ popoverFlipX: boolean,
234
+ popoverFlipY: boolean,
235
+ attachmentChips: Array<AttachmentChipOfVisualAnnotationRowOfPageViewState>,
236
+ addMenuSectionOpen: boolean,
237
+ showAddMenuControls: boolean,
238
+ showMarkerAddMenuChips: boolean,
239
+ showMarkerAddMenuEmptyHint: boolean,
240
+ markerAddMenuChips: Array<MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState>,
241
+ crAddMenuParamCollisionWarning: string,
242
+ crAddMenuRouteParamHint: string,
243
+ showCrAddMenuRouteParams: boolean,
244
+ crAddMenuRouteParamRows: Array<CrAddMenuRouteParamRowOfVisualAnnotationRowOfPageViewState>,
245
+ showCrRouteParamConfirm: boolean,
246
+ crPendingRouteParamTitle: string,
247
+ showCrPlannedRoutePanel: boolean,
248
+ crPlannedRoute: string
249
+ }
250
+
251
+ export interface AttachmentChipOfRecordingDraftUiOfPageViewState {
252
+ key: string,
253
+ name: string,
254
+ thumbUrl: string,
255
+ annotationId: string,
256
+ numberLabel: string
257
+ }
258
+
259
+ export interface RecordingDraftUiOfPageViewState {
260
+ id: string,
261
+ kindLabel: string,
262
+ instruction: string,
263
+ leftPct: number,
264
+ topPct: number,
265
+ popoverFlipX: boolean,
266
+ popoverFlipY: boolean,
267
+ attachmentChips: Array<AttachmentChipOfRecordingDraftUiOfPageViewState>
268
+ }
269
+
270
+ export interface RecordingDraftAttachmentChipOfPageViewState {
271
+ key: string,
272
+ name: string,
273
+ thumbUrl: string,
274
+ annotationId: string,
275
+ numberLabel: string
276
+ }
277
+
278
+ export interface VideoPointDisplayItemOfPageViewState {
279
+ id: string,
280
+ leftPct: number,
281
+ topPct: number,
282
+ indexLabel: string,
283
+ markerOpen: boolean,
284
+ markerEditMode: boolean
285
+ }
286
+
287
+ export interface VideoAreaDisplayItemOfPageViewState {
288
+ id: string,
289
+ leftPct: number,
290
+ topPct: number,
291
+ widthPct: number,
292
+ heightPct: number,
293
+ indexLabel: string,
294
+ markerOpen: boolean,
295
+ markerEditMode: boolean
296
+ }
297
+
298
+ export interface AttachmentChipOfVideoAnnotationRowOfPageViewState {
299
+ key: string,
300
+ name: string,
301
+ thumbUrl: string,
302
+ annotationId: string,
303
+ numberLabel: string
304
+ }
305
+
306
+ export interface MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState {
307
+ rowKey: string,
308
+ itemId: string,
309
+ title: string,
310
+ subtitle: string,
311
+ tooltip: string,
312
+ showThumbnail: boolean,
313
+ showInfoIcon: boolean,
314
+ thumbnailUrl: string
315
+ }
316
+
317
+ export interface CrAddMenuRouteParamRowOfVideoAnnotationRowOfPageViewState {
318
+ rowKey: string,
319
+ name: string
320
+ }
321
+
322
+ export interface VideoAnnotationRowOfPageViewState {
323
+ id: string,
324
+ kindLabel: string,
325
+ instruction: string,
326
+ showPopover: boolean,
327
+ runDisabled: boolean,
328
+ quickSendDisabled: boolean,
329
+ leftPct: number,
330
+ topPct: number,
331
+ popoverFlipX: boolean,
332
+ popoverFlipY: boolean,
333
+ attachmentChips: Array<AttachmentChipOfVideoAnnotationRowOfPageViewState>,
334
+ addMenuSectionOpen: boolean,
335
+ showAddMenuControls: boolean,
336
+ showMarkerAddMenuChips: boolean,
337
+ showMarkerAddMenuEmptyHint: boolean,
338
+ markerAddMenuChips: Array<MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState>,
339
+ crAddMenuParamCollisionWarning: string,
340
+ crAddMenuRouteParamHint: string,
341
+ showCrAddMenuRouteParams: boolean,
342
+ crAddMenuRouteParamRows: Array<CrAddMenuRouteParamRowOfVideoAnnotationRowOfPageViewState>,
343
+ showCrRouteParamConfirm: boolean,
344
+ crPendingRouteParamTitle: string,
345
+ showCrPlannedRoutePanel: boolean,
346
+ crPlannedRoute: string
347
+ }
348
+
349
+ export interface VideoTimelineMarkerOfPageViewState {
350
+ key: string,
351
+ timeSec: number,
352
+ leftPct: number,
353
+ label: string
354
+ }
355
+
356
+ export interface SnapshotPointDisplayItemOfPageViewState {
357
+ id: string,
358
+ leftPct: number,
359
+ topPct: number,
360
+ indexLabel: string,
361
+ markerEditMode: boolean
362
+ }
363
+
364
+ export interface SnapshotAreaDisplayItemOfPageViewState {
365
+ id: string,
366
+ leftPct: number,
367
+ topPct: number,
368
+ widthPct: number,
369
+ heightPct: number,
370
+ indexLabel: string,
371
+ markerEditMode: boolean
372
+ }
373
+
374
+ export interface AttachmentChipOfSnapshotAnnotationItemOfPageViewState {
375
+ key: string,
376
+ name: string,
377
+ thumbUrl: string,
378
+ annotationId: string,
379
+ numberLabel: string
380
+ }
381
+
382
+ export interface MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState {
383
+ rowKey: string,
384
+ itemId: string,
385
+ title: string,
386
+ subtitle: string,
387
+ tooltip: string,
388
+ showThumbnail: boolean,
389
+ showInfoIcon: boolean,
390
+ thumbnailUrl: string
391
+ }
392
+
393
+ export interface CrAddMenuRouteParamRowOfSnapshotAnnotationItemOfPageViewState {
394
+ rowKey: string,
395
+ name: string
396
+ }
397
+
398
+ export interface SnapshotAnnotationItemOfPageViewState {
399
+ id: string,
400
+ indexLabel: string,
401
+ kindLabel: string,
402
+ instruction: string,
403
+ quickSendDisabled: boolean,
404
+ kind: string,
405
+ leftPct: number,
406
+ topPct: number,
407
+ popoverFlipX: boolean,
408
+ popoverFlipY: boolean,
409
+ attachmentChips: Array<AttachmentChipOfSnapshotAnnotationItemOfPageViewState>,
410
+ addMenuSectionOpen: boolean,
411
+ showAddMenuControls: boolean,
412
+ showMarkerAddMenuChips: boolean,
413
+ showMarkerAddMenuEmptyHint: boolean,
414
+ markerAddMenuChips: Array<MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState>,
415
+ crAddMenuParamCollisionWarning: string,
416
+ crAddMenuRouteParamHint: string,
417
+ showCrAddMenuRouteParams: boolean,
418
+ crAddMenuRouteParamRows: Array<CrAddMenuRouteParamRowOfSnapshotAnnotationItemOfPageViewState>,
419
+ showCrRouteParamConfirm: boolean,
420
+ crPendingRouteParamTitle: string,
421
+ showCrPlannedRoutePanel: boolean,
422
+ crPlannedRoute: string
423
+ }
424
+
425
+ export interface AddPageAttachmentRowOfPageViewState {
426
+ rowKey: string,
427
+ id: string,
428
+ filename: string,
429
+ path: string,
430
+ role: string,
431
+ roleLabel: string
432
+ }
433
+
434
+ export interface ProjectSettingsInstallRowOfPageViewState {
435
+ rowKey: string,
436
+ pluginName: string,
437
+ packageName: string,
438
+ description: string,
439
+ buttonLabel: string,
440
+ buttonDisabled: boolean
441
+ }
442
+
443
+ export interface ProjectSettingsInstalledRowOfPageViewState {
444
+ rowKey: string,
445
+ pluginName: string,
446
+ packageName: string,
447
+ description: string,
448
+ versionLabel: string,
449
+ setupBadge: string,
450
+ setupBadgeClass: string,
451
+ configFile: string,
452
+ showConfig: boolean,
453
+ contractSummary: string,
454
+ showCheckForUpdateBtn: boolean,
455
+ showRunUpdateBtn: boolean,
456
+ updateButtonLabel: string,
457
+ updateButtonDisabled: boolean
458
+ }
459
+
460
+ export interface AddMenuRouteParamRowOfPageViewState {
461
+ rowKey: string,
462
+ name: string
463
+ }
464
+
465
+ export interface CrAddMenuRouteParamRowOfPageViewState {
466
+ rowKey: string,
467
+ name: string
468
+ }
469
+
470
+ export interface AddPageBriefFillThumbRowOfPageViewState {
471
+ rowKey: string,
472
+ name: string,
473
+ thumbUrl: string,
474
+ index: number,
475
+ removeDisabled: boolean
476
+ }
477
+
478
+ export interface PageViewState {
479
+ isBootstrapping: boolean,
480
+ showBootstrapError: boolean,
481
+ bootstrapErrorText: string,
482
+ canRetryBootstrap: boolean,
483
+ isMainVisible: boolean,
484
+ projectName: string,
485
+ notes: string,
486
+ hasImage: boolean,
487
+ isRunning: boolean,
488
+ chunks: Array<ChunkOfPageViewState>,
489
+ agentChatMessage: string,
490
+ showAgentChatInput: boolean,
491
+ agentChatInputDisabled: boolean,
492
+ agentChatSendDisabled: boolean,
493
+ agentChatPlaceholder: string,
494
+ hasChunks: boolean,
495
+ outputEmpty: boolean,
496
+ pageSelectOptions: Array<PageSelectOptionOfPageViewState>,
497
+ hasPages: boolean,
498
+ showPagesPanel: boolean,
499
+ pageNavBtnClass: string,
500
+ pageNavBtnLabel: string,
501
+ pagesPanelSearchQuery: string,
502
+ filteredPageRouteRows: Array<FilteredPageRouteRowOfPageViewState>,
503
+ showPagesPanelEmptySearch: boolean,
504
+ showInstanceSwitcher: boolean,
505
+ showInstanceSwitcherMenu: boolean,
506
+ instanceSwitcherRows: Array<InstanceSwitcherRowOfPageViewState>,
507
+ instanceSwitcherCurrentLabel: string,
508
+ instanceSwitcherCountLabel: string,
509
+ instanceSwitcherTriggerClass: string,
510
+ instanceSwitcherLeft: string,
511
+ instanceSwitcherTop: string,
512
+ instanceSwitcherTransform: string,
513
+ instanceSwitcherMenuOpensAbove: boolean,
514
+ showSnapshotNav: boolean,
515
+ showSnowflakeFeatures: boolean,
516
+ showSnapshotPanel: boolean,
517
+ snapshotNavBtnClass: string,
518
+ snapshotNavBtnLabel: string,
519
+ snapshotPanelSearchQuery: string,
520
+ filteredSnapshotRows: Array<FilteredSnapshotRowOfPageViewState>,
521
+ showSnapshotPanelEmptySearch: boolean,
522
+ showAddMenuPickerModal: boolean,
523
+ showAddMenuPickerDismissConfirm: boolean,
524
+ addMenuPickerDismissConfirmMessage: string,
525
+ showAddMenuPickerLoading: boolean,
526
+ showAddMenuPickerEmpty: boolean,
527
+ showAddMenuPickerBrowse: boolean,
528
+ showAddMenuPickerBrowseLayout: boolean,
529
+ showAddMenuPickerSearchMode: boolean,
530
+ showAddMenuPickerSearchBack: boolean,
531
+ showAddMenuPickerSearchClear: boolean,
532
+ showAddMenuPickerBrowseTitle: boolean,
533
+ showAddMenuPickerSearchSummary: boolean,
534
+ showAddMenuPickerSubCategoryFilters: boolean,
535
+ showAddMenuPickerSubCategoryScrollPrev: boolean,
536
+ showAddMenuPickerSubCategoryScrollNext: boolean,
537
+ showAddMenuPickerComponents: boolean,
538
+ showAddMenuPickerNoComponents: boolean,
539
+ showAddMenuPickerNoSearchResults: boolean,
540
+ showAddMenuPickerLoadMore: boolean,
541
+ addMenuPickerLoadMoreLabel: string,
542
+ showAddMenuPickerDone: boolean,
543
+ addMenuPickerDoneDisabled: boolean,
544
+ addMenuPickerDoneLabel: string,
545
+ addMenuPickerDialogClass: string,
546
+ addMenuPickerOverlayClass: string,
547
+ addMenuPickerHeaderTitle: string,
548
+ showAddMenuPickerHeaderBack: boolean,
549
+ addMenuPickerBrowseCategoryTitle: string,
550
+ addMenuPickerSearchSummary: string,
551
+ addMenuPickerSearchQuery: string,
552
+ addMenuPickerBrowseLayoutClass: string,
553
+ addMenuPickerLeftNavRows: Array<AddMenuPickerLeftNavRowOfPageViewState>,
554
+ addMenuPickerSubCategoryFilterRows: Array<AddMenuPickerSubCategoryFilterRowOfPageViewState>,
555
+ addMenuPickerBrowseRows: Array<AddMenuPickerBrowseRowOfPageViewState>,
556
+ showPageInfoPanel: boolean,
557
+ pageInfoPanelLeft: number,
558
+ pageInfoPanelTop: number,
559
+ addMenuDockLeft: number,
560
+ addMenuDockTop: number,
561
+ pageInfoComponentRows: Array<PageInfoComponentRowOfPageViewState>,
562
+ showPageInfoComponentsEmpty: boolean,
563
+ showPageInfoLoading: boolean,
564
+ showPageInfoComponentsLoading: boolean,
565
+ pageInfoDisplayRoute: string,
566
+ pageInfoDraftRoute: string,
567
+ pageInfoRouteFieldClass: string,
568
+ pageInfoRouteProblemTooltip: string,
569
+ showPageInfoRouteProblem: boolean,
570
+ showPageInfoRouteEditing: boolean,
571
+ showPageInfoRouteEditBtn: boolean,
572
+ showPageInfoRouteApproveBtn: boolean,
573
+ showPageInfoRouteCancelEditBtn: boolean,
574
+ showPageInfoRouteMissingParamChips: boolean,
575
+ pageInfoMissingParamRows: Array<PageInfoMissingParamRowOfPageViewState>,
576
+ showPageInfoRouteChangeConfirm: boolean,
577
+ pageInfoRouteChangeConfirmFrom: string,
578
+ pageInfoRouteChangeConfirmTo: string,
579
+ showPageInfoRouteMigration: boolean,
580
+ showPageInfoRouteParams: boolean,
581
+ pageInfoRouteParamRows: Array<PageInfoRouteParamRowOfPageViewState>,
582
+ pageInfoParamCollisionWarning: string,
583
+ pageInfoRouteParamHint: string,
584
+ pageInfoPlannedRoute: string,
585
+ showPageInfoRouteParamConfirm: boolean,
586
+ pageInfoPendingRouteParamTitle: string,
587
+ pageInfoDuplicateKeyWarning: string,
588
+ showPageInfoDuplicateWarning: boolean,
589
+ pageInfoRouteSectionClass: string,
590
+ showPageInfoMainView: boolean,
591
+ showPageInfoInspectorDetail: boolean,
592
+ showPageInfoHeaderBack: boolean,
593
+ pageInfoInspectorDetailTitle: string,
594
+ showPageInfoInspectorLoading: boolean,
595
+ showPageInfoInspectorNoContract: boolean,
596
+ showPageInfoInspectorHasTags: boolean,
597
+ showPageInfoInspectorError: boolean,
598
+ pageInfoInspectorError: string,
599
+ pageInfoInspectorTagRows: Array<PageInfoInspectorTagRowOfPageViewState>,
600
+ showAddMenuDock: boolean,
601
+ showAddMenuDockLoading: boolean,
602
+ showAddMenuDockEmpty: boolean,
603
+ showAddMenuDockBrowse: boolean,
604
+ addMenuDockSearchQuery: string,
605
+ showAddMenuDockBrowseLayout: boolean,
606
+ showAddMenuDockSubCategoryFilters: boolean,
607
+ addMenuDockBrowseCategoryTitle: string,
608
+ showAddMenuDockComponents: boolean,
609
+ showAddMenuDockLoadMore: boolean,
610
+ showAddMenuDockNoComponents: boolean,
611
+ showAddMenuDockNoSearchResults: boolean,
612
+ showAddMenuDockSearchBack: boolean,
613
+ showAddMenuDockSearchClear: boolean,
614
+ showAddMenuDockBrowseTitle: boolean,
615
+ showAddMenuDockSearchSummary: boolean,
616
+ addMenuDockBrowseLayoutClass: string,
617
+ addMenuDockLoadMoreLabel: string,
618
+ addMenuDockLeftNavRows: Array<AddMenuDockLeftNavRowOfPageViewState>,
619
+ addMenuDockSubCategoryFilterRows: Array<AddMenuDockSubCategoryFilterRowOfPageViewState>,
620
+ addMenuDockBrowseRows: Array<AddMenuDockBrowseRowOfPageViewState>,
621
+ showAddMenuDockSearchMode: boolean,
622
+ addMenuDockSearchSummary: string,
623
+ showAssetMentionPanel: boolean,
624
+ assetMentionLeft: number,
625
+ assetMentionTop: number,
626
+ assetMentionOpensAbove: boolean,
627
+ assetMentionHeaderTitle: string,
628
+ showAssetMentionHeaderBack: boolean,
629
+ showAssetMentionSearchField: boolean,
630
+ assetMentionSearchQuery: string,
631
+ assetMentionRows: Array<AssetMentionRowOfPageViewState>,
632
+ showToastMessage: boolean,
633
+ toastMessage: string,
634
+ isPreviewMode: boolean,
635
+ previewUrlBar: string,
636
+ previewUrlBarOpenTabDisabled: boolean,
637
+ previewLoading: boolean,
638
+ previewError: string,
639
+ selectedPreviewPath: string,
640
+ showPreviewIframe: boolean,
641
+ previewSrc: string,
642
+ showOutputChunks: boolean,
643
+ showOutputEmpty: boolean,
644
+ outputEmptyHint: string,
645
+ bottomPanelClass: string,
646
+ bottomPanelToggleGlyph: string,
647
+ showBottomPanelRunning: boolean,
648
+ showAgentStopConfirm: boolean,
649
+ agentStopBtnClass: string,
650
+ showFilePreview: boolean,
651
+ filePreviewPath: string,
652
+ filePreviewContent: string,
653
+ filePreviewIsImage: boolean,
654
+ filePreviewImageSrc: string,
655
+ filePreviewLoading: boolean,
656
+ showVisualToolbar: boolean,
657
+ showClearMarkersConfirm: boolean,
658
+ clearMarkersConfirmText: string,
659
+ visualToolNoneOn: boolean,
660
+ visualToolPointOn: boolean,
661
+ visualToolAreaOn: boolean,
662
+ visualMarkerToolsDisabled: boolean,
663
+ visualPointMarkerTooltip: string,
664
+ visualAreaMarkerTooltip: string,
665
+ visualPointDisplayItems: Array<VisualPointDisplayItemOfPageViewState>,
666
+ showVisualPointMarkers: boolean,
667
+ visualAreaDisplayItems: Array<VisualAreaDisplayItemOfPageViewState>,
668
+ showVisualAreaItems: boolean,
669
+ areaDraftLeftPct: number,
670
+ areaDraftTopPct: number,
671
+ areaDraftWidthPct: number,
672
+ areaDraftHeightPct: number,
673
+ showAreaDraftRect: boolean,
674
+ visualAnnotationRows: Array<VisualAnnotationRowOfPageViewState>,
675
+ recordingDraftUi: RecordingDraftUiOfPageViewState,
676
+ recordingDraftAttachmentChips: Array<RecordingDraftAttachmentChipOfPageViewState>,
677
+ showRecordingDraftPopover: boolean,
678
+ showVisualAnnotationsPanel: boolean,
679
+ showVisualSubmitError: boolean,
680
+ visualSubmitError: string,
681
+ visualOverlayPointerNone: boolean,
682
+ showVideoRecordUi: boolean,
683
+ isVideoRecording: boolean,
684
+ videoRecordTooltip: string,
685
+ videoRecordDisabled: boolean,
686
+ showFreezeBtn: boolean,
687
+ freezeDisabled: boolean,
688
+ sendToAgentDisabled: boolean,
689
+ sendToAgentTooltip: string,
690
+ showVideoReviewModal: boolean,
691
+ showVideoReviewCloseConfirm: boolean,
692
+ videoReviewPreparing: boolean,
693
+ videoReviewReady: boolean,
694
+ videoReviewError: boolean,
695
+ videoReviewErrorText: string,
696
+ videoReviewObjectUrl: string,
697
+ videoModalToolPointOn: boolean,
698
+ videoModalToolAreaOn: boolean,
699
+ videoPointDisplayItems: Array<VideoPointDisplayItemOfPageViewState>,
700
+ showVideoPointMarkers: boolean,
701
+ videoAreaDisplayItems: Array<VideoAreaDisplayItemOfPageViewState>,
702
+ showVideoAreaItems: boolean,
703
+ videoAreaDraftLeftPct: number,
704
+ videoAreaDraftTopPct: number,
705
+ videoAreaDraftWidthPct: number,
706
+ videoAreaDraftHeightPct: number,
707
+ showVideoAreaDraftRect: boolean,
708
+ videoAnnotationRows: Array<VideoAnnotationRowOfPageViewState>,
709
+ showVideoAnnotationsPanel: boolean,
710
+ videoModalOverlayPointerNone: boolean,
711
+ videoSubmitError: string,
712
+ showVideoSubmitError: boolean,
713
+ videoSubmitProgress: string,
714
+ showVideoSubmitProgress: boolean,
715
+ videoTimelineMarkers: Array<VideoTimelineMarkerOfPageViewState>,
716
+ showVideoAnnotationPopoversAtPlayhead: boolean,
717
+ videoTimeLabel: string,
718
+ videoSendDisabled: boolean,
719
+ videoPlayPauseGlyph: string,
720
+ breakpointDesktopOn: boolean,
721
+ breakpointTabletOn: boolean,
722
+ breakpointMobileOn: boolean,
723
+ stageWidthPx: number,
724
+ showSnapshotModal: boolean,
725
+ snapshotImageSrc: string,
726
+ snapshotToolNoneOn: boolean,
727
+ snapshotToolPointOn: boolean,
728
+ snapshotToolAreaOn: boolean,
729
+ snapshotCanSubmit: boolean,
730
+ snapshotShowDiscardConfirm: boolean,
731
+ snapshotOverlayPointerNone: boolean,
732
+ snapshotPointDisplayItems: Array<SnapshotPointDisplayItemOfPageViewState>,
733
+ showSnapshotPointMarkers: boolean,
734
+ snapshotAreaDisplayItems: Array<SnapshotAreaDisplayItemOfPageViewState>,
735
+ showSnapshotAreaItems: boolean,
736
+ snapshotAreaDraftLeftPct: number,
737
+ snapshotAreaDraftTopPct: number,
738
+ snapshotAreaDraftWidthPct: number,
739
+ snapshotAreaDraftHeightPct: number,
740
+ showSnapshotAreaDraft: boolean,
741
+ snapshotAnnotationItems: Array<SnapshotAnnotationItemOfPageViewState>,
742
+ showSnapshotAnnotationsPanel: boolean,
743
+ showSnapshotSubmitError: boolean,
744
+ snapshotSubmitError: string,
745
+ showAddPageComposer: boolean,
746
+ showAddPageContentTab: boolean,
747
+ showAddPageDesignTab: boolean,
748
+ addPageContentTabClass: string,
749
+ addPageDesignTabClass: string,
750
+ addPageRoute: string,
751
+ addPageContentMd: string,
752
+ addPageDesignMd: string,
753
+ addPageRouteError: string,
754
+ showAddPageRouteError: boolean,
755
+ addPageComposerError: string,
756
+ showAddPageComposerError: boolean,
757
+ addPageUploadHint: string,
758
+ showAddPageUploadHint: boolean,
759
+ addPageIsDynamicRoute: boolean,
760
+ addPageShowDesignHint: boolean,
761
+ addPageCreateDisabled: boolean,
762
+ addPageRunningHint: string,
763
+ showAddPageRunningHint: boolean,
764
+ showAddPageAttachments: boolean,
765
+ addPageAttachmentRows: Array<AddPageAttachmentRowOfPageViewState>,
766
+ showProjectSettingsModal: boolean,
767
+ showProjectSettingsPluginsPanel: boolean,
768
+ showProjectSettingsInstallZone: boolean,
769
+ showProjectSettingsInstalledZone: boolean,
770
+ projectSettingsInstallRows: Array<ProjectSettingsInstallRowOfPageViewState>,
771
+ projectSettingsInstalledRows: Array<ProjectSettingsInstalledRowOfPageViewState>,
772
+ showProjectSettingsPluginsError: boolean,
773
+ showFixInstallWithAgent: boolean,
774
+ fixInstallPluginName: string,
775
+ projectSettingsPluginsError: string,
776
+ showProjectSettingsInstallProgress: boolean,
777
+ projectSettingsInstallProgress: string,
778
+ showProjectSettingsWixConfigWarning: boolean,
779
+ showProjectSettingsReloadPreview: boolean,
780
+ showProjectLocalPluginForm: boolean,
781
+ projectLocalPluginName: string,
782
+ projectLocalPackageName: string,
783
+ projectLocalPath: string,
784
+ addMenuParamCollisionWarning: string,
785
+ addMenuRouteParamHint: string,
786
+ showAddMenuRouteParams: boolean,
787
+ addMenuRouteParamRows: Array<AddMenuRouteParamRowOfPageViewState>,
788
+ showAddMenuRouteParamConfirm: boolean,
789
+ addMenuPendingRouteParamTitle: string,
790
+ crAddMenuParamCollisionWarning: string,
791
+ crAddMenuRouteParamHint: string,
792
+ showCrAddMenuRouteParams: boolean,
793
+ crAddMenuRouteParamRows: Array<CrAddMenuRouteParamRowOfPageViewState>,
794
+ showCrRouteParamConfirm: boolean,
795
+ crPendingRouteParamTitle: string,
796
+ showCrPlannedRoutePanel: boolean,
797
+ crPlannedRoute: string,
798
+ showAddPageResultBanner: boolean,
799
+ addPageResultBannerClass: string,
800
+ addPageResultBannerMessage: string,
801
+ showAddPageRetry: boolean,
802
+ showAddPageFixWithAiditor: boolean,
803
+ showAddPageFromBriefBtn: boolean,
804
+ hasPublishScript: boolean,
805
+ publishDisabled: boolean,
806
+ publishTooltip: string,
807
+ publishBtnLabel: string,
808
+ isPublishing: boolean,
809
+ showBriefFillPopover: boolean,
810
+ briefFillContextNotes: string,
811
+ briefFillPopoverError: string,
812
+ showBriefFillPopoverError: boolean,
813
+ briefFillContentDisabled: boolean,
814
+ briefFillDesignDisabled: boolean,
815
+ briefFillInputDisabled: boolean,
816
+ briefFillDropzoneClass: string,
817
+ addPageBriefFillGenerateDisabled: boolean,
818
+ contentTabGeneratingHint: string,
819
+ designTabGeneratingHint: string,
820
+ showContentTabGeneratingHint: boolean,
821
+ showDesignTabGeneratingHint: boolean,
822
+ contentGenError: string,
823
+ designGenError: string,
824
+ showContentTabGenError: boolean,
825
+ showDesignTabGenError: boolean,
826
+ addPageContentMdDisabled: boolean,
827
+ addPageDesignMdDisabled: boolean,
828
+ addPageReferencesDisabled: boolean,
829
+ addPageReferencesDropzoneClass: string,
830
+ showAddPageDiscardConfirm: boolean,
831
+ showBriefFillThumbnails: boolean,
832
+ addPageBriefFillThumbRows: Array<AddPageBriefFillThumbRowOfPageViewState>,
833
+ showSuggestedRouteBanner: boolean,
834
+ suggestedRouteLabel: string
835
+ }
836
+
837
+
838
+ export interface PageElementRefs {
839
+ retryBootstrapBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
840
+ pageNavBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
841
+ snapshotNavBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
842
+ addPageFromBriefBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
843
+ publishBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
844
+ pagesPanelCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
845
+ pagesPanelSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
846
+ pagesPanelDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
847
+ pagesPanelOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
848
+ snapshotPanelCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
849
+ snapshotPanelSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
850
+ snapshotPanelDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
851
+ snapshotPanelOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
852
+ harmonyStageAddBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
853
+ harmonyAddPageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
854
+ visualAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
855
+ stageResizeLeft: HTMLElementProxy<PageViewState, HTMLDivElement>,
856
+ stageResizeRight: HTMLElementProxy<PageViewState, HTMLDivElement>,
857
+ harmonyAssetsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
858
+ previewUrlBarOpenTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
859
+ breakpointDesktopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
860
+ breakpointTabletBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
861
+ breakpointMobileBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
862
+ previewIframe: HTMLElementProxy<PageViewState, HTMLIFrameElement>,
863
+ visualOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
864
+ recordingDraftPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
865
+ previewCaptureRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
866
+ instanceSwitcherDragHandle: HTMLElementProxy<PageViewState, HTMLButtonElement>,
867
+ instanceSwitcherTrigger: HTMLElementProxy<PageViewState, HTMLButtonElement>,
868
+ instanceSwitcherMenu: HTMLElementProxy<PageViewState, HTMLDivElement>,
869
+ instanceSwitcher: HTMLElementProxy<PageViewState, HTMLDivElement>,
870
+ clearMarkersCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
871
+ clearMarkersConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
872
+ visualToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
873
+ visualToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
874
+ visualToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
875
+ videoRecordBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
876
+ freezeBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
877
+ sendToAgentBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
878
+ projectSettingsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
879
+ addPageResultBannerSlot: HTMLElementProxy<PageViewState, HTMLDivElement>,
880
+ bottomPanelResize: HTMLElementProxy<PageViewState, HTMLDivElement>,
881
+ agentStopCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
882
+ agentStopConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
883
+ agentStopConfirmDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
884
+ agentStopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
885
+ bottomPanelClearBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
886
+ bottomPanelToggleBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
887
+ bottomPanelHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
888
+ outputScroll: HTMLElementProxy<PageViewState, HTMLDivElement>,
889
+ agentChatInput: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
890
+ agentChatSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
891
+ projectSettingsCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
892
+ projectLocalPluginNameInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
893
+ projectLocalPackageInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
894
+ projectLocalPathInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
895
+ projectPluginsPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
896
+ projectSettingsOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
897
+ addPageCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
898
+ addPageContentTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
899
+ addPageDesignTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
900
+ addPageRouteInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
901
+ addPageRouteParamsPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
902
+ addMenuPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
903
+ addPageSuggestedRouteApplyBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
904
+ addPageSuggestedRouteDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
905
+ addPageContentMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
906
+ addPageBriefFillStopContentBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
907
+ addPageFillContentFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
908
+ addPageDesignMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
909
+ addPageBriefFillStopDesignBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
910
+ addPageFillDesignFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
911
+ addPageAttachReferenceBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
912
+ addPageReferenceDrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
913
+ addPageReferenceFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
914
+ addPageAttachmentsList: HTMLElementProxy<PageViewState, HTMLDivElement>,
915
+ addPageCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
916
+ addPageCreateBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
917
+ addPageBriefFillCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
918
+ addPageBriefFillContextNotes: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
919
+ addPageBriefFillDropzone: HTMLElementProxy<PageViewState, HTMLDivElement>,
920
+ addPageBriefFillFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
921
+ addPageBriefFillThumbnails: HTMLElementProxy<PageViewState, HTMLDivElement>,
922
+ addPageBriefFillCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
923
+ addPageBriefFillGenerateBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
924
+ addPageBriefFillPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
925
+ addPageDiscardDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
926
+ addPageDiscardConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
927
+ addPageDiscardConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
928
+ addPageSlideover: HTMLElementProxy<PageViewState, HTMLDivElement>,
929
+ addPageOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
930
+ pageInfoInspectorBackBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
931
+ pageInfoPanelCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
932
+ pageInfoPanelHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
933
+ pageInfoRouteEditBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
934
+ pageInfoRouteApproveBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
935
+ pageInfoRouteCancelEditBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
936
+ pageInfoRouteInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
937
+ pageInfoRouteParamCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
938
+ pageInfoRouteParamConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
939
+ pageInfoPanelBody: HTMLElementProxy<PageViewState, HTMLDivElement>,
940
+ pageInfoPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
941
+ pageInfoRouteChangeCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
942
+ pageInfoRouteChangeConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
943
+ pageInfoRouteChangeConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
944
+ addMenuDockBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
945
+ addMenuDockCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
946
+ addMenuDockHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
947
+ addMenuDockSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
948
+ addMenuDockPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
949
+ assetMentionHeaderBack: HTMLElementProxy<PageViewState, HTMLButtonElement>,
950
+ assetMentionHeaderSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
951
+ assetMentionHeaderSearchClose: HTMLElementProxy<PageViewState, HTMLButtonElement>,
952
+ assetMentionHeaderSearchToggle: HTMLElementProxy<PageViewState, HTMLButtonElement>,
953
+ assetMentionPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
954
+ stageDropGhost: HTMLElementProxy<PageViewState, HTMLDivElement>,
955
+ assetMentionCaretMirrorSpan: HTMLElementProxy<PageViewState, HTMLSpanElement>,
956
+ assetMentionCaretMirror: HTMLElementProxy<PageViewState, HTMLDivElement>,
957
+ addMenuPickerBackBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
958
+ addMenuPickerCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
959
+ addMenuPickerSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
960
+ addMenuPickerSubCategoryFilters: HTMLElementProxy<PageViewState, HTMLDivElement>,
961
+ addMenuPickerDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
962
+ addMenuPickerOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
963
+ addMenuPickerDismissConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
964
+ filePreviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
965
+ filePreviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
966
+ videoReviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
967
+ videoModalToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
968
+ videoModalToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
969
+ videoReviewAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
970
+ videoReviewPlayer: HTMLElementProxy<PageViewState, HTMLVideoElement>,
971
+ videoReviewOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
972
+ videoReviewCaptureRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
973
+ videoPlayPauseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
974
+ videoTimeline: HTMLElementProxy<PageViewState, HTMLInputElement>,
975
+ videoReviewTimelineWrap: HTMLElementProxy<PageViewState, HTMLDivElement>,
976
+ videoReviewCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
977
+ videoReviewSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
978
+ videoReviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
979
+ videoReviewCloseConfirmCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
980
+ videoReviewCloseConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
981
+ videoReviewCloseConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
982
+ snapshotCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
983
+ snapshotToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
984
+ snapshotToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
985
+ snapshotToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
986
+ snapshotUndoBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
987
+ snapshotClearBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
988
+ snapshotAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
989
+ snapshotImg: HTMLElementProxy<PageViewState, HTMLImageElement>,
990
+ snapshotOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
991
+ snapshotDiscardBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
992
+ snapshotKeepEditingBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
993
+ snapshotCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
994
+ snapshotSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
995
+ snapshotBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
996
+ appRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
997
+ visualPointDisplayItems: {
998
+ visualAnnotationMarker: HTMLElementCollectionProxy<VisualPointDisplayItemOfPageViewState, HTMLDivElement>
999
+ },
1000
+ visualAreaDisplayItems: {
1001
+ visualAnnotationMarker: HTMLElementCollectionProxy<VisualAreaDisplayItemOfPageViewState, HTMLDivElement>
1002
+ },
1003
+ visualAnnotationRows: {
1004
+ annotationRow: HTMLElementCollectionProxy<VisualAnnotationRowOfPageViewState, HTMLDivElement>
1005
+ },
1006
+ assetMentionRows: {
1007
+ assetMentionRow: HTMLElementCollectionProxy<AssetMentionRowOfPageViewState, HTMLButtonElement>
1008
+ },
1009
+ videoPointDisplayItems: {
1010
+ visualAnnotationMarker: HTMLElementCollectionProxy<VideoPointDisplayItemOfPageViewState, HTMLDivElement>
1011
+ },
1012
+ videoAreaDisplayItems: {
1013
+ visualAnnotationMarker: HTMLElementCollectionProxy<VideoAreaDisplayItemOfPageViewState, HTMLDivElement>
1014
+ },
1015
+ videoAnnotationRows: {
1016
+ videoAnnotationRow: HTMLElementCollectionProxy<VideoAnnotationRowOfPageViewState, HTMLDivElement>
1017
+ },
1018
+ snapshotAnnotationItems: {
1019
+ snapshotAnnotationRow: HTMLElementCollectionProxy<SnapshotAnnotationItemOfPageViewState, HTMLDivElement>
1020
+ }
1021
+ }
1022
+
1023
+ export type PageSlowViewState = {};
1024
+ export type PageFastViewState = PageViewState;
1025
+ export type PageInteractiveViewState = PageViewState;
1026
+
1027
+ export type PageElement = JayElement<PageViewState, PageElementRefs>
1028
+ export type PageElementRender = RenderElement<PageViewState, PageElementRefs, PageElement>
1029
+ export type PageElementPreRender = [PageElementRefs, PageElementRender]
1030
+ export type PageContract = JayContract<
1031
+ PageViewState,
1032
+ PageElementRefs,
1033
+ PageSlowViewState,
1034
+ PageFastViewState,
1035
+ PageInteractiveViewState
1036
+ >;
1037
+
1038
+
1039
+ export declare function render(options?: RenderElementOptions): PageElementPreRender