@cimpress/react-components
Version:
React components to support the MCP styleguide
25 lines • 732 B
TypeScript
export default class InlineEditDemo extends React.Component<any, any, any> {
constructor(props: any);
constructor(props: any, context: any);
state: {
activeChangeValue: string;
normalValue: string;
requiredValue: string;
sizeValue: string;
validationValue: string;
};
handleSuccess: ({ value, name }: {
value: any;
name: any;
}) => void;
handleChange: ({ target: { name, value } }: {
target: {
name: any;
value: any;
};
}) => void;
validateText: (text: any) => "Told you not to enter test" | null;
render(): React.JSX.Element;
}
import React from 'react';
//# sourceMappingURL=inlineedit.d.ts.map