New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@flourish/controls

Package Overview
Dependencies
Maintainers
22
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flourish/controls - npm Package Compare versions

Comparing version

to
2.3.0

cypress.json

4

package.json
{
"name": "@flourish/controls",
"version": "2.2.1",
"version": "2.3.0",
"description": "Switchable dropdown/buttons/slider control",

@@ -33,3 +33,5 @@ "main": "controls.js",

"devDependencies": {
"@flourish/cypress": "^2.12.3",
"@flourish/eslint-plugin-flourish": "^0.7.2",
"cypress": "^7.3.0",
"eslint": "^5.16.0",

@@ -36,0 +38,0 @@ "pre-commit": "^1.2.2"

@@ -57,5 +57,5 @@ # Flourish controls

### `appendTo(container, [bounding_container])`
### `appendTo(parent_container, [bounding_container])`
Appends the control to the `container` DOM node and injects CSS into the `head` if necessary. The optional `bounding_container` makes sure the dropdown list will never overflow outside that container.
Appends the control to the `parent_container` DOM node and injects CSS into the `head` if necessary. The optional `bounding_container` makes sure the dropdown list will never overflow outside that container.

@@ -100,2 +100,7 @@ Returns the control object.

### getNode()
Returns the container of the control that has been created. It will have a class of `"fl-controls-container"`
## Styling the controls

@@ -106,3 +111,1 @@

@@ -0,1 +1,4 @@

# 2.3.0
* Add getNode() method
# 2.2.1

@@ -2,0 +5,0 @@ * Fix vertical alignment of title

@@ -170,2 +170,6 @@ import { select } from "d3-selection";

control_obj.getNode = function() {
return container;
};
var isPlaying = function(is_playing) {

@@ -172,0 +176,0 @@ if (is_playing === undefined) return state._is_playing_;

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