Improvements
Remove margin at the bottom Update package dependencies Update Pluggable widget package version
This commit is contained in:
19
typings/CustomListViewProps.d.ts
vendored
19
typings/CustomListViewProps.d.ts
vendored
@@ -1,10 +1,11 @@
|
||||
/**
|
||||
* This file was generated from CustomListView.xml
|
||||
* WARNING: All changes made to this file will be overwritten
|
||||
* @author Mendix UI Content Team
|
||||
* @author Mendix Widgets Framework Team
|
||||
*/
|
||||
import { ComponentType } from "react";
|
||||
import { ComponentType, CSSProperties, ReactNode } from "react";
|
||||
import { EditableValue, ListValue, ListActionValue, ListWidgetValue } from "mendix";
|
||||
import { Big } from "big.js";
|
||||
|
||||
export interface CustomListViewProps<Style> {
|
||||
name: string;
|
||||
@@ -15,21 +16,27 @@ export interface CustomListViewProps<Style> {
|
||||
onClick?: ListActionValue;
|
||||
emptyMessage: string;
|
||||
scrollToItem?: EditableValue<boolean>;
|
||||
scrollItem?: EditableValue<BigJs.Big>;
|
||||
scrollItem?: EditableValue<Big>;
|
||||
windowSize: number;
|
||||
initialNumToRender: number;
|
||||
maxNumberToRenderPerBatch: number;
|
||||
cellBatchingSize: number;
|
||||
removeClippedSubviews: boolean;
|
||||
useItemLayout: boolean;
|
||||
itemSize: BigJs.Big;
|
||||
itemSize: Big;
|
||||
}
|
||||
|
||||
export interface CustomListViewPreviewProps {
|
||||
/**
|
||||
* @deprecated Deprecated since version 9.18.0. Please use class property instead.
|
||||
*/
|
||||
className: string;
|
||||
class: string;
|
||||
style: string;
|
||||
ds: {} | null;
|
||||
container: { widgetCount: number; renderer: ComponentType };
|
||||
styleObject?: CSSProperties;
|
||||
readOnly: boolean;
|
||||
ds: {} | { caption: string } | { type: string } | null;
|
||||
container: { widgetCount: number; renderer: ComponentType<{ children: ReactNode; caption?: string }> };
|
||||
scrollView: boolean;
|
||||
onClick: {} | null;
|
||||
emptyMessage: string;
|
||||
|
||||
Reference in New Issue
Block a user