@luscii-healthtech/web-ui 2.48.2 → 2.49.1

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.48.2",
2
+ "version": "2.49.1",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -1,7 +0,0 @@
1
- import { FormFieldDecoratorWithGeneratedProps } from "./form.types";
2
- /**
3
- * Decorator for any input component. Adds a label and additional information to be shown.
4
- *
5
- * Includes the default error handling from react-hook-form.
6
- */
7
- export declare function FormFieldDecorator({ name, children, label, fieldRequired, info, fieldErrors, decoratorClassname, }: FormFieldDecoratorWithGeneratedProps): JSX.Element;
@@ -1,11 +0,0 @@
1
- import React from "react";
2
- import { IconProps } from "./types/IconProps.type";
3
- /**
4
- * When used in components that can support both an icon or an image url, we can use this type.
5
- * TODO: Use this in the ListComponentItem, to extract the custom logic there rendering images/components
6
- */
7
- export declare type DynamicIconProps = {
8
- icon: React.VoidFunctionComponent<IconProps> | string;
9
- className?: string;
10
- };
11
- export declare const DynamicIcon: React.VoidFunctionComponent<DynamicIconProps>;