@jay-framework/aiditor 0.21.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/agent-kit-template/plugin/aiditor-add-menu.md +470 -63
- package/dist/index.client.d.ts +219 -7
- package/dist/index.client.js +1184 -272
- package/dist/index.d.ts +21 -23
- package/dist/index.js +106 -137
- package/dist/pages/aiditor/page.css +55 -19
- package/dist/pages/aiditor/page.jay-html +513 -91
- package/dist/pages/aiditor/page.jay-html.d.ts +219 -7
- package/package.json +11 -10
- package/plugin.yaml +2 -3
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
padding: 5px 8px;
|
|
290
290
|
background: var(--harmony-bg-surface);
|
|
291
291
|
border: 1px solid var(--harmony-border);
|
|
292
|
-
border-radius:
|
|
292
|
+
border-radius: 8px;
|
|
293
293
|
box-shadow: 0 6px 28px rgba(22, 45, 61, 0.14), 0 2px 6px rgba(22, 45, 61, 0.06);
|
|
294
294
|
}
|
|
295
295
|
|
|
@@ -1669,11 +1669,21 @@
|
|
|
1669
1669
|
max-height: 94vh;
|
|
1670
1670
|
display: flex;
|
|
1671
1671
|
flex-direction: column;
|
|
1672
|
-
gap:
|
|
1673
|
-
padding:
|
|
1672
|
+
gap: 24px;
|
|
1673
|
+
padding: 32px 32px;
|
|
1674
1674
|
overflow: hidden;
|
|
1675
1675
|
box-shadow: var(--harmony-shadow-lg);
|
|
1676
1676
|
}
|
|
1677
|
+
.video-review-panel { position: relative; }
|
|
1678
|
+
.video-review-header { align-items: flex-start; padding-right: 28px; }
|
|
1679
|
+
.video-review-panel .harmony-modal-close {
|
|
1680
|
+
position: absolute;
|
|
1681
|
+
top: 12px;
|
|
1682
|
+
right: 12px;
|
|
1683
|
+
z-index: 1;
|
|
1684
|
+
}
|
|
1685
|
+
.video-review-header, .snapshot-header { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
|
|
1686
|
+
.snapshot-header { align-items: center; }
|
|
1677
1687
|
.video-review-body {
|
|
1678
1688
|
display: flex;
|
|
1679
1689
|
flex-direction: column;
|
|
@@ -1681,23 +1691,25 @@
|
|
|
1681
1691
|
min-height: 0;
|
|
1682
1692
|
flex: 1 1 auto;
|
|
1683
1693
|
}
|
|
1684
|
-
.video-review-tools {
|
|
1685
|
-
display: inline-flex;
|
|
1686
|
-
flex-wrap: nowrap;
|
|
1687
|
-
gap: 2px;
|
|
1688
|
-
align-items: center;
|
|
1689
|
-
width: fit-content;
|
|
1690
|
-
}
|
|
1691
|
-
.video-review-tools .visual-tool-btn {
|
|
1692
|
-
padding: 7px 8px;
|
|
1693
|
-
min-width: 28px;
|
|
1694
|
-
}
|
|
1695
1694
|
.video-review-capture-root {
|
|
1695
|
+
position: relative;
|
|
1696
1696
|
flex: 0 1 auto;
|
|
1697
1697
|
min-height: 0;
|
|
1698
1698
|
max-height: min(56vh, 480px);
|
|
1699
1699
|
overflow: hidden;
|
|
1700
1700
|
}
|
|
1701
|
+
.video-review-toolbar-wrap {
|
|
1702
|
+
position: absolute;
|
|
1703
|
+
bottom: 12px;
|
|
1704
|
+
left: 50%;
|
|
1705
|
+
transform: translateX(-50%);
|
|
1706
|
+
z-index: 12;
|
|
1707
|
+
pointer-events: none;
|
|
1708
|
+
}
|
|
1709
|
+
.video-review-toolbar-wrap > * { pointer-events: auto; }
|
|
1710
|
+
.video-review-toolbar-wrap .annotate-dock {
|
|
1711
|
+
border-radius: 8px;
|
|
1712
|
+
}
|
|
1701
1713
|
.video-review-capture-root .preview-frame {
|
|
1702
1714
|
width: 100%;
|
|
1703
1715
|
height: auto;
|
|
@@ -1705,11 +1717,15 @@
|
|
|
1705
1717
|
max-height: min(56vh, 480px);
|
|
1706
1718
|
object-fit: contain;
|
|
1707
1719
|
display: block;
|
|
1720
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
1721
|
+
border-radius: 8px;
|
|
1722
|
+
box-sizing: border-box;
|
|
1708
1723
|
}
|
|
1709
1724
|
.snapshot-panel { width: min(1200px, 96vw); overflow: hidden; }
|
|
1710
|
-
.video-review-header, .snapshot-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
|
|
1711
1725
|
.video-review-title, .snapshot-title { font-size: 15px; font-weight: 600; color: var(--harmony-text); margin: 0; }
|
|
1712
|
-
.video-review-
|
|
1726
|
+
.video-review-title { font-size: 20px; }
|
|
1727
|
+
.video-review-subtitle { font-size: 16px; color: var(--harmony-text-secondary); margin: 4px 0 0; line-height: 1.35; }
|
|
1728
|
+
.video-review-time { flex-shrink: 0; font-size: 12px; color: var(--harmony-text-muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
|
|
1713
1729
|
.snapshot-tools { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
|
|
1714
1730
|
.video-review-transport { display: flex; align-items: center; gap: 10px; width: 100%; }
|
|
1715
1731
|
.video-play-pause-btn {
|
|
@@ -2094,8 +2110,6 @@
|
|
|
2094
2110
|
gap: 0;
|
|
2095
2111
|
flex: 1;
|
|
2096
2112
|
min-height: 0;
|
|
2097
|
-
border: 1px solid var(--harmony-border);
|
|
2098
|
-
border-radius: var(--harmony-radius-md);
|
|
2099
2113
|
overflow: hidden;
|
|
2100
2114
|
}
|
|
2101
2115
|
.add-menu-picker-sidebar {
|
|
@@ -2103,8 +2117,8 @@
|
|
|
2103
2117
|
flex-direction: column;
|
|
2104
2118
|
width: 168px;
|
|
2105
2119
|
flex-shrink: 0;
|
|
2120
|
+
align-self: stretch;
|
|
2106
2121
|
border-right: 1px solid var(--harmony-border);
|
|
2107
|
-
background: var(--harmony-bg-subtle);
|
|
2108
2122
|
overflow-y: auto;
|
|
2109
2123
|
padding: 8px 6px;
|
|
2110
2124
|
gap: 2px;
|
|
@@ -2220,7 +2234,7 @@
|
|
|
2220
2234
|
display: flex;
|
|
2221
2235
|
align-items: center;
|
|
2222
2236
|
gap: 8px;
|
|
2223
|
-
margin-bottom:
|
|
2237
|
+
margin-bottom: 0;
|
|
2224
2238
|
min-width: 0;
|
|
2225
2239
|
}
|
|
2226
2240
|
.add-menu-picker-search-field {
|
|
@@ -2228,8 +2242,8 @@
|
|
|
2228
2242
|
min-width: 0;
|
|
2229
2243
|
display: flex;
|
|
2230
2244
|
align-items: center;
|
|
2231
|
-
gap:
|
|
2232
|
-
padding:
|
|
2245
|
+
gap: 6px;
|
|
2246
|
+
padding: 5px 10px;
|
|
2233
2247
|
border: 1px solid var(--harmony-border);
|
|
2234
2248
|
border-radius: 999px;
|
|
2235
2249
|
background: var(--harmony-bg-surface);
|
|
@@ -2237,7 +2251,7 @@
|
|
|
2237
2251
|
.add-menu-picker-search-icon {
|
|
2238
2252
|
color: var(--harmony-text-muted);
|
|
2239
2253
|
font-size: 30px;
|
|
2240
|
-
line-height:
|
|
2254
|
+
line-height: 0;
|
|
2241
2255
|
flex-shrink: 0;
|
|
2242
2256
|
}
|
|
2243
2257
|
.add-menu-picker-search-input {
|
|
@@ -2280,14 +2294,137 @@
|
|
|
2280
2294
|
padding-top: 0;
|
|
2281
2295
|
}
|
|
2282
2296
|
.add-menu-picker-browse-content {
|
|
2283
|
-
display:
|
|
2284
|
-
|
|
2297
|
+
display: flex;
|
|
2298
|
+
flex-direction: column;
|
|
2285
2299
|
gap: 12px;
|
|
2286
2300
|
overflow-y: auto;
|
|
2287
2301
|
flex: 1;
|
|
2288
2302
|
min-height: 0;
|
|
2289
|
-
|
|
2290
|
-
|
|
2303
|
+
}
|
|
2304
|
+
.add-menu-folder-breadcrumb {
|
|
2305
|
+
display: flex;
|
|
2306
|
+
flex-wrap: wrap;
|
|
2307
|
+
align-items: center;
|
|
2308
|
+
gap: 2px;
|
|
2309
|
+
font-size: 13px;
|
|
2310
|
+
color: var(--harmony-text-secondary, #666);
|
|
2311
|
+
margin-bottom: 4px;
|
|
2312
|
+
}
|
|
2313
|
+
.add-menu-folder-breadcrumb-segment {
|
|
2314
|
+
background: none;
|
|
2315
|
+
border: none;
|
|
2316
|
+
padding: 0;
|
|
2317
|
+
color: var(--harmony-link, #116dff);
|
|
2318
|
+
cursor: pointer;
|
|
2319
|
+
font: inherit;
|
|
2320
|
+
}
|
|
2321
|
+
.add-menu-folder-breadcrumb-segment:hover {
|
|
2322
|
+
text-decoration: underline;
|
|
2323
|
+
}
|
|
2324
|
+
.add-menu-folder-breadcrumb-sep {
|
|
2325
|
+
color: var(--harmony-text-secondary, #666);
|
|
2326
|
+
pointer-events: none;
|
|
2327
|
+
}
|
|
2328
|
+
.add-menu-folder-breadcrumb-current {
|
|
2329
|
+
color: var(--harmony-text-primary, #162d3d);
|
|
2330
|
+
font-weight: 500;
|
|
2331
|
+
}
|
|
2332
|
+
.add-menu-folder-grid {
|
|
2333
|
+
display: grid;
|
|
2334
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2335
|
+
gap: 6px;
|
|
2336
|
+
margin-bottom: 2px;
|
|
2337
|
+
}
|
|
2338
|
+
.add-menu-folder-card {
|
|
2339
|
+
display: flex;
|
|
2340
|
+
flex-direction: column;
|
|
2341
|
+
align-items: stretch;
|
|
2342
|
+
justify-content: flex-start;
|
|
2343
|
+
gap: 4px;
|
|
2344
|
+
padding: 6px;
|
|
2345
|
+
border: none;
|
|
2346
|
+
border-radius: 8px;
|
|
2347
|
+
background: transparent;
|
|
2348
|
+
cursor: pointer;
|
|
2349
|
+
text-align: center;
|
|
2350
|
+
min-height: 0;
|
|
2351
|
+
min-width: 0;
|
|
2352
|
+
font: inherit;
|
|
2353
|
+
color: inherit;
|
|
2354
|
+
}
|
|
2355
|
+
.add-menu-folder-card:hover {
|
|
2356
|
+
background: rgba(0, 0, 0, 0.05);
|
|
2357
|
+
}
|
|
2358
|
+
.add-menu-folder-card:active {
|
|
2359
|
+
background: rgba(0, 122, 255, 0.14);
|
|
2360
|
+
}
|
|
2361
|
+
/* viewBox is broken in jay-html (compiler emits viewbox); scale path via transform instead. */
|
|
2362
|
+
.add-menu-folder-card-preview {
|
|
2363
|
+
display: flex;
|
|
2364
|
+
align-items: center;
|
|
2365
|
+
}
|
|
2366
|
+
.add-menu-folder-card-preview svg {
|
|
2367
|
+
display: block;
|
|
2368
|
+
width: 95%;
|
|
2369
|
+
height: 100%;
|
|
2370
|
+
}
|
|
2371
|
+
.add-menu-folder-card-label {
|
|
2372
|
+
font-size: 11px;
|
|
2373
|
+
font-weight: 400;
|
|
2374
|
+
line-height: 1.25;
|
|
2375
|
+
word-break: break-word;
|
|
2376
|
+
display: -webkit-box;
|
|
2377
|
+
-webkit-line-clamp: 2;
|
|
2378
|
+
-webkit-box-orient: vertical;
|
|
2379
|
+
overflow: hidden;
|
|
2380
|
+
width: 100%;
|
|
2381
|
+
text-align: center;
|
|
2382
|
+
color: var(--harmony-text-primary, #162d3d);
|
|
2383
|
+
}
|
|
2384
|
+
.add-menu-folder-card-count {
|
|
2385
|
+
font-size: 10px;
|
|
2386
|
+
line-height: 1.2;
|
|
2387
|
+
color: var(--harmony-text-secondary, #666);
|
|
2388
|
+
text-align: center;
|
|
2389
|
+
}
|
|
2390
|
+
.add-menu-browse-band--small-strip {
|
|
2391
|
+
display: grid;
|
|
2392
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2393
|
+
gap: 6px;
|
|
2394
|
+
}
|
|
2395
|
+
.add-menu-browse-band--medium-band {
|
|
2396
|
+
display: grid;
|
|
2397
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2398
|
+
gap: 8px;
|
|
2399
|
+
align-items: stretch;
|
|
2400
|
+
}
|
|
2401
|
+
.add-menu-browse-band--slots-3 {
|
|
2402
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
|
|
2403
|
+
align-items: start;
|
|
2404
|
+
}
|
|
2405
|
+
/* S|M|S — one small per side; avoid 2×2 quad + row stretch (tall narrow cards). */
|
|
2406
|
+
.add-menu-browse-band--slots-3 .add-menu-browse-quad {
|
|
2407
|
+
grid-template-columns: 1fr;
|
|
2408
|
+
grid-template-rows: 1fr;
|
|
2409
|
+
width: 100%;
|
|
2410
|
+
align-self: start;
|
|
2411
|
+
}
|
|
2412
|
+
.add-menu-browse-slot {
|
|
2413
|
+
min-width: 0;
|
|
2414
|
+
}
|
|
2415
|
+
.add-menu-browse-slot--large {
|
|
2416
|
+
grid-column: 1 / -1;
|
|
2417
|
+
}
|
|
2418
|
+
.add-menu-browse-quad {
|
|
2419
|
+
display: grid;
|
|
2420
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2421
|
+
grid-template-rows: repeat(2, minmax(0, 1fr));
|
|
2422
|
+
gap: 4px;
|
|
2423
|
+
min-height: 0;
|
|
2424
|
+
aspect-ratio: 1;
|
|
2425
|
+
}
|
|
2426
|
+
.add-menu-picker-browse-block {
|
|
2427
|
+
display: contents;
|
|
2291
2428
|
}
|
|
2292
2429
|
.add-menu-picker-browse-row {
|
|
2293
2430
|
display: contents;
|
|
@@ -2299,13 +2436,32 @@
|
|
|
2299
2436
|
color: var(--harmony-text-muted);
|
|
2300
2437
|
text-transform: uppercase;
|
|
2301
2438
|
letter-spacing: 0.04em;
|
|
2302
|
-
grid-column: 1 / -1;
|
|
2303
2439
|
}
|
|
2304
|
-
.add-menu-picker-
|
|
2305
|
-
|
|
2440
|
+
.add-menu-picker-component-card--size-large .add-menu-picker-component-preview,
|
|
2441
|
+
.add-menu-picker-component-card--size-medium .add-menu-picker-component-preview {
|
|
2442
|
+
flex: 0 0 auto;
|
|
2443
|
+
width: 100%;
|
|
2444
|
+
height: auto;
|
|
2445
|
+
min-height: 0;
|
|
2446
|
+
aspect-ratio: 10 / 7;
|
|
2447
|
+
}
|
|
2448
|
+
.add-menu-picker-component-card--size-large .add-menu-picker-component-preview {
|
|
2449
|
+
aspect-ratio: 20 / 7;
|
|
2450
|
+
}
|
|
2451
|
+
.add-menu-picker-component-card--size-small .add-menu-picker-component-preview {
|
|
2452
|
+
flex: 0 0 auto;
|
|
2453
|
+
width: 100%;
|
|
2454
|
+
height: auto;
|
|
2455
|
+
min-height: 0;
|
|
2456
|
+
aspect-ratio: 1;
|
|
2457
|
+
}
|
|
2458
|
+
.add-menu-picker-browse-content .add-menu-picker-component-card,
|
|
2459
|
+
.add-menu-browse-band--small-strip .add-menu-picker-component-card,
|
|
2460
|
+
.add-menu-browse-band--medium-band .add-menu-picker-component-card {
|
|
2461
|
+
width: 100%;
|
|
2306
2462
|
}
|
|
2307
2463
|
.add-menu-picker-component-card {
|
|
2308
|
-
min-height:
|
|
2464
|
+
min-height: 0;
|
|
2309
2465
|
overflow: hidden;
|
|
2310
2466
|
box-sizing: border-box;
|
|
2311
2467
|
}
|
|
@@ -2321,7 +2477,11 @@
|
|
|
2321
2477
|
text-align: left;
|
|
2322
2478
|
}
|
|
2323
2479
|
.add-menu-picker-component-card--preview {
|
|
2324
|
-
min-height:
|
|
2480
|
+
min-height: 0;
|
|
2481
|
+
}
|
|
2482
|
+
.add-menu-picker-component-card--size-small.add-menu-picker-component-card--preview {
|
|
2483
|
+
padding: 6px;
|
|
2484
|
+
gap: 4px;
|
|
2325
2485
|
}
|
|
2326
2486
|
.add-menu-picker-component-card--info {
|
|
2327
2487
|
min-height: 72px;
|
|
@@ -2339,20 +2499,35 @@
|
|
|
2339
2499
|
border-radius: 6px;
|
|
2340
2500
|
overflow: hidden;
|
|
2341
2501
|
background: var(--harmony-bg-subtle);
|
|
2342
|
-
|
|
2502
|
+
}
|
|
2503
|
+
.add-menu-picker-component-card--preview .add-menu-picker-component-preview {
|
|
2504
|
+
border: none;
|
|
2343
2505
|
}
|
|
2344
2506
|
.add-menu-picker-component-thumb {
|
|
2345
2507
|
display: block;
|
|
2346
2508
|
width: 100%;
|
|
2347
2509
|
height: 100%;
|
|
2348
|
-
object-fit:
|
|
2510
|
+
object-fit: cover;
|
|
2349
2511
|
object-position: center;
|
|
2350
|
-
padding:
|
|
2512
|
+
padding: 0;
|
|
2351
2513
|
box-sizing: border-box;
|
|
2352
2514
|
}
|
|
2353
2515
|
.add-menu-picker-component-thumb--animated {
|
|
2354
2516
|
transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
2355
2517
|
}
|
|
2518
|
+
.add-menu-picker-component-thumb--gif {
|
|
2519
|
+
object-fit: cover;
|
|
2520
|
+
padding: 0;
|
|
2521
|
+
}
|
|
2522
|
+
.add-menu-picker-component-preview--html {
|
|
2523
|
+
padding: 0;
|
|
2524
|
+
border: none;
|
|
2525
|
+
background: transparent;
|
|
2526
|
+
}
|
|
2527
|
+
.add-menu-picker-component-preview--html > .am-preview {
|
|
2528
|
+
width: 100%;
|
|
2529
|
+
height: 100%;
|
|
2530
|
+
}
|
|
2356
2531
|
@media (prefers-reduced-motion: no-preference) {
|
|
2357
2532
|
.add-menu-picker-component-card--preview:hover .add-menu-picker-component-thumb--animated,
|
|
2358
2533
|
.add-menu-picker-component-card--preview:focus-visible .add-menu-picker-component-thumb--animated {
|
|
@@ -3797,7 +3972,7 @@
|
|
|
3797
3972
|
}
|
|
3798
3973
|
.add-menu-dock-subhint {
|
|
3799
3974
|
margin: 0;
|
|
3800
|
-
padding:
|
|
3975
|
+
padding: 2px 18px 6px;
|
|
3801
3976
|
font-size: 12px;
|
|
3802
3977
|
line-height: 1.35;
|
|
3803
3978
|
color: var(--harmony-text-secondary);
|
|
@@ -3809,7 +3984,7 @@
|
|
|
3809
3984
|
overflow: hidden;
|
|
3810
3985
|
display: flex;
|
|
3811
3986
|
flex-direction: column;
|
|
3812
|
-
padding: 0
|
|
3987
|
+
padding: 0;
|
|
3813
3988
|
}
|
|
3814
3989
|
.add-menu-dock-body .add-menu-picker-browse {
|
|
3815
3990
|
flex: 1;
|
|
@@ -3817,10 +3992,20 @@
|
|
|
3817
3992
|
display: flex;
|
|
3818
3993
|
flex-direction: column;
|
|
3819
3994
|
overflow: hidden;
|
|
3995
|
+
padding: 0;
|
|
3996
|
+
gap: 0;
|
|
3997
|
+
}
|
|
3998
|
+
.add-menu-dock-body .add-menu-picker-search-row {
|
|
3999
|
+
padding: 0 16px 10px;
|
|
4000
|
+
margin-bottom: 0;
|
|
4001
|
+
border-bottom: 1px solid var(--harmony-border);
|
|
4002
|
+
flex-shrink: 0;
|
|
3820
4003
|
}
|
|
3821
4004
|
.add-menu-dock-body .add-menu-picker-browse-layout {
|
|
3822
4005
|
flex: 1;
|
|
3823
4006
|
min-height: 0;
|
|
4007
|
+
margin: 0;
|
|
4008
|
+
width: 100%;
|
|
3824
4009
|
}
|
|
3825
4010
|
.add-menu-picker-component-card--stage-place { cursor: grab; }
|
|
3826
4011
|
.add-menu-picker-component-card--stage-place:active { cursor: grabbing; }
|
|
@@ -4035,21 +4220,111 @@ data:
|
|
|
4035
4220
|
subCategoryCountLabel: string
|
|
4036
4221
|
isSelected: boolean
|
|
4037
4222
|
cssClass: string
|
|
4038
|
-
|
|
4223
|
+
addMenuPickerBrowseBlocks:
|
|
4224
|
+
- blockKey: string
|
|
4225
|
+
kind: string
|
|
4226
|
+
showSectionHeader: boolean
|
|
4227
|
+
showBand: boolean
|
|
4228
|
+
sectionLabel: string
|
|
4229
|
+
bandKind: string
|
|
4230
|
+
bandCssClass: string
|
|
4231
|
+
showSmallStrip: boolean
|
|
4232
|
+
showMediumBand: boolean
|
|
4233
|
+
stripCells:
|
|
4234
|
+
- rowKey: string
|
|
4235
|
+
isSectionHeader: boolean
|
|
4236
|
+
label: string
|
|
4237
|
+
itemId: string
|
|
4238
|
+
isPickable: boolean
|
|
4239
|
+
showPickable: boolean
|
|
4240
|
+
showBrowseOnly: boolean
|
|
4241
|
+
isItemSelected: boolean
|
|
4242
|
+
cardCssClass: string
|
|
4243
|
+
showImage: boolean
|
|
4244
|
+
showGif: boolean
|
|
4245
|
+
showHtmlFragment: boolean
|
|
4246
|
+
imageUrl: string
|
|
4247
|
+
gifUrl: string
|
|
4248
|
+
posterUrl: string
|
|
4249
|
+
previewHtml: html-string
|
|
4250
|
+
showGifAutoplay: boolean
|
|
4251
|
+
showGifPoster: boolean
|
|
4252
|
+
showGifReducedInfoIcon: boolean
|
|
4253
|
+
showThumbnail: boolean
|
|
4254
|
+
showInfoIcon: boolean
|
|
4255
|
+
thumbnailUrl: string
|
|
4256
|
+
isAnimatedThumbnail: boolean
|
|
4257
|
+
thumbCssClass: string
|
|
4258
|
+
browseSize: string
|
|
4259
|
+
bandSlots:
|
|
4260
|
+
- slotKey: string
|
|
4261
|
+
slotKind: string
|
|
4262
|
+
slotCssClass: string
|
|
4263
|
+
showMediumSlot: boolean
|
|
4264
|
+
showLargeSlot: boolean
|
|
4265
|
+
showSmallQuad: boolean
|
|
4266
|
+
rowKey: string
|
|
4267
|
+
label: string
|
|
4268
|
+
itemId: string
|
|
4269
|
+
isPickable: boolean
|
|
4270
|
+
showPickable: boolean
|
|
4271
|
+
isItemSelected: boolean
|
|
4272
|
+
cardCssClass: string
|
|
4273
|
+
showImage: boolean
|
|
4274
|
+
showGif: boolean
|
|
4275
|
+
showHtmlFragment: boolean
|
|
4276
|
+
imageUrl: string
|
|
4277
|
+
gifUrl: string
|
|
4278
|
+
posterUrl: string
|
|
4279
|
+
previewHtml: html-string
|
|
4280
|
+
showGifAutoplay: boolean
|
|
4281
|
+
showGifPoster: boolean
|
|
4282
|
+
showGifReducedInfoIcon: boolean
|
|
4283
|
+
showThumbnail: boolean
|
|
4284
|
+
showInfoIcon: boolean
|
|
4285
|
+
thumbnailUrl: string
|
|
4286
|
+
isAnimatedThumbnail: boolean
|
|
4287
|
+
thumbCssClass: string
|
|
4288
|
+
browseSize: string
|
|
4289
|
+
quadRows:
|
|
4290
|
+
- rowKey: string
|
|
4291
|
+
label: string
|
|
4292
|
+
itemId: string
|
|
4293
|
+
isPickable: boolean
|
|
4294
|
+
showPickable: boolean
|
|
4295
|
+
isItemSelected: boolean
|
|
4296
|
+
cardCssClass: string
|
|
4297
|
+
showImage: boolean
|
|
4298
|
+
showGif: boolean
|
|
4299
|
+
showHtmlFragment: boolean
|
|
4300
|
+
imageUrl: string
|
|
4301
|
+
gifUrl: string
|
|
4302
|
+
posterUrl: string
|
|
4303
|
+
previewHtml: html-string
|
|
4304
|
+
showGifAutoplay: boolean
|
|
4305
|
+
showGifPoster: boolean
|
|
4306
|
+
showGifReducedInfoIcon: boolean
|
|
4307
|
+
showThumbnail: boolean
|
|
4308
|
+
showInfoIcon: boolean
|
|
4309
|
+
thumbnailUrl: string
|
|
4310
|
+
isAnimatedThumbnail: boolean
|
|
4311
|
+
thumbCssClass: string
|
|
4312
|
+
browseSize: string
|
|
4313
|
+
showAddMenuPickerBreadcrumb: boolean
|
|
4314
|
+
showAddMenuPickerFolderGrid: boolean
|
|
4315
|
+
showAddMenuPickerEmptyFolder: boolean
|
|
4316
|
+
addMenuPickerBrowseBreadcrumbSegments:
|
|
4317
|
+
- segmentKey: string
|
|
4318
|
+
navKey: string
|
|
4319
|
+
label: string
|
|
4320
|
+
isLast: boolean
|
|
4321
|
+
addMenuPickerBrowseFolderRows:
|
|
4039
4322
|
- rowKey: string
|
|
4040
|
-
|
|
4323
|
+
navKey: string
|
|
4324
|
+
segment: string
|
|
4041
4325
|
label: string
|
|
4042
|
-
|
|
4043
|
-
|
|
4044
|
-
showPickable: boolean
|
|
4045
|
-
showBrowseOnly: boolean
|
|
4046
|
-
isItemSelected: boolean
|
|
4047
|
-
cardCssClass: string
|
|
4048
|
-
showThumbnail: boolean
|
|
4049
|
-
showInfoIcon: boolean
|
|
4050
|
-
thumbnailUrl: string
|
|
4051
|
-
isAnimatedThumbnail: boolean
|
|
4052
|
-
thumbCssClass: string
|
|
4326
|
+
itemCountLabel: string
|
|
4327
|
+
totalItemCount: number
|
|
4053
4328
|
showPageInfoPanel: boolean
|
|
4054
4329
|
pageInfoPanelLeft: number
|
|
4055
4330
|
pageInfoPanelTop: number
|
|
@@ -4160,21 +4435,111 @@ data:
|
|
|
4160
4435
|
subCategoryCountLabel: string
|
|
4161
4436
|
isSelected: boolean
|
|
4162
4437
|
cssClass: string
|
|
4163
|
-
|
|
4438
|
+
addMenuDockBrowseBlocks:
|
|
4439
|
+
- blockKey: string
|
|
4440
|
+
kind: string
|
|
4441
|
+
showSectionHeader: boolean
|
|
4442
|
+
showBand: boolean
|
|
4443
|
+
sectionLabel: string
|
|
4444
|
+
bandKind: string
|
|
4445
|
+
bandCssClass: string
|
|
4446
|
+
showSmallStrip: boolean
|
|
4447
|
+
showMediumBand: boolean
|
|
4448
|
+
stripCells:
|
|
4449
|
+
- rowKey: string
|
|
4450
|
+
isSectionHeader: boolean
|
|
4451
|
+
label: string
|
|
4452
|
+
itemId: string
|
|
4453
|
+
isPickable: boolean
|
|
4454
|
+
showPickable: boolean
|
|
4455
|
+
showBrowseOnly: boolean
|
|
4456
|
+
isItemSelected: boolean
|
|
4457
|
+
cardCssClass: string
|
|
4458
|
+
showImage: boolean
|
|
4459
|
+
showGif: boolean
|
|
4460
|
+
showHtmlFragment: boolean
|
|
4461
|
+
imageUrl: string
|
|
4462
|
+
gifUrl: string
|
|
4463
|
+
posterUrl: string
|
|
4464
|
+
previewHtml: html-string
|
|
4465
|
+
showGifAutoplay: boolean
|
|
4466
|
+
showGifPoster: boolean
|
|
4467
|
+
showGifReducedInfoIcon: boolean
|
|
4468
|
+
showThumbnail: boolean
|
|
4469
|
+
showInfoIcon: boolean
|
|
4470
|
+
thumbnailUrl: string
|
|
4471
|
+
isAnimatedThumbnail: boolean
|
|
4472
|
+
thumbCssClass: string
|
|
4473
|
+
browseSize: string
|
|
4474
|
+
bandSlots:
|
|
4475
|
+
- slotKey: string
|
|
4476
|
+
slotKind: string
|
|
4477
|
+
slotCssClass: string
|
|
4478
|
+
showMediumSlot: boolean
|
|
4479
|
+
showLargeSlot: boolean
|
|
4480
|
+
showSmallQuad: boolean
|
|
4481
|
+
rowKey: string
|
|
4482
|
+
label: string
|
|
4483
|
+
itemId: string
|
|
4484
|
+
isPickable: boolean
|
|
4485
|
+
showPickable: boolean
|
|
4486
|
+
isItemSelected: boolean
|
|
4487
|
+
cardCssClass: string
|
|
4488
|
+
showImage: boolean
|
|
4489
|
+
showGif: boolean
|
|
4490
|
+
showHtmlFragment: boolean
|
|
4491
|
+
imageUrl: string
|
|
4492
|
+
gifUrl: string
|
|
4493
|
+
posterUrl: string
|
|
4494
|
+
previewHtml: html-string
|
|
4495
|
+
showGifAutoplay: boolean
|
|
4496
|
+
showGifPoster: boolean
|
|
4497
|
+
showGifReducedInfoIcon: boolean
|
|
4498
|
+
showThumbnail: boolean
|
|
4499
|
+
showInfoIcon: boolean
|
|
4500
|
+
thumbnailUrl: string
|
|
4501
|
+
isAnimatedThumbnail: boolean
|
|
4502
|
+
thumbCssClass: string
|
|
4503
|
+
browseSize: string
|
|
4504
|
+
quadRows:
|
|
4505
|
+
- rowKey: string
|
|
4506
|
+
label: string
|
|
4507
|
+
itemId: string
|
|
4508
|
+
isPickable: boolean
|
|
4509
|
+
showPickable: boolean
|
|
4510
|
+
isItemSelected: boolean
|
|
4511
|
+
cardCssClass: string
|
|
4512
|
+
showImage: boolean
|
|
4513
|
+
showGif: boolean
|
|
4514
|
+
showHtmlFragment: boolean
|
|
4515
|
+
imageUrl: string
|
|
4516
|
+
gifUrl: string
|
|
4517
|
+
posterUrl: string
|
|
4518
|
+
previewHtml: html-string
|
|
4519
|
+
showGifAutoplay: boolean
|
|
4520
|
+
showGifPoster: boolean
|
|
4521
|
+
showGifReducedInfoIcon: boolean
|
|
4522
|
+
showThumbnail: boolean
|
|
4523
|
+
showInfoIcon: boolean
|
|
4524
|
+
thumbnailUrl: string
|
|
4525
|
+
isAnimatedThumbnail: boolean
|
|
4526
|
+
thumbCssClass: string
|
|
4527
|
+
browseSize: string
|
|
4528
|
+
showAddMenuDockBreadcrumb: boolean
|
|
4529
|
+
showAddMenuDockFolderGrid: boolean
|
|
4530
|
+
showAddMenuDockEmptyFolder: boolean
|
|
4531
|
+
addMenuDockBrowseBreadcrumbSegments:
|
|
4532
|
+
- segmentKey: string
|
|
4533
|
+
navKey: string
|
|
4534
|
+
label: string
|
|
4535
|
+
isLast: boolean
|
|
4536
|
+
addMenuDockBrowseFolderRows:
|
|
4164
4537
|
- rowKey: string
|
|
4165
|
-
|
|
4538
|
+
navKey: string
|
|
4539
|
+
segment: string
|
|
4166
4540
|
label: string
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
showPickable: boolean
|
|
4170
|
-
showBrowseOnly: boolean
|
|
4171
|
-
isItemSelected: boolean
|
|
4172
|
-
cardCssClass: string
|
|
4173
|
-
showThumbnail: boolean
|
|
4174
|
-
showInfoIcon: boolean
|
|
4175
|
-
thumbnailUrl: string
|
|
4176
|
-
isAnimatedThumbnail: boolean
|
|
4177
|
-
thumbCssClass: string
|
|
4541
|
+
itemCountLabel: string
|
|
4542
|
+
totalItemCount: number
|
|
4178
4543
|
showAddMenuDockSearchMode: boolean
|
|
4179
4544
|
addMenuDockSearchSummary: string
|
|
4180
4545
|
showAssetMentionPanel: boolean
|
|
@@ -5446,7 +5811,7 @@ data:
|
|
|
5446
5811
|
<span class="add-menu-dock-title">+ Add Requests</span>
|
|
5447
5812
|
<button type="button" class="add-menu-picker-close" ref="addMenuDockCloseBtn" aria-label="Close">×</button>
|
|
5448
5813
|
</div>
|
|
5449
|
-
<p class="add-menu-dock-subhint">Drag
|
|
5814
|
+
<p class="add-menu-dock-subhint">Browse ready change requests from your plugins. Drag one onto the page preview to mark where it should apply, or click a reference item to @mention it in your instruction.</p>
|
|
5450
5815
|
<div class="add-menu-dock-body">
|
|
5451
5816
|
<p class="add-menu-picker-hint" if="showAddMenuDockLoading">Loading catalog…</p>
|
|
5452
5817
|
<p class="add-menu-picker-hint" if="showAddMenuDockEmpty">No catalog items — install plugins and run setup.</p>
|
|
@@ -5476,17 +5841,44 @@ data:
|
|
|
5476
5841
|
<button type="button" class="{cssClass}" forEach="addMenuDockSubCategoryFilterRows" trackBy="rowKey" data-add-menu-dock-subcategory="1" data-nav-key="{navKey}"><span>{label}</span><span class="add-menu-picker-subcategory-count" if="showSubCategoryCount">{subCategoryCountLabel}</span></button>
|
|
5477
5842
|
</div>
|
|
5478
5843
|
</div>
|
|
5479
|
-
<div class="add-menu-picker-browse-content" if="showAddMenuDockComponents">
|
|
5480
|
-
<
|
|
5481
|
-
<
|
|
5482
|
-
|
|
5483
|
-
|
|
5844
|
+
<div class="add-menu-picker-browse-content" if="showAddMenuDockComponents" ref="addMenuDockBrowseContent">
|
|
5845
|
+
<nav class="add-menu-folder-breadcrumb" if="showAddMenuDockBreadcrumb" aria-label="Folder path">
|
|
5846
|
+
<span forEach="addMenuDockBrowseBreadcrumbSegments" trackBy="segmentKey">
|
|
5847
|
+
<button type="button" class="add-menu-folder-breadcrumb-segment" if="!isLast" data-add-menu-dock-breadcrumb="1" data-nav-key="{navKey}">{label}</button>
|
|
5848
|
+
<span class="add-menu-folder-breadcrumb-sep" if="!isLast">›</span>
|
|
5849
|
+
<span class="add-menu-folder-breadcrumb-current" if="isLast">{label}</span>
|
|
5850
|
+
</span>
|
|
5851
|
+
</nav>
|
|
5852
|
+
<div class="add-menu-folder-grid" if="showAddMenuDockFolderGrid">
|
|
5853
|
+
<button type="button" class="add-menu-folder-card" forEach="addMenuDockBrowseFolderRows" trackBy="rowKey" data-add-menu-dock-folder-nav="1" data-nav-key="{navKey}" title="{label} ({itemCountLabel})">
|
|
5854
|
+
<span class="add-menu-folder-card-preview" aria-hidden="true"><svg width="52" height="52" fill="none" xmlns="http://www.w3.org/2000/svg"><path transform="translate(-1,2) translate(-4.5,-5.5) scale(4)" d="M8.69043 6C9.30186 6.00015 9.86718 6.31743 10.1836 6.84473L10.8828 8.00098H16.2402C17.2043 8.0011 17.9902 8.78684 17.9902 9.75098V17.1914C17.9953 17.2112 18 17.2307 18 17.251C17.9997 17.665 17.6641 18.001 17.25 18.001H6.75C5.78595 18.001 5.00027 17.215 5 16.251V7.75098C5 6.78676 5.78579 6 6.75 6H8.69043Z" fill="#5aa8f0"/></svg></span>
|
|
5855
|
+
<span class="add-menu-folder-card-label">{label}</span>
|
|
5856
|
+
<span class="add-menu-folder-card-count">{itemCountLabel}</span>
|
|
5857
|
+
</button>
|
|
5858
|
+
</div>
|
|
5859
|
+
<div class="add-menu-picker-browse-block" forEach="addMenuDockBrowseBlocks" trackBy="blockKey">
|
|
5860
|
+
<h3 class="add-menu-picker-section-title" if="showSectionHeader">{sectionLabel}</h3>
|
|
5861
|
+
<div if="showBand" class="{bandCssClass}">
|
|
5862
|
+
<div forEach="stripCells" trackBy="rowKey">
|
|
5863
|
+
<button type="button" class="{cardCssClass}" if="showPickable" data-add-menu-dock-item="1" data-item-id="{itemId}" title="{label}" aria-pressed="{isItemSelected}"><span class="add-menu-picker-component-preview" if="showImage"><img class="{thumbCssClass}" src="{imageUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifAutoplay"><img class="add-menu-picker-component-thumb add-menu-picker-component-thumb--gif" src="{gifUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifPoster"><img class="add-menu-picker-component-thumb" src="{posterUrl}" alt="" /></span><div class="add-menu-picker-component-preview add-menu-picker-component-preview--html" if="showHtmlFragment">{previewHtml}</div><span class="add-menu-picker-component-info-icon" if="showInfoIcon" aria-hidden="true">▦</span><span class="add-menu-picker-component-title">{label}</span></button>
|
|
5864
|
+
</div>
|
|
5865
|
+
<div forEach="bandSlots" trackBy="slotKey" class="{slotCssClass}">
|
|
5866
|
+
<button type="button" class="{cardCssClass}" if="showMediumSlot" data-add-menu-dock-item="1" data-item-id="{itemId}" title="{label}" aria-pressed="{isItemSelected}"><span class="add-menu-picker-component-preview" if="showImage"><img class="{thumbCssClass}" src="{imageUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifAutoplay"><img class="add-menu-picker-component-thumb add-menu-picker-component-thumb--gif" src="{gifUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifPoster"><img class="add-menu-picker-component-thumb" src="{posterUrl}" alt="" /></span><div class="add-menu-picker-component-preview add-menu-picker-component-preview--html" if="showHtmlFragment">{previewHtml}</div><span class="add-menu-picker-component-info-icon" if="showInfoIcon" aria-hidden="true">▦</span><span class="add-menu-picker-component-title">{label}</span></button>
|
|
5867
|
+
<button type="button" class="{cardCssClass}" if="showLargeSlot" data-add-menu-dock-item="1" data-item-id="{itemId}" title="{label}" aria-pressed="{isItemSelected}"><span class="add-menu-picker-component-preview" if="showImage"><img class="{thumbCssClass}" src="{imageUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifAutoplay"><img class="add-menu-picker-component-thumb add-menu-picker-component-thumb--gif" src="{gifUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifPoster"><img class="add-menu-picker-component-thumb" src="{posterUrl}" alt="" /></span><div class="add-menu-picker-component-preview add-menu-picker-component-preview--html" if="showHtmlFragment">{previewHtml}</div><span class="add-menu-picker-component-info-icon" if="showInfoIcon" aria-hidden="true">▦</span><span class="add-menu-picker-component-title">{label}</span></button>
|
|
5868
|
+
<div class="add-menu-browse-quad" if="showSmallQuad">
|
|
5869
|
+
<div forEach="quadRows" trackBy="rowKey">
|
|
5870
|
+
<button type="button" class="{cardCssClass}" if="showPickable" data-add-menu-dock-item="1" data-item-id="{itemId}" title="{label}" aria-pressed="{isItemSelected}"><span class="add-menu-picker-component-preview" if="showImage"><img class="{thumbCssClass}" src="{imageUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifAutoplay"><img class="add-menu-picker-component-thumb add-menu-picker-component-thumb--gif" src="{gifUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifPoster"><img class="add-menu-picker-component-thumb" src="{posterUrl}" alt="" /></span><div class="add-menu-picker-component-preview add-menu-picker-component-preview--html" if="showHtmlFragment">{previewHtml}</div><span class="add-menu-picker-component-info-icon" if="showInfoIcon" aria-hidden="true">▦</span><span class="add-menu-picker-component-title">{label}</span></button>
|
|
5871
|
+
</div>
|
|
5872
|
+
</div>
|
|
5873
|
+
</div>
|
|
5874
|
+
</div>
|
|
5484
5875
|
</div>
|
|
5485
5876
|
<div class="add-menu-picker-load-more-row" if="showAddMenuDockLoadMore">
|
|
5486
5877
|
<button type="button" class="harmony-btn-secondary add-menu-picker-load-more-btn" data-add-menu-dock-load-more="1">{addMenuDockLoadMoreLabel}</button>
|
|
5487
5878
|
</div>
|
|
5488
5879
|
</div>
|
|
5489
5880
|
<p class="add-menu-picker-hint" if="showAddMenuDockNoComponents">No components in this group.</p>
|
|
5881
|
+
<p class="add-menu-picker-hint" if="showAddMenuDockEmptyFolder">No items in this folder.</p>
|
|
5490
5882
|
<p class="add-menu-picker-hint" if="showAddMenuDockNoSearchResults">No elements match your search.</p>
|
|
5491
5883
|
</div>
|
|
5492
5884
|
</div>
|
|
@@ -5608,17 +6000,44 @@ data:
|
|
|
5608
6000
|
</div>
|
|
5609
6001
|
<button type="button" class="add-menu-picker-subcategory-scroll-btn" if="showAddMenuPickerSubCategoryScrollNext" data-add-menu-picker-subcategory-scroll="1" data-direction="next" aria-label="Scroll filters right">›</button>
|
|
5610
6002
|
</div>
|
|
5611
|
-
<div class="add-menu-picker-browse-content" if="showAddMenuPickerComponents">
|
|
5612
|
-
<
|
|
5613
|
-
<
|
|
5614
|
-
|
|
5615
|
-
|
|
6003
|
+
<div class="add-menu-picker-browse-content" if="showAddMenuPickerComponents" ref="addMenuPickerBrowseContent">
|
|
6004
|
+
<nav class="add-menu-folder-breadcrumb" if="showAddMenuPickerBreadcrumb" aria-label="Folder path">
|
|
6005
|
+
<span forEach="addMenuPickerBrowseBreadcrumbSegments" trackBy="segmentKey">
|
|
6006
|
+
<button type="button" class="add-menu-folder-breadcrumb-segment" if="!isLast" data-add-menu-picker-breadcrumb="1" data-nav-key="{navKey}">{label}</button>
|
|
6007
|
+
<span class="add-menu-folder-breadcrumb-sep" if="!isLast">›</span>
|
|
6008
|
+
<span class="add-menu-folder-breadcrumb-current" if="isLast">{label}</span>
|
|
6009
|
+
</span>
|
|
6010
|
+
</nav>
|
|
6011
|
+
<div class="add-menu-folder-grid" if="showAddMenuPickerFolderGrid">
|
|
6012
|
+
<button type="button" class="add-menu-folder-card" forEach="addMenuPickerBrowseFolderRows" trackBy="rowKey" data-add-menu-picker-folder-nav="1" data-nav-key="{navKey}" title="{label} ({itemCountLabel})">
|
|
6013
|
+
<span class="add-menu-folder-card-preview" aria-hidden="true"><svg width="52" height="52" fill="none" xmlns="http://www.w3.org/2000/svg"><path transform="translate(-1,2) translate(-4.5,-5.5) scale(4)" d="M8.69043 6C9.30186 6.00015 9.86718 6.31743 10.1836 6.84473L10.8828 8.00098H16.2402C17.2043 8.0011 17.9902 8.78684 17.9902 9.75098V17.1914C17.9953 17.2112 18 17.2307 18 17.251C17.9997 17.665 17.6641 18.001 17.25 18.001H6.75C5.78595 18.001 5.00027 17.215 5 16.251V7.75098C5 6.78676 5.78579 6 6.75 6H8.69043Z" fill="#5aa8f0"/></svg></span>
|
|
6014
|
+
<span class="add-menu-folder-card-label">{label}</span>
|
|
6015
|
+
<span class="add-menu-folder-card-count">{itemCountLabel}</span>
|
|
6016
|
+
</button>
|
|
6017
|
+
</div>
|
|
6018
|
+
<div class="add-menu-picker-browse-block" forEach="addMenuPickerBrowseBlocks" trackBy="blockKey">
|
|
6019
|
+
<h3 class="add-menu-picker-section-title" if="showSectionHeader">{sectionLabel}</h3>
|
|
6020
|
+
<div if="showBand" class="{bandCssClass}">
|
|
6021
|
+
<div forEach="stripCells" trackBy="rowKey">
|
|
6022
|
+
<button type="button" class="{cardCssClass}" if="showPickable" data-add-menu-picker-item="1" data-item-id="{itemId}" title="{label}" aria-pressed="{isItemSelected}"><span class="add-menu-picker-component-preview" if="showImage"><img class="{thumbCssClass}" src="{imageUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifAutoplay"><img class="add-menu-picker-component-thumb add-menu-picker-component-thumb--gif" src="{gifUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifPoster"><img class="add-menu-picker-component-thumb" src="{posterUrl}" alt="" /></span><div class="add-menu-picker-component-preview add-menu-picker-component-preview--html" if="showHtmlFragment">{previewHtml}</div><span class="add-menu-picker-component-info-icon" if="showInfoIcon" aria-hidden="true">▦</span><span class="add-menu-picker-component-title">{label}</span></button>
|
|
6023
|
+
</div>
|
|
6024
|
+
<div forEach="bandSlots" trackBy="slotKey" class="{slotCssClass}">
|
|
6025
|
+
<button type="button" class="{cardCssClass}" if="showMediumSlot" data-add-menu-picker-item="1" data-item-id="{itemId}" title="{label}" aria-pressed="{isItemSelected}"><span class="add-menu-picker-component-preview" if="showImage"><img class="{thumbCssClass}" src="{imageUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifAutoplay"><img class="add-menu-picker-component-thumb add-menu-picker-component-thumb--gif" src="{gifUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifPoster"><img class="add-menu-picker-component-thumb" src="{posterUrl}" alt="" /></span><div class="add-menu-picker-component-preview add-menu-picker-component-preview--html" if="showHtmlFragment">{previewHtml}</div><span class="add-menu-picker-component-info-icon" if="showInfoIcon" aria-hidden="true">▦</span><span class="add-menu-picker-component-title">{label}</span></button>
|
|
6026
|
+
<button type="button" class="{cardCssClass}" if="showLargeSlot" data-add-menu-picker-item="1" data-item-id="{itemId}" title="{label}" aria-pressed="{isItemSelected}"><span class="add-menu-picker-component-preview" if="showImage"><img class="{thumbCssClass}" src="{imageUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifAutoplay"><img class="add-menu-picker-component-thumb add-menu-picker-component-thumb--gif" src="{gifUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifPoster"><img class="add-menu-picker-component-thumb" src="{posterUrl}" alt="" /></span><div class="add-menu-picker-component-preview add-menu-picker-component-preview--html" if="showHtmlFragment">{previewHtml}</div><span class="add-menu-picker-component-info-icon" if="showInfoIcon" aria-hidden="true">▦</span><span class="add-menu-picker-component-title">{label}</span></button>
|
|
6027
|
+
<div class="add-menu-browse-quad" if="showSmallQuad">
|
|
6028
|
+
<div forEach="quadRows" trackBy="rowKey">
|
|
6029
|
+
<button type="button" class="{cardCssClass}" if="showPickable" data-add-menu-picker-item="1" data-item-id="{itemId}" title="{label}" aria-pressed="{isItemSelected}"><span class="add-menu-picker-component-preview" if="showImage"><img class="{thumbCssClass}" src="{imageUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifAutoplay"><img class="add-menu-picker-component-thumb add-menu-picker-component-thumb--gif" src="{gifUrl}" alt="" /></span><span class="add-menu-picker-component-preview" if="showGifPoster"><img class="add-menu-picker-component-thumb" src="{posterUrl}" alt="" /></span><div class="add-menu-picker-component-preview add-menu-picker-component-preview--html" if="showHtmlFragment">{previewHtml}</div><span class="add-menu-picker-component-info-icon" if="showInfoIcon" aria-hidden="true">▦</span><span class="add-menu-picker-component-title">{label}</span></button>
|
|
6030
|
+
</div>
|
|
6031
|
+
</div>
|
|
6032
|
+
</div>
|
|
6033
|
+
</div>
|
|
5616
6034
|
</div>
|
|
5617
6035
|
<div class="add-menu-picker-load-more-row" if="showAddMenuPickerLoadMore">
|
|
5618
6036
|
<button type="button" class="harmony-btn-secondary add-menu-picker-load-more-btn" data-add-menu-picker-load-more="1">{addMenuPickerLoadMoreLabel}</button>
|
|
5619
6037
|
</div>
|
|
5620
6038
|
</div>
|
|
5621
6039
|
<p class="add-menu-picker-hint" if="showAddMenuPickerNoComponents">No components in this group.</p>
|
|
6040
|
+
<p class="add-menu-picker-hint" if="showAddMenuPickerEmptyFolder">No items in this folder.</p>
|
|
5622
6041
|
<p class="add-menu-picker-hint" if="showAddMenuPickerNoSearchResults">No elements match your search.</p>
|
|
5623
6042
|
</div>
|
|
5624
6043
|
</div>
|
|
@@ -5659,7 +6078,7 @@ data:
|
|
|
5659
6078
|
<div class="video-review-header">
|
|
5660
6079
|
<div>
|
|
5661
6080
|
<h2 class="video-review-title">Review recording</h2>
|
|
5662
|
-
<p class="video-review-
|
|
6081
|
+
<p class="video-review-subtitle">Pause, mark spots on the frame, and add a short comment for each.</p>
|
|
5663
6082
|
</div>
|
|
5664
6083
|
<button type="button" class="harmony-modal-close" ref="videoReviewCloseBtn" aria-label="Close"><svg width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"><path d="M11.0214 0.219132C10.7292 -0.0730476 10.2555 -0.0730476 9.96334 0.219132L5.69238 4.49009L1.42142 0.219132C1.12924 -0.0730477 0.655524 -0.0730475 0.363345 0.219132C0.0743381 0.508139 0.0707425 0.97559 0.355269 1.26901L4.64238 5.69009L0.217383 10.1151C-0.0725663 10.405 -0.0725667 10.8751 0.217383 11.1651C0.507332 11.455 0.977433 11.455 1.26738 11.1651L5.69238 6.74009L10.1174 11.1651C10.4073 11.455 10.8774 11.455 11.1674 11.1651C11.4573 10.8751 11.4573 10.405 11.1674 10.1151L6.74238 5.69009L11.0295 1.26901C11.314 0.97559 11.3104 0.508138 11.0214 0.219132Z" fill="currentColor"/></svg></button>
|
|
5665
6084
|
</div>
|
|
@@ -5667,12 +6086,14 @@ data:
|
|
|
5667
6086
|
<p class="preview-error" if="videoReviewError">{videoReviewErrorText}</p>
|
|
5668
6087
|
<!-- Must mount while preparing: refs.videoReviewPlayer must exist before videoReviewReady flips true. -->
|
|
5669
6088
|
<div class="video-review-body" if="videoReviewPreparing || videoReviewReady">
|
|
5670
|
-
<div class="video-review-tools">
|
|
5671
|
-
<button type="button" class="{videoModalToolPointOn ? visual-tool-on} visual-tool-btn" ref="videoModalToolPointBtn" title="Add a point marker" aria-label="Add a point marker"><span class="tool-glyph" aria-hidden="true">⊚</span></button>
|
|
5672
|
-
<button type="button" class="{videoModalToolAreaOn ? visual-tool-on} visual-tool-btn" ref="videoModalToolAreaBtn" title="Add an area marker" aria-label="Add an area marker"><span class="tool-glyph" aria-hidden="true">▢</span></button>
|
|
5673
|
-
</div>
|
|
5674
6089
|
<input type="file" class="file-input-hidden" ref="videoReviewAttachFileInput" multiple />
|
|
5675
6090
|
<div class="preview-frame-wrap video-review-capture-root" ref="videoReviewCaptureRoot">
|
|
6091
|
+
<div class="video-review-toolbar-wrap">
|
|
6092
|
+
<div class="annotate-dock preview-visual-tools">
|
|
6093
|
+
<button type="button" class="{videoModalToolPointOn ? visual-tool-on} visual-tool-btn" ref="videoModalToolPointBtn" title="Add a point marker" aria-label="Add a point marker"><span class="tool-glyph" aria-hidden="true">⊚</span></button>
|
|
6094
|
+
<button type="button" class="{videoModalToolAreaOn ? visual-tool-on} visual-tool-btn" ref="videoModalToolAreaBtn" title="Add an area marker" aria-label="Add an area marker"><span class="tool-glyph" aria-hidden="true">▢</span></button>
|
|
6095
|
+
</div>
|
|
6096
|
+
</div>
|
|
5676
6097
|
<video
|
|
5677
6098
|
class="preview-frame"
|
|
5678
6099
|
ref="videoReviewPlayer"
|
|
@@ -5779,19 +6200,20 @@ data:
|
|
|
5779
6200
|
<div class="video-review-transport">
|
|
5780
6201
|
<button type="button" class="video-play-pause-btn" ref="videoPlayPauseBtn" title="Play or pause" aria-label="Play or pause">{videoPlayPauseGlyph}</button>
|
|
5781
6202
|
<div class="video-timeline-wrap" ref="videoReviewTimelineWrap">
|
|
5782
|
-
|
|
5783
|
-
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
|
|
5789
|
-
|
|
5790
|
-
|
|
5791
|
-
|
|
5792
|
-
|
|
5793
|
-
|
|
6203
|
+
<input type="range" class="video-timeline" ref="videoTimeline" min="0" max="1000" value="0" step="1" />
|
|
6204
|
+
<div class="video-timeline-markers" if="showVideoAnnotationsPanel">
|
|
6205
|
+
<span
|
|
6206
|
+
class="video-timeline-marker"
|
|
6207
|
+
forEach="videoTimelineMarkers"
|
|
6208
|
+
trackBy="key"
|
|
6209
|
+
data-aiditor-timeline-marker=""
|
|
6210
|
+
data-time-sec="{timeSec}"
|
|
6211
|
+
style="left: {leftPct}%;"
|
|
6212
|
+
title="{label}"
|
|
6213
|
+
></span>
|
|
6214
|
+
</div>
|
|
5794
6215
|
</div>
|
|
6216
|
+
<span class="video-review-time" if="videoReviewReady">{videoTimeLabel}</span>
|
|
5795
6217
|
</div>
|
|
5796
6218
|
<p class="visual-submit-error" if="showVideoSubmitError">{videoSubmitError}</p>
|
|
5797
6219
|
<p class="visual-submit-progress" if="showVideoSubmitProgress">{videoSubmitProgress}</p>
|