victory-chart
Advanced tools
Comparing version 27.1.1 to 30.0.0-alpha.3
@@ -1,25 +0,1 @@ | ||
export { default as VictoryChart } from "./components/victory-chart/victory-chart"; | ||
export { default as VictoryLine } from "./components/victory-line/victory-line"; | ||
export { default as VictoryAxis } from "./components/victory-axis/victory-axis"; | ||
export { default as VictoryPolarAxis } from "./components/victory-polar-axis/victory-polar-axis"; | ||
export { default as VictoryArea } from "./components/victory-area/victory-area"; | ||
export { default as VictoryBar } from "./components/victory-bar/victory-bar"; | ||
export { default as VictoryBoxPlot } from "./components/victory-boxplot/victory-boxplot"; | ||
export { default as VictoryScatter } from "./components/victory-scatter/victory-scatter"; | ||
export { default as VictoryGroup } from "./components/victory-group/victory-group"; | ||
export { default as VictoryStack } from "./components/victory-stack/victory-stack"; | ||
export { default as VictoryErrorBar } from "./components/victory-errorbar/victory-errorbar"; | ||
export { default as VictoryVoronoi } from "./components/victory-voronoi/victory-voronoi"; | ||
export { default as VictoryCandlestick } from "./components/victory-candlestick/victory-candlestick"; | ||
export { selectionContainerMixin, default as VictorySelectionContainer } from "./components/containers/victory-selection-container"; | ||
export { brushContainerMixin, default as VictoryBrushContainer } from "./components/containers/victory-brush-container"; | ||
export { voronoiContainerMixin, default as VictoryVoronoiContainer } from "./components/containers/victory-voronoi-container"; | ||
export { cursorContainerMixin, default as VictoryCursorContainer } from "./components/containers/victory-cursor-container"; | ||
export { zoomContainerMixin, default as VictoryZoomContainer } from "./components/containers/victory-zoom-container"; | ||
export { combineContainerMixins, makeCreateContainerFunction, default as createContainer } from "./components/containers/create-container"; | ||
export { default as BrushHelpers } from "./components/containers/brush-helpers"; | ||
export { default as CursorHelpers } from "./components/containers/cursor-helpers"; | ||
export { default as SelectionHelpers } from "./components/containers/selection-helpers"; | ||
export { default as VoronoiHelpers } from "./components/containers/voronoi-helpers"; | ||
export { default as ZoomHelpers, RawZoomHelpers } from "./components/containers/zoom-helpers"; | ||
export { default as VictoryBrushLine } from "./components/addons/victory-brush-line"; | ||
export { default as VictoryChart } from "./victory-chart"; |
271
lib/index.js
@@ -0,278 +1,15 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
var _victoryChart = require("./components/victory-chart/victory-chart"); | ||
Object.defineProperty(exports, "VictoryChart", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryChart).default; | ||
return _victoryChart.default; | ||
} | ||
}); | ||
var _victoryLine = require("./components/victory-line/victory-line"); | ||
var _victoryChart = _interopRequireDefault(require("./victory-chart")); | ||
Object.defineProperty(exports, "VictoryLine", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryLine).default; | ||
} | ||
}); | ||
var _victoryAxis = require("./components/victory-axis/victory-axis"); | ||
Object.defineProperty(exports, "VictoryAxis", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryAxis).default; | ||
} | ||
}); | ||
var _victoryPolarAxis = require("./components/victory-polar-axis/victory-polar-axis"); | ||
Object.defineProperty(exports, "VictoryPolarAxis", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryPolarAxis).default; | ||
} | ||
}); | ||
var _victoryArea = require("./components/victory-area/victory-area"); | ||
Object.defineProperty(exports, "VictoryArea", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryArea).default; | ||
} | ||
}); | ||
var _victoryBar = require("./components/victory-bar/victory-bar"); | ||
Object.defineProperty(exports, "VictoryBar", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryBar).default; | ||
} | ||
}); | ||
var _victoryBoxplot = require("./components/victory-boxplot/victory-boxplot"); | ||
Object.defineProperty(exports, "VictoryBoxPlot", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryBoxplot).default; | ||
} | ||
}); | ||
var _victoryScatter = require("./components/victory-scatter/victory-scatter"); | ||
Object.defineProperty(exports, "VictoryScatter", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryScatter).default; | ||
} | ||
}); | ||
var _victoryGroup = require("./components/victory-group/victory-group"); | ||
Object.defineProperty(exports, "VictoryGroup", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryGroup).default; | ||
} | ||
}); | ||
var _victoryStack = require("./components/victory-stack/victory-stack"); | ||
Object.defineProperty(exports, "VictoryStack", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryStack).default; | ||
} | ||
}); | ||
var _victoryErrorbar = require("./components/victory-errorbar/victory-errorbar"); | ||
Object.defineProperty(exports, "VictoryErrorBar", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryErrorbar).default; | ||
} | ||
}); | ||
var _victoryVoronoi = require("./components/victory-voronoi/victory-voronoi"); | ||
Object.defineProperty(exports, "VictoryVoronoi", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryVoronoi).default; | ||
} | ||
}); | ||
var _victoryCandlestick = require("./components/victory-candlestick/victory-candlestick"); | ||
Object.defineProperty(exports, "VictoryCandlestick", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryCandlestick).default; | ||
} | ||
}); | ||
var _victorySelectionContainer = require("./components/containers/victory-selection-container"); | ||
Object.defineProperty(exports, "selectionContainerMixin", { | ||
enumerable: true, | ||
get: function () { | ||
return _victorySelectionContainer.selectionContainerMixin; | ||
} | ||
}); | ||
Object.defineProperty(exports, "VictorySelectionContainer", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victorySelectionContainer).default; | ||
} | ||
}); | ||
var _victoryBrushContainer = require("./components/containers/victory-brush-container"); | ||
Object.defineProperty(exports, "brushContainerMixin", { | ||
enumerable: true, | ||
get: function () { | ||
return _victoryBrushContainer.brushContainerMixin; | ||
} | ||
}); | ||
Object.defineProperty(exports, "VictoryBrushContainer", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryBrushContainer).default; | ||
} | ||
}); | ||
var _victoryVoronoiContainer = require("./components/containers/victory-voronoi-container"); | ||
Object.defineProperty(exports, "voronoiContainerMixin", { | ||
enumerable: true, | ||
get: function () { | ||
return _victoryVoronoiContainer.voronoiContainerMixin; | ||
} | ||
}); | ||
Object.defineProperty(exports, "VictoryVoronoiContainer", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryVoronoiContainer).default; | ||
} | ||
}); | ||
var _victoryCursorContainer = require("./components/containers/victory-cursor-container"); | ||
Object.defineProperty(exports, "cursorContainerMixin", { | ||
enumerable: true, | ||
get: function () { | ||
return _victoryCursorContainer.cursorContainerMixin; | ||
} | ||
}); | ||
Object.defineProperty(exports, "VictoryCursorContainer", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryCursorContainer).default; | ||
} | ||
}); | ||
var _victoryZoomContainer = require("./components/containers/victory-zoom-container"); | ||
Object.defineProperty(exports, "zoomContainerMixin", { | ||
enumerable: true, | ||
get: function () { | ||
return _victoryZoomContainer.zoomContainerMixin; | ||
} | ||
}); | ||
Object.defineProperty(exports, "VictoryZoomContainer", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryZoomContainer).default; | ||
} | ||
}); | ||
var _createContainer = require("./components/containers/create-container"); | ||
Object.defineProperty(exports, "combineContainerMixins", { | ||
enumerable: true, | ||
get: function () { | ||
return _createContainer.combineContainerMixins; | ||
} | ||
}); | ||
Object.defineProperty(exports, "makeCreateContainerFunction", { | ||
enumerable: true, | ||
get: function () { | ||
return _createContainer.makeCreateContainerFunction; | ||
} | ||
}); | ||
Object.defineProperty(exports, "createContainer", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_createContainer).default; | ||
} | ||
}); | ||
var _brushHelpers = require("./components/containers/brush-helpers"); | ||
Object.defineProperty(exports, "BrushHelpers", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_brushHelpers).default; | ||
} | ||
}); | ||
var _cursorHelpers = require("./components/containers/cursor-helpers"); | ||
Object.defineProperty(exports, "CursorHelpers", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_cursorHelpers).default; | ||
} | ||
}); | ||
var _selectionHelpers = require("./components/containers/selection-helpers"); | ||
Object.defineProperty(exports, "SelectionHelpers", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_selectionHelpers).default; | ||
} | ||
}); | ||
var _voronoiHelpers = require("./components/containers/voronoi-helpers"); | ||
Object.defineProperty(exports, "VoronoiHelpers", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_voronoiHelpers).default; | ||
} | ||
}); | ||
var _zoomHelpers = require("./components/containers/zoom-helpers"); | ||
Object.defineProperty(exports, "ZoomHelpers", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_zoomHelpers).default; | ||
} | ||
}); | ||
Object.defineProperty(exports, "RawZoomHelpers", { | ||
enumerable: true, | ||
get: function () { | ||
return _zoomHelpers.RawZoomHelpers; | ||
} | ||
}); | ||
var _victoryBrushLine = require("./components/addons/victory-brush-line"); | ||
Object.defineProperty(exports, "VictoryBrushLine", { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_victoryBrushLine).default; | ||
} | ||
}); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
{ | ||
"name": "victory-chart", | ||
"version": "27.1.1", | ||
"version": "30.0.0-alpha.3", | ||
"description": "Chart Component for Victory", | ||
@@ -8,84 +8,16 @@ "main": "lib/index.js", | ||
"jsnext:main": "es/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/formidablelabs/victory-chart.git" | ||
}, | ||
"author": "Lauren Eastridge", | ||
"author": "Formidable", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/formidablelabs/victory-chart/issues" | ||
}, | ||
"homepage": "https://github.com/formidablelabs/victory-chart", | ||
"engines": { | ||
"npm": ">=2.0.0" | ||
}, | ||
"scripts": { | ||
"preversion": "builder run npm:preversion", | ||
"postversion": "builder run npm:postversion", | ||
"postpublish": "builder run npm:postpublish", | ||
"start": "builder run dev", | ||
"test": "builder run check", | ||
"benchmark": "builder run check-perf", | ||
"version": "builder run npm:version", | ||
"lank-watch": "lank exec -u -- builder run build-watch", | ||
"lank-run": "lank exec -m victory-chart -uq -- builder run dev --expand-archetype", | ||
"lank-test": "lank exec -m victory-chart -uq -- builder run check --expand-archetype", | ||
"lint-stories": "eslint --color stories", | ||
"lint": "builder run lint && npm run lint-stories", | ||
"storybook": "start-storybook -p 6006", | ||
"chromatic": "chromatic test --storybook-addon", | ||
"chromatic-test": "chromatic test --storybook-addon --exit-zero-on-changes" | ||
}, | ||
"dependencies": { | ||
"d3-voronoi": "^1.1.2", | ||
"lodash": "^4.17.5", | ||
"react-fast-compare": "^2.0.0", | ||
"victory-core": "^24.0.0" | ||
"victory-axis": "^30.0.0-alpha.3", | ||
"victory-core": "^30.0.0-alpha.3", | ||
"victory-polar-axis": "^30.0.0-alpha.3", | ||
"victory-shared-events": "^30.0.0-alpha.3" | ||
}, | ||
"devDependencies": { | ||
"@storybook/addon-options": "^3.1.2", | ||
"@storybook/react": "^3.2.13", | ||
"babel-plugin-lodash": "^3.1.2", | ||
"babel-preset-react": "^6.5.0", | ||
"babel-preset-react-native": "^1.9.0", | ||
"builder-victory-component-dev": "^5.1.2", | ||
"chai": "^3.5.0", | ||
"d3-scale": "^1.0.0", | ||
"d3-shape": "^1.0.0", | ||
"enzyme": "^3.1.0", | ||
"enzyme-adapter-react-16": "^1.0.3", | ||
"immutable": "^3.8.2", | ||
"mocha": "^5.0.0", | ||
"prop-types": "^15.5.8", | ||
"react": "^16.0.0", | ||
"react-chromatic": "^0.8.2", | ||
"react-dom": "^16.0.0", | ||
"seedrandom": "^2.4.3", | ||
"sinon": "^1.17.5", | ||
"sinon-chai": "^2.8.0", | ||
"builder": "^4.0.0", | ||
"builder-victory-component": "^5.1.2" | ||
"scripts": { | ||
"version": "nps build-libs && nps build-dists" | ||
}, | ||
"publishr": { | ||
"dependencies": [ | ||
"^builder" | ||
], | ||
"files": { | ||
".npmignore": ".npmignore.publishr" | ||
}, | ||
"scripts": { | ||
"postinstall": "" | ||
} | ||
}, | ||
"sideEffects": false, | ||
"_publishr": [ | ||
{ | ||
"created": true, | ||
"path": ".npmignore" | ||
}, | ||
{ | ||
"created": false, | ||
"path": "package.json" | ||
} | ||
] | ||
} | ||
"sideEffects": false | ||
} |
@@ -1,46 +0,1 @@ | ||
export { default as VictoryChart } from "./components/victory-chart/victory-chart"; | ||
export { default as VictoryLine } from "./components/victory-line/victory-line"; | ||
export { default as VictoryAxis } from "./components/victory-axis/victory-axis"; | ||
export { default as VictoryPolarAxis } from "./components/victory-polar-axis/victory-polar-axis"; | ||
export { default as VictoryArea } from "./components/victory-area/victory-area"; | ||
export { default as VictoryBar } from "./components/victory-bar/victory-bar"; | ||
export { default as VictoryBoxPlot } from "./components/victory-boxplot/victory-boxplot"; | ||
export { default as VictoryScatter } from "./components/victory-scatter/victory-scatter"; | ||
export { default as VictoryGroup } from "./components/victory-group/victory-group"; | ||
export { default as VictoryStack } from "./components/victory-stack/victory-stack"; | ||
export { default as VictoryErrorBar } from "./components/victory-errorbar/victory-errorbar"; | ||
export { default as VictoryVoronoi } from "./components/victory-voronoi/victory-voronoi"; | ||
export { | ||
default as VictoryCandlestick | ||
} from "./components/victory-candlestick/victory-candlestick"; | ||
export { | ||
selectionContainerMixin, | ||
default as VictorySelectionContainer | ||
} from "./components/containers/victory-selection-container"; | ||
export { | ||
brushContainerMixin, | ||
default as VictoryBrushContainer | ||
} from "./components/containers/victory-brush-container"; | ||
export { | ||
voronoiContainerMixin, | ||
default as VictoryVoronoiContainer | ||
} from "./components/containers/victory-voronoi-container"; | ||
export { | ||
cursorContainerMixin, | ||
default as VictoryCursorContainer | ||
} from "./components/containers/victory-cursor-container"; | ||
export { | ||
zoomContainerMixin, | ||
default as VictoryZoomContainer | ||
} from "./components/containers/victory-zoom-container"; | ||
export { | ||
combineContainerMixins, | ||
makeCreateContainerFunction, | ||
default as createContainer | ||
} from "./components/containers/create-container"; | ||
export { default as BrushHelpers } from "./components/containers/brush-helpers"; | ||
export { default as CursorHelpers } from "./components/containers/cursor-helpers"; | ||
export { default as SelectionHelpers } from "./components/containers/selection-helpers"; | ||
export { default as VoronoiHelpers } from "./components/containers/voronoi-helpers"; | ||
export { default as ZoomHelpers, RawZoomHelpers } from "./components/containers/zoom-helpers"; | ||
export { default as VictoryBrushLine } from "./components/addons/victory-brush-line"; | ||
export { default as VictoryChart } from "./victory-chart"; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
0
1307400
6
13
22488
1
3
1
0
11
6
+ Addedvictory-axis@^30.0.0-alpha.3
+ Addedjs-tokens@4.0.0(transitive)
+ Addedloose-envify@1.4.0(transitive)
+ Addedobject-assign@4.1.1(transitive)
+ Addedprop-types@15.8.1(transitive)
+ Addedreact-is@16.13.1(transitive)
+ Addedvictory-axis@30.6.1(transitive)
+ Addedvictory-core@30.6.1(transitive)
+ Addedvictory-polar-axis@30.6.1(transitive)
+ Addedvictory-shared-events@30.6.1(transitive)
- Removedd3-voronoi@^1.1.2
- Removedd3-voronoi@1.1.4(transitive)
- Removedvictory-core@24.0.1(transitive)
Updatedvictory-core@^30.0.0-alpha.3