@atelier-ui/angular 0.2.37 → 0.2.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atelier-ui/angular",
3
- "version": "0.2.37",
3
+ "version": "0.2.39",
4
4
  "description": "Atelier component library for Angular — LLM-optimised, accessible, design-token-driven",
5
5
  "keywords": [
6
6
  "angular",
@@ -1836,6 +1836,15 @@ declare class AtlStepper implements AtlStepperContext {
1836
1836
  unregisterStep(id: string): void;
1837
1837
  /** @internal — called by AtlStep effect when inputs change */
1838
1838
  updateStep(id: string, info: Partial<StepInfo>): void;
1839
+ /**
1840
+ * Whether step `index` can be activated right now: not itself disabled, and —
1841
+ * in linear mode — either at or behind the active step, or ahead of it with
1842
+ * every step before it completed or optional. Drives both `goTo()`'s guard
1843
+ * and the header button's native `disabled` state, so a step that cannot be
1844
+ * activated is also not focusable (no roving-tabindex bookkeeping needed —
1845
+ * the header is a list, not a tab widget).
1846
+ */
1847
+ protected isReachable(index: number): boolean;
1839
1848
  /** Navigate to a specific step index. Respects linear mode. */
1840
1849
  goTo(index: number): void;
1841
1850
  /** Advance to the next step. */