kui-crm 0.0.519 → 0.0.521

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/index.d.ts CHANGED
@@ -1047,8 +1047,7 @@ type CompanyAutocompleteProps<TFormValues> = {
1047
1047
  defaultFilter?: string
1048
1048
  creatingLabel?: string
1049
1049
  title?: string
1050
- schemaSettings?: any
1051
- fieldsSettings?: any
1050
+ settings?: any
1052
1051
  } & InputWithControllerProps<TFormValues>
1053
1052
 
1054
1053
  type CompanyAutocompleteFields = {
@@ -1568,8 +1567,7 @@ type CompanyFields = {
1568
1567
 
1569
1568
  type CompanyCreationFormProps = {
1570
1569
  handleSubmit: (data: CompanyCreationFields) => void
1571
- schemaSettings?: any
1572
- fieldsSettings?: any
1570
+ settings?: any
1573
1571
  }
1574
1572
 
1575
1573
  declare type CompanyLiteParams = {
@@ -2686,8 +2684,7 @@ type CompanyCreationModalProps = {
2686
2684
  data: CompanyCreationFields
2687
2685
  ) => Promise<undefined | number | void>
2688
2686
  title?: string
2689
- schemaSettings?: any
2690
- fieldsSettings?: any
2687
+ settings?: any
2691
2688
  } & Omit<ModalProps, "title">
2692
2689
 
2693
2690
  declare function CompanyCreationModal(props: CompanyCreationModalProps): JSX.Element;