@jay-framework/aiditor 0.19.1 → 0.19.4
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/index.client.js +13 -7
- package/dist/pages/aiditor/page.css +1138 -229
- package/package.json +6 -6
package/dist/index.client.js
CHANGED
|
@@ -8510,7 +8510,9 @@ async function captureVideoInstantDual(rootEl, videoEl) {
|
|
|
8510
8510
|
mode: "clean",
|
|
8511
8511
|
bytes: clean.size
|
|
8512
8512
|
});
|
|
8513
|
-
console.info("[aiditor:video-capture] capture start", {
|
|
8513
|
+
console.info("[aiditor:video-capture] capture start", {
|
|
8514
|
+
mode: "markersOnly"
|
|
8515
|
+
});
|
|
8514
8516
|
const markersOnly = await capturePreviewForVideoFrame(
|
|
8515
8517
|
rootEl,
|
|
8516
8518
|
videoEl,
|
|
@@ -9338,13 +9340,19 @@ function stripMarkerAddMenuNavRowForPage(row) {
|
|
|
9338
9340
|
return stripNavRowCore(row);
|
|
9339
9341
|
}
|
|
9340
9342
|
function stripMarkerPickerNavRowForVisual(row) {
|
|
9341
|
-
return stripNavRowCore(
|
|
9343
|
+
return stripNavRowCore(
|
|
9344
|
+
row
|
|
9345
|
+
);
|
|
9342
9346
|
}
|
|
9343
9347
|
function stripMarkerPickerNavRowForVideo(row) {
|
|
9344
|
-
return stripNavRowCore(
|
|
9348
|
+
return stripNavRowCore(
|
|
9349
|
+
row
|
|
9350
|
+
);
|
|
9345
9351
|
}
|
|
9346
9352
|
function stripMarkerPickerNavRowForSnapshot(row) {
|
|
9347
|
-
return stripNavRowCore(
|
|
9353
|
+
return stripNavRowCore(
|
|
9354
|
+
row
|
|
9355
|
+
);
|
|
9348
9356
|
}
|
|
9349
9357
|
function buildAddMenuNavRows(categories, panelOpen, selectedCategory, selectedSubCategory) {
|
|
9350
9358
|
if (!panelOpen) return [];
|
|
@@ -10515,9 +10523,7 @@ function initVisualAddMenuController(deps) {
|
|
|
10515
10523
|
for (const item of catalogItems()) map.set(item.id, item);
|
|
10516
10524
|
return map;
|
|
10517
10525
|
});
|
|
10518
|
-
const pickerPanelOpen = createMemo(
|
|
10519
|
-
() => pickerAnnotationId() !== void 0
|
|
10520
|
-
);
|
|
10526
|
+
const pickerPanelOpen = createMemo(() => pickerAnnotationId() !== void 0);
|
|
10521
10527
|
const pickerNavRows = createMemo(
|
|
10522
10528
|
() => buildAddMenuNavRows(
|
|
10523
10529
|
catalogCategories(),
|