app-walkthrough
Version:
An intuitive guided walkthrough library with UI highlighting and voice narration for web apps.
13 lines (12 loc) • 375 B
JavaScript
export const RECORDER_UI_CONTAINER_CLASS = "fixed bottom-10 left-0 w-full min-h-[60px] p-2 bg-red-500 bg-opacity-100 flex justify-center items-center border-t border-gray-700 z-10";
// Define the event types to record
export const RECORDABLE_EVENT_TYPES = [
"click",
"mousedown",
"mouseup",
"scroll",
"input",
"change",
"keydown",
"keyup",
];