@vuetify/nightly 3.8.8-dev.2025-06-04 → 3.8.8-dev.2025-06-10
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.
- package/CHANGELOG.md +5 -3
- package/dist/json/attributes.json +3640 -3616
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +158 -158
- package/dist/json/tags.json +7 -1
- package/dist/json/web-types.json +6660 -6606
- package/dist/vuetify-labs.cjs +38 -5
- package/dist/vuetify-labs.css +4973 -4973
- package/dist/vuetify-labs.d.ts +96 -60
- package/dist/vuetify-labs.esm.js +38 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +38 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +38 -5
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3676 -3676
- package/dist/vuetify.d.ts +96 -60
- package/dist/vuetify.esm.js +38 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +38 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +173 -172
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBadge/VBadge.d.ts +60 -0
- package/lib/components/VBadge/VBadge.js +7 -2
- package/lib/components/VBadge/VBadge.js.map +1 -1
- package/lib/components/VInfiniteScroll/VInfiniteScroll.d.ts +9 -3
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js +29 -0
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +57 -57
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -18938,8 +18938,14 @@ declare const VBadge: {
|
|
18938
18938
|
bordered: boolean;
|
18939
18939
|
} & {
|
18940
18940
|
max?: string | number | undefined;
|
18941
|
+
height?: string | number | undefined;
|
18942
|
+
width?: string | number | undefined;
|
18941
18943
|
color?: string | undefined;
|
18942
18944
|
content?: string | number | undefined;
|
18945
|
+
maxHeight?: string | number | undefined;
|
18946
|
+
maxWidth?: string | number | undefined;
|
18947
|
+
minHeight?: string | number | undefined;
|
18948
|
+
minWidth?: string | number | undefined;
|
18943
18949
|
class?: any;
|
18944
18950
|
theme?: string | undefined;
|
18945
18951
|
icon?: IconValue | undefined;
|
@@ -19000,8 +19006,14 @@ declare const VBadge: {
|
|
19000
19006
|
bordered: boolean;
|
19001
19007
|
} & {
|
19002
19008
|
max?: string | number | undefined;
|
19009
|
+
height?: string | number | undefined;
|
19010
|
+
width?: string | number | undefined;
|
19003
19011
|
color?: string | undefined;
|
19004
19012
|
content?: string | number | undefined;
|
19013
|
+
maxHeight?: string | number | undefined;
|
19014
|
+
maxWidth?: string | number | undefined;
|
19015
|
+
minHeight?: string | number | undefined;
|
19016
|
+
minWidth?: string | number | undefined;
|
19005
19017
|
class?: any;
|
19006
19018
|
theme?: string | undefined;
|
19007
19019
|
icon?: IconValue | undefined;
|
@@ -19056,8 +19068,14 @@ declare const VBadge: {
|
|
19056
19068
|
bordered: boolean;
|
19057
19069
|
} & {
|
19058
19070
|
max?: string | number | undefined;
|
19071
|
+
height?: string | number | undefined;
|
19072
|
+
width?: string | number | undefined;
|
19059
19073
|
color?: string | undefined;
|
19060
19074
|
content?: string | number | undefined;
|
19075
|
+
maxHeight?: string | number | undefined;
|
19076
|
+
maxWidth?: string | number | undefined;
|
19077
|
+
minHeight?: string | number | undefined;
|
19078
|
+
minWidth?: string | number | undefined;
|
19061
19079
|
class?: any;
|
19062
19080
|
theme?: string | undefined;
|
19063
19081
|
icon?: IconValue | undefined;
|
@@ -19096,6 +19114,12 @@ declare const VBadge: {
|
|
19096
19114
|
default: () => vue.VNode[];
|
19097
19115
|
badge: () => vue.VNode[];
|
19098
19116
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
19117
|
+
height: (StringConstructor | NumberConstructor)[];
|
19118
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
19119
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
19120
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
19121
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
19122
|
+
width: (StringConstructor | NumberConstructor)[];
|
19099
19123
|
transition: {
|
19100
19124
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
19101
19125
|
component?: vue.Component;
|
@@ -19143,6 +19167,12 @@ declare const VBadge: {
|
|
19143
19167
|
offsetY: (StringConstructor | NumberConstructor)[];
|
19144
19168
|
textColor: StringConstructor;
|
19145
19169
|
}, vue.ExtractPropTypes<{
|
19170
|
+
height: (StringConstructor | NumberConstructor)[];
|
19171
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
19172
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
19173
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
19174
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
19175
|
+
width: (StringConstructor | NumberConstructor)[];
|
19146
19176
|
transition: {
|
19147
19177
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
19148
19178
|
component?: vue.Component;
|
@@ -49522,7 +49552,9 @@ declare const VInfiniteScroll: {
|
|
49522
49552
|
side: InfiniteScrollSide;
|
49523
49553
|
done: (status: InfiniteScrollStatus) => void;
|
49524
49554
|
}) => any) | undefined;
|
49525
|
-
},
|
49555
|
+
}, {
|
49556
|
+
reset: (side?: InfiniteScrollSide) => void;
|
49557
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
49526
49558
|
load: (options: {
|
49527
49559
|
side: InfiniteScrollSide;
|
49528
49560
|
done: (status: InfiniteScrollStatus) => void;
|
@@ -49589,7 +49621,9 @@ declare const VInfiniteScroll: {
|
|
49589
49621
|
side: InfiniteScrollSide;
|
49590
49622
|
done: (status: InfiniteScrollStatus) => void;
|
49591
49623
|
}) => any) | undefined;
|
49592
|
-
}, {
|
49624
|
+
}, {
|
49625
|
+
reset: (side?: InfiniteScrollSide) => void;
|
49626
|
+
}, {}, {}, {}, {
|
49593
49627
|
direction: "horizontal" | "vertical";
|
49594
49628
|
tag: string | JSXComponent;
|
49595
49629
|
mode: "manual" | "intersect";
|
@@ -49642,7 +49676,9 @@ declare const VInfiniteScroll: {
|
|
49642
49676
|
side: InfiniteScrollSide;
|
49643
49677
|
done: (status: InfiniteScrollStatus) => void;
|
49644
49678
|
}) => any) | undefined;
|
49645
|
-
},
|
49679
|
+
}, {
|
49680
|
+
reset: (side?: InfiniteScrollSide) => void;
|
49681
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
49646
49682
|
load: (options: {
|
49647
49683
|
side: InfiniteScrollSide;
|
49648
49684
|
done: (status: InfiniteScrollStatus) => void;
|
@@ -86355,50 +86391,41 @@ declare module 'vue' {
|
|
86355
86391
|
$children?: VNodeChild
|
86356
86392
|
}
|
86357
86393
|
export interface GlobalComponents {
|
86358
|
-
VApp: VApp
|
86359
86394
|
VAppBar: VAppBar
|
86360
86395
|
VAppBarNavIcon: VAppBarNavIcon
|
86361
86396
|
VAppBarTitle: VAppBarTitle
|
86397
|
+
VApp: VApp
|
86362
86398
|
VAlert: VAlert
|
86363
86399
|
VAlertTitle: VAlertTitle
|
86364
|
-
VAutocomplete: VAutocomplete
|
86365
|
-
VBadge: VBadge
|
86366
86400
|
VAvatar: VAvatar
|
86401
|
+
VAutocomplete: VAutocomplete
|
86367
86402
|
VBanner: VBanner
|
86368
86403
|
VBannerActions: VBannerActions
|
86369
86404
|
VBannerText: VBannerText
|
86405
|
+
VBottomSheet: VBottomSheet
|
86406
|
+
VBadge: VBadge
|
86407
|
+
VBottomNavigation: VBottomNavigation
|
86408
|
+
VBtn: VBtn
|
86370
86409
|
VBreadcrumbs: VBreadcrumbs
|
86371
86410
|
VBreadcrumbsItem: VBreadcrumbsItem
|
86372
86411
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
86412
|
+
VBtnToggle: VBtnToggle
|
86373
86413
|
VCard: VCard
|
86374
86414
|
VCardActions: VCardActions
|
86375
86415
|
VCardItem: VCardItem
|
86376
86416
|
VCardSubtitle: VCardSubtitle
|
86377
86417
|
VCardText: VCardText
|
86378
86418
|
VCardTitle: VCardTitle
|
86379
|
-
VBottomNavigation: VBottomNavigation
|
86380
|
-
VBtn: VBtn
|
86381
|
-
VBtnGroup: VBtnGroup
|
86382
|
-
VBottomSheet: VBottomSheet
|
86383
|
-
VCheckbox: VCheckbox
|
86384
|
-
VCheckboxBtn: VCheckboxBtn
|
86385
|
-
VBtnToggle: VBtnToggle
|
86386
|
-
VChip: VChip
|
86387
|
-
VCode: VCode
|
86388
86419
|
VCarousel: VCarousel
|
86389
86420
|
VCarouselItem: VCarouselItem
|
86390
|
-
|
86391
|
-
VChipGroup: VChipGroup
|
86421
|
+
VChip: VChip
|
86392
86422
|
VCombobox: VCombobox
|
86423
|
+
VCode: VCode
|
86424
|
+
VCheckbox: VCheckbox
|
86425
|
+
VCheckboxBtn: VCheckboxBtn
|
86426
|
+
VBtnGroup: VBtnGroup
|
86427
|
+
VColorPicker: VColorPicker
|
86393
86428
|
VCounter: VCounter
|
86394
|
-
VDivider: VDivider
|
86395
|
-
VDatePicker: VDatePicker
|
86396
|
-
VDatePickerControls: VDatePickerControls
|
86397
|
-
VDatePickerHeader: VDatePickerHeader
|
86398
|
-
VDatePickerMonth: VDatePickerMonth
|
86399
|
-
VDatePickerMonths: VDatePickerMonths
|
86400
|
-
VDatePickerYears: VDatePickerYears
|
86401
|
-
VDialog: VDialog
|
86402
86429
|
VDataTable: VDataTable
|
86403
86430
|
VDataTableHeaders: VDataTableHeaders
|
86404
86431
|
VDataTableFooter: VDataTableFooter
|
@@ -86406,29 +86433,33 @@ declare module 'vue' {
|
|
86406
86433
|
VDataTableRow: VDataTableRow
|
86407
86434
|
VDataTableVirtual: VDataTableVirtual
|
86408
86435
|
VDataTableServer: VDataTableServer
|
86409
|
-
|
86410
|
-
|
86411
|
-
|
86412
|
-
|
86436
|
+
VDatePicker: VDatePicker
|
86437
|
+
VDatePickerControls: VDatePickerControls
|
86438
|
+
VDatePickerHeader: VDatePickerHeader
|
86439
|
+
VDatePickerMonth: VDatePickerMonth
|
86440
|
+
VDatePickerMonths: VDatePickerMonths
|
86441
|
+
VDatePickerYears: VDatePickerYears
|
86442
|
+
VDialog: VDialog
|
86413
86443
|
VEmptyState: VEmptyState
|
86444
|
+
VDivider: VDivider
|
86445
|
+
VChipGroup: VChipGroup
|
86414
86446
|
VFab: VFab
|
86447
|
+
VFileInput: VFileInput
|
86448
|
+
VFooter: VFooter
|
86415
86449
|
VField: VField
|
86416
86450
|
VFieldLabel: VFieldLabel
|
86417
|
-
VFooter: VFooter
|
86418
|
-
VFileInput: VFileInput
|
86419
|
-
VInfiniteScroll: VInfiniteScroll
|
86420
86451
|
VIcon: VIcon
|
86421
86452
|
VComponentIcon: VComponentIcon
|
86422
86453
|
VSvgIcon: VSvgIcon
|
86423
86454
|
VLigatureIcon: VLigatureIcon
|
86424
86455
|
VClassIcon: VClassIcon
|
86425
|
-
|
86456
|
+
VInfiniteScroll: VInfiniteScroll
|
86426
86457
|
VImg: VImg
|
86427
|
-
VLabel: VLabel
|
86428
86458
|
VItemGroup: VItemGroup
|
86429
86459
|
VItem: VItem
|
86430
|
-
|
86460
|
+
VLabel: VLabel
|
86431
86461
|
VKbd: VKbd
|
86462
|
+
VInput: VInput
|
86432
86463
|
VList: VList
|
86433
86464
|
VListGroup: VListGroup
|
86434
86465
|
VListImg: VListImg
|
@@ -86438,48 +86469,50 @@ declare module 'vue' {
|
|
86438
86469
|
VListItemSubtitle: VListItemSubtitle
|
86439
86470
|
VListItemTitle: VListItemTitle
|
86440
86471
|
VListSubheader: VListSubheader
|
86441
|
-
|
86472
|
+
VMenu: VMenu
|
86442
86473
|
VMain: VMain
|
86443
|
-
|
86474
|
+
VMessages: VMessages
|
86475
|
+
VPagination: VPagination
|
86444
86476
|
VNavigationDrawer: VNavigationDrawer
|
86445
86477
|
VOtpInput: VOtpInput
|
86478
|
+
VNumberInput: VNumberInput
|
86446
86479
|
VOverlay: VOverlay
|
86447
|
-
|
86480
|
+
VRadioGroup: VRadioGroup
|
86448
86481
|
VProgressLinear: VProgressLinear
|
86449
86482
|
VProgressCircular: VProgressCircular
|
86450
|
-
VRadioGroup: VRadioGroup
|
86451
86483
|
VSelectionControl: VSelectionControl
|
86452
86484
|
VRating: VRating
|
86453
86485
|
VSelect: VSelect
|
86454
|
-
|
86486
|
+
VSkeletonLoader: VSkeletonLoader
|
86487
|
+
VSelectionControlGroup: VSelectionControlGroup
|
86455
86488
|
VSnackbar: VSnackbar
|
86489
|
+
VSheet: VSheet
|
86456
86490
|
VSlideGroup: VSlideGroup
|
86457
86491
|
VSlideGroupItem: VSlideGroupItem
|
86458
86492
|
VSlider: VSlider
|
86459
|
-
VSkeletonLoader: VSkeletonLoader
|
86460
86493
|
VStepper: VStepper
|
86461
86494
|
VStepperActions: VStepperActions
|
86462
86495
|
VStepperHeader: VStepperHeader
|
86463
86496
|
VStepperItem: VStepperItem
|
86464
86497
|
VStepperWindow: VStepperWindow
|
86465
86498
|
VStepperWindowItem: VStepperWindowItem
|
86499
|
+
VSystemBar: VSystemBar
|
86500
|
+
VSwitch: VSwitch
|
86501
|
+
VTextarea: VTextarea
|
86466
86502
|
VTab: VTab
|
86467
86503
|
VTabs: VTabs
|
86468
86504
|
VTabsWindow: VTabsWindow
|
86469
86505
|
VTabsWindowItem: VTabsWindowItem
|
86470
|
-
VSwitch: VSwitch
|
86471
|
-
VSystemBar: VSystemBar
|
86472
86506
|
VTable: VTable
|
86473
|
-
VTimeline: VTimeline
|
86474
|
-
VTimelineItem: VTimelineItem
|
86475
|
-
VTextarea: VTextarea
|
86476
86507
|
VTextField: VTextField
|
86477
|
-
VWindow: VWindow
|
86478
|
-
VWindowItem: VWindowItem
|
86479
86508
|
VTooltip: VTooltip
|
86509
|
+
VTimeline: VTimeline
|
86510
|
+
VTimelineItem: VTimelineItem
|
86480
86511
|
VToolbar: VToolbar
|
86481
86512
|
VToolbarTitle: VToolbarTitle
|
86482
86513
|
VToolbarItems: VToolbarItems
|
86514
|
+
VWindow: VWindow
|
86515
|
+
VWindowItem: VWindowItem
|
86483
86516
|
VConfirmEdit: VConfirmEdit
|
86484
86517
|
VDataIterator: VDataIterator
|
86485
86518
|
VDefaultsProvider: VDefaultsProvider
|
@@ -86489,22 +86522,21 @@ declare module 'vue' {
|
|
86489
86522
|
VRow: VRow
|
86490
86523
|
VSpacer: VSpacer
|
86491
86524
|
VHover: VHover
|
86525
|
+
VLazy: VLazy
|
86492
86526
|
VLayout: VLayout
|
86493
86527
|
VLayoutItem: VLayoutItem
|
86494
|
-
VLazy: VLazy
|
86495
|
-
VNoSsr: VNoSsr
|
86496
86528
|
VLocaleProvider: VLocaleProvider
|
86529
|
+
VNoSsr: VNoSsr
|
86497
86530
|
VParallax: VParallax
|
86498
86531
|
VRadio: VRadio
|
86499
86532
|
VRangeSlider: VRangeSlider
|
86500
86533
|
VResponsive: VResponsive
|
86501
|
-
VSnackbarQueue: VSnackbarQueue
|
86502
86534
|
VSparkline: VSparkline
|
86503
86535
|
VSpeedDial: VSpeedDial
|
86536
|
+
VSnackbarQueue: VSnackbarQueue
|
86504
86537
|
VThemeProvider: VThemeProvider
|
86505
|
-
VValidation: VValidation
|
86506
86538
|
VVirtualScroll: VVirtualScroll
|
86507
|
-
|
86539
|
+
VValidation: VValidation
|
86508
86540
|
VFabTransition: VFabTransition
|
86509
86541
|
VDialogBottomTransition: VDialogBottomTransition
|
86510
86542
|
VDialogTopTransition: VDialogTopTransition
|
@@ -86521,29 +86553,33 @@ declare module 'vue' {
|
|
86521
86553
|
VExpandTransition: VExpandTransition
|
86522
86554
|
VExpandXTransition: VExpandXTransition
|
86523
86555
|
VDialogTransition: VDialogTransition
|
86556
|
+
VExpansionPanels: VExpansionPanels
|
86557
|
+
VExpansionPanel: VExpansionPanel
|
86558
|
+
VExpansionPanelText: VExpansionPanelText
|
86559
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
86524
86560
|
VCalendar: VCalendar
|
86525
86561
|
VCalendarDay: VCalendarDay
|
86526
86562
|
VCalendarHeader: VCalendarHeader
|
86527
86563
|
VCalendarInterval: VCalendarInterval
|
86528
86564
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
86529
86565
|
VCalendarMonthDay: VCalendarMonthDay
|
86566
|
+
VColorInput: VColorInput
|
86530
86567
|
VFileUpload: VFileUpload
|
86531
86568
|
VFileUploadItem: VFileUploadItem
|
86532
86569
|
VIconBtn: VIconBtn
|
86533
|
-
VPicker: VPicker
|
86534
|
-
VPickerTitle: VPickerTitle
|
86535
|
-
VTreeview: VTreeview
|
86536
|
-
VTreeviewItem: VTreeviewItem
|
86537
|
-
VTreeviewGroup: VTreeviewGroup
|
86538
86570
|
VStepperVertical: VStepperVertical
|
86539
86571
|
VStepperVerticalItem: VStepperVerticalItem
|
86540
86572
|
VStepperVerticalActions: VStepperVerticalActions
|
86541
|
-
|
86573
|
+
VTreeview: VTreeview
|
86574
|
+
VTreeviewItem: VTreeviewItem
|
86575
|
+
VTreeviewGroup: VTreeviewGroup
|
86576
|
+
VPicker: VPicker
|
86577
|
+
VPickerTitle: VPickerTitle
|
86542
86578
|
VTimePicker: VTimePicker
|
86543
86579
|
VTimePickerClock: VTimePickerClock
|
86544
86580
|
VTimePickerControls: VTimePickerControls
|
86545
86581
|
VPullToRefresh: VPullToRefresh
|
86546
|
-
|
86582
|
+
VDateInput: VDateInput
|
86547
86583
|
}
|
86548
86584
|
export interface GlobalDirectives {
|
86549
86585
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.8-dev.2025-06-
|
2
|
+
* Vuetify v3.8.8-dev.2025-06-10
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -14246,7 +14246,8 @@ const makeVBadgeProps = propsFactory({
|
|
14246
14246
|
...makeThemeProps(),
|
14247
14247
|
...makeTransitionProps({
|
14248
14248
|
transition: 'scale-rotate-transition'
|
14249
|
-
})
|
14249
|
+
}),
|
14250
|
+
...makeDimensionProps()
|
14250
14251
|
}, 'VBadge');
|
14251
14252
|
const VBadge = genericComponent()({
|
14252
14253
|
name: 'VBadge',
|
@@ -14276,6 +14277,9 @@ const VBadge = genericComponent()({
|
|
14276
14277
|
const base = props.floating ? props.dot ? 2 : 4 : props.dot ? 8 : 12;
|
14277
14278
|
return base + (['top', 'bottom'].includes(side) ? Number(props.offsetY ?? 0) : ['left', 'right'].includes(side) ? Number(props.offsetX ?? 0) : 0);
|
14278
14279
|
});
|
14280
|
+
const {
|
14281
|
+
dimensionStyles
|
14282
|
+
} = useDimension(props);
|
14279
14283
|
useRender(() => {
|
14280
14284
|
const value = Number(props.content);
|
14281
14285
|
const content = !props.max || isNaN(value) ? props.content : value <= Number(props.max) ? value : `${props.max}+`;
|
@@ -14297,7 +14301,7 @@ const VBadge = genericComponent()({
|
|
14297
14301
|
}, {
|
14298
14302
|
default: () => [withDirectives(createElementVNode("span", mergeProps({
|
14299
14303
|
"class": ['v-badge__badge', themeClasses.value, backgroundColorClasses.value, roundedClasses.value, textColorClasses.value],
|
14300
|
-
"style": [backgroundColorStyles.value, textColorStyles.value, props.inline ? {} : locationStyles.value],
|
14304
|
+
"style": [backgroundColorStyles.value, textColorStyles.value, dimensionStyles.value, props.inline ? {} : locationStyles.value],
|
14301
14305
|
"aria-atomic": "true",
|
14302
14306
|
"aria-label": t(props.label, value),
|
14303
14307
|
"aria-live": "polite",
|
@@ -24325,6 +24329,9 @@ const VInfiniteScroll = genericComponent()({
|
|
24325
24329
|
startStatus.value = status;
|
24326
24330
|
} else if (side === 'end') {
|
24327
24331
|
endStatus.value = status;
|
24332
|
+
} else if (side === 'both') {
|
24333
|
+
startStatus.value = status;
|
24334
|
+
endStatus.value = status;
|
24328
24335
|
}
|
24329
24336
|
}
|
24330
24337
|
function getStatus(side) {
|
@@ -24436,6 +24443,32 @@ const VInfiniteScroll = genericComponent()({
|
|
24436
24443
|
}, [renderSide('end', endStatus.value)])]
|
24437
24444
|
});
|
24438
24445
|
});
|
24446
|
+
function reset(side) {
|
24447
|
+
const effectiveSide = side ?? props.side;
|
24448
|
+
setStatus(effectiveSide, 'ok');
|
24449
|
+
nextTick(() => {
|
24450
|
+
setScrollAmount(getScrollSize() - previousScrollSize + getScrollAmount());
|
24451
|
+
if (props.mode !== 'manual') {
|
24452
|
+
nextTick(() => {
|
24453
|
+
window.requestAnimationFrame(() => {
|
24454
|
+
window.requestAnimationFrame(() => {
|
24455
|
+
window.requestAnimationFrame(() => {
|
24456
|
+
if (effectiveSide === 'both') {
|
24457
|
+
intersecting('start');
|
24458
|
+
intersecting('end');
|
24459
|
+
} else {
|
24460
|
+
intersecting(effectiveSide);
|
24461
|
+
}
|
24462
|
+
});
|
24463
|
+
});
|
24464
|
+
});
|
24465
|
+
});
|
24466
|
+
}
|
24467
|
+
});
|
24468
|
+
}
|
24469
|
+
return {
|
24470
|
+
reset
|
24471
|
+
};
|
24439
24472
|
}
|
24440
24473
|
});
|
24441
24474
|
|
@@ -29615,7 +29648,7 @@ function createVuetify$1() {
|
|
29615
29648
|
};
|
29616
29649
|
});
|
29617
29650
|
}
|
29618
|
-
const version$1 = "3.8.8-dev.2025-06-
|
29651
|
+
const version$1 = "3.8.8-dev.2025-06-10";
|
29619
29652
|
createVuetify$1.version = version$1;
|
29620
29653
|
|
29621
29654
|
// Vue's inject() can only be used in setup
|
@@ -29640,7 +29673,7 @@ const createVuetify = function () {
|
|
29640
29673
|
...options
|
29641
29674
|
});
|
29642
29675
|
};
|
29643
|
-
const version = "3.8.8-dev.2025-06-
|
29676
|
+
const version = "3.8.8-dev.2025-06-10";
|
29644
29677
|
createVuetify.version = version;
|
29645
29678
|
|
29646
29679
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|