From 99e189866523d0619024a9114d1b1c1127ef8d16 Mon Sep 17 00:00:00 2001 From: Ryan Gossiaux Date: Mon, 7 Mar 2022 16:35:05 -0800 Subject: [PATCH] docs: fix up transition docs --- src/routes/docs/transition.svx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/routes/docs/transition.svx b/src/routes/docs/transition.svx index c1baef5..3597dbb 100644 --- a/src/routes/docs/transition.svx +++ b/src/routes/docs/transition.svx @@ -198,8 +198,9 @@ This component is also exported as `TransitionRoot`, to maintain compatibility w | Prop | Default | Type | Description | | ----------- | ------- | --------- | -------------------------------------------------------------------------------------------------------------------------------------- | -| `show` | -- | `boolean` | Whether the children should be shown or hidden | +| `show` | -- | `boolean` | Whether the children should be shown | | `as` | `div` | `string` | The element the `Transition` should render as | +| `appear` | `false` | `boolean` | Whether the transition should run on initial mount. | | `static` | `false` | `boolean` | Whether the element should ignore the internally managed open/closed state | | `unmount` | `true` | `boolean` | Whether the element should be unmounted, instead of just hidden, based on the open/closed state | | `enter` | `""` | `string` | Classes to add to the transitioning element during the entire enter phase |