@wistia/ui 0.21.7 → 0.21.8
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.d.ts +5 -5
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1146,7 +1146,7 @@ declare const Checkbox: react.ForwardRefExoticComponent<Omit<Omit<react.Detailed
|
|
|
1146
1146
|
/**
|
|
1147
1147
|
* Callback function invoked when the value changes
|
|
1148
1148
|
*/
|
|
1149
|
-
onChange?: (event: ChangeEvent) =>
|
|
1149
|
+
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
1150
1150
|
/**
|
|
1151
1151
|
* Indicates if the input is required
|
|
1152
1152
|
*/
|
|
@@ -3656,7 +3656,7 @@ type RadioProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
3656
3656
|
/**
|
|
3657
3657
|
* Callback function invoked when the value changes
|
|
3658
3658
|
*/
|
|
3659
|
-
onChange?: (event: ChangeEvent) =>
|
|
3659
|
+
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
3660
3660
|
/**
|
|
3661
3661
|
* Indicates if the input is required
|
|
3662
3662
|
*/
|
|
@@ -3707,7 +3707,7 @@ declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTM
|
|
|
3707
3707
|
/**
|
|
3708
3708
|
* Callback function invoked when the value changes
|
|
3709
3709
|
*/
|
|
3710
|
-
onChange?: (event: ChangeEvent) =>
|
|
3710
|
+
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
3711
3711
|
/**
|
|
3712
3712
|
* Indicates if the input is required
|
|
3713
3713
|
*/
|
|
@@ -4262,7 +4262,7 @@ type SwitchProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4262
4262
|
/**
|
|
4263
4263
|
* Callback function invoked when the value changes
|
|
4264
4264
|
*/
|
|
4265
|
-
onChange?: (event: ChangeEvent) =>
|
|
4265
|
+
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
4266
4266
|
/**
|
|
4267
4267
|
* Indicates if the input is required
|
|
4268
4268
|
*/
|
|
@@ -4312,7 +4312,7 @@ declare const Switch: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHT
|
|
|
4312
4312
|
/**
|
|
4313
4313
|
* Callback function invoked when the value changes
|
|
4314
4314
|
*/
|
|
4315
|
-
onChange?: (event: ChangeEvent) =>
|
|
4315
|
+
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
4316
4316
|
/**
|
|
4317
4317
|
* Indicates if the input is required
|
|
4318
4318
|
*/
|