@sproutsocial/racine 12.21.2 → 12.22.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 (324) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +2 -0
  3. package/__flow__/Avatar/__tests__/features.test.js +98 -0
  4. package/__flow__/Banner/index.js +2 -1
  5. package/__flow__/CharacterCounter/index.test.js +1 -1
  6. package/__flow__/Collapsible/index.js +3 -3
  7. package/__flow__/Drawer/index.js +11 -0
  8. package/__flow__/Drawer/index.stories.js +2 -1
  9. package/__flow__/EmptyState/index.test.js +1 -1
  10. package/__flow__/Fieldset/index.js +1 -1
  11. package/__flow__/Indicator/index.js +1 -1
  12. package/__flow__/Input/index.js +2 -1
  13. package/__flow__/Input/styles.js +1 -1
  14. package/__flow__/Link/index.js +2 -1
  15. package/__flow__/Link/index.test.js +2 -0
  16. package/__flow__/Listbox/index.stories.js +1 -0
  17. package/__flow__/Loader/index.js +1 -1
  18. package/__flow__/Modal/index.stories.js +1 -1
  19. package/__flow__/Numeral/tests/testNumeral.js +1 -0
  20. package/__flow__/Popout/index.js +1 -1
  21. package/__flow__/Portal/index.stories.js +7 -7
  22. package/__flow__/SegmentedControl/index.js +1 -1
  23. package/__flow__/Table/index.js +4 -4
  24. package/__flow__/TableCell/index.js +1 -1
  25. package/__flow__/TableHeaderCell/index.js +1 -1
  26. package/__flow__/Tabs/index.js +1 -1
  27. package/__flow__/Textarea/index.js +1 -1
  28. package/__flow__/Toast/index.js +1 -1
  29. package/__flow__/Toast/styles.js +1 -1
  30. package/__flow__/TokenInput/index.stories.js +4 -4
  31. package/__flow__/TokenInput/tests/default/pasting.test.js +6 -2
  32. package/__flow__/code-guidelines.mdx +244 -0
  33. package/__flow__/setupTests.js +1 -0
  34. package/__flow__/utils/a11yTest.js +1 -0
  35. package/__flow__/utils/system-props.js +1 -0
  36. package/commonjs/Avatar/index.js +19 -10
  37. package/commonjs/Badge/constants.js +3 -1
  38. package/commonjs/Badge/index.js +7 -3
  39. package/commonjs/Badge/styles.js +4 -2
  40. package/commonjs/Banner/index.js +9 -4
  41. package/commonjs/Banner/styles.js +5 -2
  42. package/commonjs/Box/index.js +5 -2
  43. package/commonjs/Box/styles.js +3 -1
  44. package/commonjs/Breadcrumb/index.js +12 -5
  45. package/commonjs/Breadcrumb/styles.js +3 -1
  46. package/commonjs/Button/index.js +7 -3
  47. package/commonjs/Button/styles.js +6 -3
  48. package/commonjs/Card/index.js +7 -3
  49. package/commonjs/Card/styles.js +3 -1
  50. package/commonjs/CharacterCounter/index.js +39 -22
  51. package/commonjs/CharacterCounter/styles.js +5 -2
  52. package/commonjs/ChartLegend/index.js +7 -3
  53. package/commonjs/ChartLegend/styles.js +5 -2
  54. package/commonjs/Checkbox/index.js +117 -97
  55. package/commonjs/Checkbox/styles.js +5 -2
  56. package/commonjs/Collapsible/index.js +28 -13
  57. package/commonjs/Collapsible/styles.js +4 -2
  58. package/commonjs/DatePicker/DateRangePicker.js +7 -3
  59. package/commonjs/DatePicker/SingleDatePicker.js +7 -3
  60. package/commonjs/DatePicker/StatefulDateRangePicker.js +19 -7
  61. package/commonjs/DatePicker/StatefulSingleDatePicker.js +16 -5
  62. package/commonjs/DatePicker/common.js +4 -2
  63. package/commonjs/DatePicker/index.js +15 -3
  64. package/commonjs/DatePicker/styles.js +5 -2
  65. package/commonjs/Drawer/SlideTransition.js +9 -5
  66. package/commonjs/Drawer/index.js +15 -7
  67. package/commonjs/Drawer/styles.js +5 -2
  68. package/commonjs/EmptyState/index.js +7 -3
  69. package/commonjs/Fieldset/index.js +10 -6
  70. package/commonjs/Fieldset/styles.js +5 -2
  71. package/commonjs/FormField/index.js +17 -6
  72. package/commonjs/Icon/deprecatedIcons.js +3 -1
  73. package/commonjs/Icon/index.js +9 -5
  74. package/commonjs/Icon/styles.js +6 -3
  75. package/commonjs/Image/index.js +78 -58
  76. package/commonjs/Image/styles.js +5 -2
  77. package/commonjs/Indicator/index.js +40 -23
  78. package/commonjs/Indicator/styles.js +4 -2
  79. package/commonjs/Input/index.js +156 -132
  80. package/commonjs/Input/styles.js +6 -3
  81. package/commonjs/KeyboardKey/index.js +30 -14
  82. package/commonjs/KeyboardKey/styles.js +3 -1
  83. package/commonjs/Label/index.js +32 -16
  84. package/commonjs/Link/constants.js +3 -1
  85. package/commonjs/Link/index.js +9 -4
  86. package/commonjs/Link/styles.js +5 -2
  87. package/commonjs/Listbox/index.js +15 -8
  88. package/commonjs/Loader/index.js +43 -26
  89. package/commonjs/Loader/styles.js +5 -2
  90. package/commonjs/LoaderButton/index.js +7 -3
  91. package/commonjs/Menu/constants.js +3 -1
  92. package/commonjs/Menu/descendants.js +35 -20
  93. package/commonjs/Menu/hooks.js +8 -8
  94. package/commonjs/Menu/index.flow.js +2 -1
  95. package/commonjs/Menu/index.js +44 -27
  96. package/commonjs/Menu/names.js +3 -1
  97. package/commonjs/Menu/styles.js +6 -3
  98. package/commonjs/Message/index.js +7 -3
  99. package/commonjs/Message/styles.js +4 -2
  100. package/commonjs/Modal/index.js +9 -5
  101. package/commonjs/Modal/styles.js +9 -5
  102. package/commonjs/Numeral/constants.js +3 -1
  103. package/commonjs/Numeral/index.js +16 -5
  104. package/commonjs/Numeral/styles.js +3 -1
  105. package/commonjs/Numeral/tests/testNumeral.js +16 -11
  106. package/commonjs/OverflowList/index.flow.js +2 -1
  107. package/commonjs/OverflowList/index.js +6 -3
  108. package/commonjs/OverflowList/styles.js +5 -2
  109. package/commonjs/PartnerLogo/index.js +9 -6
  110. package/commonjs/PartnerLogo/styles.js +5 -2
  111. package/commonjs/Popout/index.js +28 -13
  112. package/commonjs/Popout/styles.js +3 -1
  113. package/commonjs/Portal/index.js +50 -30
  114. package/commonjs/Radio/index.js +75 -57
  115. package/commonjs/Radio/styles.js +5 -2
  116. package/commonjs/SegmentedControl/index.js +21 -9
  117. package/commonjs/SegmentedControl/styles.js +5 -2
  118. package/commonjs/Select/index.js +78 -61
  119. package/commonjs/Select/styles.js +8 -5
  120. package/commonjs/Skeleton/index.js +4 -2
  121. package/commonjs/SpotIllustration/illustrationNames.js +3 -1
  122. package/commonjs/SpotIllustration/index.js +5 -3
  123. package/commonjs/Stack/index.js +7 -3
  124. package/commonjs/Switch/index.js +54 -36
  125. package/commonjs/Switch/styles.js +6 -3
  126. package/commonjs/Table/index.js +14 -10
  127. package/commonjs/Table/styles.js +3 -1
  128. package/commonjs/TableCell/index.js +41 -24
  129. package/commonjs/TableCell/styles.js +3 -1
  130. package/commonjs/TableHeaderCell/index.js +56 -38
  131. package/commonjs/TableHeaderCell/styles.js +5 -2
  132. package/commonjs/TableRowAccordion/index.js +63 -45
  133. package/commonjs/TableRowAccordion/styles.js +5 -2
  134. package/commonjs/Tabs/index.js +118 -91
  135. package/commonjs/Tabs/styles.js +8 -5
  136. package/commonjs/Text/index.js +7 -3
  137. package/commonjs/Text/styles.js +5 -2
  138. package/commonjs/Textarea/index.js +104 -87
  139. package/commonjs/Textarea/styles.js +5 -2
  140. package/commonjs/ThemeProvider/index.js +5 -2
  141. package/commonjs/Toast/index.js +7 -8
  142. package/commonjs/Toast/styles.js +5 -2
  143. package/commonjs/ToggleHint/index.js +45 -27
  144. package/commonjs/ToggleHint/styles.js +6 -3
  145. package/commonjs/Token/index.js +7 -3
  146. package/commonjs/Token/styles.js +5 -2
  147. package/commonjs/TokenInput/index.js +221 -192
  148. package/commonjs/TokenInput/styles.js +5 -2
  149. package/commonjs/TokenInput/util.js +5 -3
  150. package/commonjs/Tooltip/index.js +30 -14
  151. package/commonjs/Tooltip/styles.js +3 -1
  152. package/commonjs/VisuallyHidden/index.js +3 -1
  153. package/commonjs/dataviz/index.js +3 -1
  154. package/commonjs/index.js +451 -84
  155. package/commonjs/systemProps/background.js +3 -1
  156. package/commonjs/systemProps/border.js +3 -1
  157. package/commonjs/systemProps/color.js +3 -1
  158. package/commonjs/systemProps/custom.js +3 -1
  159. package/commonjs/systemProps/flexbox.js +3 -1
  160. package/commonjs/systemProps/grid.js +3 -1
  161. package/commonjs/systemProps/index.js +87 -15
  162. package/commonjs/systemProps/layout.js +3 -1
  163. package/commonjs/systemProps/position.js +3 -1
  164. package/commonjs/systemProps/shadow.js +3 -1
  165. package/commonjs/systemProps/space.js +3 -1
  166. package/commonjs/systemProps/systemProps.js +3 -1
  167. package/commonjs/systemProps/typography.js +3 -1
  168. package/commonjs/systemProps/variant.js +3 -1
  169. package/commonjs/themes/dark/dataviz-palette.js +3 -1
  170. package/commonjs/themes/dark/decorative-palettes.js +3 -1
  171. package/commonjs/themes/dark/theme.js +11 -7
  172. package/commonjs/themes/extendedThemes/sproutTheme/dark/theme.js +9 -5
  173. package/commonjs/themes/extendedThemes/sproutTheme/index.js +15 -4
  174. package/commonjs/themes/extendedThemes/sproutTheme/light/theme.js +8 -4
  175. package/commonjs/themes/light/dataviz-palette.js +3 -1
  176. package/commonjs/themes/light/decorative-palettes.js +3 -1
  177. package/commonjs/themes/light/literal-colors.js +3 -1
  178. package/commonjs/themes/light/theme.js +17 -13
  179. package/commonjs/utils/a11yTest.js +5 -2
  180. package/commonjs/utils/chartColors.js +3 -1
  181. package/commonjs/utils/constants.js +3 -1
  182. package/commonjs/utils/dataQaLabelQueries.js +26 -16
  183. package/commonjs/utils/hooks.js +39 -26
  184. package/commonjs/utils/index.js +18 -8
  185. package/commonjs/utils/innerText.js +4 -2
  186. package/commonjs/utils/mixins.js +3 -1
  187. package/commonjs/utils/react-testing-library.js +74 -18
  188. package/commonjs/utils/responsiveProps/index.js +16 -8
  189. package/commonjs/utils/system-props.js +6 -2
  190. package/commonjs/utils/useInteractiveColor.js +3 -1
  191. package/dist/themes/dark/theme.scss +0 -1
  192. package/dist/themes/extendedThemes/sproutTheme/dark/theme.scss +0 -1
  193. package/dist/themes/extendedThemes/sproutTheme/light/theme.scss +0 -1
  194. package/dist/themes/light/theme.scss +0 -1
  195. package/lib/Avatar/index.js +17 -11
  196. package/lib/Badge/index.js +5 -4
  197. package/lib/Badge/styles.js +3 -3
  198. package/lib/Banner/index.js +7 -5
  199. package/lib/Banner/styles.js +1 -1
  200. package/lib/Box/index.js +1 -1
  201. package/lib/Box/styles.js +1 -1
  202. package/lib/Breadcrumb/index.js +11 -7
  203. package/lib/Button/index.js +3 -2
  204. package/lib/Button/styles.js +4 -4
  205. package/lib/Card/index.js +3 -2
  206. package/lib/Card/styles.js +2 -2
  207. package/lib/CharacterCounter/index.js +36 -21
  208. package/lib/CharacterCounter/styles.js +1 -1
  209. package/lib/ChartLegend/index.js +5 -4
  210. package/lib/ChartLegend/styles.js +1 -1
  211. package/lib/Checkbox/index.js +114 -96
  212. package/lib/Checkbox/styles.js +5 -5
  213. package/lib/Collapsible/index.js +25 -13
  214. package/lib/Collapsible/styles.js +2 -2
  215. package/lib/DatePicker/DateRangePicker.js +4 -3
  216. package/lib/DatePicker/SingleDatePicker.js +4 -3
  217. package/lib/DatePicker/StatefulDateRangePicker.js +15 -6
  218. package/lib/DatePicker/StatefulSingleDatePicker.js +12 -4
  219. package/lib/DatePicker/common.js +3 -3
  220. package/lib/DatePicker/index.js +2 -2
  221. package/lib/DatePicker/styles.js +2 -2
  222. package/lib/Drawer/SlideTransition.js +4 -3
  223. package/lib/Drawer/index.js +17 -12
  224. package/lib/Drawer/styles.js +2 -2
  225. package/lib/EmptyState/index.js +4 -3
  226. package/lib/Fieldset/index.js +8 -7
  227. package/lib/Fieldset/styles.js +1 -1
  228. package/lib/FormField/index.js +17 -9
  229. package/lib/Icon/index.js +8 -7
  230. package/lib/Icon/styles.js +2 -2
  231. package/lib/Image/index.js +75 -57
  232. package/lib/Image/styles.js +1 -1
  233. package/lib/Indicator/index.js +38 -23
  234. package/lib/Indicator/styles.js +3 -3
  235. package/lib/Input/index.js +157 -135
  236. package/lib/Input/styles.js +3 -3
  237. package/lib/KeyboardKey/index.js +28 -14
  238. package/lib/KeyboardKey/styles.js +1 -1
  239. package/lib/Label/index.js +29 -15
  240. package/lib/Link/index.js +5 -3
  241. package/lib/Link/styles.js +3 -3
  242. package/lib/Listbox/index.js +14 -10
  243. package/lib/Loader/index.js +40 -25
  244. package/lib/Loader/styles.js +2 -2
  245. package/lib/LoaderButton/index.js +5 -4
  246. package/lib/Menu/descendants.js +30 -18
  247. package/lib/Menu/hooks.js +7 -9
  248. package/lib/Menu/index.flow.js +4 -4
  249. package/lib/Menu/index.js +54 -40
  250. package/lib/Menu/styles.js +3 -3
  251. package/lib/Message/index.js +6 -5
  252. package/lib/Message/styles.js +4 -4
  253. package/lib/Modal/index.js +9 -8
  254. package/lib/Modal/styles.js +6 -5
  255. package/lib/Numeral/index.js +15 -7
  256. package/lib/Numeral/styles.js +1 -1
  257. package/lib/Numeral/tests/testNumeral.js +15 -11
  258. package/lib/OverflowList/index.js +3 -3
  259. package/lib/OverflowList/styles.js +1 -1
  260. package/lib/PartnerLogo/index.js +8 -7
  261. package/lib/PartnerLogo/styles.js +1 -1
  262. package/lib/Popout/index.js +27 -15
  263. package/lib/Popout/styles.js +1 -1
  264. package/lib/Portal/index.js +47 -29
  265. package/lib/Radio/index.js +72 -56
  266. package/lib/Radio/styles.js +3 -3
  267. package/lib/SegmentedControl/index.js +18 -9
  268. package/lib/SegmentedControl/styles.js +3 -3
  269. package/lib/Select/index.js +76 -61
  270. package/lib/Select/styles.js +5 -5
  271. package/lib/Skeleton/index.js +2 -2
  272. package/lib/SpotIllustration/index.js +3 -3
  273. package/lib/Stack/index.js +4 -3
  274. package/lib/Switch/index.js +53 -37
  275. package/lib/Switch/styles.js +4 -4
  276. package/lib/Table/index.js +12 -11
  277. package/lib/Table/styles.js +1 -1
  278. package/lib/TableCell/index.js +38 -23
  279. package/lib/TableCell/styles.js +1 -1
  280. package/lib/TableHeaderCell/index.js +54 -38
  281. package/lib/TableHeaderCell/styles.js +1 -1
  282. package/lib/TableRowAccordion/index.js +62 -46
  283. package/lib/TableRowAccordion/styles.js +1 -1
  284. package/lib/Tabs/index.js +115 -90
  285. package/lib/Tabs/styles.js +5 -5
  286. package/lib/Text/index.js +3 -2
  287. package/lib/Text/styles.js +1 -1
  288. package/lib/Textarea/index.js +101 -86
  289. package/lib/Textarea/styles.js +2 -2
  290. package/lib/ThemeProvider/index.js +1 -1
  291. package/lib/Toast/index.js +6 -10
  292. package/lib/Toast/styles.js +4 -3
  293. package/lib/ToggleHint/index.js +43 -27
  294. package/lib/ToggleHint/styles.js +3 -3
  295. package/lib/Token/index.js +6 -5
  296. package/lib/Token/styles.js +3 -3
  297. package/lib/TokenInput/index.js +223 -196
  298. package/lib/TokenInput/styles.js +2 -2
  299. package/lib/TokenInput/util.js +2 -2
  300. package/lib/Tooltip/index.js +28 -14
  301. package/lib/Tooltip/styles.js +1 -1
  302. package/lib/VisuallyHidden/index.js +1 -1
  303. package/lib/dataviz/index.js +1 -1
  304. package/lib/index.js +64 -64
  305. package/lib/systemProps/index.js +14 -14
  306. package/lib/systemProps/systemProps.js +12 -12
  307. package/lib/themes/dark/theme.js +11 -9
  308. package/lib/themes/extendedThemes/sproutTheme/dark/theme.js +7 -5
  309. package/lib/themes/extendedThemes/sproutTheme/index.js +2 -2
  310. package/lib/themes/extendedThemes/sproutTheme/light/theme.js +6 -4
  311. package/lib/themes/light/theme.js +17 -15
  312. package/lib/types/theme.colors.flow.js +2 -2
  313. package/lib/types/theme.flow.js +2 -2
  314. package/lib/utils/a11yTest.js +3 -1
  315. package/lib/utils/dataQaLabelQueries.js +23 -15
  316. package/lib/utils/hooks.js +37 -26
  317. package/lib/utils/index.js +15 -7
  318. package/lib/utils/innerText.js +1 -1
  319. package/lib/utils/mixins.js +1 -1
  320. package/lib/utils/react-testing-library.js +11 -8
  321. package/lib/utils/responsiveProps/index.js +14 -8
  322. package/lib/utils/system-props.js +1 -0
  323. package/package.json +21 -35
  324. package/__flow__/Avatar/index.test.js +0 -23
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
4
6
  exports.MEMO_CACHE_SIZE = exports.MAX_PRECISION = exports.DefaultPrecisions = exports.DEFAULT_THRESHOLD = exports.COMPARE_OBJECTS = exports.ABBREV_PRECISION = void 0;
5
7
  var DEFAULT_THRESHOLD = 10000;
6
8
  exports.DEFAULT_THRESHOLD = DEFAULT_THRESHOLD;
@@ -1,6 +1,9 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
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
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
4
7
  exports.default = void 0;
5
8
  var React = _interopRequireWildcard(require("react"));
6
9
  var _lruMemoize = _interopRequireDefault(require("lru-memoize"));
@@ -11,8 +14,15 @@ var _constants2 = require("../utils/constants");
11
14
  var _excluded = ["number", "locale", "format", "currency", "abbreviate", "precision", "qa"];
12
15
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13
16
  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); }
14
- 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; }
17
+ 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; }
15
18
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
19
+ function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
20
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
21
+ 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); }
22
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
23
+ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
24
+ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
25
+ 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; }
16
26
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
17
27
  var _getNumberFormatters = function _getNumberFormatters(options) {
18
28
  var locale = options.locale,
@@ -79,11 +89,12 @@ var normalizeArgs = function normalizeArgs(props) {
79
89
  abbreviate = _props$abbreviate === void 0 ? true : _props$abbreviate,
80
90
  precision = props.precision,
81
91
  qa = props.qa,
82
- rest = _objectWithoutPropertiesLoose(props, _excluded);
92
+ rest = _objectWithoutProperties(props, _excluded);
83
93
  var threshold = getThreshold(abbreviate);
84
94
  var _getMinMaxPrecision = getMinMaxPrecision(precision, format),
85
- min = _getMinMaxPrecision[0],
86
- max = _getMinMaxPrecision[1];
95
+ _getMinMaxPrecision2 = _slicedToArray(_getMinMaxPrecision, 2),
96
+ min = _getMinMaxPrecision2[0],
97
+ max = _getMinMaxPrecision2[1];
87
98
  var _number = number || 0;
88
99
  var value = _number * (format === 'percent' ? 0.01 : 1);
89
100
  var canAbbreviate = _number >= threshold;
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
4
6
  exports.Container = exports.AbbrContainer = void 0;
5
7
  var _styledComponents = _interopRequireDefault(require("styled-components"));
6
8
  var _Text = _interopRequireDefault(require("../Text"));
@@ -1,30 +1,35 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
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
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
4
7
  exports.default = void 0;
5
8
  var _react = _interopRequireDefault(require("react"));
6
9
  var _reactTestingLibrary = require("../../utils/react-testing-library");
7
10
  require("jest-styled-components");
8
11
  var _ = _interopRequireDefault(require(".."));
9
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
- function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return generator._invoke = function (innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; }(innerFn, self, context), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == typeof value && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; this._invoke = function (method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); }; } function maybeInvokeDelegate(delegate, context) { var method = delegate.iterator[context.method]; if (undefined === method) { if (context.delegate = null, "throw" === context.method) { if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel; context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method"); } return ContinueSentinel; } var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) { if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; } return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (object) { var keys = []; for (var key in object) { keys.push(key); } return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) { "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); } }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
13
+ function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var method = delegate.iterator[context.method]; if (undefined === method) { if (context.delegate = null, "throw" === context.method) { if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel; context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method"); } return ContinueSentinel; } var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) { if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; } return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) { keys.push(key); } return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) { "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); } }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
14
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
15
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
12
16
  function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
13
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
14
- jest.mock('../constants', function () {
15
- return _extends({}, jest.requireActual('../constants'), {
17
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
18
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
19
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
20
+ jest.mock("../constants", function () {
21
+ return _objectSpread(_objectSpread({}, jest.requireActual("../constants")), {}, {
16
22
  MEMO_CACHE_SIZE: 0,
17
23
  COMPARE_OBJECTS: false
18
24
  });
19
25
  });
20
- var testNumeral = function testNumeral(value, options, texts) {
21
- if (options === void 0) {
22
- options = {};
23
- }
26
+ var testNumeral = function testNumeral(value) {
27
+ var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
28
+ var texts = arguments.length > 2 ? arguments[2] : undefined;
24
29
  var mainText = texts.text,
25
30
  tooltipText = texts.tip;
26
31
  if (tooltipText) {
27
- test("Should display " + value + " abbreviated as -> " + mainText + " with tooltip -> " + tooltipText + " ", /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
32
+ test("Should display ".concat(value, " abbreviated as -> ").concat(mainText, " with tooltip -> ").concat(tooltipText, " "), /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
28
33
  var _render, container, findByText, getByText, numeral, tooltip, content;
29
34
  return _regeneratorRuntime().wrap(function _callee$(_context) {
30
35
  while (1) {
@@ -51,7 +56,7 @@ var testNumeral = function testNumeral(value, options, texts) {
51
56
  }, _callee);
52
57
  })));
53
58
  } else {
54
- test("Should display " + value + " as -> " + mainText + " with no tooltip ", function () {
59
+ test("Should display ".concat(value, " as -> ").concat(mainText, " with no tooltip "), function () {
55
60
  var _render2 = (0, _reactTestingLibrary.render)( /*#__PURE__*/_react.default.createElement(_.default, _extends({
56
61
  number: value
57
62
  }, options))),
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
 
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); }
3
4
  var React = _interopRequireWildcard(require("react"));
4
5
  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); }
5
- 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; }
6
+ 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; }
@@ -1,13 +1,16 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
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
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
4
7
  exports.default = void 0;
5
8
  var _styles = _interopRequireDefault(require("./styles"));
6
9
  var _react = _interopRequireWildcard(require("react"));
7
10
  var _reactVirtualized = require("react-virtualized");
8
11
  var _Box = _interopRequireDefault(require("../Box"));
9
12
  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); }
10
- 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; }
13
+ 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; }
11
14
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
15
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
13
16
  var VirtualizedList = function VirtualizedList(_ref) {
@@ -31,7 +34,7 @@ var VirtualizedList = function VirtualizedList(_ref) {
31
34
  return /*#__PURE__*/_react.default.createElement(_reactVirtualized.CellMeasurer, {
32
35
  columnIndex: 0,
33
36
  rowIndex: index,
34
- key: "CellMeasurer-" + key,
37
+ key: "CellMeasurer-".concat(key),
35
38
  cache: cache,
36
39
  parent: parent
37
40
  }, function (_ref3) {
@@ -1,6 +1,9 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
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
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
4
7
  exports.default = void 0;
5
8
  var React = _interopRequireWildcard(require("react"));
6
9
  var _styledComponents = _interopRequireDefault(require("styled-components"));
@@ -8,7 +11,7 @@ var _systemProps = require("../utils/system-props");
8
11
  var _reactVirtualized = require("react-virtualized");
9
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
13
  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); }
11
- 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; }
14
+ 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; }
12
15
 
13
16
  var Container = (0, _styledComponents.default)(function (props) {
14
17
  return /*#__PURE__*/React.createElement(_reactVirtualized.List, props);
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
4
6
  exports.default = void 0;
5
7
  var _react = _interopRequireDefault(require("react"));
6
8
  var _LogoViewBoxes = _interopRequireDefault(require("../LogoViewBoxes"));
@@ -9,6 +11,7 @@ var _styles = _interopRequireDefault(require("./styles"));
9
11
  var _excluded = ["partnerName", "backgroundType", "logoType", "height", "width", "size"];
10
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
13
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
14
+ 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; }
12
15
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
13
16
  var PartnerLogo = function PartnerLogo(_ref) {
14
17
  var partnerName = _ref.partnerName,
@@ -17,23 +20,23 @@ var PartnerLogo = function PartnerLogo(_ref) {
17
20
  height = _ref.height,
18
21
  width = _ref.width,
19
22
  size = _ref.size,
20
- rest = _objectWithoutPropertiesLoose(_ref, _excluded);
23
+ rest = _objectWithoutProperties(_ref, _excluded);
21
24
  var _useTheme = (0, _styledComponents.useTheme)(),
22
25
  mode = _useTheme.mode;
23
26
  var whichLogo = function whichLogo(type) {
24
27
  var logo = logoType ? partnerName + '-' + logoType : partnerName;
25
28
  if (type && type === 'dark') {
26
- return logo + "-dark";
29
+ return "".concat(logo, "-dark");
27
30
  } else if (type && type === 'light') {
28
31
  return logo;
29
32
  } else if (mode === 'dark') {
30
- return logo + "-dark";
33
+ return "".concat(logo, "-dark");
31
34
  } else {
32
35
  return logo;
33
36
  }
34
37
  };
35
38
  var logoViewBox = _LogoViewBoxes.default[whichLogo(backgroundType)];
36
- var viewBoxCoordinates = (logoViewBox == null ? void 0 : logoViewBox.split(' ')) || [];
39
+ var viewBoxCoordinates = (logoViewBox === null || logoViewBox === void 0 ? void 0 : logoViewBox.split(' ')) || [];
37
40
  var defaultWidth = viewBoxCoordinates[2];
38
41
  var defaultHeight = viewBoxCoordinates[3];
39
42
  return /*#__PURE__*/_react.default.createElement(_styles.default
@@ -49,7 +52,7 @@ var PartnerLogo = function PartnerLogo(_ref) {
49
52
  focusable: false
50
53
  }, /*#__PURE__*/_react.default.createElement("use", {
51
54
  xmlnsXlink: "http://www.w3.org/1999/xlink",
52
- xlinkHref: "#sslogosvg-" + whichLogo(backgroundType)
55
+ xlinkHref: "#sslogosvg-".concat(whichLogo(backgroundType))
53
56
  })));
54
57
  };
55
58
  var _default = PartnerLogo;
@@ -1,12 +1,15 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
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
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
4
7
  exports.default = void 0;
5
8
  var _styledComponents = _interopRequireWildcard(require("styled-components"));
6
9
  var _systemProps = require("../utils/system-props");
7
10
  var _styledSystem = require("styled-system");
8
11
  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); }
9
- 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; }
12
+ 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; }
10
13
 
11
14
  var sizes = {
12
15
  mini: '12px',
@@ -1,6 +1,9 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
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
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
4
7
  exports.default = Popout;
5
8
  exports.placements = void 0;
6
9
  var React = _interopRequireWildcard(require("react"));
@@ -17,8 +20,18 @@ var _excluded = ["isOpen", "setIsOpen", "content", "children", "placement", "ful
17
20
  _excluded3 = ["children"];
18
21
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
19
22
  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); }
20
- 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; }
23
+ 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; }
21
24
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
25
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
26
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
27
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
28
+ function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
29
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
30
+ 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); }
31
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
32
+ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
33
+ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
34
+ 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; }
22
35
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
23
36
  var placements = {
24
37
  auto: 'auto',
@@ -80,11 +93,12 @@ function Popout(_ref) {
80
93
  appendToBody = _ref$appendToBody === void 0 ? true : _ref$appendToBody,
81
94
  _ref$focusLockProps = _ref.focusLockProps,
82
95
  focusLockProps = _ref$focusLockProps === void 0 ? {} : _ref$focusLockProps,
83
- rest = _objectWithoutPropertiesLoose(_ref, _excluded);
96
+ rest = _objectWithoutProperties(_ref, _excluded);
84
97
  var PopoutComponentWrapper = appendToBody ? _Portal.default : React.Fragment;
85
98
  var _useState = (0, React.useState)(false),
86
- isInternalShown = _useState[0],
87
- setIsInternalShown = _useState[1];
99
+ _useState2 = _slicedToArray(_useState, 2),
100
+ isInternalShown = _useState2[0],
101
+ setIsInternalShown = _useState2[1];
88
102
  var isControlled = typeof isOpen === 'boolean';
89
103
  var isShown = isControlled ? isOpen : isInternalShown;
90
104
  var setIsShown = (0, React.useMemo)(function () {
@@ -106,7 +120,7 @@ function Popout(_ref) {
106
120
  autoFocus = _focusLockProps$autoF === void 0 ? true : _focusLockProps$autoF,
107
121
  _focusLockProps$retur = focusLockProps.returnFocus,
108
122
  returnFocus = _focusLockProps$retur === void 0 ? true : _focusLockProps$retur,
109
- restFocusLockProps = _objectWithoutPropertiesLoose(focusLockProps, _excluded2);
123
+ restFocusLockProps = _objectWithoutProperties(focusLockProps, _excluded2);
110
124
  var isInvalidContent = content === null || content === undefined;
111
125
 
112
126
  // Callbacks for showing, hiding, and toggling visibility of the popout
@@ -183,13 +197,14 @@ function Popout(_ref) {
183
197
  // to wait for the targetRef to receive a value before rendering the popout. Otherwise,
184
198
  // the Popout component renders, but doesn't know how to position itself due the
185
199
  // `refereElement` property being undefined.
186
- var _useState2 = (0, React.useState)(
200
+ var _useState3 = (0, React.useState)(
187
201
  // Only trigger this shouldRenderPopout logic when using a controlled component.
188
202
  // The reason for that is because controlled components may render the popout
189
203
  // immediately before the targetRef has a value set to it.
190
204
  !isControlled),
191
- shouldRenderPopout = _useState2[0],
192
- setShouldRenderPopout = _useState2[1];
205
+ _useState4 = _slicedToArray(_useState3, 2),
206
+ shouldRenderPopout = _useState4[0],
207
+ setShouldRenderPopout = _useState4[1];
193
208
  var childrenRef = function childrenRef(el) {
194
209
  targetRef.current = el;
195
210
  if (targetRef.current) {
@@ -204,7 +219,7 @@ function Popout(_ref) {
204
219
  ariaProps: ariaProps
205
220
  }) : /*#__PURE__*/React.createElement(_styles.TargetWrapper, _extends({}, qa, rest, {
206
221
  ref: childrenRef
207
- }), /*#__PURE__*/React.cloneElement(children, _extends({}, ariaProps, !isControlled ? {
222
+ }), /*#__PURE__*/React.cloneElement(children, _objectSpread(_objectSpread({}, ariaProps), !isControlled ? {
208
223
  onClick: toggle
209
224
  } : undefined))), shouldRenderPopout && !isInvalidContent && transitions.map(function (_ref2) {
210
225
  var item = _ref2.item,
@@ -234,12 +249,12 @@ function Popout(_ref) {
234
249
  scheduleUpdateRef(scheduleUpdate);
235
250
  return /*#__PURE__*/React.createElement("div", _extends({
236
251
  ref: interceptRef,
237
- style: _extends({}, style, {
252
+ style: _objectSpread(_objectSpread({}, style), {}, {
238
253
  zIndex: zIndex,
239
254
  width: fullWidth && targetRef.current ? targetRef.current.offsetWidth : 'initial'
240
255
  }),
241
256
  "data-placement": placement,
242
- "data-qa-popout": '',
257
+ "data-qa-popout": "",
243
258
  "data-qa-popout-isopen": isOpen === true
244
259
  // $FlowIssue - upgrade v0.112.0
245
260
  }, rest), item && !outOfBoundaries && /*#__PURE__*/React.createElement(_reactSpring.animated.div, {
@@ -256,7 +271,7 @@ function Popout(_ref) {
256
271
  }
257
272
  var PopoutContent = function PopoutContent(_ref4) {
258
273
  var children = _ref4.children,
259
- rest = _objectWithoutPropertiesLoose(_ref4, _excluded3);
274
+ rest = _objectWithoutProperties(_ref4, _excluded3);
260
275
  return /*#__PURE__*/React.createElement(_Box.default, _extends({
261
276
  bg: "container.background.base",
262
277
  color: "text.body",
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
4
6
  exports.TargetWrapper = void 0;
5
7
  var _styledComponents = _interopRequireDefault(require("styled-components"));
6
8
  var _systemProps = require("../utils/system-props");
@@ -1,20 +1,34 @@
1
1
  "use strict";
2
2
 
3
- exports.__esModule = true;
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
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
4
7
  exports.default = void 0;
5
8
  var React = _interopRequireWildcard(require("react"));
6
9
  var _reactDom = require("react-dom");
7
10
  var _utils = require("../utils");
8
11
  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); }
9
- 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; }
10
- function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
12
+ 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; }
13
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
14
+ 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); } }
15
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
16
+ 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); }
11
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
+ 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); }; }
19
+ 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); }
20
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
21
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
22
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
23
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
12
24
  var Portal = /*#__PURE__*/function (_React$Component) {
13
- _inheritsLoose(Portal, _React$Component);
25
+ _inherits(Portal, _React$Component);
26
+ var _super = _createSuper(Portal);
14
27
  function Portal(props) {
15
28
  var _this;
16
- _this = _React$Component.call(this, props) || this;
17
- _this.el = null;
29
+ _classCallCheck(this, Portal);
30
+ _this = _super.call(this, props);
31
+ _defineProperty(_assertThisInitialized(_this), "el", null);
18
32
  if ((0, _utils.canUseDOM)()) {
19
33
  var as = props.as,
20
34
  el = props.el,
@@ -28,37 +42,43 @@ var Portal = /*#__PURE__*/function (_React$Component) {
28
42
  }
29
43
  return _this;
30
44
  }
31
- var _proto = Portal.prototype;
32
- _proto.componentDidMount = function componentDidMount() {
33
- if ((0, _utils.canUseDOM)() && this.el) {
34
- var _this$props$container = this.props.container,
35
- container = _this$props$container === void 0 ? document.body : _this$props$container;
36
- if (container) {
37
- // for flow
38
- container.appendChild(this.el);
45
+ _createClass(Portal, [{
46
+ key: "componentDidMount",
47
+ value: function componentDidMount() {
48
+ if ((0, _utils.canUseDOM)() && this.el) {
49
+ var _this$props$container = this.props.container,
50
+ container = _this$props$container === void 0 ? document.body : _this$props$container;
51
+ if (container) {
52
+ // for flow
53
+ container.appendChild(this.el);
54
+ }
39
55
  }
40
56
  }
41
- };
42
- _proto.componentWillUnmount = function componentWillUnmount() {
43
- if ((0, _utils.canUseDOM)() && this.el) {
44
- var _this$props$container2 = this.props.container,
45
- container = _this$props$container2 === void 0 ? document.body : _this$props$container2;
46
- if (container) {
47
- // for flow
48
- container.removeChild(this.el);
57
+ }, {
58
+ key: "componentWillUnmount",
59
+ value: function componentWillUnmount() {
60
+ if ((0, _utils.canUseDOM)() && this.el) {
61
+ var _this$props$container2 = this.props.container,
62
+ container = _this$props$container2 === void 0 ? document.body : _this$props$container2;
63
+ if (container) {
64
+ // for flow
65
+ container.removeChild(this.el);
66
+ }
49
67
  }
50
68
  }
51
- };
52
- _proto.render = function render() {
53
- if (this.el) {
54
- return /*#__PURE__*/(0, _reactDom.createPortal)(this.props.children, this.el);
69
+ }, {
70
+ key: "render",
71
+ value: function render() {
72
+ if (this.el) {
73
+ return /*#__PURE__*/(0, _reactDom.createPortal)(this.props.children, this.el);
74
+ }
75
+ return this.props.children;
55
76
  }
56
- return this.props.children;
57
- };
77
+ }]);
58
78
  return Portal;
59
79
  }(React.Component);
60
80
  exports.default = Portal;
61
- Portal.defaultProps = {
81
+ _defineProperty(Portal, "defaultProps", {
62
82
  as: 'div',
63
83
  id: ''
64
- };
84
+ });