C++ / fmt (pull_request) Successful in 4s
JS/TS / lint (pull_request) Successful in 16s
JS/TS / fmt (pull_request) Successful in 23s
Python / fmt (pull_request) Successful in 33s
Python / lint (pull_request) Successful in 32s
Python / test (pull_request) Successful in 1m0s
Python / typecheck (pull_request) Failing after 1m8s
Rust / fmt (pull_request) Successful in 34s
Rust / build (pull_request) Successful in 1m46s
C++ / build (pull_request) Successful in 2m33s
Rust / clippy (pull_request) Successful in 1m30s
Python / buildcheck (pull_request) Successful in 2m41s
C++ / clang-tidy (pull_request) Successful in 7m9s
42 lines
1.1 KiB
QML
42 lines
1.1 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import qs.Components
|
|
import qs.Modules
|
|
import qs.Helpers
|
|
import ZShell.Config
|
|
import qs.Services
|
|
|
|
CustomRect {
|
|
id: root
|
|
|
|
property int countUpdates: Updates.availableUpdates
|
|
required property bool horizontal
|
|
property color textColor: Colors.palette.m3onSurface
|
|
|
|
color: Colors.tPalette.m3surfaceContainer
|
|
implicitHeight: horizontal ? Config.bar.height : content.implicitHeight + Tokens.spacing.small * 2
|
|
implicitWidth: horizontal ? content.implicitWidth + Tokens.spacing.small * 2 : Config.bar.height
|
|
radius: Tokens.rounding.full
|
|
|
|
GridLayout {
|
|
id: content
|
|
|
|
anchors.centerIn: parent
|
|
columnSpacing: Tokens.spacing.small
|
|
columns: root.horizontal ? -1 : 1
|
|
|
|
MaterialIcon {
|
|
Layout.alignment: root.horizontal ? Qt.AlignVCenter : Qt.AlignHCenter
|
|
font.pointSize: root.horizontal ? Tokens.font.size.larger : Tokens.font.size.large
|
|
text: "package_2"
|
|
}
|
|
|
|
CustomText {
|
|
Layout.alignment: root.horizontal ? Qt.AlignVCenter : Qt.AlignHCenter
|
|
color: root.textColor
|
|
font.pointSize: root.horizontal ? Tokens.font.size.normal : Tokens.font.size.larger
|
|
text: root.countUpdates
|
|
}
|
|
}
|
|
}
|