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
Optional
animate
animate?: boolean
When true, animate close / open state with WAAPI.
Optional
clickActive
clickActive?: boolean
When false, click events are not handled.
Optional
enabled
enabled?: boolean
When false, store changes and click events are not handled.
Optional
store
A minimal writable boolean store for details element open state.
Options for the toggleDetails action.