gitextract_xzm58w39/ ├── .changeset/ │ ├── README.md │ └── config.json ├── .github/ │ └── workflows/ │ ├── ci.yml │ ├── pages.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── apps/ │ └── docs/ │ ├── astro.config.mjs │ ├── package.json │ ├── playwright.config.ts │ ├── src/ │ │ ├── components/ │ │ │ ├── api/ │ │ │ │ ├── ApiPackageNav.tsx │ │ │ │ ├── ApiPackageSummaryList.tsx │ │ │ │ └── ApiToc.tsx │ │ │ ├── landing/ │ │ │ │ ├── ApiDocsCta.astro │ │ │ │ ├── Hero.astro │ │ │ │ └── InstallSection.astro │ │ │ └── playground/ │ │ │ ├── PlaygroundShell.tsx │ │ │ ├── ReactInspectorPanel.tsx │ │ │ ├── ResultPanel.tsx │ │ │ ├── StandardResultPanel.tsx │ │ │ ├── VariantHeader.tsx │ │ │ ├── bootstrap/ │ │ │ │ └── jquery-bootstrap.ts │ │ │ ├── types.ts │ │ │ ├── variant-registry.ts │ │ │ └── variants/ │ │ │ ├── core-variant.tsx │ │ │ ├── form-data-variant.tsx │ │ │ ├── form-variant.tsx │ │ │ ├── jquery-variant.tsx │ │ │ ├── js2form-variant.tsx │ │ │ └── react-variant.tsx │ │ ├── env.d.ts │ │ ├── layouts/ │ │ │ ├── ApiDocsLayout.astro │ │ │ ├── DesignShell.astro │ │ │ └── DocsShell.astro │ │ ├── lib/ │ │ │ ├── api-docs-source.ts │ │ │ ├── api-packages.ts │ │ │ └── site-routes.ts │ │ ├── pages/ │ │ │ ├── api/ │ │ │ │ ├── [package].astro │ │ │ │ └── index.astro │ │ │ ├── index.astro │ │ │ └── migrate.astro │ │ └── styles/ │ │ ├── global.css │ │ ├── landing.css │ │ ├── playground.css │ │ └── themes/ │ │ ├── dark-brutalism.css │ │ ├── editorial.css │ │ ├── linear-dark.css │ │ ├── outrun-sunset.css │ │ └── terminal-noir.css │ ├── test/ │ │ ├── api-docs-page.test.tsx │ │ ├── api-docs-source.test.ts │ │ ├── data-variants.test.tsx │ │ ├── docs-pipeline.test.ts │ │ ├── docs-root-scripts.test.ts │ │ ├── homepage-shell.test.ts │ │ ├── playground-shell.test.tsx │ │ ├── playground-styles.test.ts │ │ ├── react-variant.test.tsx │ │ ├── site-routes.test.ts │ │ ├── standard-variants.test.tsx │ │ └── variant-registry.test.ts │ ├── test-e2e/ │ │ ├── api-docs.spec.ts │ │ └── homepage.spec.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── changeset/ │ └── config.json ├── docs/ │ ├── api-core.md │ ├── api-dom.md │ ├── api-form-data.md │ ├── api-index.md │ ├── api-jquery.md │ ├── api-js2form.md │ ├── api-react.md │ └── migrate.md ├── eslint.config.js ├── package.json ├── packages/ │ ├── core/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── test/ │ │ │ └── core.test.ts │ │ ├── tsconfig.json │ │ └── tsup.config.ts │ ├── dom/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── standalone.ts │ │ ├── test/ │ │ │ └── dom.test.ts │ │ ├── tsconfig.json │ │ └── tsup.config.ts │ ├── form-data/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.ts │ │ ├── test/ │ │ │ └── form-data.test.ts │ │ ├── tsconfig.json │ │ └── tsup.config.ts │ ├── jquery/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── standalone.ts │ │ ├── test/ │ │ │ └── jquery.test.ts │ │ ├── tsconfig.json │ │ └── tsup.config.ts │ ├── js2form/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.ts │ │ ├── test/ │ │ │ └── js2form.test.ts │ │ ├── tsconfig.json │ │ └── tsup.config.ts │ └── react/ │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src/ │ │ └── index.ts │ ├── test/ │ │ └── react.test.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── scripts/ │ ├── bump-version.mjs │ └── rewrite-scope.mjs ├── test/ │ └── integration/ │ ├── bump-version.test.ts │ ├── dependency-security.test.ts │ ├── form-flow.test.ts │ ├── package-metadata.test.ts │ └── workflow-node-version.test.ts ├── tsconfig.base.json └── turbo.json