| className | string | | ✔️ | The className of the component |
| style | object | | | The style of the component. |
| itemField | object | | | @deprecated, use fields instead. The json schema of each element in the List supports the use of the element |
| direction | 'row' | 'column' | | | @deprecated, use style.flexDirection instead. |
| wrap | bool | false | | @deprecated, use style.flexWrap instead. |
| gap | number | | | @deprecated, use style.gap instead. |
| empty | bool | object | false | | The placeholder that is displayed when there is no data, the Empty attribute of antd is |
| itemProps | object | | | The attribute |
| LoadingProps | LoadingProps | | | Properties passed to the Loading component |
| dataSource | { token: string, pbcToken: string, listUrl: string } | | | data source |
| dataUrl | ConditionalListOrSinglePropertyPropType(string) | | | Get data via dataUrl. |
| dataFilters | ConditionalListPropertyPropType(DataFilters) | | ✔️ | Fixed filter conditions hidden by requesting data source cannot be changed through the interface |
| sortModel | Array<SortModel> | | | How to sort data |
| dataResponseKeyPath | string | 'results' | | Take a sub-data in the response data as the result. |
| transformDataResponse | string | | | Transform the obtained data, using the eval expression, this refers to the obtained data. |
| translateDataResponse | bool | true | | Whether you need to translate the result of the request |
| debounceTime | number | 200 | | The debounce time of the request data, which triggers leading. |
| defaultValue | object | | | The default data of the data source will be merge with the data requested by the API. If the API request returns an array, merge with each item of the array. If the API request returns an object, merge with the object. |
| httpMethod | 'get' | 'post' | 'get' | | http method for data requests. |
| selectColId | Array<string> | | | Load data fields, and load all fields if not configured. |
| lazyLoading | bool | false | | Whether to enable lazy loading |
| cacheBlockSize | number | 30 | | Lazy load the amount of data per request |