├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── src ├── app.d.ts ├── app.html ├── app.postcss ├── lib │ ├── Debug.svelte │ ├── Head.svelte │ ├── LibrariesButtons.svelte │ ├── Next.svelte │ ├── Note.svelte │ ├── Timers.svelte │ ├── Youtube.svelte │ ├── assets │ │ ├── bugbug-dark.svg │ │ ├── bugbug-yellow.svg │ │ ├── bugbug.svg │ │ ├── buymeacoffee.svg │ │ ├── debug.svg │ │ ├── events.png │ │ ├── gallery │ │ │ ├── api.png │ │ │ ├── clientvalidation.png │ │ │ ├── multipleforms.png │ │ │ ├── nesteddata.png │ │ │ ├── spinner.png │ │ │ └── tainted.png │ │ ├── github.svg │ │ ├── ko-fi.svg │ │ ├── libs │ │ │ ├── arktype.png │ │ │ ├── arktype_small.png │ │ │ ├── classvalidator.png │ │ │ ├── classvalidator_small.png │ │ │ ├── effect.png │ │ │ ├── effect_small.png │ │ │ ├── joi.png │ │ │ ├── joi_small.png │ │ │ ├── json-schema.png │ │ │ ├── json-schema_small.png │ │ │ ├── superstruct.png │ │ │ ├── superstruct_small.png │ │ │ ├── typebox.png │ │ │ ├── typebox_small.png │ │ │ ├── valibot.png │ │ │ ├── valibot_small.png │ │ │ ├── vinejs.png │ │ │ ├── vinejs_small.png │ │ │ ├── zod.png │ │ │ └── zod_small.png │ │ ├── logo.svg │ │ ├── magnify.svg │ │ ├── mdsvex.svg │ │ ├── paypal.svg │ │ ├── prism-vsc-dark-plus.css │ │ ├── skeleton.svg │ │ ├── spinner.svg │ │ └── three-dots-loading.svg │ ├── clickOutside.ts │ ├── echo.ts │ ├── indexSite.ts │ ├── mdsvex │ │ ├── MarkdownLayout.svelte │ │ ├── blockquote.svelte │ │ ├── ol.svelte │ │ └── table.svelte │ ├── navigation │ │ ├── A.svelte │ │ ├── Navigation.svelte │ │ ├── Title.svelte │ │ └── sections.ts │ ├── settings.ts │ └── sponsoring │ │ ├── Message.svelte │ │ └── Sponsor.svelte ├── routes │ ├── +error.svelte │ ├── +layout.svelte │ ├── +page.md │ ├── DocsSearch.svelte │ ├── Gallery.svelte │ ├── Header.svelte │ ├── SearchButton.svelte │ ├── api │ │ └── +page.md │ ├── components │ │ └── +page.md │ ├── concepts │ │ ├── client-validation │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ └── Form.svelte │ │ ├── enhance │ │ │ └── +page.md │ │ ├── error-handling │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ ├── CustomValidity.svelte │ │ │ ├── Form.svelte │ │ │ └── schema.ts │ │ ├── events │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ ├── Flowchart.svelte │ │ │ └── Form.svelte │ │ ├── files │ │ │ ├── +page.md │ │ │ └── Examples.svelte │ │ ├── messages │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ └── Form.svelte │ │ ├── multiple-forms │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ └── Form.svelte │ │ ├── nested-data │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ ├── Form.svelte │ │ │ └── schema.ts │ │ ├── proxy-objects │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ ├── DateInput.svelte │ │ │ └── Form.svelte │ │ ├── snapshots │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ └── Form.svelte │ │ ├── spa │ │ │ ├── +page.md │ │ │ ├── +page.ts │ │ │ └── Form.svelte │ │ ├── strict-mode │ │ │ └── +page.md │ │ ├── submit-behavior │ │ │ └── +page.md │ │ ├── tainted │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ └── Form.svelte │ │ └── timers │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ └── Form.svelte │ ├── contributing │ │ ├── +page.md │ │ └── Donating.svelte │ ├── crud │ │ └── +page.md │ ├── debug │ │ ├── +page.server.ts │ │ └── +page.svelte │ ├── default-values │ │ └── +page.md │ ├── examples │ │ ├── +page.md │ │ ├── ExampleList.svelte │ │ └── examples.ts │ ├── faq │ │ └── +page.md │ ├── flash-messages │ │ └── +page.md │ ├── formsnap │ │ ├── +page.md │ │ └── formsnap.svg │ ├── get-started │ │ └── [...lib] │ │ │ ├── +page.md │ │ │ ├── +page.server.ts │ │ │ ├── Form.svelte │ │ │ ├── Installer.svelte │ │ │ └── SvelteLab.svelte │ ├── legacy │ │ └── +page.md │ ├── migration-v2 │ │ ├── +page.md │ │ ├── Installer.svelte │ │ └── file-debug.png │ ├── migration │ │ └── +page.md │ ├── playground │ │ └── +page.server.ts │ ├── rate-limiting │ │ └── +page.md │ ├── search │ │ └── +server.ts │ ├── sponsors │ │ ├── +page.md │ │ ├── Sponsors.svelte │ │ └── img │ │ │ ├── 21risk.png │ │ │ ├── braden-w.jpg │ │ │ ├── bugbug.png │ │ │ ├── careswitch.png │ │ │ ├── cgalo5758.png │ │ │ ├── chbert.jpg │ │ │ ├── exceptionless.png │ │ │ ├── hemalr.webp │ │ │ ├── huntabyte.jpg │ │ │ ├── jdgamble555.jpg │ │ │ ├── jeffp.webp │ │ │ ├── jitpackjoyride.jpg │ │ │ ├── knd775.jpg │ │ │ ├── matus.webp │ │ │ ├── nicholas.png │ │ │ ├── saturnonearth.jpg │ │ │ ├── shortbook.png │ │ │ ├── sillvva.jpg │ │ │ ├── toucantix.png │ │ │ ├── tylergaw.jpg │ │ │ └── yuzu-health.png │ ├── super-debug │ │ ├── +page.md │ │ ├── +page.ts │ │ ├── CssVars.svelte │ │ └── Input.svelte │ ├── support │ │ └── +page.md │ ├── whats-new-v1 │ │ └── +page.md │ └── whats-new-v2 │ │ ├── +page.md │ │ └── file-debug.png ├── tests │ └── searchEngine.test.ts └── theme.postcss ├── static ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── examples │ ├── components.png │ ├── crud.png │ ├── custom-client.png │ ├── date-array.png │ ├── discriminated-union.png │ ├── dropdown-check.png │ ├── file-uploads.png │ ├── list-actions.png │ ├── multi-select.png │ ├── multi-step-client.png │ ├── multi-step-server.png │ ├── multi-step-skeleton.png │ ├── radio-check.png │ ├── spa.png │ ├── url.png │ └── username-available.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── favicon.svg ├── link.svg ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── og.png ├── oramadb.json ├── safari-pinned-tab.svg └── site.webmanifest ├── svelte.config.js ├── tailwind.config.cjs ├── tsconfig.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/app.html -------------------------------------------------------------------------------- /src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/app.postcss -------------------------------------------------------------------------------- /src/lib/Debug.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/Debug.svelte -------------------------------------------------------------------------------- /src/lib/Head.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/Head.svelte -------------------------------------------------------------------------------- /src/lib/LibrariesButtons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/LibrariesButtons.svelte -------------------------------------------------------------------------------- /src/lib/Next.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/Next.svelte -------------------------------------------------------------------------------- /src/lib/Note.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/Note.svelte -------------------------------------------------------------------------------- /src/lib/Timers.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/Timers.svelte -------------------------------------------------------------------------------- /src/lib/Youtube.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/Youtube.svelte -------------------------------------------------------------------------------- /src/lib/assets/bugbug-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/bugbug-dark.svg -------------------------------------------------------------------------------- /src/lib/assets/bugbug-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/bugbug-yellow.svg -------------------------------------------------------------------------------- /src/lib/assets/bugbug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/bugbug.svg -------------------------------------------------------------------------------- /src/lib/assets/buymeacoffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/buymeacoffee.svg -------------------------------------------------------------------------------- /src/lib/assets/debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/debug.svg -------------------------------------------------------------------------------- /src/lib/assets/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/events.png -------------------------------------------------------------------------------- /src/lib/assets/gallery/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/gallery/api.png -------------------------------------------------------------------------------- /src/lib/assets/gallery/clientvalidation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/gallery/clientvalidation.png -------------------------------------------------------------------------------- /src/lib/assets/gallery/multipleforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/gallery/multipleforms.png -------------------------------------------------------------------------------- /src/lib/assets/gallery/nesteddata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/gallery/nesteddata.png -------------------------------------------------------------------------------- /src/lib/assets/gallery/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/gallery/spinner.png -------------------------------------------------------------------------------- /src/lib/assets/gallery/tainted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/gallery/tainted.png -------------------------------------------------------------------------------- /src/lib/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/github.svg -------------------------------------------------------------------------------- /src/lib/assets/ko-fi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/ko-fi.svg -------------------------------------------------------------------------------- /src/lib/assets/libs/arktype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/arktype.png -------------------------------------------------------------------------------- /src/lib/assets/libs/arktype_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/arktype_small.png -------------------------------------------------------------------------------- /src/lib/assets/libs/classvalidator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/classvalidator.png -------------------------------------------------------------------------------- /src/lib/assets/libs/classvalidator_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/classvalidator_small.png -------------------------------------------------------------------------------- /src/lib/assets/libs/effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/effect.png -------------------------------------------------------------------------------- /src/lib/assets/libs/effect_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/effect_small.png -------------------------------------------------------------------------------- /src/lib/assets/libs/joi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/joi.png -------------------------------------------------------------------------------- /src/lib/assets/libs/joi_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/joi_small.png -------------------------------------------------------------------------------- /src/lib/assets/libs/json-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/json-schema.png -------------------------------------------------------------------------------- /src/lib/assets/libs/json-schema_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/json-schema_small.png -------------------------------------------------------------------------------- /src/lib/assets/libs/superstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/superstruct.png -------------------------------------------------------------------------------- /src/lib/assets/libs/superstruct_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/superstruct_small.png -------------------------------------------------------------------------------- /src/lib/assets/libs/typebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/typebox.png -------------------------------------------------------------------------------- /src/lib/assets/libs/typebox_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/typebox_small.png -------------------------------------------------------------------------------- /src/lib/assets/libs/valibot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/valibot.png -------------------------------------------------------------------------------- /src/lib/assets/libs/valibot_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/valibot_small.png -------------------------------------------------------------------------------- /src/lib/assets/libs/vinejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/vinejs.png -------------------------------------------------------------------------------- /src/lib/assets/libs/vinejs_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/vinejs_small.png -------------------------------------------------------------------------------- /src/lib/assets/libs/zod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/zod.png -------------------------------------------------------------------------------- /src/lib/assets/libs/zod_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/libs/zod_small.png -------------------------------------------------------------------------------- /src/lib/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/logo.svg -------------------------------------------------------------------------------- /src/lib/assets/magnify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/magnify.svg -------------------------------------------------------------------------------- /src/lib/assets/mdsvex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/mdsvex.svg -------------------------------------------------------------------------------- /src/lib/assets/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/paypal.svg -------------------------------------------------------------------------------- /src/lib/assets/prism-vsc-dark-plus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/prism-vsc-dark-plus.css -------------------------------------------------------------------------------- /src/lib/assets/skeleton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/skeleton.svg -------------------------------------------------------------------------------- /src/lib/assets/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/spinner.svg -------------------------------------------------------------------------------- /src/lib/assets/three-dots-loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/assets/three-dots-loading.svg -------------------------------------------------------------------------------- /src/lib/clickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/clickOutside.ts -------------------------------------------------------------------------------- /src/lib/echo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/echo.ts -------------------------------------------------------------------------------- /src/lib/indexSite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/indexSite.ts -------------------------------------------------------------------------------- /src/lib/mdsvex/MarkdownLayout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/mdsvex/MarkdownLayout.svelte -------------------------------------------------------------------------------- /src/lib/mdsvex/blockquote.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/mdsvex/blockquote.svelte -------------------------------------------------------------------------------- /src/lib/mdsvex/ol.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/mdsvex/ol.svelte -------------------------------------------------------------------------------- /src/lib/mdsvex/table.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/mdsvex/table.svelte -------------------------------------------------------------------------------- /src/lib/navigation/A.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/navigation/A.svelte -------------------------------------------------------------------------------- /src/lib/navigation/Navigation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/navigation/Navigation.svelte -------------------------------------------------------------------------------- /src/lib/navigation/Title.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/navigation/Title.svelte -------------------------------------------------------------------------------- /src/lib/navigation/sections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/navigation/sections.ts -------------------------------------------------------------------------------- /src/lib/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/settings.ts -------------------------------------------------------------------------------- /src/lib/sponsoring/Message.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/sponsoring/Message.svelte -------------------------------------------------------------------------------- /src/lib/sponsoring/Sponsor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/lib/sponsoring/Sponsor.svelte -------------------------------------------------------------------------------- /src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/+error.svelte -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/+page.md -------------------------------------------------------------------------------- /src/routes/DocsSearch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/DocsSearch.svelte -------------------------------------------------------------------------------- /src/routes/Gallery.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/Gallery.svelte -------------------------------------------------------------------------------- /src/routes/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/Header.svelte -------------------------------------------------------------------------------- /src/routes/SearchButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/SearchButton.svelte -------------------------------------------------------------------------------- /src/routes/api/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/api/+page.md -------------------------------------------------------------------------------- /src/routes/components/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/components/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/client-validation/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/client-validation/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/client-validation/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/client-validation/+page.server.ts -------------------------------------------------------------------------------- /src/routes/concepts/client-validation/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/client-validation/Form.svelte -------------------------------------------------------------------------------- /src/routes/concepts/enhance/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/enhance/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/error-handling/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/error-handling/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/error-handling/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/error-handling/+page.server.ts -------------------------------------------------------------------------------- /src/routes/concepts/error-handling/CustomValidity.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/error-handling/CustomValidity.svelte -------------------------------------------------------------------------------- /src/routes/concepts/error-handling/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/error-handling/Form.svelte -------------------------------------------------------------------------------- /src/routes/concepts/error-handling/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/error-handling/schema.ts -------------------------------------------------------------------------------- /src/routes/concepts/events/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/events/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/events/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/events/+page.server.ts -------------------------------------------------------------------------------- /src/routes/concepts/events/Flowchart.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/events/Flowchart.svelte -------------------------------------------------------------------------------- /src/routes/concepts/events/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/events/Form.svelte -------------------------------------------------------------------------------- /src/routes/concepts/files/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/files/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/files/Examples.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/files/Examples.svelte -------------------------------------------------------------------------------- /src/routes/concepts/messages/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/messages/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/messages/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/messages/+page.server.ts -------------------------------------------------------------------------------- /src/routes/concepts/messages/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/messages/Form.svelte -------------------------------------------------------------------------------- /src/routes/concepts/multiple-forms/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/multiple-forms/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/multiple-forms/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/multiple-forms/+page.server.ts -------------------------------------------------------------------------------- /src/routes/concepts/multiple-forms/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/multiple-forms/Form.svelte -------------------------------------------------------------------------------- /src/routes/concepts/nested-data/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/nested-data/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/nested-data/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/nested-data/+page.server.ts -------------------------------------------------------------------------------- /src/routes/concepts/nested-data/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/nested-data/Form.svelte -------------------------------------------------------------------------------- /src/routes/concepts/nested-data/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/nested-data/schema.ts -------------------------------------------------------------------------------- /src/routes/concepts/proxy-objects/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/proxy-objects/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/proxy-objects/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/proxy-objects/+page.server.ts -------------------------------------------------------------------------------- /src/routes/concepts/proxy-objects/DateInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/proxy-objects/DateInput.svelte -------------------------------------------------------------------------------- /src/routes/concepts/proxy-objects/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/proxy-objects/Form.svelte -------------------------------------------------------------------------------- /src/routes/concepts/snapshots/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/snapshots/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/snapshots/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/snapshots/+page.server.ts -------------------------------------------------------------------------------- /src/routes/concepts/snapshots/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/snapshots/Form.svelte -------------------------------------------------------------------------------- /src/routes/concepts/spa/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/spa/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/spa/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/spa/+page.ts -------------------------------------------------------------------------------- /src/routes/concepts/spa/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/spa/Form.svelte -------------------------------------------------------------------------------- /src/routes/concepts/strict-mode/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/strict-mode/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/submit-behavior/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/submit-behavior/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/tainted/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/tainted/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/tainted/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/tainted/+page.server.ts -------------------------------------------------------------------------------- /src/routes/concepts/tainted/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/tainted/Form.svelte -------------------------------------------------------------------------------- /src/routes/concepts/timers/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/timers/+page.md -------------------------------------------------------------------------------- /src/routes/concepts/timers/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/timers/+page.server.ts -------------------------------------------------------------------------------- /src/routes/concepts/timers/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/concepts/timers/Form.svelte -------------------------------------------------------------------------------- /src/routes/contributing/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/contributing/+page.md -------------------------------------------------------------------------------- /src/routes/contributing/Donating.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/contributing/Donating.svelte -------------------------------------------------------------------------------- /src/routes/crud/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/crud/+page.md -------------------------------------------------------------------------------- /src/routes/debug/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/debug/+page.server.ts -------------------------------------------------------------------------------- /src/routes/debug/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/debug/+page.svelte -------------------------------------------------------------------------------- /src/routes/default-values/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/default-values/+page.md -------------------------------------------------------------------------------- /src/routes/examples/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/examples/+page.md -------------------------------------------------------------------------------- /src/routes/examples/ExampleList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/examples/ExampleList.svelte -------------------------------------------------------------------------------- /src/routes/examples/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/examples/examples.ts -------------------------------------------------------------------------------- /src/routes/faq/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/faq/+page.md -------------------------------------------------------------------------------- /src/routes/flash-messages/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/flash-messages/+page.md -------------------------------------------------------------------------------- /src/routes/formsnap/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/formsnap/+page.md -------------------------------------------------------------------------------- /src/routes/formsnap/formsnap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/formsnap/formsnap.svg -------------------------------------------------------------------------------- /src/routes/get-started/[...lib]/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/get-started/[...lib]/+page.md -------------------------------------------------------------------------------- /src/routes/get-started/[...lib]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/get-started/[...lib]/+page.server.ts -------------------------------------------------------------------------------- /src/routes/get-started/[...lib]/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/get-started/[...lib]/Form.svelte -------------------------------------------------------------------------------- /src/routes/get-started/[...lib]/Installer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/get-started/[...lib]/Installer.svelte -------------------------------------------------------------------------------- /src/routes/get-started/[...lib]/SvelteLab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/get-started/[...lib]/SvelteLab.svelte -------------------------------------------------------------------------------- /src/routes/legacy/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/legacy/+page.md -------------------------------------------------------------------------------- /src/routes/migration-v2/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/migration-v2/+page.md -------------------------------------------------------------------------------- /src/routes/migration-v2/Installer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/migration-v2/Installer.svelte -------------------------------------------------------------------------------- /src/routes/migration-v2/file-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/migration-v2/file-debug.png -------------------------------------------------------------------------------- /src/routes/migration/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/migration/+page.md -------------------------------------------------------------------------------- /src/routes/playground/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/playground/+page.server.ts -------------------------------------------------------------------------------- /src/routes/rate-limiting/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/rate-limiting/+page.md -------------------------------------------------------------------------------- /src/routes/search/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/search/+server.ts -------------------------------------------------------------------------------- /src/routes/sponsors/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/+page.md -------------------------------------------------------------------------------- /src/routes/sponsors/Sponsors.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/Sponsors.svelte -------------------------------------------------------------------------------- /src/routes/sponsors/img/21risk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/21risk.png -------------------------------------------------------------------------------- /src/routes/sponsors/img/braden-w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/braden-w.jpg -------------------------------------------------------------------------------- /src/routes/sponsors/img/bugbug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/bugbug.png -------------------------------------------------------------------------------- /src/routes/sponsors/img/careswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/careswitch.png -------------------------------------------------------------------------------- /src/routes/sponsors/img/cgalo5758.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/cgalo5758.png -------------------------------------------------------------------------------- /src/routes/sponsors/img/chbert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/chbert.jpg -------------------------------------------------------------------------------- /src/routes/sponsors/img/exceptionless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/exceptionless.png -------------------------------------------------------------------------------- /src/routes/sponsors/img/hemalr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/hemalr.webp -------------------------------------------------------------------------------- /src/routes/sponsors/img/huntabyte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/huntabyte.jpg -------------------------------------------------------------------------------- /src/routes/sponsors/img/jdgamble555.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/jdgamble555.jpg -------------------------------------------------------------------------------- /src/routes/sponsors/img/jeffp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/jeffp.webp -------------------------------------------------------------------------------- /src/routes/sponsors/img/jitpackjoyride.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/jitpackjoyride.jpg -------------------------------------------------------------------------------- /src/routes/sponsors/img/knd775.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/knd775.jpg -------------------------------------------------------------------------------- /src/routes/sponsors/img/matus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/matus.webp -------------------------------------------------------------------------------- /src/routes/sponsors/img/nicholas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/nicholas.png -------------------------------------------------------------------------------- /src/routes/sponsors/img/saturnonearth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/saturnonearth.jpg -------------------------------------------------------------------------------- /src/routes/sponsors/img/shortbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/shortbook.png -------------------------------------------------------------------------------- /src/routes/sponsors/img/sillvva.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/sillvva.jpg -------------------------------------------------------------------------------- /src/routes/sponsors/img/toucantix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/toucantix.png -------------------------------------------------------------------------------- /src/routes/sponsors/img/tylergaw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/tylergaw.jpg -------------------------------------------------------------------------------- /src/routes/sponsors/img/yuzu-health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/sponsors/img/yuzu-health.png -------------------------------------------------------------------------------- /src/routes/super-debug/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/super-debug/+page.md -------------------------------------------------------------------------------- /src/routes/super-debug/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/super-debug/+page.ts -------------------------------------------------------------------------------- /src/routes/super-debug/CssVars.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/super-debug/CssVars.svelte -------------------------------------------------------------------------------- /src/routes/super-debug/Input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/super-debug/Input.svelte -------------------------------------------------------------------------------- /src/routes/support/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/support/+page.md -------------------------------------------------------------------------------- /src/routes/whats-new-v1/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/whats-new-v1/+page.md -------------------------------------------------------------------------------- /src/routes/whats-new-v2/+page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/whats-new-v2/+page.md -------------------------------------------------------------------------------- /src/routes/whats-new-v2/file-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/routes/whats-new-v2/file-debug.png -------------------------------------------------------------------------------- /src/tests/searchEngine.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/tests/searchEngine.test.ts -------------------------------------------------------------------------------- /src/theme.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/src/theme.postcss -------------------------------------------------------------------------------- /static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/browserconfig.xml -------------------------------------------------------------------------------- /static/examples/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/components.png -------------------------------------------------------------------------------- /static/examples/crud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/crud.png -------------------------------------------------------------------------------- /static/examples/custom-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/custom-client.png -------------------------------------------------------------------------------- /static/examples/date-array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/date-array.png -------------------------------------------------------------------------------- /static/examples/discriminated-union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/discriminated-union.png -------------------------------------------------------------------------------- /static/examples/dropdown-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/dropdown-check.png -------------------------------------------------------------------------------- /static/examples/file-uploads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/file-uploads.png -------------------------------------------------------------------------------- /static/examples/list-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/list-actions.png -------------------------------------------------------------------------------- /static/examples/multi-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/multi-select.png -------------------------------------------------------------------------------- /static/examples/multi-step-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/multi-step-client.png -------------------------------------------------------------------------------- /static/examples/multi-step-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/multi-step-server.png -------------------------------------------------------------------------------- /static/examples/multi-step-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/multi-step-skeleton.png -------------------------------------------------------------------------------- /static/examples/radio-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/radio-check.png -------------------------------------------------------------------------------- /static/examples/spa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/spa.png -------------------------------------------------------------------------------- /static/examples/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/url.png -------------------------------------------------------------------------------- /static/examples/username-available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/examples/username-available.png -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/favicon.svg -------------------------------------------------------------------------------- /static/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/link.svg -------------------------------------------------------------------------------- /static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/mstile-144x144.png -------------------------------------------------------------------------------- /static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/mstile-150x150.png -------------------------------------------------------------------------------- /static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/mstile-310x150.png -------------------------------------------------------------------------------- /static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/mstile-310x310.png -------------------------------------------------------------------------------- /static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/mstile-70x70.png -------------------------------------------------------------------------------- /static/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/og.png -------------------------------------------------------------------------------- /static/oramadb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/oramadb.json -------------------------------------------------------------------------------- /static/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/safari-pinned-tab.svg -------------------------------------------------------------------------------- /static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/static/site.webmanifest -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/superforms-web/HEAD/vite.config.ts --------------------------------------------------------------------------------