beesoft-components 0.6.3 → 0.6.4

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.3",
3
+ "version": "0.6.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "author": {
package/types/index.d.ts CHANGED
@@ -83,7 +83,6 @@ export declare interface CheckboxChangeEvent {
83
83
  name?: string;
84
84
  value: unknown;
85
85
  checked: boolean;
86
- partial: boolean;
87
86
  originalEvent?: ChangeEvent<HTMLInputElement>;
88
87
  }
89
88
 
@@ -108,7 +107,7 @@ export declare enum CheckboxLabelLocation {
108
107
  Left = 1
109
108
  }
110
109
 
111
- declare interface CheckboxProps extends FormInputControl<unknown, CheckboxChangeEvent> {
110
+ declare interface CheckboxProps extends FormInputControl<unknown, CheckboxChangeEvent>, ComponentAnimationProps {
112
111
  checked?: boolean;
113
112
  partial?: boolean;
114
113
  labelLocation?: CheckboxLabelLocation;
@@ -119,6 +118,10 @@ export declare interface CheckboxRef {
119
118
  setChecked: (checked: boolean) => void;
120
119
  }
121
120
 
121
+ declare interface ComponentAnimationProps {
122
+ useAnimation?: boolean;
123
+ }
124
+
122
125
  export declare const ContentEditableInput: React_2.ForwardRefExoticComponent<ContentEditableInputProps & React_2.RefAttributes<ContentEditableInputRef>>;
123
126
 
124
127
  declare interface ContentEditableInputProps extends FormInputControl<string> {