mtrl-addons 0.2.8 → 0.2.9
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.
|
@@ -582,6 +582,8 @@ export interface VListConfig<T extends ListItem = ListItem> {
|
|
|
582
582
|
orientation?: "vertical" | "horizontal";
|
|
583
583
|
animation?: boolean;
|
|
584
584
|
measureItems?: boolean;
|
|
585
|
+
/** Stop scrolling when clicking on the viewport (default: true) */
|
|
586
|
+
stopOnClick?: boolean;
|
|
585
587
|
};
|
|
586
588
|
performance?: {
|
|
587
589
|
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;
|