beesoft-components 0.6.2 → 0.6.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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beesoft-components",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "author": {
package/types/index.d.ts CHANGED
@@ -116,6 +116,7 @@ declare interface CheckboxProps extends FormInputControl<unknown, CheckboxChange
116
116
 
117
117
  export declare interface CheckboxRef {
118
118
  setPartiallyChecked: (partiallyChecked: boolean) => void;
119
+ setChecked: (checked: boolean) => void;
119
120
  }
120
121
 
121
122
  export declare const ContentEditableInput: React_2.ForwardRefExoticComponent<ContentEditableInputProps & React_2.RefAttributes<ContentEditableInputRef>>;