diff --git a/ivette/Makefile b/ivette/Makefile
index 98ba49b41697311318867a42d619f40ba66b3ab6..bfb87da1f697773c351ceb614b00e89000e71b2d 100644
--- a/ivette/Makefile
+++ b/ivette/Makefile
@@ -156,8 +156,9 @@ DOC_GUIDES= src/dome/doc/guides
 
 NODEBIN= ./node_modules/.bin
 
-DOCDIRS= src/ivette src/dome/renderer src/dome/utils src/frama-c/api
-DOCFILES= src/frama-c/server.ts src/frama-c/states.ts $(shell find $(DOCDIRS) -name "*.ts" -or -name "*.tsx")
+DOCDIRS= src/ivette src/dome/renderer src/dome/misc src/frama-c/kernel/api src/frama-c/plugins/*/api
+ENTRYPOINTS= $(addprefix -entryPoints , $(DOCDIRS))
+DOCFILES= src/frama-c/server.ts src/frama-c/states.ts --entryPointStrategy expand $(ENTRYPOINTS)
 
 icons: $(DOC_ICONS_GALLERY)
 
diff --git a/ivette/package.json b/ivette/package.json
index a443b467f10619e0554b46a7f8b740b19863c915..6f63bfb2c0cef86b94ae3b1d4dad5909420c1462 100644
--- a/ivette/package.json
+++ b/ivette/package.json
@@ -48,7 +48,7 @@
     "react-dom": "^18",
     "react-draggable": "^4.4.6",
     "react-fast-compare": "^3.2.2",
-    "react-flame-graph" : "^1.4.0",
+    "react-flame-graph": "^1.4.0",
     "react-force-graph-2d": "^1.25.4",
     "react-force-graph-3d": "^1.24.2",
     "react-infinite-scroller": "^1.2.6",
@@ -56,7 +56,8 @@
     "react-virtualized": "9.22.5",
     "react-virtualized-auto-sizer": "^1.0.22",
     "source-map-support": "^0.5.21",
-    "tippy.js": "6.3.7"
+    "tippy.js": "6.3.7",
+    "typedoc": "^0.26.6"
   },
   "devDependencies": {
     "@electron-toolkit/eslint-config-prettier": "^2.0.0",
diff --git a/ivette/src/dome/doc/guides/application.md b/ivette/src/dome/doc/guides/application.md
index 484a3c959757acde19a11f3730bba6c6885e087e..74d048887503a7449ad843679341f866deb1d2b5 100644
--- a/ivette/src/dome/doc/guides/application.md
+++ b/ivette/src/dome/doc/guides/application.md
@@ -57,8 +57,6 @@ system events;
 responsible for rendering the application main window and
 binding callbacks to application services.
 
-<img src="dataflow.png" style="float: right; width: 30em"/>
-
 Such an architecture is typical of a _Model-View-Controller_ design, but
 revisited to scale. In particular, data flow between those three different
 layers shall follow a unique-direction pattern in order to avoid the
diff --git a/ivette/src/dome/doc/guides/development.md b/ivette/src/dome/doc/guides/development.md
index e2269e794490c6d9ee082bc82968277a340ac4e3..b7eaa95003dbf98b77ff6e7fe285225ddb88ee6d 100644
--- a/ivette/src/dome/doc/guides/development.md
+++ b/ivette/src/dome/doc/guides/development.md
@@ -64,10 +64,10 @@ As depicted in the [Quick Start](quickstart.md) tutorial, the only file you
 need to create by yourself is the main `Makefile`, with a minimal content
 limited to:
 
-```makefile
-DOME="..." ;; path to your dome installation
-include $(DOME)/template/makefile
-```
+  ```make
+  DOME="..." ;; path to your dome installation
+  include $(DOME)/template/makefile
+  ```
 
 The following table lists the main files and directories of your project, with
 the associated entity responsible for it, and whether they should be tracked by
diff --git a/ivette/src/dome/doc/guides/glossary.md b/ivette/src/dome/doc/guides/glossary.md
index d0a89315011696cc76bb0100052e76805f36a810..c5ed383107dfec663dc51c69802e7ba973bdec4e 100644
--- a/ivette/src/dome/doc/guides/glossary.md
+++ b/ivette/src/dome/doc/guides/glossary.md
@@ -12,7 +12,7 @@ subtitle: Glossary
 ## Component Properties
 
 - `id` an element identifier
-- `icon` an icon identifier, as listed in the [icon gallery](tutorial-icons.html)
+- `icon` an icon identifier, as listed in the [icon gallery](icons.md)
 - `label` a short text used as the displayed title of a component
 - `text` textual content to be printed on screen
 - `title` a description for a component, usually provided in a tooltip box
diff --git a/ivette/src/dome/doc/guides/hooks.md b/ivette/src/dome/doc/guides/hooks.md
index 100724e3cabd244a672ae62ae72a0d02ace03590..49a16c340eff9d6b8f460b50724f5584bf39805f 100644
--- a/ivette/src/dome/doc/guides/hooks.md
+++ b/ivette/src/dome/doc/guides/hooks.md
@@ -3,20 +3,4 @@ subtitle: Custom React Hooks
 ---
 
 The **Dome** framework provides several [React Hooks](https://reactjs.org/docs/hooks-intro.html)
-to ease your developpement process. Here is a summary of them.
-
-- [`useUpdate(evt)`](dome_.html#.useUpdate) to trigger re-rendering on **Dome** events;
-- [`useEvent(emitter,event,callback)`](dome_.html#.useEvent) to trigger callbacks on events;
-- [`useForceUpdate()`](dome_.html#.useForceUpdate) to trigger re-rendering on demand;
-- [`useState(settings,defaultValue)`](dome_.html#.useState)
-  similar to `React.useState()` with optional persistent _window_ settings;
-- [`useSwitch(settings,defaultValue)`](dome_.html#.useSwitch)
-  similar to `React.useState()` for boolean values with _window_ settings;
-- [`useGlobalSetting(settings,defaultValue)`](dome_.html#.useGlobalSetting)
-  similar to `React.useState()` with optional persistent _global_ settings;
-- [`useHistory(settings,defaultValue)`](dome_.html#.useHistory)
-  for managing histories
-- [`useClock(period,initStart)`](dome_.html#.useClock)
-returns start/stop clocks synchronized on period.
-- [`useCommand()`](dome_.html#.useCommand) for working with different application instances.
-- See also the [`Dome.State`](dome(renderer).State.html) and the associated hooks.
+to ease your development process.
diff --git a/ivette/src/dome/doc/template/tmpl/container.tmpl b/ivette/src/dome/doc/template/tmpl/container.tmpl
index 3fc3db4f08e64993c09305c9fc64fe96e24078a6..b04d25312772a5f8643444827e293e1b6503fe78 100644
--- a/ivette/src/dome/doc/template/tmpl/container.tmpl
+++ b/ivette/src/dome/doc/template/tmpl/container.tmpl
@@ -153,7 +153,7 @@
                if ( s.startsWith('<p>') && s[3].toUpperCase() !== s[3] )
                  makeWarning( m , "Not capitalized @summary" );
                if ( s.startsWith('<p>') && ! s.endsWith('.</p>') )
-                 makeWarning( m , "Missing @summary final '.'" );
+                 makeWarning( m , "Missing final '.'" );
                return s;
             }
             let descr = m.description ;
diff --git a/ivette/src/dome/misc/system.ts b/ivette/src/dome/misc/system.ts
index d33f7fcef33bc8aa22b393eff81b2073c96912cf..82e0aefc1c0e8a10f2752df1fdf9b26c6d171451 100644
--- a/ivette/src/dome/misc/system.ts
+++ b/ivette/src/dome/misc/system.ts
@@ -91,8 +91,8 @@ switch (process.platform) {
 }
 
 /**
-   @summary System platform.
-   @description
+   System platform.
+
    Similar to `process.platform`, but fall into fewer categories:
    - `'macos'` for Mac OSX,
    - `'windows'` for Windows (32 or 64)
@@ -187,48 +187,53 @@ export function getArguments(): string[] { return COMMAND_ARGV; }
 // --------------------------------------------------------------------------
 
 /**
-   @summary Join file paths.
+   Join file paths.
+
+   Same as [Node `path.join`](https://nodejs.org/dist/latest-v12.x/docs/api/path.html#path_path_join_paths)
+
    @param {string} [...paths] - a sequence of path segments
    @return {string} the joined filepath
-   @description
-   Same as [Node `path.join`](https://nodejs.org/dist/latest-v12.x/docs/api/path.html#path_path_join_paths)
 */
 export const { join } = path;
 
 /**
-   @summary Absolute (joined) file paths.
+   Absolute (joined) file paths.
+
+   Same as [Node `path.resolve`](https://nodejs.org/dist/latest-v12.x/docs/api/path.html#path_path_resolve_paths)
+
    @param {string} [...paths] - a sequence of path segments
    @return {string} the corresponding absolute path
-   @description
-   Same as [Node `path.resolve`](https://nodejs.org/dist/latest-v12.x/docs/api/path.html#path_path_resolve_paths)
 */
 export const { resolve } = path;
 
 /**
-   @summary Dirname of path.
+   Dirname of path.
+
+   Same as [Node `path.dirname`](https://nodejs.org/dist/latest-v12.x/docs/api/path.html#path_path_dirname_path)
+
    @param {string} path - a file path
    @return {string} the dirname of the path
-   @description
-   Same as [Node `path.dirname`](https://nodejs.org/dist/latest-v12.x/docs/api/path.html#path_path_dirname_path)
 */
 export const { dirname } = path;
 
 /**
-   @summary Basename of path.
+   Basename of path.
+
+   Same as [Node `path.basename`](https://nodejs.org/dist/latest-v12.x/docs/api/path.html#path_path_basename_path_ext)
+
    @param {string} path - a file path
    @param {string} [ext] - file extension to remove
    @return {string} the basename of the path
-   @description
-   Same as [Node `path.basename`](https://nodejs.org/dist/latest-v12.x/docs/api/path.html#path_path_basename_path_ext)
 */
 export const { basename } = path;
 
 /**
-   @summary File extension of path.
-   @param {string} path - a file path
-   @return {string} the file extension of the path
-   @description
+   File extension of path.
+
    Same as [Node `path.extname`](https://nodejs.org/dist/latest-v12.x/docs/api/path.html#path_path_extname_path)
+
+   @return {string} the file extension of the path
+   @param {string} path - a file path
 */
 export const { extname } = path;
 
@@ -327,10 +332,11 @@ export async function writeFile(path: string, content: string): Promise<void> {
 
 /**
    Copy file to a new path.
-   @param srcPath - the source file path
-   @param tgtPath - the target file path
 
    Promisified `fs.copyFile`.
+
+   @param srcPath - the source file path
+   @param tgtPath - the target file path
  */
 export async function copyFile(srcPath: string, tgtPath: string): Promise<void> {
   return fs.promises.copyFile(srcPath, tgtPath);
@@ -342,12 +348,12 @@ export async function copyFile(srcPath: string, tgtPath: string): Promise<void>
 
 /**
    Reads a directory.
-   @returns directory contents (local names)
 
    Promisified `fs.readdir`.
-
    Uses `utf-8` encoding to obtain (relative) file names instead of byte buffers.
    On MacOS, `.DS_Store` entries are filtered out.
+
+   @returns directory contents (local names)
 */
 export async function readDir(path: string): Promise<string[]> {
   const filterDir = (f: string): boolean => f !== '.DS_Store';
@@ -367,9 +373,7 @@ const CREATE_DIR_OPTIONS: fs.MakeDirectoryOptions = {
 /**
    Creates a new directory. Defaults permission is recursive `0o777`.
 
-   Promisified
-   [Node `fs.mkdir`](https://nodejs.org/dist/latest-v12.x/docs/api/fs.html#fs_fs_mkdir_path_options_callback).
-
+   Promisified `fs.mkdir`.
 */
 export function mkDir(
   path: string,
@@ -389,8 +393,7 @@ export function mkDir(
 /**
    Remove a file.
 
-   Promisified
-   [Node `fs.unlink`](https://nodejs.org/dist/latest-v12.x/docs/api/fs.html#fs_fs_unlink_path_callback)
+   Promisified `fs.unlink`.
 */
 export function remove(path: string): Promise<void> {
   return new Promise((result, reject) => {
diff --git a/ivette/src/dome/misc/utils.ts b/ivette/src/dome/misc/utils.ts
index 9b183b50fc13e6ec4a4a8992adf42f8a2e4de604..91bf1cfe5eb3816a81df2ed85d55eae7a87def38 100644
--- a/ivette/src/dome/misc/utils.ts
+++ b/ivette/src/dome/misc/utils.ts
@@ -31,7 +31,7 @@
 
 import type { CSSProperties } from 'react';
 
-type Falsy = undefined | boolean | null | '';
+export type Falsy = undefined | boolean | null | '';
 
 export type ClassSpec = string | Falsy | { [cname: string]: true | Falsy };
 
diff --git a/ivette/src/dome/renderer/controls/icons.tsx b/ivette/src/dome/renderer/controls/icons.tsx
index 12e2b96a8a2ccaa8975ef8ac5bff00c533d54251..dbc4ec33e7b7b6d21f085f59a3d6e5e8e0382587 100644
--- a/ivette/src/dome/renderer/controls/icons.tsx
+++ b/ivette/src/dome/renderer/controls/icons.tsx
@@ -122,7 +122,7 @@ export interface IconProps extends SVGprops {
 
 /**
    Icon Component.
-   Consult the [Icon Gallery](../guides/icons.md.html) for default icons.
+   Consult the [Icon Gallery](../../doc/guides/icons.md) for default icons.
  */
 export function Icon(props: IconProps): JSX.Element {
   const {
@@ -173,7 +173,7 @@ export interface BadgeProps {
    Rounded icon, number or letter.
    Depending on the type of value, display either a number,
    a label, or the corresponding named icon.
-   Consult the [Icon Gallery](gallery-icons.html) for default icons.
+   Consult the [Icon Gallery](../../doc/guides/icons.md) for default icons.
  */
 export function Badge(props: BadgeProps): JSX.Element {
   const { value, title, onClick } = props;
diff --git a/ivette/src/dome/renderer/data/library.js b/ivette/src/dome/renderer/data/library.js
index 2c2c3090cc553dd533c9b54f647d9526de5c0561..1951867d530f645663bb1a5809a329c80dccb7a7 100644
--- a/ivette/src/dome/renderer/data/library.js
+++ b/ivette/src/dome/renderer/data/library.js
@@ -27,23 +27,23 @@
 /**
    @packageDocumentation
    @module dome/data/library
-   @description
+
    This module allows to integrate data definitions within React elements.
 
    Typically, you can use it to define your own structure of logical elements
    and display them at different places in the GUI. For instance, you may
    want to define a custom list of elements, where each element
-   will be rendered twice: locally with the currenly selected item, and in a side-bar
+   will be rendered twice: locally with the currently selected item, and in a side-bar
    or in the menu-bar, or for any other purpose than rendering. You want to declare
    your list like this:
 
-   * ```jsx
-   * <MyList>
-   *   <MyItem id={A} ... >...</MyItem>
-   *   <MyItem id={B} ... >...</MyItem>
-   *   <MyItem id={C} ... >...</MyItem>
-   * </MyList>
-   * ```
+   ```jsx
+     <MyList>
+       <MyItem id={A} ... >...</MyItem>
+       <MyItem id={B} ... >...</MyItem>
+       <MyItem id={C} ... >...</MyItem>
+     </MyList>
+   ```
 
    Dome data libraries, as provided by this module, allows you to define such
    collection of data mixed with rendered elements.
@@ -70,7 +70,7 @@
    visible elements in the DOM. You may think of data elements as having a
    double rendering: mounted data items are collected into libraries, and normal visible
    elements are collected into the React virtual DOM. Each kind of data element is
-   rendered differenly with this respect:
+   rendered differently with this respect:
 
    - `<Data.Item>` renders its children within a React fragment;
    - `<Data.Node>` is like an item, with its data children stored in the registered item;
@@ -125,11 +125,11 @@ const reOrder = (items) =>
     .map((item, order) => Object.assign(item, { order }));
 
 /**
-    @summary Data Collector.
-    @description
+    Data Collector.
+
     Libraries are used to collect data through the React virtual DOM.
 */
-class Library extends EventEmitter {
+export class Library extends EventEmitter {
 
   constructor() {
     super();
@@ -147,7 +147,7 @@ class Library extends EventEmitter {
   };
 
   /**
-     @summary Register Item.
+     Register Item.
      @param {object} item - must have an `'id'` property
    */
   add(item) {
@@ -159,7 +159,7 @@ class Library extends EventEmitter {
   }
 
   /**
-     @summary Remove Item.
+     Remove Item.
      @param {string} id - the item identifier to remove
    */
   remove(id) {
@@ -168,7 +168,7 @@ class Library extends EventEmitter {
   }
 
   /**
-     @summary Bugger Contents.
+     Bugger Contents.
      @return {Array<object>} items array sorted by `'order'` and `'id'` properties.
    */
   contents() {
@@ -176,13 +176,13 @@ class Library extends EventEmitter {
   }
 
   /**
-     @summary Register callback.
+     Register callback.
      @param {function} callback - invoked when library contents changes
   **/
   on(callback) { this.on('trigger', callback); }
 
   /**
-     @summary Un-register callback.
+     Un-register callback.
      @param {function} callback - callback to unregister
   **/
   off(callback) { this.off('trigger', callback); }
@@ -190,20 +190,19 @@ class Library extends EventEmitter {
 }
 
 /**
-   @summary Creates a Data library.
+   Creates a Data library. Same as `new Library()`.
    @return {Library} a newly created, empty library.
-   @description
-   Same as `new Library()`.
  */
 export function createLibrary() { return new Library(); }
 
 /**
-   @summary Collect living items from the library (Custom React Hook).
-   @param {Library} library - the desired library
-   @return {Array<items>} items currently mounted in the library
-   @description
+   Collect living items from the library (Custom React Hook).
+
    This hook is automatically updated whenever an item is added or removed
    from the library.
+
+   @param {Library} library - the desired library
+   @return {Array} items currently mounted in the library
  */
 export function useLibrary(library) {
   const forceUpdate = Dome.useForceUpdate();
@@ -212,15 +211,15 @@ export function useLibrary(library) {
 }
 
 /**
-   @summary Use a locally created new library (Custom React Hook).
-   @return {object} `{ library, items }` the local library and its collected items
-   @description
+   Use a locally created new library (Custom React Hook).
+
    This is a combination of a locally created library _and_ its collected items.
    Same as:
-   ```
-   const library = React.useMemo( createLibrary , [] );
-   const items = useLibrary( library );
-   ```
+
+      const library = React.useMemo( createLibrary , [] );
+      const items = useLibrary( library );
+
+   @return {object} `{ library, items }` the local library and its collected items
  */
 export function useLocalLibrary() {
   const library = React.useMemo(createLibrary, []);
@@ -235,7 +234,7 @@ const makePath = (path, order) =>
   order === undefined ? path : path.slice(0, -1).concat(order);
 
 /**
-   @summary Current library (Custom React Hook).
+   Current library (Custom React Hook).
    @return {Library} in local context
  */
 export function useCurrentLibrary() {
@@ -287,25 +286,22 @@ function makeChildren(path, children) {
 // --------------------------------------------------------------------------
 
 /**
-   @summary Data Item definition.
+   Data Item definition.
+
+   Register a new item `{ id, order, props }` in the library.
+   If not specified, the current context library is used. If no identifier nor
+   library is actually available, the item definition is skipped.
+
+   An `<Item/>` element renders its children in a nested, ordered fragment,
+   but with the same current library than the inherited one, if any.
+
    @property {Library} [lib] - data library collecting the item
    @property {string} [id] - item identifier
    @property {number} [order] - item local ordering (default: inherited)
    @property {any} [...props] - other item properties
    @property {React.Children} [children] - rendered elements
-   @description
-   Register a new item in the library:
 
-   ```
-   { id, order, props }
-   ```
-
-   If not specified, the current context library is used. If no identifier nor
-   library is actually available, the item definition is skipped.
-
-   An `<Item/>` element rendres its children in a nested, ordered fragment,
-   but with the same current library than the inherited one, if any.
-*/
+   */
 export const Item = ({ children, ...props }) => {
   let path = useLocalItem(props);
   return (<React.Fragment>{makeChildren(path, children)}</React.Fragment>);
@@ -316,22 +312,12 @@ export const Item = ({ children, ...props }) => {
 // --------------------------------------------------------------------------
 
 /**
-   @summary Data Component definition.
-   @property {Library} [lib] - data library collecting the item (default: inherited)
-   @property {string} id - item identifier (default: skip item definition)
-   @property {number} [order] - item order (default: parent fragment ordering)
-   @property {any} [...props] - registered item properties
-   @property {React.Children} [children] - component _virtual_ elements
-   @description
-   Register a new item in the library. If enabled and not disabled,
-   the collected item data will be:
+   Data Component definition.
 
-   ```
-   { id, order, props, children: React.Children }
-   ```
+   Register a new item in the library.
 
    The specified order property is used to sort this item among its immediate
-   neighbours in the React virtual DOM. The final item order is determined with
+   neighbors in the React virtual DOM. The final item order is determined with
    respect to all the other collected items.
 
    Children elements of the `<Component/>` are _not_ mounted into the React
@@ -341,7 +327,14 @@ export const Item = ({ children, ...props }) => {
    to these children.
 
    The component element itself is rendered as `null` when mounted in the virtual DOM by React.
-*/
+
+   @property {Library} [lib] - data library collecting the item (default: inherited)
+   @property {string} id - item identifier (default: skip item definition)
+   @property {number} [order] - item order (default: parent fragment ordering)
+   @property {any} [...props] - registered item properties
+   @property {React.Children} [children] - component _virtual_ elements
+
+   */
 export const Component = ({ children, ...props }) => {
   useLocalItem(props, children);
   return null;
@@ -352,21 +345,11 @@ export const Component = ({ children, ...props }) => {
 // --------------------------------------------------------------------------
 
 /**
-   @summary Recursive Data Item definition.
-   @property {Library} [lib] - data library collecting the item (default: inherited)
-   @property {string} id - item identifier (default: skip item definition)
-   @property {number} [order] - item order (default: parent fragment ordering)
-   @property {any} [...props] - registered item properties
-   @property {React.Children} [children] - sub-data and rendering of the item
-   @description
-   Register a new item in the library, as follows:
-
-   ```
-   { id, order, props, children: Array<item> }
-   ```
+   Recursive Data Item definition.
+   Register a new item in the library with the given children.
 
    The specified order property is used to sort this item among its immediate
-   neighbours in the React virtual DOM. The final item order is determined with
+   neighbors in the React virtual DOM. The final item order is determined with
    respect to all the other collected items.
 
    A _new_ local library is created and associated to this `<Node/>` element, and propagated
@@ -376,6 +359,12 @@ export const Component = ({ children, ...props }) => {
    Hence, children elements of the node item _are_ rendered in the virtual React DOM,
    but their data elements are collected and stored in the `children` property of the
    defined `<Node/>` item.
+
+   @property {Library} [lib] - data library collecting the item (default: inherited)
+   @property {string} id - item identifier (default: skip item definition)
+   @property {number} [order] - item order (default: parent fragment ordering)
+   @property {any} [...props] - registered item properties
+   @property {React.Children} [children] - sub-data and rendering of the item
 */
 export const Node = ({ children, ...props }) => {
   let { library, items } = useLocalLibrary();
@@ -392,7 +381,7 @@ export const Node = ({ children, ...props }) => {
 // --------------------------------------------------------------------------
 
 /**
-   @summary Ordered Data Collection.
+   Ordered Data Collection.
    @property {Library} [lib] - local library to use
    @property {Sortable} [order] - local order to use (default: inherited)
    @property {boolean} [enabled] - fragment shall be rendered (default: `true`)
diff --git a/ivette/src/dome/renderer/dnd.tsx b/ivette/src/dome/renderer/dnd.tsx
index 2162c6b3497602f92ed2ce1c52c122419caae913..ae2555b5c150c1f35c72b05378159ab051fede8b 100644
--- a/ivette/src/dome/renderer/dnd.tsx
+++ b/ivette/src/dome/renderer/dnd.tsx
@@ -23,7 +23,6 @@
 /**
    @packageDocumentation
    @module dome/dnd
-   @description
 
    D&D Facilities
  */
diff --git a/ivette/src/dome/renderer/dome.tsx b/ivette/src/dome/renderer/dome.tsx
index ffaaa36e3a5337beb2d6ba71cad1a934dfc279d1..38c44963ee933669c08a8dba1a6f14e65c9273eb 100644
--- a/ivette/src/dome/renderer/dome.tsx
+++ b/ivette/src/dome/renderer/dome.tsx
@@ -777,7 +777,7 @@ export function useTimer(period: number, callback: () => void): void {
   }, [period, callback]);
 }
 
-type Callback<A> = (arg: A) => void;
+export type Callback<A> = (arg: A) => void;
 
 /**
  * Protected callback against unwanted dependencies and unmounted component.
diff --git a/ivette/src/dome/renderer/errors.tsx b/ivette/src/dome/renderer/errors.tsx
index 9635e2625d646e286b94d603edcd3b63d6055826..5fabb108397d969bf6a2f31feb05297fb8c14276 100644
--- a/ivette/src/dome/renderer/errors.tsx
+++ b/ivette/src/dome/renderer/errors.tsx
@@ -56,7 +56,7 @@ export interface CatchProps {
   children: ReactNode;
 }
 
-interface CatchState {
+export interface CatchState {
   error?: unknown;
   info?: unknown;
 }
diff --git a/ivette/src/dome/renderer/frame/toolbars.tsx b/ivette/src/dome/renderer/frame/toolbars.tsx
index 5cde88b571d735ca163fc73cd1f20b6d2e761d13..e4092b5b9f108f4504d840b2b14a73c387716ca9 100644
--- a/ivette/src/dome/renderer/frame/toolbars.tsx
+++ b/ivette/src/dome/renderer/frame/toolbars.tsx
@@ -48,7 +48,7 @@ export interface ToolBarProps {
 
 /**
    @class
-   @summary Container for toolbar items.
+   Container for toolbar items.
  */
 export function ToolBar(props: ToolBarProps): JSX.Element | null {
   const { children } = props;
@@ -137,7 +137,7 @@ export type ButtonKind =
   | 'default' | 'cancel' | 'warning' | 'positive' | 'negative';
 
 export interface ButtonProps<A> {
-  /** Button icon, Cf. [gallery](gallery-icons.html). */
+  /** Button icon, Cf. [gallery](../../doc/guides/icons.md). */
   icon?: string;
   /** Button label. */
   label?: string;
diff --git a/ivette/src/dome/renderer/table/arrays.ts b/ivette/src/dome/renderer/table/arrays.ts
index 45eed6bfc269d3001ed0df80f5ba37e19c37a13a..83dc6d909910bf56a0828a4c9b94f39e71d5435d 100644
--- a/ivette/src/dome/renderer/table/arrays.ts
+++ b/ivette/src/dome/renderer/table/arrays.ts
@@ -412,7 +412,7 @@ export class ArrayModel<Key, Row>
      Silently removes the entries.
      Modification will be only visible after a final [[reload]].
      Useful for a large number of batched updates.
-     @param key - the removed entry.
+     @param keys - the entries to remove.
    */
   removeData(keys: Collection<Key>): void {
     forEach(keys, (k) => this.index.delete(k));
@@ -472,7 +472,9 @@ export class CompactModel<Key, Row> extends ArrayModel<Key, Row> {
 
   getkey: (d: Row) => Key;
 
-  /** @param key - the key property of `Row` holding an entry identifier. */
+  /**
+   * @param getkey -
+   * returns the key property of `Row` holding an entry identifier. */
   constructor(getkey: (d: Row) => Key) {
     super();
     this.getkey = getkey;
diff --git a/ivette/src/dome/renderer/text/richtext.tsx b/ivette/src/dome/renderer/text/richtext.tsx
index 494f437b3fe72022ba8a5260a27506dd3a82ae6f..3486c4509b02f50c0ad9761e7ea0ee9de334b2de 100644
--- a/ivette/src/dome/renderer/text/richtext.tsx
+++ b/ivette/src/dome/renderer/text/richtext.tsx
@@ -51,7 +51,7 @@ export function byOffset(a : Offset, b : Offset): number
   return (a.offset - b.offset);
 }
 
-type View = CM.EditorView | null;
+export type View = CM.EditorView | null;
 
 const clipRange = (a: number, value: number, b: number): number => {
   if (value < a) return a;
diff --git a/ivette/src/frama-c/server.ts b/ivette/src/frama-c/server.ts
index 23fcecf9e276d65636df59fb50296c3a512592d4..0e135187f4f8b7cc3097f2e2b967e3d42993eaa4 100644
--- a/ivette/src/frama-c/server.ts
+++ b/ivette/src/frama-c/server.ts
@@ -705,8 +705,8 @@ function _signal(id: string): SignalHandler {
  *  @param {string} id The signal identifier to listen to.
  *  @param {function} callback The callback to call upon signal.
  */
-export function onSignal(s: Signal, callback: () => void): void {
-  _signal(s.name).on(callback);
+export function onSignal(id: Signal, callback: () => void): void {
+  _signal(id.name).on(callback);
 }
 
 /**
@@ -717,8 +717,8 @@ export function onSignal(s: Signal, callback: () => void): void {
  *  @param {string} id The signal identifier that was listen to.
  *  @param {function} callback The callback to remove.
  */
-export function offSignal(s: Signal, callback: () => void): void {
-  _signal(s.name).off(callback);
+export function offSignal(id: Signal, callback: () => void): void {
+  _signal(id.name).off(callback);
 }
 
 /**
@@ -726,10 +726,10 @@ export function offSignal(s: Signal, callback: () => void): void {
  *  @param {string} id The signal identifier to listen to.
  *  @param {function} callback The callback to call upon signal.
  */
-export function useSignal(s: Signal, callback: () => void): void {
+export function useSignal(id: Signal, callback: () => void): void {
   React.useEffect(() => {
-    onSignal(s, callback);
-    return () => { offSignal(s, callback); };
+    onSignal(id, callback);
+    return () => { offSignal(id, callback); };
   });
 }
 
diff --git a/ivette/src/ivette/laboratory.tsx b/ivette/src/ivette/laboratory.tsx
index ff26adc019275bd62339f2240297aaac49b8de38..494168cf6984c662a32d5e24d0b73b8eaded25e8 100644
--- a/ivette/src/ivette/laboratory.tsx
+++ b/ivette/src/ivette/laboratory.tsx
@@ -48,10 +48,10 @@ import * as State from 'ivette/state';
 type tabKey = string;
 type viewId = string;
 
-interface Split { H: number, V: number }
-interface Layout { A: compId, B: compId, C: compId, D: compId }
+export interface Split { H: number, V: number }
+export interface Layout { A: compId, B: compId, C: compId, D: compId }
 
-interface TabViewState {
+export interface TabViewState {
   key: tabKey, /* viewId@custom for custom, or viewId */
   viewId: viewId,
   custom: number, /* 0: normal, n>0: custom */
@@ -59,7 +59,7 @@ interface TabViewState {
   stack: Layout[], /* current at index 0 */
 }
 
-interface LabViewState {
+export interface LabViewState {
   split: Split;
   stack: Layout[];
   panels: Set<compId>;
@@ -889,7 +889,7 @@ function LayoutMenu(): JSX.Element | null {
 /* --- Notification Stack                                                 --- */
 /* -------------------------------------------------------------------------- */
 
-type NotificationKind = 'message' | 'warning' | 'error';
+export type NotificationKind = 'message' | 'warning' | 'error';
 
 export interface Notification {
   kind: NotificationKind;
@@ -1030,7 +1030,7 @@ export function LabView(): JSX.Element {
 /* --- View Sidebar Section                                               --- */
 /* -------------------------------------------------------------------------- */
 
-interface ViewItemProps {
+export interface ViewItemProps {
   view: Ivette.ViewLayoutProps;
   selected: boolean;
   displayed: boolean;
@@ -1111,7 +1111,7 @@ function ViewSection(): JSX.Element {
 /* --- Component Sidebar Item                                             --- */
 /* -------------------------------------------------------------------------- */
 
-interface ComponentItemProps {
+export interface ComponentItemProps {
   comp: Ivette.ComponentProps;
   position: LayoutPosition | undefined;
   selected: boolean;
@@ -1165,7 +1165,7 @@ export function ComponentItem(props: ComponentItemProps): JSX.Element {
 /* --- Group Sidebar Section                                              --- */
 /* -------------------------------------------------------------------------- */
 
-interface ID { id: string }
+export interface ID { id: string }
 
 export const inGroup = (g: ID) => (e: ID) => e.id.startsWith(g.id + '.');
 export const groupOf = (e: ID) => (g: ID) => e.id.startsWith(g.id + '.');
diff --git a/ivette/tsconfig.json b/ivette/tsconfig.json
index a7bc1c3b95b268cbaab2c0b578859e0822b756ed..f014517f38220cfed798aa9f57f96b058b92f7eb 100644
--- a/ivette/tsconfig.json
+++ b/ivette/tsconfig.json
@@ -96,7 +96,6 @@
   "include": [
     "src/**/*",
     "src/**/*.json",
-    "api/**/*",
     "tests/**/*"
   ],
   "exclude": [
@@ -120,7 +119,8 @@
       "Other"
     ],
     "hideGenerator": true,
-    "includes": "src/dome/doc/guides",
+    "highlightLanguages": [ "make", "ts", "tsx" ],
+    "projectDocuments": ["src/dome/doc/guides/*.md"],
     "customCss": "src/dome/doc/gallery.css",
     "readme": "none"
   },
diff --git a/ivette/yarn.lock b/ivette/yarn.lock
index 2f199e3035293664ca748c61734b6ac3db1d2198..d7b59776d4dcb792b059ba7fc1f5d760dab4414b 100644
--- a/ivette/yarn.lock
+++ b/ivette/yarn.lock
@@ -215,6 +215,13 @@
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
+"@babel/runtime@^7.0.0":
+  version "7.25.4"
+  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.4.tgz#6ef37d678428306e7d75f054d5b1bdb8cf8aa8ee"
+  integrity sha512-DSgLeL/FNcpXuzav5wfYvHCGvynXkJbn3Zvc3823AEe9nPwW9IK4UoCSS5yGymmQzN0pCPvivtgS6/8U2kkm1w==
+  dependencies:
+    regenerator-runtime "^0.14.0"
+
 "@babel/runtime@^7.17.8":
   version "7.24.1"
   resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.1.tgz#431f9a794d173b53720e69a6464abc6f0e2a5c57"
@@ -847,6 +854,13 @@
   resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.9.6.tgz#2c1fb69e02a3f1506f52698cfdc3a8b6386df9a6"
   integrity sha512-jqzNLhNDvIZOrt69Ce4UjGRpXJBzhUBzawMwnaDAwyHriki3XollsewxWzOzz+4yOFDkuJHtTsZFwMxhYJWmLQ==
 
+"@shikijs/core@1.14.1":
+  version "1.14.1"
+  resolved "https://registry.yarnpkg.com/@shikijs/core/-/core-1.14.1.tgz#008f1c4a20ff83fd1672d9e31d76b687862f7511"
+  integrity sha512-KyHIIpKNaT20FtFPFjCQB5WVSTpLR/n+jQXhWHWVUMm9MaOaG9BGOG0MSyt7yA4+Lm+4c9rTc03tt3nYzeYSfw==
+  dependencies:
+    "@types/hast" "^3.0.4"
+
 "@sindresorhus/is@^4.0.0":
   version "4.6.0"
   resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz"
@@ -987,6 +1001,13 @@
   dependencies:
     "@types/node" "*"
 
+"@types/hast@^3.0.4":
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/@types/hast/-/hast-3.0.4.tgz#1d6b39993b82cea6ad783945b0508c25903e15aa"
+  integrity sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==
+  dependencies:
+    "@types/unist" "*"
+
 "@types/http-cache-semantics@*":
   version "4.0.4"
   resolved "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz"
@@ -1110,6 +1131,11 @@
   resolved "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz"
   integrity sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==
 
+"@types/unist@*":
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.3.tgz#acaab0f919ce69cce629c2d4ed2eb4adc1b6c20c"
+  integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==
+
 "@types/verror@^1.10.3":
   version "1.10.9"
   resolved "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.9.tgz#420c32adb9a2dd50b3db4c8f96501e05a0e72941"
@@ -2722,6 +2748,11 @@ end-of-stream@^1.1.0, end-of-stream@^1.4.1:
   dependencies:
     once "^1.4.0"
 
+entities@^4.4.0:
+  version "4.5.0"
+  resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
+  integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
+
 env-paths@^2.2.0:
   version "2.2.1"
   resolved "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz"
@@ -4233,6 +4264,13 @@ lie@~3.3.0:
   dependencies:
     immediate "~3.0.5"
 
+linkify-it@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-5.0.0.tgz#9ef238bfa6dc70bd8e7f9572b52d369af569b421"
+  integrity sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==
+  dependencies:
+    uc.micro "^2.0.0"
+
 locate-path@^6.0.0:
   version "6.0.0"
   resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"
@@ -4319,6 +4357,11 @@ lru-cache@^7.7.1:
   resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89"
   integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==
 
+lunr@^2.3.9:
+  version "2.3.9"
+  resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1"
+  integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==
+
 magic-string@^0.30.5:
   version "0.30.5"
   resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz"
@@ -4348,6 +4391,18 @@ make-fetch-happen@^10.0.3:
     socks-proxy-agent "^7.0.0"
     ssri "^9.0.0"
 
+markdown-it@^14.1.0:
+  version "14.1.0"
+  resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-14.1.0.tgz#3c3c5992883c633db4714ccb4d7b5935d98b7d45"
+  integrity sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==
+  dependencies:
+    argparse "^2.0.1"
+    entities "^4.4.0"
+    linkify-it "^5.0.0"
+    mdurl "^2.0.0"
+    punycode.js "^2.3.1"
+    uc.micro "^2.1.0"
+
 matcher@^3.0.0:
   version "3.0.0"
   resolved "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz"
@@ -4355,6 +4410,11 @@ matcher@^3.0.0:
   dependencies:
     escape-string-regexp "^4.0.0"
 
+mdurl@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-2.0.0.tgz#80676ec0433025dd3e17ee983d0fe8de5a2237e0"
+  integrity sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==
+
 "memoize-one@>=3.1.1 <6":
   version "5.2.1"
   resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e"
@@ -4438,6 +4498,13 @@ minimatch@^5.0.1, minimatch@^5.1.0, minimatch@^5.1.1:
   dependencies:
     brace-expansion "^2.0.1"
 
+minimatch@^9.0.5:
+  version "9.0.5"
+  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5"
+  integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==
+  dependencies:
+    brace-expansion "^2.0.1"
+
 minimist@^1.2.0, minimist@^1.2.6:
   version "1.2.8"
   resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz"
@@ -4958,6 +5025,11 @@ pump@^3.0.0:
     end-of-stream "^1.1.0"
     once "^1.3.1"
 
+punycode.js@^2.3.1:
+  version "2.3.1"
+  resolved "https://registry.yarnpkg.com/punycode.js/-/punycode.js-2.3.1.tgz#6b53e56ad75588234e79f4affa90972c7dd8cdb7"
+  integrity sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==
+
 punycode@^2.1.0:
   version "2.1.1"
   resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
@@ -5433,6 +5505,14 @@ shebang-regex@^3.0.0:
   resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
   integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
 
+shiki@^1.9.1:
+  version "1.14.1"
+  resolved "https://registry.yarnpkg.com/shiki/-/shiki-1.14.1.tgz#617e62dfbe3a083e46111e22086044fbd7644786"
+  integrity sha512-FujAN40NEejeXdzPt+3sZ3F2dx1U24BY2XTY01+MG8mbxCiA2XukXdcbyMyLAHJ/1AUUnQd1tZlvIjefWWEJeA==
+  dependencies:
+    "@shikijs/core" "1.14.1"
+    "@types/hast" "^3.0.4"
+
 side-channel@^1.0.4:
   version "1.0.4"
   resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"
@@ -5872,6 +5952,17 @@ typed-array-length@^1.0.4:
     for-each "^0.3.3"
     is-typed-array "^1.1.9"
 
+typedoc@^0.26.6:
+  version "0.26.6"
+  resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.26.6.tgz#9cb3d6f0ed5070f86af169c3f88ca2c9b7031f59"
+  integrity sha512-SfEU3SH3wHNaxhFPjaZE2kNl/NFtLNW5c1oHsg7mti7GjmUj1Roq6osBQeMd+F4kL0BoRBBr8gQAuqBlfFu8LA==
+  dependencies:
+    lunr "^2.3.9"
+    markdown-it "^14.1.0"
+    minimatch "^9.0.5"
+    shiki "^1.9.1"
+    yaml "^2.4.5"
+
 typescript@^4.0.2:
   version "4.9.5"
   resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz"
@@ -5882,6 +5973,11 @@ typescript@^5:
   resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611"
   integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==
 
+uc.micro@^2.0.0, uc.micro@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-2.1.0.tgz#f8d3f7d0ec4c3dea35a7e3c8efa4cb8b45c9e7ee"
+  integrity sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==
+
 unbox-primitive@^1.0.1:
   version "1.0.1"
   resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz"
@@ -6124,6 +6220,11 @@ yallist@^4.0.0:
   resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
   integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
 
+yaml@^2.4.5:
+  version "2.5.0"
+  resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.0.tgz#c6165a721cf8000e91c36490a41d7be25176cf5d"
+  integrity sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==
+
 yargs-parser@^21.1.1:
   version "21.1.1"
   resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz"