react-input-material 0.0.435 → 0.0.437
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/components/FileInput.js +1 -1
- package/components/GenericAnimate.d.ts +10 -1
- package/components/GenericAnimate.js +1 -1
- package/components/GenericInput.js +1 -1
- package/components/Inputs.js +1 -1
- package/components/Interval.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/type.d.ts +1 -1
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ import { TooltipProps } from '@rmwc/tooltip';
|
|
|
17
17
|
import { IconOptions, RipplePropT } from '@rmwc/types';
|
|
18
18
|
import { Editor as RichTextEditorComponent, IAllProps as RichTextEditorProps } from '@tinymce/tinymce-react';
|
|
19
19
|
export declare type GenericAnimateProps = Partial<TransitionProps<HTMLElement | undefined>>;
|
|
20
|
-
export interface GenericAnimateComponent extends Omit<ForwardRefExoticComponent<GenericAnimateProps>, 'propTypes'>, StaticBaseWebComponent {
|
|
20
|
+
export interface GenericAnimateComponent<Type> extends Omit<ForwardRefExoticComponent<GenericAnimateProps>, 'propTypes'>, StaticBaseWebComponent<Type> {
|
|
21
21
|
(props: (GenericAnimateProps & RefAttributes<HTMLDivElement | HTMLSpanElement>)): ReactElement;
|
|
22
22
|
}
|
|
23
23
|
export declare type DummyProps = Mapping<unknown> & {
|