@ceed/cds 0.0.187-treeshaking.0 → 0.0.187-treeshaking.1

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.
Files changed (21) hide show
  1. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/adapter/external-adapter.js +1 -1
  2. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/honey-pot-fix/get-element-from-point-without-honey-pot.js +1 -1
  3. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/lifecycle-manager.js +1 -1
  4. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-drop-target.js +2 -2
  5. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-monitor.js +1 -1
  6. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/prevent-unhandled.js +1 -1
  7. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/arrayLikeToArray.js +7 -0
  8. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/arrayWithHoles.js +5 -0
  9. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/arrayWithoutHoles.js +7 -0
  10. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/defineProperty.js +18 -0
  11. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/iterableToArray.js +5 -0
  12. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/iterableToArrayLimit.js +26 -0
  13. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/nonIterableRest.js +5 -0
  14. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/nonIterableSpread.js +5 -0
  15. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/slicedToArray.js +10 -0
  16. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/toConsumableArray.js +10 -0
  17. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/toPrimitive.js +14 -0
  18. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/toPropertyKey.js +9 -0
  19. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/typeof.js +11 -0
  20. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +12 -0
  21. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import _toConsumableArray from '../../../node_modules/@babel/runtime/helpers/esm/toConsumableArray.js';
1
+ import _toConsumableArray from '../../../external/@babel/runtime/helpers/esm/toConsumableArray.js';
2
2
  import { d as distExports } from '../../../../../../_virtual/index.js';
3
3
  import { makeAdapter } from '../make-adapter/make-adapter.js';
4
4
  import { androidFallbackText } from '../util/android.js';
@@ -1,4 +1,4 @@
1
- import _slicedToArray from '../../../node_modules/@babel/runtime/helpers/esm/slicedToArray.js';
1
+ import _slicedToArray from '../../../external/@babel/runtime/helpers/esm/slicedToArray.js';
2
2
  import { isHoneyPotElement } from './is-honey-pot-element.js';
3
3
 
4
4
  function getElementFromPointWithoutHoneypot(client) {
@@ -1,4 +1,4 @@
1
- import _toConsumableArray from '../../../node_modules/@babel/runtime/helpers/esm/toConsumableArray.js';
1
+ import _toConsumableArray from '../../../external/@babel/runtime/helpers/esm/toConsumableArray.js';
2
2
  import { d as distExports } from '../../../../../../_virtual/index.js';
3
3
  import { getElementFromPointWithoutHoneypot } from '../honey-pot-fix/get-element-from-point-without-honey-pot.js';
4
4
  import { isHoneyPotElement } from '../honey-pot-fix/is-honey-pot-element.js';
@@ -1,5 +1,5 @@
1
- import _defineProperty from '../../../node_modules/@babel/runtime/helpers/esm/defineProperty.js';
2
- import _toConsumableArray from '../../../node_modules/@babel/runtime/helpers/esm/toConsumableArray.js';
1
+ import _defineProperty from '../../../external/@babel/runtime/helpers/esm/defineProperty.js';
2
+ import _toConsumableArray from '../../../external/@babel/runtime/helpers/esm/toConsumableArray.js';
3
3
  import { combine } from '../public-utils/combine.js';
4
4
  import { addAttribute } from '../util/add-attribute.js';
5
5
 
@@ -1,4 +1,4 @@
1
- import _defineProperty from '../../../node_modules/@babel/runtime/helpers/esm/defineProperty.js';
1
+ import _defineProperty from '../../../external/@babel/runtime/helpers/esm/defineProperty.js';
2
2
 
3
3
  function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike) { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
4
4
  function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
@@ -1,4 +1,4 @@
1
- import _toConsumableArray from '../../../node_modules/@babel/runtime/helpers/esm/toConsumableArray.js';
1
+ import _toConsumableArray from '../../../external/@babel/runtime/helpers/esm/toConsumableArray.js';
2
2
  import { d as distExports } from '../../../../../../_virtual/index.js';
3
3
  import { getBindingsForBrokenDrags } from '../util/detect-broken-drag.js';
4
4
 
@@ -0,0 +1,7 @@
1
+ function _arrayLikeToArray(arr, len) {
2
+ if (len == null || len > arr.length) len = arr.length;
3
+ for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
4
+ return arr2;
5
+ }
6
+
7
+ export { _arrayLikeToArray as default };
@@ -0,0 +1,5 @@
1
+ function _arrayWithHoles(arr) {
2
+ if (Array.isArray(arr)) return arr;
3
+ }
4
+
5
+ export { _arrayWithHoles as default };
@@ -0,0 +1,7 @@
1
+ import _arrayLikeToArray from './arrayLikeToArray.js';
2
+
3
+ function _arrayWithoutHoles(arr) {
4
+ if (Array.isArray(arr)) return _arrayLikeToArray(arr);
5
+ }
6
+
7
+ export { _arrayWithoutHoles as default };
@@ -0,0 +1,18 @@
1
+ import toPropertyKey from './toPropertyKey.js';
2
+
3
+ function _defineProperty(obj, key, value) {
4
+ key = toPropertyKey(key);
5
+ if (key in obj) {
6
+ Object.defineProperty(obj, key, {
7
+ value: value,
8
+ enumerable: true,
9
+ configurable: true,
10
+ writable: true
11
+ });
12
+ } else {
13
+ obj[key] = value;
14
+ }
15
+ return obj;
16
+ }
17
+
18
+ export { _defineProperty as default };
@@ -0,0 +1,5 @@
1
+ function _iterableToArray(iter) {
2
+ if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
3
+ }
4
+
5
+ export { _iterableToArray as default };
@@ -0,0 +1,26 @@
1
+ function _iterableToArrayLimit(r, l) {
2
+ var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
3
+ if (null != t) {
4
+ var e,
5
+ n,
6
+ i,
7
+ u,
8
+ a = [],
9
+ f = true,
10
+ o = false;
11
+ try {
12
+ if (i = (t = t.call(r)).next, 0 === l) ; else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);
13
+ } catch (r) {
14
+ o = true, n = r;
15
+ } finally {
16
+ try {
17
+ if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return;
18
+ } finally {
19
+ if (o) throw n;
20
+ }
21
+ }
22
+ return a;
23
+ }
24
+ }
25
+
26
+ export { _iterableToArrayLimit as default };
@@ -0,0 +1,5 @@
1
+ function _nonIterableRest() {
2
+ throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
3
+ }
4
+
5
+ export { _nonIterableRest as default };
@@ -0,0 +1,5 @@
1
+ function _nonIterableSpread() {
2
+ throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
3
+ }
4
+
5
+ export { _nonIterableSpread as default };
@@ -0,0 +1,10 @@
1
+ import _arrayWithHoles from './arrayWithHoles.js';
2
+ import _iterableToArrayLimit from './iterableToArrayLimit.js';
3
+ import _unsupportedIterableToArray from './unsupportedIterableToArray.js';
4
+ import _nonIterableRest from './nonIterableRest.js';
5
+
6
+ function _slicedToArray(arr, i) {
7
+ return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
8
+ }
9
+
10
+ export { _slicedToArray as default };
@@ -0,0 +1,10 @@
1
+ import _arrayWithoutHoles from './arrayWithoutHoles.js';
2
+ import _iterableToArray from './iterableToArray.js';
3
+ import _unsupportedIterableToArray from './unsupportedIterableToArray.js';
4
+ import _nonIterableSpread from './nonIterableSpread.js';
5
+
6
+ function _toConsumableArray(arr) {
7
+ return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
8
+ }
9
+
10
+ export { _toConsumableArray as default };
@@ -0,0 +1,14 @@
1
+ import _typeof from './typeof.js';
2
+
3
+ function toPrimitive(t, r) {
4
+ if ("object" != _typeof(t) || !t) return t;
5
+ var e = t[Symbol.toPrimitive];
6
+ if (undefined !== e) {
7
+ var i = e.call(t, r || "default");
8
+ if ("object" != _typeof(i)) return i;
9
+ throw new TypeError("@@toPrimitive must return a primitive value.");
10
+ }
11
+ return ("string" === r ? String : Number)(t);
12
+ }
13
+
14
+ export { toPrimitive as default };
@@ -0,0 +1,9 @@
1
+ import _typeof from './typeof.js';
2
+ import toPrimitive from './toPrimitive.js';
3
+
4
+ function toPropertyKey(t) {
5
+ var i = toPrimitive(t, "string");
6
+ return "symbol" == _typeof(i) ? i : i + "";
7
+ }
8
+
9
+ export { toPropertyKey as default };
@@ -0,0 +1,11 @@
1
+ function _typeof(o) {
2
+ "@babel/helpers - typeof";
3
+
4
+ return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
5
+ return typeof o;
6
+ } : function (o) {
7
+ return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
8
+ }, _typeof(o);
9
+ }
10
+
11
+ export { _typeof as default };
@@ -0,0 +1,12 @@
1
+ import _arrayLikeToArray from './arrayLikeToArray.js';
2
+
3
+ function _unsupportedIterableToArray(o, minLen) {
4
+ if (!o) return;
5
+ if (typeof o === "string") return _arrayLikeToArray(o, minLen);
6
+ var n = Object.prototype.toString.call(o).slice(8, -1);
7
+ if (n === "Object" && o.constructor) n = o.constructor.name;
8
+ if (n === "Map" || n === "Set") return Array.from(o);
9
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
10
+ }
11
+
12
+ export { _unsupportedIterableToArray as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ceed/cds",
3
- "version": "0.0.187-treeshaking.0",
3
+ "version": "0.0.187-treeshaking.1",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "type": "module",