@utrecht/component-library-react 1.0.0-alpha.397 → 1.0.0-alpha.398

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.
@@ -0,0 +1,5 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export type FormFieldErrorMessageProps = HTMLAttributes<HTMLDivElement>;
3
+ export declare const FormFieldErrorMessage: import("react").ForwardRefExoticComponent<FormFieldErrorMessageProps & {
4
+ children?: import("react").ReactNode;
5
+ } & import("react").RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,5 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export type FormFieldErrorMessageProps = HTMLAttributes<HTMLDivElement>;
3
+ export declare const FormFieldErrorMessage: import("react").ForwardRefExoticComponent<FormFieldErrorMessageProps & {
4
+ children?: import("react").ReactNode;
5
+ } & import("react").RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @license EUPL-1.2
3
+ * Copyright (c) 2021 Robbert Broersma
4
+ */
5
+ import '../../../../components/form-field-error-message/css/index.scss';
6
+ export * from '../FormFieldErrorMessage';
@@ -55,6 +55,8 @@ export type { FormFieldProps } from '../FormField';
55
55
  export { FormField } from './FormField';
56
56
  export type { FormFieldDescriptionProps } from '../FormFieldDescription';
57
57
  export { FormFieldDescription } from './FormFieldDescription';
58
+ export type { FormFieldErrorMessageProps } from '../FormFieldErrorMessage';
59
+ export { FormFieldErrorMessage } from './FormFieldErrorMessage';
58
60
  export type { FormLabelProps } from '../FormLabel';
59
61
  export { FormLabel } from './FormLabel';
60
62
  export type { FormToggleProps } from '../FormToggle';
@@ -56,6 +56,8 @@ export type { FormFieldProps } from './FormField';
56
56
  export { FormField } from './FormField';
57
57
  export type { FormFieldDescriptionProps } from './FormFieldDescription';
58
58
  export { FormFieldDescription } from './FormFieldDescription';
59
+ export type { FormFieldErrorMessageProps } from './FormFieldErrorMessage';
60
+ export { FormFieldErrorMessage } from './FormFieldErrorMessage';
59
61
  export type { FormLabelProps } from './FormLabel';
60
62
  export { FormLabel } from './FormLabel';
61
63
  export type { FormToggleProps } from './FormToggle';