identity-admin-ui 1.10.15 → 1.10.16
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/lib/cjs/index.js +7 -7
- package/lib/cjs/types/components/DashboardShowFields/Fields/MultiTextField.d.ts +2 -0
- package/lib/cjs/types/components/DashboardShowFields/Sections/MultiTextSection.d.ts +2 -0
- package/lib/cjs/types/components/hook-form/RHFMultiSelect.d.ts +12 -0
- package/lib/cjs/types/components/hook-form/RHFMultipleTextField.d.ts +8 -0
- package/lib/cjs/types/helpers/EnumHelper.d.ts +2 -1
- package/lib/esm/index.js +9 -9
- package/lib/esm/types/components/DashboardShowFields/Fields/MultiTextField.d.ts +2 -0
- package/lib/esm/types/components/DashboardShowFields/Sections/MultiTextSection.d.ts +2 -0
- package/lib/esm/types/components/hook-form/RHFMultiSelect.d.ts +12 -0
- package/lib/esm/types/components/hook-form/RHFMultipleTextField.d.ts +8 -0
- package/lib/esm/types/helpers/EnumHelper.d.ts +2 -1
- package/lib/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FormControlLabelProps } from '@mui/material';
|
|
2
|
+
interface RHFMultiTextFieldProps extends Omit<FormControlLabelProps, 'control' | 'label'> {
|
|
3
|
+
name: string;
|
|
4
|
+
label?: string;
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
options: {
|
|
7
|
+
label: string;
|
|
8
|
+
value: any;
|
|
9
|
+
}[];
|
|
10
|
+
}
|
|
11
|
+
export declare function RHFMultiSelect({ name, label, placeholder, options, ...other }: RHFMultiTextFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FormControlLabelProps } from '@mui/material';
|
|
2
|
+
interface RHFMultiTextFieldProps extends Omit<FormControlLabelProps, 'control' | 'label'> {
|
|
3
|
+
name: string;
|
|
4
|
+
label?: string;
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function RHFMultiTextField({ name, label, placeholder, ...other }: RHFMultiTextFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -28,7 +28,8 @@ 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
|
-
EXTERNAL_LINK = "EXTERNAL_LINK"
|
|
31
|
+
EXTERNAL_LINK = "EXTERNAL_LINK",
|
|
32
|
+
MULTIPLE_TEXT = "MULTIPLE_TEXT"
|
|
32
33
|
}
|
|
33
34
|
export declare enum HandlerStrategy {
|
|
34
35
|
NORMAL = "NORMAL",
|