astro-zoom 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -215,12 +215,12 @@ Both components are compatible with Astro's ClientRouter (view transitions). No
215
215
  ```astro
216
216
  ---
217
217
  // Layout.astro
218
- import { ViewTransitions } from 'astro:transitions'
218
+ import { ClientRouter } from 'astro:transitions'
219
219
  import { AstroZoomInit } from 'astro-zoom'
220
220
  ---
221
221
  <html>
222
222
  <head>
223
- <ViewTransitions />
223
+ <ClientRouter />
224
224
  </head>
225
225
  <body>
226
226
  <slot />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-zoom",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "A lightweight zoom component for Astro. Uses Astro's Image pipeline, <3KB shipped.",
6
6
  "author": {