@appquality/unguess-design-system 4.0.25 → 4.0.26

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
@@ -1,3 +1,16 @@
1
+ # v4.0.26 (Mon Feb 10 2025)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Refactor InputToggle [#489](https://github.com/AppQuality/unguess-design-system/pull/489) ([@marcbon](https://github.com/marcbon))
6
+ - feat: Add 'preventEmpty' option to InputToggleArgs [#479](https://github.com/AppQuality/unguess-design-system/pull/479) ([@marcbon](https://github.com/marcbon))
7
+
8
+ #### Authors: 1
9
+
10
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
11
+
12
+ ---
13
+
1
14
  # v4.0.25 (Thu Feb 06 2025)
2
15
 
3
16
  #### 🐛 Bug Fix
package/build/index.d.ts CHANGED
@@ -3197,6 +3197,8 @@ declare interface InputToggleArgs extends IInputProps {
3197
3197
  textSize?: textSizes;
3198
3198
  /** Sets the initial focus */
3199
3199
  isFocused?: boolean;
3200
+ /** Prevent empty value */
3201
+ preventEmpty?: boolean;
3200
3202
  }
3201
3203
 
3202
3204
  export declare interface IOptGroup extends IOptGroupProps {