2.0.17 • Published 9 months ago
@solid-primitives/page-visibility v2.0.17
@solid-primitives/page-visibility
createPageVisibility
- Creates a signal with a boolean value identifying the page visibility stateusePageVisibility
- A singleton root alternative.
Installation
npm install @solid-primitives/page-visibility
# or
yarn add @solid-primitives/page-visibility
createPageVisibility
Creates a signal with a boolean value identifying the page visibility state.
How to use it
import { createPageVisibility } from "@solid-primitives/page-visibility";
const visible = createPageVisibility();
createEffect(() => {
visible(); // => boolean
});
usePageVisibility
usePageVisibility
is a singleton root primitive. It is providing the same signal as createPageVisibility
, but the event-listener and the signal are shared between dependents, making it more optimized to use in multiple places at once.
How to use it
import { usePageVisibility } from "@solid-primitives/page-visibility";
const visible = usePageVisibility();
createEffect(() => {
visible(); // => boolean
});
Changelog
See CHANGELOG.md
2.0.17
9 months ago
2.0.16
9 months ago
2.0.15
10 months ago
2.0.13
1 year ago
2.0.14
1 year ago
2.0.11
2 years ago
2.0.12
2 years ago
2.0.10
2 years ago
2.0.6-beta.0
2 years ago
2.0.5
2 years ago
2.0.4
2 years ago
2.0.7
2 years ago
2.0.6
2 years ago
2.0.9
2 years ago
2.0.8
2 years ago
2.0.3
2 years ago
2.0.2
2 years ago
2.0.1
2 years ago
2.0.0
2 years ago