Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Svelte 1.0 #3085

Open
13 of 55 tasks
cschroeter opened this issue Nov 27, 2024 · 1 comment
Open
13 of 55 tasks

Svelte 1.0 #3085

cschroeter opened this issue Nov 27, 2024 · 1 comment
Labels

Comments

@cschroeter
Copy link
Member

cschroeter commented Nov 27, 2024

Roadmap for Svelte 1.0

Basics

  • Setup Package
  • Setup Testing
  • Setup Storybook
  • Setup Template (svelte-kit)
  • Docs

Core

  • Anatomy
  • Collection
  • Factory (asChild)

Providers

  • Environment
  • Locale

Components

  • Accordion
  • Avatar
  • Carousel
  • Checkbox
  • Clipboard
  • Collapsible
  • ColorPicker
  • Combobox
  • DatePicker
  • Dialog
  • Editable
  • Field
  • Fieldset
  • FileUpload
  • Format
  • Frame
  • Highlight
  • HoverCard
  • Menu
  • NumberInput
  • Pagination
  • PinInput
  • Popover
  • Portal
  • Presence
  • Progress
  • QrCode
  • RadioGroup
  • RatingGroup
  • SegmentGroup
  • Select
  • SignaturePad
  • Slider
  • Splitter
  • Steps
  • Switch
  • Tabs
  • TagsInput
  • TimePicker
  • Timer
  • Toast
  • Toggle
  • ToggleGroup
  • Tooltip
  • TreeView
@babakfp
Copy link

babakfp commented Dec 1, 2024

@cschroeter

Hi

In Svelte, when you destructure a reactive variable ($state, $derived), it loses reactivity.

Code like this:

const { dir } = useLocaleContext()
const { getRootNode } = useEnvironmentContext()

Should be written the same way as Vue code:

const env = useEnvironmentContext()
const locale = useLocaleContext(DEFAULT_LOCALE)

Like this one:

const locale = useLocaleContext()
const env = useEnvironmentContext()


Would it be OK to contribute on some of the components?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants