From 3cbe4377669ec3c4cc821e367c08da866850a64a Mon Sep 17 00:00:00 2001 From: moklick Date: Mon, 15 Sep 2025 11:43:50 +0200 Subject: [PATCH] chore(resizer-types): inline --- packages/system/src/xyresizer/types.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/system/src/xyresizer/types.ts b/packages/system/src/xyresizer/types.ts index 3dc0c45b..92bde6fd 100644 --- a/packages/system/src/xyresizer/types.ts +++ b/packages/system/src/xyresizer/types.ts @@ -19,6 +19,7 @@ export type ResizeParamsWithDirection = ResizeParams & { * Used to determine the control line position of the NodeResizer * * @public + * @inline */ export type ControlLinePosition = 'top' | 'bottom' | 'left' | 'right'; @@ -26,6 +27,7 @@ export type ControlLinePosition = 'top' | 'bottom' | 'left' | 'right'; * Used to determine the control position of the NodeResizer * * @public + * @inline */ export type ControlPosition = ControlLinePosition | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; @@ -42,6 +44,7 @@ export enum ResizeControlVariant { /** * The direction the user can resize the node. * @public + * @inline */ export type ResizeControlDirection = 'horizontal' | 'vertical';