@reachfive/identity-ui 1.25.1 → 1.25.2

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.
@@ -1,6 +1,6 @@
1
1
  /**
2
- * @reachfive/identity-ui - v1.25.1
3
- * Compiled Wed, 21 Feb 2024 13:39:13 UTC
2
+ * @reachfive/identity-ui - v1.25.2
3
+ * Compiled Wed, 21 Feb 2024 14:45:45 UTC
4
4
  *
5
5
  * Copyright (c) ReachFive.
6
6
  *
@@ -1954,8 +1954,6 @@
1954
1954
  */
1955
1955
  var setToString = shortOut(baseSetToString);
1956
1956
 
1957
- var setToString$1 = setToString;
1958
-
1959
1957
  /**
1960
1958
  * A specialized version of `baseRest` which flattens the rest array.
1961
1959
  *
@@ -1964,7 +1962,7 @@
1964
1962
  * @returns {Function} Returns the new function.
1965
1963
  */
1966
1964
  function flatRest(func) {
1967
- return setToString$1(overRest(func, undefined, flatten$1), func + '');
1965
+ return setToString(overRest(func, undefined, flatten$1), func + '');
1968
1966
  }
1969
1967
 
1970
1968
  /**
@@ -2578,7 +2576,7 @@
2578
2576
  * @returns {Function} Returns the new function.
2579
2577
  */
2580
2578
  function baseRest(func, start) {
2581
- return setToString$1(overRest(func, start, identity), func + '');
2579
+ return setToString(overRest(func, start, identity), func + '');
2582
2580
  }
2583
2581
 
2584
2582
  /**
@@ -4785,8 +4783,6 @@
4785
4783
  */
4786
4784
  var pull = baseRest(pullAll);
4787
4785
 
4788
- var pull$1 = pull;
4789
-
4790
4786
  /** `Object#toString` result references. */
4791
4787
  var mapTag = '[object Map]',
4792
4788
  setTag = '[object Set]';
@@ -20362,7 +20358,7 @@
20362
20358
  this.getListeners(name).push(listener);
20363
20359
  };
20364
20360
  EventManager.prototype.off = function (name, listener) {
20365
- pull$1(this.getListeners(name), listener);
20361
+ pull(this.getListeners(name), listener);
20366
20362
  };
20367
20363
  EventManager.prototype.getListeners = function (name) {
20368
20364
  var listeners = this.listeners[name];