@jay-framework/aiditor 0.20.0 → 0.22.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/agent-kit-template/plugin/aiditor-add-menu.md +470 -63
- package/dist/index.client.d.ts +254 -16
- package/dist/index.client.js +3323 -1359
- package/dist/index.d.ts +29 -29
- package/dist/index.js +180 -162
- package/dist/pages/aiditor/page.css +127 -22
- package/dist/pages/aiditor/page.jay-html +853 -171
- package/dist/pages/aiditor/page.jay-html.d.ts +254 -16
- package/package.json +11 -10
- package/plugin.yaml +2 -3
package/dist/index.client.d.ts
CHANGED
|
@@ -23,7 +23,8 @@ 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
30
|
interface InstanceSwitcherRowOfPageViewState {
|
|
@@ -66,7 +67,7 @@ interface AddMenuPickerSubCategoryFilterRowOfPageViewState {
|
|
|
66
67
|
cssClass: string
|
|
67
68
|
}
|
|
68
69
|
|
|
69
|
-
interface
|
|
70
|
+
interface StripCellOfAddMenuPickerBrowseBlockOfPageViewState {
|
|
70
71
|
rowKey: string,
|
|
71
72
|
isSectionHeader: boolean,
|
|
72
73
|
label: string,
|
|
@@ -76,11 +77,111 @@ interface AddMenuPickerBrowseRowOfPageViewState {
|
|
|
76
77
|
showBrowseOnly: boolean,
|
|
77
78
|
isItemSelected: boolean,
|
|
78
79
|
cardCssClass: string,
|
|
80
|
+
showImage: boolean,
|
|
81
|
+
showGif: boolean,
|
|
82
|
+
showHtmlFragment: boolean,
|
|
83
|
+
imageUrl: string,
|
|
84
|
+
gifUrl: string,
|
|
85
|
+
posterUrl: string,
|
|
86
|
+
previewHtml: string,
|
|
87
|
+
showGifAutoplay: boolean,
|
|
88
|
+
showGifPoster: boolean,
|
|
89
|
+
showGifReducedInfoIcon: boolean,
|
|
90
|
+
showThumbnail: boolean,
|
|
91
|
+
showInfoIcon: boolean,
|
|
92
|
+
thumbnailUrl: string,
|
|
93
|
+
isAnimatedThumbnail: boolean,
|
|
94
|
+
thumbCssClass: string,
|
|
95
|
+
browseSize: string
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
interface QuadRowOfBandSlotOfAddMenuPickerBrowseBlockOfPageViewState {
|
|
99
|
+
rowKey: string,
|
|
100
|
+
label: string,
|
|
101
|
+
itemId: string,
|
|
102
|
+
isPickable: boolean,
|
|
103
|
+
showPickable: boolean,
|
|
104
|
+
isItemSelected: boolean,
|
|
105
|
+
cardCssClass: string,
|
|
106
|
+
showImage: boolean,
|
|
107
|
+
showGif: boolean,
|
|
108
|
+
showHtmlFragment: boolean,
|
|
109
|
+
imageUrl: string,
|
|
110
|
+
gifUrl: string,
|
|
111
|
+
posterUrl: string,
|
|
112
|
+
previewHtml: string,
|
|
113
|
+
showGifAutoplay: boolean,
|
|
114
|
+
showGifPoster: boolean,
|
|
115
|
+
showGifReducedInfoIcon: boolean,
|
|
116
|
+
showThumbnail: boolean,
|
|
117
|
+
showInfoIcon: boolean,
|
|
118
|
+
thumbnailUrl: string,
|
|
119
|
+
isAnimatedThumbnail: boolean,
|
|
120
|
+
thumbCssClass: string,
|
|
121
|
+
browseSize: string
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
interface BandSlotOfAddMenuPickerBrowseBlockOfPageViewState {
|
|
125
|
+
slotKey: string,
|
|
126
|
+
slotKind: string,
|
|
127
|
+
slotCssClass: string,
|
|
128
|
+
showMediumSlot: boolean,
|
|
129
|
+
showLargeSlot: boolean,
|
|
130
|
+
showSmallQuad: boolean,
|
|
131
|
+
rowKey: string,
|
|
132
|
+
label: string,
|
|
133
|
+
itemId: string,
|
|
134
|
+
isPickable: boolean,
|
|
135
|
+
showPickable: boolean,
|
|
136
|
+
isItemSelected: boolean,
|
|
137
|
+
cardCssClass: string,
|
|
138
|
+
showImage: boolean,
|
|
139
|
+
showGif: boolean,
|
|
140
|
+
showHtmlFragment: boolean,
|
|
141
|
+
imageUrl: string,
|
|
142
|
+
gifUrl: string,
|
|
143
|
+
posterUrl: string,
|
|
144
|
+
previewHtml: string,
|
|
145
|
+
showGifAutoplay: boolean,
|
|
146
|
+
showGifPoster: boolean,
|
|
147
|
+
showGifReducedInfoIcon: boolean,
|
|
79
148
|
showThumbnail: boolean,
|
|
80
149
|
showInfoIcon: boolean,
|
|
81
150
|
thumbnailUrl: string,
|
|
82
151
|
isAnimatedThumbnail: boolean,
|
|
83
|
-
thumbCssClass: string
|
|
152
|
+
thumbCssClass: string,
|
|
153
|
+
browseSize: string,
|
|
154
|
+
quadRows: Array<QuadRowOfBandSlotOfAddMenuPickerBrowseBlockOfPageViewState>
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
interface AddMenuPickerBrowseBlockOfPageViewState {
|
|
158
|
+
blockKey: string,
|
|
159
|
+
kind: string,
|
|
160
|
+
showSectionHeader: boolean,
|
|
161
|
+
showBand: boolean,
|
|
162
|
+
sectionLabel: string,
|
|
163
|
+
bandKind: string,
|
|
164
|
+
bandCssClass: string,
|
|
165
|
+
showSmallStrip: boolean,
|
|
166
|
+
showMediumBand: boolean,
|
|
167
|
+
stripCells: Array<StripCellOfAddMenuPickerBrowseBlockOfPageViewState>,
|
|
168
|
+
bandSlots: Array<BandSlotOfAddMenuPickerBrowseBlockOfPageViewState>
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
interface AddMenuPickerBrowseBreadcrumbSegmentOfPageViewState {
|
|
172
|
+
segmentKey: string,
|
|
173
|
+
navKey: string,
|
|
174
|
+
label: string,
|
|
175
|
+
isLast: boolean
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
interface AddMenuPickerBrowseFolderRowOfPageViewState {
|
|
179
|
+
rowKey: string,
|
|
180
|
+
navKey: string,
|
|
181
|
+
segment: string,
|
|
182
|
+
label: string,
|
|
183
|
+
itemCountLabel: string,
|
|
184
|
+
totalItemCount: number
|
|
84
185
|
}
|
|
85
186
|
|
|
86
187
|
interface PageInfoComponentRowOfPageViewState {
|
|
@@ -147,7 +248,7 @@ interface AddMenuDockSubCategoryFilterRowOfPageViewState {
|
|
|
147
248
|
cssClass: string
|
|
148
249
|
}
|
|
149
250
|
|
|
150
|
-
interface
|
|
251
|
+
interface StripCellOfAddMenuDockBrowseBlockOfPageViewState {
|
|
151
252
|
rowKey: string,
|
|
152
253
|
isSectionHeader: boolean,
|
|
153
254
|
label: string,
|
|
@@ -157,11 +258,111 @@ interface AddMenuDockBrowseRowOfPageViewState {
|
|
|
157
258
|
showBrowseOnly: boolean,
|
|
158
259
|
isItemSelected: boolean,
|
|
159
260
|
cardCssClass: string,
|
|
261
|
+
showImage: boolean,
|
|
262
|
+
showGif: boolean,
|
|
263
|
+
showHtmlFragment: boolean,
|
|
264
|
+
imageUrl: string,
|
|
265
|
+
gifUrl: string,
|
|
266
|
+
posterUrl: string,
|
|
267
|
+
previewHtml: string,
|
|
268
|
+
showGifAutoplay: boolean,
|
|
269
|
+
showGifPoster: boolean,
|
|
270
|
+
showGifReducedInfoIcon: boolean,
|
|
160
271
|
showThumbnail: boolean,
|
|
161
272
|
showInfoIcon: boolean,
|
|
162
273
|
thumbnailUrl: string,
|
|
163
274
|
isAnimatedThumbnail: boolean,
|
|
164
|
-
thumbCssClass: string
|
|
275
|
+
thumbCssClass: string,
|
|
276
|
+
browseSize: string
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
interface QuadRowOfBandSlotOfAddMenuDockBrowseBlockOfPageViewState {
|
|
280
|
+
rowKey: string,
|
|
281
|
+
label: string,
|
|
282
|
+
itemId: string,
|
|
283
|
+
isPickable: boolean,
|
|
284
|
+
showPickable: boolean,
|
|
285
|
+
isItemSelected: boolean,
|
|
286
|
+
cardCssClass: string,
|
|
287
|
+
showImage: boolean,
|
|
288
|
+
showGif: boolean,
|
|
289
|
+
showHtmlFragment: boolean,
|
|
290
|
+
imageUrl: string,
|
|
291
|
+
gifUrl: string,
|
|
292
|
+
posterUrl: string,
|
|
293
|
+
previewHtml: string,
|
|
294
|
+
showGifAutoplay: boolean,
|
|
295
|
+
showGifPoster: boolean,
|
|
296
|
+
showGifReducedInfoIcon: boolean,
|
|
297
|
+
showThumbnail: boolean,
|
|
298
|
+
showInfoIcon: boolean,
|
|
299
|
+
thumbnailUrl: string,
|
|
300
|
+
isAnimatedThumbnail: boolean,
|
|
301
|
+
thumbCssClass: string,
|
|
302
|
+
browseSize: string
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
interface BandSlotOfAddMenuDockBrowseBlockOfPageViewState {
|
|
306
|
+
slotKey: string,
|
|
307
|
+
slotKind: string,
|
|
308
|
+
slotCssClass: string,
|
|
309
|
+
showMediumSlot: boolean,
|
|
310
|
+
showLargeSlot: boolean,
|
|
311
|
+
showSmallQuad: boolean,
|
|
312
|
+
rowKey: string,
|
|
313
|
+
label: string,
|
|
314
|
+
itemId: string,
|
|
315
|
+
isPickable: boolean,
|
|
316
|
+
showPickable: boolean,
|
|
317
|
+
isItemSelected: boolean,
|
|
318
|
+
cardCssClass: string,
|
|
319
|
+
showImage: boolean,
|
|
320
|
+
showGif: boolean,
|
|
321
|
+
showHtmlFragment: boolean,
|
|
322
|
+
imageUrl: string,
|
|
323
|
+
gifUrl: string,
|
|
324
|
+
posterUrl: string,
|
|
325
|
+
previewHtml: string,
|
|
326
|
+
showGifAutoplay: boolean,
|
|
327
|
+
showGifPoster: boolean,
|
|
328
|
+
showGifReducedInfoIcon: boolean,
|
|
329
|
+
showThumbnail: boolean,
|
|
330
|
+
showInfoIcon: boolean,
|
|
331
|
+
thumbnailUrl: string,
|
|
332
|
+
isAnimatedThumbnail: boolean,
|
|
333
|
+
thumbCssClass: string,
|
|
334
|
+
browseSize: string,
|
|
335
|
+
quadRows: Array<QuadRowOfBandSlotOfAddMenuDockBrowseBlockOfPageViewState>
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
interface AddMenuDockBrowseBlockOfPageViewState {
|
|
339
|
+
blockKey: string,
|
|
340
|
+
kind: string,
|
|
341
|
+
showSectionHeader: boolean,
|
|
342
|
+
showBand: boolean,
|
|
343
|
+
sectionLabel: string,
|
|
344
|
+
bandKind: string,
|
|
345
|
+
bandCssClass: string,
|
|
346
|
+
showSmallStrip: boolean,
|
|
347
|
+
showMediumBand: boolean,
|
|
348
|
+
stripCells: Array<StripCellOfAddMenuDockBrowseBlockOfPageViewState>,
|
|
349
|
+
bandSlots: Array<BandSlotOfAddMenuDockBrowseBlockOfPageViewState>
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
interface AddMenuDockBrowseBreadcrumbSegmentOfPageViewState {
|
|
353
|
+
segmentKey: string,
|
|
354
|
+
navKey: string,
|
|
355
|
+
label: string,
|
|
356
|
+
isLast: boolean
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
interface AddMenuDockBrowseFolderRowOfPageViewState {
|
|
360
|
+
rowKey: string,
|
|
361
|
+
navKey: string,
|
|
362
|
+
segment: string,
|
|
363
|
+
label: string,
|
|
364
|
+
itemCountLabel: string,
|
|
365
|
+
totalItemCount: number
|
|
165
366
|
}
|
|
166
367
|
|
|
167
368
|
interface AssetMentionRowOfPageViewState {
|
|
@@ -202,7 +403,8 @@ interface AttachmentChipOfVisualAnnotationRowOfPageViewState {
|
|
|
202
403
|
key: string,
|
|
203
404
|
name: string,
|
|
204
405
|
thumbUrl: string,
|
|
205
|
-
annotationId: string
|
|
406
|
+
annotationId: string,
|
|
407
|
+
numberLabel: string
|
|
206
408
|
}
|
|
207
409
|
|
|
208
410
|
interface MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState {
|
|
@@ -251,7 +453,8 @@ interface AttachmentChipOfRecordingDraftUiOfPageViewState {
|
|
|
251
453
|
key: string,
|
|
252
454
|
name: string,
|
|
253
455
|
thumbUrl: string,
|
|
254
|
-
annotationId: string
|
|
456
|
+
annotationId: string,
|
|
457
|
+
numberLabel: string
|
|
255
458
|
}
|
|
256
459
|
|
|
257
460
|
interface RecordingDraftUiOfPageViewState {
|
|
@@ -269,7 +472,8 @@ interface RecordingDraftAttachmentChipOfPageViewState {
|
|
|
269
472
|
key: string,
|
|
270
473
|
name: string,
|
|
271
474
|
thumbUrl: string,
|
|
272
|
-
annotationId: string
|
|
475
|
+
annotationId: string,
|
|
476
|
+
numberLabel: string
|
|
273
477
|
}
|
|
274
478
|
|
|
275
479
|
interface VideoPointDisplayItemOfPageViewState {
|
|
@@ -296,7 +500,8 @@ interface AttachmentChipOfVideoAnnotationRowOfPageViewState {
|
|
|
296
500
|
key: string,
|
|
297
501
|
name: string,
|
|
298
502
|
thumbUrl: string,
|
|
299
|
-
annotationId: string
|
|
503
|
+
annotationId: string,
|
|
504
|
+
numberLabel: string
|
|
300
505
|
}
|
|
301
506
|
|
|
302
507
|
interface MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState {
|
|
@@ -371,7 +576,8 @@ interface AttachmentChipOfSnapshotAnnotationItemOfPageViewState {
|
|
|
371
576
|
key: string,
|
|
372
577
|
name: string,
|
|
373
578
|
thumbUrl: string,
|
|
374
|
-
annotationId: string
|
|
579
|
+
annotationId: string,
|
|
580
|
+
numberLabel: string
|
|
375
581
|
}
|
|
376
582
|
|
|
377
583
|
interface MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState {
|
|
@@ -547,7 +753,12 @@ interface PageViewState {
|
|
|
547
753
|
addMenuPickerBrowseLayoutClass: string,
|
|
548
754
|
addMenuPickerLeftNavRows: Array<AddMenuPickerLeftNavRowOfPageViewState>,
|
|
549
755
|
addMenuPickerSubCategoryFilterRows: Array<AddMenuPickerSubCategoryFilterRowOfPageViewState>,
|
|
550
|
-
|
|
756
|
+
addMenuPickerBrowseBlocks: Array<AddMenuPickerBrowseBlockOfPageViewState>,
|
|
757
|
+
showAddMenuPickerBreadcrumb: boolean,
|
|
758
|
+
showAddMenuPickerFolderGrid: boolean,
|
|
759
|
+
showAddMenuPickerEmptyFolder: boolean,
|
|
760
|
+
addMenuPickerBrowseBreadcrumbSegments: Array<AddMenuPickerBrowseBreadcrumbSegmentOfPageViewState>,
|
|
761
|
+
addMenuPickerBrowseFolderRows: Array<AddMenuPickerBrowseFolderRowOfPageViewState>,
|
|
551
762
|
showPageInfoPanel: boolean,
|
|
552
763
|
pageInfoPanelLeft: number,
|
|
553
764
|
pageInfoPanelTop: number,
|
|
@@ -612,12 +823,18 @@ interface PageViewState {
|
|
|
612
823
|
addMenuDockLoadMoreLabel: string,
|
|
613
824
|
addMenuDockLeftNavRows: Array<AddMenuDockLeftNavRowOfPageViewState>,
|
|
614
825
|
addMenuDockSubCategoryFilterRows: Array<AddMenuDockSubCategoryFilterRowOfPageViewState>,
|
|
615
|
-
|
|
826
|
+
addMenuDockBrowseBlocks: Array<AddMenuDockBrowseBlockOfPageViewState>,
|
|
827
|
+
showAddMenuDockBreadcrumb: boolean,
|
|
828
|
+
showAddMenuDockFolderGrid: boolean,
|
|
829
|
+
showAddMenuDockEmptyFolder: boolean,
|
|
830
|
+
addMenuDockBrowseBreadcrumbSegments: Array<AddMenuDockBrowseBreadcrumbSegmentOfPageViewState>,
|
|
831
|
+
addMenuDockBrowseFolderRows: Array<AddMenuDockBrowseFolderRowOfPageViewState>,
|
|
616
832
|
showAddMenuDockSearchMode: boolean,
|
|
617
833
|
addMenuDockSearchSummary: string,
|
|
618
834
|
showAssetMentionPanel: boolean,
|
|
619
835
|
assetMentionLeft: number,
|
|
620
836
|
assetMentionTop: number,
|
|
837
|
+
assetMentionOpensAbove: boolean,
|
|
621
838
|
assetMentionHeaderTitle: string,
|
|
622
839
|
showAssetMentionHeaderBack: boolean,
|
|
623
840
|
showAssetMentionSearchField: boolean,
|
|
@@ -627,6 +844,7 @@ interface PageViewState {
|
|
|
627
844
|
toastMessage: string,
|
|
628
845
|
isPreviewMode: boolean,
|
|
629
846
|
previewUrlBar: string,
|
|
847
|
+
previewUrlBarOpenTabDisabled: boolean,
|
|
630
848
|
previewLoading: boolean,
|
|
631
849
|
previewError: string,
|
|
632
850
|
selectedPreviewPath: string,
|
|
@@ -803,12 +1021,24 @@ interface PageViewState {
|
|
|
803
1021
|
briefFillContextNotes: string,
|
|
804
1022
|
briefFillPopoverError: string,
|
|
805
1023
|
showBriefFillPopoverError: boolean,
|
|
806
|
-
|
|
1024
|
+
briefFillContentDisabled: boolean,
|
|
1025
|
+
briefFillDesignDisabled: boolean,
|
|
807
1026
|
briefFillInputDisabled: boolean,
|
|
808
1027
|
briefFillDropzoneClass: string,
|
|
809
1028
|
addPageBriefFillGenerateDisabled: boolean,
|
|
810
|
-
|
|
811
|
-
|
|
1029
|
+
contentTabGeneratingHint: string,
|
|
1030
|
+
designTabGeneratingHint: string,
|
|
1031
|
+
showContentTabGeneratingHint: boolean,
|
|
1032
|
+
showDesignTabGeneratingHint: boolean,
|
|
1033
|
+
contentGenError: string,
|
|
1034
|
+
designGenError: string,
|
|
1035
|
+
showContentTabGenError: boolean,
|
|
1036
|
+
showDesignTabGenError: boolean,
|
|
1037
|
+
addPageContentMdDisabled: boolean,
|
|
1038
|
+
addPageDesignMdDisabled: boolean,
|
|
1039
|
+
addPageReferencesDisabled: boolean,
|
|
1040
|
+
addPageReferencesDropzoneClass: string,
|
|
1041
|
+
showAddPageDiscardConfirm: boolean,
|
|
812
1042
|
showBriefFillThumbnails: boolean,
|
|
813
1043
|
addPageBriefFillThumbRows: Array<AddPageBriefFillThumbRowOfPageViewState>,
|
|
814
1044
|
showSuggestedRouteBanner: boolean,
|
|
@@ -836,6 +1066,7 @@ interface PageElementRefs {
|
|
|
836
1066
|
stageResizeLeft: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
837
1067
|
stageResizeRight: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
838
1068
|
harmonyAssetsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
1069
|
+
previewUrlBarOpenTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
839
1070
|
breakpointDesktopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
840
1071
|
breakpointTabletBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
841
1072
|
breakpointMobileBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
@@ -883,8 +1114,10 @@ interface PageElementRefs {
|
|
|
883
1114
|
addPageSuggestedRouteApplyBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
884
1115
|
addPageSuggestedRouteDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
885
1116
|
addPageContentMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
|
|
1117
|
+
addPageBriefFillStopContentBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
886
1118
|
addPageFillContentFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
887
1119
|
addPageDesignMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
|
|
1120
|
+
addPageBriefFillStopDesignBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
888
1121
|
addPageFillDesignFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
889
1122
|
addPageAttachReferenceBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
890
1123
|
addPageReferenceDrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
@@ -900,6 +1133,9 @@ interface PageElementRefs {
|
|
|
900
1133
|
addPageBriefFillCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
901
1134
|
addPageBriefFillGenerateBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
902
1135
|
addPageBriefFillPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
1136
|
+
addPageDiscardDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
1137
|
+
addPageDiscardConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
1138
|
+
addPageDiscardConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
903
1139
|
addPageSlideover: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
904
1140
|
addPageOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
905
1141
|
pageInfoInspectorBackBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
@@ -920,6 +1156,7 @@ interface PageElementRefs {
|
|
|
920
1156
|
addMenuDockCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
921
1157
|
addMenuDockHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
922
1158
|
addMenuDockSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
1159
|
+
addMenuDockBrowseContent: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
923
1160
|
addMenuDockPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
924
1161
|
assetMentionHeaderBack: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
925
1162
|
assetMentionHeaderSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
@@ -933,15 +1170,16 @@ interface PageElementRefs {
|
|
|
933
1170
|
addMenuPickerCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
934
1171
|
addMenuPickerSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
935
1172
|
addMenuPickerSubCategoryFilters: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
1173
|
+
addMenuPickerBrowseContent: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
936
1174
|
addMenuPickerDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
937
1175
|
addMenuPickerOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
938
1176
|
addMenuPickerDismissConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
939
1177
|
filePreviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
940
1178
|
filePreviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
941
1179
|
videoReviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
1180
|
+
videoReviewAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
942
1181
|
videoModalToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
943
1182
|
videoModalToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
944
|
-
videoReviewAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
945
1183
|
videoReviewPlayer: HTMLElementProxy<PageViewState, HTMLVideoElement>,
|
|
946
1184
|
videoReviewOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
947
1185
|
videoReviewCaptureRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
|