@vuetify/nightly 3.7.0-master.2024-08-21 → 3.7.0-master.2024-08-22

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.
@@ -29899,6 +29899,7 @@ declare const VDialog: {
29899
29899
  targetRef: TemplateRef;
29900
29900
  }) => vue.VNodeChild) | undefined;
29901
29901
  } & {
29902
+ onAfterEnter?: (() => any) | undefined;
29902
29903
  onAfterLeave?: (() => any) | undefined;
29903
29904
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
29904
29905
  }, Omit<Omit<{
@@ -30357,6 +30358,7 @@ declare const VDialog: {
30357
30358
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
30358
30359
  }> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
30359
30360
  'update:modelValue': (value: boolean) => true;
30361
+ afterEnter: () => true;
30360
30362
  afterLeave: () => true;
30361
30363
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
30362
30364
  absolute: boolean;
@@ -30440,6 +30442,7 @@ declare const VDialog: {
30440
30442
  targetRef: TemplateRef;
30441
30443
  }) => vue.VNodeChild) | undefined;
30442
30444
  } & {
30445
+ onAfterEnter?: (() => any) | undefined;
30443
30446
  onAfterLeave?: (() => any) | undefined;
30444
30447
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
30445
30448
  }, {
@@ -30571,6 +30574,7 @@ declare const VDialog: {
30571
30574
  targetRef: TemplateRef;
30572
30575
  }) => vue.VNodeChild) | undefined;
30573
30576
  } & {
30577
+ onAfterEnter?: (() => any) | undefined;
30574
30578
  onAfterLeave?: (() => any) | undefined;
30575
30579
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
30576
30580
  }, Omit<Omit<{
@@ -31144,6 +31148,7 @@ declare const VDialog: {
31144
31148
  targetRef: TemplateRef;
31145
31149
  }) => vue.VNodeChild) | undefined;
31146
31150
  } & {
31151
+ onAfterEnter?: (() => any) | undefined;
31147
31152
  onAfterLeave?: (() => any) | undefined;
31148
31153
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
31149
31154
  }, Omit<Omit<{
@@ -31602,6 +31607,7 @@ declare const VDialog: {
31602
31607
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
31603
31608
  }> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
31604
31609
  'update:modelValue': (value: boolean) => true;
31610
+ afterEnter: () => true;
31605
31611
  afterLeave: () => true;
31606
31612
  }, string, {
31607
31613
  absolute: boolean;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.0-master.2024-08-21
2
+ * Vuetify v3.7.0-master.2024-08-22
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -13686,6 +13686,7 @@ const VDialog = genericComponent()({
13686
13686
  props: makeVDialogProps(),
13687
13687
  emits: {
13688
13688
  'update:modelValue': value => true,
13689
+ afterEnter: () => true,
13689
13690
  afterLeave: () => true
13690
13691
  },
13691
13692
  setup(props, _ref) {
@@ -13727,6 +13728,7 @@ const VDialog = genericComponent()({
13727
13728
  });
13728
13729
  }
13729
13730
  function onAfterEnter() {
13731
+ emit('afterEnter');
13730
13732
  if (overlay.value?.contentEl && !overlay.value.contentEl.contains(document.activeElement)) {
13731
13733
  overlay.value.contentEl.focus({
13732
13734
  preventScroll: true
@@ -30384,7 +30386,7 @@ function createVuetify$1() {
30384
30386
  goTo
30385
30387
  };
30386
30388
  }
30387
- const version$1 = "3.7.0-master.2024-08-21";
30389
+ const version$1 = "3.7.0-master.2024-08-22";
30388
30390
  createVuetify$1.version = version$1;
30389
30391
 
30390
30392
  // Vue's inject() can only be used in setup
@@ -30637,7 +30639,7 @@ var index = /*#__PURE__*/Object.freeze({
30637
30639
 
30638
30640
  /* eslint-disable local-rules/sort-imports */
30639
30641
 
30640
- const version = "3.7.0-master.2024-08-21";
30642
+ const version = "3.7.0-master.2024-08-22";
30641
30643
 
30642
30644
  /* eslint-disable local-rules/sort-imports */
30643
30645