Skip to content

Commit

Permalink
Release 9.1.0 (#221)
Browse files Browse the repository at this point in the history
## What's Changed
* Fix: font sizes (mantine) by @dvdanielamoitzi in
#209
* deps(npm): [email protected] by @thinkh in
#211
* fix(ui): font size of mantine anchors (links) by @thinkh in
#213


**Full Changelog**:
v9.0.0...v9.1.0
  • Loading branch information
puehringer authored Mar 8, 2024
2 parents 4e7536a + 81c9675 commit 2658cea
Show file tree
Hide file tree
Showing 11 changed files with 1,047 additions and 16 deletions.
4 changes: 2 additions & 2 deletions 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.0.0",
"version": "9.1.0",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
Expand Down Expand Up @@ -103,7 +103,7 @@
"d3v7": "npm:d3@^7.4.0",
"i18next": "^22.4.15",
"jstat": "^1.9.6",
"lineupjs": "4.9.0",
"lineupjs": "4.10.0",
"lodash": "~4.17.20",
"plotly.js-dist-min": "~2.12.0",
"react": "~18.2.0",
Expand Down
1 change: 1 addition & 0 deletions src/app/login/UserStoreUIMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ export function AutoLoginForm({ setError, store }: IUserStoreRenderProps) {
e.stopPropagation();
login();
}}
size="sm"
>
here
</Anchor>{' '}
Expand Down
1 change: 1 addition & 0 deletions src/app/login/VisynLoginMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export function VisynLoginMenu({ watch = false }: { watch?: boolean }) {
setError(null);
retryGetStores();
}}
size="sm"
>
Try again
</Anchor>
Expand Down
12 changes: 10 additions & 2 deletions src/demo/MainApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { DatavisynTaggle, VisynRanking, autosizeWithSMILESColumn } from '../rank
import { defaultBuilder } from '../ranking/EagerVisynRanking';
import { BaseVisConfig, ELabelingOptions, ENumericalColorScaleType, EScatterSelectSettings, ESupportedPlotlyVis, IScatterConfig, Vis } from '../vis';
import { iris } from '../vis/stories/irisData';
import { MyNumberScore, MySMILESScore, MyStringScore } from './scoresUtils';
import { MyCategoricalScore, MyLinkScore, MyNumberScore, MySMILESScore, MyStringScore } from './scoresUtils';
import { fetchIrisData } from '../vis/stories/fetchIrisData';

export function MainApp() {
Expand Down Expand Up @@ -66,11 +66,17 @@ export function MainApp() {
await new Promise((resolve) => setTimeout(resolve, 1000));

const data = await (() => {
if (value === 'string') {
return MyStringScore(value);
}
if (value === 'number') {
return MyNumberScore(value);
}
if (value === 'category') {
return MyStringScore(value);
return MyCategoricalScore(value);
}
if (value === 'link') {
return MyLinkScore(value);
}
if (value === 'smiles') {
return MySMILESScore(value);
Expand All @@ -83,9 +89,11 @@ export function MainApp() {
}}
rightSection={loading ? <Loader /> : null}
data={[
{ value: 'string', label: 'String' },
{ value: 'number', label: 'Number' },
{ value: 'category', label: 'Category' },
{ value: 'smiles', label: 'SMILES' },
{ value: 'link', label: 'Link' },
]}
/>

Expand Down
Loading

0 comments on commit 2658cea

Please sign in to comment.