├── .editorconfig ├── .gitignore ├── .node-version ├── .prettierrc ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── angular ├── .browserslistrc ├── .gitignore ├── README.md ├── angular.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── components │ │ │ ├── item │ │ │ ├── item.component.css │ │ │ ├── item.component.html │ │ │ └── item.component.ts │ │ │ └── search-box │ │ │ ├── search-box.component.css │ │ │ ├── search-box.component.html │ │ │ └── search-box.component.ts │ ├── assets │ │ └── .gitkeep │ ├── data │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── bench.js ├── data ├── a.sh ├── item.json ├── items.ts ├── location.json ├── move.json ├── pokemon.json └── raw.json ├── index.html ├── package.json ├── preact ├── .gitignore ├── index.html ├── package.json ├── src │ ├── App.module.css │ ├── App.tsx │ ├── components │ │ ├── Item │ │ │ ├── Item.module.css │ │ │ └── index.tsx │ │ └── SearchBox │ │ │ ├── SearchBox.module.css │ │ │ └── index.tsx │ ├── data │ ├── favicon.svg │ ├── index.css │ ├── logo.tsx │ ├── main.tsx │ ├── preact.d.ts │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── react ├── .gitignore ├── index.html ├── package.json ├── src │ ├── App.module.css │ ├── App.tsx │ ├── components │ │ ├── Item │ │ │ ├── Item.module.css │ │ │ └── index.tsx │ │ └── SearchBox │ │ │ ├── SearchBox.module.css │ │ │ └── index.tsx │ ├── data │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── solidjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src │ ├── App.module.css │ ├── App.tsx │ ├── assets │ │ └── favicon.ico │ ├── components │ │ ├── Item │ │ │ ├── Item.module.css │ │ │ └── index.tsx │ │ └── SearchBox │ │ │ ├── SearchBox.module.css │ │ │ └── index.tsx │ ├── data │ ├── index.css │ └── index.tsx ├── tsconfig.json └── vite.config.ts ├── svelte ├── .gitignore ├── README.md ├── index.html ├── package.json ├── public │ └── favicon.ico ├── src │ ├── App.svelte │ ├── components │ │ ├── Item.svelte │ │ └── SearchBox.svelte │ ├── data │ ├── index.css │ ├── main.ts │ └── vite-env.d.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── vue ├── .gitignore ├── README.md ├── index.html ├── package.json ├── public │ └── favicon.ico ├── src │ ├── App.vue │ ├── components │ │ ├── Item.vue │ │ └── SearchBox.vue │ ├── data │ ├── env.d.ts │ ├── index.css │ └── main.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /dist 3 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16.14.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /angular/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/.browserslistrc -------------------------------------------------------------------------------- /angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/.gitignore -------------------------------------------------------------------------------- /angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/README.md -------------------------------------------------------------------------------- /angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/angular.json -------------------------------------------------------------------------------- /angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/package.json -------------------------------------------------------------------------------- /angular/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/app/app.component.css -------------------------------------------------------------------------------- /angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/app/app.component.html -------------------------------------------------------------------------------- /angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/app/app.component.ts -------------------------------------------------------------------------------- /angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/app/app.module.ts -------------------------------------------------------------------------------- /angular/src/app/components/item/item.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/app/components/item/item.component.css -------------------------------------------------------------------------------- /angular/src/app/components/item/item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/app/components/item/item.component.html -------------------------------------------------------------------------------- /angular/src/app/components/item/item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/app/components/item/item.component.ts -------------------------------------------------------------------------------- /angular/src/app/components/search-box/search-box.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/app/components/search-box/search-box.component.css -------------------------------------------------------------------------------- /angular/src/app/components/search-box/search-box.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/app/components/search-box/search-box.component.html -------------------------------------------------------------------------------- /angular/src/app/components/search-box/search-box.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/app/components/search-box/search-box.component.ts -------------------------------------------------------------------------------- /angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular/src/data: -------------------------------------------------------------------------------- 1 | ../../data -------------------------------------------------------------------------------- /angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/environments/environment.ts -------------------------------------------------------------------------------- /angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/favicon.ico -------------------------------------------------------------------------------- /angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/index.html -------------------------------------------------------------------------------- /angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/main.ts -------------------------------------------------------------------------------- /angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/polyfills.ts -------------------------------------------------------------------------------- /angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/styles.css -------------------------------------------------------------------------------- /angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/src/test.ts -------------------------------------------------------------------------------- /angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/tsconfig.app.json -------------------------------------------------------------------------------- /angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/tsconfig.json -------------------------------------------------------------------------------- /angular/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/angular/tsconfig.spec.json -------------------------------------------------------------------------------- /bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/bench.js -------------------------------------------------------------------------------- /data/a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/data/a.sh -------------------------------------------------------------------------------- /data/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/data/item.json -------------------------------------------------------------------------------- /data/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/data/items.ts -------------------------------------------------------------------------------- /data/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/data/location.json -------------------------------------------------------------------------------- /data/move.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/data/move.json -------------------------------------------------------------------------------- /data/pokemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/data/pokemon.json -------------------------------------------------------------------------------- /data/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/data/raw.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/package.json -------------------------------------------------------------------------------- /preact/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/.gitignore -------------------------------------------------------------------------------- /preact/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/index.html -------------------------------------------------------------------------------- /preact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/package.json -------------------------------------------------------------------------------- /preact/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/src/App.module.css -------------------------------------------------------------------------------- /preact/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/src/App.tsx -------------------------------------------------------------------------------- /preact/src/components/Item/Item.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/src/components/Item/Item.module.css -------------------------------------------------------------------------------- /preact/src/components/Item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/src/components/Item/index.tsx -------------------------------------------------------------------------------- /preact/src/components/SearchBox/SearchBox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/src/components/SearchBox/SearchBox.module.css -------------------------------------------------------------------------------- /preact/src/components/SearchBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/src/components/SearchBox/index.tsx -------------------------------------------------------------------------------- /preact/src/data: -------------------------------------------------------------------------------- 1 | ../../data -------------------------------------------------------------------------------- /preact/src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/src/favicon.svg -------------------------------------------------------------------------------- /preact/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/src/index.css -------------------------------------------------------------------------------- /preact/src/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/src/logo.tsx -------------------------------------------------------------------------------- /preact/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/src/main.tsx -------------------------------------------------------------------------------- /preact/src/preact.d.ts: -------------------------------------------------------------------------------- 1 | import JSX = preact.JSX 2 | -------------------------------------------------------------------------------- /preact/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /preact/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/tsconfig.json -------------------------------------------------------------------------------- /preact/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/tsconfig.node.json -------------------------------------------------------------------------------- /preact/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/preact/vite.config.ts -------------------------------------------------------------------------------- /react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/.gitignore -------------------------------------------------------------------------------- /react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/index.html -------------------------------------------------------------------------------- /react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/package.json -------------------------------------------------------------------------------- /react/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/src/App.module.css -------------------------------------------------------------------------------- /react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/src/App.tsx -------------------------------------------------------------------------------- /react/src/components/Item/Item.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/src/components/Item/Item.module.css -------------------------------------------------------------------------------- /react/src/components/Item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/src/components/Item/index.tsx -------------------------------------------------------------------------------- /react/src/components/SearchBox/SearchBox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/src/components/SearchBox/SearchBox.module.css -------------------------------------------------------------------------------- /react/src/components/SearchBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/src/components/SearchBox/index.tsx -------------------------------------------------------------------------------- /react/src/data: -------------------------------------------------------------------------------- 1 | ../../data -------------------------------------------------------------------------------- /react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/src/index.css -------------------------------------------------------------------------------- /react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/src/main.tsx -------------------------------------------------------------------------------- /react/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/tsconfig.json -------------------------------------------------------------------------------- /react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/tsconfig.node.json -------------------------------------------------------------------------------- /react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/react/vite.config.ts -------------------------------------------------------------------------------- /solidjs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /solidjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/README.md -------------------------------------------------------------------------------- /solidjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/index.html -------------------------------------------------------------------------------- /solidjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/package.json -------------------------------------------------------------------------------- /solidjs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/pnpm-lock.yaml -------------------------------------------------------------------------------- /solidjs/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/src/App.module.css -------------------------------------------------------------------------------- /solidjs/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/src/App.tsx -------------------------------------------------------------------------------- /solidjs/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/src/assets/favicon.ico -------------------------------------------------------------------------------- /solidjs/src/components/Item/Item.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/src/components/Item/Item.module.css -------------------------------------------------------------------------------- /solidjs/src/components/Item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/src/components/Item/index.tsx -------------------------------------------------------------------------------- /solidjs/src/components/SearchBox/SearchBox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/src/components/SearchBox/SearchBox.module.css -------------------------------------------------------------------------------- /solidjs/src/components/SearchBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/src/components/SearchBox/index.tsx -------------------------------------------------------------------------------- /solidjs/src/data: -------------------------------------------------------------------------------- 1 | ../../data -------------------------------------------------------------------------------- /solidjs/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/src/index.css -------------------------------------------------------------------------------- /solidjs/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/src/index.tsx -------------------------------------------------------------------------------- /solidjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/tsconfig.json -------------------------------------------------------------------------------- /solidjs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/solidjs/vite.config.ts -------------------------------------------------------------------------------- /svelte/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/.gitignore -------------------------------------------------------------------------------- /svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/README.md -------------------------------------------------------------------------------- /svelte/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/index.html -------------------------------------------------------------------------------- /svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/package.json -------------------------------------------------------------------------------- /svelte/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/public/favicon.ico -------------------------------------------------------------------------------- /svelte/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/src/App.svelte -------------------------------------------------------------------------------- /svelte/src/components/Item.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/src/components/Item.svelte -------------------------------------------------------------------------------- /svelte/src/components/SearchBox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/src/components/SearchBox.svelte -------------------------------------------------------------------------------- /svelte/src/data: -------------------------------------------------------------------------------- 1 | ../../data -------------------------------------------------------------------------------- /svelte/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/src/index.css -------------------------------------------------------------------------------- /svelte/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/src/main.ts -------------------------------------------------------------------------------- /svelte/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/src/vite-env.d.ts -------------------------------------------------------------------------------- /svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/svelte.config.js -------------------------------------------------------------------------------- /svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/tsconfig.json -------------------------------------------------------------------------------- /svelte/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/tsconfig.node.json -------------------------------------------------------------------------------- /svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/svelte/vite.config.ts -------------------------------------------------------------------------------- /vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/.gitignore -------------------------------------------------------------------------------- /vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/README.md -------------------------------------------------------------------------------- /vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/index.html -------------------------------------------------------------------------------- /vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/package.json -------------------------------------------------------------------------------- /vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/public/favicon.ico -------------------------------------------------------------------------------- /vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/src/App.vue -------------------------------------------------------------------------------- /vue/src/components/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/src/components/Item.vue -------------------------------------------------------------------------------- /vue/src/components/SearchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/src/components/SearchBox.vue -------------------------------------------------------------------------------- /vue/src/data: -------------------------------------------------------------------------------- 1 | ../../data -------------------------------------------------------------------------------- /vue/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/src/env.d.ts -------------------------------------------------------------------------------- /vue/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/src/index.css -------------------------------------------------------------------------------- /vue/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/src/main.ts -------------------------------------------------------------------------------- /vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/tsconfig.json -------------------------------------------------------------------------------- /vue/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/tsconfig.node.json -------------------------------------------------------------------------------- /vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/vue/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/ui-library-benchmark/HEAD/yarn.lock --------------------------------------------------------------------------------