@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/vuetify.js CHANGED
@@ -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
  */
@@ -27554,6 +27554,10 @@
27554
27554
  icon: IconValue,
27555
27555
  iconColor: String,
27556
27556
  lineInset: [Number, String],
27557
+ side: {
27558
+ type: String,
27559
+ validator: v => v == null || ['start', 'end'].includes(v)
27560
+ },
27557
27561
  ...makeComponentProps(),
27558
27562
  ...makeDimensionProps(),
27559
27563
  ...makeElevationProps(),
@@ -27581,7 +27585,9 @@
27581
27585
  });
27582
27586
  useRender(() => vue.createVNode("div", {
27583
27587
  "class": ['v-timeline-item', {
27584
- 'v-timeline-item--fill-dot': props.fillDot
27588
+ 'v-timeline-item--fill-dot': props.fillDot,
27589
+ 'v-timeline-item--side-start': props.side === 'start',
27590
+ 'v-timeline-item--side-end': props.side === 'end'
27585
27591
  }, props.class],
27586
27592
  "style": [{
27587
27593
  '--v-timeline-dot-size': convertToUnit(dotSize.value),
@@ -28309,7 +28315,7 @@
28309
28315
  goTo
28310
28316
  };
28311
28317
  }
28312
- const version$1 = "3.7.6-dev.2025-01-15";
28318
+ const version$1 = "3.7.6-dev.2025-01-17";
28313
28319
  createVuetify$1.version = version$1;
28314
28320
 
28315
28321
  // Vue's inject() can only be used in setup
@@ -28334,7 +28340,7 @@
28334
28340
  ...options
28335
28341
  });
28336
28342
  };
28337
- const version = "3.7.6-dev.2025-01-15";
28343
+ const version = "3.7.6-dev.2025-01-17";
28338
28344
  createVuetify.version = version;
28339
28345
 
28340
28346
  exports.blueprints = index;