@bigbinary/neetoui 3.2.85 → 3.3.0
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 +46 -0
- package/formik.js +1 -1
- package/index.css +1 -2
- package/index.js +1 -1
- package/layouts.js +1 -1
- package/package.json +2 -4
- package/.node-version +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<!---
|
|
2
|
+
|
|
3
|
+
------- FOLLOW THESE WHILE ADDING AN ENTRY ------
|
|
4
|
+
|
|
5
|
+
** Add BREAKING keyword in bold for changes which could potentially break the component, eg: **BREAKING**
|
|
6
|
+
** Represent a component name in italics, eg: _isLoading_
|
|
7
|
+
** Enclose a prop name in double backticks, eg: `isLoading`
|
|
8
|
+
** Represent a version as second level heading and write with version number inside a square bracket, eg: ## [3.3.2]
|
|
9
|
+
|
|
10
|
+
--->
|
|
11
|
+
|
|
12
|
+
# Changelog
|
|
13
|
+
|
|
14
|
+
All notable changes to this project will be documented in this file.
|
|
15
|
+
|
|
16
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
17
|
+
|
|
18
|
+
Prefix the change with one of these keywords:
|
|
19
|
+
|
|
20
|
+
- _Added_: for new features.
|
|
21
|
+
- _Changed_: for changes in existing functionality.
|
|
22
|
+
- _Deprecated_: for soon-to-be removed features.
|
|
23
|
+
- _Removed_: for now removed features.
|
|
24
|
+
- _Fixed_: for any bug fixes.
|
|
25
|
+
- _Security_: in case of vulnerabilities.
|
|
26
|
+
|
|
27
|
+
## [3.3.0]
|
|
28
|
+
|
|
29
|
+
- Changed: **BREAKING** `isLoading` prop of _Table_ to `loading`.
|
|
30
|
+
- Changed: Implemented _Dropdown_ component with Tippy.js and removed `react-popper`
|
|
31
|
+
- Deprecated: **BREAKING** `loading` prop of _Pane_, _Modal_ and _Alert_ components.
|
|
32
|
+
- Removed: **BREAKING** `placement` prop from _Tooltip_ (Use position instead).
|
|
33
|
+
|
|
34
|
+
#### UI
|
|
35
|
+
|
|
36
|
+
- Changed: colors of `$neeto-ui-warning` and `$neeto-ui-error` in _Color Palette_
|
|
37
|
+
- Changed: the text color in _Table_ to `$neeto-ui-black`
|
|
38
|
+
- Changed: UI of _Tag_ of component
|
|
39
|
+
- Changed: look and feel of _Danger Button_
|
|
40
|
+
- Changed: Contrast of _Avatar_, _Accordian_, _Toastr_ and _Callout_
|
|
41
|
+
- Changed: Made _Modal_ Header text and Close icon aligned in a line
|
|
42
|
+
|
|
43
|
+
- Added: new variant for _Danger Button_ -`danger-text`
|
|
44
|
+
- Added: new accent colors
|
|
45
|
+
|
|
46
|
+

|