Skip to content
Snippets Groups Projects
Commit 912b76b1 authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[ivette] try to fix api doc

 - typedoc does not work with recursive types
parent 8d91e674
No related branches found
No related tags found
No related merge requests found
...@@ -39,14 +39,14 @@ ...@@ -39,14 +39,14 @@
"eslint-config-airbnb": "^18.1.0", "eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^7.2.1", "eslint-config-airbnb-typescript": "^7.2.1",
"eslint-plugin-import": "^2.20.2", "eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-react": "^7.19.0", "eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0", "eslint-plugin-react-hooks": "^3.0.0",
"html-loader": "1.0.0-alpha.0", "html-loader": "1.0.0-alpha.0",
"jsdoc": "^3.6.3", "jsdoc": "^3.6.3",
"react-hot-loader": "^4.12.20", "react-hot-loader": "^4.12.20",
"serve": "^11.3.0", "serve": "^11.3.0",
"typedoc": "^0.17.6", "typedoc": "^0.17.8",
"typedoc-plugin-external-module-name": "^3.1.0", "typedoc-plugin-external-module-name": "^3.1.0",
"typescript": "^3.8.3", "typescript": "^3.8.3",
"webpack": "^4.41.4" "webpack": "^4.41.4"
...@@ -59,9 +59,9 @@ ...@@ -59,9 +59,9 @@
"react": "^16.8", "react": "^16.8",
"react-dom": "^16.13.1", "react-dom": "^16.13.1",
"react-draggable": "^4.2.0", "react-draggable": "^4.2.0",
"react-fast-compare": "^3.2.0",
"react-virtualized": "^9.21.2", "react-virtualized": "^9.21.2",
"source-map-support": "^0.5.16", "source-map-support": "^0.5.16",
"react-fast-compare": "^3.2.0",
"zeromq": "^6.0.0-beta.5" "zeromq": "^6.0.0-beta.5"
} }
} }
...@@ -15,7 +15,6 @@ import { Component, TitleBar } from 'frama-c/LabViews'; ...@@ -15,7 +15,6 @@ import { Component, TitleBar } from 'frama-c/LabViews';
import { printFunction, markerInfo } from 'api/kernel/ast'; import { printFunction, markerInfo } from 'api/kernel/ast';
import 'codemirror/mode/clike/clike'; import 'codemirror/mode/clike/clike';
import 'codemirror/theme/ambiance.css'; import 'codemirror/theme/ambiance.css';
import 'codemirror/theme/solarized.css'; import 'codemirror/theme/solarized.css';
......
...@@ -88,7 +88,6 @@ const defaultFilter = ...@@ -88,7 +88,6 @@ const defaultFilter =
alarms: defaultAlarmsFilter, alarms: defaultAlarmsFilter,
}; };
function filterStatus( function filterStatus(
f: typeof defaultStatusFilter, f: typeof defaultStatusFilter,
status: Properties.propStatus, status: Properties.propStatus,
...@@ -450,7 +449,6 @@ const RenderTable = () => { ...@@ -450,7 +449,6 @@ const RenderTable = () => {
model.setFilterFunction(selectedFunction); model.setFilterFunction(selectedFunction);
}, [model, selectedFunction]); }, [model, selectedFunction]);
// Callbacks // Callbacks
const onPropertySelection = React.useCallback( const onPropertySelection = React.useCallback(
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment