next-flow-design 1.1.3 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,6 +11,12 @@ interface NfColorPickerProps {
11
11
  open?: boolean;
12
12
  /** 显示颜色文本 */
13
13
  showText?: boolean;
14
+ /** 面板垂直位置:上方或下方 */
15
+ placement?: 'top' | 'bottom';
16
+ /** 面板水平对齐:左侧或右侧 */
17
+ align?: 'left' | 'right';
18
+ /** 是否自动调整位置避免超出屏幕 */
19
+ autoAdjust?: boolean;
14
20
  /** 颜色变化时触发 */
15
21
  onChange?: (event: CustomEvent<string>) => void;
16
22
  /** 面板显示状态变化时触发 */