@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.
- package/dist/actions/cancel-agent-task.jay-action +1 -0
- package/dist/actions/cancel-agent-task.jay-action.d.ts +1 -0
- package/dist/actions/get-contract-inspector-tags.jay-action +9 -0
- package/dist/actions/get-contract-inspector-tags.jay-action.d.ts +6 -0
- package/dist/actions/get-page-assets.jay-action +10 -0
- package/dist/actions/get-page-assets.jay-action.d.ts +7 -0
- package/dist/actions/get-page-meta.jay-action +9 -0
- package/dist/actions/get-page-meta.jay-action.d.ts +6 -0
- package/dist/actions/save-page-assets.jay-action +8 -0
- package/dist/actions/save-page-assets.jay-action.d.ts +5 -0
- package/dist/actions/save-page-meta.jay-action +8 -0
- package/dist/actions/save-page-meta.jay-action.d.ts +5 -0
- package/dist/actions/sync-detected-page-assets.jay-action +12 -0
- package/dist/actions/sync-detected-page-assets.jay-action.d.ts +10 -0
- package/dist/agent-kit-template/plugin/aiditor-add-menu.md +24 -0
- package/dist/index.client.d.ts +331 -43
- package/dist/index.client.js +9987 -2675
- package/dist/index.d.ts +137 -8
- package/dist/index.js +799 -80
- package/dist/pages/aiditor/page.css +1139 -71
- package/dist/pages/aiditor/page.jay-html +2794 -651
- package/dist/pages/aiditor/page.jay-html.d.ts +1039 -0
- package/package.json +18 -9
- package/plugin.yaml +12 -0
package/dist/index.client.d.ts
CHANGED
|
@@ -23,13 +23,14 @@ interface FilteredPageRouteRowOfPageViewState {
|
|
|
23
23
|
label: string,
|
|
24
24
|
isSelected: boolean,
|
|
25
25
|
checkGlyph: string,
|
|
26
|
-
cssClass: string
|
|
26
|
+
cssClass: string,
|
|
27
|
+
rowCssClass: string
|
|
27
28
|
}
|
|
28
29
|
|
|
29
|
-
interface
|
|
30
|
+
interface InstanceSwitcherRowOfPageViewState {
|
|
30
31
|
path: string,
|
|
32
|
+
label: string,
|
|
31
33
|
isSelected: boolean,
|
|
32
|
-
checkGlyph: string,
|
|
33
34
|
cssClass: string
|
|
34
35
|
}
|
|
35
36
|
|
|
@@ -46,6 +47,8 @@ interface AddMenuPickerLeftNavRowOfPageViewState {
|
|
|
46
47
|
navKey: string,
|
|
47
48
|
label: string,
|
|
48
49
|
itemCount: number,
|
|
50
|
+
selectedCount: number,
|
|
51
|
+
showSelectedCount: boolean,
|
|
49
52
|
isSelected: boolean,
|
|
50
53
|
cssClass: string
|
|
51
54
|
}
|
|
@@ -55,7 +58,11 @@ interface AddMenuPickerSubCategoryFilterRowOfPageViewState {
|
|
|
55
58
|
navKey: string,
|
|
56
59
|
label: string,
|
|
57
60
|
itemCount: number,
|
|
61
|
+
selectedCount: number,
|
|
58
62
|
showCount: boolean,
|
|
63
|
+
showSelectedCount: boolean,
|
|
64
|
+
showSubCategoryCount: boolean,
|
|
65
|
+
subCategoryCountLabel: string,
|
|
59
66
|
isSelected: boolean,
|
|
60
67
|
cssClass: string
|
|
61
68
|
}
|
|
@@ -67,7 +74,109 @@ interface AddMenuPickerBrowseRowOfPageViewState {
|
|
|
67
74
|
itemId: string,
|
|
68
75
|
isPickable: boolean,
|
|
69
76
|
showPickable: boolean,
|
|
70
|
-
showBrowseOnly: boolean
|
|
77
|
+
showBrowseOnly: boolean,
|
|
78
|
+
isItemSelected: boolean,
|
|
79
|
+
cardCssClass: string,
|
|
80
|
+
showThumbnail: boolean,
|
|
81
|
+
showInfoIcon: boolean,
|
|
82
|
+
thumbnailUrl: string,
|
|
83
|
+
isAnimatedThumbnail: boolean,
|
|
84
|
+
thumbCssClass: string
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
interface PageInfoComponentRowOfPageViewState {
|
|
88
|
+
rowKey: string,
|
|
89
|
+
detectedKey: string,
|
|
90
|
+
title: string,
|
|
91
|
+
pluginName: string,
|
|
92
|
+
contractName: string,
|
|
93
|
+
componentKey: string,
|
|
94
|
+
showDuplicateBadge: boolean,
|
|
95
|
+
showComponentKey: boolean,
|
|
96
|
+
showContractSubtitle: boolean,
|
|
97
|
+
contractSubtitle: string,
|
|
98
|
+
isSelected: boolean,
|
|
99
|
+
rowClass: string
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
interface PageInfoMissingParamRowOfPageViewState {
|
|
103
|
+
rowKey: string,
|
|
104
|
+
name: string,
|
|
105
|
+
chipLabel: string
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
interface PageInfoRouteParamRowOfPageViewState {
|
|
109
|
+
rowKey: string,
|
|
110
|
+
name: string
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
interface PageInfoInspectorTagRowOfPageViewState {
|
|
114
|
+
rowKey: string,
|
|
115
|
+
tagPath: string,
|
|
116
|
+
tagKind: string,
|
|
117
|
+
tagDescription: string,
|
|
118
|
+
usedInTemplate: boolean,
|
|
119
|
+
tagUsageClass: string,
|
|
120
|
+
showTagSamples: boolean,
|
|
121
|
+
tagSampleText: string,
|
|
122
|
+
showTagBound: boolean,
|
|
123
|
+
showTagAvailable: boolean
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
interface AddMenuDockLeftNavRowOfPageViewState {
|
|
127
|
+
rowKey: string,
|
|
128
|
+
navKey: string,
|
|
129
|
+
label: string,
|
|
130
|
+
itemCount: number,
|
|
131
|
+
selectedCount: number,
|
|
132
|
+
showSelectedCount: boolean,
|
|
133
|
+
isSelected: boolean,
|
|
134
|
+
cssClass: string
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
interface AddMenuDockSubCategoryFilterRowOfPageViewState {
|
|
138
|
+
rowKey: string,
|
|
139
|
+
navKey: string,
|
|
140
|
+
label: string,
|
|
141
|
+
itemCount: number,
|
|
142
|
+
selectedCount: number,
|
|
143
|
+
showCount: boolean,
|
|
144
|
+
showSelectedCount: boolean,
|
|
145
|
+
showSubCategoryCount: boolean,
|
|
146
|
+
subCategoryCountLabel: string,
|
|
147
|
+
isSelected: boolean,
|
|
148
|
+
cssClass: string
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
interface AddMenuDockBrowseRowOfPageViewState {
|
|
152
|
+
rowKey: string,
|
|
153
|
+
isSectionHeader: boolean,
|
|
154
|
+
label: string,
|
|
155
|
+
itemId: string,
|
|
156
|
+
isPickable: boolean,
|
|
157
|
+
showPickable: boolean,
|
|
158
|
+
showBrowseOnly: boolean,
|
|
159
|
+
isItemSelected: boolean,
|
|
160
|
+
cardCssClass: string,
|
|
161
|
+
showThumbnail: boolean,
|
|
162
|
+
showInfoIcon: boolean,
|
|
163
|
+
thumbnailUrl: string,
|
|
164
|
+
isAnimatedThumbnail: boolean,
|
|
165
|
+
thumbCssClass: string
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
interface AssetMentionRowOfPageViewState {
|
|
169
|
+
rowKey: string,
|
|
170
|
+
rowIndex: number,
|
|
171
|
+
rowKind: string,
|
|
172
|
+
title: string,
|
|
173
|
+
subtitle: string,
|
|
174
|
+
thumbnailUrl: string,
|
|
175
|
+
showThumbnail: boolean,
|
|
176
|
+
showInfoIcon: boolean,
|
|
177
|
+
showAtIcon: boolean,
|
|
178
|
+
showNavIcon: boolean,
|
|
179
|
+
cssClass: string
|
|
71
180
|
}
|
|
72
181
|
|
|
73
182
|
interface VisualPointDisplayItemOfPageViewState {
|
|
@@ -94,14 +203,19 @@ interface AttachmentChipOfVisualAnnotationRowOfPageViewState {
|
|
|
94
203
|
key: string,
|
|
95
204
|
name: string,
|
|
96
205
|
thumbUrl: string,
|
|
97
|
-
annotationId: string
|
|
206
|
+
annotationId: string,
|
|
207
|
+
numberLabel: string
|
|
98
208
|
}
|
|
99
209
|
|
|
100
210
|
interface MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState {
|
|
101
211
|
rowKey: string,
|
|
102
212
|
itemId: string,
|
|
103
213
|
title: string,
|
|
104
|
-
subtitle: string
|
|
214
|
+
subtitle: string,
|
|
215
|
+
tooltip: string,
|
|
216
|
+
showThumbnail: boolean,
|
|
217
|
+
showInfoIcon: boolean,
|
|
218
|
+
thumbnailUrl: string
|
|
105
219
|
}
|
|
106
220
|
|
|
107
221
|
interface CrAddMenuRouteParamRowOfVisualAnnotationRowOfPageViewState {
|
|
@@ -139,7 +253,8 @@ interface AttachmentChipOfRecordingDraftUiOfPageViewState {
|
|
|
139
253
|
key: string,
|
|
140
254
|
name: string,
|
|
141
255
|
thumbUrl: string,
|
|
142
|
-
annotationId: string
|
|
256
|
+
annotationId: string,
|
|
257
|
+
numberLabel: string
|
|
143
258
|
}
|
|
144
259
|
|
|
145
260
|
interface RecordingDraftUiOfPageViewState {
|
|
@@ -157,14 +272,17 @@ interface RecordingDraftAttachmentChipOfPageViewState {
|
|
|
157
272
|
key: string,
|
|
158
273
|
name: string,
|
|
159
274
|
thumbUrl: string,
|
|
160
|
-
annotationId: string
|
|
275
|
+
annotationId: string,
|
|
276
|
+
numberLabel: string
|
|
161
277
|
}
|
|
162
278
|
|
|
163
279
|
interface VideoPointDisplayItemOfPageViewState {
|
|
164
280
|
id: string,
|
|
165
281
|
leftPct: number,
|
|
166
282
|
topPct: number,
|
|
167
|
-
indexLabel: string
|
|
283
|
+
indexLabel: string,
|
|
284
|
+
markerOpen: boolean,
|
|
285
|
+
markerEditMode: boolean
|
|
168
286
|
}
|
|
169
287
|
|
|
170
288
|
interface VideoAreaDisplayItemOfPageViewState {
|
|
@@ -173,21 +291,28 @@ interface VideoAreaDisplayItemOfPageViewState {
|
|
|
173
291
|
topPct: number,
|
|
174
292
|
widthPct: number,
|
|
175
293
|
heightPct: number,
|
|
176
|
-
indexLabel: string
|
|
294
|
+
indexLabel: string,
|
|
295
|
+
markerOpen: boolean,
|
|
296
|
+
markerEditMode: boolean
|
|
177
297
|
}
|
|
178
298
|
|
|
179
299
|
interface AttachmentChipOfVideoAnnotationRowOfPageViewState {
|
|
180
300
|
key: string,
|
|
181
301
|
name: string,
|
|
182
302
|
thumbUrl: string,
|
|
183
|
-
annotationId: string
|
|
303
|
+
annotationId: string,
|
|
304
|
+
numberLabel: string
|
|
184
305
|
}
|
|
185
306
|
|
|
186
307
|
interface MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState {
|
|
187
308
|
rowKey: string,
|
|
188
309
|
itemId: string,
|
|
189
310
|
title: string,
|
|
190
|
-
subtitle: string
|
|
311
|
+
subtitle: string,
|
|
312
|
+
tooltip: string,
|
|
313
|
+
showThumbnail: boolean,
|
|
314
|
+
showInfoIcon: boolean,
|
|
315
|
+
thumbnailUrl: string
|
|
191
316
|
}
|
|
192
317
|
|
|
193
318
|
interface CrAddMenuRouteParamRowOfVideoAnnotationRowOfPageViewState {
|
|
@@ -199,6 +324,7 @@ interface VideoAnnotationRowOfPageViewState {
|
|
|
199
324
|
id: string,
|
|
200
325
|
kindLabel: string,
|
|
201
326
|
instruction: string,
|
|
327
|
+
showPopover: boolean,
|
|
202
328
|
runDisabled: boolean,
|
|
203
329
|
quickSendDisabled: boolean,
|
|
204
330
|
leftPct: number,
|
|
@@ -250,14 +376,19 @@ interface AttachmentChipOfSnapshotAnnotationItemOfPageViewState {
|
|
|
250
376
|
key: string,
|
|
251
377
|
name: string,
|
|
252
378
|
thumbUrl: string,
|
|
253
|
-
annotationId: string
|
|
379
|
+
annotationId: string,
|
|
380
|
+
numberLabel: string
|
|
254
381
|
}
|
|
255
382
|
|
|
256
383
|
interface MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState {
|
|
257
384
|
rowKey: string,
|
|
258
385
|
itemId: string,
|
|
259
386
|
title: string,
|
|
260
|
-
subtitle: string
|
|
387
|
+
subtitle: string,
|
|
388
|
+
tooltip: string,
|
|
389
|
+
showThumbnail: boolean,
|
|
390
|
+
showInfoIcon: boolean,
|
|
391
|
+
thumbnailUrl: string
|
|
261
392
|
}
|
|
262
393
|
|
|
263
394
|
interface CrAddMenuRouteParamRowOfSnapshotAnnotationItemOfPageViewState {
|
|
@@ -327,14 +458,6 @@ interface ProjectSettingsInstalledRowOfPageViewState {
|
|
|
327
458
|
updateButtonDisabled: boolean
|
|
328
459
|
}
|
|
329
460
|
|
|
330
|
-
interface AddMenuChipRowOfPageViewState {
|
|
331
|
-
rowKey: string,
|
|
332
|
-
itemId: string,
|
|
333
|
-
title: string,
|
|
334
|
-
subtitle: string,
|
|
335
|
-
annotationId?: string
|
|
336
|
-
}
|
|
337
|
-
|
|
338
461
|
interface AddMenuRouteParamRowOfPageViewState {
|
|
339
462
|
rowKey: string,
|
|
340
463
|
name: string
|
|
@@ -378,10 +501,19 @@ interface PageViewState {
|
|
|
378
501
|
pageNavBtnLabel: string,
|
|
379
502
|
pagesPanelSearchQuery: string,
|
|
380
503
|
filteredPageRouteRows: Array<FilteredPageRouteRowOfPageViewState>,
|
|
381
|
-
filteredUrlInstanceRows: Array<FilteredUrlInstanceRowOfPageViewState>,
|
|
382
|
-
showRoutesPanelUrlInstances: boolean,
|
|
383
504
|
showPagesPanelEmptySearch: boolean,
|
|
505
|
+
showInstanceSwitcher: boolean,
|
|
506
|
+
showInstanceSwitcherMenu: boolean,
|
|
507
|
+
instanceSwitcherRows: Array<InstanceSwitcherRowOfPageViewState>,
|
|
508
|
+
instanceSwitcherCurrentLabel: string,
|
|
509
|
+
instanceSwitcherCountLabel: string,
|
|
510
|
+
instanceSwitcherTriggerClass: string,
|
|
511
|
+
instanceSwitcherLeft: string,
|
|
512
|
+
instanceSwitcherTop: string,
|
|
513
|
+
instanceSwitcherTransform: string,
|
|
514
|
+
instanceSwitcherMenuOpensAbove: boolean,
|
|
384
515
|
showSnapshotNav: boolean,
|
|
516
|
+
showSnowflakeFeatures: boolean,
|
|
385
517
|
showSnapshotPanel: boolean,
|
|
386
518
|
snapshotNavBtnClass: string,
|
|
387
519
|
snapshotNavBtnLabel: string,
|
|
@@ -389,6 +521,8 @@ interface PageViewState {
|
|
|
389
521
|
filteredSnapshotRows: Array<FilteredSnapshotRowOfPageViewState>,
|
|
390
522
|
showSnapshotPanelEmptySearch: boolean,
|
|
391
523
|
showAddMenuPickerModal: boolean,
|
|
524
|
+
showAddMenuPickerDismissConfirm: boolean,
|
|
525
|
+
addMenuPickerDismissConfirmMessage: string,
|
|
392
526
|
showAddMenuPickerLoading: boolean,
|
|
393
527
|
showAddMenuPickerEmpty: boolean,
|
|
394
528
|
showAddMenuPickerBrowse: boolean,
|
|
@@ -404,8 +538,15 @@ interface PageViewState {
|
|
|
404
538
|
showAddMenuPickerComponents: boolean,
|
|
405
539
|
showAddMenuPickerNoComponents: boolean,
|
|
406
540
|
showAddMenuPickerNoSearchResults: boolean,
|
|
541
|
+
showAddMenuPickerLoadMore: boolean,
|
|
542
|
+
addMenuPickerLoadMoreLabel: string,
|
|
543
|
+
showAddMenuPickerDone: boolean,
|
|
544
|
+
addMenuPickerDoneDisabled: boolean,
|
|
545
|
+
addMenuPickerDoneLabel: string,
|
|
407
546
|
addMenuPickerDialogClass: string,
|
|
547
|
+
addMenuPickerOverlayClass: string,
|
|
408
548
|
addMenuPickerHeaderTitle: string,
|
|
549
|
+
showAddMenuPickerHeaderBack: boolean,
|
|
409
550
|
addMenuPickerBrowseCategoryTitle: string,
|
|
410
551
|
addMenuPickerSearchSummary: string,
|
|
411
552
|
addMenuPickerSearchQuery: string,
|
|
@@ -413,8 +554,87 @@ interface PageViewState {
|
|
|
413
554
|
addMenuPickerLeftNavRows: Array<AddMenuPickerLeftNavRowOfPageViewState>,
|
|
414
555
|
addMenuPickerSubCategoryFilterRows: Array<AddMenuPickerSubCategoryFilterRowOfPageViewState>,
|
|
415
556
|
addMenuPickerBrowseRows: Array<AddMenuPickerBrowseRowOfPageViewState>,
|
|
557
|
+
showPageInfoPanel: boolean,
|
|
558
|
+
pageInfoPanelLeft: number,
|
|
559
|
+
pageInfoPanelTop: number,
|
|
560
|
+
addMenuDockLeft: number,
|
|
561
|
+
addMenuDockTop: number,
|
|
562
|
+
pageInfoComponentRows: Array<PageInfoComponentRowOfPageViewState>,
|
|
563
|
+
showPageInfoComponentsEmpty: boolean,
|
|
564
|
+
showPageInfoLoading: boolean,
|
|
565
|
+
showPageInfoComponentsLoading: boolean,
|
|
566
|
+
pageInfoDisplayRoute: string,
|
|
567
|
+
pageInfoDraftRoute: string,
|
|
568
|
+
pageInfoRouteFieldClass: string,
|
|
569
|
+
pageInfoRouteProblemTooltip: string,
|
|
570
|
+
showPageInfoRouteProblem: boolean,
|
|
571
|
+
showPageInfoRouteEditing: boolean,
|
|
572
|
+
showPageInfoRouteEditBtn: boolean,
|
|
573
|
+
showPageInfoRouteApproveBtn: boolean,
|
|
574
|
+
showPageInfoRouteCancelEditBtn: boolean,
|
|
575
|
+
showPageInfoRouteMissingParamChips: boolean,
|
|
576
|
+
pageInfoMissingParamRows: Array<PageInfoMissingParamRowOfPageViewState>,
|
|
577
|
+
showPageInfoRouteChangeConfirm: boolean,
|
|
578
|
+
pageInfoRouteChangeConfirmFrom: string,
|
|
579
|
+
pageInfoRouteChangeConfirmTo: string,
|
|
580
|
+
showPageInfoRouteMigration: boolean,
|
|
581
|
+
showPageInfoRouteParams: boolean,
|
|
582
|
+
pageInfoRouteParamRows: Array<PageInfoRouteParamRowOfPageViewState>,
|
|
583
|
+
pageInfoParamCollisionWarning: string,
|
|
584
|
+
pageInfoRouteParamHint: string,
|
|
585
|
+
pageInfoPlannedRoute: string,
|
|
586
|
+
showPageInfoRouteParamConfirm: boolean,
|
|
587
|
+
pageInfoPendingRouteParamTitle: string,
|
|
588
|
+
pageInfoDuplicateKeyWarning: string,
|
|
589
|
+
showPageInfoDuplicateWarning: boolean,
|
|
590
|
+
pageInfoRouteSectionClass: string,
|
|
591
|
+
showPageInfoMainView: boolean,
|
|
592
|
+
showPageInfoInspectorDetail: boolean,
|
|
593
|
+
showPageInfoHeaderBack: boolean,
|
|
594
|
+
pageInfoInspectorDetailTitle: string,
|
|
595
|
+
showPageInfoInspectorLoading: boolean,
|
|
596
|
+
showPageInfoInspectorNoContract: boolean,
|
|
597
|
+
showPageInfoInspectorHasTags: boolean,
|
|
598
|
+
showPageInfoInspectorError: boolean,
|
|
599
|
+
pageInfoInspectorError: string,
|
|
600
|
+
pageInfoInspectorTagRows: Array<PageInfoInspectorTagRowOfPageViewState>,
|
|
601
|
+
showAddMenuDock: boolean,
|
|
602
|
+
showAddMenuDockLoading: boolean,
|
|
603
|
+
showAddMenuDockEmpty: boolean,
|
|
604
|
+
showAddMenuDockBrowse: boolean,
|
|
605
|
+
addMenuDockSearchQuery: string,
|
|
606
|
+
showAddMenuDockBrowseLayout: boolean,
|
|
607
|
+
showAddMenuDockSubCategoryFilters: boolean,
|
|
608
|
+
addMenuDockBrowseCategoryTitle: string,
|
|
609
|
+
showAddMenuDockComponents: boolean,
|
|
610
|
+
showAddMenuDockLoadMore: boolean,
|
|
611
|
+
showAddMenuDockNoComponents: boolean,
|
|
612
|
+
showAddMenuDockNoSearchResults: boolean,
|
|
613
|
+
showAddMenuDockSearchBack: boolean,
|
|
614
|
+
showAddMenuDockSearchClear: boolean,
|
|
615
|
+
showAddMenuDockBrowseTitle: boolean,
|
|
616
|
+
showAddMenuDockSearchSummary: boolean,
|
|
617
|
+
addMenuDockBrowseLayoutClass: string,
|
|
618
|
+
addMenuDockLoadMoreLabel: string,
|
|
619
|
+
addMenuDockLeftNavRows: Array<AddMenuDockLeftNavRowOfPageViewState>,
|
|
620
|
+
addMenuDockSubCategoryFilterRows: Array<AddMenuDockSubCategoryFilterRowOfPageViewState>,
|
|
621
|
+
addMenuDockBrowseRows: Array<AddMenuDockBrowseRowOfPageViewState>,
|
|
622
|
+
showAddMenuDockSearchMode: boolean,
|
|
623
|
+
addMenuDockSearchSummary: string,
|
|
624
|
+
showAssetMentionPanel: boolean,
|
|
625
|
+
assetMentionLeft: number,
|
|
626
|
+
assetMentionTop: number,
|
|
627
|
+
assetMentionOpensAbove: boolean,
|
|
628
|
+
assetMentionHeaderTitle: string,
|
|
629
|
+
showAssetMentionHeaderBack: boolean,
|
|
630
|
+
showAssetMentionSearchField: boolean,
|
|
631
|
+
assetMentionSearchQuery: string,
|
|
632
|
+
assetMentionRows: Array<AssetMentionRowOfPageViewState>,
|
|
633
|
+
showToastMessage: boolean,
|
|
634
|
+
toastMessage: string,
|
|
416
635
|
isPreviewMode: boolean,
|
|
417
636
|
previewUrlBar: string,
|
|
637
|
+
previewUrlBarOpenTabDisabled: boolean,
|
|
418
638
|
previewLoading: boolean,
|
|
419
639
|
previewError: string,
|
|
420
640
|
selectedPreviewPath: string,
|
|
@@ -464,16 +684,17 @@ interface PageViewState {
|
|
|
464
684
|
isVideoRecording: boolean,
|
|
465
685
|
videoRecordTooltip: string,
|
|
466
686
|
videoRecordDisabled: boolean,
|
|
687
|
+
showFreezeBtn: boolean,
|
|
467
688
|
freezeDisabled: boolean,
|
|
468
689
|
sendToAgentDisabled: boolean,
|
|
469
690
|
sendToAgentTooltip: string,
|
|
470
691
|
showVideoReviewModal: boolean,
|
|
692
|
+
showVideoReviewCloseConfirm: boolean,
|
|
471
693
|
videoReviewPreparing: boolean,
|
|
472
694
|
videoReviewReady: boolean,
|
|
473
695
|
videoReviewError: boolean,
|
|
474
696
|
videoReviewErrorText: string,
|
|
475
697
|
videoReviewObjectUrl: string,
|
|
476
|
-
videoModalToolNoneOn: boolean,
|
|
477
698
|
videoModalToolPointOn: boolean,
|
|
478
699
|
videoModalToolAreaOn: boolean,
|
|
479
700
|
videoPointDisplayItems: Array<VideoPointDisplayItemOfPageViewState>,
|
|
@@ -523,6 +744,10 @@ interface PageViewState {
|
|
|
523
744
|
showSnapshotSubmitError: boolean,
|
|
524
745
|
snapshotSubmitError: string,
|
|
525
746
|
showAddPageComposer: boolean,
|
|
747
|
+
showAddPageContentTab: boolean,
|
|
748
|
+
showAddPageDesignTab: boolean,
|
|
749
|
+
addPageContentTabClass: string,
|
|
750
|
+
addPageDesignTabClass: string,
|
|
526
751
|
addPageRoute: string,
|
|
527
752
|
addPageContentMd: string,
|
|
528
753
|
addPageDesignMd: string,
|
|
@@ -557,10 +782,6 @@ interface PageViewState {
|
|
|
557
782
|
projectLocalPluginName: string,
|
|
558
783
|
projectLocalPackageName: string,
|
|
559
784
|
projectLocalPath: string,
|
|
560
|
-
showAddMenuPanel: boolean,
|
|
561
|
-
showAddMenuChips: boolean,
|
|
562
|
-
addMenuChipRows: Array<AddMenuChipRowOfPageViewState>,
|
|
563
|
-
showAddMenuEmptyHint: boolean,
|
|
564
785
|
addMenuParamCollisionWarning: string,
|
|
565
786
|
addMenuRouteParamHint: string,
|
|
566
787
|
showAddMenuRouteParams: boolean,
|
|
@@ -590,12 +811,24 @@ interface PageViewState {
|
|
|
590
811
|
briefFillContextNotes: string,
|
|
591
812
|
briefFillPopoverError: string,
|
|
592
813
|
showBriefFillPopoverError: boolean,
|
|
593
|
-
|
|
814
|
+
briefFillContentDisabled: boolean,
|
|
815
|
+
briefFillDesignDisabled: boolean,
|
|
594
816
|
briefFillInputDisabled: boolean,
|
|
595
817
|
briefFillDropzoneClass: string,
|
|
596
818
|
addPageBriefFillGenerateDisabled: boolean,
|
|
597
|
-
|
|
598
|
-
|
|
819
|
+
contentTabGeneratingHint: string,
|
|
820
|
+
designTabGeneratingHint: string,
|
|
821
|
+
showContentTabGeneratingHint: boolean,
|
|
822
|
+
showDesignTabGeneratingHint: boolean,
|
|
823
|
+
contentGenError: string,
|
|
824
|
+
designGenError: string,
|
|
825
|
+
showContentTabGenError: boolean,
|
|
826
|
+
showDesignTabGenError: boolean,
|
|
827
|
+
addPageContentMdDisabled: boolean,
|
|
828
|
+
addPageDesignMdDisabled: boolean,
|
|
829
|
+
addPageReferencesDisabled: boolean,
|
|
830
|
+
addPageReferencesDropzoneClass: string,
|
|
831
|
+
showAddPageDiscardConfirm: boolean,
|
|
599
832
|
showBriefFillThumbnails: boolean,
|
|
600
833
|
addPageBriefFillThumbRows: Array<AddPageBriefFillThumbRowOfPageViewState>,
|
|
601
834
|
showSuggestedRouteBanner: boolean,
|
|
@@ -617,10 +850,13 @@ interface PageElementRefs {
|
|
|
617
850
|
snapshotPanelSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
618
851
|
snapshotPanelDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
619
852
|
snapshotPanelOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
853
|
+
harmonyStageAddBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
620
854
|
harmonyAddPageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
621
855
|
visualAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
622
856
|
stageResizeLeft: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
623
857
|
stageResizeRight: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
858
|
+
harmonyAssetsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
859
|
+
previewUrlBarOpenTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
624
860
|
breakpointDesktopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
625
861
|
breakpointTabletBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
626
862
|
breakpointMobileBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
@@ -628,6 +864,10 @@ interface PageElementRefs {
|
|
|
628
864
|
visualOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
629
865
|
recordingDraftPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
630
866
|
previewCaptureRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
867
|
+
instanceSwitcherDragHandle: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
868
|
+
instanceSwitcherTrigger: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
869
|
+
instanceSwitcherMenu: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
870
|
+
instanceSwitcher: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
631
871
|
clearMarkersCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
632
872
|
clearMarkersConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
633
873
|
visualToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
@@ -649,11 +889,6 @@ interface PageElementRefs {
|
|
|
649
889
|
outputScroll: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
650
890
|
agentChatInput: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
|
|
651
891
|
agentChatSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
652
|
-
addMenuPickerCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
653
|
-
addMenuPickerSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
654
|
-
addMenuPickerSubCategoryFilters: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
655
|
-
addMenuPickerDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
656
|
-
addMenuPickerOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
657
892
|
projectSettingsCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
658
893
|
projectLocalPluginNameInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
659
894
|
projectLocalPackageInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
@@ -661,17 +896,21 @@ interface PageElementRefs {
|
|
|
661
896
|
projectPluginsPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
662
897
|
projectSettingsOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
663
898
|
addPageCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
899
|
+
addPageContentTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
900
|
+
addPageDesignTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
664
901
|
addPageRouteInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
665
902
|
addPageRouteParamsPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
903
|
+
addMenuPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
666
904
|
addPageSuggestedRouteApplyBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
667
905
|
addPageSuggestedRouteDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
668
|
-
addPageFillContentFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
669
906
|
addPageContentMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
|
|
670
|
-
|
|
671
|
-
|
|
907
|
+
addPageBriefFillStopContentBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
908
|
+
addPageFillContentFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
672
909
|
addPageDesignMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
|
|
673
|
-
|
|
910
|
+
addPageBriefFillStopDesignBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
911
|
+
addPageFillDesignFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
674
912
|
addPageAttachReferenceBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
913
|
+
addPageReferenceDrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
675
914
|
addPageReferenceFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
676
915
|
addPageAttachmentsList: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
677
916
|
addPageCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
@@ -684,12 +923,48 @@ interface PageElementRefs {
|
|
|
684
923
|
addPageBriefFillCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
685
924
|
addPageBriefFillGenerateBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
686
925
|
addPageBriefFillPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
926
|
+
addPageDiscardDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
927
|
+
addPageDiscardConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
928
|
+
addPageDiscardConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
687
929
|
addPageSlideover: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
688
930
|
addPageOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
931
|
+
pageInfoInspectorBackBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
932
|
+
pageInfoPanelCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
933
|
+
pageInfoPanelHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
934
|
+
pageInfoRouteEditBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
935
|
+
pageInfoRouteApproveBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
936
|
+
pageInfoRouteCancelEditBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
937
|
+
pageInfoRouteInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
938
|
+
pageInfoRouteParamCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
939
|
+
pageInfoRouteParamConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
940
|
+
pageInfoPanelBody: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
941
|
+
pageInfoPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
942
|
+
pageInfoRouteChangeCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
943
|
+
pageInfoRouteChangeConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
944
|
+
pageInfoRouteChangeConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
945
|
+
addMenuDockBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
946
|
+
addMenuDockCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
947
|
+
addMenuDockHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
948
|
+
addMenuDockSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
949
|
+
addMenuDockPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
950
|
+
assetMentionHeaderBack: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
951
|
+
assetMentionHeaderSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
952
|
+
assetMentionHeaderSearchClose: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
953
|
+
assetMentionHeaderSearchToggle: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
954
|
+
assetMentionPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
955
|
+
stageDropGhost: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
956
|
+
assetMentionCaretMirrorSpan: HTMLElementProxy<PageViewState, HTMLSpanElement>,
|
|
957
|
+
assetMentionCaretMirror: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
958
|
+
addMenuPickerBackBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
959
|
+
addMenuPickerCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
960
|
+
addMenuPickerSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
961
|
+
addMenuPickerSubCategoryFilters: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
962
|
+
addMenuPickerDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
963
|
+
addMenuPickerOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
964
|
+
addMenuPickerDismissConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
689
965
|
filePreviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
690
966
|
filePreviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
691
967
|
videoReviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
692
|
-
videoModalToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
693
968
|
videoModalToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
694
969
|
videoModalToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
695
970
|
videoReviewAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
@@ -699,9 +974,12 @@ interface PageElementRefs {
|
|
|
699
974
|
videoPlayPauseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
700
975
|
videoTimeline: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
701
976
|
videoReviewTimelineWrap: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
702
|
-
|
|
977
|
+
videoReviewCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
703
978
|
videoReviewSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
704
979
|
videoReviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
980
|
+
videoReviewCloseConfirmCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
981
|
+
videoReviewCloseConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
982
|
+
videoReviewCloseConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
705
983
|
snapshotCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
706
984
|
snapshotToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
707
985
|
snapshotToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
@@ -716,6 +994,7 @@ interface PageElementRefs {
|
|
|
716
994
|
snapshotCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
717
995
|
snapshotSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
718
996
|
snapshotBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
997
|
+
appRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
719
998
|
visualPointDisplayItems: {
|
|
720
999
|
visualAnnotationMarker: HTMLElementCollectionProxy<VisualPointDisplayItemOfPageViewState, HTMLDivElement>
|
|
721
1000
|
},
|
|
@@ -725,6 +1004,15 @@ interface PageElementRefs {
|
|
|
725
1004
|
visualAnnotationRows: {
|
|
726
1005
|
annotationRow: HTMLElementCollectionProxy<VisualAnnotationRowOfPageViewState, HTMLDivElement>
|
|
727
1006
|
},
|
|
1007
|
+
assetMentionRows: {
|
|
1008
|
+
assetMentionRow: HTMLElementCollectionProxy<AssetMentionRowOfPageViewState, HTMLButtonElement>
|
|
1009
|
+
},
|
|
1010
|
+
videoPointDisplayItems: {
|
|
1011
|
+
visualAnnotationMarker: HTMLElementCollectionProxy<VideoPointDisplayItemOfPageViewState, HTMLDivElement>
|
|
1012
|
+
},
|
|
1013
|
+
videoAreaDisplayItems: {
|
|
1014
|
+
visualAnnotationMarker: HTMLElementCollectionProxy<VideoAreaDisplayItemOfPageViewState, HTMLDivElement>
|
|
1015
|
+
},
|
|
728
1016
|
videoAnnotationRows: {
|
|
729
1017
|
videoAnnotationRow: HTMLElementCollectionProxy<VideoAnnotationRowOfPageViewState, HTMLDivElement>
|
|
730
1018
|
},
|