isp-ui-kit 0.12.5 → 0.12.7

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/README.md CHANGED
@@ -21,6 +21,21 @@
21
21
  npm install isp-ui-kit
22
22
  ```
23
23
 
24
+ Дополнительные библиотеки, необходимые для работы библиотеки, исходя из peerDependencies:
25
+
26
+ ```bash
27
+ npm install @monaco-editor/react monaco-editor antd react react-dom react-hook-form
28
+ ```
29
+
30
+ ```
31
+ "@monaco-editor/react": "^4.6.0",
32
+ "antd": ">=5.12",
33
+ "monaco-editor": "^0.52.0",
34
+ "react": ">=18",
35
+ "react-dom": ">=18",
36
+ "react-hook-form": "^7.54.0"
37
+ ```
38
+
24
39
  ## Возможные проблемы
25
40
 
26
41
  ### 1. Не подгружаются стили
@@ -0,0 +1,4 @@
1
+ import { FormArrayMapProps } from './form-array-map.type';
2
+ import './form-array-map.scss';
3
+ declare const FormArrayMap: ({ name, control, label, controlClassName, }: FormArrayMapProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default FormArrayMap;
@@ -0,0 +1,7 @@
1
+ import { Control } from 'react-hook-form';
2
+ export interface FormArrayMapProps {
3
+ name: string;
4
+ control: Control<any>;
5
+ label?: string;
6
+ controlClassName: string;
7
+ }
@@ -9,3 +9,4 @@ export { default as FormTextArea } from './FormTextArea/FormTextArea';
9
9
  export { default as FormTreeSelect } from './FormTreeSelect/FormTreeSelect';
10
10
  export { default as ConfigForm } from './ConfigForm/ConfigForm';
11
11
  export { default as FormObjectMap } from './FormObjectMap/FormObjectMap';
12
+ export { default as FormArrayMap } from './FormArrayMap/FormArrayMap';