@bigbinary/neetoui 4.4.11 → 4.4.13
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 +14 -8
- package/README.md +3 -3
- package/formik.cjs.js +1 -1
- package/formik.js +1 -1
- package/index.cjs.js +2 -2
- package/index.css +1 -1
- package/index.js +2 -2
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -23,6 +23,20 @@ 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
|
+
|
|
34
|
+
## 4.4.12 - 2023-03-15
|
|
35
|
+
|
|
36
|
+
This PR adds the following changes to the *Switch* component.
|
|
37
|
+
|
|
38
|
+
- Added `forwardRef` to the *Switch* component so that it supports adding *Tooltip* to it, as per this [guide](https://github.com/atomiks/tippyjs-react#component-children).
|
|
39
|
+
|
|
26
40
|
## 4.4.11 - 2023-03-14
|
|
27
41
|
|
|
28
42
|
- Added: `liveChat` prop to *HelpSection* component.
|
|
@@ -49,9 +63,7 @@ Prefix the change with one of these keywords:
|
|
|
49
63
|
<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">
|
|
50
64
|
- Fixed: Horizontal scroll issue in Table header
|
|
51
65
|
## 4.4.8 - 2023-03-10
|
|
52
|
-
|
|
53
66
|
- Fixed: Issue with overriding components in *Select* component
|
|
54
|
-
|
|
55
67
|
## 4.4.7 - 2023-03-10
|
|
56
68
|
|
|
57
69
|
- Added: entry points for TypeScript resolutions in package.json
|
|
@@ -152,9 +164,7 @@ After
|
|
|
152
164
|
- Updated : `neeto-icons`
|
|
153
165
|
## 4.2.3 - 2023-01-30
|
|
154
166
|
- Added: transparency control option in *ColorPicker*, controlled via `showTransparencyControl`.
|
|
155
|
-
|
|
156
167
|
## 4.2.2 - 2023-01-29
|
|
157
|
-
|
|
158
168
|
- Fixed: respecting the prop `isCreatable` if `loadOptions` prop is provided in *Select* component
|
|
159
169
|
|
|
160
170
|
## 4.2.1 - 2023-01-24
|
|
@@ -208,9 +218,7 @@ Added: *Checkbox* and *MultiEmailInput* are wrapped with `forwardref`.
|
|
|
208
218
|
## 4.1.30 - 2022-12-21
|
|
209
219
|
- Added: functionality to scroll to the selected value in *Select* component
|
|
210
220
|
## 4.1.29 - 2022-12-21
|
|
211
|
-
|
|
212
221
|
- Fixed: pressing `enter` key in *Select* to select an option submitting the *Form*.
|
|
213
|
-
|
|
214
222
|
## 4.1.28 - 2022-12-20
|
|
215
223
|
|
|
216
224
|
- Fixed: **Form** `validateOnChange` and `validateOnBlur` is not being triggered after the form is submitted by pressing enter key and there are validation errors.
|
|
@@ -284,9 +292,7 @@ Fixed: Form validation triggered with incorrect values from MultiEmailInput.
|
|
|
284
292
|
## 4.1.1 - 2022-11-03
|
|
285
293
|
- Added: Eyedropper to *ColorPicker*
|
|
286
294
|
## 4.1.0 - 2022-11-03
|
|
287
|
-
|
|
288
295
|
- Changed: **BREAKING** Name of the *EmailInput* component to *MultiEmailInput* in both components and Formik components.
|
|
289
|
-
|
|
290
296
|
## 4.0.17 - 2022-10-28
|
|
291
297
|
|
|
292
298
|
- Fixed:`ValidateDOMNesting` warning in *DatePicker* component.
|
package/README.md
CHANGED
|
@@ -52,13 +52,13 @@ Install all the dependencies by executing following command.
|
|
|
52
52
|
yarn
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
You can create new components in `
|
|
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
|
|
|
59
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
|
|
61
|
-
- To see if the storybook gets built run `yarn build
|
|
60
|
+
- To see if **neetoUI** gets built and bundled after changes run `yarn bundle`.
|
|
61
|
+
- To see if the storybook gets built run `yarn build`.
|
|
62
62
|
|
|
63
63
|
Note that nothing in the `stories` folder will be bundled with **neetoUI**.
|
|
64
64
|
|