@tribepad/themis 1.6.9 → 1.6.10

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": "@tribepad/themis",
3
- "version": "1.6.9",
3
+ "version": "1.6.10",
4
4
  "description": "Accessible React component library built on React Aria primitives",
5
5
  "author": "Tribepad <mbasford@tribepad.com>",
6
6
  "license": "MIT",
@@ -390,6 +390,39 @@ export const Stepper: Story = {
390
390
  ),
391
391
  };
392
392
 
393
+ /**
394
+ * StepperVerticalNonLinear: vertical stepper driven by explicit per-step
395
+ * `completed` state plus a `sublabel`. This is the EOS blueprint-editor left
396
+ * rail: the current step (Pipeline & Journeys) is itself completed, while an
397
+ * earlier step (Candidate Workflow) is still outstanding — which the default
398
+ * index-based inference can't express.
399
+ */
400
+ export const StepperVerticalNonLinear: Story = {
401
+ render: () => (
402
+ <Tabs
403
+ variant="stepper"
404
+ orientation="vertical"
405
+ defaultSelectedKey="pipeline"
406
+ className="w-[240px]"
407
+ >
408
+ <TabList aria-label="Edit blueprint steps">
409
+ <Tab id="details" completed>Position Details</Tab>
410
+ <Tab id="workflow" completed={false}>Candidate Workflow</Tab>
411
+ <Tab id="pipeline" completed sublabel="Current step">Pipeline &amp; Journeys</Tab>
412
+ </TabList>
413
+ <TabPanel id="details">
414
+ <div className="p-4">Position Details — completed.</div>
415
+ </TabPanel>
416
+ <TabPanel id="workflow">
417
+ <div className="p-4">Candidate Workflow — still outstanding (open “2”).</div>
418
+ </TabPanel>
419
+ <TabPanel id="pipeline">
420
+ <div className="p-4">Pipeline &amp; Journeys — current step, also completed.</div>
421
+ </TabPanel>
422
+ </Tabs>
423
+ ),
424
+ };
425
+
393
426
  /**
394
427
  * StepperFirstStep: Stepper with the first step active (no completed steps).
395
428
  */