@para-ui/core 2.2.64 → 2.2.66

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.
@@ -146,4 +146,6 @@ export interface ComboSelectProps {
146
146
  maxTagTextLength?: number;
147
147
  /** 弹出边界,默认 window */
148
148
  boundariesElement?: 'scrollParent' | typeof window | 'viewport';
149
+ /** 自定义渲染输入框内容 */
150
+ renderInputContent?: (options: SelectOpt | SelectOpt[]) => React.ReactNode;
149
151
  }