sygnal 5.3.1 → 5.3.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/README.md +1 -1
- package/dist/index.cjs.js +120 -119
- package/dist/index.esm.js +84 -83
- package/dist/sygnal.min.js +1 -1
- package/dist/vike/+config.cjs.js +3 -0
- package/dist/vike/+config.js +3 -0
- package/dist/vike/onRenderClient.cjs.js +2 -2
- package/dist/vike/onRenderClient.mjs +2 -2
- package/package.json +1 -1
- package/src/extra/pwa.ts +29 -27
- package/src/vike/+config.ts +3 -0
- package/src/vike/onRenderClient.ts +3 -2
- package/src/vike/types.ts +2 -0
package/README.md
CHANGED
|
@@ -423,7 +423,7 @@ import vikeSygnal from 'sygnal/config'
|
|
|
423
423
|
export default { extends: [vikeSygnal] }
|
|
424
424
|
```
|
|
425
425
|
|
|
426
|
-
Pages are standard Sygnal components in `pages/*/+Page.jsx`. Supports layouts, data fetching, SPA mode, and `ClientOnly` for browser-only components.
|
|
426
|
+
Pages are standard Sygnal components in `pages/*/+Page.jsx`. Supports layouts, data fetching, SPA mode, custom drivers, and `ClientOnly` for browser-only components.
|
|
427
427
|
|
|
428
428
|
### TypeScript
|
|
429
429
|
|