@dimailn/vuetify 2.7.2-alpha53 → 2.7.2-alpha55

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
@@ -25802,6 +25802,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_14__["default"])(_
25802
25802
  genInput: function genInput() {
25803
25803
  var input = _VTextField_VTextField__WEBPACK_IMPORTED_MODULE_6__["default"].methods.genInput.call(this);
25804
25804
  delete input.props.name;
25805
+ delete input.props.placeholder;
25805
25806
  input.props = Object(_util_mergeData__WEBPACK_IMPORTED_MODULE_11__["default"])(input.props, {
25806
25807
  readonly: true,
25807
25808
  type: 'text',
@@ -33888,7 +33889,7 @@ var __values = undefined && undefined.__values || function (o) {
33888
33889
  },
33889
33890
  register: function register(node) {
33890
33891
  var key = Object(_util_helpers__WEBPACK_IMPORTED_MODULE_5__["getObjectValueByPath"])(node.item, this.itemKey);
33891
- this.nodes[key].vnode = node;
33892
+ this.nodes[key].vnode = Object(vue__WEBPACK_IMPORTED_MODULE_0__["markRaw"])(node);
33892
33893
  this.updateVnodeState(key);
33893
33894
  },
33894
33895
  unregister: function unregister(node) {
@@ -37119,7 +37120,7 @@ function () {
37119
37120
 
37120
37121
  Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
37121
37122
  Vuetify.installed = false;
37122
- Vuetify.version = "2.7.2-alpha53";
37123
+ Vuetify.version = "2.7.2-alpha55";
37123
37124
  Vuetify.config = {
37124
37125
  silent: false
37125
37126
  };
@@ -44012,7 +44013,6 @@ __webpack_require__.r(__webpack_exports__);
44012
44013
  /* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "vue");
44013
44014
  /* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);
44014
44015
  /* harmony import */ var _directives_ripple__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../directives/ripple */ "./src/directives/ripple/index.ts");
44015
- /* harmony import */ var _util_helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../util/helpers */ "./src/util/helpers.ts");
44016
44016
  var __assign = undefined && undefined.__assign || function () {
44017
44017
  __assign = Object.assign || function (t) {
44018
44018
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -44033,7 +44033,6 @@ var __assign = undefined && undefined.__assign || function () {
44033
44033
 
44034
44034
  // Utilities
44035
44035
 
44036
-
44037
44036
  /* harmony default export */ __webpack_exports__["default"] = (Object(vue__WEBPACK_IMPORTED_MODULE_0__["defineComponent"])({
44038
44037
  name: 'routable',
44039
44038
  directives: {
@@ -44162,10 +44161,15 @@ var __assign = undefined && undefined.__assign || function () {
44162
44161
  if (!this.to || !this.$refs.link || !this.$route) return;
44163
44162
  var activeClass = ((this.activeClass || '') + " " + (this.proxyClass || '')).trim();
44164
44163
  var exactActiveClass = ((this.exactActiveClass || '') + " " + (this.proxyClass || '')).trim() || activeClass;
44165
- var path = '_vnode.data.class.' + (this.exact ? exactActiveClass : activeClass);
44164
+ var activeClasses = (this.exact ? exactActiveClass : activeClass).split(' ');
44166
44165
  this.$nextTick(function () {
44167
44166
  /* istanbul ignore else */
44168
- var isLinkActive = Boolean(Object(_util_helpers__WEBPACK_IMPORTED_MODULE_2__["getObjectValueByPath"])(_this.$refs.link, path));
44167
+ var el = _this.$refs.link.$el || _this.$refs.link;
44168
+ var isLinkActive = activeClasses.every(function (c) {
44169
+ var _a;
44170
+
44171
+ return (_a = el === null || el === void 0 ? void 0 : el.classList) === null || _a === void 0 ? void 0 : _a.contains(c);
44172
+ });
44169
44173
 
44170
44174
  if (isLinkActive !== _this.isActive) {
44171
44175
  _this.toggle();