@zohodesk/components 1.0.0-temp-155 → 1.0.0-temp-156

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 (431) hide show
  1. package/es/Accordion/Accordion.js +7 -3
  2. package/es/Accordion/AccordionItem.js +4 -2
  3. package/es/Animation/Animation.js +3 -3
  4. package/es/AppContainer/AppContainer.js +13 -5
  5. package/es/AppContainer/AppContainer.module.css +2 -2
  6. package/es/Avatar/Avatar.js +23 -11
  7. package/es/Avatar/Avatar.module.css +18 -18
  8. package/es/AvatarTeam/AvatarTeam.js +3 -3
  9. package/es/AvatarTeam/AvatarTeam.module.css +35 -35
  10. package/es/Button/Button.js +4 -3
  11. package/es/Button/css/Button.module.css +70 -70
  12. package/es/Buttongroup/Buttongroup.js +3 -3
  13. package/es/Buttongroup/Buttongroup.module.css +14 -15
  14. package/es/Card/Card.js +21 -10
  15. package/es/CheckBox/CheckBox.js +5 -3
  16. package/es/CheckBox/CheckBox.module.css +15 -15
  17. package/es/DateTime/CalendarView.js +32 -20
  18. package/es/DateTime/DateTime.js +67 -6
  19. package/es/DateTime/DateTime.module.css +39 -39
  20. package/es/DateTime/DateTimePopupFooter.js +4 -2
  21. package/es/DateTime/DateTimePopupHeader.js +8 -2
  22. package/es/DateTime/DateWidget.js +98 -35
  23. package/es/DateTime/DateWidget.module.css +5 -5
  24. package/es/DateTime/DaysRow.js +4 -2
  25. package/es/DateTime/Time.js +10 -2
  26. package/es/DateTime/YearView.js +28 -4
  27. package/es/DateTime/YearView.module.css +15 -15
  28. package/es/DateTime/__tests__/CalendarView.spec.js +1 -0
  29. package/es/DateTime/__tests__/DateTime.spec.js +1 -0
  30. package/es/DateTime/__tests__/DateWidget.spec.js +2 -3
  31. package/es/DateTime/common.js +3 -0
  32. package/es/DateTime/constants.js +1 -0
  33. package/es/DateTime/dateFormatUtils/dateFormat.js +63 -30
  34. package/es/DateTime/dateFormatUtils/dateFormats.js +0 -1
  35. package/es/DateTime/dateFormatUtils/dayChange.js +13 -4
  36. package/es/DateTime/dateFormatUtils/index.js +32 -2
  37. package/es/DateTime/dateFormatUtils/monthChange.js +8 -0
  38. package/es/DateTime/dateFormatUtils/timeChange.js +22 -6
  39. package/es/DateTime/dateFormatUtils/yearChange.js +11 -2
  40. package/es/DateTime/objectUtils.js +14 -20
  41. package/es/DateTime/typeChecker.js +3 -0
  42. package/es/DateTime/validator.js +58 -6
  43. package/es/DropBox/DropBox.js +6 -2
  44. package/es/DropBox/DropBoxElement/DropBoxElement.js +7 -0
  45. package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +76 -76
  46. package/es/DropBox/DropBoxElement/css/cssJSLogic.js +5 -3
  47. package/es/DropBox/DropBoxElement/useDropboxPosCalc.js +3 -0
  48. package/es/DropBox/css/DropBox.module.css +6 -6
  49. package/es/DropBox/props/defaultProps.js +1 -2
  50. package/es/DropBox/props/propTypes.js +1 -2
  51. package/es/DropDown/DropDown.js +8 -4
  52. package/es/DropDown/DropDown.module.css +2 -2
  53. package/es/DropDown/DropDownHeading.js +4 -5
  54. package/es/DropDown/DropDownHeading.module.css +6 -6
  55. package/es/DropDown/DropDownItem.js +6 -0
  56. package/es/DropDown/DropDownItem.module.css +12 -12
  57. package/es/DropDown/DropDownSearch.js +4 -0
  58. package/es/DropDown/DropDownSearch.module.css +3 -3
  59. package/es/DropDown/DropDownSeparator.js +1 -0
  60. package/es/DropDown/DropDownSeparator.module.css +2 -2
  61. package/es/DropDown/__tests__/DropDown.spec.js +1 -2
  62. package/es/Heading/Heading.js +2 -3
  63. package/es/Heading/Heading.module.css +2 -2
  64. package/es/Label/Label.js +2 -3
  65. package/es/Label/Label.module.css +5 -5
  66. package/es/Layout/Box.js +13 -0
  67. package/es/Layout/Container.js +12 -1
  68. package/es/Layout/Layout.module.css +15 -15
  69. package/es/Layout/index.js +1 -2
  70. package/es/ListItem/ListContainer.js +8 -3
  71. package/es/ListItem/ListItem.js +9 -3
  72. package/es/ListItem/ListItem.module.css +38 -38
  73. package/es/ListItem/ListItemWithAvatar.js +9 -3
  74. package/es/ListItem/ListItemWithCheckBox.js +7 -2
  75. package/es/ListItem/ListItemWithIcon.js +8 -3
  76. package/es/ListItem/ListItemWithRadio.js +7 -3
  77. package/es/Modal/Modal.js +28 -11
  78. package/es/MultiSelect/AdvancedGroupMultiSelect.js +89 -13
  79. package/es/MultiSelect/AdvancedMultiSelect.js +32 -9
  80. package/es/MultiSelect/EmptyState.js +2 -0
  81. package/es/MultiSelect/MultiSelect.js +99 -32
  82. package/es/MultiSelect/MultiSelect.module.css +31 -31
  83. package/es/MultiSelect/MultiSelectHeader.js +3 -0
  84. package/es/MultiSelect/MultiSelectWithAvatar.js +12 -6
  85. package/es/MultiSelect/SelectedOptions.js +6 -3
  86. package/es/MultiSelect/SelectedOptions.module.css +5 -5
  87. package/es/MultiSelect/Suggestions.js +7 -3
  88. package/es/MultiSelect/__tests__/MultiSelect.spec.js +4 -6
  89. package/es/MultiSelect/props/propTypes.js +2 -0
  90. package/es/PopOver/PopOver.js +18 -2
  91. package/es/PopOver/__tests__/PopOver.spec.js +2 -1
  92. package/es/Popup/Popup.js +77 -24
  93. package/es/Popup/__tests__/Popup.spec.js +17 -5
  94. package/es/Popup/viewPort.js +16 -4
  95. package/es/Provider/IdProvider.js +10 -5
  96. package/es/Provider/LibraryContext.js +6 -4
  97. package/es/Provider/NumberGenerator/NumberGenerator.js +21 -7
  98. package/es/Provider/ZindexProvider.js +9 -2
  99. package/es/Radio/Radio.js +4 -2
  100. package/es/Radio/Radio.module.css +9 -9
  101. package/es/Responsive/CustomResponsive.js +30 -18
  102. package/es/Responsive/RefWrapper.js +6 -7
  103. package/es/Responsive/ResizeComponent.js +35 -25
  104. package/es/Responsive/ResizeObserver.js +26 -6
  105. package/es/Responsive/Responsive.js +34 -20
  106. package/es/Responsive/index.js +1 -3
  107. package/es/Responsive/sizeObservers.js +28 -7
  108. package/es/Responsive/utils/index.js +7 -5
  109. package/es/Responsive/utils/shallowCompare.js +7 -2
  110. package/es/Responsive/windowResizeObserver.js +7 -0
  111. package/es/ResponsiveDropBox/ResponsiveDropBox.js +4 -0
  112. package/es/ResponsiveDropBox/ResponsiveDropBox.module.css +2 -2
  113. package/es/Ribbon/Ribbon.js +3 -2
  114. package/es/Ribbon/Ribbon.module.css +46 -48
  115. package/es/RippleEffect/RippleEffect.js +1 -3
  116. package/es/Select/GroupSelect.js +58 -14
  117. package/es/Select/Select.js +79 -33
  118. package/es/Select/Select.module.css +23 -23
  119. package/es/Select/SelectWithAvatar.js +17 -4
  120. package/es/Select/SelectWithIcon.js +46 -5
  121. package/es/Select/__tests__/Select.spec.js +6 -8
  122. package/es/Select/props/propTypes.js +1 -0
  123. package/es/Stencils/Stencils.js +3 -3
  124. package/es/Stencils/Stencils.module.css +11 -11
  125. package/es/Switch/Switch.js +5 -3
  126. package/es/Switch/Switch.module.css +23 -23
  127. package/es/Tab/Tab.js +4 -4
  128. package/es/Tab/Tab.module.css +14 -14
  129. package/es/Tab/TabContent.js +1 -0
  130. package/es/Tab/TabContentWrapper.js +2 -0
  131. package/es/Tab/TabWrapper.js +5 -2
  132. package/es/Tab/Tabs.js +54 -7
  133. package/es/Tab/Tabs.module.css +22 -22
  134. package/es/Tab/__tests__/Tab.spec.js +1 -3
  135. package/es/Tab/__tests__/TabWrapper.spec.js +1 -0
  136. package/es/Tag/Tag.js +6 -3
  137. package/es/Tag/Tag.module.css +25 -25
  138. package/es/TextBox/TextBox.js +15 -3
  139. package/es/TextBox/TextBox.module.css +9 -9
  140. package/es/TextBox/__tests__/TextBox.spec.js +1 -4
  141. package/es/TextBoxIcon/TextBoxIcon.js +9 -2
  142. package/es/TextBoxIcon/TextBoxIcon.module.css +7 -7
  143. package/es/TextBoxIcon/__tests__/TextBoxIcon.spec.js +2 -7
  144. package/es/Textarea/Textarea.js +12 -3
  145. package/es/Textarea/Textarea.module.css +21 -21
  146. package/es/Textarea/__tests__/Textarea.spec.js +2 -2
  147. package/es/Tooltip/Tooltip.js +58 -14
  148. package/es/Tooltip/Tooltip.module.css +5 -5
  149. package/es/Tooltip/__tests__/Tooltip.spec.js +5 -0
  150. package/es/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +3 -2
  151. package/es/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +7 -5
  152. package/es/common/animation.module.css +8 -8
  153. package/es/common/avatarsizes.module.css +16 -16
  154. package/es/common/basicReset.module.css +3 -3
  155. package/es/common/common.module.css +24 -24
  156. package/es/common/customscroll.module.css +2 -2
  157. package/es/deprecated/AdvancedMultiSelect.module.css +18 -18
  158. package/es/deprecated/PortalLayer/PortalLayer.js +25 -20
  159. package/es/semantic/Button/Button.js +3 -2
  160. package/es/semantic/Button/semanticButton.module.css +1 -1
  161. package/es/utils/Common.js +54 -9
  162. package/es/utils/ContextOptimizer.js +4 -5
  163. package/es/utils/__tests__/debounce.spec.js +2 -2
  164. package/es/utils/constructFullName.js +2 -0
  165. package/es/utils/css/compileClassNames.js +5 -0
  166. package/es/utils/css/mergeStyle.js +7 -6
  167. package/es/utils/css/utils.js +1 -0
  168. package/es/utils/datetime/common.js +16 -5
  169. package/es/utils/debounce.js +5 -1
  170. package/es/utils/dropDownUtils.js +68 -11
  171. package/es/utils/getInitial.js +4 -0
  172. package/es/utils/shallowEqual.js +6 -0
  173. package/lib/Accordion/Accordion.js +42 -18
  174. package/lib/Accordion/AccordionItem.js +40 -18
  175. package/lib/Accordion/__tests__/Accordion.spec.js +3 -0
  176. package/lib/Accordion/index.js +3 -0
  177. package/lib/Accordion/props/propTypes.js +3 -0
  178. package/lib/Animation/Animation.js +38 -18
  179. package/lib/Animation/__tests__/Animation.spec.js +11 -7
  180. package/lib/Animation/props/propTypes.js +3 -0
  181. package/lib/AppContainer/AppContainer.js +56 -21
  182. package/lib/AppContainer/AppContainer.module.css +2 -2
  183. package/lib/AppContainer/props/propTypes.js +3 -0
  184. package/lib/Avatar/Avatar.js +78 -38
  185. package/lib/Avatar/Avatar.module.css +18 -18
  186. package/lib/Avatar/__tests__/Avatar.spec.js +44 -0
  187. package/lib/Avatar/props/propTypes.js +3 -0
  188. package/lib/AvatarTeam/AvatarTeam.js +52 -30
  189. package/lib/AvatarTeam/AvatarTeam.module.css +35 -35
  190. package/lib/AvatarTeam/__tests__/AvatarTeam.spec.js +13 -0
  191. package/lib/AvatarTeam/props/propTypes.js +3 -0
  192. package/lib/Button/Button.js +31 -20
  193. package/lib/Button/css/Button.module.css +70 -70
  194. package/lib/Button/css/cssJSLogic.js +18 -17
  195. package/lib/Button/index.js +3 -0
  196. package/lib/Button/props/defaultProps.js +2 -0
  197. package/lib/Button/props/propTypes.js +3 -0
  198. package/lib/Buttongroup/Buttongroup.js +32 -12
  199. package/lib/Buttongroup/Buttongroup.module.css +14 -15
  200. package/lib/Buttongroup/__test__/Buttongroup.spec.js +10 -0
  201. package/lib/Buttongroup/props/propTypes.js +3 -0
  202. package/lib/Card/Card.js +102 -46
  203. package/lib/Card/__tests__/Card.spec.js +10 -1
  204. package/lib/Card/index.js +4 -0
  205. package/lib/Card/props/propTypes.js +3 -0
  206. package/lib/CheckBox/CheckBox.js +71 -47
  207. package/lib/CheckBox/CheckBox.module.css +15 -15
  208. package/lib/CheckBox/__tests__/CheckBox.spec.js +3 -0
  209. package/lib/CheckBox/props/propTypes.js +3 -0
  210. package/lib/DateTime/CalendarView.js +82 -42
  211. package/lib/DateTime/DateTime.js +240 -156
  212. package/lib/DateTime/DateTime.module.css +39 -39
  213. package/lib/DateTime/DateTimePopupFooter.js +32 -9
  214. package/lib/DateTime/DateTimePopupHeader.js +49 -18
  215. package/lib/DateTime/DateWidget.js +353 -251
  216. package/lib/DateTime/DateWidget.module.css +5 -5
  217. package/lib/DateTime/DaysRow.js +28 -6
  218. package/lib/DateTime/Time.js +74 -33
  219. package/lib/DateTime/YearView.js +78 -29
  220. package/lib/DateTime/YearView.module.css +15 -15
  221. package/lib/DateTime/__tests__/CalendarView.spec.js +13 -5
  222. package/lib/DateTime/__tests__/DateTime.spec.js +51 -37
  223. package/lib/DateTime/__tests__/DateWidget.spec.js +10 -8
  224. package/lib/DateTime/common.js +6 -0
  225. package/lib/DateTime/constants.js +1 -0
  226. package/lib/DateTime/dateFormatUtils/dateFormat.js +184 -122
  227. package/lib/DateTime/dateFormatUtils/dateFormats.js +0 -1
  228. package/lib/DateTime/dateFormatUtils/dayChange.js +14 -7
  229. package/lib/DateTime/dateFormatUtils/index.js +74 -16
  230. package/lib/DateTime/dateFormatUtils/monthChange.js +19 -9
  231. package/lib/DateTime/dateFormatUtils/timeChange.js +55 -23
  232. package/lib/DateTime/dateFormatUtils/yearChange.js +22 -11
  233. package/lib/DateTime/index.js +2 -0
  234. package/lib/DateTime/objectUtils.js +24 -20
  235. package/lib/DateTime/props/propTypes.js +11 -1
  236. package/lib/DateTime/typeChecker.js +4 -0
  237. package/lib/DateTime/validator.js +73 -10
  238. package/lib/DropBox/DropBox.js +34 -10
  239. package/lib/DropBox/DropBoxElement/DropBoxElement.js +58 -37
  240. package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +76 -76
  241. package/lib/DropBox/DropBoxElement/css/cssJSLogic.js +41 -33
  242. package/lib/DropBox/DropBoxElement/props/propTypes.js +3 -0
  243. package/lib/DropBox/DropBoxElement/useDropboxPosCalc.js +14 -9
  244. package/lib/DropBox/__tests__/DropBox.spec.js +6 -2
  245. package/lib/DropBox/css/DropBox.module.css +6 -6
  246. package/lib/DropBox/css/cssJSLogic.js +3 -1
  247. package/lib/DropBox/props/defaultProps.js +8 -4
  248. package/lib/DropBox/props/propTypes.js +10 -4
  249. package/lib/DropDown/DropDown.js +52 -8
  250. package/lib/DropDown/DropDown.module.css +2 -2
  251. package/lib/DropDown/DropDownHeading.js +39 -20
  252. package/lib/DropDown/DropDownHeading.module.css +6 -6
  253. package/lib/DropDown/DropDownItem.js +42 -20
  254. package/lib/DropDown/DropDownItem.module.css +12 -12
  255. package/lib/DropDown/DropDownSearch.js +40 -17
  256. package/lib/DropDown/DropDownSearch.module.css +3 -3
  257. package/lib/DropDown/DropDownSeparator.js +24 -4
  258. package/lib/DropDown/DropDownSeparator.module.css +2 -2
  259. package/lib/DropDown/__tests__/DropDown.spec.js +15 -9
  260. package/lib/DropDown/__tests__/DropDownItem.spec.js +9 -4
  261. package/lib/DropDown/__tests__/DropDownSearch.spec.js +3 -0
  262. package/lib/DropDown/index.js +9 -0
  263. package/lib/DropDown/props/propTypes.js +6 -4
  264. package/lib/Heading/Heading.js +37 -15
  265. package/lib/Heading/Heading.module.css +2 -2
  266. package/lib/Heading/props/propTypes.js +3 -0
  267. package/lib/Label/Label.js +40 -22
  268. package/lib/Label/Label.module.css +5 -5
  269. package/lib/Label/__tests__/Label.spec.js +14 -1
  270. package/lib/Label/props/propTypes.js +3 -0
  271. package/lib/Layout/Box.js +31 -11
  272. package/lib/Layout/Container.js +29 -10
  273. package/lib/Layout/Layout.module.css +15 -15
  274. package/lib/Layout/__tests__/Box.spec.js +65 -49
  275. package/lib/Layout/__tests__/Container.spec.js +67 -50
  276. package/lib/Layout/index.js +3 -0
  277. package/lib/Layout/props/propTypes.js +3 -0
  278. package/lib/Layout/utils.js +10 -0
  279. package/lib/ListItem/ListContainer.js +49 -28
  280. package/lib/ListItem/ListItem.js +70 -46
  281. package/lib/ListItem/ListItem.module.css +38 -38
  282. package/lib/ListItem/ListItemWithAvatar.js +76 -49
  283. package/lib/ListItem/ListItemWithCheckBox.js +64 -39
  284. package/lib/ListItem/ListItemWithIcon.js +69 -45
  285. package/lib/ListItem/ListItemWithRadio.js +65 -41
  286. package/lib/ListItem/index.js +7 -0
  287. package/lib/ListItem/props/propTypes.js +6 -4
  288. package/lib/Modal/Modal.js +46 -11
  289. package/lib/Modal/props/propTypes.js +3 -0
  290. package/lib/MultiSelect/AdvancedGroupMultiSelect.js +295 -167
  291. package/lib/MultiSelect/AdvancedMultiSelect.js +203 -125
  292. package/lib/MultiSelect/EmptyState.js +46 -25
  293. package/lib/MultiSelect/MultiSelect.js +324 -206
  294. package/lib/MultiSelect/MultiSelect.module.css +31 -31
  295. package/lib/MultiSelect/MultiSelectHeader.js +31 -9
  296. package/lib/MultiSelect/MultiSelectWithAvatar.js +106 -64
  297. package/lib/MultiSelect/SelectedOptions.js +44 -18
  298. package/lib/MultiSelect/SelectedOptions.module.css +5 -5
  299. package/lib/MultiSelect/Suggestions.js +65 -33
  300. package/lib/MultiSelect/__tests__/MultiSelect.spec.js +86 -75
  301. package/lib/MultiSelect/index.js +5 -0
  302. package/lib/MultiSelect/props/defaultProps.js +2 -0
  303. package/lib/MultiSelect/props/propTypes.js +5 -0
  304. package/lib/PopOver/PopOver.js +95 -49
  305. package/lib/PopOver/__tests__/PopOver.spec.js +4 -1
  306. package/lib/PopOver/index.js +4 -0
  307. package/lib/PopOver/props/propTypes.js +3 -0
  308. package/lib/Popup/Popup.js +159 -82
  309. package/lib/Popup/__tests__/Popup.spec.js +44 -9
  310. package/lib/Popup/viewPort.js +28 -14
  311. package/lib/Provider/AvatarSize.js +4 -0
  312. package/lib/Provider/Config.js +2 -0
  313. package/lib/Provider/CssProvider.js +4 -0
  314. package/lib/Provider/IdProvider.js +17 -6
  315. package/lib/Provider/LibraryContext.js +35 -15
  316. package/lib/Provider/LibraryContextInit.js +4 -0
  317. package/lib/Provider/NumberGenerator/NumberGenerator.js +44 -15
  318. package/lib/Provider/ZindexProvider.js +15 -3
  319. package/lib/Provider/index.js +5 -0
  320. package/lib/Radio/Radio.js +62 -39
  321. package/lib/Radio/Radio.module.css +9 -9
  322. package/lib/Radio/__tests__/Radiospec.js +9 -5
  323. package/lib/Radio/props/propTypes.js +3 -0
  324. package/lib/Responsive/CustomResponsive.js +73 -28
  325. package/lib/Responsive/RefWrapper.js +17 -11
  326. package/lib/Responsive/ResizeComponent.js +63 -39
  327. package/lib/Responsive/ResizeObserver.js +24 -10
  328. package/lib/Responsive/Responsive.js +81 -31
  329. package/lib/Responsive/index.js +4 -0
  330. package/lib/Responsive/props/propTypes.js +3 -0
  331. package/lib/Responsive/sizeObservers.js +53 -17
  332. package/lib/Responsive/utils/index.js +11 -3
  333. package/lib/Responsive/utils/shallowCompare.js +11 -2
  334. package/lib/Responsive/windowResizeObserver.js +8 -0
  335. package/lib/ResponsiveDropBox/ResponsiveDropBox.js +45 -17
  336. package/lib/ResponsiveDropBox/ResponsiveDropBox.module.css +2 -2
  337. package/lib/ResponsiveDropBox/props/propTypes.js +3 -0
  338. package/lib/Ribbon/Ribbon.js +34 -14
  339. package/lib/Ribbon/Ribbon.module.css +46 -48
  340. package/lib/Ribbon/__tests__/Ribbon.spec.js +22 -0
  341. package/lib/Ribbon/props/propTypes.js +3 -0
  342. package/lib/RippleEffect/RippleEffect.js +18 -10
  343. package/lib/RippleEffect/props/propTypes.js +3 -0
  344. package/lib/Select/GroupSelect.js +230 -131
  345. package/lib/Select/Select.js +291 -209
  346. package/lib/Select/Select.module.css +23 -23
  347. package/lib/Select/SelectWithAvatar.js +103 -57
  348. package/lib/Select/SelectWithIcon.js +133 -77
  349. package/lib/Select/__tests__/Select.spec.js +134 -92
  350. package/lib/Select/index.js +5 -0
  351. package/lib/Select/props/defaultProps.js +5 -4
  352. package/lib/Select/props/propTypes.js +4 -0
  353. package/lib/Stencils/Stencils.js +30 -11
  354. package/lib/Stencils/Stencils.module.css +11 -11
  355. package/lib/Stencils/__tests__/Stencils.spec.js +12 -0
  356. package/lib/Stencils/props/propTypes.js +3 -0
  357. package/lib/Switch/Switch.js +57 -34
  358. package/lib/Switch/Switch.module.css +23 -23
  359. package/lib/Switch/props/propTypes.js +3 -0
  360. package/lib/Tab/Tab.js +41 -28
  361. package/lib/Tab/Tab.module.css +14 -14
  362. package/lib/Tab/TabContent.js +12 -5
  363. package/lib/Tab/TabContentWrapper.js +13 -6
  364. package/lib/Tab/TabWrapper.js +37 -19
  365. package/lib/Tab/Tabs.js +172 -98
  366. package/lib/Tab/Tabs.module.css +22 -22
  367. package/lib/Tab/__tests__/Tab.spec.js +67 -58
  368. package/lib/Tab/__tests__/TabContent.spec.js +10 -6
  369. package/lib/Tab/__tests__/TabContentWrapper.spec.js +28 -20
  370. package/lib/Tab/__tests__/TabWrapper.spec.js +12 -0
  371. package/lib/Tab/__tests__/Tabs.spec.js +53 -39
  372. package/lib/Tab/index.js +6 -0
  373. package/lib/Tab/props/propTypes.js +3 -0
  374. package/lib/Tag/Tag.js +72 -43
  375. package/lib/Tag/Tag.module.css +25 -25
  376. package/lib/Tag/__tests__/Tag.spec.js +14 -8
  377. package/lib/Tag/props/propTypes.js +3 -0
  378. package/lib/TextBox/TextBox.js +86 -60
  379. package/lib/TextBox/TextBox.module.css +9 -9
  380. package/lib/TextBox/__tests__/TextBox.spec.js +14 -4
  381. package/lib/TextBox/props/propTypes.js +6 -4
  382. package/lib/TextBoxIcon/TextBoxIcon.js +79 -52
  383. package/lib/TextBoxIcon/TextBoxIcon.module.css +7 -7
  384. package/lib/TextBoxIcon/__tests__/TextBoxIcon.spec.js +14 -4
  385. package/lib/TextBoxIcon/props/propTypes.js +3 -0
  386. package/lib/Textarea/Textarea.js +55 -30
  387. package/lib/Textarea/Textarea.module.css +21 -21
  388. package/lib/Textarea/__tests__/Textarea.spec.js +14 -2
  389. package/lib/Textarea/props/propTypes.js +3 -0
  390. package/lib/Tooltip/Tooltip.js +94 -31
  391. package/lib/Tooltip/Tooltip.module.css +5 -5
  392. package/lib/Tooltip/__tests__/Tooltip.spec.js +24 -3
  393. package/lib/Tooltip/props/propTypes.js +3 -0
  394. package/lib/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +40 -16
  395. package/lib/VelocityAnimation/VelocityAnimation/props/propTypes.js +3 -0
  396. package/lib/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +53 -25
  397. package/lib/VelocityAnimation/VelocityAnimationGroup/props/propTypes.js +3 -0
  398. package/lib/VelocityAnimation/index.js +3 -0
  399. package/lib/common/animation.module.css +8 -8
  400. package/lib/common/avatarsizes.module.css +16 -16
  401. package/lib/common/basicReset.module.css +3 -3
  402. package/lib/common/common.module.css +24 -24
  403. package/lib/common/customscroll.module.css +2 -2
  404. package/lib/css.js +40 -0
  405. package/lib/deprecated/AdvancedMultiSelect.module.css +18 -18
  406. package/lib/deprecated/PortalLayer/PortalLayer.js +47 -24
  407. package/lib/deprecated/PortalLayer/props/propTypes.js +3 -0
  408. package/lib/index.js +57 -0
  409. package/lib/semantic/Button/Button.js +42 -22
  410. package/lib/semantic/Button/props/propTypes.js +3 -0
  411. package/lib/semantic/Button/semanticButton.module.css +1 -1
  412. package/lib/semantic/index.js +2 -0
  413. package/lib/utils/Common.js +108 -18
  414. package/lib/utils/ContextOptimizer.js +16 -10
  415. package/lib/utils/__tests__/constructFullName.spec.js +1 -0
  416. package/lib/utils/__tests__/debounce.spec.js +3 -2
  417. package/lib/utils/__tests__/getInitial.spec.js +1 -0
  418. package/lib/utils/constructFullName.js +13 -4
  419. package/lib/utils/css/compileClassNames.js +6 -0
  420. package/lib/utils/css/mergeStyle.js +10 -7
  421. package/lib/utils/css/utils.js +8 -0
  422. package/lib/utils/datetime/common.js +32 -5
  423. package/lib/utils/debounce.js +6 -1
  424. package/lib/utils/dropDownUtils.js +176 -60
  425. package/lib/utils/dummyFunction.js +2 -0
  426. package/lib/utils/getHTMLFontSize.js +1 -0
  427. package/lib/utils/getInitial.js +6 -0
  428. package/lib/utils/index.js +4 -0
  429. package/lib/utils/scrollTo.js +2 -0
  430. package/lib/utils/shallowEqual.js +8 -0
  431. package/package.json +1 -1
@@ -9,18 +9,22 @@ export default class Accordion extends React.Component {
9
9
  };
10
10
  this.selectMenu = this.selectMenu.bind(this);
11
11
  }
12
+
12
13
  selectMenu(selectedItem) {
13
14
  let {
14
15
  onSelect,
15
16
  disableInternalState
16
17
  } = this.props;
18
+
17
19
  if (onSelect) {
18
20
  onSelect(selectedItem);
19
21
  }
22
+
20
23
  !disableInternalState && this.setState({
21
24
  selectedItem
22
25
  });
23
26
  }
27
+
24
28
  componentWillReceiveProps(nextProps) {
25
29
  if (this.props.selectedItem !== nextProps.selectedItem && !this.props.disableInternalState) {
26
30
  this.setState({
@@ -28,6 +32,7 @@ export default class Accordion extends React.Component {
28
32
  });
29
33
  }
30
34
  }
35
+
31
36
  render() {
32
37
  let {
33
38
  className,
@@ -68,11 +73,10 @@ export default class Accordion extends React.Component {
68
73
  "data-selector-id": dataSelectorId
69
74
  }, children);
70
75
  }
76
+
71
77
  }
72
78
  Accordion.propTypes = Accordion_propTypes;
73
- Accordion.defaultProps = Accordion_defaultProps;
74
-
75
- // if (__DOCS__) {
79
+ Accordion.defaultProps = Accordion_defaultProps; // if (__DOCS__) {
76
80
  // Accordion.docs = {
77
81
  // componentGroup: 'Animation',
78
82
  // folderName: 'Style Guide'
@@ -8,6 +8,7 @@ export default class AccordionItem extends React.Component {
8
8
  super(props);
9
9
  this.equalityCheck = this.equalityCheck.bind(this);
10
10
  }
11
+
11
12
  equalityCheck() {
12
13
  let {
13
14
  equalityCheck,
@@ -16,6 +17,7 @@ export default class AccordionItem extends React.Component {
16
17
  } = this.props;
17
18
  return equalityCheck ? equalityCheck(id, selectedItem) : selectedItem == id;
18
19
  }
20
+
19
21
  render() {
20
22
  let {
21
23
  id,
@@ -49,10 +51,10 @@ export default class AccordionItem extends React.Component {
49
51
  isActive: this.equalityCheck()
50
52
  }, children[1]));
51
53
  }
54
+
52
55
  }
53
56
  AccordionItem.propTypes = AccordionItem_propTypes;
54
- AccordionItem.defaultProps = AccordionItem_defaultProps;
55
- // if (__DOCS__) {
57
+ AccordionItem.defaultProps = AccordionItem_defaultProps; // if (__DOCS__) {
56
58
  // AccordionItem.docs = {
57
59
  // componentGroup: 'Animation',
58
60
  // folderName: 'Style Guide'
@@ -7,6 +7,7 @@ export default class Animation extends React.Component {
7
7
  constructor(props) {
8
8
  super(props);
9
9
  }
10
+
10
11
  render() {
11
12
  let {
12
13
  name,
@@ -120,11 +121,10 @@ export default class Animation extends React.Component {
120
121
  onExit: onExit
121
122
  }, /*#__PURE__*/React.createElement(React.Fragment, null, children));
122
123
  }
124
+
123
125
  }
124
126
  Animation.propTypes = propTypes;
125
- Animation.defaultProps = defaultProps;
126
-
127
- // if (__DOCS__) {
127
+ Animation.defaultProps = defaultProps; // if (__DOCS__) {
128
128
  // Animation.docs = {
129
129
  // componentGroup: 'Animation',
130
130
  // folderName: 'Style Guide',
@@ -1,4 +1,5 @@
1
1
  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); }
2
+
2
3
  import React from 'react';
3
4
  import { defaultProps } from './props/defaultProps';
4
5
  import { propTypes } from './props/propTypes';
@@ -30,22 +31,27 @@ export default class AppContainer extends React.Component {
30
31
  getTooltipContainer: () => this.containerElement
31
32
  });
32
33
  }
34
+
33
35
  mouseOverDispatch(e) {
34
36
  if (this.tooltipRef) {
35
37
  this.tooltipRef.handleOver(e, this.containerElement);
36
38
  }
37
39
  }
40
+
38
41
  removeTimeout() {
39
42
  if (this.timer) {
40
43
  this.timer = clearTimeout(this.timer);
41
44
  }
42
45
  }
46
+
43
47
  handleOver(e) {
44
48
  if (this.timer) {
45
49
  this.timer = clearTimeout(this.timer);
46
50
  }
51
+
47
52
  this.timer = setTimeout(() => this.mouseOverDispatch(e), this.tooltipDebounce);
48
53
  }
54
+
49
55
  getContainerRef(ref) {
50
56
  let {
51
57
  eleRef
@@ -53,9 +59,11 @@ export default class AppContainer extends React.Component {
53
59
  this.containerElement = ref;
54
60
  eleRef && eleRef(ref);
55
61
  }
62
+
56
63
  setTooltipRef(ref) {
57
64
  this.tooltipRef = ref;
58
65
  }
66
+
59
67
  componentDidMount() {
60
68
  if (this.containerElement) {
61
69
  this.containerElement.addEventListener('mouseover', this.handleOver, false);
@@ -63,6 +71,7 @@ export default class AppContainer extends React.Component {
63
71
  this.tooltipRef.observeElement();
64
72
  }
65
73
  }
74
+
66
75
  componentWillUnmount() {
67
76
  if (this.containerElement) {
68
77
  this.containerElement.removeEventListener('mouseover', this.handleOver, false);
@@ -70,6 +79,7 @@ export default class AppContainer extends React.Component {
70
79
  this.tooltipRef.unObserveElement();
71
80
  }
72
81
  }
82
+
73
83
  render() {
74
84
  let {
75
85
  className,
@@ -87,8 +97,7 @@ export default class AppContainer extends React.Component {
87
97
  ExtraProps = {}
88
98
  } = customProps;
89
99
  return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Container, _extends({
90
- className: `${style.container} ${className}`
91
- //onMouseOver={this.handleOver}
100
+ className: `${style.container} ${className}` //onMouseOver={this.handleOver}
92
101
  ,
93
102
  dataId: dataId,
94
103
  dataSelectorId: dataSelectorId,
@@ -105,11 +114,10 @@ export default class AppContainer extends React.Component {
105
114
  customClass: tooltipClass
106
115
  }, TooltipProps))));
107
116
  }
117
+
108
118
  }
109
119
  AppContainer.propTypes = propTypes;
110
- AppContainer.defaultProps = defaultProps;
111
-
112
- // if (__DOCS__) {
120
+ AppContainer.defaultProps = defaultProps; // if (__DOCS__) {
113
121
  // AppContainer.docs = {
114
122
  // componentGroup: 'Template',
115
123
  // folderName: 'Style Guide'
@@ -12,7 +12,7 @@
12
12
  font-family: var(--zd_regular);
13
13
  }
14
14
  .tooltip {
15
- height: 0;
16
- font-size: 0;
15
+ height: 0 ;
16
+ font-size: 0 ;
17
17
  /* contain:strict */
18
18
  }
@@ -1,4 +1,5 @@
1
1
  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); }
2
+
2
3
  import React from 'react';
3
4
  import { defaultProps } from './props/defaultProps';
4
5
  import { propTypes } from './props/propTypes';
@@ -17,6 +18,7 @@ eslint css-modules/no-unused-class: [2, { markAsUsed: ['circle', 'square',
17
18
  'small','medium','xmedium',"xsmall", "large", "xlarge", "primary", "secondary",
18
19
  "info","default"] }]
19
20
  */
21
+
20
22
  export default class Avatar extends React.Component {
21
23
  constructor(props) {
22
24
  super(props);
@@ -27,6 +29,7 @@ export default class Avatar extends React.Component {
27
29
  this.putValidImageURLJSON = this.putValidImageURLJSON.bind(this);
28
30
  this.getInitialByFullName = this.getInitialByFullName.bind(this);
29
31
  }
32
+
30
33
  componentDidUpdate(prevProps, prevState) {
31
34
  let {
32
35
  src
@@ -34,12 +37,14 @@ export default class Avatar extends React.Component {
34
37
  let {
35
38
  isLoaded
36
39
  } = this.state;
40
+
37
41
  if (prevProps.src !== src) {
38
42
  this.setState({
39
43
  isLoaded: !isLoaded
40
44
  });
41
45
  }
42
46
  }
47
+
43
48
  putInvalidImageURLJSON() {
44
49
  const {
45
50
  src,
@@ -49,23 +54,25 @@ export default class Avatar extends React.Component {
49
54
  isLoaded
50
55
  } = this.state;
51
56
  let _validImgArr = [...Avatar.validImageURLs];
52
- let _invalidImgArr = [...Avatar.invalidImageURLs];
53
-
54
- // if (alternateSrc) {
57
+ let _invalidImgArr = [...Avatar.invalidImageURLs]; // if (alternateSrc) {
55
58
  // _validImgArr.push(alternateSrc);
56
59
  // }
57
60
 
58
61
  const validIndex = _validImgArr.indexOf(src);
62
+
59
63
  if (validIndex !== -1) {
60
64
  _validImgArr.splice(validIndex, 1);
61
65
  }
66
+
62
67
  _invalidImgArr.push(src);
68
+
63
69
  Avatar.invalidImageURLs = _invalidImgArr;
64
70
  Avatar.validImageURLs = _validImgArr;
65
71
  this.setState({
66
72
  isLoaded: !isLoaded
67
73
  });
68
74
  }
75
+
69
76
  putValidImageURLJSON() {
70
77
  const {
71
78
  src
@@ -75,28 +82,32 @@ export default class Avatar extends React.Component {
75
82
  } = this.state;
76
83
  const validImgArr = Avatar.validImageURLs;
77
84
  const invalidImgArr = Avatar.invalidImageURLs;
85
+
78
86
  if (src && validImgArr.indexOf(src) === -1 && invalidImgArr.indexOf(src) === -1) {
79
87
  let _validImgArr = [...validImgArr];
88
+
80
89
  _validImgArr.push(src);
90
+
81
91
  Avatar.validImageURLs = _validImgArr;
82
92
  this.setState({
83
93
  isLoaded: !isLoaded
84
94
  });
85
95
  }
86
96
  }
87
-
88
97
  /* this will cause error if user name already have some space need to move firstName lastName user preference pattern*/
98
+
99
+
89
100
  getInitialByFullName() {
90
101
  let fullName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
91
102
  fullName = (fullName || '').trim();
92
103
  let nameList = fullName.split(' ');
104
+
93
105
  if (nameList.length === 1) {
94
106
  return getInitial('', nameList[0]);
95
107
  }
96
- return getInitial(nameList[0], nameList[1]);
97
- }
98
108
 
99
- // componentDidMount() {
109
+ return getInitial(nameList[0], nameList[1]);
110
+ } // componentDidMount() {
100
111
  // const { src } = this.props;
101
112
  // const validImgArr = Avatar.validImageURLs;
102
113
  // if (validImgArr.indexOf(src) === -1) {
@@ -105,6 +116,7 @@ export default class Avatar extends React.Component {
105
116
  // }
106
117
  // }
107
118
 
119
+
108
120
  render() {
109
121
  let {
110
122
  src,
@@ -135,8 +147,8 @@ export default class Avatar extends React.Component {
135
147
  let textStyle = textPalette ? style[textPalette] : palette === 'secondary' ? style.white : style.black;
136
148
  let shapeStyle = shape === 'circle' ? 'circle' : `square_${size}`;
137
149
  initial = initial || this.getInitialByFullName(name);
138
- let isInvalidImageList = Avatar.invalidImageURLs.indexOf(src) !== -1;
139
- //let isValidImageList = Avatar.validImageURLs.indexOf(src) !== -1;
150
+ let isInvalidImageList = Avatar.invalidImageURLs.indexOf(src) !== -1; //let isValidImageList = Avatar.validImageURLs.indexOf(src) !== -1;
151
+
140
152
  let showAvatar = src && !isInvalidImageList;
141
153
  let showInitial = !showAvatar || showAvatar && isInvalidImageList;
142
154
  const showAlternateAvatar = alternateSrc ? showInitial : false;
@@ -167,12 +179,12 @@ export default class Avatar extends React.Component {
167
179
  className: `${style.shadow} ${textStyle} `
168
180
  })));
169
181
  }
182
+
170
183
  }
171
184
  Avatar.defaultProps = defaultProps;
172
185
  Avatar.propTypes = propTypes;
173
186
  Avatar.invalidImageURLs = [];
174
- Avatar.validImageURLs = [];
175
- // if (__DOCS__) {
187
+ Avatar.validImageURLs = []; // if (__DOCS__) {
176
188
  // Avatar.docs = {
177
189
  // componentGroup: 'Avatar Group',
178
190
  // folderName: 'Style Guide'
@@ -1,7 +1,7 @@
1
1
  .varClass {
2
2
  /* avatar default variables */
3
3
  --avatar_text_color: var(--zdt_avatar_default_text);
4
- --avatar_font_size: 14px;
4
+ --avatar_font_size: var(--zd_font_size14);
5
5
  --avatar_bg_color: var(--zdt_avatar_default_bg);
6
6
  --avatar_border_radius: 50%;
7
7
  --avatar_border_width: 0;
@@ -37,19 +37,19 @@
37
37
 
38
38
  .shadow {
39
39
  position: absolute;
40
- height: 100%;
41
- width: 100%;
42
- top: 0;
40
+ height: 100% ;
41
+ width: 100% ;
42
+ top: 0 ;
43
43
  pointer-events: none;
44
44
  border-radius: var(--avatar_border_radius);
45
45
  }
46
46
 
47
47
  [dir=ltr] .shadow {
48
- left: 0;
48
+ left: 0 ;
49
49
  }
50
50
 
51
51
  [dir=rtl] .shadow {
52
- right: 0;
52
+ right: 0 ;
53
53
  }
54
54
 
55
55
  .shadow.black {
@@ -69,20 +69,20 @@
69
69
  }
70
70
 
71
71
  .image {
72
- width: 100%;
73
- height: 100%;
72
+ width: 100% ;
73
+ height: 100% ;
74
74
  position: absolute;
75
- top: 0;
75
+ top: 0 ;
76
76
  z-index: 0;
77
77
  border-radius: var(--avatar_border_radius);
78
78
  }
79
79
 
80
80
  [dir=ltr] .image {
81
- left: 0;
81
+ left: 0 ;
82
82
  }
83
83
 
84
84
  [dir=rtl] .image {
85
- right: 0;
85
+ right: 0 ;
86
86
  }
87
87
 
88
88
  .animate {
@@ -141,31 +141,31 @@
141
141
  }
142
142
 
143
143
  .xxsmall {
144
- --avatar_font_size: 8px;
144
+ --avatar_font_size: var(--zd_font_size8);
145
145
  }
146
146
 
147
147
  .small {
148
- --avatar_font_size: 9px;
148
+ --avatar_font_size: var(--zd_font_size9);
149
149
  }
150
150
 
151
151
  .xsmall {
152
- --avatar_font_size: 12px;
152
+ --avatar_font_size: var(--zd_font_size12);
153
153
  }
154
154
 
155
155
  .medium {
156
- --avatar_font_size: 14px;
156
+ --avatar_font_size: var(--zd_font_size14);
157
157
  }
158
158
 
159
159
  .xmedium {
160
- --avatar_font_size: 14px;
160
+ --avatar_font_size: var(--zd_font_size14);
161
161
  }
162
162
 
163
163
  .large {
164
- --avatar_font_size: 18px;
164
+ --avatar_font_size: var(--zd_font_size18);
165
165
  }
166
166
 
167
167
  .xlarge {
168
- --avatar_font_size: 28px;
168
+ --avatar_font_size: var(--zd_font_size28);
169
169
  }
170
170
 
171
171
  .white {
@@ -1,4 +1,5 @@
1
1
  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); }
2
+
2
3
  import React from 'react';
3
4
  import { defaultProps } from './props/defaultProps';
4
5
  import { propTypes } from './props/propTypes';
@@ -70,11 +71,10 @@ export default class AvatarTeam extends React.Component {
70
71
  ${style[`${size}team`]} ${customAvatarTeam}`
71
72
  }));
72
73
  }
74
+
73
75
  }
74
76
  AvatarTeam.defaultProps = defaultProps;
75
- AvatarTeam.propTypes = propTypes;
76
-
77
- // if (__DOCS__) {
77
+ AvatarTeam.propTypes = propTypes; // if (__DOCS__) {
78
78
  // AvatarTeam.docs = {
79
79
  // componentGroup: 'Avatar Group',
80
80
  // folderName: 'Style Guide',
@@ -7,18 +7,18 @@
7
7
  --avatarteam_outline_style: solid;
8
8
  --avatarteam_outline_color: var(--zdt_avatarteam_innerCircle);
9
9
  --avatarteam_bg_color: var(--zdt_avatarteam_default_bg);
10
- --avatarteam_width: 5px;
11
- --avatarteam_height: 5px;
10
+ --avatarteam_width: var(--zd_size5);
11
+ --avatarteam_height: var(--zd_size5);
12
12
  --avatarteam_border_radius: 50%;
13
13
  --avatarteam_bottom_top: initial;
14
14
  --avatarteam_bottom_left: initial;
15
15
  --avatarteam_bottom_right: initial;
16
- --avatarteam_top_top: 1px;
16
+ --avatarteam_top_top: var(--zd_size1);
17
17
  }
18
18
  .container {
19
19
  position: relative;
20
20
  display: inline-block;
21
- font-size: 0;
21
+ font-size: 0 ;
22
22
  vertical-align: middle;
23
23
  }
24
24
  .team {
@@ -38,11 +38,11 @@
38
38
  }
39
39
  [dir=ltr] .team {
40
40
  transform: translate(-50%, -50%);
41
- left: 50%;
41
+ left: 50% ;
42
42
  }
43
43
  [dir=rtl] .team {
44
44
  transform: translate(50%, -50%);
45
- right: 50%;
45
+ right: 50% ;
46
46
  }
47
47
  .nofill {
48
48
  --avatarteam_border_color: var(--zdt_avatarteam_nofill_hover_border);
@@ -68,8 +68,8 @@
68
68
  .team:before {
69
69
  position: absolute;
70
70
  content: '';
71
- height: inherit;
72
- width: inherit;
71
+ height: inherit ;
72
+ width: inherit ;
73
73
  top: var(--avatarteam_bottom_top);
74
74
  outline-width: var(--avatarteam_outline_width);
75
75
  outline-style: var(--avatarteam_outline_style);
@@ -92,18 +92,18 @@
92
92
  .smallteam,
93
93
  .xsmallteam,
94
94
  .xxsmallteam {
95
- --avatarteam_height: 3px;
96
- --avatarteam_width: 3px;
95
+ --avatarteam_height: var(--zd_size3);
96
+ --avatarteam_width: var(--zd_size3);
97
97
  }
98
98
  .mediumteam,
99
99
  .xmediumteam {
100
- --avatarteam_height: 5px;
101
- --avatarteam_width: 5px;
100
+ --avatarteam_height: var(--zd_size5);
101
+ --avatarteam_width: var(--zd_size5);
102
102
  }
103
103
  .largeteam,
104
104
  .xlargeteam {
105
- --avatarteam_height: 7px;
106
- --avatarteam_width: 7px;
105
+ --avatarteam_height: var(--zd_size7);
106
+ --avatarteam_width: var(--zd_size7);
107
107
  }
108
108
 
109
109
  .xxsmallteam {
@@ -112,78 +112,78 @@
112
112
  }
113
113
  .xxsmallteam::after,
114
114
  .xxsmallteam:before {
115
- --avatarteam_bottom_top: 13px;
115
+ --avatarteam_bottom_top: var(--zd_size13);
116
116
  }
117
117
  .xxsmallteam:after {
118
- --avatarteam_bottom_left: calc(8px * -1);
118
+ --avatarteam_bottom_left: var(--zd_sizecalc(8) * -1);
119
119
  }
120
120
  .xxsmallteam:before {
121
- --avatarteam_bottom_right: calc(8px * -1);
121
+ --avatarteam_bottom_right: var(--zd_sizecalc(8) * -1);
122
122
  }
123
123
 
124
124
 
125
125
  .smallteam::after,
126
126
  .smallteam:before {
127
- --avatarteam_bottom_top: 17px;
127
+ --avatarteam_bottom_top: var(--zd_size17);
128
128
  }
129
129
  .smallteam:after {
130
- --avatarteam_bottom_left: calc(8px * -1);
130
+ --avatarteam_bottom_left: var(--zd_sizecalc(8) * -1);
131
131
  }
132
132
  .smallteam:before {
133
- --avatarteam_bottom_right: calc(8px * -1);
133
+ --avatarteam_bottom_right: var(--zd_sizecalc(8) * -1);
134
134
  }
135
135
 
136
136
  .xsmallteam::after,
137
137
  .xsmallteam:before {
138
- --avatarteam_bottom_top: 24px;
138
+ --avatarteam_bottom_top: var(--zd_size24);
139
139
  }
140
140
  .xsmallteam:after {
141
- --avatarteam_bottom_left: calc(10px * -1);;
141
+ --avatarteam_bottom_left: var(--zd_sizecalc(10) * -1);;
142
142
  }
143
143
  .xsmallteam:before {
144
- --avatarteam_bottom_right: calc(10px * -1);;
144
+ --avatarteam_bottom_right: var(--zd_sizecalc(10) * -1);;
145
145
  }
146
146
 
147
147
  .mediumteam::after,
148
148
  .mediumteam:before {
149
- --avatarteam_bottom_top: 26px;
149
+ --avatarteam_bottom_top: var(--zd_size26);
150
150
  }
151
151
  .mediumteam:after {
152
- --avatarteam_bottom_left: calc(13px * -1);
152
+ --avatarteam_bottom_left: var(--zd_sizecalc(13) * -1);
153
153
  }
154
154
  .mediumteam:before {
155
- --avatarteam_bottom_right: calc(13px * -1);
155
+ --avatarteam_bottom_right: var(--zd_sizecalc(13) * -1);
156
156
  }
157
157
 
158
158
  .xmediumteam::after,
159
159
  .xmediumteam:before {
160
- --avatarteam_bottom_top: 30px;
160
+ --avatarteam_bottom_top: var(--zd_size30);
161
161
  }
162
162
  .xmediumteam:after {
163
- --avatarteam_bottom_left: calc(16px * -1);
163
+ --avatarteam_bottom_left: var(--zd_sizecalc(16) * -1);
164
164
  }
165
165
  .xmediumteam:before {
166
- --avatarteam_bottom_right: calc(16px * -1);
166
+ --avatarteam_bottom_right: var(--zd_sizecalc(16) * -1);
167
167
  }
168
168
 
169
169
  .largeteam::after,
170
170
  .largeteam:before {
171
- --avatarteam_bottom_top: 46px;
171
+ --avatarteam_bottom_top: var(--zd_size46);
172
172
  }
173
173
  .largeteam:after {
174
- --avatarteam_bottom_left: calc(24px * -1);
174
+ --avatarteam_bottom_left: var(--zd_sizecalc(24) * -1);
175
175
  }
176
176
  .largeteam:before {
177
- --avatarteam_bottom_right: calc(24px * -1);
177
+ --avatarteam_bottom_right: var(--zd_sizecalc(24) * -1);
178
178
  }
179
179
 
180
180
  .xlargeteam::after,
181
181
  .xlargeteam:before {
182
- --avatarteam_bottom_top: 65px;
182
+ --avatarteam_bottom_top: var(--zd_size65);
183
183
  }
184
184
  .xlargeteam:after {
185
- --avatarteam_bottom_left: calc(29px * -1);
185
+ --avatarteam_bottom_left: var(--zd_sizecalc(29) * -1);
186
186
  }
187
187
  .xlargeteam:before {
188
- --avatarteam_bottom_right: calc(29px * -1);
188
+ --avatarteam_bottom_right: var(--zd_sizecalc(29) * -1);
189
189
  }
@@ -1,4 +1,5 @@
1
1
  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); }
2
+
2
3
  import React from 'react';
3
4
  import { defaultProps } from './props/defaultProps';
4
5
  import { propTypes } from './props/propTypes';
@@ -10,7 +11,9 @@ Button text and children props?
10
11
  use children for both cases
11
12
  toLowerCase check needed?
12
13
  */
14
+
13
15
  /* eslint css-modules/no-unused-class: [2, { markAsUsed: ['small','medium','large','xlarge','button_medium','button_small','primary','primaryfilled','danger','dangerfilled','plainprimary', 'plainsecondary', 'secondary', 'secondaryfilled', 'successFilled','tertiaryFilled'] }] */
16
+
14
17
  export default function Button(props) {
15
18
  let {
16
19
  text,
@@ -54,9 +57,7 @@ export default function Button(props) {
54
57
  }))));
55
58
  }
56
59
  Button.defaultProps = defaultProps;
57
- Button.propTypes = propTypes;
58
-
59
- // if (__DOCS__) {
60
+ Button.propTypes = propTypes; // if (__DOCS__) {
60
61
  // Button.docs = {
61
62
  // componentGroup: 'Form Elements',
62
63
  // folderName: 'Style Guide'