Improvements

Remove margin at the bottom
Update package dependencies
Update Pluggable widget package version
This commit is contained in:
iamrob
2023-06-05 13:53:13 +02:00
parent 3b85aac01d
commit 7c5eed1170
12 changed files with 19925 additions and 18628 deletions

View File

@@ -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;