@zohodesk/components 1.0.0-temp-187 → 1.0.0-temp-189

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 (638) hide show
  1. package/.cli/propValidation_report.html +1 -1
  2. package/README.md +14 -0
  3. package/es/Accordion/Accordion.js +7 -3
  4. package/es/Accordion/AccordionItem.js +4 -2
  5. package/es/Animation/Animation.js +7 -89
  6. package/es/Animation/utils.js +83 -0
  7. package/es/AppContainer/AppContainer.js +14 -3
  8. package/es/AppContainer/AppContainer.module.css +2 -2
  9. package/es/Avatar/Avatar.js +23 -11
  10. package/es/Avatar/Avatar.module.css +18 -18
  11. package/es/AvatarTeam/AvatarTeam.js +3 -3
  12. package/es/AvatarTeam/AvatarTeam.module.css +35 -35
  13. package/es/AvatarTeam/__tests__/AvatarTeam.spec.js +1 -2
  14. package/es/Button/Button.js +4 -3
  15. package/es/Button/css/Button.module.css +70 -70
  16. package/es/Buttongroup/Buttongroup.js +3 -3
  17. package/es/Buttongroup/Buttongroup.module.css +13 -15
  18. package/es/Card/Card.js +21 -10
  19. package/es/CheckBox/CheckBox.js +5 -3
  20. package/es/CheckBox/CheckBox.module.css +15 -15
  21. package/es/DateTime/CalendarView.js +32 -20
  22. package/es/DateTime/DateTime.js +69 -6
  23. package/es/DateTime/DateTime.module.css +40 -40
  24. package/es/DateTime/DateTimePopupFooter.js +4 -1
  25. package/es/DateTime/DateTimePopupHeader.js +8 -2
  26. package/es/DateTime/DateWidget.js +98 -35
  27. package/es/DateTime/DateWidget.module.css +5 -5
  28. package/es/DateTime/DaysRow.js +4 -1
  29. package/es/DateTime/Time.js +10 -1
  30. package/es/DateTime/YearView.js +28 -4
  31. package/es/DateTime/YearView.module.css +15 -15
  32. package/es/DateTime/common.js +3 -0
  33. package/es/DateTime/constants.js +1 -0
  34. package/es/DateTime/dateFormatUtils/dateFormat.js +65 -30
  35. package/es/DateTime/dateFormatUtils/dateFormats.js +0 -1
  36. package/es/DateTime/dateFormatUtils/dayChange.js +13 -4
  37. package/es/DateTime/dateFormatUtils/index.js +31 -1
  38. package/es/DateTime/dateFormatUtils/monthChange.js +8 -0
  39. package/es/DateTime/dateFormatUtils/timeChange.js +22 -6
  40. package/es/DateTime/dateFormatUtils/yearChange.js +11 -2
  41. package/es/DateTime/objectUtils.js +14 -20
  42. package/es/DateTime/typeChecker.js +3 -0
  43. package/es/DateTime/validator.js +58 -6
  44. package/es/DropBox/DropBox.js +6 -2
  45. package/es/DropBox/DropBoxElement/DropBoxElement.js +7 -0
  46. package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +73 -76
  47. package/es/DropBox/DropBoxElement/css/cssJSLogic.js +5 -3
  48. package/es/DropBox/DropBoxElement/useDropboxPosCalc.js +3 -0
  49. package/es/DropBox/css/DropBox.module.css +6 -6
  50. package/es/DropBox/props/defaultProps.js +1 -2
  51. package/es/DropBox/props/propTypes.js +1 -2
  52. package/es/DropDown/DropDown.js +7 -1
  53. package/es/DropDown/DropDown.module.css +2 -2
  54. package/es/DropDown/DropDownHeading.js +4 -5
  55. package/es/DropDown/DropDownHeading.module.css +6 -6
  56. package/es/DropDown/DropDownItem.js +6 -0
  57. package/es/DropDown/DropDownItem.module.css +12 -12
  58. package/es/DropDown/DropDownSearch.js +4 -0
  59. package/es/DropDown/DropDownSearch.module.css +3 -3
  60. package/es/DropDown/DropDownSeparator.js +1 -0
  61. package/es/DropDown/DropDownSeparator.module.css +2 -2
  62. package/es/DropDown/props/propTypes.js +1 -2
  63. package/es/Heading/Heading.js +2 -3
  64. package/es/Heading/Heading.module.css +2 -2
  65. package/es/Label/Label.js +2 -3
  66. package/es/Label/Label.module.css +5 -5
  67. package/es/Label/__tests__/Label.spec.js +1 -2
  68. package/es/Layout/Box.js +15 -2
  69. package/es/Layout/Container.js +14 -3
  70. package/es/Layout/Layout.module.css +15 -15
  71. package/es/Layout/index.js +1 -2
  72. package/es/Layout/utils.js +1 -0
  73. package/es/ListItem/ListContainer.js +8 -3
  74. package/es/ListItem/ListItem.js +9 -3
  75. package/es/ListItem/ListItem.module.css +27 -38
  76. package/es/ListItem/ListItemWithAvatar.js +9 -3
  77. package/es/ListItem/ListItemWithCheckBox.js +7 -2
  78. package/es/ListItem/ListItemWithIcon.js +8 -3
  79. package/es/ListItem/ListItemWithRadio.js +7 -3
  80. package/es/Modal/Modal.js +28 -11
  81. package/es/MultiSelect/AdvancedGroupMultiSelect.js +89 -13
  82. package/es/MultiSelect/AdvancedMultiSelect.js +32 -9
  83. package/es/MultiSelect/EmptyState.js +2 -0
  84. package/es/MultiSelect/MobileHeader/MobileHeader.module.css +5 -5
  85. package/es/MultiSelect/MultiSelect.js +99 -30
  86. package/es/MultiSelect/MultiSelect.module.css +31 -31
  87. package/es/MultiSelect/MultiSelectHeader.js +3 -0
  88. package/es/MultiSelect/MultiSelectWithAvatar.js +10 -3
  89. package/es/MultiSelect/SelectedOptions.js +6 -3
  90. package/es/MultiSelect/SelectedOptions.module.css +5 -5
  91. package/es/MultiSelect/Suggestions.js +7 -3
  92. package/es/MultiSelect/props/propTypes.js +2 -2
  93. package/es/PopOver/PopOver.js +16 -0
  94. package/es/Popup/Popup.js +77 -24
  95. package/es/Popup/viewPort.js +16 -4
  96. package/es/Provider/IdProvider.js +10 -5
  97. package/es/Provider/LibraryContext.js +6 -4
  98. package/es/Provider/NumberGenerator/NumberGenerator.js +21 -7
  99. package/es/Provider/ZindexProvider.js +9 -2
  100. package/es/Radio/Radio.js +3 -0
  101. package/es/Radio/Radio.module.css +9 -9
  102. package/es/Responsive/CustomResponsive.js +30 -18
  103. package/es/Responsive/RefWrapper.js +6 -7
  104. package/es/Responsive/ResizeComponent.js +35 -25
  105. package/es/Responsive/ResizeObserver.js +26 -6
  106. package/es/Responsive/Responsive.js +34 -20
  107. package/es/Responsive/index.js +1 -3
  108. package/es/Responsive/sizeObservers.js +28 -7
  109. package/es/Responsive/utils/index.js +7 -5
  110. package/es/Responsive/utils/shallowCompare.js +7 -2
  111. package/es/Responsive/windowResizeObserver.js +7 -0
  112. package/es/ResponsiveDropBox/ResponsiveDropBox.js +4 -0
  113. package/es/ResponsiveDropBox/ResponsiveDropBox.module.css +2 -2
  114. package/es/ResponsiveDropBox/props/propTypes.js +1 -2
  115. package/es/Ribbon/Ribbon.js +3 -2
  116. package/es/Ribbon/Ribbon.module.css +45 -48
  117. package/es/RippleEffect/RippleEffect.js +4 -5
  118. package/es/RippleEffect/props/defaultProps.js +1 -0
  119. package/es/RippleEffect/props/propTypes.js +1 -0
  120. package/es/Select/GroupSelect.js +58 -14
  121. package/es/Select/Select.js +79 -33
  122. package/es/Select/Select.module.css +23 -23
  123. package/es/Select/SelectWithAvatar.js +17 -4
  124. package/es/Select/SelectWithIcon.js +46 -5
  125. package/es/Select/props/propTypes.js +2 -2
  126. package/es/Stencils/Stencils.js +3 -3
  127. package/es/Stencils/Stencils.module.css +11 -11
  128. package/es/Switch/Switch.js +5 -3
  129. package/es/Switch/Switch.module.css +23 -23
  130. package/es/Tab/Tab.js +4 -4
  131. package/es/Tab/Tab.module.css +14 -14
  132. package/es/Tab/TabContent.js +1 -0
  133. package/es/Tab/TabContentWrapper.js +3 -0
  134. package/es/Tab/TabWrapper.js +5 -2
  135. package/es/Tab/Tabs.js +54 -7
  136. package/es/Tab/Tabs.module.css +22 -22
  137. package/es/Tag/Tag.js +6 -3
  138. package/es/Tag/Tag.module.css +24 -25
  139. package/es/TextBox/TextBox.js +16 -3
  140. package/es/TextBox/TextBox.module.css +9 -9
  141. package/es/TextBoxIcon/TextBoxIcon.js +9 -2
  142. package/es/TextBoxIcon/TextBoxIcon.module.css +7 -7
  143. package/es/TextBoxIcon/props/propTypes.js +1 -2
  144. package/es/Textarea/Textarea.js +12 -3
  145. package/es/Textarea/Textarea.module.css +21 -21
  146. package/es/Tooltip/Tooltip.js +58 -14
  147. package/es/Tooltip/Tooltip.module.css +5 -5
  148. package/es/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +3 -2
  149. package/es/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +7 -5
  150. package/es/common/animation.module.css +8 -8
  151. package/es/common/avatarsizes.module.css +16 -16
  152. package/es/common/basicReset.module.css +3 -3
  153. package/es/common/common.module.css +24 -24
  154. package/es/common/customscroll.module.css +2 -2
  155. package/es/deprecated/PortalLayer/PortalLayer.js +25 -20
  156. package/es/semantic/Button/Button.js +3 -2
  157. package/es/semantic/Button/semanticButton.module.css +1 -1
  158. package/es/utils/Common.js +54 -9
  159. package/es/utils/ContextOptimizer.js +4 -5
  160. package/es/utils/constructFullName.js +2 -0
  161. package/es/utils/datetime/common.js +16 -5
  162. package/es/utils/debounce.js +5 -1
  163. package/es/utils/dropDownUtils.js +68 -11
  164. package/es/utils/getInitial.js +4 -0
  165. package/es/utils/shallowEqual.js +6 -0
  166. package/es/v1/Accordion/Accordion.js +4 -3
  167. package/es/v1/Accordion/AccordionItem.js +4 -2
  168. package/es/v1/Animation/Animation.js +5 -89
  169. package/es/v1/Animation/utils.js +83 -0
  170. package/es/v1/AppContainer/AppContainer.js +9 -9
  171. package/es/v1/Avatar/Avatar.js +18 -6
  172. package/es/v1/AvatarTeam/AvatarTeam.js +1 -0
  173. package/es/v1/Button/Button.js +3 -3
  174. package/es/v1/Card/Card.js +16 -8
  175. package/es/v1/CheckBox/CheckBox.js +6 -3
  176. package/es/v1/DateTime/CalendarView.js +32 -20
  177. package/es/v1/DateTime/DateTime.js +69 -6
  178. package/es/v1/DateTime/DateTimePopupFooter.js +4 -1
  179. package/es/v1/DateTime/DateTimePopupHeader.js +8 -2
  180. package/es/v1/DateTime/DateWidget.js +98 -35
  181. package/es/v1/DateTime/DaysRow.js +4 -1
  182. package/es/v1/DateTime/Time.js +10 -1
  183. package/es/v1/DateTime/YearView.js +28 -4
  184. package/es/v1/DropBox/DropBox.js +6 -2
  185. package/es/v1/DropBox/DropBoxElement/DropBoxElement.js +9 -1
  186. package/es/v1/DropBox/props/defaultProps.js +1 -2
  187. package/es/v1/DropBox/props/propTypes.js +1 -2
  188. package/es/v1/DropDown/DropDown.js +3 -0
  189. package/es/v1/DropDown/DropDownHeading.js +2 -2
  190. package/es/v1/DropDown/DropDownItem.js +5 -0
  191. package/es/v1/DropDown/DropDownSearch.js +3 -2
  192. package/es/v1/DropDown/props/propTypes.js +1 -2
  193. package/es/v1/Heading/Heading.js +1 -3
  194. package/es/v1/Layout/Box.js +15 -2
  195. package/es/v1/Layout/Container.js +14 -3
  196. package/es/v1/ListItem/ListContainer.js +8 -3
  197. package/es/v1/ListItem/ListItem.js +10 -3
  198. package/es/v1/ListItem/ListItemWithAvatar.js +9 -1
  199. package/es/v1/ListItem/ListItemWithCheckBox.js +8 -2
  200. package/es/v1/ListItem/ListItemWithIcon.js +9 -3
  201. package/es/v1/ListItem/ListItemWithRadio.js +8 -3
  202. package/es/v1/Modal/Modal.js +17 -1
  203. package/es/v1/MultiSelect/AdvancedGroupMultiSelect.js +90 -15
  204. package/es/v1/MultiSelect/AdvancedMultiSelect.js +32 -9
  205. package/es/v1/MultiSelect/EmptyState.js +2 -0
  206. package/es/v1/MultiSelect/MultiSelect.js +100 -31
  207. package/es/v1/MultiSelect/MultiSelectHeader.js +3 -0
  208. package/es/v1/MultiSelect/MultiSelectWithAvatar.js +11 -3
  209. package/es/v1/MultiSelect/SelectedOptions.js +6 -3
  210. package/es/v1/MultiSelect/Suggestions.js +7 -3
  211. package/es/v1/MultiSelect/props/propTypes.js +2 -2
  212. package/es/v1/PopOver/PopOver.js +11 -0
  213. package/es/v1/Popup/Popup.js +77 -24
  214. package/es/v1/Provider/IdProvider.js +10 -5
  215. package/es/v1/Provider/LibraryContext.js +6 -4
  216. package/es/v1/Provider/NumberGenerator/NumberGenerator.js +21 -7
  217. package/es/v1/Provider/ZindexProvider.js +9 -2
  218. package/es/v1/Radio/Radio.js +5 -2
  219. package/es/v1/Responsive/CustomResponsive.js +30 -18
  220. package/es/v1/Responsive/RefWrapper.js +6 -7
  221. package/es/v1/Responsive/ResizeComponent.js +35 -25
  222. package/es/v1/Responsive/ResizeObserver.js +26 -6
  223. package/es/v1/Responsive/Responsive.js +34 -20
  224. package/es/v1/Responsive/index.js +1 -3
  225. package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +1 -0
  226. package/es/v1/ResponsiveDropBox/props/propTypes.js +1 -2
  227. package/es/v1/RippleEffect/RippleEffect.js +3 -2
  228. package/es/v1/RippleEffect/props/defaultProps.js +1 -0
  229. package/es/v1/RippleEffect/props/propTypes.js +1 -0
  230. package/es/v1/Select/GroupSelect.js +58 -14
  231. package/es/v1/Select/Select.js +82 -38
  232. package/es/v1/Select/SelectWithAvatar.js +17 -4
  233. package/es/v1/Select/SelectWithIcon.js +46 -5
  234. package/es/v1/Select/props/propTypes.js +2 -2
  235. package/es/v1/Stencils/Stencils.js +2 -0
  236. package/es/v1/Switch/Switch.js +6 -3
  237. package/es/v1/Tab/Tab.js +3 -3
  238. package/es/v1/Tab/TabContent.js +1 -0
  239. package/es/v1/Tab/TabContentWrapper.js +11 -4
  240. package/es/v1/Tab/TabWrapper.js +5 -2
  241. package/es/v1/Tab/Tabs.js +54 -9
  242. package/es/v1/Tab/props/defaultProps.js +2 -1
  243. package/es/v1/Tab/props/propTypes.js +3 -1
  244. package/es/v1/Tab/v1Tab.module.css +14 -14
  245. package/es/v1/Tab/v1Tabs.module.css +22 -22
  246. package/es/v1/Tag/Tag.js +5 -1
  247. package/es/v1/TextBox/TextBox.js +14 -0
  248. package/es/v1/TextBoxIcon/TextBoxIcon.js +6 -2
  249. package/es/v1/TextBoxIcon/props/propTypes.js +1 -2
  250. package/es/v1/Textarea/Textarea.js +10 -3
  251. package/es/v1/Tooltip/Tooltip.js +58 -14
  252. package/es/v1/Typography/Typography.js +2 -0
  253. package/es/v1/Typography/css/Typography.module.css +31 -31
  254. package/es/v1/Typography/css/cssJSLogic.js +3 -0
  255. package/es/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +1 -2
  256. package/es/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +5 -4
  257. package/es/v1/semantic/Button/Button.js +1 -2
  258. package/lib/Accordion/Accordion.js +42 -18
  259. package/lib/Accordion/AccordionItem.js +40 -18
  260. package/lib/Accordion/index.js +3 -0
  261. package/lib/Accordion/props/propTypes.js +3 -0
  262. package/lib/Animation/Animation.js +42 -104
  263. package/lib/Animation/props/propTypes.js +3 -0
  264. package/lib/Animation/utils.js +94 -0
  265. package/lib/AppContainer/AppContainer.js +58 -20
  266. package/lib/AppContainer/AppContainer.module.css +2 -2
  267. package/lib/AppContainer/props/propTypes.js +3 -0
  268. package/lib/Avatar/Avatar.js +78 -38
  269. package/lib/Avatar/Avatar.module.css +18 -18
  270. package/lib/Avatar/__tests__/Avatar.spec.js +95 -71
  271. package/lib/Avatar/props/propTypes.js +3 -0
  272. package/lib/AvatarTeam/AvatarTeam.js +52 -30
  273. package/lib/AvatarTeam/AvatarTeam.module.css +35 -35
  274. package/lib/AvatarTeam/__tests__/AvatarTeam.spec.js +77 -61
  275. package/lib/AvatarTeam/props/propTypes.js +3 -0
  276. package/lib/Button/Button.js +33 -22
  277. package/lib/Button/__tests__/Button.spec.js +65 -48
  278. package/lib/Button/css/Button.module.css +70 -70
  279. package/lib/Button/css/cssJSLogic.js +18 -17
  280. package/lib/Button/index.js +3 -0
  281. package/lib/Button/props/defaultProps.js +2 -0
  282. package/lib/Button/props/propTypes.js +3 -0
  283. package/lib/Buttongroup/Buttongroup.js +32 -12
  284. package/lib/Buttongroup/Buttongroup.module.css +13 -15
  285. package/lib/Buttongroup/__tests__/Buttongroup.spec.js +18 -10
  286. package/lib/Buttongroup/props/propTypes.js +3 -0
  287. package/lib/Card/Card.js +102 -46
  288. package/lib/Card/index.js +4 -0
  289. package/lib/Card/props/propTypes.js +3 -0
  290. package/lib/CheckBox/CheckBox.js +71 -47
  291. package/lib/CheckBox/CheckBox.module.css +15 -15
  292. package/lib/CheckBox/props/propTypes.js +3 -0
  293. package/lib/DateTime/CalendarView.js +82 -42
  294. package/lib/DateTime/DateTime.js +244 -156
  295. package/lib/DateTime/DateTime.module.css +40 -40
  296. package/lib/DateTime/DateTimePopupFooter.js +33 -8
  297. package/lib/DateTime/DateTimePopupHeader.js +49 -17
  298. package/lib/DateTime/DateWidget.js +350 -249
  299. package/lib/DateTime/DateWidget.module.css +5 -5
  300. package/lib/DateTime/DaysRow.js +28 -5
  301. package/lib/DateTime/Time.js +75 -32
  302. package/lib/DateTime/YearView.js +76 -27
  303. package/lib/DateTime/YearView.module.css +15 -15
  304. package/lib/DateTime/common.js +6 -0
  305. package/lib/DateTime/constants.js +1 -0
  306. package/lib/DateTime/dateFormatUtils/dateFormat.js +187 -122
  307. package/lib/DateTime/dateFormatUtils/dateFormats.js +0 -1
  308. package/lib/DateTime/dateFormatUtils/dayChange.js +15 -7
  309. package/lib/DateTime/dateFormatUtils/index.js +73 -16
  310. package/lib/DateTime/dateFormatUtils/monthChange.js +20 -9
  311. package/lib/DateTime/dateFormatUtils/timeChange.js +54 -22
  312. package/lib/DateTime/dateFormatUtils/yearChange.js +23 -11
  313. package/lib/DateTime/index.js +2 -0
  314. package/lib/DateTime/objectUtils.js +24 -20
  315. package/lib/DateTime/props/propTypes.js +11 -1
  316. package/lib/DateTime/typeChecker.js +4 -0
  317. package/lib/DateTime/validator.js +73 -10
  318. package/lib/DropBox/DropBox.js +45 -21
  319. package/lib/DropBox/DropBoxElement/DropBoxElement.js +59 -38
  320. package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +73 -76
  321. package/lib/DropBox/DropBoxElement/css/cssJSLogic.js +42 -34
  322. package/lib/DropBox/DropBoxElement/props/propTypes.js +3 -0
  323. package/lib/DropBox/DropBoxElement/useDropboxPosCalc.js +14 -9
  324. package/lib/DropBox/css/DropBox.module.css +6 -6
  325. package/lib/DropBox/css/cssJSLogic.js +3 -1
  326. package/lib/DropBox/props/defaultProps.js +8 -4
  327. package/lib/DropBox/props/propTypes.js +10 -4
  328. package/lib/DropDown/DropDown.js +51 -5
  329. package/lib/DropDown/DropDown.module.css +2 -2
  330. package/lib/DropDown/DropDownHeading.js +39 -20
  331. package/lib/DropDown/DropDownHeading.module.css +6 -6
  332. package/lib/DropDown/DropDownItem.js +42 -20
  333. package/lib/DropDown/DropDownItem.module.css +12 -12
  334. package/lib/DropDown/DropDownSearch.js +40 -17
  335. package/lib/DropDown/DropDownSearch.module.css +3 -3
  336. package/lib/DropDown/DropDownSeparator.js +24 -4
  337. package/lib/DropDown/DropDownSeparator.module.css +2 -2
  338. package/lib/DropDown/index.js +9 -0
  339. package/lib/DropDown/props/propTypes.js +10 -4
  340. package/lib/Heading/Heading.js +37 -15
  341. package/lib/Heading/Heading.module.css +2 -2
  342. package/lib/Heading/props/propTypes.js +3 -0
  343. package/lib/Label/Label.js +41 -21
  344. package/lib/Label/Label.module.css +5 -5
  345. package/lib/Label/__tests__/Label.spec.js +48 -34
  346. package/lib/Label/props/propTypes.js +3 -0
  347. package/lib/Layout/Box.js +35 -15
  348. package/lib/Layout/Container.js +33 -14
  349. package/lib/Layout/Layout.module.css +15 -15
  350. package/lib/Layout/index.js +3 -0
  351. package/lib/Layout/props/propTypes.js +3 -0
  352. package/lib/Layout/utils.js +11 -0
  353. package/lib/ListItem/ListContainer.js +55 -30
  354. package/lib/ListItem/ListItem.js +74 -45
  355. package/lib/ListItem/ListItem.module.css +27 -38
  356. package/lib/ListItem/ListItemWithAvatar.js +80 -48
  357. package/lib/ListItem/ListItemWithCheckBox.js +70 -40
  358. package/lib/ListItem/ListItemWithIcon.js +73 -44
  359. package/lib/ListItem/ListItemWithRadio.js +71 -42
  360. package/lib/ListItem/index.js +7 -0
  361. package/lib/ListItem/props/propTypes.js +6 -4
  362. package/lib/Modal/Modal.js +45 -10
  363. package/lib/Modal/props/propTypes.js +3 -0
  364. package/lib/MultiSelect/AdvancedGroupMultiSelect.js +293 -166
  365. package/lib/MultiSelect/AdvancedMultiSelect.js +202 -125
  366. package/lib/MultiSelect/EmptyState.js +45 -24
  367. package/lib/MultiSelect/MobileHeader/MobileHeader.js +14 -5
  368. package/lib/MultiSelect/MobileHeader/MobileHeader.module.css +5 -5
  369. package/lib/MultiSelect/MobileHeader/props/propTypes.js +3 -0
  370. package/lib/MultiSelect/MultiSelect.js +333 -214
  371. package/lib/MultiSelect/MultiSelect.module.css +31 -31
  372. package/lib/MultiSelect/MultiSelectHeader.js +29 -7
  373. package/lib/MultiSelect/MultiSelectWithAvatar.js +85 -43
  374. package/lib/MultiSelect/SelectedOptions.js +43 -17
  375. package/lib/MultiSelect/SelectedOptions.module.css +5 -5
  376. package/lib/MultiSelect/Suggestions.js +64 -32
  377. package/lib/MultiSelect/index.js +5 -0
  378. package/lib/MultiSelect/props/defaultProps.js +2 -0
  379. package/lib/MultiSelect/props/propTypes.js +14 -4
  380. package/lib/PopOver/PopOver.js +94 -47
  381. package/lib/PopOver/index.js +4 -0
  382. package/lib/PopOver/props/propTypes.js +3 -0
  383. package/lib/Popup/Popup.js +158 -81
  384. package/lib/Popup/viewPort.js +28 -14
  385. package/lib/Provider/AvatarSize.js +4 -0
  386. package/lib/Provider/Config.js +2 -0
  387. package/lib/Provider/CssProvider.js +4 -0
  388. package/lib/Provider/IdProvider.js +17 -6
  389. package/lib/Provider/LibraryContext.js +35 -15
  390. package/lib/Provider/LibraryContextInit.js +4 -0
  391. package/lib/Provider/NumberGenerator/NumberGenerator.js +44 -15
  392. package/lib/Provider/ZindexProvider.js +15 -3
  393. package/lib/Provider/index.js +5 -0
  394. package/lib/Radio/Radio.js +60 -36
  395. package/lib/Radio/Radio.module.css +9 -9
  396. package/lib/Radio/__tests__/Radio.spec.js +134 -103
  397. package/lib/Radio/props/propTypes.js +3 -0
  398. package/lib/Responsive/CustomResponsive.js +73 -29
  399. package/lib/Responsive/RefWrapper.js +17 -11
  400. package/lib/Responsive/ResizeComponent.js +62 -36
  401. package/lib/Responsive/ResizeObserver.js +24 -10
  402. package/lib/Responsive/Responsive.js +80 -30
  403. package/lib/Responsive/index.js +4 -0
  404. package/lib/Responsive/props/propTypes.js +3 -0
  405. package/lib/Responsive/sizeObservers.js +53 -17
  406. package/lib/Responsive/utils/index.js +11 -3
  407. package/lib/Responsive/utils/shallowCompare.js +11 -2
  408. package/lib/Responsive/windowResizeObserver.js +8 -0
  409. package/lib/ResponsiveDropBox/ResponsiveDropBox.js +45 -17
  410. package/lib/ResponsiveDropBox/ResponsiveDropBox.module.css +2 -2
  411. package/lib/ResponsiveDropBox/props/propTypes.js +9 -4
  412. package/lib/Ribbon/Ribbon.js +33 -13
  413. package/lib/Ribbon/Ribbon.module.css +45 -48
  414. package/lib/Ribbon/__tests__/Ribbon.spec.js +24 -14
  415. package/lib/Ribbon/props/propTypes.js +3 -0
  416. package/lib/RippleEffect/RippleEffect.js +22 -13
  417. package/lib/RippleEffect/__tests__/RippleEffect.spec.js +34 -22
  418. package/lib/RippleEffect/props/defaultProps.js +1 -0
  419. package/lib/RippleEffect/props/propTypes.js +4 -0
  420. package/lib/Select/GroupSelect.js +229 -130
  421. package/lib/Select/Select.js +295 -211
  422. package/lib/Select/Select.module.css +23 -23
  423. package/lib/Select/SelectWithAvatar.js +102 -56
  424. package/lib/Select/SelectWithIcon.js +131 -76
  425. package/lib/Select/index.js +5 -0
  426. package/lib/Select/props/defaultProps.js +5 -4
  427. package/lib/Select/props/propTypes.js +10 -4
  428. package/lib/Stencils/Stencils.js +29 -10
  429. package/lib/Stencils/Stencils.module.css +11 -11
  430. package/lib/Stencils/__tests__/Stencils.spec.js +22 -13
  431. package/lib/Stencils/props/propTypes.js +3 -0
  432. package/lib/Switch/Switch.js +57 -34
  433. package/lib/Switch/Switch.module.css +23 -23
  434. package/lib/Switch/__tests__/Switch.spec.js +91 -72
  435. package/lib/Switch/props/propTypes.js +3 -0
  436. package/lib/Tab/Tab.js +40 -27
  437. package/lib/Tab/Tab.module.css +14 -14
  438. package/lib/Tab/TabContent.js +12 -5
  439. package/lib/Tab/TabContentWrapper.js +16 -8
  440. package/lib/Tab/TabWrapper.js +37 -19
  441. package/lib/Tab/Tabs.js +171 -91
  442. package/lib/Tab/Tabs.module.css +22 -22
  443. package/lib/Tab/index.js +6 -0
  444. package/lib/Tab/props/propTypes.js +3 -0
  445. package/lib/Tag/Tag.js +72 -43
  446. package/lib/Tag/Tag.module.css +24 -25
  447. package/lib/Tag/props/propTypes.js +3 -0
  448. package/lib/TextBox/TextBox.js +86 -60
  449. package/lib/TextBox/TextBox.module.css +9 -9
  450. package/lib/TextBox/props/propTypes.js +6 -4
  451. package/lib/TextBoxIcon/TextBoxIcon.js +80 -53
  452. package/lib/TextBoxIcon/TextBoxIcon.module.css +7 -7
  453. package/lib/TextBoxIcon/props/propTypes.js +9 -4
  454. package/lib/Textarea/Textarea.js +54 -29
  455. package/lib/Textarea/Textarea.module.css +21 -21
  456. package/lib/Textarea/props/propTypes.js +3 -0
  457. package/lib/Tooltip/Tooltip.js +94 -31
  458. package/lib/Tooltip/Tooltip.module.css +5 -5
  459. package/lib/Tooltip/props/propTypes.js +3 -0
  460. package/lib/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +40 -16
  461. package/lib/VelocityAnimation/VelocityAnimation/props/propTypes.js +3 -0
  462. package/lib/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +53 -25
  463. package/lib/VelocityAnimation/VelocityAnimationGroup/props/propTypes.js +3 -0
  464. package/lib/VelocityAnimation/index.js +3 -0
  465. package/lib/common/animation.module.css +8 -8
  466. package/lib/common/avatarsizes.module.css +16 -16
  467. package/lib/common/basicReset.module.css +3 -3
  468. package/lib/common/common.module.css +24 -24
  469. package/lib/common/customscroll.module.css +2 -2
  470. package/lib/css.js +40 -0
  471. package/lib/deprecated/PortalLayer/PortalLayer.js +46 -23
  472. package/lib/deprecated/PortalLayer/props/propTypes.js +3 -0
  473. package/lib/index.js +58 -0
  474. package/lib/semantic/Button/Button.js +42 -22
  475. package/lib/semantic/Button/props/propTypes.js +3 -0
  476. package/lib/semantic/Button/semanticButton.module.css +1 -1
  477. package/lib/semantic/index.js +2 -0
  478. package/lib/utils/Common.js +111 -18
  479. package/lib/utils/ContextOptimizer.js +16 -10
  480. package/lib/utils/constructFullName.js +13 -4
  481. package/lib/utils/datetime/common.js +34 -5
  482. package/lib/utils/debounce.js +6 -1
  483. package/lib/utils/dropDownUtils.js +175 -59
  484. package/lib/utils/dummyFunction.js +2 -0
  485. package/lib/utils/getHTMLFontSize.js +1 -0
  486. package/lib/utils/getInitial.js +6 -0
  487. package/lib/utils/index.js +1 -0
  488. package/lib/utils/scrollTo.js +2 -0
  489. package/lib/utils/shallowEqual.js +8 -0
  490. package/lib/v1/Accordion/Accordion.js +38 -19
  491. package/lib/v1/Accordion/AccordionItem.js +23 -13
  492. package/lib/v1/Accordion/index.js +3 -0
  493. package/lib/v1/Accordion/props/propTypes.js +3 -0
  494. package/lib/v1/Animation/Animation.js +24 -100
  495. package/lib/v1/Animation/props/propTypes.js +3 -0
  496. package/lib/v1/Animation/utils.js +94 -0
  497. package/lib/v1/AppContainer/AppContainer.js +40 -23
  498. package/lib/v1/AppContainer/props/propTypes.js +3 -0
  499. package/lib/v1/Avatar/Avatar.js +68 -32
  500. package/lib/v1/Avatar/props/propTypes.js +3 -0
  501. package/lib/v1/AvatarTeam/AvatarTeam.js +32 -24
  502. package/lib/v1/AvatarTeam/props/propTypes.js +3 -0
  503. package/lib/v1/Button/Button.js +32 -22
  504. package/lib/v1/Button/props/defaultProps.js +2 -0
  505. package/lib/v1/Button/props/propTypes.js +3 -0
  506. package/lib/v1/Buttongroup/Buttongroup.js +13 -5
  507. package/lib/v1/Buttongroup/props/propTypes.js +3 -0
  508. package/lib/v1/Card/Card.js +78 -44
  509. package/lib/v1/Card/index.js +4 -0
  510. package/lib/v1/Card/props/propTypes.js +3 -0
  511. package/lib/v1/CheckBox/CheckBox.js +52 -41
  512. package/lib/v1/CheckBox/props/propTypes.js +3 -0
  513. package/lib/v1/DateTime/CalendarView.js +89 -48
  514. package/lib/v1/DateTime/DateTime.js +246 -158
  515. package/lib/v1/DateTime/DateTimePopupFooter.js +33 -8
  516. package/lib/v1/DateTime/DateTimePopupHeader.js +49 -17
  517. package/lib/v1/DateTime/DateWidget.js +352 -251
  518. package/lib/v1/DateTime/DaysRow.js +28 -5
  519. package/lib/v1/DateTime/Time.js +75 -32
  520. package/lib/v1/DateTime/YearView.js +76 -27
  521. package/lib/v1/DateTime/index.js +2 -0
  522. package/lib/v1/DateTime/props/propTypes.js +11 -1
  523. package/lib/v1/DropBox/DropBox.js +45 -21
  524. package/lib/v1/DropBox/DropBoxElement/DropBoxElement.js +61 -39
  525. package/lib/v1/DropBox/DropBoxElement/props/propTypes.js +3 -0
  526. package/lib/v1/DropBox/props/defaultProps.js +8 -4
  527. package/lib/v1/DropBox/props/propTypes.js +10 -4
  528. package/lib/v1/DropDown/DropDown.js +23 -3
  529. package/lib/v1/DropDown/DropDownHeading.js +20 -13
  530. package/lib/v1/DropDown/DropDownItem.js +26 -11
  531. package/lib/v1/DropDown/DropDownSearch.js +28 -16
  532. package/lib/v1/DropDown/DropDownSeparator.js +7 -1
  533. package/lib/v1/DropDown/props/propTypes.js +10 -4
  534. package/lib/v1/Heading/Heading.js +19 -14
  535. package/lib/v1/Heading/props/propTypes.js +3 -0
  536. package/lib/v1/Label/Label.js +22 -14
  537. package/lib/v1/Label/props/propTypes.js +3 -0
  538. package/lib/v1/Layout/Box.js +35 -15
  539. package/lib/v1/Layout/Container.js +33 -14
  540. package/lib/v1/Layout/index.js +3 -0
  541. package/lib/v1/Layout/props/propTypes.js +3 -0
  542. package/lib/v1/ListItem/ListContainer.js +55 -30
  543. package/lib/v1/ListItem/ListItem.js +53 -38
  544. package/lib/v1/ListItem/ListItemWithAvatar.js +62 -39
  545. package/lib/v1/ListItem/ListItemWithCheckBox.js +49 -34
  546. package/lib/v1/ListItem/ListItemWithIcon.js +52 -37
  547. package/lib/v1/ListItem/ListItemWithRadio.js +49 -35
  548. package/lib/v1/ListItem/index.js +7 -0
  549. package/lib/v1/ListItem/props/propTypes.js +6 -4
  550. package/lib/v1/Modal/Modal.js +46 -9
  551. package/lib/v1/Modal/props/propTypes.js +3 -0
  552. package/lib/v1/MultiSelect/AdvancedGroupMultiSelect.js +294 -168
  553. package/lib/v1/MultiSelect/AdvancedMultiSelect.js +202 -125
  554. package/lib/v1/MultiSelect/EmptyState.js +45 -24
  555. package/lib/v1/MultiSelect/MobileHeader/MobileHeader.js +14 -5
  556. package/lib/v1/MultiSelect/MobileHeader/props/propTypes.js +3 -0
  557. package/lib/v1/MultiSelect/MultiSelect.js +335 -216
  558. package/lib/v1/MultiSelect/MultiSelectHeader.js +29 -7
  559. package/lib/v1/MultiSelect/MultiSelectWithAvatar.js +86 -43
  560. package/lib/v1/MultiSelect/SelectedOptions.js +43 -17
  561. package/lib/v1/MultiSelect/Suggestions.js +64 -32
  562. package/lib/v1/MultiSelect/index.js +5 -0
  563. package/lib/v1/MultiSelect/props/defaultProps.js +2 -0
  564. package/lib/v1/MultiSelect/props/propTypes.js +14 -4
  565. package/lib/v1/PopOver/PopOver.js +71 -40
  566. package/lib/v1/PopOver/props/propTypes.js +3 -0
  567. package/lib/v1/Popup/Popup.js +158 -81
  568. package/lib/v1/Provider/AvatarSize.js +4 -0
  569. package/lib/v1/Provider/Config.js +2 -0
  570. package/lib/v1/Provider/CssProvider.js +4 -0
  571. package/lib/v1/Provider/IdProvider.js +17 -6
  572. package/lib/v1/Provider/LibraryContext.js +35 -15
  573. package/lib/v1/Provider/LibraryContextInit.js +4 -0
  574. package/lib/v1/Provider/NumberGenerator/NumberGenerator.js +44 -15
  575. package/lib/v1/Provider/ZindexProvider.js +15 -3
  576. package/lib/v1/Provider/index.js +5 -0
  577. package/lib/v1/Radio/Radio.js +42 -32
  578. package/lib/v1/Radio/props/propTypes.js +3 -0
  579. package/lib/v1/Responsive/CustomResponsive.js +73 -29
  580. package/lib/v1/Responsive/RefWrapper.js +17 -11
  581. package/lib/v1/Responsive/ResizeComponent.js +62 -36
  582. package/lib/v1/Responsive/ResizeObserver.js +24 -10
  583. package/lib/v1/Responsive/Responsive.js +80 -30
  584. package/lib/v1/Responsive/index.js +4 -0
  585. package/lib/v1/Responsive/props/propTypes.js +3 -0
  586. package/lib/v1/ResponsiveDropBox/ResponsiveDropBox.js +27 -13
  587. package/lib/v1/ResponsiveDropBox/props/propTypes.js +9 -4
  588. package/lib/v1/Ribbon/Ribbon.js +14 -7
  589. package/lib/v1/Ribbon/props/propTypes.js +3 -0
  590. package/lib/v1/RippleEffect/RippleEffect.js +21 -10
  591. package/lib/v1/RippleEffect/props/defaultProps.js +1 -0
  592. package/lib/v1/RippleEffect/props/propTypes.js +4 -0
  593. package/lib/v1/Select/GroupSelect.js +229 -130
  594. package/lib/v1/Select/Select.js +298 -215
  595. package/lib/v1/Select/SelectWithAvatar.js +102 -56
  596. package/lib/v1/Select/SelectWithIcon.js +131 -76
  597. package/lib/v1/Select/index.js +5 -0
  598. package/lib/v1/Select/props/defaultProps.js +5 -4
  599. package/lib/v1/Select/props/propTypes.js +10 -4
  600. package/lib/v1/Stencils/Stencils.js +13 -3
  601. package/lib/v1/Stencils/props/propTypes.js +3 -0
  602. package/lib/v1/Switch/Switch.js +38 -25
  603. package/lib/v1/Switch/props/propTypes.js +3 -0
  604. package/lib/v1/Tab/Tab.js +40 -27
  605. package/lib/v1/Tab/TabContent.js +12 -5
  606. package/lib/v1/Tab/TabContentWrapper.js +21 -9
  607. package/lib/v1/Tab/TabWrapper.js +37 -19
  608. package/lib/v1/Tab/Tabs.js +170 -83
  609. package/lib/v1/Tab/index.js +6 -0
  610. package/lib/v1/Tab/props/defaultProps.js +2 -1
  611. package/lib/v1/Tab/props/propTypes.js +6 -1
  612. package/lib/v1/Tab/v1Tab.module.css +14 -14
  613. package/lib/v1/Tab/v1Tabs.module.css +22 -22
  614. package/lib/v1/Tag/Tag.js +50 -32
  615. package/lib/v1/Tag/props/propTypes.js +3 -0
  616. package/lib/v1/TextBox/TextBox.js +70 -47
  617. package/lib/v1/TextBox/props/propTypes.js +6 -4
  618. package/lib/v1/TextBoxIcon/TextBoxIcon.js +80 -55
  619. package/lib/v1/TextBoxIcon/props/propTypes.js +9 -4
  620. package/lib/v1/Textarea/Textarea.js +45 -28
  621. package/lib/v1/Textarea/props/propTypes.js +3 -0
  622. package/lib/v1/Tooltip/Tooltip.js +94 -31
  623. package/lib/v1/Tooltip/props/propTypes.js +3 -0
  624. package/lib/v1/Typography/Typography.js +26 -15
  625. package/lib/v1/Typography/css/Typography.module.css +31 -31
  626. package/lib/v1/Typography/css/cssJSLogic.js +25 -20
  627. package/lib/v1/Typography/props/propTypes.js +3 -0
  628. package/lib/v1/Typography/utils/index.js +1 -0
  629. package/lib/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +25 -12
  630. package/lib/v1/VelocityAnimation/VelocityAnimation/props/propTypes.js +3 -0
  631. package/lib/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +38 -22
  632. package/lib/v1/VelocityAnimation/VelocityAnimationGroup/props/propTypes.js +3 -0
  633. package/lib/v1/semantic/Button/Button.js +24 -18
  634. package/lib/v1/semantic/Button/props/propTypes.js +3 -0
  635. package/lib/v1/semantic/index.js +2 -0
  636. package/package.json +7 -7
  637. package/result.json +1 -1
  638. package/.DS_Store +0 -0
@@ -4,8 +4,11 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.propTypes = void 0;
7
+
7
8
  var _propTypes = _interopRequireDefault(require("prop-types"));
9
+
8
10
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
+
9
12
  var propTypes = {
10
13
  children: _propTypes["default"].node,
11
14
  $ui_className: _propTypes["default"].string,
@@ -4,6 +4,7 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.lineheightMapping = exports.letterspacingMapping = void 0;
7
+
7
8
  /* eslint-disable */
8
9
  var letterspacingMapping = {
9
10
  'inherit': 'inherit',
@@ -1,32 +1,45 @@
1
1
  "use strict";
2
2
 
3
3
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
4
5
  Object.defineProperty(exports, "__esModule", {
5
6
  value: true
6
7
  });
7
8
  exports["default"] = VelocityAnimation;
9
+
8
10
  var _react = _interopRequireWildcard(require("react"));
11
+
9
12
  var _defaultProps = require("./props/defaultProps");
13
+
10
14
  var _propTypes = require("./props/propTypes");
15
+
11
16
  var _velocityReact = require("velocity-react");
17
+
12
18
  require("velocity-animate/velocity.ui");
19
+
13
20
  var _LibraryContextInit = _interopRequireDefault(require("../../../Provider/LibraryContextInit"));
21
+
14
22
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
23
+
15
24
  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); }
25
+
16
26
  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; }
27
+
17
28
  function VelocityAnimation(props) {
18
29
  var children = props.children,
19
- name = props.name,
20
- duration = props.duration,
21
- isActive = props.isActive,
22
- runOnMount = props.runOnMount,
23
- delay = props.delay,
24
- isCustomized = props.isCustomized,
25
- needUIPack = props.needUIPack,
26
- isFlex = props.isFlex;
30
+ name = props.name,
31
+ duration = props.duration,
32
+ isActive = props.isActive,
33
+ runOnMount = props.runOnMount,
34
+ delay = props.delay,
35
+ isCustomized = props.isCustomized,
36
+ needUIPack = props.needUIPack,
37
+ isFlex = props.isFlex;
38
+
27
39
  var _ref = (0, _react.useContext)(_LibraryContextInit["default"]) || {},
28
- direction = _ref.direction,
29
- isReducedMotion = _ref.isReducedMotion;
40
+ direction = _ref.direction,
41
+ isReducedMotion = _ref.isReducedMotion;
42
+
30
43
  var enterAnimationObj = {
31
44
  fade: 'transition.fadeIn',
32
45
  slideDown: 'slideDown',
@@ -68,9 +81,9 @@ function VelocityAnimation(props) {
68
81
  interruptBehavior: "queue"
69
82
  }, children);
70
83
  }
84
+
71
85
  VelocityAnimation.defaultProps = _defaultProps.defaultProps;
72
- VelocityAnimation.propTypes = _propTypes.propTypes;
73
- // if (__DOCS__) {
86
+ VelocityAnimation.propTypes = _propTypes.propTypes; // if (__DOCS__) {
74
87
  // VelocityAnimation.docs = {
75
88
  // componentGroup: 'Animation'
76
89
  // };
@@ -4,8 +4,11 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.propTypes = void 0;
7
+
7
8
  var _propTypes = _interopRequireDefault(require("prop-types"));
9
+
8
10
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
+
9
12
  var propTypes = {
10
13
  children: _propTypes["default"].node.isRequired,
11
14
  delay: _propTypes["default"].number,
@@ -1,25 +1,38 @@
1
1
  "use strict";
2
2
 
3
3
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
4
5
  Object.defineProperty(exports, "__esModule", {
5
6
  value: true
6
7
  });
7
8
  exports["default"] = VelocityAnimationGroup;
9
+
8
10
  var _react = _interopRequireWildcard(require("react"));
11
+
9
12
  var _defaultProps = require("./props/defaultProps");
13
+
10
14
  var _propTypes = require("./props/propTypes");
15
+
11
16
  var _velocityReact = require("velocity-react");
17
+
12
18
  require("velocity-animate/velocity.ui");
19
+
13
20
  var _LibraryContextInit = _interopRequireDefault(require("../../../Provider/LibraryContextInit"));
21
+
14
22
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
23
+
15
24
  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); }
25
+
16
26
  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; }
27
+
17
28
  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; }
29
+
18
30
  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) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
20
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
21
- function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
31
+
32
+ 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; }
33
+
22
34
  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); }
35
+
23
36
  function clearProps(props) {
24
37
  var newProps = Object.assign({}, props);
25
38
  Object.keys(VelocityAnimationGroup.propTypes).forEach(function (key) {
@@ -27,26 +40,29 @@ function clearProps(props) {
27
40
  });
28
41
  return newProps;
29
42
  }
43
+
30
44
  function VelocityAnimationGroup(props) {
31
45
  var children = props.children,
32
- enterName = props.enterName,
33
- exitName = props.exitName,
34
- enterDuration = props.enterDuration,
35
- exitDuration = props.exitDuration,
36
- isActive = props.isActive,
37
- component = props.component,
38
- runOnMount = props.runOnMount,
39
- enterShowStyle = props.enterShowStyle,
40
- enterHideStyle = props.enterHideStyle,
41
- exitDelay = props.exitDelay,
42
- isFlex = props.isFlex,
43
- enterDelay = props.enterDelay,
44
- isCustomized = props.isCustomized,
45
- name = props.name,
46
- needUIPack = props.needUIPack;
46
+ enterName = props.enterName,
47
+ exitName = props.exitName,
48
+ enterDuration = props.enterDuration,
49
+ exitDuration = props.exitDuration,
50
+ isActive = props.isActive,
51
+ component = props.component,
52
+ runOnMount = props.runOnMount,
53
+ enterShowStyle = props.enterShowStyle,
54
+ enterHideStyle = props.enterHideStyle,
55
+ exitDelay = props.exitDelay,
56
+ isFlex = props.isFlex,
57
+ enterDelay = props.enterDelay,
58
+ isCustomized = props.isCustomized,
59
+ name = props.name,
60
+ needUIPack = props.needUIPack;
61
+
47
62
  var _ref = (0, _react.useContext)(_LibraryContextInit["default"]) || {},
48
- direction = _ref.direction,
49
- isReducedMotion = _ref.isReducedMotion;
63
+ direction = _ref.direction,
64
+ isReducedMotion = _ref.isReducedMotion;
65
+
50
66
  var childProps = clearProps(props);
51
67
  var enterAnimationObj = {
52
68
  fade: 'transition.fadeIn',
@@ -99,11 +115,11 @@ function VelocityAnimationGroup(props) {
99
115
  enterShowStyle: enterShowStyle
100
116
  }, childProps), isActive ? children : null);
101
117
  }
118
+
102
119
  VelocityAnimationGroup.defaultProps = _objectSpread(_objectSpread({}, _defaultProps.defaultProps), {}, {
103
120
  component: _react["default"].Fragment
104
121
  });
105
- VelocityAnimationGroup.propTypes = _propTypes.propTypes;
106
- // if (__DOCS__) {
122
+ VelocityAnimationGroup.propTypes = _propTypes.propTypes; // if (__DOCS__) {
107
123
  // VelocityAnimationGroup.docs = {
108
124
  // componentGroup: 'Animation'
109
125
  // };
@@ -4,8 +4,11 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.propTypes = void 0;
7
+
7
8
  var _propTypes = _interopRequireDefault(require("prop-types"));
9
+
8
10
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
+
9
12
  var propTypes = {
10
13
  children: _propTypes["default"].node.isRequired,
11
14
  component: _propTypes["default"].element,
@@ -4,30 +4,36 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports["default"] = Button;
7
+
7
8
  var _react = _interopRequireDefault(require("react"));
9
+
8
10
  var _defaultProps = require("./props/defaultProps");
11
+
9
12
  var _propTypes = require("./props/propTypes");
13
+
10
14
  var _semanticButtonModule = _interopRequireDefault(require("../../../semantic/Button/semanticButton.module.css"));
15
+
11
16
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
+
12
18
  function Button(props) {
13
19
  var value = props.value,
14
- type = props.type,
15
- text = props.text,
16
- title = props.title,
17
- name = props.name,
18
- autoFocus = props.autoFocus,
19
- disabled = props.disabled,
20
- ref = props.ref,
21
- dataId = props.dataId,
22
- onClick = props.onClick,
23
- children = props.children,
24
- customClass = props.customClass,
25
- a11y = props.a11y;
20
+ type = props.type,
21
+ text = props.text,
22
+ title = props.title,
23
+ name = props.name,
24
+ autoFocus = props.autoFocus,
25
+ disabled = props.disabled,
26
+ ref = props.ref,
27
+ dataId = props.dataId,
28
+ onClick = props.onClick,
29
+ children = props.children,
30
+ customClass = props.customClass,
31
+ a11y = props.a11y;
26
32
  var ariaLabel = a11y.ariaLabel,
27
- ariaHaspopup = a11y.ariaHaspopup,
28
- ariaExpanded = a11y.ariaExpanded,
29
- ariaControls = a11y.ariaControls,
30
- ariaLabelledby = a11y.ariaLabelledby;
33
+ ariaHaspopup = a11y.ariaHaspopup,
34
+ ariaExpanded = a11y.ariaExpanded,
35
+ ariaControls = a11y.ariaControls,
36
+ ariaLabelledby = a11y.ariaLabelledby;
31
37
  return /*#__PURE__*/_react["default"].createElement("button", {
32
38
  className: "".concat(_semanticButtonModule["default"].buttonReset, " ").concat(customClass),
33
39
  "aria-label": ariaLabel,
@@ -47,9 +53,9 @@ function Button(props) {
47
53
  "data-title": title
48
54
  }, children ? children : text);
49
55
  }
56
+
50
57
  Button.defaultProps = _defaultProps.defaultProps;
51
- Button.propTypes = _propTypes.propTypes;
52
- // if (__DOCS__) {
58
+ Button.propTypes = _propTypes.propTypes; // if (__DOCS__) {
53
59
  // Button.docs = {
54
60
  // componentGroup: 'semantic',
55
61
  // folderName: 'DefaultComponents'
@@ -4,8 +4,11 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.propTypes = void 0;
7
+
7
8
  var _propTypes = _interopRequireDefault(require("prop-types"));
9
+
8
10
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
+
9
12
  var propTypes = {
10
13
  autoFocus: _propTypes["default"].bool,
11
14
  children: _propTypes["default"].node,
@@ -9,5 +9,7 @@ Object.defineProperty(exports, "SemanticButton", {
9
9
  return _Button["default"];
10
10
  }
11
11
  });
12
+
12
13
  var _Button = _interopRequireDefault(require("./Button/Button"));
14
+
13
15
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/components",
3
- "version": "1.0.0-temp-187",
3
+ "version": "1.0.0-temp-189",
4
4
  "main": "es/index.js",
5
5
  "module": "es/index.js",
6
6
  "private": false,
@@ -67,10 +67,10 @@
67
67
  "@zohodesk-private/css-variable-migrator": "^1.0.7",
68
68
  "@zohodesk-private/node-plugins": "1.1.6",
69
69
  "@zohodesk-private/react-prop-validator": "1.2.1",
70
- "@zohodesk/a11y": "1.0.0-temp-9",
70
+ "@zohodesk/a11y": "2.2.0",
71
71
  "@zohodesk/docstool": "1.0.0-alpha-2",
72
- "@zohodesk/hooks": "2.0.2",
73
- "@zohodesk/icons": "1.0.27",
72
+ "@zohodesk/hooks": "2.0.3",
73
+ "@zohodesk/icons": "1.0.32",
74
74
  "@zohodesk/svg": "1.1.10",
75
75
  "@zohodesk/utils": "1.3.13",
76
76
  "@zohodesk/variables": "1.0.0",
@@ -85,14 +85,14 @@
85
85
  "selectn": "1.1.2"
86
86
  },
87
87
  "peerDependencies": {
88
- "@zohodesk/icons": "1.0.27",
88
+ "@zohodesk/icons": "1.0.32",
89
89
  "@zohodesk/variables": "1.0.0",
90
90
  "@zohodesk/svg": "1.1.10",
91
91
  "@zohodesk/virtualizer": "1.0.3",
92
92
  "velocity-react": "1.4.3",
93
93
  "react-sortable-hoc": "^0.8.3",
94
- "@zohodesk/hooks": "2.0.2",
94
+ "@zohodesk/hooks": "2.0.3",
95
95
  "@zohodesk/utils": "1.3.13",
96
- "@zohodesk/a11y": "../a11y"
96
+ "@zohodesk/a11y": "2.2.0"
97
97
  }
98
98
  }
package/result.json CHANGED
@@ -1 +1 @@
1
- {"jobDetails":{"isRunByLocal":true,"hostName":"lakshmi-zt257","platForm":"Darwin","branchName":"Selva_Accessibility_Desk_Library"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":218,"numberOfFails":0,"numberOfCases":218,"numberOfSuites":10,"endTime":1707386347981,"startTime":1707386341120,"coverageDetail":{"codeCoveragePercentage":91.98,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-19917/Documents/Git/LibraryCheck/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}}]}}}
1
+ {"jobDetails":{"isRunByLocal":true,"hostName":"karuppiah-19823","platForm":"Darwin","branchName":"ComponentPkg"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":218,"numberOfFails":0,"numberOfCases":218,"numberOfSuites":10,"endTime":1711360568087,"startTime":1711360559896,"coverageDetail":{"codeCoveragePercentage":91.98,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentPkg/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentPkg/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentPkg/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentPkg/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentPkg/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentPkg/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentPkg/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentPkg/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentPkg/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentPkg/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}}]}}}
package/.DS_Store DELETED
Binary file