@bigbinary/neetoui 4.1.19 → 4.1.20
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 +4 -0
- package/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -23,6 +23,10 @@ Prefix the change with one of these keywords:
|
|
|
23
23
|
- *Fixed*: for any bug fixes.
|
|
24
24
|
- *Security*: in case of vulnerabilities.
|
|
25
25
|
|
|
26
|
+
## 4.1.20 - 2022-12-06
|
|
27
|
+
|
|
28
|
+
- Changed: `color` prop in *Tag* component as optional in type definition.
|
|
29
|
+
|
|
26
30
|
## 4.1.19 - 2022-12-05
|
|
27
31
|
|
|
28
32
|
- Fixed: Prevented form submission on the `enter` key for neetoEditor.
|
package/index.d.ts
CHANGED
|
@@ -383,7 +383,7 @@ export interface TagProps {
|
|
|
383
383
|
| "secondary"
|
|
384
384
|
| "info";
|
|
385
385
|
/** @deprecated Prop deprecated. Use `style` prop instead*/
|
|
386
|
-
color
|
|
386
|
+
color?: string;
|
|
387
387
|
/** @deprecated Prop deprecated. Use `indicatorStyle` prop instead*/
|
|
388
388
|
indicatorColor?: string;
|
|
389
389
|
}
|