import QtQuick Rectangle { id: inlineComponentSet width: 129 height: 129 color: "#33ee2f" property alias helloText: hello.text state: "state_pr1_Variant2_Pr2_Default" Rectangle { id: rectangle_2 x: 0 y: 0 width: 129 height: 129 color: "#d9d9d9" } Text { id: hello x: 38 y: 75 width: 54 height: 54 color: "#000000" text: qsTr("Hello ") font.pixelSize: 22 horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter wrapMode: Text.Wrap font.weight: Font.Normal font.family: "Inter" } states: [ State { name: "state_pr1_Variant2_Pr2_Default" }, State { name: "state_pr1_def_Pr2_Default" extend: "state_pr1_Variant2_Pr2_Default" PropertyChanges { target: inlineComponentSet color: "#0debc3" } PropertyChanges { target: hello y: 43 } }, State { name: "state_pr1_Variant2_Pr2_Nondefault" extend: "state_pr1_Variant2_Pr2_Default" PropertyChanges { target: inlineComponentSet color: "#640df0" } PropertyChanges { target: rectangle_2 color: "#9747ff" } PropertyChanges { target: hello y: 11 } }, State { name: "state_pr1_def_Pr2_Nondefault" extend: "state_pr1_Variant2_Pr2_Default" PropertyChanges { target: inlineComponentSet color: "#cf1313" } PropertyChanges { target: rectangle_2 color: "#9747ff" } PropertyChanges { target: hello y: 43 } } ] } /*##^## Designer { D{i:0;uuid:"0d705c76-a453-5861-a6a9-23c42e27e9c4"}D{i:1;uuid:"a03193f6-6d8a-517f-a9c1-22d79fdb0563"} D{i:2;uuid:"ee504ba7-816e-524d-ac16-983ed545edee"} } ##^##*/