Interface ToggleDetails
interface ToggleDetails {
animate?: boolean;
clickActive?: boolean;
enabled?: boolean;
store?: MinimalWritable<boolean>;
}
animate?: boolean;
clickActive?: boolean;
enabled?: boolean;
store?: MinimalWritable<boolean>;
}
Index
Properties
Properties
Optionalanimate
animate?: boolean
When true, animate close / open state with WAAPI.
OptionalclickActive
clickActive?: boolean
When false, click events are not handled.
Optionalenabled
enabled?: boolean
When false, store changes and click events are not handled.
Optionalstore
A minimal writable boolean store for details element open state.
Options for the toggleDetails action.