diff --git a/platform/features/layout/bundle.json b/platform/features/layout/bundle.json index 6a9e2fdc49..a42bef49b8 100644 --- a/platform/features/layout/bundle.json +++ b/platform/features/layout/bundle.json @@ -84,6 +84,12 @@ "key": "bottom" } ] + }, + { + "property": "fill", + "glyph": "X", + "control": "textfield", + "inclusive": true } ] }, diff --git a/platform/features/layout/src/elements/ElementProxies.js b/platform/features/layout/src/elements/ElementProxies.js index 5f71e89916..125d0c7f10 100644 --- a/platform/features/layout/src/elements/ElementProxies.js +++ b/platform/features/layout/src/elements/ElementProxies.js @@ -1,16 +1,16 @@ /*global define*/ define( - ['./TelemetryProxy', './ElementProxy', './LineProxy'], - function (TelemetryProxy, ElementProxy, LineProxy) { + ['./TelemetryProxy', './ElementProxy', './LineProxy', './BoxProxy', './TextProxy'], + function (TelemetryProxy, ElementProxy, LineProxy, BoxProxy, TextProxy) { "use strict"; return { "fixed.telemetry": TelemetryProxy, "fixed.line": LineProxy, - "fixed.box": ElementProxy, + "fixed.box": BoxProxy, "fixed.image": ElementProxy, - "fixed.text": ElementProxy + "fixed.text": TextProxy }; } ); \ No newline at end of file