mtrl-addons 0.2.5 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -575,6 +575,8 @@ export interface VListConfig<T extends ListItem = ListItem> {
|
|
|
575
575
|
orientation?: "vertical" | "horizontal";
|
|
576
576
|
animation?: boolean;
|
|
577
577
|
measureItems?: boolean;
|
|
578
|
+
/** Stop scrolling when clicking on the viewport (default: true) */
|
|
579
|
+
stopOnClick?: boolean;
|
|
578
580
|
};
|
|
579
581
|
performance?: {
|
|
580
582
|
recycleElements?: boolean;
|
|
@@ -55,6 +55,8 @@ export interface ViewportConfig {
|
|
|
55
55
|
orientation?: "vertical" | "horizontal";
|
|
56
56
|
animation?: boolean;
|
|
57
57
|
sensitivity?: number;
|
|
58
|
+
/** Stop scrolling when clicking on the viewport (default: true) */
|
|
59
|
+
stopOnClick?: boolean;
|
|
58
60
|
};
|
|
59
61
|
scrollbar?: {
|
|
60
62
|
enabled?: boolean;
|