@pdg/react-form 1.0.152 → 1.0.153

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
@@ -7,7 +7,7 @@ https://parkdigy.github.io/react-form/
7
7
 
8
8
  ## 설치
9
9
  ```shell
10
- npm install -D @pdg/react-form @mui/material @mui/icons-material @emotion/react @emotion/styled @mui/x-date-pickers @pdg/react-component @pdg/react-dialog @pdg/react-hook @pdg/util @tinymce/tinymce-react classnames dayjs react-number-format react-resize-detector simplebar-react
10
+ npm install -D @pdg/react-form
11
11
  ```
12
12
 
13
13
  ### simplebar-react css 추가
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { FormBusinessNoProps as Props } from './FormBusinessNo.types';
3
+ declare const FormBusinessNo: React.ForwardRefExoticComponent<Props & React.RefAttributes<import("../FormText").FormTextCommands>>;
4
+ export default FormBusinessNo;
@@ -0,0 +1,4 @@
1
+ import { FormTextProps, FormTextCommands, FormTextValue } from '../FormText';
2
+ export type FormBusinessNoValue = FormTextValue;
3
+ export type FormBusinessNoCommands = FormTextCommands;
4
+ export type FormBusinessNoProps = Omit<FormTextProps, 'type' | 'maxLength'>;
@@ -0,0 +1,4 @@
1
+ import FormBusinessNo from './FormBusinessNo';
2
+ export default FormBusinessNo;
3
+ export { FormBusinessNo };
4
+ export * from './FormBusinessNo.types';
@@ -11,5 +11,5 @@ export * from './FormSearch';
11
11
  export * from './FormTextarea';
12
12
  export * from './FormUrl';
13
13
  export * from './FormSelect';
14
- export * from './FormCompanyNo';
14
+ export * from './FormBusinessNo';
15
15
  export * from './FormPersonalNo';