Refactor #3965 - For VirtualScroller

This commit is contained in:
Tuğçe Küçükoğlu 2023-06-06 14:38:49 +03:00
parent 5c47976d98
commit 99434c4c00
3 changed files with 216 additions and 181 deletions

View file

@ -308,6 +308,11 @@ export interface VirtualScrollerProps {
* @type {VirtualScrollerPassThroughOptions}
*/
pt?: VirtualScrollerPassThroughOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
/**
@ -408,7 +413,12 @@ export interface VirtualScrollerSlots {
/**
* Custom loading icon template.
*/
loadingicon(): VNode[];
loadingicon(scope: {
/**
* Style class of the icon.
*/
class: string;
}): VNode[];
}
/**