@bigbinary/neetoui 4.2.2 → 4.2.3

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.2.3 - 2023-01-30
27
+
28
+ - Added: transparency control option in *ColorPicker*, controlled via `showTransparencyControl`.
29
+
26
30
  ## 4.2.2 - 2023-01-29
27
31
 
28
32
  - Fixed: respecting the prop `isCreatable` if `loadOptions` prop is provided in *Select* component
@@ -55,7 +59,6 @@ Screenshot
55
59
  Added function in Toastr to check for notice_code in response and if it's not present then it will fall back to notice.
56
60
  ## 4.1.42 - 2023-01-05
57
61
  - Updated: Sidebar neeto logo.
58
-
59
62
  ## 4.1.41 - 2023-01-05
60
63
 
61
64
  - Fixed: Focus trap for conditionally rendered elements in *Overlay*
@@ -150,7 +153,6 @@ Fixed: Form validation triggered with incorrect values from MultiEmailInput.
150
153
  - Fixed: UI issues in Subheader
151
154
  ## 4.1.11 - 2022-11-21
152
155
  - Fixed: warnings in *DatePicker* and *TimePicker* component
153
-
154
156
  ## 4.1.10 - 2022-11-17
155
157
 
156
158
  - Adds formikBag to onSubmit
package/index.d.ts CHANGED
@@ -29,6 +29,9 @@ export interface ColorPickerProps {
29
29
  colorList: { from: string; to: string }[];
30
30
  onChange: (from: string, to: string) => void;
31
31
  };
32
+ showEyeDropper?: boolean;
33
+ showHexValue?: boolean;
34
+ showTransparencyControl?: boolean;
32
35
  }
33
36
 
34
37
  interface PopupProps {