From b9484502b178138665438a877b0256675f1806c3 Mon Sep 17 00:00:00 2001 From: datavisyn-bot <> Date: Tue, 11 Feb 2025 17:40:24 +0000 Subject: [PATCH 1/3] chore: prepare next dev release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3e28e3db9..aafe63d67 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "visyn_core", "description": "Core repository for datavisyn applications.", - "version": "16.1.0", + "version": "16.1.1-SNAPSHOT", "author": { "name": "datavisyn GmbH", "email": "contact@datavisyn.io", From 8c564a061b9be3abd22e562c7c7edda1f351a068 Mon Sep 17 00:00:00 2001 From: dvdanielamoitzi <57343176+dvdanielamoitzi@users.noreply.github.com> Date: Wed, 12 Feb 2025 10:27:05 +0100 Subject: [PATCH 2/3] feat: update categorical colors and export muted versions (#722) * update categorical colors * update color name * update comment --- src/utils/colors.ts | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/utils/colors.ts b/src/utils/colors.ts index 782fcd93f..555cd5b99 100644 --- a/src/utils/colors.ts +++ b/src/utils/colors.ts @@ -2,12 +2,17 @@ /** * @deprecated Use `categoricalColors10` instead. */ -export const categoricalColors = ['#337AB7', '#ec6836', '#75c4c2', '#e9d36c', '#24b466', '#e891ae', '#db933c', '#b08aa6', '#8a6044']; +export const categoricalColors = ['#337AB7', '#ec6836', '#75c4c2', '#24b466', '#e891ae', '#db933c', '#b08aa6', '#8a6044', '#e9d36c']; /** * categorical color map with 10 colors */ -export const categoricalColors10 = ['#337ab7', '#f75a1e', '#75c4c2', '#f0d034', '#15a154', '#e891ae', '#db933c', '#a380c4', '#a4c255', '#8c574b']; +export const categoricalColors10 = ['#337ab7', '#f75a1e', '#75c4c2', '#15a154', '#e891ae', '#db933c', '#a380c4', '#a4c255', '#8c574b', '#f0d034']; + +/** + * categorical color map with 10 muted colors, matching categoricalColors10 in their order + */ +export const categoricalColors10Muted = ['#73c1e9', '#ffa087', '#c1e8f6', '#97c7ac', '#fabed4', '#facea2', '#dcbeff', '#c7da95', '#bf9890', '#fff3b8']; /** * categorical color map with 20 colors @@ -16,21 +21,21 @@ export const categoricalColors20 = [ '#337ab7', '#f75a1e', '#75c4c2', - '#f0d034', '#15a154', '#e891ae', '#db933c', '#a380c4', '#a4c255', '#8c574b', + '#f0d034', '#73c1e9', '#ffa087', '#c1e8f6', - '#c0ffd2', + '#97c7ac', '#fabed4', '#facea2', '#dcbeff', - '#b2c8a8', + '#c7da95', '#bf9890', '#fff3b8', ]; From 9c9ac5ded5611a1a95229c87a0533553e23f2bc4 Mon Sep 17 00:00:00 2001 From: puehringer <> Date: Wed, 12 Feb 2025 09:27:34 +0000 Subject: [PATCH 3/3] Prepare release version 16.2.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index aafe63d67..3df529946 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "visyn_core", "description": "Core repository for datavisyn applications.", - "version": "16.1.1-SNAPSHOT", + "version": "16.2.0", "author": { "name": "datavisyn GmbH", "email": "contact@datavisyn.io",