├── .babelrc ├── .env ├── .eslintrc.json ├── .github └── workflows │ └── cla.yml ├── .gitignore ├── .prettierrc ├── .tool-versions ├── .vscode ├── launch.json └── settings.json ├── CLA.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TROUBLESHOOTING.md ├── app-firebase └── index.ts ├── components ├── ActionModal │ └── index.tsx ├── DestructiveModal │ └── index.tsx ├── DropsSubnav │ └── index.tsx ├── EmptyState │ └── index.tsx ├── FormDescription │ └── index.tsx ├── Forms │ ├── Artwork │ │ └── index.tsx │ ├── Collection │ │ └── index.tsx │ ├── Conflict │ │ └── index.tsx │ ├── Project │ │ └── index.tsx │ ├── TTForm │ │ └── index.tsx │ ├── Trait │ │ └── index.tsx │ ├── TraitSet │ │ └── index.tsx │ ├── TraitValue │ │ └── index.tsx │ ├── User │ │ └── index.tsx │ └── UserGroup │ │ └── index.tsx ├── Header │ └── index.tsx ├── HeaderWithAddButton │ └── index.tsx ├── Layout.tsx ├── MainNavItem │ └── index.tsx ├── MainNavProjectDropdown │ └── index.tsx ├── ProgressModal │ └── index.tsx ├── TimeframeDropdown │ └── index.tsx └── TraitValuesRow │ └── index.tsx ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions ├── .gitignore ├── models │ ├── candymachine.ts │ ├── firebase.ts │ └── models.ts ├── package-lock.json ├── package.json ├── src │ ├── ArtworkGenerator.ts │ ├── CandyMachineDownloader.ts │ ├── httpFunctions │ │ └── index.ts │ └── index.ts └── tsconfig.json ├── models ├── api.tsx ├── collection.tsx ├── conflict.tsx ├── imageComposite.tsx ├── imageCompositeGroup.tsx ├── imageLayer.tsx ├── project.tsx ├── trait.tsx ├── traitSet.tsx ├── traitValue.tsx ├── user.tsx └── userGroup.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── index.tsx ├── projects │ ├── [projectId] │ │ ├── collections │ │ │ ├── [collectionId] │ │ │ │ ├── artwork │ │ │ │ │ ├── [artworkId] │ │ │ │ │ │ └── edit.tsx │ │ │ │ │ ├── create.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── composites │ │ │ │ │ ├── [compositeGroupId] │ │ │ │ │ │ ├── [compositeId] │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── playground.tsx │ │ │ │ │ │ └── rarity.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── conflicts │ │ │ │ │ ├── [conflictId] │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── create.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── edit.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── traitSets │ │ │ │ │ ├── [traitSetId] │ │ │ │ │ │ └── edit.tsx │ │ │ │ │ ├── create.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── traits │ │ │ │ │ ├── [traitId] │ │ │ │ │ ├── edit.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── values │ │ │ │ │ │ ├── [valueId] │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── create-list.tsx │ │ │ │ │ │ ├── create.tsx │ │ │ │ │ │ └── import-list.tsx │ │ │ │ │ ├── create.tsx │ │ │ │ │ └── index.tsx │ │ │ └── create.tsx │ │ ├── edit.tsx │ │ └── index.tsx │ └── create.tsx └── usergroups │ ├── [groupId] │ ├── edit.tsx │ ├── index.tsx │ └── users │ │ ├── [userId] │ │ └── edit.tsx │ │ └── create.tsx │ ├── create.tsx │ └── index.tsx ├── postcss.config.js ├── signatures └── version1 │ └── cla.json ├── storage.rules ├── styles └── globals.css ├── tailwind.config.js ├── test-images ├── Curve Blue.png ├── Curve Neon Green.png ├── Curve Pinkish Red.png ├── Curve Royal Blue.png ├── Curve Yellow.png ├── Dot Bright Purple.png ├── Dot Light Blue.png ├── Dot Neon Bright Green.png ├── Dot Neon Yellow Green.png ├── Dot Orange.png ├── Dot Yellow.png ├── Squiggle Green.png ├── Squiggle Magenta.png ├── Squiggle Purple.png ├── Squiggle Royal Purple.png └── Squiggle Teal.png ├── test-trait-csvs ├── example-invalid-extra-newline.csv ├── example-invalid.csv └── example.csv ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/.babelrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/.prettierrc -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 14.17.5 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/CLA.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/README.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /app-firebase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/app-firebase/index.ts -------------------------------------------------------------------------------- /components/ActionModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/ActionModal/index.tsx -------------------------------------------------------------------------------- /components/DestructiveModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/DestructiveModal/index.tsx -------------------------------------------------------------------------------- /components/DropsSubnav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/DropsSubnav/index.tsx -------------------------------------------------------------------------------- /components/EmptyState/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/EmptyState/index.tsx -------------------------------------------------------------------------------- /components/FormDescription/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/FormDescription/index.tsx -------------------------------------------------------------------------------- /components/Forms/Artwork/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Forms/Artwork/index.tsx -------------------------------------------------------------------------------- /components/Forms/Collection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Forms/Collection/index.tsx -------------------------------------------------------------------------------- /components/Forms/Conflict/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Forms/Conflict/index.tsx -------------------------------------------------------------------------------- /components/Forms/Project/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Forms/Project/index.tsx -------------------------------------------------------------------------------- /components/Forms/TTForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Forms/TTForm/index.tsx -------------------------------------------------------------------------------- /components/Forms/Trait/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Forms/Trait/index.tsx -------------------------------------------------------------------------------- /components/Forms/TraitSet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Forms/TraitSet/index.tsx -------------------------------------------------------------------------------- /components/Forms/TraitValue/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Forms/TraitValue/index.tsx -------------------------------------------------------------------------------- /components/Forms/User/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Forms/User/index.tsx -------------------------------------------------------------------------------- /components/Forms/UserGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Forms/UserGroup/index.tsx -------------------------------------------------------------------------------- /components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Header/index.tsx -------------------------------------------------------------------------------- /components/HeaderWithAddButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/HeaderWithAddButton/index.tsx -------------------------------------------------------------------------------- /components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/Layout.tsx -------------------------------------------------------------------------------- /components/MainNavItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/MainNavItem/index.tsx -------------------------------------------------------------------------------- /components/MainNavProjectDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/MainNavProjectDropdown/index.tsx -------------------------------------------------------------------------------- /components/ProgressModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/ProgressModal/index.tsx -------------------------------------------------------------------------------- /components/TimeframeDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/TimeframeDropdown/index.tsx -------------------------------------------------------------------------------- /components/TraitValuesRow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/components/TraitValuesRow/index.tsx -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/firestore.rules -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/models/candymachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/models/candymachine.ts -------------------------------------------------------------------------------- /functions/models/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/models/firebase.ts -------------------------------------------------------------------------------- /functions/models/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/models/models.ts -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/src/ArtworkGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/src/ArtworkGenerator.ts -------------------------------------------------------------------------------- /functions/src/CandyMachineDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/src/CandyMachineDownloader.ts -------------------------------------------------------------------------------- /functions/src/httpFunctions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/src/httpFunctions/index.ts -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /models/api.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/api.tsx -------------------------------------------------------------------------------- /models/collection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/collection.tsx -------------------------------------------------------------------------------- /models/conflict.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/conflict.tsx -------------------------------------------------------------------------------- /models/imageComposite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/imageComposite.tsx -------------------------------------------------------------------------------- /models/imageCompositeGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/imageCompositeGroup.tsx -------------------------------------------------------------------------------- /models/imageLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/imageLayer.tsx -------------------------------------------------------------------------------- /models/project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/project.tsx -------------------------------------------------------------------------------- /models/trait.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/trait.tsx -------------------------------------------------------------------------------- /models/traitSet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/traitSet.tsx -------------------------------------------------------------------------------- /models/traitValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/traitValue.tsx -------------------------------------------------------------------------------- /models/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/user.tsx -------------------------------------------------------------------------------- /models/userGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/models/userGroup.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/artwork/[artworkId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/artwork/[artworkId]/edit.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/artwork/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/artwork/create.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/artwork/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/artwork/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/composites/[compositeGroupId]/[compositeId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/composites/[compositeGroupId]/[compositeId]/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/composites/[compositeGroupId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/composites/[compositeGroupId]/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/composites/[compositeGroupId]/playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/composites/[compositeGroupId]/playground.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/composites/[compositeGroupId]/rarity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/composites/[compositeGroupId]/rarity.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/composites/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/composites/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/conflicts/[conflictId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/conflicts/[conflictId]/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/conflicts/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/conflicts/create.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/conflicts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/conflicts/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/edit.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traitSets/[traitSetId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traitSets/[traitSetId]/edit.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traitSets/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traitSets/create.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traitSets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traitSets/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/edit.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/values/[valueId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/values/[valueId]/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/values/create-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/values/create-list.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/values/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/values/create.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/values/import-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traits/[traitId]/values/import-list.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traits/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traits/create.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/[collectionId]/traits/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/[collectionId]/traits/index.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/collections/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/collections/create.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/edit.tsx -------------------------------------------------------------------------------- /pages/projects/[projectId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/[projectId]/index.tsx -------------------------------------------------------------------------------- /pages/projects/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/projects/create.tsx -------------------------------------------------------------------------------- /pages/usergroups/[groupId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/usergroups/[groupId]/edit.tsx -------------------------------------------------------------------------------- /pages/usergroups/[groupId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/usergroups/[groupId]/index.tsx -------------------------------------------------------------------------------- /pages/usergroups/[groupId]/users/[userId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/usergroups/[groupId]/users/[userId]/edit.tsx -------------------------------------------------------------------------------- /pages/usergroups/[groupId]/users/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/usergroups/[groupId]/users/create.tsx -------------------------------------------------------------------------------- /pages/usergroups/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/usergroups/create.tsx -------------------------------------------------------------------------------- /pages/usergroups/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/pages/usergroups/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/postcss.config.js -------------------------------------------------------------------------------- /signatures/version1/cla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/signatures/version1/cla.json -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/storage.rules -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test-images/Curve Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Curve Blue.png -------------------------------------------------------------------------------- /test-images/Curve Neon Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Curve Neon Green.png -------------------------------------------------------------------------------- /test-images/Curve Pinkish Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Curve Pinkish Red.png -------------------------------------------------------------------------------- /test-images/Curve Royal Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Curve Royal Blue.png -------------------------------------------------------------------------------- /test-images/Curve Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Curve Yellow.png -------------------------------------------------------------------------------- /test-images/Dot Bright Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Dot Bright Purple.png -------------------------------------------------------------------------------- /test-images/Dot Light Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Dot Light Blue.png -------------------------------------------------------------------------------- /test-images/Dot Neon Bright Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Dot Neon Bright Green.png -------------------------------------------------------------------------------- /test-images/Dot Neon Yellow Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Dot Neon Yellow Green.png -------------------------------------------------------------------------------- /test-images/Dot Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Dot Orange.png -------------------------------------------------------------------------------- /test-images/Dot Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Dot Yellow.png -------------------------------------------------------------------------------- /test-images/Squiggle Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Squiggle Green.png -------------------------------------------------------------------------------- /test-images/Squiggle Magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Squiggle Magenta.png -------------------------------------------------------------------------------- /test-images/Squiggle Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Squiggle Purple.png -------------------------------------------------------------------------------- /test-images/Squiggle Royal Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Squiggle Royal Purple.png -------------------------------------------------------------------------------- /test-images/Squiggle Teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-images/Squiggle Teal.png -------------------------------------------------------------------------------- /test-trait-csvs/example-invalid-extra-newline.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-trait-csvs/example-invalid-extra-newline.csv -------------------------------------------------------------------------------- /test-trait-csvs/example-invalid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-trait-csvs/example-invalid.csv -------------------------------------------------------------------------------- /test-trait-csvs/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/test-trait-csvs/example.csv -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theskeletoncrew/treat-toolbox/HEAD/yarn.lock --------------------------------------------------------------------------------