@bigbinary/neetoui 4.4.8 → 4.4.10

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 CHANGED
@@ -23,6 +23,29 @@ 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.4.10 - 2023-03-14
27
+
28
+ - Updated: product title font weight in ProductSwitcher from `normal` to `medium`.
29
+
30
+ <img width="725" alt="Group 6" src="https://user-images.githubusercontent.com/48869249/224666135-be677e88-6e79-4d1d-8cd7-b89842e55c51.png">
31
+ - Updated: Accordion border color from `--neeto-ui-gray-400` to `--neeto-ui-gray-300`.
32
+ -
33
+ - Updated: Label color from `--neeto-ui-gray-700` to `--neeto-ui-black`.
34
+ -
35
+ - Updated: Label font weight from `normal` to `medium`.
36
+ -
37
+ - Updated: Help text color from `--neeto-ui-gray-600` to `--neeto-ui-gray-700`.
38
+ -
39
+
40
+ <img width="725" alt="Group 8" src="https://user-images.githubusercontent.com/48869249/224667904-67512253-f120-4cca-9ec3-a85e6c7e1499.png">
41
+ - Fixed: Modal spacing when there is no footer.
42
+
43
+ <img width="725" alt="Group 9" src="https://user-images.githubusercontent.com/48869249/224668860-20a74fb4-2f86-4159-9d49-c6ffa0c178d2.png">
44
+ - Added: Storybook example for using Tooltip in Table header
45
+
46
+ <img width="855" alt="Screenshot 2023-03-13 at 3 33 29 PM" src="https://user-images.githubusercontent.com/48869249/224669900-6ffd52b4-b9dd-4e2f-9c33-be5053548d63.png">
47
+ - Fixed: Horizontal scroll issue in Table header
48
+
26
49
  ## 4.4.8 - 2023-03-10
27
50
 
28
51
  - Fixed: Issue with overriding components in *Select* component
@@ -101,7 +124,6 @@ Fixed empty toastr message when errors or errorCodes are given null values.
101
124
  ## 4.3.0 - 2023-02-13
102
125
  - Fixed: overlay issues with Subheader Tippy dropdown
103
126
  - Fixed: logo sizing in Sidebar
104
-
105
127
  Before
106
128
 
107
129
  <img width="965" alt="Screenshot 2023-02-09 at 8 26 47 AM" src="https://user-images.githubusercontent.com/48869249/217706767-1350dd62-2a23-4093-b989-a1d2ba98cb97.png">
@@ -127,7 +149,6 @@ After
127
149
  - Updated : Table sorting UI styles
128
150
  ## 4.2.4 - 2023-01-31
129
151
  - Updated : `neeto-icons`
130
-
131
152
  ## 4.2.3 - 2023-01-30
132
153
 
133
154
  - Added: transparency control option in *ColorPicker*, controlled via `showTransparencyControl`.
@@ -185,7 +206,6 @@ Added: *Checkbox* and *MultiEmailInput* are wrapped with `forwardref`.
185
206
  ## 4.1.31 - 2022-12-21
186
207
  - Fixed: issue with continue in *BlockNavigation*.
187
208
  ## 4.1.30 - 2022-12-21
188
-
189
209
  - Added: functionality to scroll to the selected value in *Select* component
190
210
 
191
211
  ## 4.1.29 - 2022-12-21
@@ -263,7 +283,6 @@ Fixed: Form validation triggered with incorrect values from MultiEmailInput.
263
283
  - Removed the usage of `Formik` and `Form` from `formik` in stories and used `Form`.
264
284
  - Fixed flaky tests.
265
285
  ## 4.1.1 - 2022-11-03
266
-
267
286
  - Added: Eyedropper to *ColorPicker*
268
287
 
269
288
  ## 4.1.0 - 2022-11-03
package/README.md CHANGED
@@ -52,9 +52,15 @@ Install all the dependencies by executing following command.
52
52
  yarn
53
53
  ```
54
54
 
55
- You can create new components in the `lib/components` and export them from `lib/index.js`.
55
+ You can create new components in `lib/components` and export them from `lib/index.js`.
56
56
 
57
- Running the `yarn storybook` command starts a storybook app. Use this application to test out changes. Note that nothing in the `stories` folder will be bundled with neetoUI.
57
+ Running the `yarn storybook` command starts a storybook app. Use this application to test out changes and see how your component behaves in the storybook for **neetoUI**
58
+
59
+ - To see if tests associated with your components pass run `yarn test`.
60
+ - To see if **neetoUI** gets built and bundled after changes run `yarn build`.
61
+ - To see if the storybook gets built run `yarn build-storybook`.
62
+
63
+ Note that nothing in the `stories` folder will be bundled with **neetoUI**.
58
64
 
59
65
  ## Building
60
66
 
@@ -64,7 +70,7 @@ neetoUI gets auto-published to npm on new commit to main. You can checkout the `
64
70
 
65
71
  Read the docs here
66
72
 
67
- https://neetoui.onrender.com
73
+ https://neeto-ui.neeto.com
68
74
 
69
75
  ## Other Libraries
70
76