@vuetify/nightly 3.8.7-master.2025-06-02 → 3.8.8-master.2025-06-04
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 -16
- package/dist/json/attributes.json +1935 -1935
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +172 -172
- package/dist/json/web-types.json +3629 -3629
- package/dist/vuetify-labs.cjs +29 -11
- package/dist/vuetify-labs.css +3132 -3126
- package/dist/vuetify-labs.d.ts +61 -55
- package/dist/vuetify-labs.esm.js +30 -12
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +29 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +29 -11
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +1342 -1336
- package/dist/vuetify.d.ts +61 -55
- package/dist/vuetify.esm.js +30 -12
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +29 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1002 -999
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +6 -6
- package/lib/components/VAutocomplete/VAutocomplete.sass +3 -9
- package/lib/components/VChip/VChip.js +1 -0
- package/lib/components/VChip/VChip.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.css +6 -6
- package/lib/components/VCombobox/VCombobox.sass +3 -9
- package/lib/components/VSelect/VSelect.css +6 -0
- package/lib/components/VSelect/VSelect.sass +3 -0
- package/lib/components/VSelect/_mixins.scss +14 -0
- package/lib/components/VSlider/VSliderThumb.js +12 -6
- package/lib/components/VSlider/VSliderThumb.js.map +1 -1
- package/lib/components/VSlider/slider.js +4 -1
- package/lib/components/VSlider/slider.js.map +1 -1
- package/lib/composables/icons.d.ts +6 -0
- package/lib/composables/icons.js.map +1 -1
- package/lib/composables/list-items.js +2 -2
- package/lib/composables/list-items.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +61 -55
- package/lib/framework.js +1 -1
- package/lib/iconsets/fa.js +3 -1
- package/lib/iconsets/fa.js.map +1 -1
- package/lib/iconsets/fa4.js +3 -1
- package/lib/iconsets/fa4.js.map +1 -1
- package/lib/iconsets/md.js +3 -1
- package/lib/iconsets/md.js.map +1 -1
- package/lib/iconsets/mdi-svg.js +3 -1
- package/lib/iconsets/mdi-svg.js.map +1 -1
- package/lib/util/helpers.d.ts +1 -0
- package/lib/util/helpers.js +9 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -258,6 +258,7 @@ type IconValue = string | (string | [path: string, opacity: number])[] | JSXComp
|
|
258
258
|
declare const IconValue: PropType<IconValue>;
|
259
259
|
interface IconAliases {
|
260
260
|
[name: string]: IconValue;
|
261
|
+
collapse: IconValue;
|
261
262
|
complete: IconValue;
|
262
263
|
cancel: IconValue;
|
263
264
|
close: IconValue;
|
@@ -293,6 +294,11 @@ interface IconAliases {
|
|
293
294
|
plus: IconValue;
|
294
295
|
minus: IconValue;
|
295
296
|
calendar: IconValue;
|
297
|
+
treeviewCollapse: IconValue;
|
298
|
+
treeviewExpand: IconValue;
|
299
|
+
eyeDropper: IconValue;
|
300
|
+
upload: IconValue;
|
301
|
+
color: IconValue;
|
296
302
|
}
|
297
303
|
interface IconProps {
|
298
304
|
tag: string | JSXComponent;
|
@@ -101783,42 +101789,49 @@ declare module 'vue' {
|
|
101783
101789
|
$children?: VNodeChild
|
101784
101790
|
}
|
101785
101791
|
export interface GlobalComponents {
|
101786
|
-
VAppBar: VAppBar
|
101787
|
-
VAppBarNavIcon: VAppBarNavIcon
|
101788
|
-
VAppBarTitle: VAppBarTitle
|
101789
101792
|
VApp: VApp
|
101790
101793
|
VAlert: VAlert
|
101791
101794
|
VAlertTitle: VAlertTitle
|
101795
|
+
VAppBar: VAppBar
|
101796
|
+
VAppBarNavIcon: VAppBarNavIcon
|
101797
|
+
VAppBarTitle: VAppBarTitle
|
101792
101798
|
VAutocomplete: VAutocomplete
|
101793
|
-
VBottomNavigation: VBottomNavigation
|
101794
101799
|
VAvatar: VAvatar
|
101795
|
-
VBadge: VBadge
|
101796
101800
|
VBanner: VBanner
|
101797
101801
|
VBannerActions: VBannerActions
|
101798
101802
|
VBannerText: VBannerText
|
101799
|
-
|
101800
|
-
|
101803
|
+
VBadge: VBadge
|
101804
|
+
VBottomNavigation: VBottomNavigation
|
101801
101805
|
VBreadcrumbs: VBreadcrumbs
|
101802
101806
|
VBreadcrumbsItem: VBreadcrumbsItem
|
101803
101807
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
101808
|
+
VBottomSheet: VBottomSheet
|
101809
|
+
VBtnGroup: VBtnGroup
|
101804
101810
|
VBtnToggle: VBtnToggle
|
101805
|
-
|
101806
|
-
VCarouselItem: VCarouselItem
|
101811
|
+
VBtn: VBtn
|
101807
101812
|
VCard: VCard
|
101808
101813
|
VCardActions: VCardActions
|
101809
101814
|
VCardItem: VCardItem
|
101810
101815
|
VCardSubtitle: VCardSubtitle
|
101811
101816
|
VCardText: VCardText
|
101812
101817
|
VCardTitle: VCardTitle
|
101818
|
+
VCarousel: VCarousel
|
101819
|
+
VCarouselItem: VCarouselItem
|
101813
101820
|
VCheckbox: VCheckbox
|
101814
101821
|
VCheckboxBtn: VCheckboxBtn
|
101815
|
-
VBtnGroup: VBtnGroup
|
101816
101822
|
VChipGroup: VChipGroup
|
101817
101823
|
VChip: VChip
|
101818
101824
|
VCombobox: VCombobox
|
101819
101825
|
VCode: VCode
|
101820
101826
|
VColorPicker: VColorPicker
|
101821
101827
|
VCounter: VCounter
|
101828
|
+
VDialog: VDialog
|
101829
|
+
VDatePicker: VDatePicker
|
101830
|
+
VDatePickerControls: VDatePickerControls
|
101831
|
+
VDatePickerHeader: VDatePickerHeader
|
101832
|
+
VDatePickerMonth: VDatePickerMonth
|
101833
|
+
VDatePickerMonths: VDatePickerMonths
|
101834
|
+
VDatePickerYears: VDatePickerYears
|
101822
101835
|
VDataTable: VDataTable
|
101823
101836
|
VDataTableHeaders: VDataTableHeaders
|
101824
101837
|
VDataTableFooter: VDataTableFooter
|
@@ -101826,33 +101839,26 @@ declare module 'vue' {
|
|
101826
101839
|
VDataTableRow: VDataTableRow
|
101827
101840
|
VDataTableVirtual: VDataTableVirtual
|
101828
101841
|
VDataTableServer: VDataTableServer
|
101829
|
-
|
101830
|
-
VDatePickerControls: VDatePickerControls
|
101831
|
-
VDatePickerHeader: VDatePickerHeader
|
101832
|
-
VDatePickerMonth: VDatePickerMonth
|
101833
|
-
VDatePickerMonths: VDatePickerMonths
|
101834
|
-
VDatePickerYears: VDatePickerYears
|
101835
|
-
VDialog: VDialog
|
101836
|
-
VFab: VFab
|
101842
|
+
VDivider: VDivider
|
101837
101843
|
VEmptyState: VEmptyState
|
101844
|
+
VFooter: VFooter
|
101845
|
+
VFileInput: VFileInput
|
101838
101846
|
VExpansionPanels: VExpansionPanels
|
101839
101847
|
VExpansionPanel: VExpansionPanel
|
101840
101848
|
VExpansionPanelText: VExpansionPanelText
|
101841
101849
|
VExpansionPanelTitle: VExpansionPanelTitle
|
101842
|
-
|
101843
|
-
VFileInput: VFileInput
|
101844
|
-
VField: VField
|
101845
|
-
VFieldLabel: VFieldLabel
|
101846
|
-
VFooter: VFooter
|
101847
|
-
VImg: VImg
|
101848
|
-
VInput: VInput
|
101850
|
+
VFab: VFab
|
101849
101851
|
VIcon: VIcon
|
101850
101852
|
VComponentIcon: VComponentIcon
|
101851
101853
|
VSvgIcon: VSvgIcon
|
101852
101854
|
VLigatureIcon: VLigatureIcon
|
101853
101855
|
VClassIcon: VClassIcon
|
101856
|
+
VImg: VImg
|
101857
|
+
VInfiniteScroll: VInfiniteScroll
|
101854
101858
|
VItemGroup: VItemGroup
|
101855
101859
|
VItem: VItem
|
101860
|
+
VLabel: VLabel
|
101861
|
+
VKbd: VKbd
|
101856
101862
|
VList: VList
|
101857
101863
|
VListGroup: VListGroup
|
101858
101864
|
VListImg: VListImg
|
@@ -101862,76 +101868,73 @@ declare module 'vue' {
|
|
101862
101868
|
VListItemSubtitle: VListItemSubtitle
|
101863
101869
|
VListItemTitle: VListItemTitle
|
101864
101870
|
VListSubheader: VListSubheader
|
101865
|
-
|
101866
|
-
VKbd: VKbd
|
101867
|
-
VLabel: VLabel
|
101868
|
-
VMessages: VMessages
|
101871
|
+
VMain: VMain
|
101869
101872
|
VNavigationDrawer: VNavigationDrawer
|
101870
101873
|
VMenu: VMenu
|
101871
|
-
VMain: VMain
|
101872
|
-
VOtpInput: VOtpInput
|
101873
101874
|
VNumberInput: VNumberInput
|
101875
|
+
VMessages: VMessages
|
101874
101876
|
VOverlay: VOverlay
|
101875
|
-
VProgressCircular: VProgressCircular
|
101876
101877
|
VPagination: VPagination
|
101878
|
+
VProgressCircular: VProgressCircular
|
101879
|
+
VOtpInput: VOtpInput
|
101877
101880
|
VProgressLinear: VProgressLinear
|
101878
|
-
VRating: VRating
|
101879
|
-
VSelectionControlGroup: VSelectionControlGroup
|
101880
101881
|
VRadioGroup: VRadioGroup
|
101881
101882
|
VSelect: VSelect
|
101882
|
-
VSlideGroup: VSlideGroup
|
101883
|
-
VSlideGroupItem: VSlideGroupItem
|
101884
101883
|
VSelectionControl: VSelectionControl
|
101885
|
-
|
101884
|
+
VRating: VRating
|
101885
|
+
VSelectionControlGroup: VSelectionControlGroup
|
101886
101886
|
VSheet: VSheet
|
101887
|
+
VSkeletonLoader: VSkeletonLoader
|
101888
|
+
VSlideGroup: VSlideGroup
|
101889
|
+
VSlideGroupItem: VSlideGroupItem
|
101887
101890
|
VSnackbar: VSnackbar
|
101891
|
+
VSlider: VSlider
|
101892
|
+
VField: VField
|
101893
|
+
VFieldLabel: VFieldLabel
|
101894
|
+
VSwitch: VSwitch
|
101895
|
+
VSystemBar: VSystemBar
|
101896
|
+
VTab: VTab
|
101897
|
+
VTabs: VTabs
|
101898
|
+
VTabsWindow: VTabsWindow
|
101899
|
+
VTabsWindowItem: VTabsWindowItem
|
101888
101900
|
VStepper: VStepper
|
101889
101901
|
VStepperActions: VStepperActions
|
101890
101902
|
VStepperHeader: VStepperHeader
|
101891
101903
|
VStepperItem: VStepperItem
|
101892
101904
|
VStepperWindow: VStepperWindow
|
101893
101905
|
VStepperWindowItem: VStepperWindowItem
|
101894
|
-
VTab: VTab
|
101895
|
-
VTabs: VTabs
|
101896
|
-
VTabsWindow: VTabsWindow
|
101897
|
-
VTabsWindowItem: VTabsWindowItem
|
101898
|
-
VSlider: VSlider
|
101899
|
-
VSystemBar: VSystemBar
|
101900
|
-
VSwitch: VSwitch
|
101901
101906
|
VTable: VTable
|
101907
|
+
VTextField: VTextField
|
101908
|
+
VTextarea: VTextarea
|
101902
101909
|
VTimeline: VTimeline
|
101903
101910
|
VTimelineItem: VTimelineItem
|
101904
|
-
|
101905
|
-
VTextField: VTextField
|
101911
|
+
VTooltip: VTooltip
|
101906
101912
|
VToolbar: VToolbar
|
101907
101913
|
VToolbarTitle: VToolbarTitle
|
101908
101914
|
VToolbarItems: VToolbarItems
|
101909
101915
|
VWindow: VWindow
|
101910
101916
|
VWindowItem: VWindowItem
|
101911
|
-
VTooltip: VTooltip
|
101912
101917
|
VConfirmEdit: VConfirmEdit
|
101913
101918
|
VDataIterator: VDataIterator
|
101914
|
-
VDefaultsProvider: VDefaultsProvider
|
101915
101919
|
VForm: VForm
|
101916
|
-
VHover: VHover
|
101917
101920
|
VContainer: VContainer
|
101918
101921
|
VCol: VCol
|
101919
101922
|
VRow: VRow
|
101920
101923
|
VSpacer: VSpacer
|
101924
|
+
VHover: VHover
|
101921
101925
|
VLayout: VLayout
|
101922
101926
|
VLayoutItem: VLayoutItem
|
101923
101927
|
VLazy: VLazy
|
101924
101928
|
VLocaleProvider: VLocaleProvider
|
101925
101929
|
VNoSsr: VNoSsr
|
101926
101930
|
VParallax: VParallax
|
101931
|
+
VRangeSlider: VRangeSlider
|
101927
101932
|
VRadio: VRadio
|
101928
101933
|
VResponsive: VResponsive
|
101929
|
-
VRangeSlider: VRangeSlider
|
101930
|
-
VSnackbarQueue: VSnackbarQueue
|
101931
101934
|
VSparkline: VSparkline
|
101935
|
+
VSnackbarQueue: VSnackbarQueue
|
101932
101936
|
VSpeedDial: VSpeedDial
|
101933
101937
|
VThemeProvider: VThemeProvider
|
101934
|
-
VVirtualScroll: VVirtualScroll
|
101935
101938
|
VValidation: VValidation
|
101936
101939
|
VFabTransition: VFabTransition
|
101937
101940
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -101949,28 +101952,31 @@ declare module 'vue' {
|
|
101949
101952
|
VExpandTransition: VExpandTransition
|
101950
101953
|
VExpandXTransition: VExpandXTransition
|
101951
101954
|
VDialogTransition: VDialogTransition
|
101952
|
-
|
101955
|
+
VVirtualScroll: VVirtualScroll
|
101956
|
+
VInput: VInput
|
101957
|
+
VDefaultsProvider: VDefaultsProvider
|
101953
101958
|
VCalendar: VCalendar
|
101954
101959
|
VCalendarDay: VCalendarDay
|
101955
101960
|
VCalendarHeader: VCalendarHeader
|
101956
101961
|
VCalendarInterval: VCalendarInterval
|
101957
101962
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
101958
101963
|
VCalendarMonthDay: VCalendarMonthDay
|
101959
|
-
VIconBtn: VIconBtn
|
101960
101964
|
VFileUpload: VFileUpload
|
101961
101965
|
VFileUploadItem: VFileUploadItem
|
101966
|
+
VColorInput: VColorInput
|
101962
101967
|
VPicker: VPicker
|
101963
101968
|
VPickerTitle: VPickerTitle
|
101964
101969
|
VStepperVertical: VStepperVertical
|
101965
101970
|
VStepperVerticalItem: VStepperVerticalItem
|
101966
101971
|
VStepperVerticalActions: VStepperVerticalActions
|
101972
|
+
VIconBtn: VIconBtn
|
101967
101973
|
VTimePicker: VTimePicker
|
101968
101974
|
VTimePickerClock: VTimePickerClock
|
101969
101975
|
VTimePickerControls: VTimePickerControls
|
101970
|
-
VDateInput: VDateInput
|
101971
101976
|
VTreeview: VTreeview
|
101972
101977
|
VTreeviewItem: VTreeviewItem
|
101973
101978
|
VTreeviewGroup: VTreeviewGroup
|
101979
|
+
VDateInput: VDateInput
|
101974
101980
|
VPullToRefresh: VPullToRefresh
|
101975
101981
|
}
|
101976
101982
|
}
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.
|
2
|
+
* Vuetify v3.8.8-master.2025-06-04
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
6
6
|
|
7
|
-
import { shallowRef, reactive, watchEffect, toRef, capitalize, unref, Fragment, isVNode, Comment, warn, getCurrentInstance as getCurrentInstance$1, ref, computed, provide, inject as inject$1, defineComponent as defineComponent$1, h,
|
7
|
+
import { shallowRef, reactive, watchEffect, toRef, capitalize, camelize, unref, Fragment, isVNode, Comment, warn, getCurrentInstance as getCurrentInstance$1, ref, computed, provide, inject as inject$1, defineComponent as defineComponent$1, h, onBeforeUnmount, watch, readonly, onMounted, useId, onDeactivated, onActivated, onScopeDispose, effectScope, toRaw, createElementVNode, normalizeStyle, normalizeClass, createVNode, TransitionGroup, Transition, mergeProps, toRefs, toValue, isRef, onBeforeMount, nextTick, withDirectives, vShow, onUpdated, Text, resolveDynamicComponent, toDisplayString, markRaw, Teleport, cloneVNode, createTextVNode, normalizeProps, guardReactiveProps, onUnmounted, onBeforeUpdate, withModifiers, vModelText, resolveComponent, render } from 'vue';
|
8
8
|
|
9
9
|
// Types
|
10
10
|
// eslint-disable-line vue/prefer-import-from-vue
|
@@ -602,6 +602,14 @@ function extractNumber(text, decimalDigitsLimit) {
|
|
602
602
|
}
|
603
603
|
return cleanText;
|
604
604
|
}
|
605
|
+
function camelizeProps(props) {
|
606
|
+
if (!props) return;
|
607
|
+
const out = {};
|
608
|
+
for (const prop in props) {
|
609
|
+
out[camelize(prop)] = props[prop];
|
610
|
+
}
|
611
|
+
return out;
|
612
|
+
}
|
605
613
|
|
606
614
|
// Utilities
|
607
615
|
const block = ['top', 'bottom'];
|
@@ -8096,6 +8104,7 @@ const VChip = genericComponent()({
|
|
8096
8104
|
const isClickable = computed(() => !props.disabled && props.link !== false && (!!group || props.link || link.isClickable.value));
|
8097
8105
|
const closeProps = toRef(() => ({
|
8098
8106
|
'aria-label': t(props.closeLabel),
|
8107
|
+
disabled: props.disabled,
|
8099
8108
|
onClick(e) {
|
8100
8109
|
e.preventDefault();
|
8101
8110
|
e.stopPropagation();
|
@@ -9577,7 +9586,7 @@ function transformItem$3(props, item) {
|
|
9577
9586
|
const _props = {
|
9578
9587
|
title,
|
9579
9588
|
value,
|
9580
|
-
...itemProps
|
9589
|
+
...camelizeProps(itemProps)
|
9581
9590
|
};
|
9582
9591
|
return {
|
9583
9592
|
title: String(_props.title ?? ''),
|
@@ -15884,7 +15893,10 @@ const useSteps = props => {
|
|
15884
15893
|
if (step.value <= 0) return value;
|
15885
15894
|
const clamped = clamp(value, min.value, max.value);
|
15886
15895
|
const offset = min.value % step.value;
|
15887
|
-
|
15896
|
+
let newValue = Math.round((clamped - offset) / step.value) * step.value + offset;
|
15897
|
+
if (clamped > newValue && newValue + step.value > max.value) {
|
15898
|
+
newValue = max.value;
|
15899
|
+
}
|
15888
15900
|
return parseFloat(Math.min(newValue, max.value).toFixed(decimals.value));
|
15889
15901
|
}
|
15890
15902
|
return {
|
@@ -16140,6 +16152,8 @@ const VSliderThumb = genericComponent()({
|
|
16140
16152
|
} = useRtl();
|
16141
16153
|
if (!slider) throw new Error('[Vuetify] v-slider-thumb must be used inside v-slider or v-range-slider');
|
16142
16154
|
const {
|
16155
|
+
min,
|
16156
|
+
max,
|
16143
16157
|
thumbColor,
|
16144
16158
|
step,
|
16145
16159
|
disabled,
|
@@ -16180,16 +16194,20 @@ const VSliderThumb = genericComponent()({
|
|
16180
16194
|
if (!relevantKeys.includes(e.key)) return;
|
16181
16195
|
e.preventDefault();
|
16182
16196
|
const _step = step.value || 0.1;
|
16183
|
-
const steps = (
|
16197
|
+
const steps = (max.value - min.value) / _step;
|
16184
16198
|
if ([left, right, down, up].includes(e.key)) {
|
16185
16199
|
const increase = vertical.value ? [isRtl.value ? left : right, isReversed.value ? down : up] : indexFromEnd.value !== isRtl.value ? [left, up] : [right, up];
|
16186
16200
|
const direction = increase.includes(e.key) ? 1 : -1;
|
16187
16201
|
const multiplier = e.shiftKey ? 2 : e.ctrlKey ? 1 : 0;
|
16188
|
-
|
16202
|
+
if (direction === -1 && value === max.value && !multiplier && !Number.isInteger(steps)) {
|
16203
|
+
value = value - steps % 1 * _step;
|
16204
|
+
} else {
|
16205
|
+
value = value + direction * _step * multipliers.value[multiplier];
|
16206
|
+
}
|
16189
16207
|
} else if (e.key === home) {
|
16190
|
-
value =
|
16208
|
+
value = min.value;
|
16191
16209
|
} else if (e.key === end) {
|
16192
|
-
value =
|
16210
|
+
value = max.value;
|
16193
16211
|
} else {
|
16194
16212
|
const direction = e.key === pagedown ? 1 : -1;
|
16195
16213
|
value = value - direction * _step * (steps > 100 ? steps / 10 : 10);
|
@@ -16214,8 +16232,8 @@ const VSliderThumb = genericComponent()({
|
|
16214
16232
|
"role": "slider",
|
16215
16233
|
"tabindex": disabled.value ? -1 : 0,
|
16216
16234
|
"aria-label": props.name,
|
16217
|
-
"aria-valuemin":
|
16218
|
-
"aria-valuemax":
|
16235
|
+
"aria-valuemin": min.value,
|
16236
|
+
"aria-valuemax": max.value,
|
16219
16237
|
"aria-valuenow": props.modelValue,
|
16220
16238
|
"aria-readonly": !!readonly.value,
|
16221
16239
|
"aria-orientation": direction.value,
|
@@ -32073,7 +32091,7 @@ function createVuetify$1() {
|
|
32073
32091
|
};
|
32074
32092
|
});
|
32075
32093
|
}
|
32076
|
-
const version$1 = "3.8.
|
32094
|
+
const version$1 = "3.8.8-master.2025-06-04";
|
32077
32095
|
createVuetify$1.version = version$1;
|
32078
32096
|
|
32079
32097
|
// Vue's inject() can only be used in setup
|
@@ -32371,7 +32389,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
32371
32389
|
|
32372
32390
|
/* eslint-disable local-rules/sort-imports */
|
32373
32391
|
|
32374
|
-
const version = "3.8.
|
32392
|
+
const version = "3.8.8-master.2025-06-04";
|
32375
32393
|
|
32376
32394
|
/* eslint-disable local-rules/sort-imports */
|
32377
32395
|
|