@tribepad/themis 1.1.1 → 1.1.3

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.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Accessible React component library built on React Aria primitives",
5
5
  "author": "Tribepad <mbasford@tribepad.com>",
6
6
  "license": "MIT",
@@ -306,7 +306,11 @@ export const MobileDrawer: Story = {
306
306
  onPress={() => {
307
307
  setActiveId(item.id);
308
308
  }}
309
- />
309
+ >
310
+ <Sidebar.Popover>
311
+ <PanelContentForItem id={item.id} />
312
+ </Sidebar.Popover>
313
+ </Sidebar.RailItem>
310
314
  ))}
311
315
  </Sidebar.Rail>
312
316
  <Sidebar.Panel width="md" aria-label={`${activeId} details`}>
@@ -321,7 +325,9 @@ export const MobileDrawer: Story = {
321
325
  </h2>
322
326
  <p className="mt-2 text-[var(--muted-foreground)]">
323
327
  This story forces mobile mode by setting mobileBreakpoint to 99999px.
324
- Click the hamburger menu to open the navigation drawer.
328
+ Click the hamburger menu to open the drawer, then tap a rail
329
+ item — its `Sidebar.Popover` content replaces the panel view,
330
+ so you can browse sibling zones without leaving the drawer.
325
331
  </p>
326
332
  </main>
327
333
  </div>