Skip to content

Commit

Permalink
Bump components and build (#5074)
Browse files Browse the repository at this point in the history
* Bump components, and build, update dev.tsx files
  • Loading branch information
labkey-alan authored Dec 22, 2023
1 parent 161fe06 commit eb6ed8c
Show file tree
Hide file tree
Showing 25 changed files with 1,754 additions and 1,567 deletions.
779 changes: 442 additions & 337 deletions assay/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assay/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"clean": "rimraf resources/web/assay/gen && rimraf resources/views/gen && rimraf resources/web/gen"
},
"dependencies": {
"@labkey/components": "2.393.0"
"@labkey/components": "3.1.1"
},
"devDependencies": {
"@labkey/build": "6.16.1",
"@labkey/build": "7.0.0",
"@types/jest": "29.5.4",
"@types/react": "16.14.46",
"@types/react-dom": "16.9.19"
Expand Down
15 changes: 1 addition & 14 deletions assay/src/client/AssayTypeSelect/dev.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,10 @@

import React from 'react'
import ReactDOM from 'react-dom'
import { AppContainer } from 'react-hot-loader'

import { App } from './AssayTypeSelect'

const render = () => {
ReactDOM.render(
<AppContainer>
<App/>
</AppContainer>,
document.getElementById('app')
)
ReactDOM.render(<App/>, document.getElementById('app'))
};

declare const module: any;

if (module.hot) {
module.hot.accept();
}

render();
Loading

0 comments on commit eb6ed8c

Please sign in to comment.