-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [docs]: added missing installation check boxes and fixed typo * [core]: fixed typos * [core]: Yarn and Storybook migration (#160) * [migration]: all packages on kit-next.377 and use storybook template * [@svelteui/core]: configuring story book (viewport modifications and set up) * [@svelteui/core]: moved lib contents to src * [@svelteui/core]: fixed stories for button * [core]: fixed all eslintrcs * [core]: started theme setup for core package * [core]: storybook working with dark and light theme * [core]: revert some changes and remove logs * [core]: remove unused logic * [core] yarn migration (#157) * [core]: migrate to yarn * [docs]: update contribution guide to include yarn * [core]: modify github pipelines to use yarn * [core]: format and lint code * [core]: update yarn.lock (#161) Co-authored-by: BeeMargarida <[email protected]> * [@svelteui/core]: support number as size in Button (#165) * [@svelteui/core]: fix missing prop type in NumberInput * [@svelteui/core]: use new prop approach in all components * [@svelteui/core]: remove onMouseEnter and onMouseLeave prop and use dispatch events instead * [@svelteui/core]: simplify prop approach in Button * [@svelteui/core]: format code - yarn format result * [@svelteui/core]: revert yarn format * [@svelteui/core]: remove BrowserRender, ServerRender and Fragment component (#167) * [core]: normalize scripts with : and udpdate readmes (#169) * [core]: sorted package jsons * [core]: updated docs and core dev scripts * [@svelteui/core]: Export all components prop types (#173) * [@svelteui/core]: export all component types instead of the whole styles * [core]: yarn lock * [core]: linting + format all package.json * [@svelteui/core]: fix select autocomplete logic that showed previous option on reload (#177) * [@svelteui/core]: fix Tabs bug where events inside tab content were not propagated due to node handling (#180) * [@svelteui/prism]: fix indentation problem on the first line (#181) * [@svelteui/prism]: fix indentation problem on the first line * [core]: remove package.json from prettier * [docs]: fix docs dev command, add docs node_modules to clean:all command and update tsconfig of core * [@svelteui/demos]: remove unecessary code from demos code examples (#182) * [@svelteui/core]: updated tsconfig * [@svelteuidev/core] Menu custom control (#184) * [@svelteui/core]: support for custom control in Menu * [@svelteui/core]: expose menu functions for opening/closing/toggling the menu state outside the component * [@svelteui/demos]: demo for Menu custom control * [docs]: add custom menu control examples to docs * [docs]: add missing period * [core]: remove flacky test * [@svelteui/core]: add role and aria info to custom menu control * [@svelteui/core]: added menu story * [core]: syncpack was failing script * [docs]: added modal clarification and removed banner * [core]: changed publish scripts due to unknown npm bug * [@svelteui/core]: menu story * [core]: fixed peerdeps versioning issues * [release]: 0.7.2 * [core]: fixed dev:core script * [@svelteui/composables]: migrated directory structure from the use of lib * [@svelteui/composables]: removed storybook config * [core]: fixed package json * [core]: changed yarn install to yarn in workflow * [core]: Storybook for core, composables and dates packages (#190) * [core]: removed unused stories from packages * [core]: moved storybook configuration to configuration folder and updated paths * [core]: working storybook that shows core stories * [core]: simple use-click-outside story for testing purposes * [core]: delete old storybook folders * [core]: stabilize storybook config * [@svelteui/composables]: change to * [@svelteui/dates]: change to * [core]: stories for dates, core and composables and simple example stories * [core]: format and lint fixes * [@svelteui/prism]: ignore line for prettier in prism * [@svelteui/composables]: small fix in alias * [@svelteui/composables]: small fixes to alias * [core]: bump vitest, cleanup dependencies, remove unecessary test setup and fix tests * [core]: update scripts + contributing scripts * [@svelteui/core]: Fixes #189 - fix Switch disabled style and add dark styles (#192) * [@svelteui/core]: fix switch disabled style and add dark mode style * [@svelteui/core]: fix switch disabled style and add dark mode style * [core]: migrate to new svelte-package approach since svelte-kit package is deprecated (#194) * [docs]: improve Modal target warning and demo (#197) * [@svelteui/core]: fix type inconsistency in actions API (#198) * [core]: move all packages outside lib folder (#196) * [@svelteui/preprocessors]: moved code from src/lib into src * [@svelteui/prism]: moved code from src/lib into src * [@svelteui/tests]: moved code from src/lib into src/ * [@svelteui/demos]: moved code from src/lib into src * [core]: removed static files from packages * [@svelteui/dates]: moved src/lib into src/ * [core]: fix packaging with new aliases: bump svelte-package with fix * [docs]: fix paths for components * [@svelteui/core]: fix test setup * [core]: fixed pub script and changed storybook to dev * [core]: made modal error more clear * [core]: [release] 0.7.3 * [core]: updated readme for rebase * [@svelteui/core]: fix Tab dark mode color and simple story for testing purposes (#201) * [@svelteui/core]: fix element retrieval in Modal (#203) * [@svelteui/core]: fix switch disable behaviour * [core]: bump svelte version * [core]: update yarn lock Co-authored-by: Kamell Perry <[email protected]> Co-authored-by: Kamell <[email protected]> Co-authored-by: Brisklemonade <[email protected]> Co-authored-by: Jason Xu <[email protected]>
- Loading branch information
1 parent
0f2e528
commit f86a736
Showing
705 changed files
with
2,574 additions
and
6,279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,7 @@ package | |
/packages/svelteui-errors/dist | ||
.vercel | ||
.turbo | ||
coverage | ||
|
||
# env | ||
.env | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": "..", | ||
"paths": {}, | ||
"rootDirs": [ | ||
"..", | ||
"./types" | ||
], | ||
"importsNotUsedAsValues": "error", | ||
"isolatedModules": true, | ||
"preserveValueImports": true, | ||
"lib": [ | ||
"esnext", | ||
"DOM", | ||
"DOM.Iterable" | ||
], | ||
"moduleResolution": "node", | ||
"module": "esnext", | ||
"target": "esnext" | ||
}, | ||
"include": [ | ||
"ambient.d.ts", | ||
"../src/**/*.js", | ||
"../src/**/*.ts", | ||
"../src/**/*.svelte", | ||
"../src/**/*.js", | ||
"../src/**/*.ts", | ||
"../src/**/*.svelte" | ||
], | ||
"exclude": [ | ||
"../node_modules/**", | ||
"./[!ambient.d.ts]**" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.