@tribepad/themis 1.6.8 → 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.8",
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",
@@ -149,50 +149,50 @@
149
149
  }
150
150
  },
151
151
  "dependencies": {
152
- "@internationalized/date": "^3.12.1",
152
+ "@internationalized/date": "^3.12.2",
153
153
  "class-variance-authority": "^0.7.1",
154
154
  "clsx": "^2.1.1",
155
- "react-aria": "^3.48.0",
156
- "react-aria-components": "^1.17.0",
157
- "react-stately": "^3.46.0",
158
- "tailwind-merge": "^3.5.0"
155
+ "react-aria": "^3.49.0",
156
+ "react-aria-components": "^1.18.0",
157
+ "react-stately": "^3.47.0",
158
+ "tailwind-merge": "^3.6.0"
159
159
  },
160
160
  "devDependencies": {
161
161
  "@eslint/js": "^10.0.1",
162
162
  "@size-limit/preset-small-lib": "^12.1.0",
163
- "@storybook/addon-a11y": "^10.3.5",
163
+ "@storybook/addon-a11y": "^10.4.4",
164
164
  "@storybook/addon-mcp": "^0.6.0",
165
- "@storybook/react-vite": "^10.3.5",
166
- "@tailwindcss/vite": "^4.2.4",
165
+ "@storybook/react-vite": "^10.4.4",
166
+ "@tailwindcss/vite": "^4.3.0",
167
167
  "@testing-library/jest-dom": "^6.9.1",
168
168
  "@testing-library/react": "^16.3.2",
169
169
  "@testing-library/user-event": "^14.6.1",
170
- "@types/node": "^25.6.0",
171
- "@types/react": "^19.2.14",
170
+ "@types/node": "^25.9.3",
171
+ "@types/react": "^19.2.17",
172
172
  "@types/react-dom": "^19.2.3",
173
- "@typescript-eslint/eslint-plugin": "^8.59.0",
174
- "@typescript-eslint/parser": "^8.59.0",
175
- "@vitejs/plugin-react": "^6.0.1",
176
- "@vitest/coverage-v8": "^4.1.5",
177
- "eslint": "^10.2.1",
173
+ "@typescript-eslint/eslint-plugin": "^8.61.0",
174
+ "@typescript-eslint/parser": "^8.61.0",
175
+ "@vitejs/plugin-react": "^6.0.2",
176
+ "@vitest/coverage-v8": "^4.1.8",
177
+ "eslint": "^10.4.1",
178
178
  "eslint-plugin-jsx-a11y": "^6.10.2",
179
- "eslint-plugin-storybook": "10.3.5",
180
- "globals": "^17.5.0",
181
- "happy-dom": "^20.9.0",
179
+ "eslint-plugin-storybook": "10.4.4",
180
+ "globals": "^17.6.0",
181
+ "happy-dom": "^20.10.2",
182
182
  "jest-axe": "^10.0.0",
183
- "jsdom": "^29.1.0",
184
- "lucide-react": "^1.11.0",
185
- "motion": "^12.38.0",
186
- "react": "^19.2.5",
187
- "react-dom": "^19.2.5",
183
+ "jsdom": "^29.1.1",
184
+ "lucide-react": "^1.18.0",
185
+ "motion": "^12.40.0",
186
+ "react": "^19.2.7",
187
+ "react-dom": "^19.2.7",
188
188
  "size-limit": "^12.1.0",
189
- "storybook": "^10.3.5",
189
+ "storybook": "^10.4.4",
190
190
  "tsup": "^8.5.1",
191
- "tsx": "^4.21.0",
191
+ "tsx": "^4.22.4",
192
192
  "typescript": "^5.9.3",
193
- "vite": "^8.0.10",
194
- "vitest": "^4.1.5",
195
- "zod": "^4.3.6"
193
+ "vite": "^8.0.16",
194
+ "vitest": "^4.1.8",
195
+ "zod": "^4.4.3"
196
196
  },
197
197
  "pnpm": {
198
198
  "onlyBuiltDependencies": [
@@ -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
  */