@eui/components 17.3.0-snapshot-1710814694744 → 17.3.0-snapshot-1710860987215

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.
@@ -311,9 +311,9 @@
311
311
  <li>
312
312
  <b>@stackblitz/sdk</b> : 1.9.0</li>
313
313
  <li>
314
- <b>@eui/styles-base</b> : 17.3.0-snapshot-1710756594967</li>
314
+ <b>@eui/styles-base</b> : 17.3.0-snapshot-1710814694744</li>
315
315
  <li>
316
- <b>@eui/ecl</b> : 17.3.0-snapshot-1710756594967</li>
316
+ <b>@eui/ecl</b> : 17.3.0-snapshot-1710814694744</li>
317
317
  <li>
318
318
  <b>@eui/tools</b> : ^6.0.0</li>
319
319
  </ul>
@@ -4,7 +4,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
4
4
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
5
5
  function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
6
6
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
7
- function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
8
8
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
9
9
  function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
10
10
  function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
@@ -17,7 +17,6 @@ function _isNativeFunction(fn) { try { return Function.toString.call(fn).indexOf
17
17
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
18
18
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
19
19
  customElements.define('compodoc-menu', /*#__PURE__*/function (_HTMLElement) {
20
- _inherits(_class, _HTMLElement);
21
20
  function _class() {
22
21
  var _this;
23
22
  _classCallCheck(this, _class);
@@ -25,7 +24,8 @@ customElements.define('compodoc-menu', /*#__PURE__*/function (_HTMLElement) {
25
24
  _this.isNormalMode = _this.getAttribute('mode') === 'normal';
26
25
  return _this;
27
26
  }
28
- _createClass(_class, [{
27
+ _inherits(_class, _HTMLElement);
28
+ return _createClass(_class, [{
29
29
  key: "connectedCallback",
30
30
  value: function connectedCallback() {
31
31
  this.render(this.isNormalMode);
@@ -37,5 +37,4 @@ customElements.define('compodoc-menu', /*#__PURE__*/function (_HTMLElement) {
37
37
  this.innerHTML = tp.strings;
38
38
  }
39
39
  }]);
40
- return _class;
41
40
  }( /*#__PURE__*/_wrapNativeSuper(HTMLElement)));