@bigbinary/neetoui 4.4.7 → 4.4.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 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.4.8 - 2023-03-10
27
+
28
+ - Fixed: Issue with overriding components in *Select* component
29
+
26
30
  ## 4.4.7 - 2023-03-10
27
31
 
28
32
  - Added: entry points for TypeScript resolutions in package.json
@@ -95,7 +99,6 @@ Fixed empty toastr message when errors or errorCodes are given null values.
95
99
  - Changed: Product icons required for *AppSwitcher* component is directly picked from `neetoIcons`.
96
100
  - Removed: `subdomain` and `environment` props from *AppSwitcher* component.
97
101
  ## 4.3.0 - 2023-02-13
98
-
99
102
  - Fixed: overlay issues with Subheader Tippy dropdown
100
103
  - Fixed: logo sizing in Sidebar
101
104
 
@@ -123,7 +126,6 @@ After
123
126
  ## 4.2.5 - 2023-02-07
124
127
  - Updated : Table sorting UI styles
125
128
  ## 4.2.4 - 2023-01-31
126
-
127
129
  - Updated : `neeto-icons`
128
130
 
129
131
  ## 4.2.3 - 2023-01-30
@@ -182,7 +184,6 @@ Added function in Toastr to check for notice_code in response and if it's not pr
182
184
  Added: *Checkbox* and *MultiEmailInput* are wrapped with `forwardref`.
183
185
  ## 4.1.31 - 2022-12-21
184
186
  - Fixed: issue with continue in *BlockNavigation*.
185
-
186
187
  ## 4.1.30 - 2022-12-21
187
188
 
188
189
  - Added: functionality to scroll to the selected value in *Select* component
@@ -261,7 +262,6 @@ Fixed: Form validation triggered with incorrect values from MultiEmailInput.
261
262
  - Added relevant tests for `Form` component.
262
263
  - Removed the usage of `Formik` and `Form` from `formik` in stories and used `Form`.
263
264
  - Fixed flaky tests.
264
-
265
265
  ## 4.1.1 - 2022-11-03
266
266
 
267
267
  - Added: Eyedropper to *ColorPicker*
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