npm package diff

Package: @forge/cli-shared

Versions: 6.8.0-next.13-experimental-f55f6f2 - 6.8.0-next.15

File: package/out/ui/multiple-table-prompt.js

Index: package/out/ui/multiple-table-prompt.js
===================================================================
--- package/out/ui/multiple-table-prompt.js
+++ package/out/ui/multiple-table-prompt.js
@@ -36,8 +36,17 @@
                 this.selectedIndexes.delete(rowIndex);
             }
             else {
                 this.selectedIndexes.add(rowIndex);
+                const choice = this.opt.choices.getChoice(rowIndex);
+                if (choice?.extra?.autoSelectId) {
+                    const installationId = this.opt.choices.getChoice(rowIndex).extra.autoSelectId;
+                    Array.from(this.opt.choices.choices).forEach((choice, index) => {
+                        if ('value' in choice && choice.value === installationId && !this.selectedIndexes.has(index)) {
+                            this.selectedIndexes.add(index);
+                        }
+                    });
+                }
             }
         }
     }
     addHoveredIfNoneSelected(selectedIndexes, pointer) {