Skip to content

Commit

Permalink
Release 9.2.2 (#265)
Browse files Browse the repository at this point in the history
* add new cell line color

* blubb

* chore: prepare next dev release

* update gene and chem structure ic ons

* prepare next dev version

* feat: add pathway and protein entity colors (#256)

* fix: fix viewbox of custom icons (#254)

* add css support for custom icons

* add support for entity icons

* export function to inject css for custom icons

* fix viewbox for icons and center them

* add export for icon utils

* remove inject from main app

* remove icons from main app

* remove css class injection

* test: use app shell instead of body in cypress test (#258)

use app shell instead of body

* prepare release 9.2.2

---------

Co-authored-by: Daniela <[email protected]>
Co-authored-by: Holger Stitz <[email protected]>
Co-authored-by: dvdanielamoitzi <[email protected]>
Co-authored-by: Michael Pühringer <[email protected]>
  • Loading branch information
5 people committed Apr 23, 2024
1 parent bfbdfb8 commit e11ecf8
Show file tree
Hide file tree
Showing 5 changed files with 109 additions and 85 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/health-check.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ describe('Health check for Cypress e2e test', () => {
cy.get('input[name="password"]').type('admin');
cy.get('button[type="submit"]').click();
// Assert the content is now visible
cy.get('body').should('include.text', 'Visualization type');
cy.get('.mantine-AppShell-root').should('include.text', 'Visualization type');
// Check the user avatar, and then log out again
cy.get('[data-testid="visyn-user-avatar"]').should('include.text', 'A').click();
cy.get('[data-testid="visyn-user-logout"]').contains('Logout').click();
// Assert the login modal to be shown again
cy.get('[data-testid="visyn-login-modal"]').should('include.text', 'Demo App');
// Assert the content to be invisible again
cy.get('body').should('not.include.text', 'Visualization type');
cy.get('.mantine-AppShell-root').should('not.include.text', 'Visualization type');
});
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "visyn_core",
"description": "Core repository for datavisyn applications.",
"version": "9.2.1",
"version": "9.2.2",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
Expand Down
4 changes: 4 additions & 0 deletions src/app/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ export const DEFAULT_MANTINE6_PROVIDER_PROPS: Omit<Mantine6ProviderProps, 'child
dvDisease: ['#FFF0E6', '#FFE1CC', '#FFD2B3', '#FFC399', '#FFB480', '#FF964D', '#E88745', '#CC783D', '#B36A35', '#995D2E'],
dvCellLine: ['#EDF8F8', '#C6E8E8', '#9FD7D7', '#78C6C6', '#51B5B5', '#75C4C2', '#5BA3A1', '#427F7E', '#3A6A6A', '#1D4847'],
dvTissue: ['#FFF1F0', '#FFE1DD', '#FFD0CA', '#FFBFA7', '#FFAF94', '#E57C73', '#C65A51', '#A63930', '#872617', '#650D00'],
dvProtein: ['#E0F9FF', '#CAECFF', '#98D6FF', '#62BFFF', '#36ABFE', '#199FFE', '#0099FF', '#0085E5', '#0076CE', '#0066B7'],
dvPathway: ['#FFEDFD', '#F6DBF2', '#E8B9E2', '#D283C7', '#CA64BC', '#BF49AF', '#A83A99', '#97318A', '#842779', '#711366'],
},
primaryShade: 5,
primaryColor: 'dvPrimary',
Expand All @@ -41,6 +43,8 @@ export const DEFAULT_MANTINE_PROVIDER_PROPS: Omit<MantineProviderProps, 'childre
dvDisease: ['#FFF0E6', '#FFE1CC', '#FFD2B3', '#FFC399', '#FFB480', '#FF964D', '#E88745', '#CC783D', '#B36A35', '#995D2E'],
dvCellLine: ['#D9F4F3', '#B5E5E5', '#8FD7D6', '#6FCAC9', '#5BC2C1', '#39A2A1', '#2C9695', '#0B8281', '#087170', '#045B5B'],
dvTissue: ['#FFF1F0', '#FFE1DD', '#FFD0CA', '#FFBFA7', '#FFAF94', '#E57C73', '#C65A51', '#A63930', '#872617', '#650D00'],
dvProtein: ['#E0F9FF', '#CAECFF', '#98D6FF', '#62BFFF', '#36ABFE', '#199FFE', '#0099FF', '#0085E5', '#0076CE', '#0066B7'],
dvPathway: ['#FFEDFD', '#F6DBF2', '#E8B9E2', '#D283C7', '#CA64BC', '#BF49AF', '#A83A99', '#97318A', '#842779', '#711366'],
},
primaryShade: 5,
primaryColor: 'dvPrimary',
Expand Down
Loading

0 comments on commit e11ecf8

Please sign in to comment.