Files
metabuilder/qml/MetaBuilder/LuaScriptInfoSection.qml
johndoe6345789 491c4cffed refactor(qt6): push for sub-100 LOC — JS modules, JSON configs, compact formatting
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>
2026-03-19 14:58:28 +00:00

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" }
}