@vuetify/nightly 3.9.3-master.2025-08-02 → 3.9.3-master.2025-08-03

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.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.3-master.2025-08-02
2
+ * Vuetify v3.9.3-master.2025-08-03
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -7340,9 +7340,14 @@
7340
7340
  // Utilities
7341
7341
  const RulesSymbol = Symbol.for('vuetify:rules');
7342
7342
  function useRules(fn) {
7343
- const resolveRules = vue.inject(RulesSymbol, null);
7344
- if (!resolveRules) return vue.toRef(fn);
7345
- return resolveRules(fn);
7343
+ const rules = vue.inject(RulesSymbol, null);
7344
+ if (!fn) {
7345
+ if (!rules) {
7346
+ throw new Error('Could not find Vuetify rules injection');
7347
+ }
7348
+ return rules.aliases;
7349
+ }
7350
+ return rules?.resolve(fn) ?? vue.toRef(fn);
7346
7351
  }
7347
7352
 
7348
7353
  // Composables
@@ -31582,7 +31587,7 @@
31582
31587
  };
31583
31588
  });
31584
31589
  }
31585
- const version$1 = "3.9.3-master.2025-08-02";
31590
+ const version$1 = "3.9.3-master.2025-08-03";
31586
31591
  createVuetify$1.version = version$1;
31587
31592
 
31588
31593
  // Vue's inject() can only be used in setup
@@ -31607,7 +31612,7 @@
31607
31612
  ...options
31608
31613
  });
31609
31614
  };
31610
- const version = "3.9.3-master.2025-08-02";
31615
+ const version = "3.9.3-master.2025-08-03";
31611
31616
  createVuetify.version = version;
31612
31617
 
31613
31618
  exports.blueprints = index;