@exegia/corpora-ui 0.24.0 → 0.25.0

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": "@exegia/corpora-ui",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "description": "shadcn-ready React UI library for the corpora manuscript-research apps.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -40,7 +40,7 @@ export function ScaffoldSubPanel({
40
40
  subPanelVariant[variant],
41
41
  // basis-14 + clip let the primary squeeze down to the strip height;
42
42
  // the strip keeps its natural (basis-auto) height when collapsed.
43
- primary ? "basis-14 min-h-14 overflow-clip" : "basis-auto min-h-14",
43
+ primary ? "min-h-14 basis-14 overflow-clip" : "min-h-14 basis-auto",
44
44
  className
45
45
  )}
46
46
  data-slot={`scaffold-sub-panel-${variant}`}
@@ -1,7 +1,7 @@
1
1
  import { mergeProps } from "@base-ui/react/merge-props"
2
2
  import { useRender } from "@base-ui/react/use-render"
3
3
  import { cva, type VariantProps } from "class-variance-authority"
4
- import { motion, type HTMLMotionProps } from "framer-motion"
4
+ import { motion, type HTMLMotionProps } from "motion/react"
5
5
 
6
6
  import { cn } from "@/lib/utils"
7
7
  import { Separator } from "@/components/ui/separator"