Skip to content

Commit

Permalink
chore(web): remove flowbite (immich-app#4178)
Browse files Browse the repository at this point in the history
* chore(web): remove flowbite

* Added confirmation prompt for deletion
  • Loading branch information
alextran1502 authored Sep 23, 2023
1 parent e050121 commit 9a7e48e
Show file tree
Hide file tree
Showing 6 changed files with 114 additions and 285 deletions.
2 changes: 1 addition & 1 deletion web/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"printWidth": 120,
"semi": true,
"organizeImportsSkipDestructiveCodeActions": true,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"plugins": ["prettier-plugin-svelte"],
"pluginSearchDirs": false
}
183 changes: 0 additions & 183 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,12 @@
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-svelte": "^2.30.0",
"factory.ts": "^1.3.0",
"flowbite": "^1.8.1",
"flowbite-svelte": "^0.43.1",
"flowbite-svelte-icons": "^0.3.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"svelte-jester": "^2.3.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script>
export let text = '';
export let subtitle = '';
</script>

<button
Expand All @@ -12,4 +13,10 @@
{:else}
<slot />
{/if}

<slot name="subtitle">
<p class="text-xs text-gray-500">
{subtitle}
</p>
</slot>
</button>
Loading

0 comments on commit 9a7e48e

Please sign in to comment.