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