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.
- package/dist/index.es.js +895 -895
- package/dist/index.es.js.gz +0 -0
- package/dist/index.umd.js +14 -14
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
- package/types/index.d.ts +5 -2
package/dist/index.umd.js.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
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> {
|