Svelte

Svelte is a radical new approach to building user interfaces. Whereas traditional frameworks like React and Vue do the bulk of their work in the browser, Svelte shifts that work into a compile step that happens when you build your app.
Here are 5,286 public repositories matching this topic...
-
Updated
May 16, 2022 - JavaScript
Repo: https://github.com/codercatdev/mitosis-example
Video Exmaple: https://youtu.be/fFjzpB3JkwU
I would expect this to default to reacts own state useState
mitosis compile --to=react component.lite.jsx > output/component.jsx
for tailwindcss:
<div className="relative w-4 h-4 bg-red-400 after:absolute after:top-4 after:w-full after:h-full after:bg-blue-400" />
<div className="relative w-4 h-4 bg-red-400 after:(absolute top-4 w-full h-full bg-blue-400)" />
`
-
Updated
May 16, 2022 - Svelte
All preset readme files needs updates for v2
-
Updated
May 14, 2022 - TypeScript
-
Updated
Dec 23, 2021 - TypeScript
-
Updated
May 6, 2022 - TypeScript
-
Updated
May 11, 2022 - Svelte
-
Updated
May 17, 2022 - TypeScript
I have an podcast with episode uploaded to Mixcloud. I also have my music uploaded to Soundcloud. I'd like to see Mixcloud and Soundcloud added as providers with Vime.js
Also I endorse the feature request for playlist.
I plan to use this with an Svelte app.
Twitch Support
-
Updated
Apr 28, 2022 - TypeScript
-
Updated
May 11, 2022 - TypeScript
-
Updated
May 17, 2022 - Svelte
-
Updated
May 16, 2022 - Go
-
Updated
May 15, 2022 - TypeScript
-
Updated
Mar 31, 2022 - Svelte
The various popup shown can be placed outside the viewport, making them hard to view/use.
For example, a tooltip can be partially hidden if the activator is in the right of the screen, or a menu can be longer than the viewport height.
Smelte should probably provides utils to position popup on the viewport.
(by the way, thanks for your work, smelte is great :)
-
Updated
May 13, 2022 - TypeScript
-
Updated
Apr 4, 2022 - TypeScript
We enabled pylint in the project, however several code style violations already exist. There's no point in enabling rules and then not enforcing them, therefore any rule that is not already enforced is currently disabled.
One of these rules if the one you can see in the title is this issue.
How to solve
Create a pull request with 2 commits. The commits should:
- Enable the rule in
Is your feature request related to a problem? Please describe.
Hello team.
I have a task to deploy a tiny and cute frontend, which will distribute wg configs for users of our organization. I decided to use your package, because it is 100% suitable.
We use dedicated server as a wg endpoint (VyOS cluster on vrrp), so I don't need to create peers from UI. I am populating config.json by ansible
Created by Rich Harris
Released November 2016
- Repository
- sveltejs/svelte
- Website
- svelte.dev
- Wikipedia
- Wikipedia
Describe the bug
The
validateArgs
method inlib/router/src/utils.ts
is usingVALIDATION_REGEXP
,NUMBER_REGEXP
,HEX_REGEXP
orCOLOR_REGEXP
pattern to determine whether thestring
value is validated or not, but any string which not match those pattern (like something with+
prefix or some character that is not in Alphabet) will not be validated and be dropped in future actions.