@vuetify/nightly 3.7.6-dev.2025-01-15 → 3.7.6-dev.2025-01-17
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/dist/json/attributes.json +1383 -1379
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +154 -154
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +2910 -2901
- package/dist/vuetify-labs.css +3443 -3443
- package/dist/vuetify-labs.d.ts +57 -51
- package/dist/vuetify-labs.esm.js +10 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5558 -5558
- package/dist/vuetify.d.ts +57 -51
- package/dist/vuetify.esm.js +10 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VTimeline/VTimeline.css +8 -8
- package/lib/components/VTimeline/VTimeline.sass +12 -4
- package/lib/components/VTimeline/VTimelineItem.d.ts +12 -1
- package/lib/components/VTimeline/VTimelineItem.js +7 -1
- package/lib/components/VTimeline/VTimelineItem.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +51 -51
- 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.7.6-dev.2025-01-
|
2
|
+
* Vuetify v3.7.6-dev.2025-01-17
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -27321,6 +27321,10 @@
|
|
27321
27321
|
icon: IconValue,
|
27322
27322
|
iconColor: String,
|
27323
27323
|
lineInset: [Number, String],
|
27324
|
+
side: {
|
27325
|
+
type: String,
|
27326
|
+
validator: v => v == null || ['start', 'end'].includes(v)
|
27327
|
+
},
|
27324
27328
|
...makeComponentProps(),
|
27325
27329
|
...makeDimensionProps(),
|
27326
27330
|
...makeElevationProps(),
|
@@ -27348,7 +27352,9 @@
|
|
27348
27352
|
});
|
27349
27353
|
useRender(() => vue.createVNode("div", {
|
27350
27354
|
"class": ['v-timeline-item', {
|
27351
|
-
'v-timeline-item--fill-dot': props.fillDot
|
27355
|
+
'v-timeline-item--fill-dot': props.fillDot,
|
27356
|
+
'v-timeline-item--side-start': props.side === 'start',
|
27357
|
+
'v-timeline-item--side-end': props.side === 'end'
|
27352
27358
|
}, props.class],
|
27353
27359
|
"style": [{
|
27354
27360
|
'--v-timeline-dot-size': convertToUnit(dotSize.value),
|
@@ -30771,7 +30777,7 @@
|
|
30771
30777
|
goTo
|
30772
30778
|
};
|
30773
30779
|
}
|
30774
|
-
const version$1 = "3.7.6-dev.2025-01-
|
30780
|
+
const version$1 = "3.7.6-dev.2025-01-17";
|
30775
30781
|
createVuetify$1.version = version$1;
|
30776
30782
|
|
30777
30783
|
// Vue's inject() can only be used in setup
|
@@ -31024,7 +31030,7 @@
|
|
31024
31030
|
|
31025
31031
|
/* eslint-disable local-rules/sort-imports */
|
31026
31032
|
|
31027
|
-
const version = "3.7.6-dev.2025-01-
|
31033
|
+
const version = "3.7.6-dev.2025-01-17";
|
31028
31034
|
|
31029
31035
|
/* eslint-disable local-rules/sort-imports */
|
31030
31036
|
|