@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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.6-dev.2025-01-15
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-15";
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-15";
31033
+ const version = "3.7.6-dev.2025-01-17";
31028
31034
 
31029
31035
  /* eslint-disable local-rules/sort-imports */
31030
31036