contexture-client
Advanced tools
Comparing version 2.55.0 to 3.0.0
# Changelog | ||
## 3.0.0 | ||
### Major Changes | ||
- bf80fccc: `step` type contract updated to use `min` and `max` instead of `range` so it can be consistent with `number` type | ||
## 2.55.0 | ||
@@ -4,0 +10,0 @@ |
@@ -217,8 +217,9 @@ var __create = Object.create; | ||
reactors: { | ||
range: "all" | ||
min: "all", | ||
max: "all" | ||
}, | ||
defaults: { | ||
field: null, | ||
range: [0, 1e3], | ||
steps: [0, 1e3, 5e3, 1e4, 25e3, 5e4, 1e6], | ||
min: 0, | ||
max: null, | ||
context: { | ||
@@ -225,0 +226,0 @@ recordsCount: 0 |
@@ -185,8 +185,9 @@ import _ from "lodash/fp.js"; | ||
reactors: { | ||
range: "all" | ||
min: "all", | ||
max: "all" | ||
}, | ||
defaults: { | ||
field: null, | ||
range: [0, 1e3], | ||
steps: [0, 1e3, 5e3, 1e4, 25e3, 5e4, 1e6], | ||
min: 0, | ||
max: null, | ||
context: { | ||
@@ -193,0 +194,0 @@ recordsCount: 0 |
{ | ||
"name": "contexture-client", | ||
"version": "2.55.0", | ||
"version": "3.0.0", | ||
"description": "The Contexture (aka ContextTree) Client", | ||
@@ -21,3 +21,3 @@ "type": "module", | ||
"prepack": "node ../../scripts/esbuild.js --platform=browser", | ||
"test": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-vm-modules yarn run -T jest ." | ||
"test": "yarn run -T test --project client" | ||
}, | ||
@@ -24,0 +24,0 @@ "repository": { |
180303
3537