@jay-framework/aiditor 0.19.7 → 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.
- 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 +296 -34
- package/dist/index.client.js +8606 -2346
- package/dist/index.d.ts +129 -2
- package/dist/index.js +728 -58
- package/dist/pages/aiditor/page.css +1048 -49
- package/dist/pages/aiditor/page.jay-html +2486 -603
- package/dist/pages/aiditor/page.jay-html.d.ts +1013 -0
- package/package.json +18 -9
- package/plugin.yaml +12 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
name: syncDetectedPageAssetsAction
|
|
2
|
+
description: Merge auto-detected page components into page assets registry
|
|
3
|
+
|
|
4
|
+
inputSchema:
|
|
5
|
+
contextKey: string
|
|
6
|
+
pageRoute: string
|
|
7
|
+
renderedUrl: string
|
|
8
|
+
jayHtmlPath: string
|
|
9
|
+
|
|
10
|
+
outputSchema:
|
|
11
|
+
file: object
|
|
12
|
+
detectedCount: number
|
|
@@ -36,8 +36,32 @@ items:
|
|
|
36
36
|
packageName: "@jay-framework/wix-stores"
|
|
37
37
|
subCategory: Components # optional navigation
|
|
38
38
|
thumbnail: thumbnails/... # optional UI hint
|
|
39
|
+
interaction: # optional — Design Log #25
|
|
40
|
+
mode: reference | stage-place
|
|
41
|
+
persistOnPage: true # deprecated DL #26 — accepted but ignored
|
|
42
|
+
stagePromptTemplate: | # stage-place only — prefilled marker instruction
|
|
43
|
+
Add spring effect at this location.
|
|
39
44
|
```
|
|
40
45
|
|
|
46
|
+
**`interaction` (optional, DL #25):**
|
|
47
|
+
|
|
48
|
+
| Field | Values | Default |
|
|
49
|
+
| --------------------- | ----------------------------------------------------------------------------- | ----------- |
|
|
50
|
+
| `mode` | `reference` — `@` mention in markers; click in + Add dock when marker focused | `reference` |
|
|
51
|
+
| | `stage-place` — click or drag onto preview creates a marker | |
|
|
52
|
+
| `persistOnPage` | **Deprecated (DL #26)** — ignored; no disk registry | n/a |
|
|
53
|
+
| `stagePromptTemplate` | Prefilled marker instruction for `stage-place` | item title |
|
|
54
|
+
|
|
55
|
+
## AIditor surfaces (DL #26)
|
|
56
|
+
|
|
57
|
+
| Surface | Purpose | Plugin guidance |
|
|
58
|
+
| -------------------- | ----------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
|
|
59
|
+
| **Page Info** | Route + components from `jay-html`; contract explorer | Headless contracts appear automatically when in template; no catalog entry required for detection |
|
|
60
|
+
| **+ Add dock** | Visual placement | `interaction.mode: stage-place` + `stagePromptTemplate` for effects/media that land on canvas |
|
|
61
|
+
| **`@` autocomplete** | Full catalog reference | `mode: reference` (default); categories / high-cardinality → rely on `@` only (`subCategory: Categories` filtered from + Add grid) |
|
|
62
|
+
|
|
63
|
+
Do **not** rely on page Assets registry or `persistOnPage` for disk persistence — request-level `addMenuAttachments` and `pageComponents` (from `jay-html`) are submitted instead.
|
|
64
|
+
|
|
41
65
|
**Required:** `id`, `title`, `category`, `prompt`
|
|
42
66
|
|
|
43
67
|
**Rejected (anti-patterns):** `kind`, `parameters`, `component`, `allowedScopes`, `{{parameters.*}}`
|
package/dist/index.client.d.ts
CHANGED
|
@@ -26,10 +26,10 @@ interface FilteredPageRouteRowOfPageViewState {
|
|
|
26
26
|
cssClass: string
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
interface
|
|
29
|
+
interface InstanceSwitcherRowOfPageViewState {
|
|
30
30
|
path: string,
|
|
31
|
+
label: string,
|
|
31
32
|
isSelected: boolean,
|
|
32
|
-
checkGlyph: string,
|
|
33
33
|
cssClass: string
|
|
34
34
|
}
|
|
35
35
|
|
|
@@ -46,6 +46,8 @@ interface AddMenuPickerLeftNavRowOfPageViewState {
|
|
|
46
46
|
navKey: string,
|
|
47
47
|
label: string,
|
|
48
48
|
itemCount: number,
|
|
49
|
+
selectedCount: number,
|
|
50
|
+
showSelectedCount: boolean,
|
|
49
51
|
isSelected: boolean,
|
|
50
52
|
cssClass: string
|
|
51
53
|
}
|
|
@@ -55,7 +57,11 @@ interface AddMenuPickerSubCategoryFilterRowOfPageViewState {
|
|
|
55
57
|
navKey: string,
|
|
56
58
|
label: string,
|
|
57
59
|
itemCount: number,
|
|
60
|
+
selectedCount: number,
|
|
58
61
|
showCount: boolean,
|
|
62
|
+
showSelectedCount: boolean,
|
|
63
|
+
showSubCategoryCount: boolean,
|
|
64
|
+
subCategoryCountLabel: string,
|
|
59
65
|
isSelected: boolean,
|
|
60
66
|
cssClass: string
|
|
61
67
|
}
|
|
@@ -67,7 +73,109 @@ interface AddMenuPickerBrowseRowOfPageViewState {
|
|
|
67
73
|
itemId: string,
|
|
68
74
|
isPickable: boolean,
|
|
69
75
|
showPickable: boolean,
|
|
70
|
-
showBrowseOnly: boolean
|
|
76
|
+
showBrowseOnly: boolean,
|
|
77
|
+
isItemSelected: boolean,
|
|
78
|
+
cardCssClass: string,
|
|
79
|
+
showThumbnail: boolean,
|
|
80
|
+
showInfoIcon: boolean,
|
|
81
|
+
thumbnailUrl: string,
|
|
82
|
+
isAnimatedThumbnail: boolean,
|
|
83
|
+
thumbCssClass: string
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
interface PageInfoComponentRowOfPageViewState {
|
|
87
|
+
rowKey: string,
|
|
88
|
+
detectedKey: string,
|
|
89
|
+
title: string,
|
|
90
|
+
pluginName: string,
|
|
91
|
+
contractName: string,
|
|
92
|
+
componentKey: string,
|
|
93
|
+
showDuplicateBadge: boolean,
|
|
94
|
+
showComponentKey: boolean,
|
|
95
|
+
showContractSubtitle: boolean,
|
|
96
|
+
contractSubtitle: string,
|
|
97
|
+
isSelected: boolean,
|
|
98
|
+
rowClass: string
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
interface PageInfoMissingParamRowOfPageViewState {
|
|
102
|
+
rowKey: string,
|
|
103
|
+
name: string,
|
|
104
|
+
chipLabel: string
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
interface PageInfoRouteParamRowOfPageViewState {
|
|
108
|
+
rowKey: string,
|
|
109
|
+
name: string
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
interface PageInfoInspectorTagRowOfPageViewState {
|
|
113
|
+
rowKey: string,
|
|
114
|
+
tagPath: string,
|
|
115
|
+
tagKind: string,
|
|
116
|
+
tagDescription: string,
|
|
117
|
+
usedInTemplate: boolean,
|
|
118
|
+
tagUsageClass: string,
|
|
119
|
+
showTagSamples: boolean,
|
|
120
|
+
tagSampleText: string,
|
|
121
|
+
showTagBound: boolean,
|
|
122
|
+
showTagAvailable: boolean
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
interface AddMenuDockLeftNavRowOfPageViewState {
|
|
126
|
+
rowKey: string,
|
|
127
|
+
navKey: string,
|
|
128
|
+
label: string,
|
|
129
|
+
itemCount: number,
|
|
130
|
+
selectedCount: number,
|
|
131
|
+
showSelectedCount: boolean,
|
|
132
|
+
isSelected: boolean,
|
|
133
|
+
cssClass: string
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
interface AddMenuDockSubCategoryFilterRowOfPageViewState {
|
|
137
|
+
rowKey: string,
|
|
138
|
+
navKey: string,
|
|
139
|
+
label: string,
|
|
140
|
+
itemCount: number,
|
|
141
|
+
selectedCount: number,
|
|
142
|
+
showCount: boolean,
|
|
143
|
+
showSelectedCount: boolean,
|
|
144
|
+
showSubCategoryCount: boolean,
|
|
145
|
+
subCategoryCountLabel: string,
|
|
146
|
+
isSelected: boolean,
|
|
147
|
+
cssClass: string
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
interface AddMenuDockBrowseRowOfPageViewState {
|
|
151
|
+
rowKey: string,
|
|
152
|
+
isSectionHeader: boolean,
|
|
153
|
+
label: string,
|
|
154
|
+
itemId: string,
|
|
155
|
+
isPickable: boolean,
|
|
156
|
+
showPickable: boolean,
|
|
157
|
+
showBrowseOnly: boolean,
|
|
158
|
+
isItemSelected: boolean,
|
|
159
|
+
cardCssClass: string,
|
|
160
|
+
showThumbnail: boolean,
|
|
161
|
+
showInfoIcon: boolean,
|
|
162
|
+
thumbnailUrl: string,
|
|
163
|
+
isAnimatedThumbnail: boolean,
|
|
164
|
+
thumbCssClass: string
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
interface AssetMentionRowOfPageViewState {
|
|
168
|
+
rowKey: string,
|
|
169
|
+
rowIndex: number,
|
|
170
|
+
rowKind: string,
|
|
171
|
+
title: string,
|
|
172
|
+
subtitle: string,
|
|
173
|
+
thumbnailUrl: string,
|
|
174
|
+
showThumbnail: boolean,
|
|
175
|
+
showInfoIcon: boolean,
|
|
176
|
+
showAtIcon: boolean,
|
|
177
|
+
showNavIcon: boolean,
|
|
178
|
+
cssClass: string
|
|
71
179
|
}
|
|
72
180
|
|
|
73
181
|
interface VisualPointDisplayItemOfPageViewState {
|
|
@@ -101,7 +209,11 @@ interface MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState {
|
|
|
101
209
|
rowKey: string,
|
|
102
210
|
itemId: string,
|
|
103
211
|
title: string,
|
|
104
|
-
subtitle: string
|
|
212
|
+
subtitle: string,
|
|
213
|
+
tooltip: string,
|
|
214
|
+
showThumbnail: boolean,
|
|
215
|
+
showInfoIcon: boolean,
|
|
216
|
+
thumbnailUrl: string
|
|
105
217
|
}
|
|
106
218
|
|
|
107
219
|
interface CrAddMenuRouteParamRowOfVisualAnnotationRowOfPageViewState {
|
|
@@ -164,7 +276,9 @@ interface VideoPointDisplayItemOfPageViewState {
|
|
|
164
276
|
id: string,
|
|
165
277
|
leftPct: number,
|
|
166
278
|
topPct: number,
|
|
167
|
-
indexLabel: string
|
|
279
|
+
indexLabel: string,
|
|
280
|
+
markerOpen: boolean,
|
|
281
|
+
markerEditMode: boolean
|
|
168
282
|
}
|
|
169
283
|
|
|
170
284
|
interface VideoAreaDisplayItemOfPageViewState {
|
|
@@ -173,7 +287,9 @@ interface VideoAreaDisplayItemOfPageViewState {
|
|
|
173
287
|
topPct: number,
|
|
174
288
|
widthPct: number,
|
|
175
289
|
heightPct: number,
|
|
176
|
-
indexLabel: string
|
|
290
|
+
indexLabel: string,
|
|
291
|
+
markerOpen: boolean,
|
|
292
|
+
markerEditMode: boolean
|
|
177
293
|
}
|
|
178
294
|
|
|
179
295
|
interface AttachmentChipOfVideoAnnotationRowOfPageViewState {
|
|
@@ -187,7 +303,11 @@ interface MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState {
|
|
|
187
303
|
rowKey: string,
|
|
188
304
|
itemId: string,
|
|
189
305
|
title: string,
|
|
190
|
-
subtitle: string
|
|
306
|
+
subtitle: string,
|
|
307
|
+
tooltip: string,
|
|
308
|
+
showThumbnail: boolean,
|
|
309
|
+
showInfoIcon: boolean,
|
|
310
|
+
thumbnailUrl: string
|
|
191
311
|
}
|
|
192
312
|
|
|
193
313
|
interface CrAddMenuRouteParamRowOfVideoAnnotationRowOfPageViewState {
|
|
@@ -199,6 +319,7 @@ interface VideoAnnotationRowOfPageViewState {
|
|
|
199
319
|
id: string,
|
|
200
320
|
kindLabel: string,
|
|
201
321
|
instruction: string,
|
|
322
|
+
showPopover: boolean,
|
|
202
323
|
runDisabled: boolean,
|
|
203
324
|
quickSendDisabled: boolean,
|
|
204
325
|
leftPct: number,
|
|
@@ -257,7 +378,11 @@ interface MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState {
|
|
|
257
378
|
rowKey: string,
|
|
258
379
|
itemId: string,
|
|
259
380
|
title: string,
|
|
260
|
-
subtitle: string
|
|
381
|
+
subtitle: string,
|
|
382
|
+
tooltip: string,
|
|
383
|
+
showThumbnail: boolean,
|
|
384
|
+
showInfoIcon: boolean,
|
|
385
|
+
thumbnailUrl: string
|
|
261
386
|
}
|
|
262
387
|
|
|
263
388
|
interface CrAddMenuRouteParamRowOfSnapshotAnnotationItemOfPageViewState {
|
|
@@ -327,14 +452,6 @@ interface ProjectSettingsInstalledRowOfPageViewState {
|
|
|
327
452
|
updateButtonDisabled: boolean
|
|
328
453
|
}
|
|
329
454
|
|
|
330
|
-
interface AddMenuChipRowOfPageViewState {
|
|
331
|
-
rowKey: string,
|
|
332
|
-
itemId: string,
|
|
333
|
-
title: string,
|
|
334
|
-
subtitle: string,
|
|
335
|
-
annotationId?: string
|
|
336
|
-
}
|
|
337
|
-
|
|
338
455
|
interface AddMenuRouteParamRowOfPageViewState {
|
|
339
456
|
rowKey: string,
|
|
340
457
|
name: string
|
|
@@ -378,10 +495,19 @@ interface PageViewState {
|
|
|
378
495
|
pageNavBtnLabel: string,
|
|
379
496
|
pagesPanelSearchQuery: string,
|
|
380
497
|
filteredPageRouteRows: Array<FilteredPageRouteRowOfPageViewState>,
|
|
381
|
-
filteredUrlInstanceRows: Array<FilteredUrlInstanceRowOfPageViewState>,
|
|
382
|
-
showRoutesPanelUrlInstances: boolean,
|
|
383
498
|
showPagesPanelEmptySearch: boolean,
|
|
499
|
+
showInstanceSwitcher: boolean,
|
|
500
|
+
showInstanceSwitcherMenu: boolean,
|
|
501
|
+
instanceSwitcherRows: Array<InstanceSwitcherRowOfPageViewState>,
|
|
502
|
+
instanceSwitcherCurrentLabel: string,
|
|
503
|
+
instanceSwitcherCountLabel: string,
|
|
504
|
+
instanceSwitcherTriggerClass: string,
|
|
505
|
+
instanceSwitcherLeft: string,
|
|
506
|
+
instanceSwitcherTop: string,
|
|
507
|
+
instanceSwitcherTransform: string,
|
|
508
|
+
instanceSwitcherMenuOpensAbove: boolean,
|
|
384
509
|
showSnapshotNav: boolean,
|
|
510
|
+
showSnowflakeFeatures: boolean,
|
|
385
511
|
showSnapshotPanel: boolean,
|
|
386
512
|
snapshotNavBtnClass: string,
|
|
387
513
|
snapshotNavBtnLabel: string,
|
|
@@ -389,6 +515,8 @@ interface PageViewState {
|
|
|
389
515
|
filteredSnapshotRows: Array<FilteredSnapshotRowOfPageViewState>,
|
|
390
516
|
showSnapshotPanelEmptySearch: boolean,
|
|
391
517
|
showAddMenuPickerModal: boolean,
|
|
518
|
+
showAddMenuPickerDismissConfirm: boolean,
|
|
519
|
+
addMenuPickerDismissConfirmMessage: string,
|
|
392
520
|
showAddMenuPickerLoading: boolean,
|
|
393
521
|
showAddMenuPickerEmpty: boolean,
|
|
394
522
|
showAddMenuPickerBrowse: boolean,
|
|
@@ -404,8 +532,15 @@ interface PageViewState {
|
|
|
404
532
|
showAddMenuPickerComponents: boolean,
|
|
405
533
|
showAddMenuPickerNoComponents: boolean,
|
|
406
534
|
showAddMenuPickerNoSearchResults: boolean,
|
|
535
|
+
showAddMenuPickerLoadMore: boolean,
|
|
536
|
+
addMenuPickerLoadMoreLabel: string,
|
|
537
|
+
showAddMenuPickerDone: boolean,
|
|
538
|
+
addMenuPickerDoneDisabled: boolean,
|
|
539
|
+
addMenuPickerDoneLabel: string,
|
|
407
540
|
addMenuPickerDialogClass: string,
|
|
541
|
+
addMenuPickerOverlayClass: string,
|
|
408
542
|
addMenuPickerHeaderTitle: string,
|
|
543
|
+
showAddMenuPickerHeaderBack: boolean,
|
|
409
544
|
addMenuPickerBrowseCategoryTitle: string,
|
|
410
545
|
addMenuPickerSearchSummary: string,
|
|
411
546
|
addMenuPickerSearchQuery: string,
|
|
@@ -413,6 +548,83 @@ interface PageViewState {
|
|
|
413
548
|
addMenuPickerLeftNavRows: Array<AddMenuPickerLeftNavRowOfPageViewState>,
|
|
414
549
|
addMenuPickerSubCategoryFilterRows: Array<AddMenuPickerSubCategoryFilterRowOfPageViewState>,
|
|
415
550
|
addMenuPickerBrowseRows: Array<AddMenuPickerBrowseRowOfPageViewState>,
|
|
551
|
+
showPageInfoPanel: boolean,
|
|
552
|
+
pageInfoPanelLeft: number,
|
|
553
|
+
pageInfoPanelTop: number,
|
|
554
|
+
addMenuDockLeft: number,
|
|
555
|
+
addMenuDockTop: number,
|
|
556
|
+
pageInfoComponentRows: Array<PageInfoComponentRowOfPageViewState>,
|
|
557
|
+
showPageInfoComponentsEmpty: boolean,
|
|
558
|
+
showPageInfoLoading: boolean,
|
|
559
|
+
showPageInfoComponentsLoading: boolean,
|
|
560
|
+
pageInfoDisplayRoute: string,
|
|
561
|
+
pageInfoDraftRoute: string,
|
|
562
|
+
pageInfoRouteFieldClass: string,
|
|
563
|
+
pageInfoRouteProblemTooltip: string,
|
|
564
|
+
showPageInfoRouteProblem: boolean,
|
|
565
|
+
showPageInfoRouteEditing: boolean,
|
|
566
|
+
showPageInfoRouteEditBtn: boolean,
|
|
567
|
+
showPageInfoRouteApproveBtn: boolean,
|
|
568
|
+
showPageInfoRouteCancelEditBtn: boolean,
|
|
569
|
+
showPageInfoRouteMissingParamChips: boolean,
|
|
570
|
+
pageInfoMissingParamRows: Array<PageInfoMissingParamRowOfPageViewState>,
|
|
571
|
+
showPageInfoRouteChangeConfirm: boolean,
|
|
572
|
+
pageInfoRouteChangeConfirmFrom: string,
|
|
573
|
+
pageInfoRouteChangeConfirmTo: string,
|
|
574
|
+
showPageInfoRouteMigration: boolean,
|
|
575
|
+
showPageInfoRouteParams: boolean,
|
|
576
|
+
pageInfoRouteParamRows: Array<PageInfoRouteParamRowOfPageViewState>,
|
|
577
|
+
pageInfoParamCollisionWarning: string,
|
|
578
|
+
pageInfoRouteParamHint: string,
|
|
579
|
+
pageInfoPlannedRoute: string,
|
|
580
|
+
showPageInfoRouteParamConfirm: boolean,
|
|
581
|
+
pageInfoPendingRouteParamTitle: string,
|
|
582
|
+
pageInfoDuplicateKeyWarning: string,
|
|
583
|
+
showPageInfoDuplicateWarning: boolean,
|
|
584
|
+
pageInfoRouteSectionClass: string,
|
|
585
|
+
showPageInfoMainView: boolean,
|
|
586
|
+
showPageInfoInspectorDetail: boolean,
|
|
587
|
+
showPageInfoHeaderBack: boolean,
|
|
588
|
+
pageInfoInspectorDetailTitle: string,
|
|
589
|
+
showPageInfoInspectorLoading: boolean,
|
|
590
|
+
showPageInfoInspectorNoContract: boolean,
|
|
591
|
+
showPageInfoInspectorHasTags: boolean,
|
|
592
|
+
showPageInfoInspectorError: boolean,
|
|
593
|
+
pageInfoInspectorError: string,
|
|
594
|
+
pageInfoInspectorTagRows: Array<PageInfoInspectorTagRowOfPageViewState>,
|
|
595
|
+
showAddMenuDock: boolean,
|
|
596
|
+
showAddMenuDockLoading: boolean,
|
|
597
|
+
showAddMenuDockEmpty: boolean,
|
|
598
|
+
showAddMenuDockBrowse: boolean,
|
|
599
|
+
addMenuDockSearchQuery: string,
|
|
600
|
+
showAddMenuDockBrowseLayout: boolean,
|
|
601
|
+
showAddMenuDockSubCategoryFilters: boolean,
|
|
602
|
+
addMenuDockBrowseCategoryTitle: string,
|
|
603
|
+
showAddMenuDockComponents: boolean,
|
|
604
|
+
showAddMenuDockLoadMore: boolean,
|
|
605
|
+
showAddMenuDockNoComponents: boolean,
|
|
606
|
+
showAddMenuDockNoSearchResults: boolean,
|
|
607
|
+
showAddMenuDockSearchBack: boolean,
|
|
608
|
+
showAddMenuDockSearchClear: boolean,
|
|
609
|
+
showAddMenuDockBrowseTitle: boolean,
|
|
610
|
+
showAddMenuDockSearchSummary: boolean,
|
|
611
|
+
addMenuDockBrowseLayoutClass: string,
|
|
612
|
+
addMenuDockLoadMoreLabel: string,
|
|
613
|
+
addMenuDockLeftNavRows: Array<AddMenuDockLeftNavRowOfPageViewState>,
|
|
614
|
+
addMenuDockSubCategoryFilterRows: Array<AddMenuDockSubCategoryFilterRowOfPageViewState>,
|
|
615
|
+
addMenuDockBrowseRows: Array<AddMenuDockBrowseRowOfPageViewState>,
|
|
616
|
+
showAddMenuDockSearchMode: boolean,
|
|
617
|
+
addMenuDockSearchSummary: string,
|
|
618
|
+
showAssetMentionPanel: boolean,
|
|
619
|
+
assetMentionLeft: number,
|
|
620
|
+
assetMentionTop: number,
|
|
621
|
+
assetMentionHeaderTitle: string,
|
|
622
|
+
showAssetMentionHeaderBack: boolean,
|
|
623
|
+
showAssetMentionSearchField: boolean,
|
|
624
|
+
assetMentionSearchQuery: string,
|
|
625
|
+
assetMentionRows: Array<AssetMentionRowOfPageViewState>,
|
|
626
|
+
showToastMessage: boolean,
|
|
627
|
+
toastMessage: string,
|
|
416
628
|
isPreviewMode: boolean,
|
|
417
629
|
previewUrlBar: string,
|
|
418
630
|
previewLoading: boolean,
|
|
@@ -464,16 +676,17 @@ interface PageViewState {
|
|
|
464
676
|
isVideoRecording: boolean,
|
|
465
677
|
videoRecordTooltip: string,
|
|
466
678
|
videoRecordDisabled: boolean,
|
|
679
|
+
showFreezeBtn: boolean,
|
|
467
680
|
freezeDisabled: boolean,
|
|
468
681
|
sendToAgentDisabled: boolean,
|
|
469
682
|
sendToAgentTooltip: string,
|
|
470
683
|
showVideoReviewModal: boolean,
|
|
684
|
+
showVideoReviewCloseConfirm: boolean,
|
|
471
685
|
videoReviewPreparing: boolean,
|
|
472
686
|
videoReviewReady: boolean,
|
|
473
687
|
videoReviewError: boolean,
|
|
474
688
|
videoReviewErrorText: string,
|
|
475
689
|
videoReviewObjectUrl: string,
|
|
476
|
-
videoModalToolNoneOn: boolean,
|
|
477
690
|
videoModalToolPointOn: boolean,
|
|
478
691
|
videoModalToolAreaOn: boolean,
|
|
479
692
|
videoPointDisplayItems: Array<VideoPointDisplayItemOfPageViewState>,
|
|
@@ -523,6 +736,10 @@ interface PageViewState {
|
|
|
523
736
|
showSnapshotSubmitError: boolean,
|
|
524
737
|
snapshotSubmitError: string,
|
|
525
738
|
showAddPageComposer: boolean,
|
|
739
|
+
showAddPageContentTab: boolean,
|
|
740
|
+
showAddPageDesignTab: boolean,
|
|
741
|
+
addPageContentTabClass: string,
|
|
742
|
+
addPageDesignTabClass: string,
|
|
526
743
|
addPageRoute: string,
|
|
527
744
|
addPageContentMd: string,
|
|
528
745
|
addPageDesignMd: string,
|
|
@@ -557,10 +774,6 @@ interface PageViewState {
|
|
|
557
774
|
projectLocalPluginName: string,
|
|
558
775
|
projectLocalPackageName: string,
|
|
559
776
|
projectLocalPath: string,
|
|
560
|
-
showAddMenuPanel: boolean,
|
|
561
|
-
showAddMenuChips: boolean,
|
|
562
|
-
addMenuChipRows: Array<AddMenuChipRowOfPageViewState>,
|
|
563
|
-
showAddMenuEmptyHint: boolean,
|
|
564
777
|
addMenuParamCollisionWarning: string,
|
|
565
778
|
addMenuRouteParamHint: string,
|
|
566
779
|
showAddMenuRouteParams: boolean,
|
|
@@ -617,10 +830,12 @@ interface PageElementRefs {
|
|
|
617
830
|
snapshotPanelSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
618
831
|
snapshotPanelDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
619
832
|
snapshotPanelOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
833
|
+
harmonyStageAddBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
620
834
|
harmonyAddPageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
621
835
|
visualAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
622
836
|
stageResizeLeft: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
623
837
|
stageResizeRight: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
838
|
+
harmonyAssetsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
624
839
|
breakpointDesktopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
625
840
|
breakpointTabletBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
626
841
|
breakpointMobileBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
@@ -628,6 +843,10 @@ interface PageElementRefs {
|
|
|
628
843
|
visualOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
629
844
|
recordingDraftPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
630
845
|
previewCaptureRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
846
|
+
instanceSwitcherDragHandle: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
847
|
+
instanceSwitcherTrigger: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
848
|
+
instanceSwitcherMenu: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
849
|
+
instanceSwitcher: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
631
850
|
clearMarkersCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
632
851
|
clearMarkersConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
633
852
|
visualToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
@@ -649,11 +868,6 @@ interface PageElementRefs {
|
|
|
649
868
|
outputScroll: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
650
869
|
agentChatInput: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
|
|
651
870
|
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
871
|
projectSettingsCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
658
872
|
projectLocalPluginNameInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
659
873
|
projectLocalPackageInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
@@ -661,17 +875,19 @@ interface PageElementRefs {
|
|
|
661
875
|
projectPluginsPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
662
876
|
projectSettingsOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
663
877
|
addPageCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
878
|
+
addPageContentTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
879
|
+
addPageDesignTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
664
880
|
addPageRouteInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
665
881
|
addPageRouteParamsPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
882
|
+
addMenuPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
666
883
|
addPageSuggestedRouteApplyBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
667
884
|
addPageSuggestedRouteDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
668
|
-
addPageFillContentFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
669
885
|
addPageContentMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
|
|
670
|
-
|
|
671
|
-
addPageFillDesignFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
886
|
+
addPageFillContentFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
672
887
|
addPageDesignMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
|
|
673
|
-
|
|
888
|
+
addPageFillDesignFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
674
889
|
addPageAttachReferenceBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
890
|
+
addPageReferenceDrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
675
891
|
addPageReferenceFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
676
892
|
addPageAttachmentsList: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
677
893
|
addPageCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
@@ -686,10 +902,43 @@ interface PageElementRefs {
|
|
|
686
902
|
addPageBriefFillPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
687
903
|
addPageSlideover: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
688
904
|
addPageOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
905
|
+
pageInfoInspectorBackBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
906
|
+
pageInfoPanelCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
907
|
+
pageInfoPanelHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
908
|
+
pageInfoRouteEditBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
909
|
+
pageInfoRouteApproveBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
910
|
+
pageInfoRouteCancelEditBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
911
|
+
pageInfoRouteInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
912
|
+
pageInfoRouteParamCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
913
|
+
pageInfoRouteParamConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
914
|
+
pageInfoPanelBody: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
915
|
+
pageInfoPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
916
|
+
pageInfoRouteChangeCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
917
|
+
pageInfoRouteChangeConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
918
|
+
pageInfoRouteChangeConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
919
|
+
addMenuDockBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
920
|
+
addMenuDockCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
921
|
+
addMenuDockHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
922
|
+
addMenuDockSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
923
|
+
addMenuDockPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
924
|
+
assetMentionHeaderBack: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
925
|
+
assetMentionHeaderSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
926
|
+
assetMentionHeaderSearchClose: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
927
|
+
assetMentionHeaderSearchToggle: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
928
|
+
assetMentionPanel: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
929
|
+
stageDropGhost: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
930
|
+
assetMentionCaretMirrorSpan: HTMLElementProxy<PageViewState, HTMLSpanElement>,
|
|
931
|
+
assetMentionCaretMirror: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
932
|
+
addMenuPickerBackBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
933
|
+
addMenuPickerCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
934
|
+
addMenuPickerSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
935
|
+
addMenuPickerSubCategoryFilters: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
936
|
+
addMenuPickerDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
937
|
+
addMenuPickerOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
938
|
+
addMenuPickerDismissConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
689
939
|
filePreviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
690
940
|
filePreviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
691
941
|
videoReviewCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
692
|
-
videoModalToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
693
942
|
videoModalToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
694
943
|
videoModalToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
695
944
|
videoReviewAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
@@ -699,9 +948,12 @@ interface PageElementRefs {
|
|
|
699
948
|
videoPlayPauseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
700
949
|
videoTimeline: HTMLElementProxy<PageViewState, HTMLInputElement>,
|
|
701
950
|
videoReviewTimelineWrap: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
702
|
-
|
|
951
|
+
videoReviewCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
703
952
|
videoReviewSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
704
953
|
videoReviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
954
|
+
videoReviewCloseConfirmCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
955
|
+
videoReviewCloseConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
956
|
+
videoReviewCloseConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
705
957
|
snapshotCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
706
958
|
snapshotToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
707
959
|
snapshotToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
@@ -716,6 +968,7 @@ interface PageElementRefs {
|
|
|
716
968
|
snapshotCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
717
969
|
snapshotSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
|
|
718
970
|
snapshotBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
971
|
+
appRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
|
|
719
972
|
visualPointDisplayItems: {
|
|
720
973
|
visualAnnotationMarker: HTMLElementCollectionProxy<VisualPointDisplayItemOfPageViewState, HTMLDivElement>
|
|
721
974
|
},
|
|
@@ -725,6 +978,15 @@ interface PageElementRefs {
|
|
|
725
978
|
visualAnnotationRows: {
|
|
726
979
|
annotationRow: HTMLElementCollectionProxy<VisualAnnotationRowOfPageViewState, HTMLDivElement>
|
|
727
980
|
},
|
|
981
|
+
assetMentionRows: {
|
|
982
|
+
assetMentionRow: HTMLElementCollectionProxy<AssetMentionRowOfPageViewState, HTMLButtonElement>
|
|
983
|
+
},
|
|
984
|
+
videoPointDisplayItems: {
|
|
985
|
+
visualAnnotationMarker: HTMLElementCollectionProxy<VideoPointDisplayItemOfPageViewState, HTMLDivElement>
|
|
986
|
+
},
|
|
987
|
+
videoAreaDisplayItems: {
|
|
988
|
+
visualAnnotationMarker: HTMLElementCollectionProxy<VideoAreaDisplayItemOfPageViewState, HTMLDivElement>
|
|
989
|
+
},
|
|
728
990
|
videoAnnotationRows: {
|
|
729
991
|
videoAnnotationRow: HTMLElementCollectionProxy<VideoAnnotationRowOfPageViewState, HTMLDivElement>
|
|
730
992
|
},
|