gitextract_dybf963_/ ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode/ │ └── settings.json ├── LICENSE ├── README.md ├── app/ │ ├── globals.css │ ├── layout.tsx │ ├── manifest.ts │ ├── page.tsx │ ├── robots.ts │ └── sitemap.ts ├── components/ │ ├── adaptive-mask.tsx │ ├── anchor-heading.tsx │ ├── cli-block.tsx │ ├── code-block.tsx │ ├── code-display-block.tsx │ ├── component-preview.tsx │ ├── copy-button.tsx │ ├── examples.tsx │ ├── features.tsx │ ├── installation.tsx │ ├── manual-installation-block.tsx │ ├── micro-interactions.tsx │ ├── native-touch.tsx │ ├── navbar.tsx │ ├── page-wide-scroll-mask.tsx │ ├── posthog-provider.tsx │ ├── render-preview.tsx │ ├── theme-provider.tsx │ ├── theme-toggle.tsx │ ├── ui/ │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dialog.tsx │ │ ├── label.tsx │ │ ├── popover.tsx │ │ ├── revola.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── skeleton.tsx │ │ ├── tabs.tsx │ │ └── tooltip.tsx │ ├── usage.tsx │ ├── variant-select.tsx │ └── why.tsx ├── components.json ├── eslint.config.mjs ├── hooks/ │ ├── use-copy-button.ts │ ├── use-has-primary-touch.tsx │ ├── use-media-query.tsx │ └── use-meta-color.ts ├── lib/ │ ├── adaptive-mask-animation.ts │ ├── code-highlight.ts │ ├── package-manager-store.ts │ ├── package-manager-utils.ts │ ├── utils.ts │ └── variant-store.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public/ │ ├── r/ │ │ ├── command-base.json │ │ ├── command-radix.json │ │ ├── horizontal-scroll-demo-base.json │ │ ├── horizontal-scroll-demo-radix.json │ │ ├── lina-base.json │ │ ├── lina-radix.json │ │ ├── timezone-select-demo-base.json │ │ ├── timezone-select-demo-radix.json │ │ ├── vertical-scroll-demo-base.json │ │ └── vertical-scroll-demo-radix.json │ └── site.webmanifest ├── registry/ │ ├── base-ui/ │ │ ├── examples/ │ │ │ ├── command.tsx │ │ │ ├── horizontal-scroll.tsx │ │ │ ├── timezone-select.tsx │ │ │ ├── usage-demo.tsx │ │ │ └── vertical-scroll.tsx │ │ └── scroll-area.tsx │ ├── radix-ui/ │ │ ├── examples/ │ │ │ ├── command.tsx │ │ │ ├── horizontal-scroll.tsx │ │ │ ├── timezone-select.tsx │ │ │ ├── usage-demo.tsx │ │ │ └── vertical-scroll.tsx │ │ └── scroll-area.tsx │ └── registry.ts ├── registry.json └── tsconfig.json