@tribepad/themis 1.6.9 → 1.6.11
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/CHANGELOG.md +10 -0
- package/dist/elements/Tabs/Tabs.d.ts +1 -1
- package/dist/elements/Tabs/Tabs.d.ts.map +1 -1
- package/dist/elements/Tabs/Tabs.types.d.ts +6 -0
- package/dist/elements/Tabs/Tabs.types.d.ts.map +1 -1
- package/dist/elements/Tabs/index.js +1 -1
- package/dist/elements/Tabs/index.js.map +1 -1
- package/dist/elements/Tabs/index.mjs +1 -1
- package/dist/elements/Tabs/index.mjs.map +1 -1
- package/dist/elements/index.js +1 -1
- package/dist/elements/index.js.map +1 -1
- package/dist/elements/index.mjs +1 -1
- package/dist/elements/index.mjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/elements/Tabs/Tabs.stories.tsx +33 -0
package/package.json
CHANGED
|
@@ -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 & 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 & 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
|
*/
|