mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
5 components split under 100: - ThemeColorTokens (145→71): ThemeColorField extracted - CTransferTab (144→92): CTransferForm extracted - CConnectionTest (135→68): CServiceConnectionRow extracted - CDataTable (134→94): CTableEmptyState extracted - SchemaFieldsTable (129→86): SchemaFieldRow extracted 5 left at 128-143 — no clean 30+ line seams remaining. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
468 B
QML
25 lines
468 B
QML
import QtQuick
|
|
import QmlComponents 1.0
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
property string version: ""
|
|
property color accent: "#6366F1"
|
|
property color containerColor: "#1a1a2e"
|
|
|
|
width: vLabel.implicitWidth + 24
|
|
height: 28
|
|
radius: 14
|
|
color: containerColor
|
|
|
|
CText {
|
|
id: vLabel
|
|
anchors.centerIn: parent
|
|
text: "v" + root.version
|
|
font.family: "monospace"
|
|
font.pixelSize: 12
|
|
color: root.accent
|
|
}
|
|
}
|