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,311 public repositories matching this topic...
-
Updated
May 19, 2022 - JavaScript
bindings: {
[index: string]: {
arguments: string[],
code: string
};
}
in order to allow devs to change the event name we need to get the arguments from jsx and rewrite the code in the generator.
This PR is an example of that without arguments
BuilderIO/mitosis#323
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 19, 2022 - Svelte
Lerna is officially deprecated, a new monorepo tool is needed. NX looks good, but I need to look if it suits this project perfectly or if other tools are needed. Also, RushJS seems a good alternative, I tried it once but with all these projects it may take forever to configure since there were no globs when I tried it.
Any external help is welcome, I've only used Lerna with this project.
-
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 19, 2022 - TypeScript
-
Updated
May 20, 2022 - Svelte
-
Updated
May 19, 2022 - Go
-
Updated
May 15, 2022 - TypeScript
-
Updated
May 17, 2022 - Svelte
-
Updated
May 17, 2022 - TypeScript
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
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.