gitextract_tn0sokzd/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── docs/ │ ├── .gitignore │ ├── astro.config.mjs │ ├── package.json │ ├── src/ │ │ ├── components/ │ │ │ ├── Analytics/ │ │ │ │ ├── Analytics.astro │ │ │ │ └── analytics.ts │ │ │ ├── CodeSample.tsx │ │ │ ├── Container.astro │ │ │ ├── DocsHeader.tsx │ │ │ ├── ExampleButton.tsx │ │ │ ├── Examples.astro │ │ │ ├── FeatureMarquee.tsx │ │ │ ├── Features.astro │ │ │ ├── FormHelp.tsx │ │ │ ├── HeroSection.astro │ │ │ ├── OpenSourceLove.astro │ │ │ ├── Sidebar.astro │ │ │ ├── UsecaseItem.astro │ │ │ └── UsecaseList.astro │ │ ├── content/ │ │ │ ├── config.ts │ │ │ └── guides/ │ │ │ ├── animated-tour.mdx │ │ │ ├── api.mdx │ │ │ ├── async-tour.mdx │ │ │ ├── basic-usage.mdx │ │ │ ├── buttons.mdx │ │ │ ├── configuration.mdx │ │ │ ├── confirm-on-exit.mdx │ │ │ ├── installation.mdx │ │ │ ├── migrating-from-0x.mdx │ │ │ ├── popover-position.mdx │ │ │ ├── prevent-destroy.mdx │ │ │ ├── simple-highlight.mdx │ │ │ ├── static-tour.mdx │ │ │ ├── styling-overlay.mdx │ │ │ ├── styling-popover.mdx │ │ │ ├── theming.mdx │ │ │ └── tour-progress.mdx │ │ ├── env.d.ts │ │ ├── layouts/ │ │ │ ├── BaseLayout.astro │ │ │ └── DocsLayout.astro │ │ ├── lib/ │ │ │ ├── github.ts │ │ │ └── guide.ts │ │ └── pages/ │ │ ├── docs/ │ │ │ └── [guideId].astro │ │ └── index.astro │ ├── tailwind.config.cjs │ └── tsconfig.json ├── dts-bundle-generator.config.ts ├── index.html ├── license ├── package.json ├── readme.md ├── src/ │ ├── config.ts │ ├── driver.css │ ├── driver.ts │ ├── emitter.ts │ ├── events.ts │ ├── highlight.ts │ ├── overlay.ts │ ├── popover.ts │ ├── state.ts │ └── utils.ts ├── tests/ │ └── sum.test.ts ├── tsconfig.json └── vite.config.ts