import type { BubbleLayerOptions } from '@antv/l7-composite-layers'; import type { ColorRange, FieldSelectOptionType } from '../types'; import type { CommonProps } from '../types/common'; /** * 气泡图层样式属性值 */ export type BubbleLayerStyleAttributeValue = Omit; /** * 组件类型定义 */ export interface BubbleLayerStyleAttributeProps extends CommonProps { /** * 数据字段 */ fieldList: FieldSelectOptionType[]; /** * 色带配置 */ colorRanges?: ColorRange[]; /** * 初始值 */ initialValues: BubbleLayerStyleAttributeValue; /** * 属性表单发生改变时 */ onChange?: (values: BubbleLayerStyleAttributeValue) => void; }