internal
type StringSetting = CommonSettingOptions & {
  type: "string", 
  placeholder?: string, 
  control?: 
    | "input"
    | "textarea"
    | {type: "textarea", autoHeight?: boolean, rows?: number, maxRows?: number, }
    | {type: "select", options: OptionItem[], width?: number, }, 
}