identity-admin-ui 1.12.20 → 1.12.21

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,8 @@
1
1
  import { IInputFieldProps } from './IFieldProps';
2
2
  export declare enum RichTextType {
3
3
  TYPE_ONE = 0,
4
- TYPE_TWO = 1
4
+ TYPE_TWO = 1,
5
+ JSON_TYPE = 2
5
6
  }
6
7
  interface IRichTextProps extends IInputFieldProps {
7
8
  type: RichTextType;
@@ -0,0 +1,2 @@
1
+ import { IShowField } from '../IShowField';
2
+ export declare function JSONRichTextField(props: IShowField): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ import 'react-draft-wysiwyg/dist/react-draft-wysiwyg.css';
2
+ export declare function JSONRichTextShow({ stringifiedJson }: {
3
+ stringifiedJson: string;
4
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ import 'react-draft-wysiwyg/dist/react-draft-wysiwyg.css';
2
+ import './styles.css';
3
+ import { IRichText } from './RHFRichText';
4
+ export default function RHFJSONRichText({ name, disabled }: IRichText): import("react/jsx-runtime").JSX.Element;
@@ -28,6 +28,7 @@ export declare enum FieldTypes {
28
28
  LOCATION = "LOCATION",
29
29
  RICH_TEXT_I = "RICH_TEXT_I",
30
30
  RICH_TEXT_II = "RICH_TEXT_II",
31
+ JSON_RICH_TEXT = "JSON_RICH_TEXT",
31
32
  EXTERNAL_LINK = "EXTERNAL_LINK",
32
33
  MULTIPLE_TEXT = "MULTIPLE_TEXT"
33
34
  }
package/lib/index.d.ts CHANGED
@@ -123,6 +123,7 @@ declare enum FieldTypes {
123
123
  LOCATION = "LOCATION",
124
124
  RICH_TEXT_I = "RICH_TEXT_I",
125
125
  RICH_TEXT_II = "RICH_TEXT_II",
126
+ JSON_RICH_TEXT = "JSON_RICH_TEXT",
126
127
  EXTERNAL_LINK = "EXTERNAL_LINK",
127
128
  MULTIPLE_TEXT = "MULTIPLE_TEXT"
128
129
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.12.20",
3
+ "version": "1.12.21",
4
4
  "description": "Identity solutions UI package using for identity-admin dashboard",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.js",