@storybook/components 6.5.0-alpha.2 → 6.5.0-alpha.23

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 (245) hide show
  1. package/dist/cjs/ActionBar/ActionBar.js +4 -2
  2. package/dist/cjs/ActionBar/ActionBar.stories.js +1 -1
  3. package/dist/cjs/Button/Button.js +8 -6
  4. package/dist/cjs/Loader/Loader.js +12 -8
  5. package/dist/cjs/Loader/Loader.stories.js +1 -1
  6. package/dist/cjs/ScrollArea/GlobalScrollAreaStyles.js +1 -1
  7. package/dist/cjs/ScrollArea/OverlayScrollbars.js +7 -3
  8. package/dist/cjs/ScrollArea/ScrollArea.js +10 -8
  9. package/dist/cjs/ScrollArea/ScrollArea.stories.js +6 -6
  10. package/dist/cjs/Zoom/Zoom.js +1 -1
  11. package/dist/cjs/Zoom/Zoom.stories.js +9 -7
  12. package/dist/cjs/Zoom/ZoomElement.js +8 -6
  13. package/dist/cjs/Zoom/ZoomIFrame.js +8 -8
  14. package/dist/cjs/addon-panel/addon-panel.js +5 -5
  15. package/dist/cjs/bar/bar.js +16 -10
  16. package/dist/cjs/bar/button.js +6 -4
  17. package/dist/cjs/bar/button.stories.js +1 -1
  18. package/dist/cjs/bar/separator.js +7 -7
  19. package/dist/cjs/blocks/ArgsTable/ArgControl.js +8 -6
  20. package/dist/cjs/blocks/ArgsTable/ArgJsDoc.js +3 -1
  21. package/dist/cjs/blocks/ArgsTable/ArgRow.stories.js +1 -1
  22. package/dist/cjs/blocks/ArgsTable/ArgValue.js +9 -9
  23. package/dist/cjs/blocks/ArgsTable/ArgsTable.js +10 -6
  24. package/dist/cjs/blocks/ArgsTable/ArgsTable.stories.js +6 -6
  25. package/dist/cjs/blocks/ArgsTable/SectionRow.js +8 -6
  26. package/dist/cjs/blocks/ArgsTable/SectionRow.stories.js +1 -1
  27. package/dist/cjs/blocks/ArgsTable/TabbedArgsTable.js +10 -6
  28. package/dist/cjs/blocks/ArgsTable/TabbedArgsTable.stories.js +1 -1
  29. package/dist/cjs/blocks/ArgsTable/index.js +2 -0
  30. package/dist/cjs/blocks/ColorPalette.js +3 -1
  31. package/dist/cjs/blocks/ColorPalette.stories.js +1 -1
  32. package/dist/cjs/blocks/Description.stories.js +1 -1
  33. package/dist/cjs/blocks/DocsPage.js +1 -1
  34. package/dist/cjs/blocks/DocsPage.stories.js +6 -6
  35. package/dist/cjs/blocks/EmptyBlock.stories.js +1 -1
  36. package/dist/cjs/blocks/IFrame.js +13 -11
  37. package/dist/cjs/blocks/IconGallery.js +4 -2
  38. package/dist/cjs/blocks/IconGallery.stories.js +1 -1
  39. package/dist/cjs/blocks/Preview.js +14 -10
  40. package/dist/cjs/blocks/Preview.stories.js +6 -6
  41. package/dist/cjs/blocks/Source.js +6 -4
  42. package/dist/cjs/blocks/Source.stories.js +1 -1
  43. package/dist/cjs/blocks/Story.js +20 -9
  44. package/dist/cjs/blocks/Story.stories.js +9 -7
  45. package/dist/cjs/blocks/Toolbar.js +11 -9
  46. package/dist/cjs/blocks/Typeset.js +3 -1
  47. package/dist/cjs/blocks/Typeset.stories.js +1 -1
  48. package/dist/cjs/blocks/index.js +2 -0
  49. package/dist/cjs/brand/StorybookLogo.js +5 -3
  50. package/dist/cjs/brand/StorybookLogo.stories.js +1 -1
  51. package/dist/cjs/controls/Boolean.js +5 -5
  52. package/dist/cjs/controls/Boolean.stories.js +9 -7
  53. package/dist/cjs/controls/Color.js +13 -11
  54. package/dist/cjs/controls/Color.stories.js +9 -7
  55. package/dist/cjs/controls/Date.js +8 -8
  56. package/dist/cjs/controls/Date.stories.js +9 -7
  57. package/dist/cjs/controls/Files.js +7 -5
  58. package/dist/cjs/controls/Number.js +17 -8
  59. package/dist/cjs/controls/Number.stories.js +9 -7
  60. package/dist/cjs/controls/Object.js +8 -6
  61. package/dist/cjs/controls/Object.stories.js +9 -7
  62. package/dist/cjs/controls/Range.js +7 -7
  63. package/dist/cjs/controls/Range.stories.js +9 -7
  64. package/dist/cjs/controls/Text.js +8 -6
  65. package/dist/cjs/controls/Text.stories.js +9 -7
  66. package/dist/cjs/controls/helpers.js +2 -2
  67. package/dist/cjs/controls/index.js +7 -7
  68. package/dist/cjs/controls/options/Checkbox.js +9 -7
  69. package/dist/cjs/controls/options/Options.js +2 -0
  70. package/dist/cjs/controls/options/Options.stories.js +9 -7
  71. package/dist/cjs/controls/options/Select.js +2 -0
  72. package/dist/cjs/controls/options/helpers.js +7 -5
  73. package/dist/cjs/controls/options/index.js +2 -0
  74. package/dist/cjs/controls/react-editable-json-tree/components/JsonAddValue.js +10 -10
  75. package/dist/cjs/controls/react-editable-json-tree/components/JsonArray.js +13 -11
  76. package/dist/cjs/controls/react-editable-json-tree/components/JsonFunctionValue.js +13 -11
  77. package/dist/cjs/controls/react-editable-json-tree/components/JsonNode.js +8 -8
  78. package/dist/cjs/controls/react-editable-json-tree/components/JsonObject.js +13 -11
  79. package/dist/cjs/controls/react-editable-json-tree/components/JsonValue.js +13 -11
  80. package/dist/cjs/controls/react-editable-json-tree/index.js +21 -21
  81. package/dist/cjs/controls/react-editable-json-tree/utils/objectTypes.js +3 -3
  82. package/dist/cjs/controls/react-editable-json-tree/utils/styles.js +1 -1
  83. package/dist/cjs/controls/types.js +5 -1
  84. package/dist/cjs/form/field/field.js +3 -1
  85. package/dist/cjs/form/form.stories.js +5 -3
  86. package/dist/cjs/form/input/input.js +15 -10
  87. package/dist/cjs/html.js +2 -0
  88. package/dist/cjs/icon/icon.js +3 -1
  89. package/dist/cjs/icon/icon.stories.js +2 -0
  90. package/dist/cjs/icon/icons.js +1 -1
  91. package/dist/cjs/index.js +75 -63
  92. package/dist/cjs/placeholder/placeholder.js +15 -9
  93. package/dist/cjs/placeholder/placeholder.stories.js +6 -6
  94. package/dist/cjs/spaced/Spaced.js +3 -1
  95. package/dist/cjs/syntaxhighlighter/lazy-syntaxhighlighter.js +7 -7
  96. package/dist/cjs/syntaxhighlighter/syntaxhighlighter-types.js +5 -1
  97. package/dist/cjs/syntaxhighlighter/syntaxhighlighter.js +15 -10
  98. package/dist/cjs/syntaxhighlighter/syntaxhighlighter.stories.js +5 -5
  99. package/dist/cjs/tabs/tabs.js +13 -11
  100. package/dist/cjs/tabs/tabs.stories.js +6 -4
  101. package/dist/cjs/tooltip/ListItem.js +7 -4
  102. package/dist/cjs/tooltip/Tooltip.js +5 -3
  103. package/dist/cjs/tooltip/TooltipLinkList.js +12 -9
  104. package/dist/cjs/tooltip/TooltipLinkList.stories.js +5 -5
  105. package/dist/cjs/tooltip/TooltipMessage.js +3 -1
  106. package/dist/cjs/tooltip/TooltipNote.js +3 -1
  107. package/dist/cjs/tooltip/WithTooltip.js +14 -9
  108. package/dist/cjs/tooltip/lazy-WithTooltip.js +7 -7
  109. package/dist/cjs/typings.d.ts +4 -0
  110. package/dist/cjs/typography/DocumentFormatting.js +13 -6
  111. package/dist/cjs/typography/DocumentWrapper.stories.js +1 -1
  112. package/dist/cjs/typography/link/link.js +5 -3
  113. package/dist/cjs/typography/shared.js +1 -1
  114. package/dist/cjs/utils/getStoryHref.js +71 -0
  115. package/dist/esm/ActionBar/ActionBar.js +5 -3
  116. package/dist/esm/Button/Button.js +3 -1
  117. package/dist/esm/Loader/Loader.js +5 -3
  118. package/dist/esm/ScrollArea/OverlayScrollbars.js +6 -4
  119. package/dist/esm/ScrollArea/ScrollArea.js +4 -2
  120. package/dist/esm/Zoom/Zoom.stories.js +3 -2
  121. package/dist/esm/Zoom/ZoomElement.js +3 -2
  122. package/dist/esm/Zoom/ZoomIFrame.js +6 -6
  123. package/dist/esm/bar/bar.js +7 -4
  124. package/dist/esm/bar/button.js +2 -1
  125. package/dist/esm/bar/separator.js +1 -0
  126. package/dist/esm/blocks/ArgsTable/ArgControl.js +3 -2
  127. package/dist/esm/blocks/ArgsTable/ArgJsDoc.js +1 -0
  128. package/dist/esm/blocks/ArgsTable/ArgValue.js +4 -4
  129. package/dist/esm/blocks/ArgsTable/ArgsTable.js +5 -3
  130. package/dist/esm/blocks/ArgsTable/SectionRow.js +3 -2
  131. package/dist/esm/blocks/ArgsTable/TabbedArgsTable.js +17 -14
  132. package/dist/esm/blocks/ColorPalette.js +3 -1
  133. package/dist/esm/blocks/IFrame.js +16 -14
  134. package/dist/esm/blocks/IconGallery.js +3 -1
  135. package/dist/esm/blocks/Preview.js +16 -14
  136. package/dist/esm/blocks/Source.js +2 -1
  137. package/dist/esm/blocks/Story.js +12 -5
  138. package/dist/esm/blocks/Story.stories.js +3 -2
  139. package/dist/esm/blocks/Toolbar.js +8 -6
  140. package/dist/esm/blocks/Typeset.js +5 -3
  141. package/dist/esm/brand/StorybookLogo.js +2 -1
  142. package/dist/esm/controls/Boolean.stories.js +3 -2
  143. package/dist/esm/controls/Color.js +7 -5
  144. package/dist/esm/controls/Color.stories.js +3 -2
  145. package/dist/esm/controls/Date.js +3 -3
  146. package/dist/esm/controls/Date.stories.js +3 -2
  147. package/dist/esm/controls/Files.js +4 -3
  148. package/dist/esm/controls/Number.js +11 -3
  149. package/dist/esm/controls/Number.stories.js +3 -2
  150. package/dist/esm/controls/Object.js +3 -2
  151. package/dist/esm/controls/Object.stories.js +3 -2
  152. package/dist/esm/controls/Range.js +1 -1
  153. package/dist/esm/controls/Range.stories.js +3 -2
  154. package/dist/esm/controls/Text.js +3 -2
  155. package/dist/esm/controls/Text.stories.js +3 -2
  156. package/dist/esm/controls/helpers.js +1 -1
  157. package/dist/esm/controls/index.js +1 -1
  158. package/dist/esm/controls/options/Checkbox.js +4 -3
  159. package/dist/esm/controls/options/Options.js +1 -0
  160. package/dist/esm/controls/options/Options.stories.js +3 -2
  161. package/dist/esm/controls/options/Select.js +1 -0
  162. package/dist/esm/controls/options/helpers.js +4 -3
  163. package/dist/esm/controls/react-editable-json-tree/components/JsonAddValue.js +6 -6
  164. package/dist/esm/controls/react-editable-json-tree/components/JsonArray.js +8 -7
  165. package/dist/esm/controls/react-editable-json-tree/components/JsonFunctionValue.js +8 -7
  166. package/dist/esm/controls/react-editable-json-tree/components/JsonNode.js +5 -5
  167. package/dist/esm/controls/react-editable-json-tree/components/JsonObject.js +8 -7
  168. package/dist/esm/controls/react-editable-json-tree/components/JsonValue.js +8 -7
  169. package/dist/esm/controls/react-editable-json-tree/index.js +6 -6
  170. package/dist/esm/controls/react-editable-json-tree/utils/objectTypes.js +2 -2
  171. package/dist/esm/controls/types.js +1 -0
  172. package/dist/esm/form/field/field.js +5 -3
  173. package/dist/esm/form/form.stories.js +3 -2
  174. package/dist/esm/form/input/input.js +11 -6
  175. package/dist/esm/icon/icon.js +4 -3
  176. package/dist/esm/icon/icon.stories.js +1 -0
  177. package/dist/esm/index.js +4 -1
  178. package/dist/esm/placeholder/placeholder.js +16 -12
  179. package/dist/esm/spaced/Spaced.js +6 -4
  180. package/dist/esm/syntaxhighlighter/lazy-syntaxhighlighter.js +1 -1
  181. package/dist/esm/syntaxhighlighter/syntaxhighlighter-types.js +1 -0
  182. package/dist/esm/syntaxhighlighter/syntaxhighlighter.js +17 -14
  183. package/dist/esm/tabs/tabs.js +7 -6
  184. package/dist/esm/tabs/tabs.stories.js +2 -1
  185. package/dist/esm/tooltip/ListItem.js +7 -4
  186. package/dist/esm/tooltip/Tooltip.js +4 -2
  187. package/dist/esm/tooltip/TooltipLinkList.js +5 -3
  188. package/dist/esm/tooltip/TooltipMessage.js +6 -4
  189. package/dist/esm/tooltip/TooltipNote.js +5 -3
  190. package/dist/esm/tooltip/WithTooltip.js +7 -4
  191. package/dist/esm/tooltip/lazy-WithTooltip.js +1 -1
  192. package/dist/esm/typings.d.ts +4 -0
  193. package/dist/esm/typography/DocumentFormatting.js +12 -7
  194. package/dist/esm/typography/link/link.js +2 -1
  195. package/dist/esm/utils/getStoryHref.js +46 -0
  196. package/dist/modern/ActionBar/ActionBar.js +4 -2
  197. package/dist/modern/Badge/Badge.js +1 -1
  198. package/dist/modern/Button/Button.js +3 -1
  199. package/dist/modern/Loader/Loader.js +4 -2
  200. package/dist/modern/ScrollArea/OverlayScrollbars.js +4 -2
  201. package/dist/modern/ScrollArea/ScrollArea.js +4 -2
  202. package/dist/modern/bar/bar.js +4 -2
  203. package/dist/modern/bar/button.js +4 -2
  204. package/dist/modern/blocks/ArgsTable/TabbedArgsTable.js +4 -2
  205. package/dist/modern/blocks/ColorPalette.js +4 -2
  206. package/dist/modern/blocks/IFrame.js +3 -1
  207. package/dist/modern/blocks/IconGallery.js +4 -2
  208. package/dist/modern/blocks/Preview.js +4 -2
  209. package/dist/modern/blocks/Source.js +3 -1
  210. package/dist/modern/blocks/Story.js +13 -4
  211. package/dist/modern/blocks/Toolbar.js +6 -3
  212. package/dist/modern/blocks/Typeset.js +4 -2
  213. package/dist/modern/brand/StorybookIcon.js +1 -1
  214. package/dist/modern/brand/StorybookLogo.js +4 -2
  215. package/dist/modern/controls/Color.js +4 -2
  216. package/dist/modern/controls/Number.js +7 -0
  217. package/dist/modern/controls/types.js +1 -0
  218. package/dist/modern/form/field/field.js +4 -2
  219. package/dist/modern/form/input/input.js +9 -4
  220. package/dist/modern/icon/icon.js +4 -2
  221. package/dist/modern/index.js +3 -1
  222. package/dist/modern/placeholder/placeholder.js +4 -2
  223. package/dist/modern/spaced/Spaced.js +4 -2
  224. package/dist/modern/syntaxhighlighter/syntaxhighlighter-types.js +1 -0
  225. package/dist/modern/syntaxhighlighter/syntaxhighlighter.js +4 -2
  226. package/dist/modern/tooltip/ListItem.js +7 -4
  227. package/dist/modern/tooltip/Tooltip.js +4 -2
  228. package/dist/modern/tooltip/TooltipLinkList.js +6 -3
  229. package/dist/modern/tooltip/TooltipMessage.js +4 -2
  230. package/dist/modern/tooltip/TooltipNote.js +4 -2
  231. package/dist/modern/tooltip/WithTooltip.js +7 -4
  232. package/dist/modern/typings.d.ts +4 -0
  233. package/dist/modern/typography/DocumentFormatting.js +7 -4
  234. package/dist/modern/typography/link/link.js +4 -2
  235. package/dist/modern/utils/getStoryHref.js +13 -0
  236. package/dist/ts3.4/Zoom/ZoomIFrame.d.ts +1 -1
  237. package/dist/ts3.4/index.d.ts +1 -0
  238. package/dist/ts3.4/utils/getStoryHref.d.ts +1 -0
  239. package/dist/ts3.9/Zoom/ZoomIFrame.d.ts +1 -1
  240. package/dist/ts3.9/index.d.ts +1 -0
  241. package/dist/ts3.9/utils/getStoryHref.d.ts +1 -0
  242. package/package.json +6 -5
  243. package/dist/cjs/typings.d.js +0 -1
  244. package/dist/esm/typings.d.js +0 -0
  245. package/dist/modern/typings.d.js +0 -0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  require("core-js/modules/es.reflect.construct.js");
6
6
 
@@ -10,16 +10,18 @@ require("core-js/modules/es.symbol.description.js");
10
10
 
11
11
  require("core-js/modules/es.symbol.iterator.js");
12
12
 
13
- require("core-js/modules/es.string.iterator.js");
14
-
15
13
  require("core-js/modules/es.array.iterator.js");
16
14
 
15
+ require("core-js/modules/es.string.iterator.js");
16
+
17
17
  require("core-js/modules/web.dom-collections.iterator.js");
18
18
 
19
19
  require("core-js/modules/es.array.from.js");
20
20
 
21
21
  require("core-js/modules/es.array.slice.js");
22
22
 
23
+ require("core-js/modules/es.regexp.exec.js");
24
+
23
25
  require("core-js/modules/es.weak-map.js");
24
26
 
25
27
  require("core-js/modules/es.object.get-own-property-descriptor.js");
@@ -35,10 +37,10 @@ require("core-js/modules/es.function.name.js");
35
37
 
36
38
  require("core-js/modules/es.array.splice.js");
37
39
 
38
- require("core-js/modules/es.promise.js");
39
-
40
40
  require("core-js/modules/es.object.to-string.js");
41
41
 
42
+ require("core-js/modules/es.promise.js");
43
+
42
44
  require("core-js/modules/es.array.map.js");
43
45
 
44
46
  require("core-js/modules/es.object.get-prototype-of.js");
@@ -55,9 +57,9 @@ var _deltaTypes = require("../types/deltaTypes");
55
57
 
56
58
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
57
59
 
58
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
60
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
59
61
 
60
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
62
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
61
63
 
62
64
  function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
63
65
 
@@ -65,7 +67,7 @@ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread n
65
67
 
66
68
  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); }
67
69
 
68
- function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
70
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
69
71
 
70
72
  function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
71
73
 
@@ -75,15 +77,15 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
75
77
 
76
78
  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, descriptor.key, descriptor); } }
77
79
 
78
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
80
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
79
81
 
80
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
82
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
81
83
 
82
84
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
83
85
 
84
86
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
85
87
 
86
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
88
+ 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); }
87
89
 
88
90
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
89
91
 
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
5
+ require("core-js/modules/es.object.to-string.js");
4
6
 
5
7
  require("core-js/modules/es.reflect.construct.js");
6
8
 
@@ -8,20 +10,20 @@ require("core-js/modules/es.symbol.js");
8
10
 
9
11
  require("core-js/modules/es.symbol.description.js");
10
12
 
11
- require("core-js/modules/es.object.to-string.js");
12
-
13
13
  require("core-js/modules/es.symbol.iterator.js");
14
14
 
15
- require("core-js/modules/es.string.iterator.js");
16
-
17
15
  require("core-js/modules/es.array.iterator.js");
18
16
 
17
+ require("core-js/modules/es.string.iterator.js");
18
+
19
19
  require("core-js/modules/web.dom-collections.iterator.js");
20
20
 
21
21
  require("core-js/modules/es.array.from.js");
22
22
 
23
23
  require("core-js/modules/es.array.slice.js");
24
24
 
25
+ require("core-js/modules/es.regexp.exec.js");
26
+
25
27
  require("core-js/modules/es.weak-map.js");
26
28
 
27
29
  require("core-js/modules/es.object.get-own-property-descriptor.js");
@@ -49,9 +51,9 @@ var _inputUsageTypes = _interopRequireDefault(require("../types/inputUsageTypes"
49
51
 
50
52
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
51
53
 
52
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
54
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
53
55
 
54
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
56
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
55
57
 
56
58
  function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
57
59
 
@@ -59,7 +61,7 @@ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread n
59
61
 
60
62
  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); }
61
63
 
62
- function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
64
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
63
65
 
64
66
  function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
65
67
 
@@ -69,15 +71,15 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
69
71
 
70
72
  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, descriptor.key, descriptor); } }
71
73
 
72
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
74
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
73
75
 
74
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
76
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
75
77
 
76
78
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
77
79
 
78
80
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
79
81
 
80
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
82
+ 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); }
81
83
 
82
84
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
83
85
 
@@ -1,14 +1,14 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  require("core-js/modules/es.reflect.construct.js");
6
6
 
7
- require("core-js/modules/es.weak-map.js");
7
+ require("core-js/modules/es.array.iterator.js");
8
8
 
9
9
  require("core-js/modules/es.string.iterator.js");
10
10
 
11
- require("core-js/modules/es.array.iterator.js");
11
+ require("core-js/modules/es.weak-map.js");
12
12
 
13
13
  require("core-js/modules/web.dom-collections.iterator.js");
14
14
 
@@ -51,23 +51,23 @@ var _dataTypes = _interopRequireDefault(require("../types/dataTypes"));
51
51
 
52
52
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
53
53
 
54
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
54
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
55
55
 
56
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
56
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
57
57
 
58
58
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
59
59
 
60
60
  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, descriptor.key, descriptor); } }
61
61
 
62
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
62
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
63
63
 
64
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
64
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
65
65
 
66
66
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
67
67
 
68
68
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
69
69
 
70
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
70
+ 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); }
71
71
 
72
72
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
73
73
 
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  require("core-js/modules/es.reflect.construct.js");
6
6
 
@@ -10,16 +10,18 @@ require("core-js/modules/es.symbol.description.js");
10
10
 
11
11
  require("core-js/modules/es.symbol.iterator.js");
12
12
 
13
- require("core-js/modules/es.string.iterator.js");
14
-
15
13
  require("core-js/modules/es.array.iterator.js");
16
14
 
15
+ require("core-js/modules/es.string.iterator.js");
16
+
17
17
  require("core-js/modules/web.dom-collections.iterator.js");
18
18
 
19
19
  require("core-js/modules/es.array.from.js");
20
20
 
21
21
  require("core-js/modules/es.array.slice.js");
22
22
 
23
+ require("core-js/modules/es.regexp.exec.js");
24
+
23
25
  require("core-js/modules/es.weak-map.js");
24
26
 
25
27
  require("core-js/modules/es.object.get-own-property-descriptor.js");
@@ -33,10 +35,10 @@ require("core-js/modules/es.array.concat.js");
33
35
 
34
36
  require("core-js/modules/es.function.name.js");
35
37
 
36
- require("core-js/modules/es.promise.js");
37
-
38
38
  require("core-js/modules/es.object.to-string.js");
39
39
 
40
+ require("core-js/modules/es.promise.js");
41
+
40
42
  require("core-js/modules/es.object.get-own-property-names.js");
41
43
 
42
44
  require("core-js/modules/es.array.map.js");
@@ -55,9 +57,9 @@ var _deltaTypes = require("../types/deltaTypes");
55
57
 
56
58
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
57
59
 
58
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
60
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
59
61
 
60
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
62
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
61
63
 
62
64
  function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
63
65
 
@@ -65,7 +67,7 @@ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread n
65
67
 
66
68
  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); }
67
69
 
68
- function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
70
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
69
71
 
70
72
  function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
71
73
 
@@ -75,15 +77,15 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
75
77
 
76
78
  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, descriptor.key, descriptor); } }
77
79
 
78
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
80
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
79
81
 
80
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
82
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
81
83
 
82
84
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
83
85
 
84
86
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
85
87
 
86
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
88
+ 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); }
87
89
 
88
90
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
89
91
 
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  require("core-js/modules/es.reflect.construct.js");
6
6
 
@@ -10,16 +10,18 @@ require("core-js/modules/es.symbol.description.js");
10
10
 
11
11
  require("core-js/modules/es.symbol.iterator.js");
12
12
 
13
- require("core-js/modules/es.string.iterator.js");
14
-
15
13
  require("core-js/modules/es.array.iterator.js");
16
14
 
15
+ require("core-js/modules/es.string.iterator.js");
16
+
17
17
  require("core-js/modules/web.dom-collections.iterator.js");
18
18
 
19
19
  require("core-js/modules/es.array.from.js");
20
20
 
21
21
  require("core-js/modules/es.array.slice.js");
22
22
 
23
+ require("core-js/modules/es.regexp.exec.js");
24
+
23
25
  require("core-js/modules/es.weak-map.js");
24
26
 
25
27
  require("core-js/modules/es.object.get-own-property-descriptor.js");
@@ -37,10 +39,10 @@ require("core-js/modules/es.string.repeat.js");
37
39
 
38
40
  require("core-js/modules/es.object.get-prototype-of.js");
39
41
 
40
- require("core-js/modules/es.promise.js");
41
-
42
42
  require("core-js/modules/es.object.to-string.js");
43
43
 
44
+ require("core-js/modules/es.promise.js");
45
+
44
46
  var _react = _interopRequireWildcard(require("react"));
45
47
 
46
48
  var _propTypes = _interopRequireDefault(require("prop-types"));
@@ -51,9 +53,9 @@ var _inputUsageTypes = _interopRequireDefault(require("../types/inputUsageTypes"
51
53
 
52
54
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
53
55
 
54
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
56
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
55
57
 
56
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
58
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
57
59
 
58
60
  function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
59
61
 
@@ -61,7 +63,7 @@ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread n
61
63
 
62
64
  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); }
63
65
 
64
- function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
66
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
65
67
 
66
68
  function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
67
69
 
@@ -71,15 +73,15 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
71
73
 
72
74
  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, descriptor.key, descriptor); } }
73
75
 
74
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
76
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
75
77
 
76
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
78
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
77
79
 
78
80
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
79
81
 
80
82
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
81
83
 
82
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
84
+ 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); }
83
85
 
84
86
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
85
87
 
@@ -1,14 +1,14 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  require("core-js/modules/es.reflect.construct.js");
6
6
 
7
- require("core-js/modules/es.weak-map.js");
7
+ require("core-js/modules/es.array.iterator.js");
8
8
 
9
9
  require("core-js/modules/es.string.iterator.js");
10
10
 
11
- require("core-js/modules/es.array.iterator.js");
11
+ require("core-js/modules/es.weak-map.js");
12
12
 
13
13
  require("core-js/modules/web.dom-collections.iterator.js");
14
14
 
@@ -29,44 +29,44 @@ Object.defineProperty(exports, "ADD_DELTA_TYPE", {
29
29
  return _deltaTypes.ADD_DELTA_TYPE;
30
30
  }
31
31
  });
32
- Object.defineProperty(exports, "REMOVE_DELTA_TYPE", {
32
+ Object.defineProperty(exports, "DATA_TYPES", {
33
33
  enumerable: true,
34
34
  get: function get() {
35
- return _deltaTypes.REMOVE_DELTA_TYPE;
35
+ return _dataTypes.default;
36
36
  }
37
37
  });
38
- Object.defineProperty(exports, "UPDATE_DELTA_TYPE", {
38
+ Object.defineProperty(exports, "INPUT_USAGE_TYPES", {
39
39
  enumerable: true,
40
40
  get: function get() {
41
- return _deltaTypes.UPDATE_DELTA_TYPE;
41
+ return _inputUsageTypes.default;
42
42
  }
43
43
  });
44
- Object.defineProperty(exports, "getObjectType", {
44
+ exports.JsonTree = void 0;
45
+ Object.defineProperty(exports, "REMOVE_DELTA_TYPE", {
45
46
  enumerable: true,
46
47
  get: function get() {
47
- return _objectTypes.getObjectType;
48
+ return _deltaTypes.REMOVE_DELTA_TYPE;
48
49
  }
49
50
  });
50
- Object.defineProperty(exports, "DATA_TYPES", {
51
+ Object.defineProperty(exports, "UPDATE_DELTA_TYPE", {
51
52
  enumerable: true,
52
53
  get: function get() {
53
- return _dataTypes.default;
54
+ return _deltaTypes.UPDATE_DELTA_TYPE;
54
55
  }
55
56
  });
56
- Object.defineProperty(exports, "INPUT_USAGE_TYPES", {
57
+ Object.defineProperty(exports, "getObjectType", {
57
58
  enumerable: true,
58
59
  get: function get() {
59
- return _inputUsageTypes.default;
60
+ return _objectTypes.getObjectType;
60
61
  }
61
62
  });
62
- exports.JsonTree = void 0;
63
63
 
64
64
  require("core-js/modules/es.object.get-prototype-of.js");
65
65
 
66
- require("core-js/modules/es.promise.js");
67
-
68
66
  require("core-js/modules/es.object.to-string.js");
69
67
 
68
+ require("core-js/modules/es.promise.js");
69
+
70
70
  var _react = _interopRequireWildcard(require("react"));
71
71
 
72
72
  var _propTypes = _interopRequireDefault(require("prop-types"));
@@ -87,23 +87,23 @@ var _parse = _interopRequireDefault(require("./utils/parse"));
87
87
 
88
88
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
89
89
 
90
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
90
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
91
91
 
92
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
92
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
93
93
 
94
94
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
95
95
 
96
96
  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, descriptor.key, descriptor); } }
97
97
 
98
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
98
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
99
99
 
100
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
100
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
101
101
 
102
102
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
103
103
 
104
104
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
105
105
 
106
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
106
+ 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); }
107
107
 
108
108
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
109
109
 
@@ -8,12 +8,12 @@ exports.isComponentWillChange = isComponentWillChange;
8
8
 
9
9
  require("core-js/modules/es.symbol.iterator.js");
10
10
 
11
+ require("core-js/modules/es.array.iterator.js");
12
+
11
13
  require("core-js/modules/es.object.to-string.js");
12
14
 
13
15
  require("core-js/modules/es.string.iterator.js");
14
16
 
15
- require("core-js/modules/es.array.iterator.js");
16
-
17
17
  require("core-js/modules/web.dom-collections.iterator.js");
18
18
 
19
19
  require("core-js/modules/es.symbol.js");
@@ -22,7 +22,7 @@ require("core-js/modules/es.symbol.description.js");
22
22
 
23
23
  require("core-js/modules/es.array.slice.js");
24
24
 
25
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
25
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
26
26
 
27
27
  /**
28
28
  * Get Object type.
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.value = exports.array = exports.object = void 0;
6
+ exports.value = exports.object = exports.array = void 0;
7
7
  var object = {
8
8
  minus: {
9
9
  color: 'red'
@@ -1 +1,5 @@
1
- "use strict";
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -15,6 +15,8 @@ var _react = _interopRequireDefault(require("react"));
15
15
 
16
16
  var _theming = require("@storybook/theming");
17
17
 
18
+ var _excluded = ["label", "children"];
19
+
18
20
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
19
21
 
20
22
  function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
@@ -50,7 +52,7 @@ var Label = _theming.styled.span(function (_ref2) {
50
52
  var Field = function Field(_ref3) {
51
53
  var label = _ref3.label,
52
54
  children = _ref3.children,
53
- props = _objectWithoutProperties(_ref3, ["label", "children"]);
55
+ props = _objectWithoutProperties(_ref3, _excluded);
54
56
 
55
57
  return /*#__PURE__*/_react.default.createElement(Wrapper, props, label ? /*#__PURE__*/_react.default.createElement(Label, null, /*#__PURE__*/_react.default.createElement("span", null, label)) : null, children);
56
58
  };
@@ -6,10 +6,10 @@ require("core-js/modules/es.symbol.description.js");
6
6
 
7
7
  require("core-js/modules/es.symbol.iterator.js");
8
8
 
9
- require("core-js/modules/es.string.iterator.js");
10
-
11
9
  require("core-js/modules/es.array.iterator.js");
12
10
 
11
+ require("core-js/modules/es.string.iterator.js");
12
+
13
13
  require("core-js/modules/web.dom-collections.iterator.js");
14
14
 
15
15
  require("core-js/modules/es.array.from.js");
@@ -18,6 +18,8 @@ require("core-js/modules/es.array.slice.js");
18
18
 
19
19
  require("core-js/modules/es.function.name.js");
20
20
 
21
+ require("core-js/modules/es.regexp.exec.js");
22
+
21
23
  require("core-js/modules/es.array.map.js");
22
24
 
23
25
  require("core-js/modules/es.object.to-string.js");
@@ -50,7 +52,7 @@ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread n
50
52
 
51
53
  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); }
52
54
 
53
- function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
55
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
54
56
 
55
57
  function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
56
58