@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-labs.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
|
*/
|
@@ -13972,7 +13972,8 @@
|
|
13972
13972
|
...makeThemeProps(),
|
13973
13973
|
...makeTransitionProps({
|
13974
13974
|
transition: 'scale-rotate-transition'
|
13975
|
-
})
|
13975
|
+
}),
|
13976
|
+
...makeDimensionProps()
|
13976
13977
|
}, 'VBadge');
|
13977
13978
|
const VBadge = genericComponent()({
|
13978
13979
|
name: 'VBadge',
|
@@ -14002,6 +14003,9 @@
|
|
14002
14003
|
const base = props.floating ? props.dot ? 2 : 4 : props.dot ? 8 : 12;
|
14003
14004
|
return base + (['top', 'bottom'].includes(side) ? Number(props.offsetY ?? 0) : ['left', 'right'].includes(side) ? Number(props.offsetX ?? 0) : 0);
|
14004
14005
|
});
|
14006
|
+
const {
|
14007
|
+
dimensionStyles
|
14008
|
+
} = useDimension(props);
|
14005
14009
|
useRender(() => {
|
14006
14010
|
const value = Number(props.content);
|
14007
14011
|
const content = !props.max || isNaN(value) ? props.content : value <= Number(props.max) ? value : `${props.max}+`;
|
@@ -14023,7 +14027,7 @@
|
|
14023
14027
|
}, {
|
14024
14028
|
default: () => [vue.withDirectives(vue.createElementVNode("span", vue.mergeProps({
|
14025
14029
|
"class": ['v-badge__badge', themeClasses.value, backgroundColorClasses.value, roundedClasses.value, textColorClasses.value],
|
14026
|
-
"style": [backgroundColorStyles.value, textColorStyles.value, props.inline ? {} : locationStyles.value],
|
14030
|
+
"style": [backgroundColorStyles.value, textColorStyles.value, dimensionStyles.value, props.inline ? {} : locationStyles.value],
|
14027
14031
|
"aria-atomic": "true",
|
14028
14032
|
"aria-label": t(props.label, value),
|
14029
14033
|
"aria-live": "polite",
|
@@ -24051,6 +24055,9 @@
|
|
24051
24055
|
startStatus.value = status;
|
24052
24056
|
} else if (side === 'end') {
|
24053
24057
|
endStatus.value = status;
|
24058
|
+
} else if (side === 'both') {
|
24059
|
+
startStatus.value = status;
|
24060
|
+
endStatus.value = status;
|
24054
24061
|
}
|
24055
24062
|
}
|
24056
24063
|
function getStatus(side) {
|
@@ -24162,6 +24169,32 @@
|
|
24162
24169
|
}, [renderSide('end', endStatus.value)])]
|
24163
24170
|
});
|
24164
24171
|
});
|
24172
|
+
function reset(side) {
|
24173
|
+
const effectiveSide = side ?? props.side;
|
24174
|
+
setStatus(effectiveSide, 'ok');
|
24175
|
+
vue.nextTick(() => {
|
24176
|
+
setScrollAmount(getScrollSize() - previousScrollSize + getScrollAmount());
|
24177
|
+
if (props.mode !== 'manual') {
|
24178
|
+
vue.nextTick(() => {
|
24179
|
+
window.requestAnimationFrame(() => {
|
24180
|
+
window.requestAnimationFrame(() => {
|
24181
|
+
window.requestAnimationFrame(() => {
|
24182
|
+
if (effectiveSide === 'both') {
|
24183
|
+
intersecting('start');
|
24184
|
+
intersecting('end');
|
24185
|
+
} else {
|
24186
|
+
intersecting(effectiveSide);
|
24187
|
+
}
|
24188
|
+
});
|
24189
|
+
});
|
24190
|
+
});
|
24191
|
+
});
|
24192
|
+
}
|
24193
|
+
});
|
24194
|
+
}
|
24195
|
+
return {
|
24196
|
+
reset
|
24197
|
+
};
|
24165
24198
|
}
|
24166
24199
|
});
|
24167
24200
|
|
@@ -32305,7 +32338,7 @@
|
|
32305
32338
|
};
|
32306
32339
|
});
|
32307
32340
|
}
|
32308
|
-
const version$1 = "3.8.8-dev.2025-06-
|
32341
|
+
const version$1 = "3.8.8-dev.2025-06-10";
|
32309
32342
|
createVuetify$1.version = version$1;
|
32310
32343
|
|
32311
32344
|
// Vue's inject() can only be used in setup
|
@@ -32603,7 +32636,7 @@
|
|
32603
32636
|
|
32604
32637
|
/* eslint-disable local-rules/sort-imports */
|
32605
32638
|
|
32606
|
-
const version = "3.8.8-dev.2025-06-
|
32639
|
+
const version = "3.8.8-dev.2025-06-10";
|
32607
32640
|
|
32608
32641
|
/* eslint-disable local-rules/sort-imports */
|
32609
32642
|
|