-
Notifications
You must be signed in to change notification settings - Fork 13.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make CategoricalColorScale instance a function and remove .toFunction…
…() (#33) * Feat: Use the recently added ExtensibleFunction to make an instance of CategoricalColorScale be a function * BREAKING CHANGE: Remove categoricalColorScale.toFunction(). * BREAKING CHANGE: The color scale no longer convert input to lowercase before finding color. * Fix: Also transform input value before setting color.
- Loading branch information
1 parent
ffcc272
commit af725ce
Showing
4 changed files
with
19 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...tend/temporary_superset_ui/superset-ui/packages/superset-ui-color/src/stringifyAndTrim.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* Ensure value is a string | ||
* @param {any} value | ||
*/ | ||
export default function stringifyAndTrim(value) { | ||
return String(value).trim(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters