Socket
Socket
Sign inDemoInstall

victory-voronoi-container

Package Overview
Dependencies
31
Maintainers
16
Versions
148
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 36.9.2-next.3 to 36.9.2

23

CHANGELOG.md
# victory-voronoi-container
## 36.9.2-next.3
## 36.9.2
### Patch Changes
- 7da790934: Replace lodash keys with native code
- 65d02419f: Refactor containers and portal to function components
- 7efd582cc: Replace lodash array utils with native code
- 6e34169a5: Replace lodash isFunction with native code
- Updated dependencies [7da790934]
- Updated dependencies [3f2da66e3]
- Updated dependencies [c13308624]
- Updated dependencies [65d02419f]
- Updated dependencies [7efd582cc]
- Updated dependencies [9cdaf2c08]
- Updated dependencies [f6f7cc515]
- Updated dependencies [6e34169a5]
- victory-core@36.9.2-next.3
- victory-tooltip@36.9.2-next.3
- Replace lodash keys with native code ([#2811](https://github.com/FormidableLabs/victory/pull/2811))
* Replace lodash isString with native equivalent ([#2827](https://github.com/FormidableLabs/victory/pull/2827))
- Replace lodash array utils with native code ([#2810](https://github.com/FormidableLabs/victory/pull/2810))
* Replace lodash isFunction with native code ([#2802](https://github.com/FormidableLabs/victory/pull/2802))
## 36.9.1

@@ -23,0 +16,0 @@

export * from "./victory-voronoi-container";
export * from "./voronoi-helpers";
//# sourceMappingURL=index.d.ts.map

@@ -0,0 +0,0 @@ import React from "react";

@@ -0,0 +0,0 @@ /// <reference types="lodash" />

import _throttle from "lodash/throttle";
import _isRegExp from "lodash/isRegExp";
import _isString from "lodash/isString";
import _isEmpty from "lodash/isEmpty";

@@ -162,3 +161,5 @@

var blacklist = props.voronoiBlacklist || [];
var blacklistStr = blacklist.filter(_isString);
var blacklistStr = blacklist.filter(function (value) {
return !!value && typeof value.valueOf() === "string";
});
var blacklistRegExp = blacklist.filter(_isRegExp);

@@ -165,0 +166,0 @@ var isRegExpMatch = blacklistRegExp.some(function (regExp) {

export * from "./victory-voronoi-container";
export * from "./voronoi-helpers";
//# sourceMappingURL=index.d.ts.map

@@ -0,0 +0,0 @@ import React from "react";

@@ -0,0 +0,0 @@ /// <reference types="lodash" />

@@ -12,4 +12,2 @@ "use strict";

var _isString2 = _interopRequireDefault(require("lodash/isString"));
var _isEmpty2 = _interopRequireDefault(require("lodash/isEmpty"));

@@ -185,3 +183,5 @@

var blacklist = props.voronoiBlacklist || [];
var blacklistStr = blacklist.filter(_isString2.default);
var blacklistStr = blacklist.filter(function (value) {
return !!value && typeof value.valueOf() === "string";
});
var blacklistRegExp = blacklist.filter(_isRegExp2.default);

@@ -188,0 +188,0 @@ var isRegExpMatch = blacklistRegExp.some(function (regExp) {

{
"name": "victory-voronoi-container",
"version": "36.9.2-next.3",
"version": "36.9.2",
"description": "Interactive Voronoi Mouseover Component for Victory",

@@ -15,3 +15,3 @@ "keywords": [

},
"homepage": "https://formidable.com/open-source/victory",
"homepage": "https://commerce.nearform.com/open-source/victory",
"sideEffects": false,

@@ -27,4 +27,4 @@ "main": "lib/index.js",

"react-fast-compare": "^3.2.0",
"victory-core": "^36.9.2-next.3",
"victory-tooltip": "^36.9.2-next.3"
"victory-core": "^36.9.2",
"victory-tooltip": "^36.9.2"
},

@@ -34,2 +34,5 @@ "peerDependencies": {

},
"publishConfig": {
"provenance": true
},
"wireit": {

@@ -36,0 +39,0 @@ "### THESE WIREIT CONFIGS ARE GENERATED ####": {},

@@ -5,4 +5,4 @@ # VictoryVoronoiContainer

To view documentation for `VictoryVoronoiContainer` please see https://formidable.com/open-source/victory/docs/victory-voronoi-container
To view documentation for `VictoryVoronoiContainer` please see https://commerce.nearform.com/open-source/victory/docs/victory-voronoi-container
To suggest an addition or correction to this documentation please see https://github.com/FormidableLabs/victory/blob/main/docs/src/content/docs/victory-voronoi-container.md
To suggest an addition or correction to this documentation please see https://github.com/FormidableLabs/victory/blob/main/docs/src/content/docs/victory-voronoi-container.md
import { Collection, Selection, Data, Helpers } from "victory-core";
import { isEmpty, isString, isRegExp, throttle } from "lodash";
import { isEmpty, isRegExp, throttle } from "lodash";
import isEqual from "react-fast-compare";

@@ -69,3 +69,5 @@ import Delaunay from "delaunay-find/lib/index.js";

const blacklist = props.voronoiBlacklist || [];
const blacklistStr = blacklist.filter(isString);
const blacklistStr = blacklist.filter(
(value) => !!value && typeof value.valueOf() === "string",
);
const blacklistRegExp = blacklist.filter(isRegExp);

@@ -72,0 +74,0 @@ const isRegExpMatch = blacklistRegExp.some((regExp) => regExp.test(name));

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc