dfh-ui-library 1.4.62 → 1.4.64

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.
@@ -1,7 +1,7 @@
1
1
  import React, { ReactNode } from "react";
2
- import { IComponent, ISchema } from "../../shared/models/components/common.model";
2
+ import { IComponent } from "../../shared/models/components/common.model";
3
3
  interface IComponentProps {
4
- schema: ISchema[];
4
+ schema: any[];
5
5
  children: ReactNode;
6
6
  setComponents: (data: IComponent[]) => void;
7
7
  }
@@ -1,5 +1,4 @@
1
- import { ISchema } from "../../shared/models/components/common.model";
2
- export declare const UIComponentHelper: (schema: ISchema[]) => {
1
+ export declare const UIComponentHelper: (schema: any[]) => {
3
2
  id: number;
4
3
  component: any;
5
4
  }[];
@@ -1,7 +1,7 @@
1
1
  import React, { ReactNode } from "react";
2
- import { IComponent, ISchema } from "../../shared/models/components/common.model";
2
+ import { IComponent } from "../../shared/models/components/common.model";
3
3
  interface IComponentProps {
4
- schema: ISchema[];
4
+ schema: any[];
5
5
  children: ReactNode;
6
6
  setComponents: (data: IComponent[]) => void;
7
7
  }
@@ -1,5 +1,4 @@
1
- import { ISchema } from "../../shared/models/components/common.model";
2
- export declare const UIComponentHelper: (schema: ISchema[]) => {
1
+ export declare const UIComponentHelper: (schema: any[]) => {
3
2
  id: number;
4
3
  component: any;
5
4
  }[];
package/dist/index.d.ts CHANGED
@@ -730,7 +730,7 @@ declare const ImageInput: React__default.FC<ImageInputProps>;
730
730
  declare const Card: React__default.FC<ICardProps>;
731
731
 
732
732
  interface IComponentProps {
733
- schema: ISchema[];
733
+ schema: any[];
734
734
  children: ReactNode;
735
735
  setComponents: (data: IComponent[]) => void;
736
736
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.4.62",
3
+ "version": "1.4.64",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",