dioxus-daisyui 0.8.0

Dioxus daisyui
Documentation
use crate::ext::*;

constant!(form control);
constant!(label);

// https://daisyui.com/components/checkbox/
constant!(checkbox);

// Modifier
constant!(checkbox primary);
constant!(checkbox secondary);
constant!(checkbox accent);
constant!(checkbox success);
constant!(checkbox warning);
constant!(checkbox info);
constant!(checkbox error);

// Responsive
constant!(checkbox lg);
constant!(checkbox md);
constant!(checkbox sm);
constant!(checkbox xs);

// https://daisyui.com/components/file-input/
constant!(file input);

// Modifier
constant!(file input bordered);
constant!(file input ghost);

constant!(file input primary);
constant!(file input secondary);
constant!(file input accent);
constant!(file input info);
constant!(file input success);
constant!(file input warning);
constant!(file input error);

// Responsive
constant!(file input lg);
constant!(file input md);
constant!(file input sm);
constant!(file input xs);

// https://daisyui.com/components/radio/
constant!(radio);

// Modifier
constant!(radio primary);
constant!(radio secondary);
constant!(radio accent);
constant!(radio success);
constant!(radio warning);
constant!(radio info);
constant!(radio error);

// Responsive
constant!(radio lg);
constant!(radio md);
constant!(radio sm);
constant!(radio xs);

// https://daisyui.com/components/range/
constant!(range);

// Modifier
constant!(range primary);
constant!(range secondary);
constant!(range accent);
constant!(range success);
constant!(range warning);
constant!(range info);
constant!(range error);

// Responsive
constant!(range lg);
constant!(range md);
constant!(range sm);
constant!(range xs);

// https://daisyui.com/components/rating/
constant!(rating);

// Modifier
constant!(rating half);
constant!(rating hidden);

// Responsive
constant!(rating lg);
constant!(rating md);
constant!(rating sm);
constant!(rating xs);

// https://daisyui.com/components/select/
constant!(select);

// Modifier
constant!(select bordered);
constant!(select ghost);

constant!(select primary);
constant!(select secondary);
constant!(select accent);
constant!(select info);
constant!(select success);
constant!(select warning);
constant!(select error);

// Responsive
constant!(select lg);
constant!(select md);
constant!(select sm);
constant!(select xs);

// https://daisyui.com/components/input/
constant!(input);

// Modifier
constant!(input bordered);
constant!(input ghost);

constant!(input primary);
constant!(input secondary);
constant!(input accent);
constant!(input info);
constant!(input success);
constant!(input warning);
constant!(input error);

// Responsive
constant!(input lg);
constant!(input md);
constant!(input sm);
constant!(input xs);

// https://daisyui.com/components/textarea/
constant!(textarea);

// Modifier
constant!(textarea bordered);
constant!(textarea ghost);

constant!(textarea primary);
constant!(textarea secondary);
constant!(textarea accent);
constant!(textarea info);
constant!(textarea success);
constant!(textarea warning);
constant!(textarea error);

// Responsive
constant!(textarea lg);
constant!(textarea md);
constant!(textarea sm);
constant!(textarea xs);

// https://daisyui.com/components/toggle/
constant!(toggle);

// Modifier
constant!(toggle primary);
constant!(toggle secondary);
constant!(toggle accent);
constant!(toggle success);
constant!(toggle warning);
constant!(toggle info);
constant!(toggle error);

// Responsive
constant!(toggle lg);
constant!(toggle md);
constant!(toggle sm);
constant!(toggle xs);