-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
144 changed files
with
4,305 additions
and
935 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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Changelog | ||
|
||
## 0.47.3 | ||
|
||
### Patch Changes | ||
|
||
- fix: #1392 #1455 #1463 #1468 #1475 #1476 | ||
|
||
## 0.47.2 | ||
|
||
### Patch Changes | ||
|
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,6 +1,6 @@ | ||
{ | ||
"name": "flowbite-svelte", | ||
"version": "0.47.2", | ||
"version": "0.47.3", | ||
"description": "Flowbite components for Svelte", | ||
"main": "dist/index.js", | ||
"packageManager": "[email protected]", | ||
|
@@ -756,4 +756,4 @@ | |
}, | ||
"./package.json": "./package.json" | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,34 @@ | ||
{ | ||
"name": "A", | ||
"slots": [], | ||
"events": ["click"], | ||
"events": [ | ||
"click" | ||
], | ||
"props": [ | ||
["action?", "Action<HTMLElement, any>", ""], | ||
["params?", "any", "{}"], | ||
["href?", "string", "'#'"], | ||
["color?", "string", "'text-primary-600 dark:text-primary-500'"], | ||
["aClass?", "string", "'inline-flex items-center hover:underline'"] | ||
[ | ||
"action?", | ||
"Action<HTMLElement, any>", | ||
"" | ||
], | ||
[ | ||
"params?", | ||
"any", | ||
"{}" | ||
], | ||
[ | ||
"href?", | ||
"string", | ||
"'#'" | ||
], | ||
[ | ||
"color?", | ||
"string", | ||
"'text-primary-600 dark:text-primary-500'" | ||
], | ||
[ | ||
"aClass?", | ||
"string", | ||
"'inline-flex items-center hover:underline'" | ||
] | ||
] | ||
} | ||
} |
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,24 +1,96 @@ | ||
{ | ||
"name": "AccordionItem", | ||
"slots": ["header", "arrowup", "arrowdown"], | ||
"slots": [ | ||
"header", | ||
"arrowup", | ||
"arrowdown" | ||
], | ||
"events": [], | ||
"props": [ | ||
["tag?", "string", "'h2'"], | ||
["open?", "boolean", ""], | ||
["activeClass?", "string", "undefined"], | ||
["inactiveClass?", "string", "undefined"], | ||
["defaultClass?", "string", "'flex items-center justify-between w-full font-medium text-left group-first:rounded-t-xl border-gray-200 dark:border-gray-700'"], | ||
["transitionType?", "TransitionTypes", "'slide'"], | ||
["transitionParams?", "TransitionParamTypes", "{}"], | ||
["paddingFlush?", "string", "'py-5'"], | ||
["paddingDefault?", "string", "'p-5'"], | ||
["textFlushOpen?", "string", "'text-gray-900 dark:text-white'"], | ||
["textFlushDefault?", "string", "'text-gray-500 dark:text-gray-400'"], | ||
["borderClass?", "string", "'border-s border-e group-first:border-t'"], | ||
["borderOpenClass?", "string", "'border-s border-e'"], | ||
["borderBottomClass?", "string", "'border-b'"], | ||
["borderSharedClass?", "string", "'border-gray-200 dark:border-gray-700'"], | ||
["classActive?", "string", "undefined"], | ||
["classInactive?", "string", "undefined"] | ||
[ | ||
"tag?", | ||
"string", | ||
"'h2'" | ||
], | ||
[ | ||
"open?", | ||
"boolean", | ||
"" | ||
], | ||
[ | ||
"activeClass?", | ||
"string", | ||
"undefined" | ||
], | ||
[ | ||
"inactiveClass?", | ||
"string", | ||
"undefined" | ||
], | ||
[ | ||
"defaultClass?", | ||
"string", | ||
"'flex items-center justify-between w-full font-medium text-left group-first:rounded-t-xl border-gray-200 dark:border-gray-700'" | ||
], | ||
[ | ||
"transitionType?", | ||
"TransitionTypes", | ||
"'slide'" | ||
], | ||
[ | ||
"transitionParams?", | ||
"TransitionParamTypes", | ||
"{}" | ||
], | ||
[ | ||
"paddingFlush?", | ||
"string", | ||
"'py-5'" | ||
], | ||
[ | ||
"paddingDefault?", | ||
"string", | ||
"'p-5'" | ||
], | ||
[ | ||
"textFlushOpen?", | ||
"string", | ||
"'text-gray-900 dark:text-white'" | ||
], | ||
[ | ||
"textFlushDefault?", | ||
"string", | ||
"'text-gray-500 dark:text-gray-400'" | ||
], | ||
[ | ||
"borderClass?", | ||
"string", | ||
"'border-s border-e group-first:border-t'" | ||
], | ||
[ | ||
"borderOpenClass?", | ||
"string", | ||
"'border-s border-e'" | ||
], | ||
[ | ||
"borderBottomClass?", | ||
"string", | ||
"'border-b'" | ||
], | ||
[ | ||
"borderSharedClass?", | ||
"string", | ||
"'border-gray-200 dark:border-gray-700'" | ||
], | ||
[ | ||
"classActive?", | ||
"string", | ||
"undefined" | ||
], | ||
[ | ||
"classInactive?", | ||
"string", | ||
"undefined" | ||
] | ||
] | ||
} | ||
} |
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.