Closed scottandrew closed 2 months ago
Two things in your zip files and a part of them is my fault. I just updated the docs.
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}', './node_modules/svelte-5-ui-lib/**/*.{html,js,svelte,ts}', './node_modules/flowbite-svelte-icons/**/*.{html,js,svelte,ts}'],
darkMode: 'selector',
theme: {
extend: {
colors: {
primary: { 50: '#FFF5F2', 100: '#FFF1EE', 200: '#FFE4DE', 300: '#FFD5CC', 400: '#FFBCAD', 500: '#FE795D', 600: '#EF562F', 700: '#EB4F27', 800: '#CC4522', 900: '#A5371B' },
secondary: { "50": "#f0f9ff", "100": "#e0f2fe", "200": "#bae6fd", "300": "#7dd3fc", "400": "#38bdf8", "500": "#0ea5e9", "600": "#0284c7", "700": "#0369a1", "800": "#075985", "900": "#0c4a6e" },
}
}
},
} as Config;
<script lang="ts">
import '../app.css';
import { Navbar, NavUl, NavLi, uiHelpers } from 'svelte-5-ui-lib';
let { data: propsData, children } = $props();
let nav = uiHelpers();
let navStatus = $state(false);
let toggleNav = nav.toggle;
let closeNav = nav.close;
$effect(() => {
navStatus = nav.isOpen;
});
</script>
<Navbar {toggleNav} {closeNav} {navStatus} breakPoint="md">
<NavUl>
<NavLi href="/">Home</NavLi>
<NavLi href="/components/navbar">Navbar</NavLi>
<NavLi href="/components/footer">Footer</NavLi>
</NavUl>
</Navbar>
{@render children()}
pnpm i update && pnpm i -D flowbite-svelte-icons@next
This is now working perfectly..
Describe the bug
I have followed the steps for install but nothing is rendering properly. See the attached image of the Navbar.
Reproduction
I have attached sample project. This is nothing but a navbar..
NewUI.zip
Version and System Info