@bigbinary/neetoui 4.4.12 → 4.4.14

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,14 @@ 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.13 - 2023-03-16
27
+
28
+ - Renamed the lib folder to src.
29
+ - Made the corresponding changes in config files.
30
+ - Updated imports with lib to use aliased imports.
31
+ - Updated the documentation.
32
+ - Ensured tests are running as expected.
33
+
26
34
  ## 4.4.12 - 2023-03-15
27
35
 
28
36
  This PR adds the following changes to the *Switch* component.
@@ -56,7 +64,6 @@ This PR adds the following changes to the *Switch* component.
56
64
  - Fixed: Horizontal scroll issue in Table header
57
65
  ## 4.4.8 - 2023-03-10
58
66
  - Fixed: Issue with overriding components in *Select* component
59
-
60
67
  ## 4.4.7 - 2023-03-10
61
68
 
62
69
  - Added: entry points for TypeScript resolutions in package.json
@@ -158,7 +165,6 @@ After
158
165
  ## 4.2.3 - 2023-01-30
159
166
  - Added: transparency control option in *ColorPicker*, controlled via `showTransparencyControl`.
160
167
  ## 4.2.2 - 2023-01-29
161
-
162
168
  - Fixed: respecting the prop `isCreatable` if `loadOptions` prop is provided in *Select* component
163
169
 
164
170
  ## 4.2.1 - 2023-01-24
@@ -213,7 +219,6 @@ Added: *Checkbox* and *MultiEmailInput* are wrapped with `forwardref`.
213
219
  - Added: functionality to scroll to the selected value in *Select* component
214
220
  ## 4.1.29 - 2022-12-21
215
221
  - Fixed: pressing `enter` key in *Select* to select an option submitting the *Form*.
216
-
217
222
  ## 4.1.28 - 2022-12-20
218
223
 
219
224
  - Fixed: **Form** `validateOnChange` and `validateOnBlur` is not being triggered after the form is submitted by pressing enter key and there are validation errors.
@@ -288,7 +293,6 @@ Fixed: Form validation triggered with incorrect values from MultiEmailInput.
288
293
  - Added: Eyedropper to *ColorPicker*
289
294
  ## 4.1.0 - 2022-11-03
290
295
  - Changed: **BREAKING** Name of the *EmailInput* component to *MultiEmailInput* in both components and Formik components.
291
-
292
296
  ## 4.0.17 - 2022-10-28
293
297
 
294
298
  - Fixed:`ValidateDOMNesting` warning in *DatePicker* component.
package/README.md CHANGED
@@ -52,7 +52,7 @@ Install all the dependencies by executing following command.
52
52
  yarn
53
53
  ```
54
54
 
55
- You can create new components in `lib/components` and export them from `lib/index.js`.
55
+ You can create new components in `src/components` and export them from `src/index.js`.
56
56
 
57
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
58