@jay-framework/aiditor 0.18.3 → 0.19.1

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.
@@ -1,5 +1,784 @@
1
- export { aiditorPage, aiditorShell } from './index.js';
2
- import '@jay-framework/fullstack-component';
3
- import '@jay-framework/component';
4
- import '@jay-framework/runtime';
5
- import '@jay-framework/dev-server';
1
+ import * as _jay_framework_fullstack_component from '@jay-framework/fullstack-component';
2
+ import { PageProps } from '@jay-framework/fullstack-component';
3
+ import * as _jay_framework_component from '@jay-framework/component';
4
+ import { HTMLElementProxy, HTMLElementCollectionProxy } from '@jay-framework/runtime';
5
+
6
+ interface ChunkOfPageViewState {
7
+ text: string,
8
+ cssClass: string,
9
+ filePath: string,
10
+ toolName: string,
11
+ showUserPrefix: boolean
12
+ }
13
+
14
+ interface PageSelectOptionOfPageViewState {
15
+ url: string,
16
+ label: string
17
+ }
18
+
19
+ interface PreviewPathOptionOfPageViewState {
20
+ path: string
21
+ }
22
+
23
+ interface VisualPointDisplayItemOfPageViewState {
24
+ id: string,
25
+ leftPct: number,
26
+ topPct: number,
27
+ indexLabel: string
28
+ }
29
+
30
+ interface VisualAreaDisplayItemOfPageViewState {
31
+ id: string,
32
+ leftPct: number,
33
+ topPct: number,
34
+ widthPct: number,
35
+ 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
52
+ }
53
+
54
+ interface AttachmentChipOfVisualAnnotationRowOfPageViewState {
55
+ key: string,
56
+ name: string,
57
+ thumbUrl: string,
58
+ annotationId: string
59
+ }
60
+
61
+ interface MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState {
62
+ rowKey: string,
63
+ itemId: string,
64
+ 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
79
+ }
80
+
81
+ interface CrAddMenuRouteParamRowOfVisualAnnotationRowOfPageViewState {
82
+ rowKey: string,
83
+ name: string
84
+ }
85
+
86
+ interface VisualAnnotationRowOfPageViewState {
87
+ id: string,
88
+ kindLabel: string,
89
+ instruction: string,
90
+ runDisabled: boolean,
91
+ leftPct: number,
92
+ topPct: number,
93
+ popoverFlipX: boolean,
94
+ popoverFlipY: boolean,
95
+ attachmentChips: Array<AttachmentChipOfVisualAnnotationRowOfPageViewState>,
96
+ addMenuSectionOpen: boolean,
97
+ showAddMenuControls: boolean,
98
+ showMarkerAddMenuChips: boolean,
99
+ showMarkerAddMenuEmptyHint: boolean,
100
+ markerAddMenuChips: Array<MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState>,
101
+ addMenuSelectedCategory: string,
102
+ showAddMenuItemPicker: boolean,
103
+ markerPickerNavRows: Array<MarkerPickerNavRowOfVisualAnnotationRowOfPageViewState>,
104
+ showMarkerPickerLoading: boolean,
105
+ showMarkerPickerCatalogEmpty: boolean,
106
+ crAddMenuParamCollisionWarning: string,
107
+ crAddMenuRouteParamHint: string,
108
+ showCrAddMenuRouteParams: boolean,
109
+ crAddMenuRouteParamRows: Array<CrAddMenuRouteParamRowOfVisualAnnotationRowOfPageViewState>,
110
+ showCrRouteParamConfirm: boolean,
111
+ crPendingRouteParamTitle: string,
112
+ showCrPlannedRoutePanel: boolean,
113
+ crPlannedRoute: string
114
+ }
115
+
116
+ interface AttachmentChipOfRecordingDraftUiOfPageViewState {
117
+ key: string,
118
+ name: string,
119
+ thumbUrl: string,
120
+ annotationId: string
121
+ }
122
+
123
+ interface RecordingDraftUiOfPageViewState {
124
+ id: string,
125
+ kindLabel: string,
126
+ instruction: string,
127
+ leftPct: number,
128
+ topPct: number,
129
+ popoverFlipX: boolean,
130
+ popoverFlipY: boolean,
131
+ attachmentChips: Array<AttachmentChipOfRecordingDraftUiOfPageViewState>
132
+ }
133
+
134
+ interface RecordingDraftAttachmentChipOfPageViewState {
135
+ key: string,
136
+ name: string,
137
+ thumbUrl: string,
138
+ annotationId: string
139
+ }
140
+
141
+ interface VideoPointDisplayItemOfPageViewState {
142
+ id: string,
143
+ leftPct: number,
144
+ topPct: number,
145
+ indexLabel: string
146
+ }
147
+
148
+ interface VideoAreaDisplayItemOfPageViewState {
149
+ id: string,
150
+ leftPct: number,
151
+ topPct: number,
152
+ widthPct: number,
153
+ 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
170
+ }
171
+
172
+ interface AttachmentChipOfVideoAnnotationRowOfPageViewState {
173
+ key: string,
174
+ name: string,
175
+ thumbUrl: string,
176
+ annotationId: string
177
+ }
178
+
179
+ interface MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState {
180
+ rowKey: string,
181
+ itemId: string,
182
+ 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
197
+ }
198
+
199
+ interface CrAddMenuRouteParamRowOfVideoAnnotationRowOfPageViewState {
200
+ rowKey: string,
201
+ name: string
202
+ }
203
+
204
+ interface VideoAnnotationRowOfPageViewState {
205
+ id: string,
206
+ kindLabel: string,
207
+ instruction: string,
208
+ runDisabled: boolean,
209
+ leftPct: number,
210
+ topPct: number,
211
+ popoverFlipX: boolean,
212
+ popoverFlipY: boolean,
213
+ attachmentChips: Array<AttachmentChipOfVideoAnnotationRowOfPageViewState>,
214
+ addMenuSectionOpen: boolean,
215
+ showAddMenuControls: boolean,
216
+ showMarkerAddMenuChips: boolean,
217
+ showMarkerAddMenuEmptyHint: boolean,
218
+ markerAddMenuChips: Array<MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState>,
219
+ addMenuSelectedCategory: string,
220
+ showAddMenuItemPicker: boolean,
221
+ markerPickerNavRows: Array<MarkerPickerNavRowOfVideoAnnotationRowOfPageViewState>,
222
+ showMarkerPickerLoading: boolean,
223
+ showMarkerPickerCatalogEmpty: boolean,
224
+ crAddMenuParamCollisionWarning: string,
225
+ crAddMenuRouteParamHint: string,
226
+ showCrAddMenuRouteParams: boolean,
227
+ crAddMenuRouteParamRows: Array<CrAddMenuRouteParamRowOfVideoAnnotationRowOfPageViewState>,
228
+ showCrRouteParamConfirm: boolean,
229
+ crPendingRouteParamTitle: string,
230
+ showCrPlannedRoutePanel: boolean,
231
+ crPlannedRoute: string
232
+ }
233
+
234
+ interface VideoTimelineMarkerOfPageViewState {
235
+ key: string,
236
+ timeSec: number,
237
+ leftPct: number,
238
+ label: string
239
+ }
240
+
241
+ interface SnapshotPointDisplayItemOfPageViewState {
242
+ id: string,
243
+ leftPct: number,
244
+ topPct: number,
245
+ indexLabel: string
246
+ }
247
+
248
+ interface SnapshotAreaDisplayItemOfPageViewState {
249
+ id: string,
250
+ leftPct: number,
251
+ topPct: number,
252
+ widthPct: number,
253
+ 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
270
+ }
271
+
272
+ interface AttachmentChipOfSnapshotAnnotationItemOfPageViewState {
273
+ key: string,
274
+ name: string,
275
+ thumbUrl: string,
276
+ annotationId: string
277
+ }
278
+
279
+ interface MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState {
280
+ rowKey: string,
281
+ itemId: string,
282
+ 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
297
+ }
298
+
299
+ interface CrAddMenuRouteParamRowOfSnapshotAnnotationItemOfPageViewState {
300
+ rowKey: string,
301
+ name: string
302
+ }
303
+
304
+ interface SnapshotAnnotationItemOfPageViewState {
305
+ id: string,
306
+ indexLabel: string,
307
+ kindLabel: string,
308
+ instruction: string,
309
+ kind: string,
310
+ leftPct: number,
311
+ topPct: number,
312
+ popoverFlipX: boolean,
313
+ popoverFlipY: boolean,
314
+ attachmentChips: Array<AttachmentChipOfSnapshotAnnotationItemOfPageViewState>,
315
+ addMenuSectionOpen: boolean,
316
+ showAddMenuControls: boolean,
317
+ showMarkerAddMenuChips: boolean,
318
+ showMarkerAddMenuEmptyHint: boolean,
319
+ markerAddMenuChips: Array<MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState>,
320
+ addMenuSelectedCategory: string,
321
+ showAddMenuItemPicker: boolean,
322
+ markerPickerNavRows: Array<MarkerPickerNavRowOfSnapshotAnnotationItemOfPageViewState>,
323
+ showMarkerPickerLoading: boolean,
324
+ showMarkerPickerCatalogEmpty: boolean,
325
+ crAddMenuParamCollisionWarning: string,
326
+ crAddMenuRouteParamHint: string,
327
+ showCrAddMenuRouteParams: boolean,
328
+ crAddMenuRouteParamRows: Array<CrAddMenuRouteParamRowOfSnapshotAnnotationItemOfPageViewState>,
329
+ showCrRouteParamConfirm: boolean,
330
+ crPendingRouteParamTitle: string,
331
+ showCrPlannedRoutePanel: boolean,
332
+ crPlannedRoute: string
333
+ }
334
+
335
+ interface AddPageAttachmentRowOfPageViewState {
336
+ rowKey: string,
337
+ id: string,
338
+ filename: string,
339
+ path: string,
340
+ role: string,
341
+ roleLabel: string
342
+ }
343
+
344
+ interface ProjectSettingsInstallRowOfPageViewState {
345
+ rowKey: string,
346
+ pluginName: string,
347
+ packageName: string,
348
+ description: string,
349
+ buttonLabel: string,
350
+ buttonDisabled: boolean
351
+ }
352
+
353
+ interface ProjectSettingsInstalledRowOfPageViewState {
354
+ rowKey: string,
355
+ pluginName: string,
356
+ packageName: string,
357
+ description: string,
358
+ versionLabel: string,
359
+ setupBadge: string,
360
+ setupBadgeClass: string,
361
+ configFile: string,
362
+ showConfig: boolean,
363
+ contractSummary: string,
364
+ showCheckForUpdateBtn: boolean,
365
+ showRunUpdateBtn: boolean,
366
+ updateButtonLabel: string,
367
+ updateButtonDisabled: boolean
368
+ }
369
+
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 {
405
+ rowKey: string,
406
+ name: string
407
+ }
408
+
409
+ interface AddMenuRouteParamRowOfPageViewState {
410
+ rowKey: string,
411
+ name: string
412
+ }
413
+
414
+ interface AddPageBriefFillThumbRowOfPageViewState {
415
+ rowKey: string,
416
+ name: string,
417
+ thumbUrl: string,
418
+ index: number,
419
+ removeDisabled: boolean
420
+ }
421
+
422
+ interface PageViewState {
423
+ isBootstrapping: boolean,
424
+ showBootstrapError: boolean,
425
+ bootstrapErrorText: string,
426
+ canRetryBootstrap: boolean,
427
+ isMainVisible: boolean,
428
+ projectName: string,
429
+ notes: string,
430
+ hasImage: boolean,
431
+ isRunning: boolean,
432
+ chunks: Array<ChunkOfPageViewState>,
433
+ agentChatMessage: string,
434
+ showAgentChatInput: boolean,
435
+ agentChatInputDisabled: boolean,
436
+ agentChatSendDisabled: boolean,
437
+ agentChatPlaceholder: string,
438
+ hasChunks: boolean,
439
+ outputEmpty: boolean,
440
+ pageSelectOptions: Array<PageSelectOptionOfPageViewState>,
441
+ selectedRouteSelectValue: string,
442
+ hasPages: boolean,
443
+ isPreviewMode: boolean,
444
+ previewUrlBar: string,
445
+ previewLoading: boolean,
446
+ paramsLoadingHint: string,
447
+ previewError: string,
448
+ showPathSelect: boolean,
449
+ previewPathOptions: Array<PreviewPathOptionOfPageViewState>,
450
+ selectedPreviewPath: string,
451
+ showPreviewIframe: boolean,
452
+ previewSrc: string,
453
+ showOutputChunks: boolean,
454
+ showOutputEmpty: boolean,
455
+ outputEmptyHint: string,
456
+ bottomPanelClass: string,
457
+ bottomPanelToggleGlyph: string,
458
+ showBottomPanelRunning: boolean,
459
+ showFilePreview: boolean,
460
+ filePreviewPath: string,
461
+ filePreviewContent: string,
462
+ filePreviewIsImage: boolean,
463
+ filePreviewImageSrc: string,
464
+ filePreviewLoading: boolean,
465
+ showVisualToolbar: boolean,
466
+ visualToolNoneOn: boolean,
467
+ visualToolPointOn: boolean,
468
+ visualToolAreaOn: boolean,
469
+ visualToolArrowOn: boolean,
470
+ visualPointDisplayItems: Array<VisualPointDisplayItemOfPageViewState>,
471
+ showVisualPointMarkers: boolean,
472
+ visualAreaDisplayItems: Array<VisualAreaDisplayItemOfPageViewState>,
473
+ showVisualAreaItems: boolean,
474
+ areaDraftLeftPct: number,
475
+ areaDraftTopPct: number,
476
+ areaDraftWidthPct: number,
477
+ areaDraftHeightPct: number,
478
+ showAreaDraftRect: boolean,
479
+ visualArrowDisplayItems: Array<VisualArrowDisplayItemOfPageViewState>,
480
+ visualArrowPinItems: Array<VisualArrowPinItemOfPageViewState>,
481
+ hasVisualArrowLines: boolean,
482
+ showArrowPending: boolean,
483
+ arrowPendingLeftPct: number,
484
+ arrowPendingTopPct: number,
485
+ visualAnnotationRows: Array<VisualAnnotationRowOfPageViewState>,
486
+ recordingDraftUi: RecordingDraftUiOfPageViewState,
487
+ recordingDraftAttachmentChips: Array<RecordingDraftAttachmentChipOfPageViewState>,
488
+ showRecordingDraftPopover: boolean,
489
+ showVisualAnnotationsPanel: boolean,
490
+ showVisualSubmitError: boolean,
491
+ visualSubmitError: string,
492
+ visualOverlayPointerNone: boolean,
493
+ showVideoRecordUi: boolean,
494
+ isVideoRecording: boolean,
495
+ videoRecordLabel: string,
496
+ videoRecordDisabled: boolean,
497
+ freezeDisabled: boolean,
498
+ showVideoReviewModal: boolean,
499
+ videoReviewPreparing: boolean,
500
+ videoReviewReady: boolean,
501
+ videoReviewError: boolean,
502
+ videoReviewErrorText: string,
503
+ videoReviewObjectUrl: string,
504
+ videoModalToolNoneOn: boolean,
505
+ videoModalToolPointOn: boolean,
506
+ videoModalToolAreaOn: boolean,
507
+ videoModalToolArrowOn: boolean,
508
+ videoPointDisplayItems: Array<VideoPointDisplayItemOfPageViewState>,
509
+ showVideoPointMarkers: boolean,
510
+ videoAreaDisplayItems: Array<VideoAreaDisplayItemOfPageViewState>,
511
+ showVideoAreaItems: boolean,
512
+ videoAreaDraftLeftPct: number,
513
+ videoAreaDraftTopPct: number,
514
+ videoAreaDraftWidthPct: number,
515
+ videoAreaDraftHeightPct: number,
516
+ showVideoAreaDraftRect: boolean,
517
+ videoArrowDisplayItems: Array<VideoArrowDisplayItemOfPageViewState>,
518
+ videoArrowPinItems: Array<VideoArrowPinItemOfPageViewState>,
519
+ hasVideoArrowLines: boolean,
520
+ showVideoArrowPending: boolean,
521
+ videoArrowPendingLeftPct: number,
522
+ videoArrowPendingTopPct: number,
523
+ videoAnnotationRows: Array<VideoAnnotationRowOfPageViewState>,
524
+ showVideoAnnotationsPanel: boolean,
525
+ videoModalOverlayPointerNone: boolean,
526
+ videoSubmitError: string,
527
+ showVideoSubmitError: boolean,
528
+ videoSubmitProgress: string,
529
+ showVideoSubmitProgress: boolean,
530
+ videoTimelineMarkers: Array<VideoTimelineMarkerOfPageViewState>,
531
+ showVideoAnnotationPopoversAtPlayhead: boolean,
532
+ videoTimeLabel: string,
533
+ videoSendDisabled: boolean,
534
+ videoPlayPauseGlyph: string,
535
+ breakpointDesktopOn: boolean,
536
+ breakpointTabletOn: boolean,
537
+ breakpointMobileOn: boolean,
538
+ showSnapshotModal: boolean,
539
+ snapshotImageSrc: string,
540
+ snapshotToolNoneOn: boolean,
541
+ snapshotToolPointOn: boolean,
542
+ snapshotToolAreaOn: boolean,
543
+ snapshotToolArrowOn: boolean,
544
+ snapshotCanSubmit: boolean,
545
+ snapshotShowDiscardConfirm: boolean,
546
+ snapshotOverlayPointerNone: boolean,
547
+ snapshotPointDisplayItems: Array<SnapshotPointDisplayItemOfPageViewState>,
548
+ showSnapshotPointMarkers: boolean,
549
+ snapshotAreaDisplayItems: Array<SnapshotAreaDisplayItemOfPageViewState>,
550
+ showSnapshotAreaItems: boolean,
551
+ snapshotAreaDraftLeftPct: number,
552
+ snapshotAreaDraftTopPct: number,
553
+ snapshotAreaDraftWidthPct: number,
554
+ snapshotAreaDraftHeightPct: number,
555
+ showSnapshotAreaDraft: boolean,
556
+ snapshotArrowDisplayItems: Array<SnapshotArrowDisplayItemOfPageViewState>,
557
+ snapshotArrowPinItems: Array<SnapshotArrowPinItemOfPageViewState>,
558
+ hasSnapshotArrowLines: boolean,
559
+ showSnapshotArrowPending: boolean,
560
+ snapshotArrowPendingLeftPct: number,
561
+ snapshotArrowPendingTopPct: number,
562
+ snapshotAnnotationItems: Array<SnapshotAnnotationItemOfPageViewState>,
563
+ showSnapshotAnnotationsPanel: boolean,
564
+ showSnapshotSubmitError: boolean,
565
+ snapshotSubmitError: string,
566
+ showAddPageComposer: boolean,
567
+ addPageRoute: string,
568
+ addPageContentMd: string,
569
+ addPageDesignMd: string,
570
+ addPageRouteError: string,
571
+ showAddPageRouteError: boolean,
572
+ addPageComposerError: string,
573
+ showAddPageComposerError: boolean,
574
+ addPageUploadHint: string,
575
+ showAddPageUploadHint: boolean,
576
+ addPageIsDynamicRoute: boolean,
577
+ addPageShowDesignHint: boolean,
578
+ addPageCreateDisabled: boolean,
579
+ addPageRunningHint: string,
580
+ showAddPageRunningHint: boolean,
581
+ showAddPageAttachments: boolean,
582
+ addPageAttachmentRows: Array<AddPageAttachmentRowOfPageViewState>,
583
+ showProjectSettingsModal: boolean,
584
+ showProjectSettingsPluginsPanel: boolean,
585
+ showProjectSettingsInstallZone: boolean,
586
+ showProjectSettingsInstalledZone: boolean,
587
+ projectSettingsInstallRows: Array<ProjectSettingsInstallRowOfPageViewState>,
588
+ projectSettingsInstalledRows: Array<ProjectSettingsInstalledRowOfPageViewState>,
589
+ showProjectSettingsPluginsError: boolean,
590
+ showFixInstallWithAgent: boolean,
591
+ fixInstallPluginName: string,
592
+ projectSettingsPluginsError: string,
593
+ showProjectSettingsInstallProgress: boolean,
594
+ projectSettingsInstallProgress: string,
595
+ showProjectSettingsWixConfigWarning: boolean,
596
+ showProjectSettingsReloadPreview: boolean,
597
+ showProjectLocalPluginForm: boolean,
598
+ projectLocalPluginName: string,
599
+ projectLocalPackageName: string,
600
+ 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,
616
+ crAddMenuParamCollisionWarning: string,
617
+ crAddMenuRouteParamHint: string,
618
+ showCrAddMenuRouteParams: boolean,
619
+ crAddMenuRouteParamRows: Array<CrAddMenuRouteParamRowOfPageViewState>,
620
+ showCrRouteParamConfirm: boolean,
621
+ crPendingRouteParamTitle: string,
622
+ showCrPlannedRoutePanel: boolean,
623
+ crPlannedRoute: string,
624
+ addMenuParamCollisionWarning: string,
625
+ addMenuRouteParamHint: string,
626
+ showAddMenuRouteParams: boolean,
627
+ addMenuRouteParamRows: Array<AddMenuRouteParamRowOfPageViewState>,
628
+ showAddMenuRouteParamConfirm: boolean,
629
+ addMenuPendingRouteParamTitle: string,
630
+ showAddPageResultBanner: boolean,
631
+ addPageResultBannerClass: string,
632
+ addPageResultBannerMessage: string,
633
+ showAddPageRetry: boolean,
634
+ showAddPageFixWithAiditor: boolean,
635
+ showAddPageFromBriefBtn: boolean,
636
+ showBriefFillPopover: boolean,
637
+ briefFillContextNotes: string,
638
+ briefFillPopoverError: string,
639
+ showBriefFillPopoverError: boolean,
640
+ briefFillDisabled: boolean,
641
+ briefFillInputDisabled: boolean,
642
+ briefFillDropzoneClass: string,
643
+ addPageBriefFillGenerateDisabled: boolean,
644
+ briefFillStatusHint: string,
645
+ showBriefFillStatusHint: boolean,
646
+ showBriefFillThumbnails: boolean,
647
+ addPageBriefFillThumbRows: Array<AddPageBriefFillThumbRowOfPageViewState>,
648
+ showSuggestedRouteBanner: boolean,
649
+ suggestedRouteLabel: string
650
+ }
651
+
652
+
653
+ interface PageElementRefs {
654
+ retryBootstrapBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
655
+ pageRouteSelect: HTMLElementProxy<PageViewState, HTMLSelectElement>,
656
+ previewPathSelect: HTMLElementProxy<PageViewState, HTMLSelectElement>,
657
+ projectSettingsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
658
+ addPageOpenBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
659
+ addPageFromBriefBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
660
+ visualAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
661
+ breakpointDesktopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
662
+ breakpointTabletBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
663
+ breakpointMobileBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
664
+ previewIframe: HTMLElementProxy<PageViewState, HTMLIFrameElement>,
665
+ visualOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
666
+ recordingDraftPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
667
+ previewCaptureRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
668
+ visualToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
669
+ visualToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
670
+ visualToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
671
+ visualToolArrowBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
672
+ videoRecordBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
673
+ freezeBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
674
+ addPageResultBannerSlot: HTMLElementProxy<PageViewState, HTMLDivElement>,
675
+ bottomPanelResize: HTMLElementProxy<PageViewState, HTMLDivElement>,
676
+ bottomPanelClearBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
677
+ bottomPanelToggleBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
678
+ bottomPanelHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
679
+ outputScroll: HTMLElementProxy<PageViewState, HTMLDivElement>,
680
+ agentChatInput: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
681
+ agentChatSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
682
+ projectSettingsCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
683
+ projectLocalPluginNameInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
684
+ projectLocalPackageInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
685
+ projectLocalPathInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
686
+ projectPluginsPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
687
+ projectSettingsOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
688
+ addPageCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
689
+ addPageRouteInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
690
+ addPageRouteParamsPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
691
+ addPageSuggestedRouteApplyBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
692
+ addPageSuggestedRouteDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
693
+ addPageFillContentFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
694
+ addPageContentMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
695
+ addMenuPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
696
+ addPageFillDesignFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
697
+ addPageDesignMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
698
+ addPageReferenceDrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
699
+ addPageAttachReferenceBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
700
+ addPageReferenceFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
701
+ addPageAttachmentsList: HTMLElementProxy<PageViewState, HTMLDivElement>,
702
+ addPageCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
703
+ addPageCreateBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
704
+ addPageBriefFillCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
705
+ addPageBriefFillContextNotes: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
706
+ addPageBriefFillDropzone: HTMLElementProxy<PageViewState, HTMLDivElement>,
707
+ addPageBriefFillFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
708
+ addPageBriefFillThumbnails: HTMLElementProxy<PageViewState, HTMLDivElement>,
709
+ addPageBriefFillCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
710
+ addPageBriefFillGenerateBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
711
+ addPageBriefFillPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
712
+ addPageSlideover: HTMLElementProxy<PageViewState, HTMLDivElement>,
713
+ addPageOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
714
+ filePreviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
715
+ filePreviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
716
+ videoReviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
717
+ videoModalToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
718
+ videoModalToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
719
+ videoModalToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
720
+ videoModalToolArrowBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
721
+ videoReviewAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
722
+ videoReviewPlayer: HTMLElementProxy<PageViewState, HTMLVideoElement>,
723
+ videoReviewOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
724
+ videoReviewCaptureRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
725
+ videoPlayPauseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
726
+ videoTimeline: HTMLElementProxy<PageViewState, HTMLInputElement>,
727
+ videoReviewTimelineWrap: HTMLElementProxy<PageViewState, HTMLDivElement>,
728
+ videoReviewDiscardBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
729
+ videoReviewSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
730
+ videoReviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
731
+ snapshotCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
732
+ snapshotToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
733
+ snapshotToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
734
+ snapshotToolArrowBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
735
+ snapshotToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
736
+ snapshotUndoBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
737
+ snapshotClearBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
738
+ snapshotAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
739
+ snapshotImg: HTMLElementProxy<PageViewState, HTMLImageElement>,
740
+ snapshotOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
741
+ snapshotDiscardBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
742
+ snapshotKeepEditingBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
743
+ snapshotCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
744
+ snapshotSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
745
+ snapshotBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
746
+ visualAnnotationRows: {
747
+ annotationRow: HTMLElementCollectionProxy<VisualAnnotationRowOfPageViewState, HTMLDivElement>
748
+ },
749
+ videoAnnotationRows: {
750
+ videoAnnotationRow: HTMLElementCollectionProxy<VideoAnnotationRowOfPageViewState, HTMLDivElement>
751
+ },
752
+ snapshotAnnotationItems: {
753
+ snapshotAnnotationRow: HTMLElementCollectionProxy<SnapshotAnnotationItemOfPageViewState, HTMLDivElement>
754
+ }
755
+ }
756
+
757
+ type PageSlowViewState = {};
758
+
759
+ declare const page: _jay_framework_fullstack_component.JayStackComponentDefinition<PageElementRefs, PageSlowViewState, PageViewState, PageViewState, [], [], PageProps, {}, _jay_framework_component.JayComponentCore<PageProps, PageViewState>>;
760
+
761
+ interface AiditorShellViewState {
762
+ headline: string
763
+ }
764
+
765
+ type AiditorShellSlowViewState = {};
766
+
767
+ type AiditorShellFastViewState = Pick<AiditorShellViewState, 'headline'>;
768
+
769
+ type AiditorShellInteractiveViewState = {};
770
+
771
+ interface AiditorShellRefs {}
772
+
773
+ interface AiditorShellCarry {
774
+ headline: string;
775
+ }
776
+ declare const aiditorShell: _jay_framework_fullstack_component.JayStackComponentDefinition<AiditorShellRefs, AiditorShellSlowViewState, AiditorShellFastViewState, AiditorShellInteractiveViewState, [AiditorShellCarry], [_jay_framework_fullstack_component.Signals<AiditorShellFastViewState>, AiditorShellCarry], {}, {}, _jay_framework_component.JayComponentCore<{}, AiditorShellInteractiveViewState>> & {
777
+ withClientDefaults(fn: (props: {}) => {
778
+ viewState: AiditorShellFastViewState;
779
+ carryForward?: any;
780
+ }): _jay_framework_fullstack_component.JayStackComponentDefinition<AiditorShellRefs, AiditorShellSlowViewState, AiditorShellFastViewState, AiditorShellInteractiveViewState, [AiditorShellCarry], [_jay_framework_fullstack_component.Signals<AiditorShellFastViewState>, AiditorShellCarry], {}, {}, _jay_framework_component.JayComponentCore<{}, AiditorShellInteractiveViewState>> & /*elided*/ any;
781
+ withInteractive(comp: _jay_framework_component.ComponentConstructor<{}, AiditorShellRefs, AiditorShellInteractiveViewState, [_jay_framework_fullstack_component.Signals<AiditorShellFastViewState>, AiditorShellCarry], _jay_framework_component.JayComponentCore<{}, AiditorShellInteractiveViewState>>): _jay_framework_fullstack_component.JayStackComponentDefinition<AiditorShellRefs, AiditorShellSlowViewState, AiditorShellFastViewState, AiditorShellInteractiveViewState, [AiditorShellCarry], [_jay_framework_fullstack_component.Signals<AiditorShellFastViewState>, AiditorShellCarry], {}, {}, _jay_framework_component.JayComponentCore<{}, AiditorShellInteractiveViewState>>;
782
+ };
783
+
784
+ export { page as aiditorPage, aiditorShell };