mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
WorkflowEditor (325→80): CWorkflowState.qml + WorkflowConnectionState.js DashboardView (121→95): DashboardDBAL.js + config/dashboard-config.json Storybook (114→78): StorybookSidebar + config/storybook-components.json + 7 components compacted to under 100 via formatting (no logic changes) + Multiple view/component splits across all remaining 100+ LOC files Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
527 B
QML
21 lines
527 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QmlComponents 1.0
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
property string currentCode: ""
|
|
|
|
Layout.fillWidth: true
|
|
spacing: 12
|
|
|
|
CDivider { Layout.fillWidth: true }
|
|
|
|
CText { variant: "h4"; text: "Info" }
|
|
CText { variant: "caption"; text: "LINES OF CODE" }
|
|
CText { variant: "body2"; text: currentCode.split("\n").length.toString() }
|
|
CText { variant: "caption"; text: "SIZE" }
|
|
CText { variant: "body2"; text: (currentCode.length / 1024).toFixed(1) + " KB" }
|
|
}
|