reca 2.4.1 → 2.4.3

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.
Files changed (2) hide show
  1. package/README.md +0 -23
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,29 +10,6 @@
10
10
 
11
11
  Created at the intersection of Functional style and OOP technologies. It is based on the simplicity of the functional style of the view, enriched with OOP technologies for writing business logic. Perfect for beginner developers and complex enterprise applications
12
12
 
13
- ## Table of Contents
14
-
15
- - [ReCA - React Clean Architecture state manager](#reca---react-clean-architecture-state-manager)
16
- - [Table of Contents](#table-of-contents)
17
- - [Features](#features)
18
- - [Comparison with Other Libraries](#comparison-with-other-libraries)
19
- - [Why Choose ReCA?](#why-choose-reca)
20
- - [Installation](#installation)
21
- - [Using npm](#using-npm)
22
- - [Using yarn](#using-yarn)
23
- - [Using pnpm](#using-pnpm)
24
- - [Setup](#setup)
25
- - [Examples](#examples)
26
- - [Quick Start - Counter Example](#quick-start---counter-example)
27
- - [ToDo Example](#todo-example)
28
- - [Example low-level Store](#example-low-level-store)
29
- - [Advanced Example - Dependency Injection for Enterprise Applications](#advanced-example---dependency-injection-for-enterprise-applications)
30
- - [Documentation and Resources](#documentation-and-resources)
31
- - [Documentation](#documentation)
32
- - [Community and Support](#community-and-support)
33
- - [Contributing](#contributing)
34
- - [License](#license)
35
-
36
13
  ## Features
37
14
 
38
15
  - **Microstores** - calculations state of components don't affect to other components, small CPU usage for update states,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reca",
3
- "version": "2.4.1",
3
+ "version": "2.4.3",
4
4
  "description": "ReCA - React Clean Architecture state manager",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -34,7 +34,7 @@
34
34
  "LICENSE"
35
35
  ],
36
36
  "dependencies": {
37
- "first-di": "^3.4.5"
37
+ "first-di": "^3.4.7"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "react": ">=16.0.0",