Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/conversion check server #452

Conversation

interim17
Copy link
Contributor

@interim17 interim17 commented Dec 7, 2023

Problem

We want to ping the Octopus server to see if it is healthy before letting the user proceed too far along the auto-conversion workflow.

Closes #389

  • New feature (non-breaking change which adds functionality)

Solution

This is the front end follow up to Alli's work, which set up the health check communication between the the Viewer and Octopus.

Reviewing this PR requires a dev build of the viewer, and a local instance of Octopus running, fun! A glimpse into the future.

Style things

I did a walkthrough of the modal styling with @lynwilhelm and have her approval on it. If you look at these designs you may notice that the auto-conversion designs are old and out of sync with the most current global style guidance.

For devs in review, if something on your machine looks/behaves dramatically wrong, or is vastly different than the screen shot, please let me know, but don't be too concerned about the design brief, Lyndsay and I are in touch about it all.

Screenshot 2023-12-07 at 1 28 26 PM
Hover state:
Untitled 2

Code things

To check the server health we need to implement some logic to account for the fact that WebSocket requests don't have an automatic response if the request fails:

  • first we now store conversionStatus in state: we were already storing status for the viewer in the Viewer Branch, I'm cloning that idea in the trajectory branch to track conversion status. I don't think VIEWER_IMPORTING was sufficient for this case, and I anticipate it will be useful to have a little granularity here going forward.

configureFileConversionLogic is where the action happens:

  • check for a properly configured controller and set one up if needed

  • then we define performHealthChecks a recursive function that will send a defined number of health check requests to Octopus, the health checks include a handler for when a positive response comes back, and a net connection config.

  • a timeout waits a certain number of seconds before assuming the last check failed to get a response (would appreciate feedback on how long to wait here, thoughts in code comments)

  • each handler goes out with a requestId and each requestId is stored along with a three second timeoutId in healthCheckTimeouts

  • if a handler fires (meaning the server responded positively) we clear that set of ids from healthCheckTimeouts set healthCheckSuccesful to true and update conversionStatus to CONVERSION_SERVER_LIVE

  • if a request times out with no response and healthCheckSuccesful is still false we try again until we reach MAX_ATTEMPTS and then set conversionStatus to CONVERSION_NO_SERVER

  • this logic is triggered by the receiveFileToConvert action, which can be called with a null payload if we just want to do a health check

  • ConversionForm sends a health check on load, and then another when a file is uploaded. If the conversionStatus is negative when we click the "Next" button, the modal should be raised.

Steps to Verify:

  1. You need a dev build of the viewer installed in the website. Building from main will work. npm run build and copy the path of your viewer repo into package.json
  2. You need an Octopus instance running locally at server ip "0.0.0.0" and port 8765, I can try to help you set this up if needed, @ascibisz is a also a wiz at this.
  3. When your server is running, npm run start the website and go to http://localhost:9001/import or choose "import other file type" from the Load model menu.
  4. Select Smoldyn for your conversion engine and upload any file that ends in .txt
  5. Click next. If your server is running you should proceed to the next page, and also see a log of "conversion-server-live" in your console.
  6. To test failure, repeat steps 3-6 without running your local Octopus instance. When you click Next you should see the error modal.
  7. Similarly, if you turn octopus on between page load and file upload step, you should be able to advance.
  8. Vice versa, if octopus is not running when you load the page, but then you turn it on, and then you upload a file, it should hopefully let you advance!

@interim17 interim17 marked this pull request as ready for review December 12, 2023 16:37
@interim17 interim17 requested a review from toloudis as a code owner December 12, 2023 16:37
Co-authored-by: Peyton Lee <[email protected]>
onCancel={closeModal}
>
<p className={styles.warningText}>
{" "}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you delete these and try to figure out how to keep them from happening? Are you adding spaces while you're typing that then get converted?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've removed these and made a note for myself to look through the repo for these things and keep them from showing up.

serverIp: "0.0.0.0",
serverPort: 8765,
useOctopus: true,
secureConnection: false,
Copy link
Contributor

@meganrm meganrm Dec 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do these need to be set back afterwards to enable someone to load a networked trajectory? Or does that happen automatically

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think in production we won't need to reset these because everything will use the same Octopus backend, and we will be able to remove this config and just use the same one for everything stored at the top of the file.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

have you tested initiating the config and then trying to load a networked file afterwards?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i did although i realize now it needs a little more work.
what i tested that works: currently if you navigate to /import and then to a trajectory url like /viewer?trajFileName=endocytosis.simularium it works.

but i now realize that, navigating to that url with the back button errors out, and if you hit /import then quickly navigate away while the server check is till pending there are some status setting side effects (i.e. the load trajectory button gets disabled while on the homepage for example) so i think i need to make this a bit more sophisticated in the logic and the router.

Comment on lines 391 to 398
// Originally thought to send checks every 15 seconds,
// currently sending a flurry of checks, 3 seconds apart, 15 seconds total.
// If any come back true we assume we're good for now... this timing is arbitrary
// I reasoned a quick set of requests that can be started on page load,
// that cumulatively have enough delay to let a connection be configured
// is a better idea than a minute long period of sending checks,
// during which things could change.
// We can retrigger this as often as necessary.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a good explanation, thank you! Maybe worth shortening this comment in-code though, since this seems like a comment for GitHub/PR

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed! I'll put a TODO flag at the top to make sure to cut it down before merging.

package.json Outdated
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

npm is warning about some dependency issues. May want to run npm audit fix.

@interim17
Copy link
Contributor Author

A couple updates:

We were updating the viewer status toVIEWER_IMPORTING to disable some buttons in the app header but it was not working well because any trigger of VIEWER_ERROR status would reactive the buttons. We don't need it now that we have conversionStatus so I removed it entirely and also updated both of the status types based on @ShrimpCryptid 's feedback.

The redux initializeConversion() action is now handling the configuration and conversion so we were able to thin a little code from a few other places and it should be more semantic now. Thanks for the ongoing feedback!

@ShrimpCryptid ShrimpCryptid self-requested a review December 13, 2023 18:29
@interim17 interim17 requested a review from meganrm December 13, 2023 18:32
Comment on lines +114 to +116
disabled={
isBuffering || conversionStatus !== CONVERSION_INACTIVE
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this also be disabled when the status is SERVER_LIVE?

Copy link
Contributor Author

@interim17 interim17 Dec 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, this should be disabled if we are in any conversionStatus other than inactive

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

So currently this disables the load button if the user has the page open to the file conversion page, even if no file is selected... This is maybe because I don't have a local Octopus instance running, but the server not communicating probably shouldn't prevent users from being able to access the other import methods?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that's how ux wants it

Comment on lines 44 to +48
export type ViewerStatus =
| VIEWER_LOADING
| VIEWER_ERROR
| VIEWER_EMPTY
| VIEWER_SUCCESS
| VIEWER_IMPORTING;
| typeof VIEWER_LOADING
| typeof VIEWER_ERROR
| typeof VIEWER_EMPTY
| typeof VIEWER_SUCCESS;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: I feel like this could be an enum...?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This or the constants

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

new issue opened, will address later

@ShrimpCryptid
Copy link
Contributor

Copied over from another PR I accidentally commented on:

image
The cancel button is really faint when hovered.

image
Also, the delete button is invisible until hovering over the text filename.

Copy link
Contributor

@ShrimpCryptid ShrimpCryptid left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approving this, though I know there are more design discussions happening with UX. Feel free to re-request review if you do any other major changes.

I was able to test this locally (without Octopus) without issues, though I made a few notes about behavior and styling in the comments. It's worth having someone else who has a working Octopus install test this too.

@@ -33,10 +32,9 @@ const ConversionFileErrorModal: React.FC<ConversionFileErrorModalProps> = ({
onCancel={closeModal}
>
<div>
<div className={styles.redText}>
{" "}
<div className={styles.warningText}>
{"We're sorry, there was a problem importing your file."}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: you don't need the {"

@interim17 interim17 merged commit 3afd0e1 into 346-implement-production-autoconversion-ui Dec 23, 2023
5 checks passed
@interim17 interim17 deleted the feature/conversion-check-server branch December 23, 2023 08:06
interim17 added a commit that referenced this pull request Apr 25, 2024
* update "no trajectory loaded" text for autoconversion

* [wip] - add import to dropdown

* Created action type for converting file

* initial work on conversion form overlay

* css work setting up conversion overlay

* cleaning up code for draft PR

* Update src/components/LoadFileMenu/index.tsx

Co-authored-by: Megan Riel-Mehan <[email protected]>

* #395 initial three tasks complete

* conversion overlay conditioanlly renders

* merging changes

* removing unused done keyword

* removing unused variable declaration

* [wip] - add import to dropdown

* Created action type for converting file

* removing unused done keyword

* removing unused variable declaration

* [wip] - add import to dropdown

* removing unused variable declaration

* fix problem caused by rebase

* Merge branch 'feature/add-import-drop-down' of https://github.com/simularium/simularium-website into feature/add-conversion-form-overlay

* cleaning for draft pr and new computer

* button disabled with route method

* minor fix

* minor fixes

* worked on wro
ng branch

* grabbing templates for conversion

Co-authored-by: Megan Riel-Mehan <[email protected]>

* redux dep strings to constnats, error fix

* create success action after downloading templates

* move conversion types to own file, add types

* save file to convert in state

* delete logs and change some names in PR review

* removing comments

* pr review: bug fixes, renaming, removing logs

* initial UI work on processing overlay

* fix menu spacing

* styles and functions

* clean styling

* color tweaks

* add cancel modal

* prevent multiple upload files

* rename and streamline passing of functions

* Bump json5 from 1.0.1 to 1.0.2 (#404)

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](https://github.com/json5/json5/compare/v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update CODEOWNERS

* update version for add-to-project action

* looping playback and tooltip styling

* removing unused imports

* remove redundant actions

* remove unused values, clean up

* intial ui components

* added download functionality

* styling, adding pipe divider

* cleanup

* cleaning

* disable button during downloading

* removing comments

* use href for direct download if remote file

* use viewer getasblob method, bump viewer

* clean up comment

* removing styling typo

* removing isDownloading

* update viewer version

* remove comment

* move tooltip and unessary async

* looping playback and tooltip styling

* removing unused imports

* remove redundant actions

* remove unused values, clean up

* duplicate from merge

* intial ui components

* added download functionality

* styling, adding pipe divider

* cleanup

* cleaning

* disable button during downloading

* removing comments

* use href for direct download if remote file

* use viewer getasblob method, bump viewer

* clean up comment

* removing styling typo

* removing isDownloading

* update viewer version

* remove comment

* move tooltip and unessary async

* looping playback and tooltip styling

* removing unused imports

* remove redundant actions

* remove unused values, clean up

* looping playback and tooltip styling

* removing unused imports

* remove redundant actions

* remove unused values, clean up

* add back uprightarrow icon

* rem redundant prop names

* update lockfile

* change html tags and remove code/stylerules

* Fix/css cleanup (#428)

* consolidate css

* format doc

* Feature/file type error (#434)

* initial components

* update styling

* initial validate file function

* clean up comments

* bump viewer version

* remove comments

* reducer code for SET_CONVERSION_ENGINE

* ExtensionMap type and handler for extension check

* make warning dynamic on engine selection

* move extensionmap to conversion-data-types

* convert ternaries to short circuit

* changes to avoid typescript errors

* add comment

* convert extensionmap  from interface to type

* todo: file extensions for differenet engines

* remove ternary

Co-authored-by: Peyton Lee <[email protected]>

* back ticks to quotes

---------

Co-authored-by: meganrm <[email protected]>
Co-authored-by: Peyton Lee <[email protected]>

* Feature/conversion check server (#452)

* update viewer and instlal uuid

* add colors for text and button hover states

* update viewer panel selectors for colorchange

* remove unused import from file error modal

* server error modal and styling

* config controller and check server in redux

* add server health check to user flow

* organize imports and comments

* remove redundant variable readyToConvert

* removes unused css and fixes html tags

* alphabetize css rules

* clarifies comments on logic

* renames red text css property

* fixes typos in comments

* receive file action to trigger health check logic

* remove outdated comment

* configure previous instance if controller exists

* use warning text color variable

Co-authored-by: Megan Riel-Mehan <[email protected]>

* change red text class name to warning text

* update warning text classnames

* spacing below imports

Co-authored-by: Peyton Lee <[email protected]>

* rename convert file to initalize conversion

* replace VIEWER_IMPORTING with conversionStatus

* consolidate status type declarations

* clean up white space and add todo comment

* restore default net config after server check

* remove white space from prettier formatting

* shorten PR comment to appropriate length for code

* shut down server checks if not on conversion page

* remove more whitespace

---------

Co-authored-by: Megan Riel-Mehan <[email protected]>
Co-authored-by: Peyton Lee <[email protected]>

* Squashed commit of the following:

commit 38dda7c1349d8e044c70c839d6c8bb18eedbf34f
Author: Joe Heffernan <[email protected]>
Date:   Thu Jan 4 10:27:17 2024 -0800

    open aics homepage in new tab (#454)

commit 106935b771feebabf47c0b3912a58c7068e49ab0
Author: Joe Heffernan <[email protected]>
Date:   Tue Dec 19 11:51:35 2023 -0800

    Feature/color picker (#432)

    * initial components and styling

    * shrink checkbox to expose swatch

    * shrink chexbox to make swatch clickable

    * pass data into color swatch

    * remove unused styling

    * handleColorChange in picker

    * pass props and helders to color picker modal

    * add colorPicker to color swatch

    * types actions constants selectors for colorChanges

    * selector in viewer panel

    * preserve initial color in swatch

    * style parent swatch when children dont match

    * recent colors into redux

    * change modal to popover

    * update import

    * clean up stylesheets

    * tidy css and imports

    * bump viewer version

    * remove extra ?

    * update viewer

    * viewerpanel selector test update

    * update dependecies

    * add tests for getColorChanges

    * fix type imports in selectors

    * web app version

    * remove comment

    * consolidate colorpicker and popover

    * organize props and style rules

    * pointer on color swatch

    * formatting

    * color picker tooltip color to constant

    * swap replace for slice

    * debounce color selection

    * implement orthographic camera

    * initial styling of camera controls

    * ortho/perspective icons

    * define viewer button color variables

    * focus:hover state on home button

    * playback control styling

    * fix button exceeding border

    * orth/persp icons swapped

    * remove redundant ternary

    * rename set camera

    * audit fix (#437)

    * change check for if a file is shareable (#439)

    * change check for if a file is shareable

    * use constant for trajFileName

    * use selector instead of type guard

    * add unit test

    * remove accidental auto import

    * Update ux_issue.md (#433)

    * menu item and modal

    * removing logs

    * remove unneeded jsx fragment wrappers

    * remove commented code

    * styling update

    * remove comments

    * typo

    * prevent bg color change after click

    * Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

    * fix menus offsets (#440)

    * fix menus offsets

    * move version info

    * update viewer to 3.6.3

    * update viewer and fix types (#445)

    * 0.10.0

    * remove redunant line

    * implement orthographic camera

    * initial styling of camera controls

    * define viewer button color variables

    * focus:hover state on home button

    * playback control styling

    * orth/persp icons swapped

    * remove redundant ternary

    * install new viewer version

    * rename set camera

    * menu item and modal

    * removing logs

    * remove unneeded jsx fragment wrappers

    * remove commented code

    * styling update

    * remove comments

    * typo

    * Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

    * fix menus offsets (#440)

    * fix menus offsets

    * move version info

    * update viewer to 3.6.3

    * update viewer and fix types (#445)

    * pass down actions from model panel to picker

    * add hover state rules

    * pass in debouncedColor

    * [to undo] - local install

    * remove colorChangesMap

    * prevent color assignment on first opening picker

    * fix typing and save all color changes

    * make color change an object

    * install

    * store colors for correct rendering

    * add a done call

    * change interface

    * install viewer

    * update viewer

    * remove old style sheet

    * clean up styles and change order on parents

    * style children selection row

    * style labels

    * style sub menu better

    * clean up styles

    * revert change

    * make sure colors are consistently cased

    * fix imports

    * wip - not have popover move up

    * remove color swatch component and get color picker aligned with swatch

    * flx classnames

    * fix typo

    * fix checkall button

    * fix classname

    * make render functions for colorpicker

    * keep swatch constant until color is set, change label to "previous"

    * adjusting labels

    * Update src/components/CheckBoxTree/style.css

    Co-authored-by: Peyton Lee <[email protected]>

    * rename colors

    * sync children remove log

    * Fix/viewer imports (#453)

    * fix imports to be from the top level

    * update viewer

    * Update src/components/SharedCheckbox/style.css

    Co-authored-by: Cameron Fraser <[email protected]>

    * remove return

    * clean up styling

    * change names of checkboxtree components

    ---------

    Co-authored-by: Megan Riel-Mehan <[email protected]>
    Co-authored-by: Lyndsay <[email protected]>
    Co-authored-by: Blair Lyons <[email protected]>
    Co-authored-by: Peyton Lee <[email protected]>
    Co-authored-by: Cameron Fraser <[email protected]>

commit 7bfdc1f9a394bd67ea56f8ff40ca63b2e290fab4
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Dec 8 14:21:10 2023 -0800

    Bump @adobe/css-tools from 4.3.1 to 4.3.2 (#449)

    Bumps [@adobe/css-tools](https://github.com/adobe/css-tools) from 4.3.1 to 4.3.2.
    - [Changelog](https://github.com/adobe/css-tools/blob/main/History.md)
    - [Commits](https://github.com/adobe/css-tools/commits)

    ---
    updated-dependencies:
    - dependency-name: "@adobe/css-tools"
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 37a5fee141d3b523fb6de69642c2119a84615558
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 14:18:05 2023 -0800

    Update test-coverage.yml

commit f9267547f03c707b4cf3c91130658b78e35da67c
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 14:15:46 2023 -0800

    Update test-coverage.yml

commit 16de0a0461fb7e9107fa1e0ea3bda52472e83aaa
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Dec 8 14:03:32 2023 -0800

    Bump axios from 0.21.4 to 1.6.0 (#447)

    Bumps [axios](https://github.com/axios/axios) from 0.21.4 to 1.6.0.
    - [Release notes](https://github.com/axios/axios/releases)
    - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
    - [Commits](https://github.com/axios/axios/compare/v0.21.4...v1.6.0)

    ---
    updated-dependencies:
    - dependency-name: axios
      dependency-type: direct:production
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: meganrm <[email protected]>

commit 8fad286617be73b7b03ac9b108c8b2eef1bc203d
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 13:53:25 2023 -0800

    check if it's a dependabot PR (#450)

commit 4d149c8b99e72959d9ac2ff001efc5cf314d9661
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 4 13:35:30 2023 -0800

    Bump @babel/traverse from 7.20.5 to 7.23.2 (#442)

    Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.20.5 to 7.23.2.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-traverse)

    ---
    updated-dependencies:
    - dependency-name: "@babel/traverse"
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit b432dff1b97833e5bfc94e9b5cac7dc0fbb19711
Author: Joe Heffernan <[email protected]>
Date:   Wed Nov 29 13:34:18 2023 -0800

    Fix/share download styling (#448)

    * add color

    * remove pipe and fix button order

    * fix download button styling

    * fix share button styling

    * remove whitespace

    * change hover state selector to sync with tooltip

    * turn functions to boolean constants

    * streamline tooltip constants

    * move btn styles to appheader

commit c6eaea3d3c81c88c240ee1e8c1e4825d8fe5545e
Author: Blair Lyons <[email protected]>
Date:   Mon Oct 23 11:06:47 2023 -0700

    0.10.0

commit f13dcb01b32c16f2d0f5853c7f890ab566a06244
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Oct 20 12:46:48 2023 -0700

    update viewer and fix types (#445)

commit 4baff29420c6a06647a08b5c57e64ad88ad09a86
Author: Blair Lyons <[email protected]>
Date:   Thu Oct 19 14:49:46 2023 -0700

    update viewer to 3.6.3

commit ca5ac248433cc26a66fa09a546332cae8d80c2b5
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Oct 16 10:41:45 2023 -0700

    fix menus offsets (#440)

    * fix menus offsets

    * move version info

commit 244e7268c91a42d2dcfb9da61bc28f2b6b423689
Merge: 60326cf 836510a
Author: Joe Heffernan <[email protected]>
Date:   Wed Oct 11 13:32:07 2023 -0700

    Merge pull request #423 from simularium/feature/version-info

    Feature/version info

commit 836510a92366a61ef1dbc455f17838f92a638322
Author: Joe Heffernan <[email protected]>
Date:   Wed Oct 11 11:47:54 2023 -0700

    Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

commit caac57be991dc3dfaf79ff426e13ba6854c6ab03
Author: Joe Heffernan <[email protected]>
Date:   Tue Oct 10 12:51:42 2023 -0700

    prevent bg color change after click

commit 23be0d4f7ed526a3853889940727a9dd21cbbc19
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 15:27:12 2023 -0700

    typo

commit 141b0370f42b3ee2b4345d56fe2e4db9e6fff2ab
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:34:44 2023 -0700

    remove comments

commit 8dcccc1a3688e7528923670aa8f0611ae7283376
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:34:28 2023 -0700

    styling update

commit 4c215c7ab876e546ec546b3712d88a83cfa79393
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:14:01 2023 -0700

    remove commented code

commit 72c2e8d2ab548ee36829775a608e0dda5d3116f4
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:10:35 2023 -0700

    remove unneeded jsx fragment wrappers

commit dcff5c8b8fd4842b72e53e100c76e1b79d23c178
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 11:27:55 2023 -0700

    removing logs

commit 3e9d57898ff065c37ea5bc2dcacf9deda19442af
Author: Joe Heffernan <[email protected]>
Date:   Tue May 23 10:56:42 2023 -0700

    menu item and modal

commit 60326cfa9649737d21bae5388626c5fd1bfa0d65
Author: Lyndsay <[email protected]>
Date:   Mon Oct 9 12:57:20 2023 -0700

    Update ux_issue.md (#433)

commit 72f1a233d73b64eabc86b30426cace6c727bee2c
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Oct 9 12:57:08 2023 -0700

    change check for if a file is shareable (#439)

    * change check for if a file is shareable

    * use constant for trajFileName

    * use selector instead of type guard

    * add unit test

    * remove accidental auto import

commit 67f2f582cffb3537bd1d47ad37caf0866f1137bf
Author: Megan Riel-Mehan <[email protected]>
Date:   Thu Oct 5 13:28:50 2023 -0700

    audit fix (#437)

commit af14d0126f590813ee1afab5ec39ad1b91727235
Merge: 1314eed a78dee4
Author: Joe Heffernan <[email protected]>
Date:   Fri Sep 8 14:50:10 2023 -0700

    Merge pull request #430 from simularium/feature/orthographic-ui

    Feature/orthographic UI

commit a78dee40c3be10ee554e2e13e0aef260845d4775
Author: Joe Heffernan <[email protected]>
Date:   Fri Sep 8 09:21:09 2023 -0700

    rename set camera

commit 49598cce511597bd3a4e0c15d55349f20ffb5226
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 28 19:00:29 2023 -0700

    install new viewer version

commit d5b84407f5bcb81e3d7391b14ee69d286a0d4924
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 17 16:16:45 2023 -0700

    remove redundant ternary

commit aa0fc41db95e9c76ee400f8f8a236d9acc23bd02
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 17 16:15:09 2023 -0700

    orth/persp icons swapped

commit 1b92d704738a9cee82e5b102f46890790d72d23c
Author: Joe Heffernan <[email protected]>
Date:   Wed Aug 16 13:50:33 2023 -0700

    fix button exceeding border

commit 4969ca95427ba0ba1901cd8950eab975cd28a636
Merge: 29137a3 1314eed
Author: Joe Heffernan <[email protected]>
Date:   Wed Aug 16 13:28:05 2023 -0700

    Merge branch 'main' into feature/orthographic-ui
    merging main

commit 29137a35c6bc9bc8b03c2da7c639da36d390a3ed
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 14 13:01:55 2023 -0700

    playback control styling

commit 8756d054f27ed2c5e14af0d2f0f9410e81a9dd53
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 14 13:00:59 2023 -0700

    focus:hover state on home button

commit 4506ce9a66fd55978cbdc27d4bf08dbacce98fcb
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:26:56 2023 -0700

    define viewer button color variables

commit f3cc830f8f9aa341b57a7da9459ab2cbab7d63ed
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:25:50 2023 -0700

    ortho/perspective icons

commit b23d847486f97313b163895ca4fdd28014e9ea7a
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:25:26 2023 -0700

    initial styling of camera controls

commit fab18400bbefc0d77ec38c9654abd061da539b7f
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:23:15 2023 -0700

    implement orthographic camera

commit 1314eed2438057c99f4781aea5701ae030073435
Merge: 2c949aa b9c37b2
Author: Joe Heffernan <[email protected]>
Date:   Thu Jul 20 16:37:06 2023 -0700

    Merge pull request #424 from simularium/feature/share-time-url

    Feature/share time url

commit b9c37b25a5b0b204b038bc30f3273462667b6f4c
Author: Joe Heffernan <[email protected]>
Date:   Thu Jul 20 13:19:13 2023 -0700

    tooltip handler edit, fix alignment on time input

commit 2c949aa0dd71ddd3910a7b388ae31dcf67d4677e
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Jul 17 14:56:28 2023 -0700

    Update CODEOWNERS

commit 81bce369c106e6c1988086b36c98667297e917f5
Author: Megan Riel-Mehan <[email protected]>
Date:   Tue Jul 11 16:17:20 2023 -0700

    change gh-deploy to be a dev build (#426)

commit 01468c302c6036a6b2f8e1f94912cd5514367c23
Author: Megan Riel-Mehan <[email protected]>
Date:   Tue Jul 11 16:17:03 2023 -0700

    Update CONTRIBUTING.md (#425)

commit 5ad5660739b4d9146248ef761373c4a45d81c725
Merge: 0b79159 5dda5da
Author: meganrm <[email protected]>
Date:   Tue Jun 27 17:41:25 2023 -0700

    Merge branch 'feature/share-time-url' of https://github.com/simularium/simularium-website into feature/share-time-url

commit 0b791599d674a611fc8b51e723459cdb476253cf
Author: meganrm <[email protected]>
Date:   Tue Jun 27 17:41:18 2023 -0700

    reduce annotations

commit 5dda5da83e2ce5916053e73c6db3221f9be5ae5c
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 15:13:51 2023 -0700

    update return type receiveTimeChange

commit 5113dfe6354ca147638230ad1a826749089df6df
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 13:57:59 2023 -0700

    update test

commit 1e226e8568f770b1da7bb55de34c91637f45988e
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 13:48:29 2023 -0700

    test for editUrlParams and clean up

commit b93f789f62b53ff63071d1fefc1efc2de04990fd
Author: meganrm <[email protected]>
Date:   Tue Jun 27 12:19:00 2023 -0700

    changed names of functions

commit 6dfe513646e789a4e1b974c27baa0d94b276db79
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:58:00 2023 -0700

    gh actions from ubuntu to macos

commit 1d1b73acbb480ab348ef122ac73e9bae5496b789
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:57:14 2023 -0700

    add jest coverage reporters

commit 9a62549b0ac8603734d1dc8f9e8d83c6a53460cf
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:50:41 2023 -0700

    update jest

commit d58b4c6d8140ded3934014caf0bec8a5a2bf97b8
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:48:56 2023 -0700

    update jest coverage

commit 0da60eba553c7963e7dc1da32cac2835d0c6614e
Author: Joe Heffernan <[email protected]>
Date:   Mon Jun 26 12:15:10 2023 -0700

    ternary -> object, styling names, add href

commit b0f81cef84ae7de2b29cc537d132a5305e33f521
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 23 15:17:45 2023 -0700

    initial unit test

commit ecb0b9af9424f61628ab905d14c813490be407bd
Merge: fb2a54f 918556c
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:48:15 2023 -0700

    Merge branch 'main' into feature/share-time-url

commit fb2a54fd82bbaabe469777d48d4e05f7e893a347
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:11:04 2023 -0700

    space share and download buttons

commit 0245f777780f49d9f228313ce194c347904f985a
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:07:33 2023 -0700

    move tooltip

commit f92904682d012882b6c4da3263716d0e07f5d308
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 04deea2157e7f2a24f1784bb5401629955c1c6a2
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit ee811e772efbd977f06c0a0c6a4684a1946f4ffc
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit 9e177810a6ba3ef44bb156dcf953bc45e0ce45aa
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit 2166dc1d9bdcf5b6758990b74cad2cd9f6d38a3b
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 820afcab6247673362326e568b893e83dc1d59f6
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit ce60a9d48719915b05311eada47c512983952487
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit 41ea8875e6f5389cc0007951b2e1c827ee35d577
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit 305955e3752d46981780046fdb9fee9ab27c68b8
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 20 15:48:53 2023 -0700

    move tooltip and unessary async

commit 6b21353a71def1829d825ac62613aa74f4d9cdac
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:06:24 2023 -0700

    remove comment

commit f794da1d1ceb797420f074ca3843df286299a429
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:41:10 2023 -0700

    removing isDownloading

commit 70db90b4cd5951d005a30bd0b94e3222d5b64d19
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:29:04 2023 -0700

    removing styling typo

commit 5b516c044054ef0fa9046c21fc2047e9ae026449
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 11:29:15 2023 -0700

    clean up comment

commit 8c2ac5e02225ff63e0cba32f6006fbc8f80f87aa
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 10:36:47 2023 -0700

    use viewer getasblob method, bump viewer

commit a1dfdb1d9e774e79a1bf9cacd765e59f62ece676
Author: Megan Riel-Mehan <[email protected]>
Date:   Thu May 18 22:23:10 2023 +0000

    use href for direct download if remote file

commit b2e1bad5aaeb4d23454e539667c73250199bf62d
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:56:07 2023 -0700

    removing comments

commit 8ff2ad88358540251c55d21610ef599913342489
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:51:47 2023 -0700

    disable button during downloading

commit 4448920df8e72875244e14f3c44b7c3a0a5fdd53
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:04:22 2023 -0700

    cleaning

commit 2a7b3d18da5b9df45ff4ac2bddf4806bb060b8f9
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:03:06 2023 -0700

    cleanup

commit 00fcfb43689221e1725e0413679161c4753e3f07
Author: Joe Heffernan <[email protected]>
Date:   Thu May 4 11:53:55 2023 -0700

    styling, adding pipe divider

commit dbd6322e7de895ce4779716e6b3afd5fbab31c89
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 14:04:03 2023 -0700

    added download functionality

commit 13d0057ef7ee76beb57b5895fae42b015567f438
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 09:15:09 2023 -0700

    intial ui components

commit 918556ca7c6d40c8637ceaaf9d01ff77ccd9ed3d
Merge: 0749f1a f995097
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 09:12:17 2023 -0700

    Merge pull request #422 from simularium/feature/download-trajectory

    Feature/download trajectory

commit f99509782c90e51caf8cf78517c691ab3de77f7f
Merge: 39a70ca 0749f1a
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 09:09:55 2023 -0700

    Merge branch 'main' into feature/download-trajectory

commit 39a70cad2a44f4bdb6e6ef2eddf85599b71bddb7
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 8319dc779d2cf137aff0e7f5c4757c2cb34abf4e
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit 054e67082861884e502f3033744dba9ba1d4dd3e
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit cec3e9b962543131f7d07302c8b2c100c31c3b3f
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit bb103348d65bc9c1bb52fc3317da62fa206e6fe7
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 20 15:48:53 2023 -0700

    move tooltip and unessary async

commit 79938891b2d395ccc96bc451294982c0d74ad5e6
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 15:24:34 2023 -0700

    remove redundant action from reducer

commit 67a2a63d92d149796577d4ad07ae1ab001db84fc
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 15:22:33 2023 -0700

    remove blue text class

commit 225ebfd1395622c5b5a27e7b721c787c3f08ecc3
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 14:52:42 2023 -0700

    shift style rules, add light theme, remove buffer

commit 0749f1aba62d01e67e9fd0597acff8c35bcc9796
Merge: cc135e8 ac22916
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 15:58:13 2023 -0700

    Merge pull request #417 from simularium/feature/updated-looping-playback

    looping playback and tooltip styling

commit 96eca5c5ea728864f9b06f72fed6cc3ec3dcf919
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 10:30:15 2023 -0700

    clean up

commit f2ba682ece52baa2b4e3e8a9748976e600a10a5b
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 10:09:16 2023 -0700

    consolidate redundant functions

commit 57c1e4ec760608af66a43dfe5fc051249d7068a0
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 09:56:47 2023 -0700

    move clear and rest params to utils

commit b5a9bbe0e8c9d8f548e363cfd6e199d2a0bb5214
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 17:37:34 2023 -0700

    clear old params before setting url

commit 8f668d6aa689bc9cefec45223c1265ba58f427fc
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 13:54:24 2023 -0700

    cleaning

commit 7a954ca0fdc7449e5b6641d23733be5374a6db21
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 13:52:52 2023 -0700

    mapping prop to dispatch

commit 8b8aa1b56518b4a8379d3e8e0c2f83bd39e2d828
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 10:22:02 2023 -0700

    update viewer

commit c8bb39919f303dac6a575a5c2f032ac8c6fc59bb
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:06:24 2023 -0700

    remove comment

commit 164a6c0e7e35793fc809a4b003efd3bd16c5669c
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:02:57 2023 -0700

    remove unused imports

commit 3a8920090074be8989d7e26a56c4cd98bf3e6025
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:00:09 2023 -0700

    hover styling

commit 63013b0ba79a0f86eb6faa486c317a1cb87d3672
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:17:22 2023 -0700

    nested ternary -> if/else

commit ac22916ede152783b20d6daea533708afd79cc64
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 903c09ef28f09b4d764387c630f494840f51d88f
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 6 16:25:41 2023 -0700

    add util func, move logic trigger to viewer panel

    Co-authored-by: Megan Riel-Mehan <[email protected]>

commit c1d63648b33f26239bc0c6dbcf10c8ab40d3fe29
Author: Joe Heffernan <[email protected]>
Date:   Mon Jun 5 09:09:44 2023 -0700

    update viewer version

commit 48537b5658b6097bd676af4927a1219fbfe681a8
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:41:10 2023 -0700

    removing isDownloading

commit e14f33214b9686cafc3efab3c20f250ee1f1d583
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:29:04 2023 -0700

    removing styling typo

commit c87f78b4ec209ee227b70be3925774fb1c75d715
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 11:29:15 2023 -0700

    clean up comment

commit d2f56914693f27febf85353816c13bd1dc70d15d
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 10:36:47 2023 -0700

    use viewer getasblob method, bump viewer

commit 73bba1a3917ec6a39e38422cb1f1d8a1110a1b6d
Author: Joe Heffernan <[email protected]>
Date:   Wed May 31 10:58:46 2023 -0700

    update viewer

commit e5a1a701236c89ee8d389591cc941a2c13cb08dc
Author: Joe Heffernan <[email protected]>
Date:   Tue May 23 15:09:04 2023 -0700

    refactor to use displayTimes

commit 43913670e5f6ad460c6785a8a92cdb09be086612
Author: Joe Heffernan <[email protected]>
Date:   Mon May 22 13:06:31 2023 -0700

    truncating decimals in url

commit c06702d8efd9f681b727c2c38eac090a22f70836
Author: Joe Heffernan <[email protected]>
Date:   Fri May 19 14:53:02 2023 -0700

    rename components and clean up functions

commit 6a5ed732537cef510276bb47002601416ce741de
Author: Megan Riel-Mehan <[email protected]>
Date:   Thu May 18 22:23:10 2023 +0000

    use href for direct download if remote file

commit 9e50b00371b6d0edd98f266ac83c233154551932
Author: Joe Heffernan <[email protected]>
Date:   Thu May 18 13:18:43 2023 -0700

    ui components for share time in url

commit 12836f56003ddd94a6aadd28e222321ea16f9a80
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:56:07 2023 -0700

    removing comments

commit d6ebc41a3d198bfa8555b20361215301f585176d
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit 84b3681848c758bf7fb686240eda0b815185845e
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:51:47 2023 -0700

    disable button during downloading

commit 6a14428d4d4f2910a970f4b235b5f56966b4a7f6
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:04:22 2023 -0700

    cleaning

commit 2faf8d2f441f470587b425f6fb5cdb55b9cbb76e
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:03:06 2023 -0700

    cleanup

commit e318c4df11cad4f3620a135cbb6af2566cc55c2c
Author: Joe Heffernan <[email protected]>
Date:   Thu May 4 11:53:55 2023 -0700

    styling, adding pipe divider

commit 3538d1f15a7769f9c5f4aee54fc5db98b533e685
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 14:04:03 2023 -0700

    added download functionality

commit 57b5c1f6c656de73a04e8b7f2ad9eecd199e28bf
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 09:15:09 2023 -0700

    intial ui components

commit f320abe8ea3d6af93839ddd7fe244e6f7eab1960
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit 0221067a635450acdef9bcbf335f30b4a80e40df
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit cc135e814a78a547edef31bcee688c35e9068112
Author: ascibisz <[email protected]>
Date:   Fri Apr 21 13:53:12 2023 -0700

    update version for add-to-project action

commit ec1b5f0f741f6abab276736f913d4e388698f21a
Author: Megan Riel-Mehan <[email protected]>
Date:   Tue Apr 18 12:13:10 2023 -0700

    Update CODEOWNERS

commit dbe5b585a8a6e56d383cc38ee1f73a40c705e484
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Apr 10 11:07:06 2023 -0700

    Bump json5 from 1.0.1 to 1.0.2 (#404)

    Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
    - [Release notes](https://github.com/json5/json5/releases)
    - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/json5/json5/compare/v1.0.1...v1.0.2)

    ---
    updated-dependencies:
    - dependency-name: json5
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Squashed commit of the following:

commit f3527626a0e12b131ef7c551785e6f95cbbf6b95
Author: Joe Heffernan <[email protected]>
Date:   Wed Feb 14 17:42:55 2024 -0800

    Fix/bump react (#461)

    * bump react, react-waypoint, react dom, @types/react

    * declare children in sider and upload props for react 18 compatibility

    * bump @types/react-dom

    * use createRoot API to render App

    * commit lock file

    * bump to viewer 3.7.0 with react 18

    * use non-null assertion on container in createRoot call

commit 39a6f7b7e63206bf842d9f74b6f8098d4973c86c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jan 29 19:28:31 2024 -0800

    Bump follow-redirects from 1.15.2 to 1.15.4 (#460)

    Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.2 to 1.15.4.
    - [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
    - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.2...v1.15.4)

    ---
    updated-dependencies:
    - dependency-name: follow-redirects
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 6b26307fb3ea8151e2718f95e01047da67ed5db3
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jan 29 19:28:19 2024 -0800

    Bump plotly.js from 2.20.0 to 2.25.2 (#457)

    Bumps [plotly.js](https://github.com/plotly/plotly.js) from 2.20.0 to 2.25.2.
    - [Release notes](https://github.com/plotly/plotly.js/releases)
    - [Changelog](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/plotly/plotly.js/compare/v2.20.0...v2.25.2)

    ---
    updated-dependencies:
    - dependency-name: plotly.js
      dependency-type: direct:production
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 38dda7c1349d8e044c70c839d6c8bb18eedbf34f
Author: Joe Heffernan <[email protected]>
Date:   Thu Jan 4 10:27:17 2024 -0800

    open aics homepage in new tab (#454)

commit 106935b771feebabf47c0b3912a58c7068e49ab0
Author: Joe Heffernan <[email protected]>
Date:   Tue Dec 19 11:51:35 2023 -0800

    Feature/color picker (#432)

    * initial components and styling

    * shrink checkbox to expose swatch

    * shrink chexbox to make swatch clickable

    * pass data into color swatch

    * remove unused styling

    * handleColorChange in picker

    * pass props and helders to color picker modal

    * add colorPicker to color swatch

    * types actions constants selectors for colorChanges

    * selector in viewer panel

    * preserve initial color in swatch

    * style parent swatch when children dont match

    * recent colors into redux

    * change modal to popover

    * update import

    * clean up stylesheets

    * tidy css and imports

    * bump viewer version

    * remove extra ?

    * update viewer

    * viewerpanel selector test update

    * update dependecies

    * add tests for getColorChanges

    * fix type imports in selectors

    * web app version

    * remove comment

    * consolidate colorpicker and popover

    * organize props and style rules

    * pointer on color swatch

    * formatting

    * color picker tooltip color to constant

    * swap replace for slice

    * debounce color selection

    * implement orthographic camera

    * initial styling of camera controls

    * ortho/perspective icons

    * define viewer button color variables

    * focus:hover state on home button

    * playback control styling

    * fix button exceeding border

    * orth/persp icons swapped

    * remove redundant ternary

    * rename set camera

    * audit fix (#437)

    * change check for if a file is shareable (#439)

    * change check for if a file is shareable

    * use constant for trajFileName

    * use selector instead of type guard

    * add unit test

    * remove accidental auto import

    * Update ux_issue.md (#433)

    * menu item and modal

    * removing logs

    * remove unneeded jsx fragment wrappers

    * remove commented code

    * styling update

    * remove comments

    * typo

    * prevent bg color change after click

    * Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

    * fix menus offsets (#440)

    * fix menus offsets

    * move version info

    * update viewer to 3.6.3

    * update viewer and fix types (#445)

    * 0.10.0

    * remove redunant line

    * implement orthographic camera

    * initial styling of camera controls

    * define viewer button color variables

    * focus:hover state on home button

    * playback control styling

    * orth/persp icons swapped

    * remove redundant ternary

    * install new viewer version

    * rename set camera

    * menu item and modal

    * removing logs

    * remove unneeded jsx fragment wrappers

    * remove commented code

    * styling update

    * remove comments

    * typo

    * Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

    * fix menus offsets (#440)

    * fix menus offsets

    * move version info

    * update viewer to 3.6.3

    * update viewer and fix types (#445)

    * pass down actions from model panel to picker

    * add hover state rules

    * pass in debouncedColor

    * [to undo] - local install

    * remove colorChangesMap

    * prevent color assignment on first opening picker

    * fix typing and save all color changes

    * make color change an object

    * install

    * store colors for correct rendering

    * add a done call

    * change interface

    * install viewer

    * update viewer

    * remove old style sheet

    * clean up styles and change order on parents

    * style children selection row

    * style labels

    * style sub menu better

    * clean up styles

    * revert change

    * make sure colors are consistently cased

    * fix imports

    * wip - not have popover move up

    * remove color swatch component and get color picker aligned with swatch

    * flx classnames

    * fix typo

    * fix checkall button

    * fix classname

    * make render functions for colorpicker

    * keep swatch constant until color is set, change label to "previous"

    * adjusting labels

    * Update src/components/CheckBoxTree/style.css

    Co-authored-by: Peyton Lee <[email protected]>

    * rename colors

    * sync children remove log

    * Fix/viewer imports (#453)

    * fix imports to be from the top level

    * update viewer

    * Update src/components/SharedCheckbox/style.css

    Co-authored-by: Cameron Fraser <[email protected]>

    * remove return

    * clean up styling

    * change names of checkboxtree components

    ---------

    Co-authored-by: Megan Riel-Mehan <[email protected]>
    Co-authored-by: Lyndsay <[email protected]>
    Co-authored-by: Blair Lyons <[email protected]>
    Co-authored-by: Peyton Lee <[email protected]>
    Co-authored-by: Cameron Fraser <[email protected]>

commit 7bfdc1f9a394bd67ea56f8ff40ca63b2e290fab4
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Dec 8 14:21:10 2023 -0800

    Bump @adobe/css-tools from 4.3.1 to 4.3.2 (#449)

    Bumps [@adobe/css-tools](https://github.com/adobe/css-tools) from 4.3.1 to 4.3.2.
    - [Changelog](https://github.com/adobe/css-tools/blob/main/History.md)
    - [Commits](https://github.com/adobe/css-tools/commits)

    ---
    updated-dependencies:
    - dependency-name: "@adobe/css-tools"
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 37a5fee141d3b523fb6de69642c2119a84615558
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 14:18:05 2023 -0800

    Update test-coverage.yml

commit f9267547f03c707b4cf3c91130658b78e35da67c
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 14:15:46 2023 -0800

    Update test-coverage.yml

commit 16de0a0461fb7e9107fa1e0ea3bda52472e83aaa
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Dec 8 14:03:32 2023 -0800

    Bump axios from 0.21.4 to 1.6.0 (#447)

    Bumps [axios](https://github.com/axios/axios) from 0.21.4 to 1.6.0.
    - [Release notes](https://github.com/axios/axios/releases)
    - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
    - [Commits](https://github.com/axios/axios/compare/v0.21.4...v1.6.0)

    ---
    updated-dependencies:
    - dependency-name: axios
      dependency-type: direct:production
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: meganrm <[email protected]>

commit 8fad286617be73b7b03ac9b108c8b2eef1bc203d
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 13:53:25 2023 -0800

    check if it's a dependabot PR (#450)

commit 4d149c8b99e72959d9ac2ff001efc5cf314d9661
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 4 13:35:30 2023 -0800

    Bump @babel/traverse from 7.20.5 to 7.23.2 (#442)

    Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.20.5 to 7.23.2.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-traverse)

    ---
    updated-dependencies:
    - dependency-name: "@babel/traverse"
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit b432dff1b97833e5bfc94e9b5cac7dc0fbb19711
Author: Joe Heffernan <[email protected]>
Date:   Wed Nov 29 13:34:18 2023 -0800

    Fix/share download styling (#448)

    * add color

    * remove pipe and fix button order

    * fix download button styling

    * fix share button styling

    * remove whitespace

    * change hover state selector to sync with tooltip

    * turn functions to boolean constants

    * streamline tooltip constants

    * move btn styles to appheader

commit c6eaea3d3c81c88c240ee1e8c1e4825d8fe5545e
Author: Blair Lyons <[email protected]>
Date:   Mon Oct 23 11:06:47 2023 -0700

    0.10.0

commit f13dcb01b32c16f2d0f5853c7f890ab566a06244
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Oct 20 12:46:48 2023 -0700

    update viewer and fix types (#445)

commit 4baff29420c6a06647a08b5c57e64ad88ad09a86
Author: Blair Lyons <[email protected]>
Date:   Thu Oct 19 14:49:46 2023 -0700

    update viewer to 3.6.3

commit ca5ac248433cc26a66fa09a546332cae8d80c2b5
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Oct 16 10:41:45 2023 -0700

    fix menus offsets (#440)

    * fix menus offsets

    * move version info

commit 244e7268c91a42d2dcfb9da61bc28f2b6b423689
Merge: 60326cf 836510a
Author: Joe Heffernan <[email protected]>
Date:   Wed Oct 11 13:32:07 2023 -0700

    Merge pull request #423 from simularium/feature/version-info

    Feature/version info

commit 836510a92366a61ef1dbc455f17838f92a638322
Author: Joe Heffernan <[email protected]>
Date:   Wed Oct 11 11:47:54 2023 -0700

    Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

commit caac57be991dc3dfaf79ff426e13ba6854c6ab03
Author: Joe Heffernan <[email protected]>
Date:   Tue Oct 10 12:51:42 2023 -0700

    prevent bg color change after click

commit 23be0d4f7ed526a3853889940727a9dd21cbbc19
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 15:27:12 2023 -0700

    typo

commit 141b0370f42b3ee2b4345d56fe2e4db9e6fff2ab
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:34:44 2023 -0700

    remove comments

commit 8dcccc1a3688e7528923670aa8f0611ae7283376
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:34:28 2023 -0700

    styling update

commit 4c215c7ab876e546ec546b3712d88a83cfa79393
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:14:01 2023 -0700

    remove commented code

commit 72c2e8d2ab548ee36829775a608e0dda5d3116f4
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:10:35 2023 -0700

    remove unneeded jsx fragment wrappers

commit dcff5c8b8fd4842b72e53e100c76e1b79d23c178
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 11:27:55 2023 -0700

    removing logs

commit 3e9d57898ff065c37ea5bc2dcacf9deda19442af
Author: Joe Heffernan <[email protected]>
Date:   Tue May 23 10:56:42 2023 -0700

    menu item and modal

commit 60326cfa9649737d21bae5388626c5fd1bfa0d65
Author: Lyndsay <[email protected]>
Date:   Mon Oct 9 12:57:20 2023 -0700

    Update ux_issue.md (#433)

commit 72f1a233d73b64eabc86b30426cace6c727bee2c
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Oct 9 12:57:08 2023 -0700

    change check for if a file is shareable (#439)

    * change check for if a file is shareable

    * use constant for trajFileName

    * use selector instead of type guard

    * add unit test

    * remove accidental auto import

commit 67f2f582cffb3537bd1d47ad37caf0866f1137bf
Author: Megan Riel-Mehan <[email protected]>
Date:   Thu Oct 5 13:28:50 2023 -0700

    audit fix (#437)

commit af14d0126f590813ee1afab5ec39ad1b91727235
Merge: 1314eed a78dee4
Author: Joe Heffernan <[email protected]>
Date:   Fri Sep 8 14:50:10 2023 -0700

    Merge pull request #430 from simularium/feature/orthographic-ui

    Feature/orthographic UI

commit a78dee40c3be10ee554e2e13e0aef260845d4775
Author: Joe Heffernan <[email protected]>
Date:   Fri Sep 8 09:21:09 2023 -0700

    rename set camera

commit 49598cce511597bd3a4e0c15d55349f20ffb5226
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 28 19:00:29 2023 -0700

    install new viewer version

commit d5b84407f5bcb81e3d7391b14ee69d286a0d4924
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 17 16:16:45 2023 -0700

    remove redundant ternary

commit aa0fc41db95e9c76ee400f8f8a236d9acc23bd02
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 17 16:15:09 2023 -0700

    orth/persp icons swapped

commit 1b92d704738a9cee82e5b102f46890790d72d23c
Author: Joe Heffernan <[email protected]>
Date:   Wed Aug 16 13:50:33 2023 -0700

    fix button exceeding border

commit 4969ca95427ba0ba1901cd8950eab975cd28a636
Merge: 29137a3 1314eed
Author: Joe Heffernan <[email protected]>
Date:   Wed Aug 16 13:28:05 2023 -0700

    Merge branch 'main' into feature/orthographic-ui
    merging main

commit 29137a35c6bc9bc8b03c2da7c639da36d390a3ed
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 14 13:01:55 2023 -0700

    playback control styling

commit 8756d054f27ed2c5e14af0d2f0f9410e81a9dd53
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 14 13:00:59 2023 -0700

    focus:hover state on home button

commit 4506ce9a66fd55978cbdc27d4bf08dbacce98fcb
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:26:56 2023 -0700

    define viewer button color variables

commit f3cc830f8f9aa341b57a7da9459ab2cbab7d63ed
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:25:50 2023 -0700

    ortho/perspective icons

commit b23d847486f97313b163895ca4fdd28014e9ea7a
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:25:26 2023 -0700

    initial styling of camera controls

commit fab18400bbefc0d77ec38c9654abd061da539b7f
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:23:15 2023 -0700

    implement orthographic camera

commit 1314eed2438057c99f4781aea5701ae030073435
Merge: 2c949aa b9c37b2
Author: Joe Heffernan <[email protected]>
Date:   Thu Jul 20 16:37:06 2023 -0700

    Merge pull request #424 from simularium/feature/share-time-url

    Feature/share time url

commit b9c37b25a5b0b204b038bc30f3273462667b6f4c
Author: Joe Heffernan <[email protected]>
Date:   Thu Jul 20 13:19:13 2023 -0700

    tooltip handler edit, fix alignment on time input

commit 2c949aa0dd71ddd3910a7b388ae31dcf67d4677e
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Jul 17 14:56:28 2023 -0700

    Update CODEOWNERS

commit 81bce369c106e6c1988086b36c98667297e917f5
Author: Megan Riel-Mehan <[email protected]>
Date:   Tue Jul 11 16:17:20 2023 -0700

    change gh-deploy to be a dev build (#426)

commit 01468c302c6036a6b2f8e1f94912cd5514367c23
Author: Megan Riel-Mehan <[email protected]>
Date:   Tue Jul 11 16:17:03 2023 -0700

    Update CONTRIBUTING.md (#425)

commit 5ad5660739b4d9146248ef761373c4a45d81c725
Merge: 0b79159 5dda5da
Author: meganrm <[email protected]>
Date:   Tue Jun 27 17:41:25 2023 -0700

    Merge branch 'feature/share-time-url' of https://github.com/simularium/simularium-website into feature/share-time-url

commit 0b791599d674a611fc8b51e723459cdb476253cf
Author: meganrm <[email protected]>
Date:   Tue Jun 27 17:41:18 2023 -0700

    reduce annotations

commit 5dda5da83e2ce5916053e73c6db3221f9be5ae5c
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 15:13:51 2023 -0700

    update return type receiveTimeChange

commit 5113dfe6354ca147638230ad1a826749089df6df
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 13:57:59 2023 -0700

    update test

commit 1e226e8568f770b1da7bb55de34c91637f45988e
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 13:48:29 2023 -0700

    test for editUrlParams and clean up

commit b93f789f62b53ff63071d1fefc1efc2de04990fd
Author: meganrm <[email protected]>
Date:   Tue Jun 27 12:19:00 2023 -0700

    changed names of functions

commit 6dfe513646e789a4e1b974c27baa0d94b276db79
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:58:00 2023 -0700

    gh actions from ubuntu to macos

commit 1d1b73acbb480ab348ef122ac73e9bae5496b789
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:57:14 2023 -0700

    add jest coverage reporters

commit 9a62549b0ac8603734d1dc8f9e8d83c6a53460cf
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:50:41 2023 -0700

    update jest

commit d58b4c6d8140ded3934014caf0bec8a5a2bf97b8
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:48:56 2023 -0700

    update jest coverage

commit 0da60eba553c7963e7dc1da32cac2835d0c6614e
Author: Joe Heffernan <[email protected]>
Date:   Mon Jun 26 12:15:10 2023 -0700

    ternary -> object, styling names, add href

commit b0f81cef84ae7de2b29cc537d132a5305e33f521
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 23 15:17:45 2023 -0700

    initial unit test

commit ecb0b9af9424f61628ab905d14c813490be407bd
Merge: fb2a54f 918556c
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:48:15 2023 -0700

    Merge branch 'main' into feature/share-time-url

commit fb2a54fd82bbaabe469777d48d4e05f7e893a347
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:11:04 2023 -0700

    space share and download buttons

commit 0245f777780f49d9f228313ce194c347904f985a
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:07:33 2023 -0700

    move tooltip

commit f92904682d012882b6c4da3263716d0e07f5d308
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 04deea2157e7f2a24f1784bb5401629955c1c6a2
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit ee811e772efbd977f06c0a0c6a4684a1946f4ffc
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit 9e177810a6ba3ef44bb156dcf953bc45e0ce45aa
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit 2166dc1d9bdcf5b6758990b74cad2cd9f6d38a3b
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 820afcab6247673362326e568b893e83dc1d59f6
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit ce60a9d48719915b05311eada47c512983952487
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit 41ea8875e6f5389cc0007951b2e1c827ee35d577
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit 305955e3752d46981780046fdb9fee9ab27c68b8
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 20 15:48:53 2023 -0700

    move tooltip and unessary async

commit 6b21353a71def1829d825ac62613aa74f4d9cdac
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:06:24 2023 -0700

    remove comment

commit f794da1d1ceb797420f074ca3843df286299a429
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:41:10 2023 -0700

    removing isDownloading

commit 70db90b4cd5951d005a30bd0b94e3222d5b64d19
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:29:04 2023 -0700

    removing styling typo

commit 5b516c044054ef0fa9046c21fc2047e9ae026449
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 11:29:15 2023 -0700

    clean up comment

commit 8c2ac5e02225ff63e0cba32f6006fbc8f80f87aa
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 10:36:47 2023 -0700

    use viewer getasblob method, bump viewer

commit a1dfdb1d9e774e79a1bf9cacd765e59f62ece676
Author: Megan Riel-Mehan <[email protected]>
Date:   Thu May 18 22:23:10 2023 +0000

    use href for direct download if remote file

commit b2e1bad5aaeb4d23454e539667c73250199bf62d
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:56:07 2023 -0700

    removing comments

commit 8ff2ad88358540251c55d21610ef599913342489
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:51:47 2023 -0700

    disable button during downloading

commit 4448920df8e72875244e14f3c44b7c3a0a5fdd53
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:04:22 2023 -0700

    cleaning

commit 2a7b3d18da5b9df45ff4ac2bddf4806bb060b8f9
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:03:06 2023 -0700

    cleanup

commit 00fcfb43689221e1725e0413679161c4753e3f07
Author: Joe Heffernan <[email protected]>
Date:   Thu May 4 11:53:55 2023 -0700

    styling, adding pipe divider

commit dbd6322e7de895ce4779716e6b3afd5fbab31c89
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 14:04:03 2023 -0700

    added download functionality

commit 13d0057ef7ee76beb57b5895fae42b015567f438
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 09:15:09 2023 -0700

    intial ui components

commit 918556ca7c6d40c8637ceaaf9d01ff77ccd9ed3d
Merge: 0749f1a f995097
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 09:12:17 2023 -0700

    Merge pull request #422 from simularium/feature/download-trajectory

    Feature/download trajectory

commit f99509782c90e51caf8cf78517c691ab3de77f7f
Merge: 39a70ca 0749f1a
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 09:09:55 2023 -0700

    Merge branch 'main' into feature/download-trajectory

commit 39a70cad2a44f4bdb6e6ef2eddf85599b71bddb7
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 8319dc779d2cf137aff0e7f5c4757c2cb34abf4e
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit 054e67082861884e502f3033744dba9ba1d4dd3e
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit cec3e9b962543131f7d07302c8b2c100c31c3b3f
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit bb103348d65bc9c1bb52fc3317da62fa206e6fe7
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 20 15:48:53 2023 -0700

    move tooltip and unessary async

commit 79938891b2d395ccc96bc451294982c0d74ad5e6
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 15:24:34 2023 -0700

    remove redundant action from reducer

commit 67a2a63d92d149796577d4ad07ae1ab001db84fc
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 15:22:33 2023 -0700

    remove blue text class

commit 225ebfd1395622c5b5a27e7b721c787c3f08ecc3
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 14:52:42 2023 -0700

    shift style rules, add light theme, remove buffer

commit 0749f1aba62d01e67e9fd0597acff8c35bcc9796
Merge: cc135e8 ac22916
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 15:58:13 2023 -0700

    Merge pull request #417 from simularium/feature/updated-looping-playback

    looping playback and tooltip styling

commit 96eca5c5ea728864f9b06f72fed6cc3ec3dcf919
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 10:30:15 2023 -0700

    clean up

commit f2ba682ece52baa2b4e3e8a9748976e600a10a5b
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 10:09:16 2023 -0700

    consolidate redundant functions

commit 57c1e4ec760608af66a43dfe5fc051249d7068a0
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 09:56:47 2023 -0700

    move clear and rest params to utils

commit b5a9bbe0e8c9d8f548e363cfd6e199d2a0bb5214
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 17:37:34 2023 -0700

    clear old params before setting url

commit 8f668d6aa689bc9cefec45223c1265ba58f427fc
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 13:54:24 2023 -0700

    cleaning

commit 7a954ca0fdc7449e5b6641d23733be5374a6db21
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 13:52:52 2023 -0700

    mapping prop to dispatch

commit 8b8aa1b56518b4a8379d3e8e0c2f83bd39e2d828
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 10:22:02 2023 -0700

    update viewer

commit c8bb39919f303dac6a575a5c2f032ac8c6fc59bb
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:06:24 2023 -0700

    remove comment

commit 164a6c0e7e35793fc809a4b003efd3bd16c5669c
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:02:57 2023 -0700

    remove unused imports

commit 3a8920090074be8989d7e26a56c4cd98bf3e6025
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:00:09 2023 -0700

    hover styling

commit 63013b0ba79a0f86eb6faa486c317a1cb87d3672
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:17:…
interim17 added a commit that referenced this pull request May 23, 2024
* update "no trajectory loaded" text for autoconversion

* [wip] - add import to dropdown

* Created action type for converting file

* initial work on conversion form overlay

* css work setting up conversion overlay

* cleaning up code for draft PR

* Update src/components/LoadFileMenu/index.tsx

Co-authored-by: Megan Riel-Mehan <[email protected]>

* #395 initial three tasks complete

* conversion overlay conditioanlly renders

* merging changes

* removing unused done keyword

* removing unused variable declaration

* [wip] - add import to dropdown

* Created action type for converting file

* removing unused done keyword

* removing unused variable declaration

* [wip] - add import to dropdown

* removing unused variable declaration

* fix problem caused by rebase

* Merge branch 'feature/add-import-drop-down' of https://github.com/simularium/simularium-website into feature/add-conversion-form-overlay

* cleaning for draft pr and new computer

* button disabled with route method

* minor fix

* minor fixes

* worked on wro
ng branch

* grabbing templates for conversion

Co-authored-by: Megan Riel-Mehan <[email protected]>

* redux dep strings to constnats, error fix

* create success action after downloading templates

* move conversion types to own file, add types

* save file to convert in state

* delete logs and change some names in PR review

* removing comments

* pr review: bug fixes, renaming, removing logs

* initial UI work on processing overlay

* fix menu spacing

* styles and functions

* clean styling

* color tweaks

* add cancel modal

* prevent multiple upload files

* rename and streamline passing of functions

* Bump json5 from 1.0.1 to 1.0.2 (#404)

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](https://github.com/json5/json5/compare/v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update CODEOWNERS

* update version for add-to-project action

* looping playback and tooltip styling

* removing unused imports

* remove redundant actions

* remove unused values, clean up

* intial ui components

* added download functionality

* styling, adding pipe divider

* cleanup

* cleaning

* disable button during downloading

* removing comments

* use href for direct download if remote file

* use viewer getasblob method, bump viewer

* clean up comment

* removing styling typo

* removing isDownloading

* update viewer version

* remove comment

* move tooltip and unessary async

* looping playback and tooltip styling

* removing unused imports

* remove redundant actions

* remove unused values, clean up

* duplicate from merge

* intial ui components

* added download functionality

* styling, adding pipe divider

* cleanup

* cleaning

* disable button during downloading

* removing comments

* use href for direct download if remote file

* use viewer getasblob method, bump viewer

* clean up comment

* removing styling typo

* removing isDownloading

* update viewer version

* remove comment

* move tooltip and unessary async

* looping playback and tooltip styling

* removing unused imports

* remove redundant actions

* remove unused values, clean up

* looping playback and tooltip styling

* removing unused imports

* remove redundant actions

* remove unused values, clean up

* add back uprightarrow icon

* rem redundant prop names

* update lockfile

* change html tags and remove code/stylerules

* Fix/css cleanup (#428)

* consolidate css

* format doc

* Feature/file type error (#434)

* initial components

* update styling

* initial validate file function

* clean up comments

* bump viewer version

* remove comments

* reducer code for SET_CONVERSION_ENGINE

* ExtensionMap type and handler for extension check

* make warning dynamic on engine selection

* move extensionmap to conversion-data-types

* convert ternaries to short circuit

* changes to avoid typescript errors

* add comment

* convert extensionmap  from interface to type

* todo: file extensions for differenet engines

* remove ternary

Co-authored-by: Peyton Lee <[email protected]>

* back ticks to quotes

---------

Co-authored-by: meganrm <[email protected]>
Co-authored-by: Peyton Lee <[email protected]>

* Feature/conversion check server (#452)

* update viewer and instlal uuid

* add colors for text and button hover states

* update viewer panel selectors for colorchange

* remove unused import from file error modal

* server error modal and styling

* config controller and check server in redux

* add server health check to user flow

* organize imports and comments

* remove redundant variable readyToConvert

* removes unused css and fixes html tags

* alphabetize css rules

* clarifies comments on logic

* renames red text css property

* fixes typos in comments

* receive file action to trigger health check logic

* remove outdated comment

* configure previous instance if controller exists

* use warning text color variable

Co-authored-by: Megan Riel-Mehan <[email protected]>

* change red text class name to warning text

* update warning text classnames

* spacing below imports

Co-authored-by: Peyton Lee <[email protected]>

* rename convert file to initalize conversion

* replace VIEWER_IMPORTING with conversionStatus

* consolidate status type declarations

* clean up white space and add todo comment

* restore default net config after server check

* remove white space from prettier formatting

* shorten PR comment to appropriate length for code

* shut down server checks if not on conversion page

* remove more whitespace

---------

Co-authored-by: Megan Riel-Mehan <[email protected]>
Co-authored-by: Peyton Lee <[email protected]>

* Squashed commit of the following:

commit 38dda7c1349d8e044c70c839d6c8bb18eedbf34f
Author: Joe Heffernan <[email protected]>
Date:   Thu Jan 4 10:27:17 2024 -0800

    open aics homepage in new tab (#454)

commit 106935b771feebabf47c0b3912a58c7068e49ab0
Author: Joe Heffernan <[email protected]>
Date:   Tue Dec 19 11:51:35 2023 -0800

    Feature/color picker (#432)

    * initial components and styling

    * shrink checkbox to expose swatch

    * shrink chexbox to make swatch clickable

    * pass data into color swatch

    * remove unused styling

    * handleColorChange in picker

    * pass props and helders to color picker modal

    * add colorPicker to color swatch

    * types actions constants selectors for colorChanges

    * selector in viewer panel

    * preserve initial color in swatch

    * style parent swatch when children dont match

    * recent colors into redux

    * change modal to popover

    * update import

    * clean up stylesheets

    * tidy css and imports

    * bump viewer version

    * remove extra ?

    * update viewer

    * viewerpanel selector test update

    * update dependecies

    * add tests for getColorChanges

    * fix type imports in selectors

    * web app version

    * remove comment

    * consolidate colorpicker and popover

    * organize props and style rules

    * pointer on color swatch

    * formatting

    * color picker tooltip color to constant

    * swap replace for slice

    * debounce color selection

    * implement orthographic camera

    * initial styling of camera controls

    * ortho/perspective icons

    * define viewer button color variables

    * focus:hover state on home button

    * playback control styling

    * fix button exceeding border

    * orth/persp icons swapped

    * remove redundant ternary

    * rename set camera

    * audit fix (#437)

    * change check for if a file is shareable (#439)

    * change check for if a file is shareable

    * use constant for trajFileName

    * use selector instead of type guard

    * add unit test

    * remove accidental auto import

    * Update ux_issue.md (#433)

    * menu item and modal

    * removing logs

    * remove unneeded jsx fragment wrappers

    * remove commented code

    * styling update

    * remove comments

    * typo

    * prevent bg color change after click

    * Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

    * fix menus offsets (#440)

    * fix menus offsets

    * move version info

    * update viewer to 3.6.3

    * update viewer and fix types (#445)

    * 0.10.0

    * remove redunant line

    * implement orthographic camera

    * initial styling of camera controls

    * define viewer button color variables

    * focus:hover state on home button

    * playback control styling

    * orth/persp icons swapped

    * remove redundant ternary

    * install new viewer version

    * rename set camera

    * menu item and modal

    * removing logs

    * remove unneeded jsx fragment wrappers

    * remove commented code

    * styling update

    * remove comments

    * typo

    * Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

    * fix menus offsets (#440)

    * fix menus offsets

    * move version info

    * update viewer to 3.6.3

    * update viewer and fix types (#445)

    * pass down actions from model panel to picker

    * add hover state rules

    * pass in debouncedColor

    * [to undo] - local install

    * remove colorChangesMap

    * prevent color assignment on first opening picker

    * fix typing and save all color changes

    * make color change an object

    * install

    * store colors for correct rendering

    * add a done call

    * change interface

    * install viewer

    * update viewer

    * remove old style sheet

    * clean up styles and change order on parents

    * style children selection row

    * style labels

    * style sub menu better

    * clean up styles

    * revert change

    * make sure colors are consistently cased

    * fix imports

    * wip - not have popover move up

    * remove color swatch component and get color picker aligned with swatch

    * flx classnames

    * fix typo

    * fix checkall button

    * fix classname

    * make render functions for colorpicker

    * keep swatch constant until color is set, change label to "previous"

    * adjusting labels

    * Update src/components/CheckBoxTree/style.css

    Co-authored-by: Peyton Lee <[email protected]>

    * rename colors

    * sync children remove log

    * Fix/viewer imports (#453)

    * fix imports to be from the top level

    * update viewer

    * Update src/components/SharedCheckbox/style.css

    Co-authored-by: Cameron Fraser <[email protected]>

    * remove return

    * clean up styling

    * change names of checkboxtree components

    ---------

    Co-authored-by: Megan Riel-Mehan <[email protected]>
    Co-authored-by: Lyndsay <[email protected]>
    Co-authored-by: Blair Lyons <[email protected]>
    Co-authored-by: Peyton Lee <[email protected]>
    Co-authored-by: Cameron Fraser <[email protected]>

commit 7bfdc1f9a394bd67ea56f8ff40ca63b2e290fab4
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Dec 8 14:21:10 2023 -0800

    Bump @adobe/css-tools from 4.3.1 to 4.3.2 (#449)

    Bumps [@adobe/css-tools](https://github.com/adobe/css-tools) from 4.3.1 to 4.3.2.
    - [Changelog](https://github.com/adobe/css-tools/blob/main/History.md)
    - [Commits](https://github.com/adobe/css-tools/commits)

    ---
    updated-dependencies:
    - dependency-name: "@adobe/css-tools"
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 37a5fee141d3b523fb6de69642c2119a84615558
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 14:18:05 2023 -0800

    Update test-coverage.yml

commit f9267547f03c707b4cf3c91130658b78e35da67c
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 14:15:46 2023 -0800

    Update test-coverage.yml

commit 16de0a0461fb7e9107fa1e0ea3bda52472e83aaa
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Dec 8 14:03:32 2023 -0800

    Bump axios from 0.21.4 to 1.6.0 (#447)

    Bumps [axios](https://github.com/axios/axios) from 0.21.4 to 1.6.0.
    - [Release notes](https://github.com/axios/axios/releases)
    - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
    - [Commits](https://github.com/axios/axios/compare/v0.21.4...v1.6.0)

    ---
    updated-dependencies:
    - dependency-name: axios
      dependency-type: direct:production
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: meganrm <[email protected]>

commit 8fad286617be73b7b03ac9b108c8b2eef1bc203d
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 13:53:25 2023 -0800

    check if it's a dependabot PR (#450)

commit 4d149c8b99e72959d9ac2ff001efc5cf314d9661
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 4 13:35:30 2023 -0800

    Bump @babel/traverse from 7.20.5 to 7.23.2 (#442)

    Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.20.5 to 7.23.2.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-traverse)

    ---
    updated-dependencies:
    - dependency-name: "@babel/traverse"
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit b432dff1b97833e5bfc94e9b5cac7dc0fbb19711
Author: Joe Heffernan <[email protected]>
Date:   Wed Nov 29 13:34:18 2023 -0800

    Fix/share download styling (#448)

    * add color

    * remove pipe and fix button order

    * fix download button styling

    * fix share button styling

    * remove whitespace

    * change hover state selector to sync with tooltip

    * turn functions to boolean constants

    * streamline tooltip constants

    * move btn styles to appheader

commit c6eaea3d3c81c88c240ee1e8c1e4825d8fe5545e
Author: Blair Lyons <[email protected]>
Date:   Mon Oct 23 11:06:47 2023 -0700

    0.10.0

commit f13dcb01b32c16f2d0f5853c7f890ab566a06244
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Oct 20 12:46:48 2023 -0700

    update viewer and fix types (#445)

commit 4baff29420c6a06647a08b5c57e64ad88ad09a86
Author: Blair Lyons <[email protected]>
Date:   Thu Oct 19 14:49:46 2023 -0700

    update viewer to 3.6.3

commit ca5ac248433cc26a66fa09a546332cae8d80c2b5
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Oct 16 10:41:45 2023 -0700

    fix menus offsets (#440)

    * fix menus offsets

    * move version info

commit 244e7268c91a42d2dcfb9da61bc28f2b6b423689
Merge: 60326cf 836510a
Author: Joe Heffernan <[email protected]>
Date:   Wed Oct 11 13:32:07 2023 -0700

    Merge pull request #423 from simularium/feature/version-info

    Feature/version info

commit 836510a92366a61ef1dbc455f17838f92a638322
Author: Joe Heffernan <[email protected]>
Date:   Wed Oct 11 11:47:54 2023 -0700

    Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

commit caac57be991dc3dfaf79ff426e13ba6854c6ab03
Author: Joe Heffernan <[email protected]>
Date:   Tue Oct 10 12:51:42 2023 -0700

    prevent bg color change after click

commit 23be0d4f7ed526a3853889940727a9dd21cbbc19
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 15:27:12 2023 -0700

    typo

commit 141b0370f42b3ee2b4345d56fe2e4db9e6fff2ab
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:34:44 2023 -0700

    remove comments

commit 8dcccc1a3688e7528923670aa8f0611ae7283376
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:34:28 2023 -0700

    styling update

commit 4c215c7ab876e546ec546b3712d88a83cfa79393
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:14:01 2023 -0700

    remove commented code

commit 72c2e8d2ab548ee36829775a608e0dda5d3116f4
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:10:35 2023 -0700

    remove unneeded jsx fragment wrappers

commit dcff5c8b8fd4842b72e53e100c76e1b79d23c178
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 11:27:55 2023 -0700

    removing logs

commit 3e9d57898ff065c37ea5bc2dcacf9deda19442af
Author: Joe Heffernan <[email protected]>
Date:   Tue May 23 10:56:42 2023 -0700

    menu item and modal

commit 60326cfa9649737d21bae5388626c5fd1bfa0d65
Author: Lyndsay <[email protected]>
Date:   Mon Oct 9 12:57:20 2023 -0700

    Update ux_issue.md (#433)

commit 72f1a233d73b64eabc86b30426cace6c727bee2c
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Oct 9 12:57:08 2023 -0700

    change check for if a file is shareable (#439)

    * change check for if a file is shareable

    * use constant for trajFileName

    * use selector instead of type guard

    * add unit test

    * remove accidental auto import

commit 67f2f582cffb3537bd1d47ad37caf0866f1137bf
Author: Megan Riel-Mehan <[email protected]>
Date:   Thu Oct 5 13:28:50 2023 -0700

    audit fix (#437)

commit af14d0126f590813ee1afab5ec39ad1b91727235
Merge: 1314eed a78dee4
Author: Joe Heffernan <[email protected]>
Date:   Fri Sep 8 14:50:10 2023 -0700

    Merge pull request #430 from simularium/feature/orthographic-ui

    Feature/orthographic UI

commit a78dee40c3be10ee554e2e13e0aef260845d4775
Author: Joe Heffernan <[email protected]>
Date:   Fri Sep 8 09:21:09 2023 -0700

    rename set camera

commit 49598cce511597bd3a4e0c15d55349f20ffb5226
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 28 19:00:29 2023 -0700

    install new viewer version

commit d5b84407f5bcb81e3d7391b14ee69d286a0d4924
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 17 16:16:45 2023 -0700

    remove redundant ternary

commit aa0fc41db95e9c76ee400f8f8a236d9acc23bd02
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 17 16:15:09 2023 -0700

    orth/persp icons swapped

commit 1b92d704738a9cee82e5b102f46890790d72d23c
Author: Joe Heffernan <[email protected]>
Date:   Wed Aug 16 13:50:33 2023 -0700

    fix button exceeding border

commit 4969ca95427ba0ba1901cd8950eab975cd28a636
Merge: 29137a3 1314eed
Author: Joe Heffernan <[email protected]>
Date:   Wed Aug 16 13:28:05 2023 -0700

    Merge branch 'main' into feature/orthographic-ui
    merging main

commit 29137a35c6bc9bc8b03c2da7c639da36d390a3ed
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 14 13:01:55 2023 -0700

    playback control styling

commit 8756d054f27ed2c5e14af0d2f0f9410e81a9dd53
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 14 13:00:59 2023 -0700

    focus:hover state on home button

commit 4506ce9a66fd55978cbdc27d4bf08dbacce98fcb
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:26:56 2023 -0700

    define viewer button color variables

commit f3cc830f8f9aa341b57a7da9459ab2cbab7d63ed
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:25:50 2023 -0700

    ortho/perspective icons

commit b23d847486f97313b163895ca4fdd28014e9ea7a
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:25:26 2023 -0700

    initial styling of camera controls

commit fab18400bbefc0d77ec38c9654abd061da539b7f
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:23:15 2023 -0700

    implement orthographic camera

commit 1314eed2438057c99f4781aea5701ae030073435
Merge: 2c949aa b9c37b2
Author: Joe Heffernan <[email protected]>
Date:   Thu Jul 20 16:37:06 2023 -0700

    Merge pull request #424 from simularium/feature/share-time-url

    Feature/share time url

commit b9c37b25a5b0b204b038bc30f3273462667b6f4c
Author: Joe Heffernan <[email protected]>
Date:   Thu Jul 20 13:19:13 2023 -0700

    tooltip handler edit, fix alignment on time input

commit 2c949aa0dd71ddd3910a7b388ae31dcf67d4677e
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Jul 17 14:56:28 2023 -0700

    Update CODEOWNERS

commit 81bce369c106e6c1988086b36c98667297e917f5
Author: Megan Riel-Mehan <[email protected]>
Date:   Tue Jul 11 16:17:20 2023 -0700

    change gh-deploy to be a dev build (#426)

commit 01468c302c6036a6b2f8e1f94912cd5514367c23
Author: Megan Riel-Mehan <[email protected]>
Date:   Tue Jul 11 16:17:03 2023 -0700

    Update CONTRIBUTING.md (#425)

commit 5ad5660739b4d9146248ef761373c4a45d81c725
Merge: 0b79159 5dda5da
Author: meganrm <[email protected]>
Date:   Tue Jun 27 17:41:25 2023 -0700

    Merge branch 'feature/share-time-url' of https://github.com/simularium/simularium-website into feature/share-time-url

commit 0b791599d674a611fc8b51e723459cdb476253cf
Author: meganrm <[email protected]>
Date:   Tue Jun 27 17:41:18 2023 -0700

    reduce annotations

commit 5dda5da83e2ce5916053e73c6db3221f9be5ae5c
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 15:13:51 2023 -0700

    update return type receiveTimeChange

commit 5113dfe6354ca147638230ad1a826749089df6df
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 13:57:59 2023 -0700

    update test

commit 1e226e8568f770b1da7bb55de34c91637f45988e
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 13:48:29 2023 -0700

    test for editUrlParams and clean up

commit b93f789f62b53ff63071d1fefc1efc2de04990fd
Author: meganrm <[email protected]>
Date:   Tue Jun 27 12:19:00 2023 -0700

    changed names of functions

commit 6dfe513646e789a4e1b974c27baa0d94b276db79
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:58:00 2023 -0700

    gh actions from ubuntu to macos

commit 1d1b73acbb480ab348ef122ac73e9bae5496b789
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:57:14 2023 -0700

    add jest coverage reporters

commit 9a62549b0ac8603734d1dc8f9e8d83c6a53460cf
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:50:41 2023 -0700

    update jest

commit d58b4c6d8140ded3934014caf0bec8a5a2bf97b8
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:48:56 2023 -0700

    update jest coverage

commit 0da60eba553c7963e7dc1da32cac2835d0c6614e
Author: Joe Heffernan <[email protected]>
Date:   Mon Jun 26 12:15:10 2023 -0700

    ternary -> object, styling names, add href

commit b0f81cef84ae7de2b29cc537d132a5305e33f521
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 23 15:17:45 2023 -0700

    initial unit test

commit ecb0b9af9424f61628ab905d14c813490be407bd
Merge: fb2a54f 918556c
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:48:15 2023 -0700

    Merge branch 'main' into feature/share-time-url

commit fb2a54fd82bbaabe469777d48d4e05f7e893a347
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:11:04 2023 -0700

    space share and download buttons

commit 0245f777780f49d9f228313ce194c347904f985a
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:07:33 2023 -0700

    move tooltip

commit f92904682d012882b6c4da3263716d0e07f5d308
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 04deea2157e7f2a24f1784bb5401629955c1c6a2
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit ee811e772efbd977f06c0a0c6a4684a1946f4ffc
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit 9e177810a6ba3ef44bb156dcf953bc45e0ce45aa
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit 2166dc1d9bdcf5b6758990b74cad2cd9f6d38a3b
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 820afcab6247673362326e568b893e83dc1d59f6
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit ce60a9d48719915b05311eada47c512983952487
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit 41ea8875e6f5389cc0007951b2e1c827ee35d577
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit 305955e3752d46981780046fdb9fee9ab27c68b8
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 20 15:48:53 2023 -0700

    move tooltip and unessary async

commit 6b21353a71def1829d825ac62613aa74f4d9cdac
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:06:24 2023 -0700

    remove comment

commit f794da1d1ceb797420f074ca3843df286299a429
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:41:10 2023 -0700

    removing isDownloading

commit 70db90b4cd5951d005a30bd0b94e3222d5b64d19
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:29:04 2023 -0700

    removing styling typo

commit 5b516c044054ef0fa9046c21fc2047e9ae026449
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 11:29:15 2023 -0700

    clean up comment

commit 8c2ac5e02225ff63e0cba32f6006fbc8f80f87aa
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 10:36:47 2023 -0700

    use viewer getasblob method, bump viewer

commit a1dfdb1d9e774e79a1bf9cacd765e59f62ece676
Author: Megan Riel-Mehan <[email protected]>
Date:   Thu May 18 22:23:10 2023 +0000

    use href for direct download if remote file

commit b2e1bad5aaeb4d23454e539667c73250199bf62d
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:56:07 2023 -0700

    removing comments

commit 8ff2ad88358540251c55d21610ef599913342489
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:51:47 2023 -0700

    disable button during downloading

commit 4448920df8e72875244e14f3c44b7c3a0a5fdd53
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:04:22 2023 -0700

    cleaning

commit 2a7b3d18da5b9df45ff4ac2bddf4806bb060b8f9
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:03:06 2023 -0700

    cleanup

commit 00fcfb43689221e1725e0413679161c4753e3f07
Author: Joe Heffernan <[email protected]>
Date:   Thu May 4 11:53:55 2023 -0700

    styling, adding pipe divider

commit dbd6322e7de895ce4779716e6b3afd5fbab31c89
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 14:04:03 2023 -0700

    added download functionality

commit 13d0057ef7ee76beb57b5895fae42b015567f438
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 09:15:09 2023 -0700

    intial ui components

commit 918556ca7c6d40c8637ceaaf9d01ff77ccd9ed3d
Merge: 0749f1a f995097
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 09:12:17 2023 -0700

    Merge pull request #422 from simularium/feature/download-trajectory

    Feature/download trajectory

commit f99509782c90e51caf8cf78517c691ab3de77f7f
Merge: 39a70ca 0749f1a
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 09:09:55 2023 -0700

    Merge branch 'main' into feature/download-trajectory

commit 39a70cad2a44f4bdb6e6ef2eddf85599b71bddb7
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 8319dc779d2cf137aff0e7f5c4757c2cb34abf4e
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit 054e67082861884e502f3033744dba9ba1d4dd3e
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit cec3e9b962543131f7d07302c8b2c100c31c3b3f
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit bb103348d65bc9c1bb52fc3317da62fa206e6fe7
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 20 15:48:53 2023 -0700

    move tooltip and unessary async

commit 79938891b2d395ccc96bc451294982c0d74ad5e6
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 15:24:34 2023 -0700

    remove redundant action from reducer

commit 67a2a63d92d149796577d4ad07ae1ab001db84fc
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 15:22:33 2023 -0700

    remove blue text class

commit 225ebfd1395622c5b5a27e7b721c787c3f08ecc3
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 14:52:42 2023 -0700

    shift style rules, add light theme, remove buffer

commit 0749f1aba62d01e67e9fd0597acff8c35bcc9796
Merge: cc135e8 ac22916
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 15:58:13 2023 -0700

    Merge pull request #417 from simularium/feature/updated-looping-playback

    looping playback and tooltip styling

commit 96eca5c5ea728864f9b06f72fed6cc3ec3dcf919
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 10:30:15 2023 -0700

    clean up

commit f2ba682ece52baa2b4e3e8a9748976e600a10a5b
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 10:09:16 2023 -0700

    consolidate redundant functions

commit 57c1e4ec760608af66a43dfe5fc051249d7068a0
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 09:56:47 2023 -0700

    move clear and rest params to utils

commit b5a9bbe0e8c9d8f548e363cfd6e199d2a0bb5214
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 17:37:34 2023 -0700

    clear old params before setting url

commit 8f668d6aa689bc9cefec45223c1265ba58f427fc
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 13:54:24 2023 -0700

    cleaning

commit 7a954ca0fdc7449e5b6641d23733be5374a6db21
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 13:52:52 2023 -0700

    mapping prop to dispatch

commit 8b8aa1b56518b4a8379d3e8e0c2f83bd39e2d828
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 10:22:02 2023 -0700

    update viewer

commit c8bb39919f303dac6a575a5c2f032ac8c6fc59bb
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:06:24 2023 -0700

    remove comment

commit 164a6c0e7e35793fc809a4b003efd3bd16c5669c
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:02:57 2023 -0700

    remove unused imports

commit 3a8920090074be8989d7e26a56c4cd98bf3e6025
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:00:09 2023 -0700

    hover styling

commit 63013b0ba79a0f86eb6faa486c317a1cb87d3672
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:17:22 2023 -0700

    nested ternary -> if/else

commit ac22916ede152783b20d6daea533708afd79cc64
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 903c09ef28f09b4d764387c630f494840f51d88f
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 6 16:25:41 2023 -0700

    add util func, move logic trigger to viewer panel

    Co-authored-by: Megan Riel-Mehan <[email protected]>

commit c1d63648b33f26239bc0c6dbcf10c8ab40d3fe29
Author: Joe Heffernan <[email protected]>
Date:   Mon Jun 5 09:09:44 2023 -0700

    update viewer version

commit 48537b5658b6097bd676af4927a1219fbfe681a8
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:41:10 2023 -0700

    removing isDownloading

commit e14f33214b9686cafc3efab3c20f250ee1f1d583
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:29:04 2023 -0700

    removing styling typo

commit c87f78b4ec209ee227b70be3925774fb1c75d715
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 11:29:15 2023 -0700

    clean up comment

commit d2f56914693f27febf85353816c13bd1dc70d15d
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 10:36:47 2023 -0700

    use viewer getasblob method, bump viewer

commit 73bba1a3917ec6a39e38422cb1f1d8a1110a1b6d
Author: Joe Heffernan <[email protected]>
Date:   Wed May 31 10:58:46 2023 -0700

    update viewer

commit e5a1a701236c89ee8d389591cc941a2c13cb08dc
Author: Joe Heffernan <[email protected]>
Date:   Tue May 23 15:09:04 2023 -0700

    refactor to use displayTimes

commit 43913670e5f6ad460c6785a8a92cdb09be086612
Author: Joe Heffernan <[email protected]>
Date:   Mon May 22 13:06:31 2023 -0700

    truncating decimals in url

commit c06702d8efd9f681b727c2c38eac090a22f70836
Author: Joe Heffernan <[email protected]>
Date:   Fri May 19 14:53:02 2023 -0700

    rename components and clean up functions

commit 6a5ed732537cef510276bb47002601416ce741de
Author: Megan Riel-Mehan <[email protected]>
Date:   Thu May 18 22:23:10 2023 +0000

    use href for direct download if remote file

commit 9e50b00371b6d0edd98f266ac83c233154551932
Author: Joe Heffernan <[email protected]>
Date:   Thu May 18 13:18:43 2023 -0700

    ui components for share time in url

commit 12836f56003ddd94a6aadd28e222321ea16f9a80
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:56:07 2023 -0700

    removing comments

commit d6ebc41a3d198bfa8555b20361215301f585176d
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit 84b3681848c758bf7fb686240eda0b815185845e
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:51:47 2023 -0700

    disable button during downloading

commit 6a14428d4d4f2910a970f4b235b5f56966b4a7f6
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:04:22 2023 -0700

    cleaning

commit 2faf8d2f441f470587b425f6fb5cdb55b9cbb76e
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:03:06 2023 -0700

    cleanup

commit e318c4df11cad4f3620a135cbb6af2566cc55c2c
Author: Joe Heffernan <[email protected]>
Date:   Thu May 4 11:53:55 2023 -0700

    styling, adding pipe divider

commit 3538d1f15a7769f9c5f4aee54fc5db98b533e685
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 14:04:03 2023 -0700

    added download functionality

commit 57b5c1f6c656de73a04e8b7f2ad9eecd199e28bf
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 09:15:09 2023 -0700

    intial ui components

commit f320abe8ea3d6af93839ddd7fe244e6f7eab1960
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit 0221067a635450acdef9bcbf335f30b4a80e40df
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit cc135e814a78a547edef31bcee688c35e9068112
Author: ascibisz <[email protected]>
Date:   Fri Apr 21 13:53:12 2023 -0700

    update version for add-to-project action

commit ec1b5f0f741f6abab276736f913d4e388698f21a
Author: Megan Riel-Mehan <[email protected]>
Date:   Tue Apr 18 12:13:10 2023 -0700

    Update CODEOWNERS

commit dbe5b585a8a6e56d383cc38ee1f73a40c705e484
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Apr 10 11:07:06 2023 -0700

    Bump json5 from 1.0.1 to 1.0.2 (#404)

    Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
    - [Release notes](https://github.com/json5/json5/releases)
    - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/json5/json5/compare/v1.0.1...v1.0.2)

    ---
    updated-dependencies:
    - dependency-name: json5
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Squashed commit of the following:

commit f3527626a0e12b131ef7c551785e6f95cbbf6b95
Author: Joe Heffernan <[email protected]>
Date:   Wed Feb 14 17:42:55 2024 -0800

    Fix/bump react (#461)

    * bump react, react-waypoint, react dom, @types/react

    * declare children in sider and upload props for react 18 compatibility

    * bump @types/react-dom

    * use createRoot API to render App

    * commit lock file

    * bump to viewer 3.7.0 with react 18

    * use non-null assertion on container in createRoot call

commit 39a6f7b7e63206bf842d9f74b6f8098d4973c86c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jan 29 19:28:31 2024 -0800

    Bump follow-redirects from 1.15.2 to 1.15.4 (#460)

    Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.2 to 1.15.4.
    - [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
    - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.2...v1.15.4)

    ---
    updated-dependencies:
    - dependency-name: follow-redirects
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 6b26307fb3ea8151e2718f95e01047da67ed5db3
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jan 29 19:28:19 2024 -0800

    Bump plotly.js from 2.20.0 to 2.25.2 (#457)

    Bumps [plotly.js](https://github.com/plotly/plotly.js) from 2.20.0 to 2.25.2.
    - [Release notes](https://github.com/plotly/plotly.js/releases)
    - [Changelog](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/plotly/plotly.js/compare/v2.20.0...v2.25.2)

    ---
    updated-dependencies:
    - dependency-name: plotly.js
      dependency-type: direct:production
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 38dda7c1349d8e044c70c839d6c8bb18eedbf34f
Author: Joe Heffernan <[email protected]>
Date:   Thu Jan 4 10:27:17 2024 -0800

    open aics homepage in new tab (#454)

commit 106935b771feebabf47c0b3912a58c7068e49ab0
Author: Joe Heffernan <[email protected]>
Date:   Tue Dec 19 11:51:35 2023 -0800

    Feature/color picker (#432)

    * initial components and styling

    * shrink checkbox to expose swatch

    * shrink chexbox to make swatch clickable

    * pass data into color swatch

    * remove unused styling

    * handleColorChange in picker

    * pass props and helders to color picker modal

    * add colorPicker to color swatch

    * types actions constants selectors for colorChanges

    * selector in viewer panel

    * preserve initial color in swatch

    * style parent swatch when children dont match

    * recent colors into redux

    * change modal to popover

    * update import

    * clean up stylesheets

    * tidy css and imports

    * bump viewer version

    * remove extra ?

    * update viewer

    * viewerpanel selector test update

    * update dependecies

    * add tests for getColorChanges

    * fix type imports in selectors

    * web app version

    * remove comment

    * consolidate colorpicker and popover

    * organize props and style rules

    * pointer on color swatch

    * formatting

    * color picker tooltip color to constant

    * swap replace for slice

    * debounce color selection

    * implement orthographic camera

    * initial styling of camera controls

    * ortho/perspective icons

    * define viewer button color variables

    * focus:hover state on home button

    * playback control styling

    * fix button exceeding border

    * orth/persp icons swapped

    * remove redundant ternary

    * rename set camera

    * audit fix (#437)

    * change check for if a file is shareable (#439)

    * change check for if a file is shareable

    * use constant for trajFileName

    * use selector instead of type guard

    * add unit test

    * remove accidental auto import

    * Update ux_issue.md (#433)

    * menu item and modal

    * removing logs

    * remove unneeded jsx fragment wrappers

    * remove commented code

    * styling update

    * remove comments

    * typo

    * prevent bg color change after click

    * Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

    * fix menus offsets (#440)

    * fix menus offsets

    * move version info

    * update viewer to 3.6.3

    * update viewer and fix types (#445)

    * 0.10.0

    * remove redunant line

    * implement orthographic camera

    * initial styling of camera controls

    * define viewer button color variables

    * focus:hover state on home button

    * playback control styling

    * orth/persp icons swapped

    * remove redundant ternary

    * install new viewer version

    * rename set camera

    * menu item and modal

    * removing logs

    * remove unneeded jsx fragment wrappers

    * remove commented code

    * styling update

    * remove comments

    * typo

    * Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

    * fix menus offsets (#440)

    * fix menus offsets

    * move version info

    * update viewer to 3.6.3

    * update viewer and fix types (#445)

    * pass down actions from model panel to picker

    * add hover state rules

    * pass in debouncedColor

    * [to undo] - local install

    * remove colorChangesMap

    * prevent color assignment on first opening picker

    * fix typing and save all color changes

    * make color change an object

    * install

    * store colors for correct rendering

    * add a done call

    * change interface

    * install viewer

    * update viewer

    * remove old style sheet

    * clean up styles and change order on parents

    * style children selection row

    * style labels

    * style sub menu better

    * clean up styles

    * revert change

    * make sure colors are consistently cased

    * fix imports

    * wip - not have popover move up

    * remove color swatch component and get color picker aligned with swatch

    * flx classnames

    * fix typo

    * fix checkall button

    * fix classname

    * make render functions for colorpicker

    * keep swatch constant until color is set, change label to "previous"

    * adjusting labels

    * Update src/components/CheckBoxTree/style.css

    Co-authored-by: Peyton Lee <[email protected]>

    * rename colors

    * sync children remove log

    * Fix/viewer imports (#453)

    * fix imports to be from the top level

    * update viewer

    * Update src/components/SharedCheckbox/style.css

    Co-authored-by: Cameron Fraser <[email protected]>

    * remove return

    * clean up styling

    * change names of checkboxtree components

    ---------

    Co-authored-by: Megan Riel-Mehan <[email protected]>
    Co-authored-by: Lyndsay <[email protected]>
    Co-authored-by: Blair Lyons <[email protected]>
    Co-authored-by: Peyton Lee <[email protected]>
    Co-authored-by: Cameron Fraser <[email protected]>

commit 7bfdc1f9a394bd67ea56f8ff40ca63b2e290fab4
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Dec 8 14:21:10 2023 -0800

    Bump @adobe/css-tools from 4.3.1 to 4.3.2 (#449)

    Bumps [@adobe/css-tools](https://github.com/adobe/css-tools) from 4.3.1 to 4.3.2.
    - [Changelog](https://github.com/adobe/css-tools/blob/main/History.md)
    - [Commits](https://github.com/adobe/css-tools/commits)

    ---
    updated-dependencies:
    - dependency-name: "@adobe/css-tools"
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 37a5fee141d3b523fb6de69642c2119a84615558
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 14:18:05 2023 -0800

    Update test-coverage.yml

commit f9267547f03c707b4cf3c91130658b78e35da67c
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 14:15:46 2023 -0800

    Update test-coverage.yml

commit 16de0a0461fb7e9107fa1e0ea3bda52472e83aaa
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Dec 8 14:03:32 2023 -0800

    Bump axios from 0.21.4 to 1.6.0 (#447)

    Bumps [axios](https://github.com/axios/axios) from 0.21.4 to 1.6.0.
    - [Release notes](https://github.com/axios/axios/releases)
    - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
    - [Commits](https://github.com/axios/axios/compare/v0.21.4...v1.6.0)

    ---
    updated-dependencies:
    - dependency-name: axios
      dependency-type: direct:production
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: meganrm <[email protected]>

commit 8fad286617be73b7b03ac9b108c8b2eef1bc203d
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Dec 8 13:53:25 2023 -0800

    check if it's a dependabot PR (#450)

commit 4d149c8b99e72959d9ac2ff001efc5cf314d9661
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 4 13:35:30 2023 -0800

    Bump @babel/traverse from 7.20.5 to 7.23.2 (#442)

    Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.20.5 to 7.23.2.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-traverse)

    ---
    updated-dependencies:
    - dependency-name: "@babel/traverse"
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit b432dff1b97833e5bfc94e9b5cac7dc0fbb19711
Author: Joe Heffernan <[email protected]>
Date:   Wed Nov 29 13:34:18 2023 -0800

    Fix/share download styling (#448)

    * add color

    * remove pipe and fix button order

    * fix download button styling

    * fix share button styling

    * remove whitespace

    * change hover state selector to sync with tooltip

    * turn functions to boolean constants

    * streamline tooltip constants

    * move btn styles to appheader

commit c6eaea3d3c81c88c240ee1e8c1e4825d8fe5545e
Author: Blair Lyons <[email protected]>
Date:   Mon Oct 23 11:06:47 2023 -0700

    0.10.0

commit f13dcb01b32c16f2d0f5853c7f890ab566a06244
Author: Megan Riel-Mehan <[email protected]>
Date:   Fri Oct 20 12:46:48 2023 -0700

    update viewer and fix types (#445)

commit 4baff29420c6a06647a08b5c57e64ad88ad09a86
Author: Blair Lyons <[email protected]>
Date:   Thu Oct 19 14:49:46 2023 -0700

    update viewer to 3.6.3

commit ca5ac248433cc26a66fa09a546332cae8d80c2b5
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Oct 16 10:41:45 2023 -0700

    fix menus offsets (#440)

    * fix menus offsets

    * move version info

commit 244e7268c91a42d2dcfb9da61bc28f2b6b423689
Merge: 60326cf 836510a
Author: Joe Heffernan <[email protected]>
Date:   Wed Oct 11 13:32:07 2023 -0700

    Merge pull request #423 from simularium/feature/version-info

    Feature/version info

commit 836510a92366a61ef1dbc455f17838f92a638322
Author: Joe Heffernan <[email protected]>
Date:   Wed Oct 11 11:47:54 2023 -0700

    Update src/components/HelpMenu/index.tsx

    Co-authored-by: Megan Riel-Mehan <[email protected]>

commit caac57be991dc3dfaf79ff426e13ba6854c6ab03
Author: Joe Heffernan <[email protected]>
Date:   Tue Oct 10 12:51:42 2023 -0700

    prevent bg color change after click

commit 23be0d4f7ed526a3853889940727a9dd21cbbc19
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 15:27:12 2023 -0700

    typo

commit 141b0370f42b3ee2b4345d56fe2e4db9e6fff2ab
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:34:44 2023 -0700

    remove comments

commit 8dcccc1a3688e7528923670aa8f0611ae7283376
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:34:28 2023 -0700

    styling update

commit 4c215c7ab876e546ec546b3712d88a83cfa79393
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:14:01 2023 -0700

    remove commented code

commit 72c2e8d2ab548ee36829775a608e0dda5d3116f4
Author: Joe Heffernan <[email protected]>
Date:   Mon Oct 9 14:10:35 2023 -0700

    remove unneeded jsx fragment wrappers

commit dcff5c8b8fd4842b72e53e100c76e1b79d23c178
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 11:27:55 2023 -0700

    removing logs

commit 3e9d57898ff065c37ea5bc2dcacf9deda19442af
Author: Joe Heffernan <[email protected]>
Date:   Tue May 23 10:56:42 2023 -0700

    menu item and modal

commit 60326cfa9649737d21bae5388626c5fd1bfa0d65
Author: Lyndsay <[email protected]>
Date:   Mon Oct 9 12:57:20 2023 -0700

    Update ux_issue.md (#433)

commit 72f1a233d73b64eabc86b30426cace6c727bee2c
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Oct 9 12:57:08 2023 -0700

    change check for if a file is shareable (#439)

    * change check for if a file is shareable

    * use constant for trajFileName

    * use selector instead of type guard

    * add unit test

    * remove accidental auto import

commit 67f2f582cffb3537bd1d47ad37caf0866f1137bf
Author: Megan Riel-Mehan <[email protected]>
Date:   Thu Oct 5 13:28:50 2023 -0700

    audit fix (#437)

commit af14d0126f590813ee1afab5ec39ad1b91727235
Merge: 1314eed a78dee4
Author: Joe Heffernan <[email protected]>
Date:   Fri Sep 8 14:50:10 2023 -0700

    Merge pull request #430 from simularium/feature/orthographic-ui

    Feature/orthographic UI

commit a78dee40c3be10ee554e2e13e0aef260845d4775
Author: Joe Heffernan <[email protected]>
Date:   Fri Sep 8 09:21:09 2023 -0700

    rename set camera

commit 49598cce511597bd3a4e0c15d55349f20ffb5226
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 28 19:00:29 2023 -0700

    install new viewer version

commit d5b84407f5bcb81e3d7391b14ee69d286a0d4924
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 17 16:16:45 2023 -0700

    remove redundant ternary

commit aa0fc41db95e9c76ee400f8f8a236d9acc23bd02
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 17 16:15:09 2023 -0700

    orth/persp icons swapped

commit 1b92d704738a9cee82e5b102f46890790d72d23c
Author: Joe Heffernan <[email protected]>
Date:   Wed Aug 16 13:50:33 2023 -0700

    fix button exceeding border

commit 4969ca95427ba0ba1901cd8950eab975cd28a636
Merge: 29137a3 1314eed
Author: Joe Heffernan <[email protected]>
Date:   Wed Aug 16 13:28:05 2023 -0700

    Merge branch 'main' into feature/orthographic-ui
    merging main

commit 29137a35c6bc9bc8b03c2da7c639da36d390a3ed
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 14 13:01:55 2023 -0700

    playback control styling

commit 8756d054f27ed2c5e14af0d2f0f9410e81a9dd53
Author: Joe Heffernan <[email protected]>
Date:   Mon Aug 14 13:00:59 2023 -0700

    focus:hover state on home button

commit 4506ce9a66fd55978cbdc27d4bf08dbacce98fcb
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:26:56 2023 -0700

    define viewer button color variables

commit f3cc830f8f9aa341b57a7da9459ab2cbab7d63ed
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:25:50 2023 -0700

    ortho/perspective icons

commit b23d847486f97313b163895ca4fdd28014e9ea7a
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:25:26 2023 -0700

    initial styling of camera controls

commit fab18400bbefc0d77ec38c9654abd061da539b7f
Author: Joe Heffernan <[email protected]>
Date:   Thu Aug 10 12:23:15 2023 -0700

    implement orthographic camera

commit 1314eed2438057c99f4781aea5701ae030073435
Merge: 2c949aa b9c37b2
Author: Joe Heffernan <[email protected]>
Date:   Thu Jul 20 16:37:06 2023 -0700

    Merge pull request #424 from simularium/feature/share-time-url

    Feature/share time url

commit b9c37b25a5b0b204b038bc30f3273462667b6f4c
Author: Joe Heffernan <[email protected]>
Date:   Thu Jul 20 13:19:13 2023 -0700

    tooltip handler edit, fix alignment on time input

commit 2c949aa0dd71ddd3910a7b388ae31dcf67d4677e
Author: Megan Riel-Mehan <[email protected]>
Date:   Mon Jul 17 14:56:28 2023 -0700

    Update CODEOWNERS

commit 81bce369c106e6c1988086b36c98667297e917f5
Author: Megan Riel-Mehan <[email protected]>
Date:   Tue Jul 11 16:17:20 2023 -0700

    change gh-deploy to be a dev build (#426)

commit 01468c302c6036a6b2f8e1f94912cd5514367c23
Author: Megan Riel-Mehan <[email protected]>
Date:   Tue Jul 11 16:17:03 2023 -0700

    Update CONTRIBUTING.md (#425)

commit 5ad5660739b4d9146248ef761373c4a45d81c725
Merge: 0b79159 5dda5da
Author: meganrm <[email protected]>
Date:   Tue Jun 27 17:41:25 2023 -0700

    Merge branch 'feature/share-time-url' of https://github.com/simularium/simularium-website into feature/share-time-url

commit 0b791599d674a611fc8b51e723459cdb476253cf
Author: meganrm <[email protected]>
Date:   Tue Jun 27 17:41:18 2023 -0700

    reduce annotations

commit 5dda5da83e2ce5916053e73c6db3221f9be5ae5c
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 15:13:51 2023 -0700

    update return type receiveTimeChange

commit 5113dfe6354ca147638230ad1a826749089df6df
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 13:57:59 2023 -0700

    update test

commit 1e226e8568f770b1da7bb55de34c91637f45988e
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 13:48:29 2023 -0700

    test for editUrlParams and clean up

commit b93f789f62b53ff63071d1fefc1efc2de04990fd
Author: meganrm <[email protected]>
Date:   Tue Jun 27 12:19:00 2023 -0700

    changed names of functions

commit 6dfe513646e789a4e1b974c27baa0d94b276db79
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:58:00 2023 -0700

    gh actions from ubuntu to macos

commit 1d1b73acbb480ab348ef122ac73e9bae5496b789
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:57:14 2023 -0700

    add jest coverage reporters

commit 9a62549b0ac8603734d1dc8f9e8d83c6a53460cf
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:50:41 2023 -0700

    update jest

commit d58b4c6d8140ded3934014caf0bec8a5a2bf97b8
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 27 11:48:56 2023 -0700

    update jest coverage

commit 0da60eba553c7963e7dc1da32cac2835d0c6614e
Author: Joe Heffernan <[email protected]>
Date:   Mon Jun 26 12:15:10 2023 -0700

    ternary -> object, styling names, add href

commit b0f81cef84ae7de2b29cc537d132a5305e33f521
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 23 15:17:45 2023 -0700

    initial unit test

commit ecb0b9af9424f61628ab905d14c813490be407bd
Merge: fb2a54f 918556c
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:48:15 2023 -0700

    Merge branch 'main' into feature/share-time-url

commit fb2a54fd82bbaabe469777d48d4e05f7e893a347
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:11:04 2023 -0700

    space share and download buttons

commit 0245f777780f49d9f228313ce194c347904f985a
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 13:07:33 2023 -0700

    move tooltip

commit f92904682d012882b6c4da3263716d0e07f5d308
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 04deea2157e7f2a24f1784bb5401629955c1c6a2
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit ee811e772efbd977f06c0a0c6a4684a1946f4ffc
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit 9e177810a6ba3ef44bb156dcf953bc45e0ce45aa
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit 2166dc1d9bdcf5b6758990b74cad2cd9f6d38a3b
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 820afcab6247673362326e568b893e83dc1d59f6
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit ce60a9d48719915b05311eada47c512983952487
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit 41ea8875e6f5389cc0007951b2e1c827ee35d577
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit 305955e3752d46981780046fdb9fee9ab27c68b8
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 20 15:48:53 2023 -0700

    move tooltip and unessary async

commit 6b21353a71def1829d825ac62613aa74f4d9cdac
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:06:24 2023 -0700

    remove comment

commit f794da1d1ceb797420f074ca3843df286299a429
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:41:10 2023 -0700

    removing isDownloading

commit 70db90b4cd5951d005a30bd0b94e3222d5b64d19
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 14:29:04 2023 -0700

    removing styling typo

commit 5b516c044054ef0fa9046c21fc2047e9ae026449
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 11:29:15 2023 -0700

    clean up comment

commit 8c2ac5e02225ff63e0cba32f6006fbc8f80f87aa
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 1 10:36:47 2023 -0700

    use viewer getasblob method, bump viewer

commit a1dfdb1d9e774e79a1bf9cacd765e59f62ece676
Author: Megan Riel-Mehan <[email protected]>
Date:   Thu May 18 22:23:10 2023 +0000

    use href for direct download if remote file

commit b2e1bad5aaeb4d23454e539667c73250199bf62d
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:56:07 2023 -0700

    removing comments

commit 8ff2ad88358540251c55d21610ef599913342489
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:51:47 2023 -0700

    disable button during downloading

commit 4448920df8e72875244e14f3c44b7c3a0a5fdd53
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:04:22 2023 -0700

    cleaning

commit 2a7b3d18da5b9df45ff4ac2bddf4806bb060b8f9
Author: Joe Heffernan <[email protected]>
Date:   Fri May 5 11:03:06 2023 -0700

    cleanup

commit 00fcfb43689221e1725e0413679161c4753e3f07
Author: Joe Heffernan <[email protected]>
Date:   Thu May 4 11:53:55 2023 -0700

    styling, adding pipe divider

commit dbd6322e7de895ce4779716e6b3afd5fbab31c89
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 14:04:03 2023 -0700

    added download functionality

commit 13d0057ef7ee76beb57b5895fae42b015567f438
Author: Joe Heffernan <[email protected]>
Date:   Wed May 3 09:15:09 2023 -0700

    intial ui components

commit 918556ca7c6d40c8637ceaaf9d01ff77ccd9ed3d
Merge: 0749f1a f995097
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 09:12:17 2023 -0700

    Merge pull request #422 from simularium/feature/download-trajectory

    Feature/download trajectory

commit f99509782c90e51caf8cf78517c691ab3de77f7f
Merge: 39a70ca 0749f1a
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 21 09:09:55 2023 -0700

    Merge branch 'main' into feature/download-trajectory

commit 39a70cad2a44f4bdb6e6ef2eddf85599b71bddb7
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 07:00:08 2023 -0700

    remove unused values, clean up

commit 8319dc779d2cf137aff0e7f5c4757c2cb34abf4e
Author: Joe Heffernan <[email protected]>
Date:   Wed May 10 14:25:29 2023 -0700

    remove redundant actions

commit 054e67082861884e502f3033744dba9ba1d4dd3e
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 13:45:47 2023 -0700

    removing unused imports

commit cec3e9b962543131f7d07302c8b2c100c31c3b3f
Author: Joe Heffernan <[email protected]>
Date:   Wed Apr 26 12:52:01 2023 -0700

    looping playback and tooltip styling

commit bb103348d65bc9c1bb52fc3317da62fa206e6fe7
Author: Joe Heffernan <[email protected]>
Date:   Tue Jun 20 15:48:53 2023 -0700

    move tooltip and unessary async

commit 79938891b2d395ccc96bc451294982c0d74ad5e6
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 15:24:34 2023 -0700

    remove redundant action from reducer

commit 67a2a63d92d149796577d4ad07ae1ab001db84fc
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 15:22:33 2023 -0700

    remove blue text class

commit 225ebfd1395622c5b5a27e7b721c787c3f08ecc3
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 14 14:52:42 2023 -0700

    shift style rules, add light theme, remove buffer

commit 0749f1aba62d01e67e9fd0597acff8c35bcc9796
Merge: cc135e8 ac22916
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 15:58:13 2023 -0700

    Merge pull request #417 from simularium/feature/updated-looping-playback

    looping playback and tooltip styling

commit 96eca5c5ea728864f9b06f72fed6cc3ec3dcf919
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 10:30:15 2023 -0700

    clean up

commit f2ba682ece52baa2b4e3e8a9748976e600a10a5b
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 10:09:16 2023 -0700

    consolidate redundant functions

commit 57c1e4ec760608af66a43dfe5fc051249d7068a0
Author: Joe Heffernan <[email protected]>
Date:   Fri Jun 9 09:56:47 2023 -0700

    move clear and rest params to utils

commit b5a9bbe0e8c9d8f548e363cfd6e199d2a0bb5214
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 17:37:34 2023 -0700

    clear old params before setting url

commit 8f668d6aa689bc9cefec45223c1265ba58f427fc
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 13:54:24 2023 -0700

    cleaning

commit 7a954ca0fdc7449e5b6641d23733be5374a6db21
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 13:52:52 2023 -0700

    mapping prop to dispatch

commit 8b8aa1b56518b4a8379d3e8e0c2f83bd39e2d828
Author: Joe Heffernan <[email protected]>
Date:   Thu Jun 8 10:22:02 2023 -0700

    update viewer

commit c8bb39919f303dac6a575a5c2f032ac8c6fc59bb
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:06:24 2023 -0700

    remove comment

commit 164a6c0e7e35793fc809a4b003efd3bd16c5669c
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:02:57 2023 -0700

    remove unused imports

commit 3a8920090074be8989d7e26a56c4cd98bf3e6025
Author: Joe Heffernan <[email protected]>
Date:   Wed Jun 7 08:00:09 2023 -0700

    hover styling

commit 63013b0ba79a0f86eb6faa486c317a1cb87d3672
Author: Joe Heffernan <[email protected]>
Date:   W…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants