flowbite-svelte 0.29.8 → 0.29.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/forms/Input.svelte +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.29.9](https://github.com/themesberg/flowbite-svelte/compare/v0.29.8...v0.29.9) (2023-01-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* dark text color for input validation ([#513](https://github.com/themesberg/flowbite-svelte/issues/513)) ([7b145d6](https://github.com/themesberg/flowbite-svelte/commit/7b145d68f224151fa45c2b651a2b49351e13cf67))
|
|
11
|
+
|
|
5
12
|
### [0.29.8](https://github.com/themesberg/flowbite-svelte/compare/v0.29.7...v0.29.8) (2023-01-01)
|
|
6
13
|
|
|
7
14
|
### [0.29.7](https://github.com/themesberg/flowbite-svelte/compare/v0.29.6...v0.29.7) (2022-12-26)
|
package/forms/Input.svelte
CHANGED
|
@@ -25,8 +25,8 @@ const ringClasses = {
|
|
|
25
25
|
const colorClasses = {
|
|
26
26
|
base: 'bg-gray-50 text-gray-900 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400',
|
|
27
27
|
tinted: 'bg-gray-50 text-gray-900 dark:bg-gray-600 dark:text-white dark:placeholder-gray-400',
|
|
28
|
-
green: 'bg-green-50 text-green-900 placeholder-green-700 dark:placeholder-green-500 dark:bg-gray-700',
|
|
29
|
-
red: 'bg-red-50 text-red-900 placeholder-red-700 dark:placeholder-red-500 dark:bg-gray-700'
|
|
28
|
+
green: 'bg-green-50 text-green-900 placeholder-green-700 dark:text-green-400 dark:placeholder-green-500 dark:bg-gray-700',
|
|
29
|
+
red: 'bg-red-50 text-red-900 placeholder-red-700 dark:text-red-500 dark:placeholder-red-500 dark:bg-gray-700'
|
|
30
30
|
};
|
|
31
31
|
// tinted if put in component having its own background
|
|
32
32
|
let background = getContext('background');
|