@elcrm/form 0.0.53 → 0.0.54

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.
@@ -24,4 +24,4 @@ import { TInput } from './type';
24
24
  * @param {boolean} [isReload] - Нужно ли обновлять данные при изменении.
25
25
  * @param {boolean} [spellCheck] - Включить проверку орфографии.
26
26
  */
27
- export default function ({ value, onValue, name, inputmode, placeholder, title, label, show, hide, edit, active, maxLength, onSave, className, spellCheck, isCopy, isReload, error, }: TInput): import("react/jsx-runtime").JSX.Element | "";
27
+ export default function ({ value, onValue, name, inputmode, placeholder, title, label, show, hide, edit, active, maxLength, onSave, className, spellCheck, isCopy, isReload, after, before, error, }: TInput): import("react/jsx-runtime").JSX.Element | "";
@@ -7,10 +7,10 @@ export { default as TextareaField } from './fields/Textarea';
7
7
  export { default as PhoneField } from './fields/Phone';
8
8
  export { default as StringField } from './fields/Input';
9
9
  export { default as NumberField } from './fields/Numeric';
10
- export { default as OptionsField } from './Options';
11
- export { default as SelectField } from './Select';
12
- export { default as ModalField } from './Modal';
13
- export { default as PasswordField } from './Password';
10
+ export { default as OptionsField } from './fields/Options';
11
+ export { default as SelectField } from './fields/Select';
12
+ export { default as ModalField } from './fields/Modal';
13
+ export { default as PasswordField } from './fields/Password';
14
14
  export { default as Check } from './Check';
15
15
  export { useData, setValue, runReload, useError } from './use';
16
16
  export type { TInput, TValue } from './fields/type';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elcrm/form",
3
- "version": "0.0.53",
3
+ "version": "0.0.54",
4
4
  "description": "plugin for elCRM",
5
5
  "type": "module",
6
6
  "author": "MaSkal <dev@elcrm.online>",
@@ -26,13 +26,5 @@
26
26
  "import": "./dist/index.css",
27
27
  "require": "./dist/index.css"
28
28
  }
29
- },
30
- "peerDependencies": {
31
- "@types/react": ">=18.0.0",
32
- "react": ">=18.0.0"
33
- },
34
- "dependencies": {
35
- "@elcrm/modal": "^0.0.21",
36
- "@elcrm/notice": "latest"
37
29
  }
38
30
  }
File without changes