docs: fix module documentation (#1056)
Some checks are pending
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (cl, cl, windows-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (clang, clang++, macos-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (clang, clang++, ubuntu-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (gcc, g++, macos-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (gcc, g++, ubuntu-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (cl, Windows MSVC, windows-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (gcc, Linux GCC, ubuntu-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (llvm, llvm-cov gcov, Linux Clang, ubuntu-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (llvm, llvm-cov gcov, MacOS clang, macos-latest) (push) Waiting to run
Build / Test modules (llvm, ubuntu-latest) (push) Waiting to run
Documentation / documentation (push) Waiting to run

This commit is contained in:
Arthur Sonzogni
2025-06-05 07:16:53 +02:00
committed by GitHub
parent 3367c3a005
commit a86d8f32d7
37 changed files with 73 additions and 146 deletions

View File

@@ -1,7 +1,6 @@
/// @module ftxui.component.animation
/// @brief Module file for the Animation namespace of the Component module.
/// @brief C++20 module interface for the Animation namespace of the Component module.
///
/// @file animation.cppm
module;

View File

@@ -1,7 +1,5 @@
/**
* @file captured_mouse.cppm
* @brief Module file for the CapturedMouseInterface class of the Component module
*/
/// @module ftxui.component.captured_mouse
/// @brief Module file for the CapturedMouseInterface class of the Component module
module;

View File

@@ -1,7 +1,5 @@
/**
* @file component.cppm
* @brief Module file for the Component classes of the Component module
*/
/// @module ftxui.component.component
/// @brief Module file for the Component classes of the Component module
module;

View File

@@ -1,7 +1,5 @@
/**
* @file component_base.cppm
* @brief Module file for the ComponentBase class of the Component module
*/
/// @module ftxui.component.component_base
/// @brief Module file for the ComponentBase class of the Component module
module;

View File

@@ -1,7 +1,5 @@
/**
* @file component_options.cppm
* @brief Module file for options for the Component class of the Component module
*/
/// @module ftxui.component.component_options
/// @brief Module file for options for the Component class of the Component module
module;

View File

@@ -1,7 +1,5 @@
/**
* @file event.cppm
* @brief Module file for the Event struct of the Component module
*/
/// @module ftxui.component.event
/// @brief Module file for the Event struct of the Component module
module;

View File

@@ -1,7 +1,5 @@
/**
* @file loop.cppm
* @brief Module file for the Loop class of the Component module
*/
/// @module ftxui.component.loop
/// @brief Module file for the Loop class of the Component module
module;

View File

@@ -1,7 +1,5 @@
/**
* @file mouse.cppm
* @brief Module file for the Mouse struct of the Component module
*/
/// @module ftxui.component.mouse
/// @brief Module file for the Mouse struct of the Component module
module;

View File

@@ -1,7 +1,5 @@
/**
* @file receiver.cppm
* @brief Module file for the Receiver class of the Component module
*/
/// @module ftxui.component.receiver
/// @brief Module file for the Receiver class of the Component module
module;

View File

@@ -1,7 +1,5 @@
/**
* @file screen_interactive.cppm
* @brief Module file for the ScreenInteractive class of the Component module
*/
/// @module ftxui.component.screen_interactive
/// @brief Module file for the ScreenInteractive class of the Component module
module;

View File

@@ -1,7 +1,5 @@
/**
* @file task.cppm
* @brief Module file for the Task class of the Component module
*/
/// @module ftxui.component.task
/// @brief Module file for the Task class of the Component module
module;