identity-admin-ui 1.7.29 → 1.8.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.
@@ -0,0 +1,2 @@
1
+ import { IShowField } from '../IShowField';
2
+ export declare function RichTextIField(props: IShowField): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { IShowField } from '../IShowField';
2
+ export declare function HTMLCard(props: IShowField): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ declare function HTMLRenderer({ htmlString }: {
2
+ htmlString: string;
3
+ }): import("react/jsx-runtime").JSX.Element;
4
+ export default HTMLRenderer;
@@ -26,7 +26,8 @@ export declare enum FieldTypes {
26
26
  TIMEPICKER = "timePicker",
27
27
  FILE = "File",
28
28
  LOCATION = "LOCATION",
29
- HTML = "HTML"
29
+ RICH_TEXT_I = "RICH_TEXT_I",
30
+ RICH_TEXT_II = "RICH_TEXT_II"
30
31
  }
31
32
  export declare enum HandlerStrategy {
32
33
  NORMAL = "NORMAL",
package/lib/index.d.ts CHANGED
@@ -100,7 +100,8 @@ declare enum FieldTypes {
100
100
  TIMEPICKER = "timePicker",
101
101
  FILE = "File",
102
102
  LOCATION = "LOCATION",
103
- HTML = "HTML"
103
+ RICH_TEXT_I = "RICH_TEXT_I",
104
+ RICH_TEXT_II = "RICH_TEXT_II"
104
105
  }
105
106
 
106
107
  type SizeType = 'small' | 'medium' | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.7.29",
3
+ "version": "1.8.1",
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",