config moved to c++ plugin, removed old qml + fileview implementation

This commit is contained in:
2026-08-13 02:25:26 +02:00
parent c29b91cd26
commit 3cd3209b28
341 changed files with 4851 additions and 3502 deletions
+8 -7
View File
@@ -2,17 +2,18 @@ pragma ComponentBehavior: Bound
import QtQuick
import QtQuick.Controls
import qs.Config
import ZShell.Config
import qs.Services
TextField {
id: root
background: null
color: DynamicColors.palette.m3onSurface
color: Colors.palette.m3onSurface
cursorVisible: !readOnly
font.family: Appearance.font.family.sans
font.pointSize: Appearance.font.size.smaller
placeholderTextColor: DynamicColors.palette.m3outline
font.pointSize: Tokens.font.size.smaller
placeholderTextColor: Colors.palette.m3outline
renderType: echoMode === TextField.Password ? TextField.QtRendering : TextField.NativeRendering
Behavior on color {
@@ -24,13 +25,13 @@ TextField {
property bool disableBlink
color: DynamicColors.palette.m3primary
color: Colors.palette.m3primary
implicitWidth: 2
radius: Appearance.rounding.normal
radius: Tokens.rounding.normal
Behavior on opacity {
Anim {
duration: Appearance.anim.durations.small
duration: Tokens.anim.durations.small
}
}