@bigbinary/neetoui 4.4.11 → 4.4.12

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,12 @@ 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.12 - 2023-03-15
27
+
28
+ This PR adds the following changes to the *Switch* component.
29
+
30
+ - 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).
31
+
26
32
  ## 4.4.11 - 2023-03-14
27
33
 
28
34
  - Added: `liveChat` prop to *HelpSection* component.
@@ -49,7 +55,6 @@ Prefix the change with one of these keywords:
49
55
  <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
56
  - Fixed: Horizontal scroll issue in Table header
51
57
  ## 4.4.8 - 2023-03-10
52
-
53
58
  - Fixed: Issue with overriding components in *Select* component
54
59
 
55
60
  ## 4.4.7 - 2023-03-10
@@ -152,7 +157,6 @@ After
152
157
  - Updated : `neeto-icons`
153
158
  ## 4.2.3 - 2023-01-30
154
159
  - Added: transparency control option in *ColorPicker*, controlled via `showTransparencyControl`.
155
-
156
160
  ## 4.2.2 - 2023-01-29
157
161
 
158
162
  - Fixed: respecting the prop `isCreatable` if `loadOptions` prop is provided in *Select* component
@@ -208,7 +212,6 @@ Added: *Checkbox* and *MultiEmailInput* are wrapped with `forwardref`.
208
212
  ## 4.1.30 - 2022-12-21
209
213
  - Added: functionality to scroll to the selected value in *Select* component
210
214
  ## 4.1.29 - 2022-12-21
211
-
212
215
  - Fixed: pressing `enter` key in *Select* to select an option submitting the *Form*.
213
216
 
214
217
  ## 4.1.28 - 2022-12-20
@@ -284,7 +287,6 @@ Fixed: Form validation triggered with incorrect values from MultiEmailInput.
284
287
  ## 4.1.1 - 2022-11-03
285
288
  - Added: Eyedropper to *ColorPicker*
286
289
  ## 4.1.0 - 2022-11-03
287
-
288
290
  - Changed: **BREAKING** Name of the *EmailInput* component to *MultiEmailInput* in both components and Formik components.
289
291
 
290
292
  ## 4.0.17 - 2022-10-28
package/README.md CHANGED
@@ -57,8 +57,8 @@ You can create new components in `lib/components` and export them from `lib/inde
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 build`.
61
- - To see if the storybook gets built run `yarn build-storybook`.
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