identity-admin-ui 1.8.1 → 1.8.2

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,10 @@
1
+ import { IInputFieldProps } from './IFieldProps';
2
+ export declare enum RichTextType {
3
+ TYPE_ONE = 0,
4
+ TYPE_TWO = 1
5
+ }
6
+ interface IRichTextProps extends IInputFieldProps {
7
+ type: RichTextType;
8
+ }
9
+ export declare function RichTextInputField(props: IRichTextProps): import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -0,0 +1,2 @@
1
+ import { IShowField } from '../IShowField';
2
+ export declare function RichTextIIField(props: IShowField): import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,7 @@
1
1
  import { ResourceResponse } from "../../context/ResourcesContext";
2
2
  import { ResourcePaths } from "../../context/PathsContext";
3
3
  import { ISchemaObject } from "../../context/Resource";
4
+ import { FieldTypes } from "../../helpers";
4
5
  export interface IShowField {
5
6
  title: string;
6
7
  fieldkey: string;
@@ -12,4 +13,5 @@ export interface IShowField {
12
13
  };
13
14
  path?: string;
14
15
  props?: any;
16
+ type?: FieldTypes;
15
17
  }
@@ -0,0 +1,7 @@
1
+ import 'react-draft-wysiwyg/dist/react-draft-wysiwyg.css';
2
+ import './styles.css';
3
+ export interface IRichText {
4
+ name: string;
5
+ disabled?: boolean;
6
+ }
7
+ export default function RHFRichText({ name, disabled }: IRichText): import("react/jsx-runtime").JSX.Element;