Merge branch 'main' into module/wifi
C++ / fmt (pull_request) Successful in 5s
JS/TS / fmt (pull_request) Successful in 17s
JS/TS / lint (pull_request) Successful in 16s
Python / fmt (pull_request) Successful in 31s
Python / lint (pull_request) Successful in 41s
Python / test (pull_request) Successful in 1m5s
Python / typecheck (pull_request) Successful in 1m15s
Rust / clippy (pull_request) Failing after 12m43s
Rust / fmt (pull_request) Failing after 12m57s
Rust / build (pull_request) Failing after 13m33s
Python / buildcheck (pull_request) Failing after 13m45s
C++ / clang-tidy (pull_request) Failing after 14m23s
C++ / build (pull_request) Failing after 14m25s

This commit is contained in:
2026-08-15 20:38:54 +02:00
377 changed files with 7398 additions and 8423 deletions
+10 -9
View File
@@ -1,7 +1,8 @@
import ZShell.Config
import ZShell.Internal
import QtQuick
import QtQuick.Templates
import ZShell.Internal
import qs.Config
import qs.Services
BusyIndicator {
id: root
@@ -17,12 +18,12 @@ BusyIndicator {
}
property int animState
property color bgColor: DynamicColors.palette.m3secondaryContainer
property color fgColor: DynamicColors.palette.m3primary
property real implicitSize: Appearance.font.size.medium * 3
property color bgColor: Colors.palette.m3secondaryContainer
property color fgColor: Colors.palette.m3primary
property real implicitSize: Tokens.font.size.normal * 3
property real internalStrokeWidth: strokeWidth
readonly property alias progress: manager.progress
property real strokeWidth: Appearance.padding.extraSmall
property real strokeWidth: Tokens.padding.small * 0.8
property alias type: manager.indeterminateAnimationType
implicitHeight: implicitSize
@@ -51,7 +52,7 @@ BusyIndicator {
}
transitions: Transition {
Anim {
duration: manager.completeEndDuration * Appearance.anim.durations.scale
duration: manager.completeEndDuration * Tokens.anim.durations.scale
properties: "opacity,internalStrokeWidth"
type: Anim.DefaultEffects
}
@@ -78,7 +79,7 @@ BusyIndicator {
}
NumberAnimation {
duration: manager.duration * Appearance.anim.durations.scale
duration: manager.duration * Tokens.anim.durations.scale
from: 0
loops: Animation.Infinite
property: "progress"
@@ -88,7 +89,7 @@ BusyIndicator {
}
NumberAnimation {
duration: manager.completeEndDuration * Appearance.anim.durations.scale
duration: manager.completeEndDuration * Tokens.anim.durations.scale
from: 0
property: "completeEndProgress"
running: root.animState === CircularIndicator.Completing