C++ / fmt (pull_request) Successful in 4s
JS/TS / fmt (pull_request) Successful in 20s
JS/TS / lint (pull_request) Successful in 22s
Python / static (pull_request) Successful in 57s
Rust / fmt (pull_request) Successful in 1m2s
C++ / build (pull_request) Successful in 2m10s
Rust / build (pull_request) Successful in 1m50s
Rust / clippy (pull_request) Successful in 1m25s
Python / verify (pull_request) Successful in 2m58s
C++ / clang-tidy (pull_request) Successful in 7m8s
39 lines
678 B
QML
39 lines
678 B
QML
import qs.Components
|
|
import ZShell.Config
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import qs.Services
|
|
|
|
Item {
|
|
id: root
|
|
|
|
required property Props props
|
|
required property var visibilities
|
|
|
|
ColumnLayout {
|
|
id: layout
|
|
|
|
anchors.fill: parent
|
|
spacing: Tokens.spacing.small
|
|
|
|
CustomRect {
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
color: Colors.tPalette.m3surfaceContainerLow
|
|
radius: Tokens.rounding.small
|
|
|
|
NotifDock {
|
|
props: root.props
|
|
visibilities: root.visibilities
|
|
}
|
|
}
|
|
|
|
CustomRect {
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: Tokens.padding.small - layout.spacing
|
|
color: Colors.tPalette.m3outlineVariant
|
|
implicitHeight: 1
|
|
}
|
|
}
|
|
}
|