mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 10:14:52 +00:00
7c5d0f1012
- Update 22 package metadata.json files with consistent schema - Enhance PackageLoader with file watching and navigable packages - Update QmlComponents library (atoms, core, data-display, feedback, form, layout, surfaces) - Improve watchtower PackageView and MaterialAccordion Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
249 B
QML
13 lines
249 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QmlComponents 1.0
|
|
|
|
Text {
|
|
id: label
|
|
property alias text: label.text
|
|
property bool required: false
|
|
color: Theme.onSurface
|
|
font.pixelSize: StyleVariables.fontSizeSm
|
|
text: "Label"
|
|
}
|