@wrongstack/tui 0.273.1 → 0.274.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/index.d.ts CHANGED
@@ -177,6 +177,16 @@ type Settings = {
177
177
  logLevel: 'error' | 'warn' | 'info' | 'debug' | 'trace';
178
178
  auditLevel: 'minimal' | 'standard' | 'full';
179
179
  indexOnStart: boolean;
180
+ /** Multi-file diff summary footer cutoff. 0 = off; positive = min file count. */
181
+ multiDiffSummaryThreshold: number;
182
+ /**
183
+ * Settings-picker row the user last navigated to. Carried in the
184
+ * canonical Settings shape so reopening the picker after a session
185
+ * restart lands on the same row they were last tweaking, rather than
186
+ * always resetting to 0. Updated on every `settingsFieldMove` /
187
+ * `settingsFieldSet`; consumed by the `settingsOpen` action.
188
+ */
189
+ lastSettingsField: number;
180
190
  maxIterations: number;
181
191
  /** Maximum auto-proceed iterations (0 = unlimited). */
182
192
  autoProceedMaxIterations: number;