Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15,604 changes: 15,566 additions & 38 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
"commitizen": "^4.2.2",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"effector": "^21.6.1",
"effector-react": "^21.0.8",
"effector": "22.1.2",
"effector-react": "22.0.4",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^12.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/use-error.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useStore, useStoreMap } from 'effector-react';
import { useStore, useStoreMap } from 'effector-react/scope';
import { ErrorsInline, FieldsInline, FieldState, FormState, Message, UseErrorParams, UseErrorResult } from './ts';
import { getIn } from './utils/object-manager';
import { initialFieldState } from './default-states';
Expand Down
2 changes: 1 addition & 1 deletion src/use-field-array.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ReactNode, useCallback, useRef } from 'react';
import { useStore, useEvent } from 'effector-react';
import { useStore, useEvent } from 'effector-react/scope';
import { AnyState, FieldArrayParams, MapFieldArrayCallback, ResultUseFieldArray } from './ts';
import { getIn } from './utils/object-manager';

Expand Down
2 changes: 1 addition & 1 deletion src/use-form.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useCallback, useEffect, useRef } from 'react';
import { useEvent, useStoreMap } from 'effector-react';
import { useEvent, useStoreMap } from 'effector-react/scope';
import {
ControllerHof,
ControllerInjectedResult,
Expand Down
4 changes: 2 additions & 2 deletions tools/builder/rollup.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const { terser } = require('rollup-plugin-terser');
const rollup = require('rollup');

const input = 'src/index.ts';
const externalCSR = ['lodash.topath', 'react', 'effector', 'effector-react', 'effector-react/ssr'];
const externalSSR = ['lodash.topath', 'react', 'effector', 'effector-react', 'effector-react/ssr'];
const externalCSR = ['lodash.topath', 'react', 'effector', 'effector-react', 'effector-react/scope'];
const externalSSR = ['lodash.topath', 'react', 'effector', 'effector-react', 'effector-react/scope'];

configCSR = {
input,
Expand Down
12,078 changes: 6,104 additions & 5,974 deletions yarn.lock

Large diffs are not rendered by default.