[READ-ONLY] Mirror of https://github.com/flo-bit/ui-kit. 🦊 fox ui, svelte 5 and tailwind 4 flo-bit.dev/ui-kit/
svelte tailwindcss ui-components
0

Configure Feed

Select the types of activity you want to include in your feed.

add auto publish to npm

Florian (Mar 19, 2025, 10:41 PM +0100) 31bf9dfb 1586e8ad

+31 -26
+1 -1
package.json
··· 1 1 { 2 2 "name": "fuchs", 3 - "version": "0.0.6", 3 + "version": "0.0.7", 4 4 "type": "module", 5 5 "description": "Beautiful UI components built with Tailwind 4 and Svelte 5", 6 6 "homepage": "https://flo-bit.dev/ui-kit",
+5
.github/workflows/deploy_gh_pages.yml
··· 31 31 uses: actions/upload-pages-artifact@v3 32 32 with: 33 33 path: 'build/' 34 + 35 + - name: Publish npm package 36 + env: 37 + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 38 + run: npm publish --provenance --access public 34 39 35 40 deploy: 36 41 needs: build_site
+2 -2
src/docs/site-components/components_extra.ts
··· 1 - import CardExcalidraw from '$docs/cards/illustrations/CardExcalidraw.svelte'; 2 - import CardUndraw from '$docs/cards/illustrations/CardUndraw.svelte'; 1 + import CardExcalidraw from '$docs/cards/extras/CardExcalidraw.svelte'; 2 + import CardUndraw from '$docs/cards/extras/CardUndraw.svelte'; 3 3 import CardColorPicker from '$docs/cards/extras/CardColorPicker.svelte'; 4 4 5 5 export const extraComponents = [
+1 -1
src/docs/cards/extras/CardColorPicker.svelte
··· 19 19 20 20 <div class="h-full w-full flex items-center justify-center"> 21 21 <!-- inline version --> 22 - <ColorPicker bind:rgb class="scale-[0.6]" /></div> 22 + <ColorPicker bind:rgb class="scale-[0.6] -ml-2" /></div>
+6
src/docs/cards/extras/CardExcalidraw.svelte
··· 1 + <script> 2 + import Excalidraw from '$lib/components/extra/excalidraw/Excalidraw.svelte'; 3 + import svg from '$docs/assets/demo.svg?raw'; 4 + </script> 5 + 6 + <Excalidraw {svg} alt="Excalidraw Demo" />
+16
src/docs/cards/extras/CardUndraw.svelte
··· 1 + <script lang="ts"> 2 + import Undraw from '$lib/components/extra/undraw/Undraw.svelte'; 3 + 4 + import svg from '$docs/assets/undraw_wireframing.svg?raw'; 5 + </script> 6 + 7 + 8 + <div class="max-h-full"> 9 + <Undraw svg={svg} alt="Undraw" colorMap={{ 10 + '#3f3d56': 'fill-base-950 dark:fill-base-600', 11 + '#2f2e41': 'fill-base-800 dark:fill-base-800', 12 + '#e4e4e4': 'fill-base-300 dark:fill-base-700', 13 + '#cacaca': 'fill-base-400 dark:fill-base-600', 14 + }} /> 15 + </div> 16 +
-6
src/docs/cards/illustrations/CardExcalidraw.svelte
··· 1 - <script> 2 - import Excalidraw from '$lib/components/extra/excalidraw/Excalidraw.svelte'; 3 - import svg from '$docs/assets/demo.svg?raw'; 4 - </script> 5 - 6 - <Excalidraw {svg} alt="Excalidraw Demo" />
-16
src/docs/cards/illustrations/CardUndraw.svelte
··· 1 - <script lang="ts"> 2 - import Undraw from '$lib/components/extra/undraw/Undraw.svelte'; 3 - 4 - import svg from '$docs/assets/undraw_wireframing.svg?raw'; 5 - </script> 6 - 7 - 8 - <div class="max-h-full"> 9 - <Undraw svg={svg} alt="Undraw" colorMap={{ 10 - '#3f3d56': 'fill-base-950 dark:fill-base-600', 11 - '#2f2e41': 'fill-base-800 dark:fill-base-800', 12 - '#e4e4e4': 'fill-base-300 dark:fill-base-700', 13 - '#cacaca': 'fill-base-400 dark:fill-base-600', 14 - }} /> 15 - </div> 16 -