-
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.
[Next minor] merge for scripting updates (#103)
* [@svelteui/core]: set up segmented control * [core]: updated Contributing.md * [@svelteui/core]: updates to SvelteUIProvider * [@svelteui/dates]: updated svelte config * [@svelteui/dates]: created all utils * [@svelteui/dates]: setup TimeInputBase * [@svelteui/dates]: month Component complete (unstable) * [core]: added composite option to tsconfigs + new cm:noadd script * [@svelteui/core] Popper migration to floating UI (#102) * [@svelteui/core]: started popper port to floating-ui * [@svelteui/core]: arrow positioning in popper with floating ui * [@svelteui/core]: popper using floating-ui * [@svelteui/core]: fix example in Popper * [@svelteui/core]: clean index route example * [@svelteui/core]: fixed typo in readme * [core]: created docs:deploy script to make deployments less painfull Co-authored-by: Ana Margarida Silva <[email protected]>
- Loading branch information
1 parent
e1bd7d9
commit 13c7746
Showing
69 changed files
with
5,494 additions
and
4,445 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 |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
"lockscroll", | ||
"mousedown", | ||
"mouseposition", | ||
"nobuild", | ||
"okaidia", | ||
"onuseclipboard", | ||
"onusedownload", | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from './actions/index.js'; | ||
export * from './utilities/index.js'; | ||
export * from './shared/index.js'; |
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,3 @@ | ||
export * from './actions/index.js'; | ||
export * from './utilities/index.js'; | ||
export * from './utils/index.js'; |
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 @@ | ||
export { upperFirst } from './upper-first/upper-first.js'; |
3 changes: 3 additions & 0 deletions
3
packages/svelteui-composables/src/lib/shared/utils/upper-first/upper-first.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export function upperFirst(value: string) { | ||
return typeof value !== 'string' ? '' : value.charAt(0).toUpperCase() + value.slice(1); | ||
} |
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.