From f36478ab08bddc1885473ad3b1eb8330efaf9f1c Mon Sep 17 00:00:00 2001 From: pixelzoom Date: Tue, 31 May 2022 09:56:40 -0600 Subject: [PATCH] deprecate LayoutBox, https://github.com/phetsims/scenery/issues/1418 --- js/layout/nodes/LayoutBox.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/layout/nodes/LayoutBox.ts b/js/layout/nodes/LayoutBox.ts index d53dd3aa2..a2841e335 100644 --- a/js/layout/nodes/LayoutBox.ts +++ b/js/layout/nodes/LayoutBox.ts @@ -79,6 +79,9 @@ type SelfOptions = { }; export type LayoutBoxOptions = SelfOptions & NodeOptions; +/** + * @deprecated use FlowBox + */ export default class LayoutBox extends Node { private _orientation: LayoutBoxOrientation = 'vertical';