Skip to content
Playground

Shadcn

Installation

Terminal window
npm i @sjsf/basic-theme@next @sjsf/shadcn-theme@next

Install Shadcn Svelte

Installation - shadcn-svelte

Setup styles

There is two ways to setup styles:

  1. Use tailwindcss config
import { THEME_CONTENT } from '@sjsf/shadcn-theme/preset'
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}', THEME_CONTENT],
// other tailwind config
...
}
  1. Inject prepared styles (not recommended)
// Inject them as you like
import shadcnStyles from '@sjsf/shadcn-theme/styles.css?inline';

Components

Since shadcn-svelte is not a component library you should provide your components via setThemeContext.

import { setThemeContext } from '@sjsf/shadcn-theme';
import { components } from '@sjsf/shadcn-theme/default';
// or import { components } from '@sjsf/shadcn-theme/new-york';
setThemeContext({ components })

Extra widgets

  • checkboxes
  • date-picker
  • file
  • multi-select
  • radio
  • range
  • switch
  • textarea

Widgets demo