@occmundial/occ-atomic 2.0.0-beta.1 → 2.0.0-beta.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (289) hide show
  1. package/.prettierrc +6 -0
  2. package/.whitesource +12 -0
  3. package/CHANGELOG.md +1361 -584
  4. package/CONTRIBUTING.md +24 -0
  5. package/README.md +21 -21
  6. package/build/Autocomplete/Autocomplete.js +217 -117
  7. package/build/Autocomplete/Autocomplete.test.js +90 -74
  8. package/build/Autocomplete/__snapshots__/Autocomplete.test.js.snap +20 -0
  9. package/build/Autocomplete/index.js +6 -1
  10. package/build/Autocomplete/styles.js +2 -5
  11. package/build/Avatar/Avatar.js +66 -28
  12. package/build/Avatar/Avatar.test.js +36 -13
  13. package/build/Avatar/AvatarContent/AvatarContent.js +11 -14
  14. package/build/Avatar/AvatarContent/AvatarContent.test.js +55 -50
  15. package/build/Avatar/AvatarContent/__snapshots__/AvatarContent.test.js.snap +41 -0
  16. package/build/Avatar/AvatarContent/index.js +6 -1
  17. package/build/Avatar/AvatarContent/styles.js +12 -11
  18. package/build/Avatar/__snapshots__/Avatar.test.js.snap +17 -0
  19. package/build/Avatar/index.js +22 -1
  20. package/build/Avatar/styles.js +2 -6
  21. package/build/Banner/Banner.js +76 -0
  22. package/build/Banner/Banner.test.js +40 -0
  23. package/build/Banner/__snapshots__/Banner.test.js.snap +33 -0
  24. package/build/Banner/index.js +18 -0
  25. package/build/Banner/styles.js +41 -0
  26. package/build/Button/Button.js +134 -61
  27. package/build/Button/Button.test.js +69 -20
  28. package/build/Button/Loading.js +82 -0
  29. package/build/Button/__snapshots__/Button.test.js.snap +322 -0
  30. package/build/Button/index.js +22 -1
  31. package/build/Button/styles.js +187 -178
  32. package/build/ButtonAlign/ButtonAlign.js +20 -16
  33. package/build/ButtonAlign/ButtonAlign.test.js +3 -3
  34. package/build/ButtonAlign/__snapshots__/ButtonAlign.test.js.snap +19 -0
  35. package/build/Card/Card.js +4 -5
  36. package/build/Card/Card.test.js +40 -35
  37. package/build/Card/__snapshots__/Card.test.js.snap +46 -0
  38. package/build/Card/index.js +22 -1
  39. package/build/Card/styles.js +2 -4
  40. package/build/Check/Check.js +18 -14
  41. package/build/Check/Check.test.js +7 -7
  42. package/build/Check/__snapshots__/Check.test.js.snap +92 -0
  43. package/build/Check/styles.js +2 -2
  44. package/build/Checkbox/Checkbox.js +106 -60
  45. package/build/Checkbox/Checkbox.test.js +58 -42
  46. package/build/Checkbox/__snapshots__/Checkbox.test.js.snap +92 -0
  47. package/build/Checkbox/index.js +4 -2
  48. package/build/Checkbox/styles.js +2 -5
  49. package/build/Column/Column.js +1 -1
  50. package/build/Column/Column.test.js +3 -3
  51. package/build/Column/__snapshots__/Column.test.js.snap +647 -0
  52. package/build/Container/Container.js +1 -1
  53. package/build/Container/Container.test.js +4 -4
  54. package/build/Container/__snapshots__/Container.test.js.snap +43 -0
  55. package/build/Droplist/Droplist.js +474 -227
  56. package/build/Droplist/Droplist.test.js +111 -87
  57. package/build/Droplist/__snapshots__/Droplist.test.js.snap +65 -0
  58. package/build/Droplist/functions.js +9 -2
  59. package/build/Droplist/index.js +22 -1
  60. package/build/Droplist/styles.js +41 -15
  61. package/build/Flexbox/Flexbox.js +64 -29
  62. package/build/Flexbox/Flexbox.test.js +32 -14
  63. package/build/Flexbox/__snapshots__/Flexbox.test.js.snap +106 -0
  64. package/build/Flexbox/index.js +22 -1
  65. package/build/Flexbox/styles.js +2 -6
  66. package/build/Footer/Footer.js +42 -30
  67. package/build/Footer/Footer.test.js +2 -2
  68. package/build/Footer/List/List.js +32 -25
  69. package/build/Footer/__snapshots__/Footer.test.js.snap +90 -0
  70. package/build/Footer/styles.js +5 -0
  71. package/build/Grid/Col/Col.js +15 -22
  72. package/build/Grid/Col/Col.test.js +33 -13
  73. package/build/Grid/Col/__snapshots__/Col.test.js.snap +963 -0
  74. package/build/Grid/Col/index.js +22 -1
  75. package/build/Grid/Col/styles.js +97 -116
  76. package/build/Grid/Grid.js +18 -12
  77. package/build/Grid/Row/Row.js +1 -1
  78. package/build/Grid/Row/Row.test.js +2 -2
  79. package/build/Grid/Row/__snapshots__/Row.test.js.snap +22 -0
  80. package/build/Grid/Row/index.js +4 -2
  81. package/build/Grid/index.js +4 -2
  82. package/build/Header/Header.js +35 -31
  83. package/build/Header/Header.test.js +8 -8
  84. package/build/Header/Menu/Menu.js +23 -19
  85. package/build/Header/Menu/Menu.test.js +7 -7
  86. package/build/Header/Menu/__snapshots__/Menu.test.js.snap +113 -0
  87. package/build/Header/Nav/Nav.js +19 -15
  88. package/build/Header/Nav/Nav.test.js +5 -5
  89. package/build/Header/Nav/__snapshots__/Nav.test.js.snap +101 -0
  90. package/build/Header/__snapshots__/Header.test.js.snap +79 -0
  91. package/build/Hidden/Hidden.js +17 -13
  92. package/build/Hidden/Hidden.test.js +6 -6
  93. package/build/Hidden/__snapshots__/Hidden.test.js.snap +3 -0
  94. package/build/Hidden/index.js +4 -2
  95. package/build/Icon/Icon.js +90 -15
  96. package/build/Icon/Icon.test.js +49 -56
  97. package/build/Icon/__snapshots__/Icon.test.js.snap +32 -0
  98. package/build/Icon/index.js +22 -1
  99. package/build/Icon/styles.js +16 -9
  100. package/build/Input/Input.js +29 -25
  101. package/build/Input/Input.test.js +21 -21
  102. package/build/Input/__snapshots__/Input.test.js.snap +194 -0
  103. package/build/Input/index.js +17 -13
  104. package/build/Label/Label.js +17 -13
  105. package/build/Label/Label.test.js +6 -6
  106. package/build/Label/__snapshots__/Label.test.js.snap +82 -0
  107. package/build/LayerApp/LayerApp.js +22 -18
  108. package/build/LayerApp/LayerApp.test.js +4 -4
  109. package/build/LayerApp/__snapshots__/LayerApp.test.js.snap +37 -0
  110. package/build/Modal/Modal.js +55 -37
  111. package/build/Modal/Modal.test.js +15 -12
  112. package/build/Modal/__snapshots__/Modal.test.js.snap +208 -0
  113. package/build/Modal/index.js +19 -13
  114. package/build/Modal/styles.js +43 -31
  115. package/build/NavAside/NavAside.js +24 -19
  116. package/build/NavAside/NavAside.test.js +15 -13
  117. package/build/NavAside/__snapshots__/NavAside.test.js.snap +116 -0
  118. package/build/NavAside/index.js +16 -12
  119. package/build/NavIcon/NavIcon.js +41 -20
  120. package/build/NavIcon/styles.js +6 -16
  121. package/build/NavItem/NavItem.js +29 -16
  122. package/build/NavTab/NavTab.js +38 -29
  123. package/build/NavTop/NavTop.js +20 -16
  124. package/build/OrderBy/OrderBy.js +23 -19
  125. package/build/OrderBy/OrderBy.test.js +6 -6
  126. package/build/OrderBy/__snapshots__/OrderBy.test.js.snap +54 -0
  127. package/build/Pager/Break/Break.js +1 -1
  128. package/build/Pager/Break/Break.test.js +4 -4
  129. package/build/Pager/Break/__snapshots__/Break.test.js.snap +13 -0
  130. package/build/Pager/Page/Page.js +1 -1
  131. package/build/Pager/Page/Page.test.js +5 -5
  132. package/build/Pager/Page/__snapshots__/Page.test.js.snap +27 -0
  133. package/build/Pager/Pager.js +21 -17
  134. package/build/Pager/Pager.test.js +12 -12
  135. package/build/Pager/__snapshots__/Pager.test.js.snap +50 -0
  136. package/build/Pager/styles.js +1 -1
  137. package/build/Pill/Choice/Choice.js +23 -18
  138. package/build/Pill/Choice/styles.js +8 -3
  139. package/build/Pill/Group/Group.js +7 -4
  140. package/build/Pill/Group/styles.js +7 -4
  141. package/build/Pill/Pill.js +36 -23
  142. package/build/Pill/Pill.test.js +12 -12
  143. package/build/Pill/Stack/Stack.js +10 -7
  144. package/build/Pill/Stack/styles.js +4 -1
  145. package/build/Pill/__snapshots__/Pill.test.js.snap +62 -0
  146. package/build/Pill/styles.js +6 -2
  147. package/build/Placeholder/Placeholder.js +2 -2
  148. package/build/Placeholder/Placeholder.test.js +3 -3
  149. package/build/Placeholder/__snapshots__/Placeholder.test.js.snap +130 -0
  150. package/build/Placeholder/styles.js +23 -16
  151. package/build/Provider/Provider.js +89 -0
  152. package/build/Provider/index.js +13 -0
  153. package/build/Provider/useAtomic.js +17 -0
  154. package/build/{hooks → Provider}/usePrevious.js +1 -1
  155. package/build/Radio/Radio.js +29 -15
  156. package/build/Radio/Radio.test.js +6 -6
  157. package/build/Radio/__snapshots__/Radio.test.js.snap +83 -0
  158. package/build/RangeCounter/RangeCounter.js +17 -13
  159. package/build/RangeCounter/RangeCounter.test.js +3 -3
  160. package/build/RangeCounter/__snapshots__/RangeCounter.test.js.snap +20 -0
  161. package/build/RangeCounter/styles.js +1 -1
  162. package/build/Row/Row.js +1 -1
  163. package/build/Row/Row.test.js +2 -2
  164. package/build/Row/__snapshots__/Row.test.js.snap +22 -0
  165. package/build/SightLogo/SightLogo.js +2 -2
  166. package/build/SightLogo/SightLogo.test.js +2 -2
  167. package/build/SightLogo/__snapshots__/SightLogo.test.js.snap +24 -0
  168. package/build/SlideDown/SlideDown.js +41 -27
  169. package/build/SlideDown/SlideDown.test.js +22 -16
  170. package/build/SlideDown/__snapshots__/SlideDown.test.js.snap +42 -0
  171. package/build/SlideToggle/SlideToggle.js +31 -17
  172. package/build/SlideToggle/SlideToggle.test.js +7 -7
  173. package/build/SlideToggle/__snapshots__/SlideToggle.test.js.snap +62 -0
  174. package/build/SubHeader/SubHeader.js +20 -16
  175. package/build/SubHeader/SubHeader.test.js +7 -7
  176. package/build/SubHeader/__snapshots__/SubHeader.test.js.snap +50 -0
  177. package/build/SwitchGroup/SwitchGroup.js +17 -13
  178. package/build/SwitchGroup/SwitchGroup.test.js +6 -6
  179. package/build/SwitchGroup/__snapshots__/SwitchGroup.test.js.snap +52 -0
  180. package/build/SwitchGroup/styles.js +1 -1
  181. package/build/Tag/Tag.js +27 -10
  182. package/build/Tag/Tag.test.js +8 -8
  183. package/build/Tag/__snapshots__/Tag.test.js.snap +137 -0
  184. package/build/Tag/styles.js +72 -27
  185. package/build/Text/Text.js +454 -122
  186. package/build/Text/Text.test.js +13 -13
  187. package/build/Text/__snapshots__/Text.test.js.snap +216 -0
  188. package/build/Text/styles.js +171 -78
  189. package/build/TextField/TextField.js +455 -302
  190. package/build/TextField/TextField.test.js +138 -146
  191. package/build/TextField/__snapshots__/TextField.test.js.snap +258 -0
  192. package/build/TextField/index.js +6 -1
  193. package/build/TextField/styles.js +99 -33
  194. package/build/Tip/Tip.js +91 -27
  195. package/build/Tip/Tip.test.js +8 -8
  196. package/build/Tip/__snapshots__/Tip.test.js.snap +49 -0
  197. package/build/Tip/styles.js +32 -12
  198. package/build/Title/Title.js +16 -12
  199. package/build/Title/Title.test.js +3 -3
  200. package/build/Title/__snapshots__/Title.test.js.snap +31 -0
  201. package/build/Toaster/Toast/Toast.js +13 -13
  202. package/build/Toaster/Toaster.js +27 -23
  203. package/build/Toaster/Toaster.test.js +6 -6
  204. package/build/Toaster/__snapshots__/Toaster.test.js.snap +5 -0
  205. package/build/Tooltip/Tooltip.js +210 -0
  206. package/build/Tooltip/Tooltip.test.js +35 -0
  207. package/build/Tooltip/__snapshots__/Tooltip.test.js.snap +33 -0
  208. package/build/Tooltip/hooks.js +132 -0
  209. package/build/Tooltip/index.js +18 -0
  210. package/build/Tooltip/styles.js +44 -0
  211. package/build/TourTip/TourTip.js +15 -11
  212. package/build/TourTip/TourTip.test.js +2 -2
  213. package/build/TourTip/__snapshots__/TourTip.test.js.snap +74 -0
  214. package/build/Visible/Visible.js +16 -12
  215. package/build/Visible/Visible.test.js +4 -4
  216. package/build/Visible/__snapshots__/Visible.test.js.snap +3 -0
  217. package/build/WindowSize/WindowSize.js +17 -11
  218. package/build/WindowSize/WindowSize.test.js +4 -4
  219. package/build/WindowSize/__snapshots__/WindowSize.test.js.snap +3 -0
  220. package/build/index.js +82 -8
  221. package/build/plugin/babel.js +61 -0
  222. package/build/subatomic/colors.js +8 -3
  223. package/build/subatomic/fonts.js +1 -1
  224. package/build/subatomic/icons/attachment.js +23 -0
  225. package/build/subatomic/icons/attachmentSolid.js +23 -0
  226. package/build/subatomic/icons/avatarSmile.js +23 -0
  227. package/build/subatomic/icons/book.js +23 -0
  228. package/build/subatomic/icons/cash.js +23 -0
  229. package/build/subatomic/icons/copy.js +23 -0
  230. package/build/subatomic/icons/copySolid.js +23 -0
  231. package/build/subatomic/icons/crossSolid.js +23 -0
  232. package/build/subatomic/icons/dislike.js +1 -1
  233. package/build/subatomic/icons/dislikeSolid.js +23 -0
  234. package/build/subatomic/icons/energy.js +23 -0
  235. package/build/subatomic/icons/energySolid.js +23 -0
  236. package/build/subatomic/icons/eye.js +1 -1
  237. package/build/subatomic/icons/eyeClosed.js +1 -1
  238. package/build/subatomic/icons/eyeClosedSolid.js +23 -0
  239. package/build/subatomic/icons/eyeSolid.js +23 -0
  240. package/build/subatomic/icons/hourGlass.js +23 -0
  241. package/build/subatomic/icons/like.js +1 -1
  242. package/build/subatomic/icons/likeSolid.js +23 -0
  243. package/build/subatomic/icons/location.js +23 -0
  244. package/build/subatomic/icons/locationSolid.js +23 -0
  245. package/build/subatomic/icons/matchJob.js +23 -0
  246. package/build/subatomic/icons/messages.js +1 -1
  247. package/build/subatomic/icons/messagesSolid.js +1 -1
  248. package/build/subatomic/icons/moreOptionsHorizontal.js +23 -0
  249. package/build/subatomic/icons/noMessages.js +23 -0
  250. package/build/subatomic/icons/noMessagesSolid.js +23 -0
  251. package/build/subatomic/icons/occDart.js +25 -8
  252. package/build/subatomic/icons/occHorizontal.js +25 -8
  253. package/build/subatomic/icons/occLogo.js +65 -0
  254. package/build/subatomic/icons/occVertical.js +25 -8
  255. package/build/subatomic/icons/profile.js +23 -0
  256. package/build/subatomic/icons/profileSolid.js +23 -0
  257. package/build/subatomic/icons/profileView.js +23 -0
  258. package/build/subatomic/icons/refresh.js +23 -0
  259. package/build/subatomic/icons/refreshSolid.js +23 -0
  260. package/build/subatomic/icons/sendMessage.js +23 -0
  261. package/build/subatomic/icons/sendMessageSolid.js +23 -0
  262. package/build/subatomic/icons/starsSolid.js +23 -0
  263. package/build/subatomic/icons/suitcase.js +23 -0
  264. package/build/subatomic/icons/suitcaseSolid.js +23 -0
  265. package/build/subatomic/icons/tag.js +1 -1
  266. package/build/subatomic/icons/tagSolid.js +23 -0
  267. package/build/subatomic/icons/trash.js +1 -1
  268. package/build/subatomic/icons/trashSolid.js +1 -1
  269. package/build/subatomic/icons/warning.js +23 -0
  270. package/build/subatomic/icons/warningSolid.js +23 -0
  271. package/build/subatomic/icons/webSite.js +23 -0
  272. package/build/subatomic/icons/webSiteSolid.js +23 -0
  273. package/build/subatomic/icons.js +230 -112
  274. package/build/subatomic/mappedIcons.js +171 -0
  275. package/build/tokens/borderRadius.json +8 -0
  276. package/build/tokens/colors.json +567 -0
  277. package/build/tokens/fonts.json +231 -0
  278. package/build/tokens/index.js +47 -0
  279. package/build/tokens/shadows.json +13 -0
  280. package/build/tokens/spacing.json +16 -0
  281. package/commitlint.config.js +6 -0
  282. package/package.json +124 -113
  283. package/playroom/FrameComponent.js +31 -0
  284. package/playroom/styles.js +14 -0
  285. package/playroom.config.js +7 -7
  286. package/build/Grid/Grid.test.js +0 -22
  287. package/build/Grid/Row/Rowdsd.js +0 -39
  288. package/build/hooks/useEventListener.js +0 -23
  289. package/yarn-error.log +0 -10737
@@ -1,5 +1,7 @@
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); }
4
+
3
5
  Object.defineProperty(exports, "__esModule", {
4
6
  value: true
5
7
  });
@@ -13,7 +15,7 @@ var _Text = _interopRequireDefault(require("../Text"));
13
15
 
14
16
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
15
17
 
16
- function _typeof(obj) { 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); }
18
+ function _extends() { _extends = Object.assign || 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); }
17
19
 
18
20
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
19
21
 
@@ -21,27 +23,31 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
21
23
 
22
24
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
23
25
 
24
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
26
+ 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); }
25
27
 
26
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
28
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
29
+
30
+ 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); }; }
31
+
32
+ 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); }
27
33
 
28
34
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
29
35
 
30
- 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); }
36
+ 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; } }
31
37
 
32
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
38
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
33
39
 
34
- var Radio =
35
- /*#__PURE__*/
36
- function (_React$Component) {
40
+ var Radio = /*#__PURE__*/function (_React$Component) {
37
41
  _inherits(Radio, _React$Component);
38
42
 
43
+ var _super = _createSuper(Radio);
44
+
39
45
  function Radio(props) {
40
46
  var _this;
41
47
 
42
48
  _classCallCheck(this, Radio);
43
49
 
44
- _this = _possibleConstructorReturn(this, _getPrototypeOf(Radio).call(this, props));
50
+ _this = _super.call(this, props);
45
51
  _this.state = {
46
52
  selected: props.selected
47
53
  };
@@ -82,24 +88,28 @@ function (_React$Component) {
82
88
  textOverflow = _this$props.textOverflow,
83
89
  className = _this$props.className,
84
90
  style = _this$props.style;
85
- return _react["default"].createElement("div", {
91
+ return /*#__PURE__*/_react["default"].createElement("div", {
86
92
  id: id
87
93
  }, options.map(function (option) {
88
- return _react["default"].createElement("div", {
94
+ return /*#__PURE__*/_react["default"].createElement("div", _extends({
89
95
  id: option.trk,
90
96
  key: option.value,
97
+ "data-testid": option.testId
98
+ }, option.testId && {
99
+ 'data-value': selected == option.value ? 1 : 0
100
+ }, {
91
101
  className: "".concat(classes.cont).concat(selected == option.value ? " ".concat(classes.active) : '').concat(option.disabled ? " ".concat(classes.disabled) : '').concat(className ? " ".concat(className) : ''),
92
102
  onClick: function onClick() {
93
103
  _this2.onChange(option);
94
104
  },
95
105
  style: style
96
- }, _react["default"].createElement("div", {
106
+ }), /*#__PURE__*/_react["default"].createElement("div", {
97
107
  className: classes.radio,
98
108
  id: option.trk
99
- }), option.label && _react["default"].createElement(_Text["default"], {
109
+ }), option.label && /*#__PURE__*/_react["default"].createElement(_Text["default"], {
100
110
  tag: "label",
101
111
  className: "".concat(classes.label).concat(textOverflow ? " ".concat(classes.overflow) : '')
102
- }, option.label), option.right && _react["default"].createElement(_Text["default"], {
112
+ }, option.label), option.right && /*#__PURE__*/_react["default"].createElement(_Text["default"], {
103
113
  tag: "label",
104
114
  mid: true,
105
115
  className: classes.right
@@ -128,7 +138,11 @@ Radio.propTypes = {
128
138
  value: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number]),
129
139
  label: _propTypes["default"].string,
130
140
  right: _propTypes["default"].string,
131
- trk: _propTypes["default"].string
141
+ trk: _propTypes["default"].string,
142
+
143
+ /** The testId property adds the data attribute data-testid to
144
+ * the main element and should be used for testing only. */
145
+ testId: _propTypes["default"].string
132
146
  })),
133
147
 
134
148
  /** Use this prop to overflow the text of the label, adding '...' and the end. */
@@ -31,14 +31,14 @@ var options = [{
31
31
  }];
32
32
  describe("Radio", function () {
33
33
  it('matches the snapshot', function () {
34
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_Radio["default"], {
34
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_Radio["default"], {
35
35
  classes: classes,
36
36
  options: options
37
37
  }));
38
38
  expect(wrapper).toMatchSnapshot();
39
39
  });
40
40
  it('has the right state', function () {
41
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_Radio["default"], {
41
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_Radio["default"], {
42
42
  classes: classes,
43
43
  options: options,
44
44
  selected: 3
@@ -61,7 +61,7 @@ describe("Radio", function () {
61
61
  label: 'Option 3',
62
62
  disabled: true
63
63
  }];
64
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_Radio["default"], {
64
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_Radio["default"], {
65
65
  classes: classes,
66
66
  options: options2
67
67
  }));
@@ -70,7 +70,7 @@ describe("Radio", function () {
70
70
  expect(wrapper.find('.cont').at(2).prop('className')).toEqual('cont disabled');
71
71
  });
72
72
  it('changes the value on click', function () {
73
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_Radio["default"], {
73
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_Radio["default"], {
74
74
  classes: classes,
75
75
  options: options
76
76
  }));
@@ -80,7 +80,7 @@ describe("Radio", function () {
80
80
  });
81
81
  it('calls onChange function', function () {
82
82
  var onChange = jest.fn();
83
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_Radio["default"], {
83
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_Radio["default"], {
84
84
  classes: classes,
85
85
  onChange: onChange,
86
86
  options: options
@@ -91,7 +91,7 @@ describe("Radio", function () {
91
91
  });
92
92
  describe("RadioJSS", function () {
93
93
  it('matches the snapshot', function () {
94
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], null));
94
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_index["default"], null));
95
95
  expect(wrapper).toMatchSnapshot();
96
96
  });
97
97
  });
@@ -0,0 +1,83 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`Radio matches the snapshot 1`] = `ShallowWrapper {}`;
4
+
5
+ exports[`Radio styles matches the snapshot 1`] = `
6
+ Object {
7
+ "active": Object {
8
+ "& $radio:after": Object {
9
+ "background": Array [
10
+ "#083cae",
11
+ "!important",
12
+ ],
13
+ },
14
+ },
15
+ "cont": Object {
16
+ "&:after": Object {
17
+ "clear": "both",
18
+ "content": "\\"\\"",
19
+ "display": "table",
20
+ },
21
+ "&:hover $radio:after": Object {
22
+ "background": "#dddddd",
23
+ },
24
+ "alignItems": "start",
25
+ "boxSizing": "border-box",
26
+ "cursor": "pointer",
27
+ "display": "flex",
28
+ "outline": "0",
29
+ "paddingBottom": 8,
30
+ "paddingTop": 8,
31
+ },
32
+ "disabled": Object {
33
+ "opacity": 0.4,
34
+ "pointerEvents": "none",
35
+ },
36
+ "label": Object {
37
+ "cursor": "pointer",
38
+ "flex": "1",
39
+ "float": "left",
40
+ "marginLeft": 8,
41
+ },
42
+ "overflow": Object {
43
+ "overflow": "hidden",
44
+ "textOverflow": "ellipsis",
45
+ "whiteSpace": "nowrap",
46
+ },
47
+ "radio": Object {
48
+ "&:after": Object {
49
+ "background": "transparent",
50
+ "borderRadius": "50%",
51
+ "content": "\\"\\"",
52
+ "height": 6,
53
+ "left": "50%",
54
+ "position": "absolute",
55
+ "top": "50%",
56
+ "transform": "translate(-50%, -50%)",
57
+ "transition": "0.3s all",
58
+ "width": 6,
59
+ },
60
+ "&:before": Object {
61
+ "background": "#ffffff",
62
+ "border": "1px solid #dddddd",
63
+ "borderRadius": "50%",
64
+ "content": "\\"\\"",
65
+ "height": 16,
66
+ "left": "50%",
67
+ "position": "absolute",
68
+ "top": "50%",
69
+ "transform": "translate(-50%, -50%)",
70
+ "width": 16,
71
+ },
72
+ "height": 24,
73
+ "position": "relative",
74
+ "width": 24,
75
+ },
76
+ "right": Object {
77
+ "float": "right",
78
+ "marginLeft": 8,
79
+ },
80
+ }
81
+ `;
82
+
83
+ exports[`RadioJSS matches the snapshot 1`] = `ShallowWrapper {}`;
@@ -1,5 +1,7 @@
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); }
4
+
3
5
  Object.defineProperty(exports, "__esModule", {
4
6
  value: true
5
7
  });
@@ -11,34 +13,36 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
11
13
 
12
14
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
13
15
 
14
- function _typeof(obj) { 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); }
15
-
16
16
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
17
17
 
18
18
  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); } }
19
19
 
20
20
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
21
21
 
22
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
22
+ 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); }
23
23
 
24
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
24
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
25
25
 
26
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
26
+ 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); }; }
27
27
 
28
- 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); }
28
+ 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); }
29
29
 
30
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
30
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
31
+
32
+ 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; } }
33
+
34
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
31
35
 
32
36
  /** Use this component in lists with pagination. It will display information about the current page and its elements. */
33
- var RangeCounter =
34
- /*#__PURE__*/
35
- function (_React$Component) {
37
+ var RangeCounter = /*#__PURE__*/function (_React$Component) {
36
38
  _inherits(RangeCounter, _React$Component);
37
39
 
40
+ var _super = _createSuper(RangeCounter);
41
+
38
42
  function RangeCounter() {
39
43
  _classCallCheck(this, RangeCounter);
40
44
 
41
- return _possibleConstructorReturn(this, _getPrototypeOf(RangeCounter).apply(this, arguments));
45
+ return _super.apply(this, arguments);
42
46
  }
43
47
 
44
48
  _createClass(RangeCounter, [{
@@ -60,11 +64,11 @@ function (_React$Component) {
60
64
  id = _this$props.id,
61
65
  className = _this$props.className,
62
66
  style = _this$props.style;
63
- return _react["default"].createElement("div", {
67
+ return /*#__PURE__*/_react["default"].createElement("div", {
64
68
  className: "".concat(classes.cont).concat(className ? " ".concat(className) : ''),
65
69
  id: id,
66
70
  style: style
67
- }, _react["default"].createElement("span", {
71
+ }, /*#__PURE__*/_react["default"].createElement("span", {
68
72
  className: classes.num
69
73
  }, this.numberWithCommas(min), symbol, this.numberWithCommas(max)), " ", of, " ", this.numberWithCommas(total), " ", type);
70
74
  }
@@ -21,7 +21,7 @@ var reduceClasses = function reduceClasses(prev, curr) {
21
21
  var classes = Object.keys(_styles["default"]).reduce(reduceClasses, {});
22
22
  describe("RangeCounter", function () {
23
23
  it('matches the snapshot', function () {
24
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_RangeCounter["default"], {
24
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_RangeCounter["default"], {
25
25
  classes: classes,
26
26
  min: 1,
27
27
  max: 10,
@@ -30,7 +30,7 @@ describe("RangeCounter", function () {
30
30
  expect(wrapper).toMatchSnapshot();
31
31
  });
32
32
  it('shows the text correctly', function () {
33
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_RangeCounter["default"], {
33
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_RangeCounter["default"], {
34
34
  classes: classes,
35
35
  min: 1,
36
36
  max: 10,
@@ -42,7 +42,7 @@ describe("RangeCounter", function () {
42
42
  });
43
43
  describe("RangeCounterJSS", function () {
44
44
  it('matches the snapshot', function () {
45
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], {
45
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_index["default"], {
46
46
  min: 1,
47
47
  max: 10,
48
48
  total: 100
@@ -0,0 +1,20 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`RangeCounter matches the snapshot 1`] = `ShallowWrapper {}`;
4
+
5
+ exports[`RangeCounter styles matches the snapshot 1`] = `
6
+ Object {
7
+ "cont": Object {
8
+ "boxSizing": "border-box",
9
+ "color": "#727272",
10
+ "fontFamily": "'OccText', sans-serif",
11
+ "fontSize": "15px",
12
+ "lineHeight": "18px",
13
+ },
14
+ "num": Object {
15
+ "color": "#222222",
16
+ },
17
+ }
18
+ `;
19
+
20
+ exports[`RangeCounterJSS matches the snapshot 1`] = `ShallowWrapper {}`;
@@ -15,7 +15,7 @@ var _default = {
15
15
  cont: {
16
16
  boxSizing: 'border-box',
17
17
  fontFamily: _fonts["default"].body,
18
- fontSize: '14px',
18
+ fontSize: '15px',
19
19
  lineHeight: '18px',
20
20
  color: _colors["default"].grey7
21
21
  },
package/build/Row/Row.js CHANGED
@@ -23,7 +23,7 @@ var Row = function Row(_ref) {
23
23
  console.warn('DEPRECATED: The Row component will be removed soon. Use the Grid.Row subcomponent instead.');
24
24
  }
25
25
 
26
- return _react["default"].createElement("div", {
26
+ return /*#__PURE__*/_react["default"].createElement("div", {
27
27
  className: "".concat(classes.row).concat(className ? " ".concat(className) : ''),
28
28
  style: style,
29
29
  id: id
@@ -21,7 +21,7 @@ var reduceClasses = function reduceClasses(prev, curr) {
21
21
  var classes = Object.keys(_styles["default"]).reduce(reduceClasses, {});
22
22
  describe("Row", function () {
23
23
  it('matches the snapshot', function () {
24
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_Row["default"], {
24
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_Row["default"], {
25
25
  classes: classes
26
26
  }));
27
27
  expect(wrapper).toMatchSnapshot();
@@ -29,7 +29,7 @@ describe("Row", function () {
29
29
  });
30
30
  describe("RowJSS", function () {
31
31
  it('matches the snapshot', function () {
32
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], null));
32
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_index["default"], null));
33
33
  expect(wrapper).toMatchSnapshot();
34
34
  });
35
35
  });
@@ -0,0 +1,22 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`Row matches the snapshot 1`] = `ShallowWrapper {}`;
4
+
5
+ exports[`Row styles matches the snapshot 1`] = `
6
+ Object {
7
+ "row": Object {
8
+ "&:after": Object {
9
+ "clear": "both",
10
+ },
11
+ "&:before, &:after": Object {
12
+ "content": "\\"\\"",
13
+ "display": "table",
14
+ },
15
+ "boxSizing": "border-box",
16
+ "marginLeft": "-15px",
17
+ "marginRight": "-15px",
18
+ },
19
+ }
20
+ `;
21
+
22
+ exports[`RowJSS matches the snapshot 1`] = `ShallowWrapper {}`;
@@ -22,11 +22,11 @@ var SightLogo = function SightLogo(_ref) {
22
22
  console.warn('DEPRECATED: The SightLogo component will be removed soon. Use the Icon component instead.');
23
23
  }
24
24
 
25
- return _react["default"].createElement("div", {
25
+ return /*#__PURE__*/_react["default"].createElement("div", {
26
26
  className: "".concat(classes.container).concat(className ? " ".concat(className) : ''),
27
27
  id: id,
28
28
  style: style
29
- }, _react["default"].createElement("i", {
29
+ }, /*#__PURE__*/_react["default"].createElement("i", {
30
30
  className: classes.logo
31
31
  }));
32
32
  };
@@ -21,7 +21,7 @@ var reduceClasses = function reduceClasses(prev, curr) {
21
21
  var classes = Object.keys(_styles["default"]).reduce(reduceClasses, {});
22
22
  describe("SightLogo", function () {
23
23
  it('matches the snapshot', function () {
24
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_SightLogo["default"], {
24
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_SightLogo["default"], {
25
25
  classes: classes
26
26
  }));
27
27
  expect(wrapper).toMatchSnapshot();
@@ -29,7 +29,7 @@ describe("SightLogo", function () {
29
29
  });
30
30
  describe("SightLogoJSS", function () {
31
31
  it('matches the snapshot', function () {
32
- var wrapper = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], null));
32
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_index["default"], null));
33
33
  expect(wrapper).toMatchSnapshot();
34
34
  });
35
35
  });
@@ -0,0 +1,24 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`SightLogo matches the snapshot 1`] = `ShallowWrapper {}`;
4
+
5
+ exports[`SightLogo styles matches the snapshot 1`] = `
6
+ Object {
7
+ "container": Object {
8
+ "float": "left !important",
9
+ "marginRight": "15px",
10
+ "padding": "10px 0 0",
11
+ },
12
+ "logo": Object {
13
+ "background": "url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgogICAgICAgICAgICAJIHZpZXdCb3g9IjAgMCA3NC4yIDMzLjMiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDc0LjIgMzMuMzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgogICAgICAgICAgICA8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMS41LDI0LjFsMC43LTEuNmMxLjYsMC44LDMuMiwxLjIsNC42LDEuMnMyLjYtMC4yLDMuNC0wLjdjMC44LTAuNSwxLjItMS4yLDEuMi0yLjFjMC0xLjMtMS41LTIuNi00LjYtMy42CiAgICAgICAgICAgIAljLTEuNi0wLjUtMy0xLjItNC0xLjljLTEtMC44LTEuNS0xLjgtMS41LTNDMS4zLDEwLjksMS45LDkuOCwzLDljMS4xLTEsMi42LTEuNCw0LjYtMS40YzAuOCwwLDEuNywwLjEsMi43LDAuNHMxLjgsMC42LDIuNCwxCiAgICAgICAgICAgIAlMMTIsMTAuNWMtMC43LTAuMy0xLjQtMC42LTIuMS0wLjlDOS4yLDkuNSw4LjQsOS40LDcuNSw5LjRjLTEuMiwwLTIuMiwwLjMtMi45LDAuOGMtMC44LDAuNS0xLjIsMS4yLTEuMiwyYzAsMC43LDAuNCwxLjMsMS4yLDEuOAogICAgICAgICAgICAJczEuOCwxLDMuMiwxLjRjMy44LDEuMyw1LjcsMy4xLDUuNyw1LjJjMCwxLjUtMC42LDIuNy0xLjcsMy41Yy0xLjIsMC44LTIuOCwxLjMtNSwxLjNDNiwyNS40LDUsMjUuMyw0LDI1CiAgICAgICAgICAgIAlDMi45LDI0LjgsMi4xLDI0LjUsMS41LDI0LjEiLz4KICAgICAgICAgICAgPHBvbHlnb24gZmlsbD0iI0ZGRkZGRiIgcG9pbnRzPSIxNi4zLDI1IDE4LjUsMjUgMTguNSw4LjEgMTYuMyw4LjEgMTYuMywyNSAiLz4KICAgICAgICAgICAgPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTE3LjQsMzAuM2MtMC41LDAtMC45LTAuMi0xLjItMC41Yy0wLjMtMC4zLTAuNS0wLjctMC41LTEuMnMwLjItMC45LDAuNS0xLjJjMC4zLTAuMywwLjctMC41LDEuMi0wLjUKICAgICAgICAgICAgCWMwLjQsMCwwLjgsMC4yLDEuMiwwLjVjMC4zLDAuMywwLjUsMC43LDAuNSwxLjJzLTAuMiwwLjktMC41LDEuMkMxOC4zLDMwLjEsMTcuOSwzMC4zLDE3LjQsMzAuM0wxNy40LDMwLjN6Ii8+CiAgICAgICAgICAgIDxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xNy40LDYuMmMtMC41LDAtMC45LTAuMi0xLjItMC41Yy0wLjMtMC4zLTAuNS0wLjctMC41LTEuMnMwLjItMC45LDAuNS0xLjJjMC4zLTAuMywwLjctMC41LDEuMi0wLjUKICAgICAgICAgICAgCWMwLjQsMCwwLjgsMC4yLDEuMiwwLjVjMC4zLDAuMywwLjUsMC43LDAuNSwxLjJzLTAuMiwwLjktMC41LDEuMkMxOC4zLDYsMTcuOSw2LjIsMTcuNCw2LjJMMTcuNCw2LjJ6Ii8+CiAgICAgICAgICAgIDxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0zNS4zLDguMmwtMC41LDEuM2MtMS41LTEuMS0zLTEuNy00LjQtMS43Yy0xLjYsMC0zLDAuNC00LjIsMS4ycy0yLjEsMS45LTIuNywzLjJjLTAuNywxLjQtMSwyLjktMSw0LjYKICAgICAgICAgICAgCWMwLDIuNywwLjYsNC45LDIsNi41czMuMywyLjQsNS43LDIuNGMxLjYsMCwzLTAuNSw0LjMtMS41djMuMWMwLDEuMy0wLjUsMi4zLTEuNCwzYy0wLjksMC43LTIuMSwxLTMuNiwxYy0xLjEtMC4xLTItMC4yLTIuOC0wLjQKICAgICAgICAgICAgCWMtMC44LTAuMy0xLjYtMC42LTIuMy0wLjlsLTAuNywxLjZjMC43LDAuNCwxLjYsMC43LDIuOCwxczIuMiwwLjQsMywwLjRjMS40LDAsMi43LTAuMywzLjgtMC44YzEuMS0wLjUsMS45LTEuMiwyLjUtMi4xCiAgICAgICAgICAgIAljMC42LTAuOSwwLjktMS45LDAuOS0zdi0xOUwzNS4zLDguMnogTTM0LjUsMjEuOGMtMS4yLDEuMi0yLjcsMS44LTQuNCwxLjljLTEuOCwwLTMuMi0wLjYtNC4xLTEuOXMtMS40LTMtMS40LTUuMgogICAgICAgICAgICAJYzAuMS0yLjEsMC42LTMuOCwxLjUtNS4xYzAuOS0xLjMsMi4zLTIsNC4xLTJjMSwwLDEuNywwLjEsMi40LDAuNGMwLjcsMC4zLDEuMywwLjcsMS45LDEuMlYyMS44eiIvPgogICAgICAgICAgICA8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNTMuNyw5LjFjMC45LDEsMS4zLDIuNCwxLjMsNC4xdjExLjdoLTIuMlYxMy42YzAtMi44LTEuMS00LjItMy4zLTQuMmMtMC45LDAtMS45LDAuMy0zLjEsMQogICAgICAgICAgICAJYy0xLjIsMC43LTIuMSwxLjUtMi45LDIuNXYxMmgtMi4yVjAuN2wyLjItMC4zdjEwLjJjMC43LTAuOCwxLjctMS41LDIuOS0yLjFzMi4zLTAuOSwzLjQtMC45QzUxLjUsNy42LDUyLjgsOC4xLDUzLjcsOS4xIi8+CiAgICAgICAgICAgIDxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik02NSw4bDAuNywxLjZoLTMuOHYxMC42YzAsMC45LDAuMiwxLjYsMC42LDIuMWMwLjQsMC41LDEsMC44LDEuOCwwLjhjMC41LDAsMC45LTAuMSwxLjQtMC4zbDAuNCwxLjhsLTAuNywwLjIKICAgICAgICAgICAgCUM2NSwyNC45LDY0LjUsMjUsNjMuOCwyNWMtMS4zLDAtMi4zLTAuNC0zLTEuMmMtMC43LTAuOC0xLjEtMS45LTEuMS0zLjNWOS42aC0yLjVWOGgyLjVWMy42bDIuMi0wLjhWOEM2MS45LDgsNjUsOCw2NSw4eiIvPgogICAgICAgICAgICA8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNzEuNCw3LjdjMC0wLjMtMC4yLTAuNS0wLjQtMC42YzAuMywwLDAuNS0wLjIsMC41LTAuNWMwLTAuMi0wLjEtMC40LTAuMi0wLjVjLTAuMi0wLjEtMC40LTAuMi0wLjgtMC4yCiAgICAgICAgICAgIAljLTAuMywwLTAuNiwwLTAuOSwwLjF2Mi4zaDAuNWMwLDAsMC0wLjktMC4xLTAuOWgwLjNjMC4zLDAsMC41LDAuMSwwLjUsMC40QzcwLjksOCw3MSw4LjMsNzEsOC4zaDAuNkM3MS41LDguMiw3MS41LDguMSw3MS40LDcuN3oKICAgICAgICAgICAgCSBNNzAuNCw3aC0wLjNWNi4zYzAuMSwwLDAuMiwwLDAuMywwYzAuMywwLDAuNSwwLjIsMC41LDAuNEM3MC45LDYuOSw3MC43LDcsNzAuNCw3eiIvPgogICAgICAgICAgICA8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNzAuNSw0LjdjLTEuMywwLTIuNCwxLjEtMi40LDIuNGMwLDEuNCwxLDIuNCwyLjQsMi40YzEuMywwLDIuNC0xLjEsMi40LTIuNFM3MS44LDQuOCw3MC41LDQuN3ogTTcwLjQsOQogICAgICAgICAgICAJYy0xLDAtMS44LTAuOS0xLjgtMS45czAuOC0xLjksMS44LTEuOXMxLjgsMC45LDEuOCwxLjlDNzIuMiw4LjIsNzEuNCw5LDcwLjQsOXoiLz4KICAgICAgICAgICAgPC9zdmc+)",
14
+ "backgroundPosition": "center center",
15
+ "backgroundRepeat": "no-repeat",
16
+ "display": "block",
17
+ "height": "30px",
18
+ "marginTop": "6px",
19
+ "width": "75px",
20
+ },
21
+ }
22
+ `;
23
+
24
+ exports[`SightLogoJSS matches the snapshot 1`] = `ShallowWrapper {}`;