diff --git a/doc/CONTRIBUTING.md b/doc/CONTRIBUTING.md index 03021de..a57cf25 100644 --- a/doc/CONTRIBUTING.md +++ b/doc/CONTRIBUTING.md @@ -27,44 +27,6 @@ Note that it is not usually necessary to run these commands locally, as the Gith This script is mainly only useful when you find a bug in the deployed website that you can't reproduce with the `npm run dev` build. If you find a bug you can't reproduce, try doing `npm run build && npm run preview`. -## File Structure - -Here's a brief summary of the file structure. - -```text -doc/ -└── ... # Documentation pages (like this one!) -src/ -├── lib/ -│ ├── components/ -│ │ └── ... # various Svelte components -│ ├── delegate-presets/ -│ │ ├── index.ts # handles delegate presets -│ │ ├── preset-xx.json # a delegate preset -│ │ └── ... -│ ├── motions/ -│ │ └── ... # motion management -│ ├── stores/ -│ │ └── ... # store management -│ └── util/ -│ └── ... # various utilities -└── routes/ # all accessible routes on the website - ├── admin/ - │ ├── settings/ - │ └── stats/ - └── dashboard/ - ├── current-motion/ - ├── points-motions/ - ├── roll-call/ - ├── speakers-list/ - ├── utilities/ - └── ... -static/ -└── ... # files to upload directly onto the website -``` - -Many of the directories will have a `README.md` that gives clarifications and more documentation for what the directory is used for. - ## Making Changes This GitHub repository is the source of all changes and updates: diff --git a/src/lib/components/DelAutocomplete.svelte b/src/lib/components/DelAutocomplete.svelte new file mode 100644 index 0000000..8c5b445 --- /dev/null +++ b/src/lib/components/DelAutocomplete.svelte @@ -0,0 +1,75 @@ + + + + + + + \ No newline at end of file diff --git a/src/lib/components/IconLabel.svelte b/src/lib/components/IconLabel.svelte index bab0bfa..c5ce8fb 100644 --- a/src/lib/components/IconLabel.svelte +++ b/src/lib/components/IconLabel.svelte @@ -1,17 +1,32 @@ -