
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@flourish/colors
Advanced tools
Add settings and logic to easily add custom colors to your template
npm install @flourish/colors
Test using:
npm run test
Test a specific test file using:
npm run test test/name-of-test.test.mjs
The settings.yml
file should be imported into your template’s template.yml
file, like this:
- Colours
- property: color
import: "@flourish/colors"
You can use overrides
to control whether to show categorical or numerical color settings. See below for an example. Replace [dataset]
and [binding]
with the relevant dataset and binding name (learn more about conditional settings).
- Colours
- property: color
import: "@flourish/colors"
overrides:
- tag: discrete
show_if:
data.[dataset].[binding].type: string
- tag: numeric
show_if:
data.[dataset].[binding].type: number
Add a color object to your template state:
export var state = {
color: {},
...
}
Import the package like import createColors from "@flourish/colors"
var colors = createColors(state.color)
creates a new object colors
.
You only need to pass in a state to get the color function working.
colors.getColor(value)
finds the correct color for value
. Will just return the fallback value unless the updateColorScale method has been called at some point.
colors.fallback([value])
returns the current fallback value if value
is undefined or (usually) sets it to value
if it is defined and returns the colors
object. The value
"default" (re)sets the fallback to be the default value of null. The fallback value is returned whenever the getColor
method cannot interpret the value passed into it (for example if that value is non-numeric when in sequential or diverging mode).
colors.updateColorScale(domain)
updates the color scale based on the domain
array. In general the domain array is an array of data values that the scale should be based on. For a categorical scale, this'll be an array of strings. For numeric (sequential or diverging) scales, this'll be an array of numbers (e.g. [10, 50, 30, 20, 50, 10, 30, 60, 100, 90]
).
FAQs
Adds color settings
The npm package @flourish/colors receives a total of 295 weekly downloads. As such, @flourish/colors popularity was classified as not popular.
We found that @flourish/colors demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 24 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.