diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-19 21:07:19 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-19 21:07:19 -0500 |
| commit | 978a3f430226ae6cead3284329b4dcb309e979ee (patch) | |
| tree | 716c94756a86320eddd07c37e2651b5fb9709bf5 /modules/controlcenter/components/DeviceDetails.qml | |
| parent | refactor: ToggleButton Tooltips and DeviceList (diff) | |
| download | caelestia-shell-978a3f430226ae6cead3284329b4dcb309e979ee.tar.gz caelestia-shell-978a3f430226ae6cead3284329b4dcb309e979ee.tar.bz2 caelestia-shell-978a3f430226ae6cead3284329b4dcb309e979ee.zip | |
cleanup: removed comments
Diffstat (limited to 'modules/controlcenter/components/DeviceDetails.qml')
| -rw-r--r-- | modules/controlcenter/components/DeviceDetails.qml | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/modules/controlcenter/components/DeviceDetails.qml b/modules/controlcenter/components/DeviceDetails.qml index eef0aae..768e77a 100644 --- a/modules/controlcenter/components/DeviceDetails.qml +++ b/modules/controlcenter/components/DeviceDetails.qml @@ -9,38 +9,6 @@ import qs.config import QtQuick import QtQuick.Layouts -/** - * DeviceDetails - * - * A reusable base component for displaying device/network details with a standardized - * structure. Provides a header, connection status section, and flexible sections for - * device-specific information. - * - * This component eliminates duplication across WirelessDetails, EthernetDetails, and Bluetooth Details - * by providing a common structure while allowing full customization of sections. - * - * Usage: - * ```qml - * DeviceDetails { - * session: root.session - * device: session.network.active - * headerComponent: Component { - * ConnectionHeader { - * icon: "wifi" - * title: device?.ssid ?? "" - * } - * } - * sections: [ - * Component { - * // Connection status section - * }, - * Component { - * // Properties section - * } - * ] - * } - * ``` - */ Item { id: root |