diff --git a/.idea/leptos-use.iml b/.idea/leptos-use.iml
index ec492ad..0efa622 100644
--- a/.idea/leptos-use.iml
+++ b/.idea/leptos-use.iml
@@ -37,6 +37,8 @@
+
+
diff --git a/Cargo.toml b/Cargo.toml
index 911076f..d6c667d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,7 +16,7 @@ homepage = "https://leptos-use.rs"
leptos = { version = "0.3", default-features = false }
wasm-bindgen = "0.2"
js-sys = "0.3"
-default-struct-builder = "0.2"
+default-struct-builder = { path = "../default-struct-builder" }
num = { version = "0.4", optional = true }
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
@@ -33,6 +33,7 @@ features = [
"Element",
"HtmlElement",
"HtmlLinkElement",
+ "HtmlStyleElement",
"IntersectionObserver",
"IntersectionObserverInit",
"IntersectionObserverEntry",
@@ -50,6 +51,7 @@ features = [
"ResizeObserverSize",
"ScrollBehavior",
"ScrollToOptions",
+ "Storage",
"Touch",
"TouchEvent",
"TouchList",
@@ -59,7 +61,7 @@ features = [
[features]
docs = []
math = ["num"]
-storage = ["serde", "serde_json", "web-sys/Storage", "web-sys/StorageEvent"]
+storage = ["serde", "serde_json", "web-sys/StorageEvent"]
stable = ["leptos/stable"]
[package.metadata."docs.rs"]
diff --git a/docs/book/src/SUMMARY.md b/docs/book/src/SUMMARY.md
index dcc4a0d..a369350 100644
--- a/docs/book/src/SUMMARY.md
+++ b/docs/book/src/SUMMARY.md
@@ -23,6 +23,7 @@
# Browser
- [use_breakpoints](browser/use_breakpoints.md)
+- [use_color_mode](browser/use_color_mode.md)
- [use_css_var](browser/use_css_var.md)
- [use_event_listener](browser/use_event_listener.md)
- [use_favicon](browser/use_favicon.md)
@@ -52,6 +53,7 @@
# Utilities
+- [use_cycle_list](utilities/use_cycle_list.md)
- [use_debounce_fn](utilities/use_debounce_fn.md)
- [use_supported](utilities/use_supported.md)
- [use_throttle_fn](utilities/use_throttle_fn.md)
diff --git a/docs/book/src/browser/use_color_mode.md b/docs/book/src/browser/use_color_mode.md
new file mode 100644
index 0000000..7d2775d
--- /dev/null
+++ b/docs/book/src/browser/use_color_mode.md
@@ -0,0 +1,3 @@
+# use_color_mode
+
+
diff --git a/docs/book/src/utilities/use_cycle_list.md b/docs/book/src/utilities/use_cycle_list.md
new file mode 100644
index 0000000..005c361
--- /dev/null
+++ b/docs/book/src/utilities/use_cycle_list.md
@@ -0,0 +1,3 @@
+# use_cycle_list
+
+
diff --git a/examples/Cargo.toml b/examples/Cargo.toml
index fa729bc..d70b09d 100644
--- a/examples/Cargo.toml
+++ b/examples/Cargo.toml
@@ -7,7 +7,9 @@ members = [
"use_active_element",
"use_breakpoints",
"use_ceil",
+ "use_color_mode",
"use_css_var",
+ "use_cycle_list",
"use_debounce_fn",
"use_element_hover",
"use_element_size",
diff --git a/examples/use_color_mode/Cargo.toml b/examples/use_color_mode/Cargo.toml
new file mode 100644
index 0000000..91d22ea
--- /dev/null
+++ b/examples/use_color_mode/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "use_color_mode"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+leptos = "0.3"
+console_error_panic_hook = "0.1"
+console_log = "1"
+log = "0.4"
+leptos-use = { path = "../..", features = ["docs", "storage"] }
+web-sys = "0.3"
+
+[dev-dependencies]
+wasm-bindgen = "0.2"
+wasm-bindgen-test = "0.3.0"
diff --git a/examples/use_color_mode/README.md b/examples/use_color_mode/README.md
new file mode 100644
index 0000000..f9a5e1d
--- /dev/null
+++ b/examples/use_color_mode/README.md
@@ -0,0 +1,23 @@
+A simple example for `use_color_mode`.
+
+If you don't have it installed already, install [Trunk](https://trunkrs.dev/) and [Tailwind](https://tailwindcss.com/docs/installation)
+as well as the nightly toolchain for Rust and the wasm32-unknown-unknown target:
+
+```bash
+cargo install trunk
+npm install -D tailwindcss @tailwindcss/forms
+rustup toolchain install nightly
+rustup target add wasm32-unknown-unknown
+```
+
+Then, open two terminals. In the first one, run:
+
+```
+npx tailwindcss -i ./input.css -o ./style/output.css --watch
+```
+
+In the second one, run:
+
+```bash
+trunk serve --open
+```
\ No newline at end of file
diff --git a/examples/use_color_mode/Trunk.toml b/examples/use_color_mode/Trunk.toml
new file mode 100644
index 0000000..3e4be08
--- /dev/null
+++ b/examples/use_color_mode/Trunk.toml
@@ -0,0 +1,2 @@
+[build]
+public_url = "/demo/"
\ No newline at end of file
diff --git a/examples/use_color_mode/index.html b/examples/use_color_mode/index.html
new file mode 100644
index 0000000..ae249a6
--- /dev/null
+++ b/examples/use_color_mode/index.html
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/examples/use_color_mode/input.css b/examples/use_color_mode/input.css
new file mode 100644
index 0000000..bd6213e
--- /dev/null
+++ b/examples/use_color_mode/input.css
@@ -0,0 +1,3 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
\ No newline at end of file
diff --git a/examples/use_color_mode/rust-toolchain.toml b/examples/use_color_mode/rust-toolchain.toml
new file mode 100644
index 0000000..271800c
--- /dev/null
+++ b/examples/use_color_mode/rust-toolchain.toml
@@ -0,0 +1,2 @@
+[toolchain]
+channel = "nightly"
\ No newline at end of file
diff --git a/examples/use_color_mode/src/main.rs b/examples/use_color_mode/src/main.rs
new file mode 100644
index 0000000..a51b0c8
--- /dev/null
+++ b/examples/use_color_mode/src/main.rs
@@ -0,0 +1,36 @@
+use leptos::html::Col;
+use leptos::*;
+use leptos_use::docs::demo_or_body;
+use leptos_use::{
+ use_color_mode_with_options, use_cycle_list, ColorMode, UseColorModeOptions,
+ UseColorModeReturn, UseCycleListReturn,
+};
+
+#[component]
+fn Demo(cx: Scope) -> impl IntoView {
+ let UseColorModeReturn { mode, set_mode, .. } =
+ use_color_mode_with_options(cx, UseColorModeOptions::default());
+
+ let UseCycleListReturn { state, next, .. } = use_cycle_list(
+ cx,
+ vec![
+ ColorMode::Light,
+ ColorMode::Custom("rust".into()),
+ ColorMode::Custom("coal".into()),
+ ColorMode::Custom("navy".into()),
+ ColorMode::Custom("ayu".into()),
+ ],
+ );
+
+ view! { cx,
+ }
+}
+
+fn main() {
+ _ = console_log::init_with_level(log::Level::Debug);
+ console_error_panic_hook::set_once();
+
+ mount_to(demo_or_body(), |cx| {
+ view! { cx, }
+ })
+}
diff --git a/examples/use_color_mode/style/output.css b/examples/use_color_mode/style/output.css
new file mode 100644
index 0000000..ab5191f
--- /dev/null
+++ b/examples/use_color_mode/style/output.css
@@ -0,0 +1,289 @@
+[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ background-color: #fff;
+ border-color: #6b7280;
+ border-width: 1px;
+ border-radius: 0px;
+ padding-top: 0.5rem;
+ padding-right: 0.75rem;
+ padding-bottom: 0.5rem;
+ padding-left: 0.75rem;
+ font-size: 1rem;
+ line-height: 1.5rem;
+ --tw-shadow: 0 0 #0000;
+}
+
+[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
+ --tw-ring-offset-width: 0px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: #2563eb;
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
+ border-color: #2563eb;
+}
+
+input::-moz-placeholder, textarea::-moz-placeholder {
+ color: #6b7280;
+ opacity: 1;
+}
+
+input::placeholder,textarea::placeholder {
+ color: #6b7280;
+ opacity: 1;
+}
+
+::-webkit-datetime-edit-fields-wrapper {
+ padding: 0;
+}
+
+::-webkit-date-and-time-value {
+ min-height: 1.5em;
+}
+
+::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
+ padding-top: 0;
+ padding-bottom: 0;
+}
+
+select {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
+ background-position: right 0.5rem center;
+ background-repeat: no-repeat;
+ background-size: 1.5em 1.5em;
+ padding-right: 2.5rem;
+ -webkit-print-color-adjust: exact;
+ print-color-adjust: exact;
+}
+
+[multiple] {
+ background-image: initial;
+ background-position: initial;
+ background-repeat: unset;
+ background-size: initial;
+ padding-right: 0.75rem;
+ -webkit-print-color-adjust: unset;
+ print-color-adjust: unset;
+}
+
+[type='checkbox'],[type='radio'] {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ padding: 0;
+ -webkit-print-color-adjust: exact;
+ print-color-adjust: exact;
+ display: inline-block;
+ vertical-align: middle;
+ background-origin: border-box;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+ flex-shrink: 0;
+ height: 1rem;
+ width: 1rem;
+ color: #2563eb;
+ background-color: #fff;
+ border-color: #6b7280;
+ border-width: 1px;
+ --tw-shadow: 0 0 #0000;
+}
+
+[type='checkbox'] {
+ border-radius: 0px;
+}
+
+[type='radio'] {
+ border-radius: 100%;
+}
+
+[type='checkbox']:focus,[type='radio']:focus {
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
+ --tw-ring-offset-width: 2px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: #2563eb;
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
+}
+
+[type='checkbox']:checked,[type='radio']:checked {
+ border-color: transparent;
+ background-color: currentColor;
+ background-size: 100% 100%;
+ background-position: center;
+ background-repeat: no-repeat;
+}
+
+[type='checkbox']:checked {
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
+}
+
+[type='radio']:checked {
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
+}
+
+[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
+ border-color: transparent;
+ background-color: currentColor;
+}
+
+[type='checkbox']:indeterminate {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
+ border-color: transparent;
+ background-color: currentColor;
+ background-size: 100% 100%;
+ background-position: center;
+ background-repeat: no-repeat;
+}
+
+[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
+ border-color: transparent;
+ background-color: currentColor;
+}
+
+[type='file'] {
+ background: unset;
+ border-color: inherit;
+ border-width: 0;
+ border-radius: 0;
+ padding: 0;
+ font-size: unset;
+ line-height: inherit;
+}
+
+[type='file']:focus {
+ outline: 1px solid ButtonText;
+ outline: 1px auto -webkit-focus-ring-color;
+}
+
+*, ::before, ::after {
+ --tw-border-spacing-x: 0;
+ --tw-border-spacing-y: 0;
+ --tw-translate-x: 0;
+ --tw-translate-y: 0;
+ --tw-rotate: 0;
+ --tw-skew-x: 0;
+ --tw-skew-y: 0;
+ --tw-scale-x: 1;
+ --tw-scale-y: 1;
+ --tw-pan-x: ;
+ --tw-pan-y: ;
+ --tw-pinch-zoom: ;
+ --tw-scroll-snap-strictness: proximity;
+ --tw-gradient-from-position: ;
+ --tw-gradient-via-position: ;
+ --tw-gradient-to-position: ;
+ --tw-ordinal: ;
+ --tw-slashed-zero: ;
+ --tw-numeric-figure: ;
+ --tw-numeric-spacing: ;
+ --tw-numeric-fraction: ;
+ --tw-ring-inset: ;
+ --tw-ring-offset-width: 0px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: rgb(59 130 246 / 0.5);
+ --tw-ring-offset-shadow: 0 0 #0000;
+ --tw-ring-shadow: 0 0 #0000;
+ --tw-shadow: 0 0 #0000;
+ --tw-shadow-colored: 0 0 #0000;
+ --tw-blur: ;
+ --tw-brightness: ;
+ --tw-contrast: ;
+ --tw-grayscale: ;
+ --tw-hue-rotate: ;
+ --tw-invert: ;
+ --tw-saturate: ;
+ --tw-sepia: ;
+ --tw-drop-shadow: ;
+ --tw-backdrop-blur: ;
+ --tw-backdrop-brightness: ;
+ --tw-backdrop-contrast: ;
+ --tw-backdrop-grayscale: ;
+ --tw-backdrop-hue-rotate: ;
+ --tw-backdrop-invert: ;
+ --tw-backdrop-opacity: ;
+ --tw-backdrop-saturate: ;
+ --tw-backdrop-sepia: ;
+}
+
+::backdrop {
+ --tw-border-spacing-x: 0;
+ --tw-border-spacing-y: 0;
+ --tw-translate-x: 0;
+ --tw-translate-y: 0;
+ --tw-rotate: 0;
+ --tw-skew-x: 0;
+ --tw-skew-y: 0;
+ --tw-scale-x: 1;
+ --tw-scale-y: 1;
+ --tw-pan-x: ;
+ --tw-pan-y: ;
+ --tw-pinch-zoom: ;
+ --tw-scroll-snap-strictness: proximity;
+ --tw-gradient-from-position: ;
+ --tw-gradient-via-position: ;
+ --tw-gradient-to-position: ;
+ --tw-ordinal: ;
+ --tw-slashed-zero: ;
+ --tw-numeric-figure: ;
+ --tw-numeric-spacing: ;
+ --tw-numeric-fraction: ;
+ --tw-ring-inset: ;
+ --tw-ring-offset-width: 0px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: rgb(59 130 246 / 0.5);
+ --tw-ring-offset-shadow: 0 0 #0000;
+ --tw-ring-shadow: 0 0 #0000;
+ --tw-shadow: 0 0 #0000;
+ --tw-shadow-colored: 0 0 #0000;
+ --tw-blur: ;
+ --tw-brightness: ;
+ --tw-contrast: ;
+ --tw-grayscale: ;
+ --tw-hue-rotate: ;
+ --tw-invert: ;
+ --tw-saturate: ;
+ --tw-sepia: ;
+ --tw-drop-shadow: ;
+ --tw-backdrop-blur: ;
+ --tw-backdrop-brightness: ;
+ --tw-backdrop-contrast: ;
+ --tw-backdrop-grayscale: ;
+ --tw-backdrop-hue-rotate: ;
+ --tw-backdrop-invert: ;
+ --tw-backdrop-opacity: ;
+ --tw-backdrop-saturate: ;
+ --tw-backdrop-sepia: ;
+}
+
+.block {
+ display: block;
+}
+
+.text-\[--brand-color\] {
+ color: var(--brand-color);
+}
+
+.text-green-600 {
+ --tw-text-opacity: 1;
+ color: rgb(22 163 74 / var(--tw-text-opacity));
+}
+
+.opacity-75 {
+ opacity: 0.75;
+}
+
+@media (prefers-color-scheme: dark) {
+ .dark\:text-green-500 {
+ --tw-text-opacity: 1;
+ color: rgb(34 197 94 / var(--tw-text-opacity));
+ }
+}
\ No newline at end of file
diff --git a/examples/use_color_mode/tailwind.config.js b/examples/use_color_mode/tailwind.config.js
new file mode 100644
index 0000000..bc09f5e
--- /dev/null
+++ b/examples/use_color_mode/tailwind.config.js
@@ -0,0 +1,15 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: {
+ files: ["*.html", "./src/**/*.rs", "../../src/docs/**/*.rs"],
+ },
+ theme: {
+ extend: {},
+ },
+ corePlugins: {
+ preflight: false,
+ },
+ plugins: [
+ require('@tailwindcss/forms'),
+ ],
+}
\ No newline at end of file
diff --git a/examples/use_cycle_list/Cargo.toml b/examples/use_cycle_list/Cargo.toml
new file mode 100644
index 0000000..c878e46
--- /dev/null
+++ b/examples/use_cycle_list/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "use_cycle_list"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+leptos = "0.3"
+console_error_panic_hook = "0.1"
+console_log = "1"
+log = "0.4"
+leptos-use = { path = "../..", features = ["docs"] }
+web-sys = "0.3"
+
+[dev-dependencies]
+wasm-bindgen = "0.2"
+wasm-bindgen-test = "0.3.0"
diff --git a/examples/use_cycle_list/README.md b/examples/use_cycle_list/README.md
new file mode 100644
index 0000000..e672963
--- /dev/null
+++ b/examples/use_cycle_list/README.md
@@ -0,0 +1,23 @@
+A simple example for `use_cycle_list`.
+
+If you don't have it installed already, install [Trunk](https://trunkrs.dev/) and [Tailwind](https://tailwindcss.com/docs/installation)
+as well as the nightly toolchain for Rust and the wasm32-unknown-unknown target:
+
+```bash
+cargo install trunk
+npm install -D tailwindcss @tailwindcss/forms
+rustup toolchain install nightly
+rustup target add wasm32-unknown-unknown
+```
+
+Then, open two terminals. In the first one, run:
+
+```
+npx tailwindcss -i ./input.css -o ./style/output.css --watch
+```
+
+In the second one, run:
+
+```bash
+trunk serve --open
+```
\ No newline at end of file
diff --git a/examples/use_cycle_list/Trunk.toml b/examples/use_cycle_list/Trunk.toml
new file mode 100644
index 0000000..3e4be08
--- /dev/null
+++ b/examples/use_cycle_list/Trunk.toml
@@ -0,0 +1,2 @@
+[build]
+public_url = "/demo/"
\ No newline at end of file
diff --git a/examples/use_cycle_list/index.html b/examples/use_cycle_list/index.html
new file mode 100644
index 0000000..ae249a6
--- /dev/null
+++ b/examples/use_cycle_list/index.html
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/examples/use_cycle_list/input.css b/examples/use_cycle_list/input.css
new file mode 100644
index 0000000..bd6213e
--- /dev/null
+++ b/examples/use_cycle_list/input.css
@@ -0,0 +1,3 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
\ No newline at end of file
diff --git a/examples/use_cycle_list/rust-toolchain.toml b/examples/use_cycle_list/rust-toolchain.toml
new file mode 100644
index 0000000..271800c
--- /dev/null
+++ b/examples/use_cycle_list/rust-toolchain.toml
@@ -0,0 +1,2 @@
+[toolchain]
+channel = "nightly"
\ No newline at end of file
diff --git a/examples/use_cycle_list/src/main.rs b/examples/use_cycle_list/src/main.rs
new file mode 100644
index 0000000..dc8dabd
--- /dev/null
+++ b/examples/use_cycle_list/src/main.rs
@@ -0,0 +1,32 @@
+use leptos::*;
+use leptos_use::docs::demo_or_body;
+use leptos_use::{use_cycle_list, UseCycleListReturn};
+
+#[component]
+fn Demo(cx: Scope) -> impl IntoView {
+ let UseCycleListReturn {
+ state, next, prev, ..
+ } = use_cycle_list(
+ cx,
+ vec![
+ "Dog", "Cat", "Lizard", "Shark", "Whale", "Dolphin", "Octopus", "Seal",
+ ],
+ );
+
+ view! { cx,
+
+
{state}
+
+
+
+ }
+}
+
+fn main() {
+ _ = console_log::init_with_level(log::Level::Debug);
+ console_error_panic_hook::set_once();
+
+ mount_to(demo_or_body(), |cx| {
+ view! { cx, }
+ })
+}
diff --git a/examples/use_cycle_list/style/output.css b/examples/use_cycle_list/style/output.css
new file mode 100644
index 0000000..b648a86
--- /dev/null
+++ b/examples/use_cycle_list/style/output.css
@@ -0,0 +1,298 @@
+[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ background-color: #fff;
+ border-color: #6b7280;
+ border-width: 1px;
+ border-radius: 0px;
+ padding-top: 0.5rem;
+ padding-right: 0.75rem;
+ padding-bottom: 0.5rem;
+ padding-left: 0.75rem;
+ font-size: 1rem;
+ line-height: 1.5rem;
+ --tw-shadow: 0 0 #0000;
+}
+
+[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
+ --tw-ring-offset-width: 0px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: #2563eb;
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
+ border-color: #2563eb;
+}
+
+input::-moz-placeholder, textarea::-moz-placeholder {
+ color: #6b7280;
+ opacity: 1;
+}
+
+input::placeholder,textarea::placeholder {
+ color: #6b7280;
+ opacity: 1;
+}
+
+::-webkit-datetime-edit-fields-wrapper {
+ padding: 0;
+}
+
+::-webkit-date-and-time-value {
+ min-height: 1.5em;
+}
+
+::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
+ padding-top: 0;
+ padding-bottom: 0;
+}
+
+select {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
+ background-position: right 0.5rem center;
+ background-repeat: no-repeat;
+ background-size: 1.5em 1.5em;
+ padding-right: 2.5rem;
+ -webkit-print-color-adjust: exact;
+ print-color-adjust: exact;
+}
+
+[multiple] {
+ background-image: initial;
+ background-position: initial;
+ background-repeat: unset;
+ background-size: initial;
+ padding-right: 0.75rem;
+ -webkit-print-color-adjust: unset;
+ print-color-adjust: unset;
+}
+
+[type='checkbox'],[type='radio'] {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ padding: 0;
+ -webkit-print-color-adjust: exact;
+ print-color-adjust: exact;
+ display: inline-block;
+ vertical-align: middle;
+ background-origin: border-box;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+ flex-shrink: 0;
+ height: 1rem;
+ width: 1rem;
+ color: #2563eb;
+ background-color: #fff;
+ border-color: #6b7280;
+ border-width: 1px;
+ --tw-shadow: 0 0 #0000;
+}
+
+[type='checkbox'] {
+ border-radius: 0px;
+}
+
+[type='radio'] {
+ border-radius: 100%;
+}
+
+[type='checkbox']:focus,[type='radio']:focus {
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
+ --tw-ring-offset-width: 2px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: #2563eb;
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
+}
+
+[type='checkbox']:checked,[type='radio']:checked {
+ border-color: transparent;
+ background-color: currentColor;
+ background-size: 100% 100%;
+ background-position: center;
+ background-repeat: no-repeat;
+}
+
+[type='checkbox']:checked {
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
+}
+
+[type='radio']:checked {
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
+}
+
+[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
+ border-color: transparent;
+ background-color: currentColor;
+}
+
+[type='checkbox']:indeterminate {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
+ border-color: transparent;
+ background-color: currentColor;
+ background-size: 100% 100%;
+ background-position: center;
+ background-repeat: no-repeat;
+}
+
+[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
+ border-color: transparent;
+ background-color: currentColor;
+}
+
+[type='file'] {
+ background: unset;
+ border-color: inherit;
+ border-width: 0;
+ border-radius: 0;
+ padding: 0;
+ font-size: unset;
+ line-height: inherit;
+}
+
+[type='file']:focus {
+ outline: 1px solid ButtonText;
+ outline: 1px auto -webkit-focus-ring-color;
+}
+
+*, ::before, ::after {
+ --tw-border-spacing-x: 0;
+ --tw-border-spacing-y: 0;
+ --tw-translate-x: 0;
+ --tw-translate-y: 0;
+ --tw-rotate: 0;
+ --tw-skew-x: 0;
+ --tw-skew-y: 0;
+ --tw-scale-x: 1;
+ --tw-scale-y: 1;
+ --tw-pan-x: ;
+ --tw-pan-y: ;
+ --tw-pinch-zoom: ;
+ --tw-scroll-snap-strictness: proximity;
+ --tw-gradient-from-position: ;
+ --tw-gradient-via-position: ;
+ --tw-gradient-to-position: ;
+ --tw-ordinal: ;
+ --tw-slashed-zero: ;
+ --tw-numeric-figure: ;
+ --tw-numeric-spacing: ;
+ --tw-numeric-fraction: ;
+ --tw-ring-inset: ;
+ --tw-ring-offset-width: 0px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: rgb(59 130 246 / 0.5);
+ --tw-ring-offset-shadow: 0 0 #0000;
+ --tw-ring-shadow: 0 0 #0000;
+ --tw-shadow: 0 0 #0000;
+ --tw-shadow-colored: 0 0 #0000;
+ --tw-blur: ;
+ --tw-brightness: ;
+ --tw-contrast: ;
+ --tw-grayscale: ;
+ --tw-hue-rotate: ;
+ --tw-invert: ;
+ --tw-saturate: ;
+ --tw-sepia: ;
+ --tw-drop-shadow: ;
+ --tw-backdrop-blur: ;
+ --tw-backdrop-brightness: ;
+ --tw-backdrop-contrast: ;
+ --tw-backdrop-grayscale: ;
+ --tw-backdrop-hue-rotate: ;
+ --tw-backdrop-invert: ;
+ --tw-backdrop-opacity: ;
+ --tw-backdrop-saturate: ;
+ --tw-backdrop-sepia: ;
+}
+
+::backdrop {
+ --tw-border-spacing-x: 0;
+ --tw-border-spacing-y: 0;
+ --tw-translate-x: 0;
+ --tw-translate-y: 0;
+ --tw-rotate: 0;
+ --tw-skew-x: 0;
+ --tw-skew-y: 0;
+ --tw-scale-x: 1;
+ --tw-scale-y: 1;
+ --tw-pan-x: ;
+ --tw-pan-y: ;
+ --tw-pinch-zoom: ;
+ --tw-scroll-snap-strictness: proximity;
+ --tw-gradient-from-position: ;
+ --tw-gradient-via-position: ;
+ --tw-gradient-to-position: ;
+ --tw-ordinal: ;
+ --tw-slashed-zero: ;
+ --tw-numeric-figure: ;
+ --tw-numeric-spacing: ;
+ --tw-numeric-fraction: ;
+ --tw-ring-inset: ;
+ --tw-ring-offset-width: 0px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: rgb(59 130 246 / 0.5);
+ --tw-ring-offset-shadow: 0 0 #0000;
+ --tw-ring-shadow: 0 0 #0000;
+ --tw-shadow: 0 0 #0000;
+ --tw-shadow-colored: 0 0 #0000;
+ --tw-blur: ;
+ --tw-brightness: ;
+ --tw-contrast: ;
+ --tw-grayscale: ;
+ --tw-hue-rotate: ;
+ --tw-invert: ;
+ --tw-saturate: ;
+ --tw-sepia: ;
+ --tw-drop-shadow: ;
+ --tw-backdrop-blur: ;
+ --tw-backdrop-brightness: ;
+ --tw-backdrop-contrast: ;
+ --tw-backdrop-grayscale: ;
+ --tw-backdrop-hue-rotate: ;
+ --tw-backdrop-invert: ;
+ --tw-backdrop-opacity: ;
+ --tw-backdrop-saturate: ;
+ --tw-backdrop-sepia: ;
+}
+
+.static {
+ position: static;
+}
+
+.text-lg {
+ font-size: 1.125rem;
+ line-height: 1.75rem;
+}
+
+.font-bold {
+ font-weight: 700;
+}
+
+.text-\[--brand-color\] {
+ color: var(--brand-color);
+}
+
+.text-green-600 {
+ --tw-text-opacity: 1;
+ color: rgb(22 163 74 / var(--tw-text-opacity));
+}
+
+.opacity-75 {
+ opacity: 0.75;
+}
+
+@media (prefers-color-scheme: dark) {
+ .dark\:text-green-500 {
+ --tw-text-opacity: 1;
+ color: rgb(34 197 94 / var(--tw-text-opacity));
+ }
+}
\ No newline at end of file
diff --git a/examples/use_cycle_list/tailwind.config.js b/examples/use_cycle_list/tailwind.config.js
new file mode 100644
index 0000000..bc09f5e
--- /dev/null
+++ b/examples/use_cycle_list/tailwind.config.js
@@ -0,0 +1,15 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: {
+ files: ["*.html", "./src/**/*.rs", "../../src/docs/**/*.rs"],
+ },
+ theme: {
+ extend: {},
+ },
+ corePlugins: {
+ preflight: false,
+ },
+ plugins: [
+ require('@tailwindcss/forms'),
+ ],
+}
\ No newline at end of file
diff --git a/src/core/element_maybe_signal.rs b/src/core/element_maybe_signal.rs
index dbf582c..4759c30 100644
--- a/src/core/element_maybe_signal.rs
+++ b/src/core/element_maybe_signal.rs
@@ -156,6 +156,24 @@ where
}
}
+impl<'a, E> From<&'a str> for ElementMaybeSignal
+where
+ E: From + 'static,
+{
+ fn from(target: &'a str) -> Self {
+ Self::Static(document().query_selector(target).unwrap_or_default())
+ }
+}
+
+impl From for ElementMaybeSignal
+where
+ E: From + 'static,
+{
+ fn from(target: String) -> Self {
+ Self::Static(document().query_selector(&target).unwrap_or_default())
+ }
+}
+
impl From<(Scope, Signal)> for ElementMaybeSignal
where
E: From + 'static,
diff --git a/src/core/maybe_rw_signal.rs b/src/core/maybe_rw_signal.rs
new file mode 100644
index 0000000..877c0cb
--- /dev/null
+++ b/src/core/maybe_rw_signal.rs
@@ -0,0 +1,258 @@
+use leptos::*;
+use std::pin::Pin;
+
+pub enum MaybeRwSignal
+where
+ T: 'static,
+{
+ Static(T),
+ DynamicRw(ReadSignal, WriteSignal),
+ DynamicRead(Signal),
+}
+
+impl Clone for MaybeRwSignal {
+ fn clone(&self) -> Self {
+ match self {
+ Self::Static(t) => Self::Static(t.clone()),
+ Self::DynamicRw(r, w) => Self::DynamicRw(r, w),
+ Self::DynamicRead(s) => Self::DynamicRead(s),
+ }
+ }
+}
+
+impl Copy for MaybeRwSignal {}
+
+impl From for MaybeRwSignal {
+ fn from(t: T) -> Self {
+ Self::Static(t)
+ }
+}
+
+impl Default for MaybeRwSignal {
+ fn default() -> Self {
+ Self::Static(T::default())
+ }
+}
+
+impl From> for MaybeRwSignal {
+ fn from(s: Signal) -> Self {
+ Self::DynamicRead(s)
+ }
+}
+
+impl From> for MaybeRwSignal {
+ fn from(s: ReadSignal) -> Self {
+ Self::DynamicRead(s.into())
+ }
+}
+
+impl From> for MaybeRwSignal {
+ fn from(s: Memo) -> Self {
+ Self::DynamicRead(s.into())
+ }
+}
+
+impl From> for MaybeRwSignal {
+ fn from(s: RwSignal) -> Self {
+ let (r, w) = s.split();
+ Self::DynamicRw(r, w)
+ }
+}
+
+impl From<(ReadSignal, WriteSignal)> for MaybeRwSignal {
+ fn from(s: (ReadSignal, WriteSignal)) -> Self {
+ Self::DynamicRw(s.0, s.1)
+ }
+}
+
+impl From<&str> for MaybeRwSignal {
+ fn from(s: &str) -> Self {
+ Self::Static(s.to_string())
+ }
+}
+
+impl SignalGet for MaybeRwSignal {
+ fn get(&self) -> T {
+ match self {
+ Self::Static(t) => t.clone(),
+ Self::DynamicRw(r, _) => r.get(),
+ Self::DynamicRead(s) => s.get(),
+ }
+ }
+
+ fn try_get(&self) -> Option {
+ match self {
+ Self::Static(t) => Some(t.clone()),
+ Self::DynamicRw(r, _) => r.try_get(),
+ Self::DynamicRead(s) => s.try_get(),
+ }
+ }
+}
+
+impl SignalWith for MaybeRwSignal {
+ fn with(&self, f: impl FnOnce(&T) -> O) -> O {
+ match self {
+ Self::Static(t) => f(t),
+ Self::DynamicRw(r, w) => r.with(f),
+ Self::DynamicRead(s) => s.with(f),
+ }
+ }
+
+ fn try_with(&self, f: impl FnOnce(&T) -> O) -> Option {
+ match self {
+ Self::Static(t) => Some(f(t)),
+ Self::DynamicRw(r, _) => r.try_with(f),
+ Self::DynamicRead(s) => s.try_with(f),
+ }
+ }
+}
+
+impl SignalWithUntracked for MaybeRwSignal {
+ fn with_untracked(&self, f: impl FnOnce(&T) -> O) -> O {
+ match self {
+ Self::Static(t) => f(t),
+ Self::DynamicRw(r, _) => r.with_untracked(f),
+ Self::DynamicRead(s) => s.with_untracked(f),
+ }
+ }
+
+ fn try_with_untracked(&self, f: impl FnOnce(&T) -> O) -> Option {
+ match self {
+ Self::Static(t) => Some(f(t)),
+ Self::DynamicRw(r, _) => r.try_with_untracked(f),
+ Self::DynamicRead(s) => s.try_with_untracked(f),
+ }
+ }
+}
+
+impl SignalGetUntracked for MaybeRwSignal {
+ fn get_untracked(&self) -> T {
+ match self {
+ Self::Static(t) => t.clone(),
+ Self::DynamicRw(r, _) => r.get_untracked(),
+ Self::DynamicRead(s) => s.get_untracked(),
+ }
+ }
+
+ fn try_get_untracked(&self) -> Option {
+ match self {
+ Self::Static(t) => Some(t.clone()),
+ Self::DynamicRw(r, _) => r.try_get_untracked(),
+ Self::DynamicRead(s) => s.try_get_untracked(),
+ }
+ }
+}
+
+impl SignalStream for MaybeRwSignal {
+ fn to_stream(&self, cx: Scope) -> Pin>> {
+ match self {
+ Self::Static(t) => {
+ let t = t.clone();
+
+ let stream = futures::stream::once(async move { t });
+
+ Box::bin(stream)
+ }
+ Self::DynamicRw(r, _) => r.to_stream(cx),
+ Self::DynamicRead(s) => s.to_stream(cx),
+ }
+ }
+}
+
+impl MaybeRwSignal {
+ pub fn derive(cx: Scope, derived_signal: impl Fn() -> T + 'static) -> Self {
+ Self::DynamicRead(Signal::derive(cx, derived_signal))
+ }
+}
+
+impl SignalSetUntracked for MaybeRwSignal {
+ fn set_untracked(&self, new_value: T) {
+ match self {
+ Self::DynamicRw(_, w) => w.set_untracked(new_value),
+ _ => {
+ // do nothing
+ }
+ }
+ }
+
+ fn try_set_untracked(&self, new_value: T) -> Option {
+ match self {
+ Self::DynamicRw(_, w) => w.try_set_untracked(new_value),
+ _ => Some(new_value),
+ }
+ }
+}
+
+impl SignalUpdateUntracked for MaybeRwSignal {
+ #[inline(always)]
+ fn update_untracked(&self, f: impl FnOnce(&mut T)) {
+ match self {
+ Self::DynamicRw(_, w) => w.update_untracked(f),
+ _ => {
+ // do nothing
+ }
+ }
+ }
+
+ #[inline(always)]
+ fn try_update_untracked(&self, f: impl FnOnce(&mut T) -> O) -> Option {
+ match self {
+ Self::DynamicRw(_, w) => w.try_update_untracked(f),
+ _ => Some(f()),
+ }
+ }
+}
+
+impl SignalUpdate for MaybeRwSignal {
+ #[inline(always)]
+ fn update(&self, f: impl FnOnce(&mut T)) {
+ match self {
+ Self::DynamicRw(_, w) => w.update(f),
+ _ => {
+ // do nothing
+ }
+ }
+ }
+
+ #[inline(always)]
+ fn try_update(&self, f: impl FnOnce(&mut T) -> O) -> Option {
+ match self {
+ Self::DynamicRw(_, w) => w.try_update(f),
+ _ => Some(f()),
+ }
+ }
+}
+
+impl SignalSet for MaybeRwSignal {
+ #[inline(always)]
+ fn set(&self, new_value: T) {
+ match self {
+ Self::DynamicRw(_, w) => w.set(new_value),
+ _ => {
+ // do nothing
+ }
+ }
+ }
+
+ fn try_set(&self, new_value: T) -> Option {
+ match self {
+ Self::DynamicRw(_, w) => w.try_set(new_value),
+ _ => Some(new_value),
+ }
+ }
+}
+
+impl SignalDispose for MaybeRwSignal {
+ fn dispose(self) {
+ match self {
+ Self::DynamicRw(r, w) => {
+ r.dispose();
+ w.dispose();
+ }
+ Self::DynamicRead(s) => s.dispose(),
+ _ => {
+ // do nothing
+ }
+ }
+ }
+}
diff --git a/src/core/mod.rs b/src/core/mod.rs
index 0128503..b937068 100644
--- a/src/core/mod.rs
+++ b/src/core/mod.rs
@@ -1,9 +1,13 @@
mod element_maybe_signal;
mod elements_maybe_signal;
+mod maybe_rw_signal;
mod position;
mod size;
+mod storage;
pub use element_maybe_signal::*;
pub use elements_maybe_signal::*;
+pub use maybe_rw_signal::*;
pub use position::*;
pub use size::*;
+pub use storage::*;
diff --git a/src/core/storage.rs b/src/core/storage.rs
new file mode 100644
index 0000000..95fe29d
--- /dev/null
+++ b/src/core/storage.rs
@@ -0,0 +1,22 @@
+use leptos::window;
+use wasm_bindgen::JsValue;
+
+/// Local or session storage or a custom store that is a `web_sys::Storage`.
+#[doc(cfg(feature = "storage"))]
+#[derive(Default)]
+pub enum StorageType {
+ #[default]
+ Local,
+ Session,
+ Custom(web_sys::Storage),
+}
+
+impl StorageType {
+ pub fn into_storage(self) -> Result