Comparing version 1.10.0 to 1.10.1
@@ -0,0 +0,0 @@ (function webpackUniversalModuleDefinition(root, factory) { |
{ | ||
"name": "redux-app", | ||
"version": "1.10.0", | ||
"version": "1.10.1", | ||
"description": "Type-safe, DRY and OO redux. Implemented with typescript.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -74,6 +74,8 @@ # redux-app | ||
- [Utilities](#utilities) | ||
- [isInstanceOf](#isinstanceof) | ||
- [`ignoreState`](#ignorestate) | ||
- [`isInstanceOf`](#isinstanceof) | ||
- [Applying Enhancers (devtools, etc.)](#applying-enhancers) | ||
- [Options](#options) | ||
- [Component Options](#component-options) | ||
- [Computed Options](#computed-options) | ||
- [App Options](#app-options) | ||
@@ -382,2 +384,16 @@ - [Global Options](#global-options) | ||
#### Computed Options | ||
```javascript | ||
class ComputedOptions { | ||
/** | ||
* Whether to perform deep comparison or a simple equality comparison | ||
* before updating computed values. Using deep comparison has a small | ||
* additional performance cost. | ||
* Default value: true. | ||
*/ | ||
deepComparison: boolean; | ||
} | ||
``` | ||
#### App Options | ||
@@ -384,0 +400,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
293706
501