@zohodesk/components 1.0.0-alpha-268 → 1.0.0-alpha-269

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 (477) hide show
  1. package/README.md +1208 -1204
  2. package/es/Accordion/Accordion.js +7 -3
  3. package/es/Accordion/AccordionItem.js +4 -2
  4. package/es/Animation/Animation.js +3 -3
  5. package/es/AppContainer/AppContainer.js +13 -5
  6. package/es/AppContainer/AppContainer.module.css +18 -18
  7. package/es/Avatar/Avatar.js +32 -20
  8. package/es/Avatar/Avatar.module.css +175 -175
  9. package/es/Avatar/__tests__/__snapshots__/Avatar.spec.js.snap +288 -288
  10. package/es/AvatarTeam/AvatarTeam.js +10 -10
  11. package/es/AvatarTeam/AvatarTeam.module.css +189 -188
  12. package/es/AvatarTeam/__tests__/__snapshots__/AvatarTeam.spec.js.snap +226 -226
  13. package/es/Button/Button.js +8 -7
  14. package/es/Button/css/Button.module.css +525 -524
  15. package/es/Buttongroup/Buttongroup.js +4 -4
  16. package/es/Buttongroup/Buttongroup.module.css +105 -106
  17. package/es/Buttongroup/__test__/__snapshots__/Buttongroup.spec.js.snap +146 -146
  18. package/es/Card/Card.js +25 -14
  19. package/es/Card/Card.module.css +20 -20
  20. package/es/CheckBox/CheckBox.js +5 -3
  21. package/es/CheckBox/CheckBox.module.css +157 -157
  22. package/es/DateTime/CalendarView.js +32 -20
  23. package/es/DateTime/DateTime.js +68 -7
  24. package/es/DateTime/DateTime.module.css +235 -235
  25. package/es/DateTime/DateTimePopupFooter.js +4 -2
  26. package/es/DateTime/DateTimePopupHeader.js +8 -2
  27. package/es/DateTime/DateWidget.js +98 -35
  28. package/es/DateTime/DateWidget.module.css +38 -38
  29. package/es/DateTime/DaysRow.js +4 -2
  30. package/es/DateTime/Time.js +10 -2
  31. package/es/DateTime/YearView.js +28 -4
  32. package/es/DateTime/YearView.module.css +98 -98
  33. package/es/DateTime/__tests__/CalendarView.spec.js +1 -0
  34. package/es/DateTime/__tests__/DateTime.spec.js +1 -0
  35. package/es/DateTime/__tests__/DateWidget.spec.js +2 -3
  36. package/es/DateTime/common.js +3 -0
  37. package/es/DateTime/constants.js +1 -0
  38. package/es/DateTime/dateFormatUtils/dateFormat.js +63 -30
  39. package/es/DateTime/dateFormatUtils/dateFormats.js +0 -1
  40. package/es/DateTime/dateFormatUtils/dayChange.js +13 -4
  41. package/es/DateTime/dateFormatUtils/index.js +32 -2
  42. package/es/DateTime/dateFormatUtils/monthChange.js +8 -0
  43. package/es/DateTime/dateFormatUtils/timeChange.js +22 -6
  44. package/es/DateTime/dateFormatUtils/yearChange.js +11 -2
  45. package/es/DateTime/index.js +0 -0
  46. package/es/DateTime/objectUtils.js +14 -20
  47. package/es/DateTime/typeChecker.js +3 -0
  48. package/es/DateTime/validator.js +58 -6
  49. package/es/DropBox/DropBox.js +6 -2
  50. package/es/DropBox/DropBoxElement/DropBoxElement.js +7 -0
  51. package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +428 -427
  52. package/es/DropBox/DropBoxElement/css/cssJSLogic.js +5 -3
  53. package/es/DropBox/DropBoxElement/useDropboxPosCalc.js +3 -0
  54. package/es/DropBox/DropBoxPositionMapping.json +144 -144
  55. package/es/DropBox/css/DropBox.module.css +58 -58
  56. package/es/DropBox/props/defaultProps.js +1 -2
  57. package/es/DropBox/props/propTypes.js +1 -2
  58. package/es/DropDown/DropDown.js +8 -4
  59. package/es/DropDown/DropDown.module.css +5 -5
  60. package/es/DropDown/DropDownHeading.js +4 -5
  61. package/es/DropDown/DropDownHeading.module.css +53 -53
  62. package/es/DropDown/DropDownItem.js +6 -0
  63. package/es/DropDown/DropDownItem.module.css +94 -94
  64. package/es/DropDown/DropDownSearch.js +4 -0
  65. package/es/DropDown/DropDownSearch.module.css +14 -14
  66. package/es/DropDown/DropDownSeparator.js +1 -0
  67. package/es/DropDown/DropDownSeparator.module.css +7 -7
  68. package/es/DropDown/__tests__/DropDown.spec.js +1 -2
  69. package/es/Heading/Heading.js +2 -3
  70. package/es/Heading/Heading.module.css +4 -4
  71. package/es/Label/Label.js +4 -5
  72. package/es/Label/Label.module.css +52 -52
  73. package/es/Label/LabelColors.module.css +20 -20
  74. package/es/Label/__tests__/__snapshots__/Label.spec.js.snap +101 -101
  75. package/es/Layout/Box.js +13 -0
  76. package/es/Layout/Container.js +12 -1
  77. package/es/Layout/Layout.module.css +335 -335
  78. package/es/Layout/index.js +1 -2
  79. package/es/Layout/utils.js +0 -0
  80. package/es/ListItem/ListContainer.js +8 -3
  81. package/es/ListItem/ListItem.js +9 -3
  82. package/es/ListItem/ListItem.module.css +216 -216
  83. package/es/ListItem/ListItemWithAvatar.js +9 -3
  84. package/es/ListItem/ListItemWithCheckBox.js +7 -2
  85. package/es/ListItem/ListItemWithIcon.js +8 -3
  86. package/es/ListItem/ListItemWithRadio.js +7 -3
  87. package/es/Modal/Modal.js +28 -11
  88. package/es/MultiSelect/AdvancedGroupMultiSelect.js +94 -18
  89. package/es/MultiSelect/AdvancedMultiSelect.js +32 -9
  90. package/es/MultiSelect/EmptyState.js +2 -0
  91. package/es/MultiSelect/MultiSelect.js +104 -37
  92. package/es/MultiSelect/MultiSelect.module.css +206 -205
  93. package/es/MultiSelect/MultiSelectHeader.js +3 -0
  94. package/es/MultiSelect/MultiSelectWithAvatar.js +12 -6
  95. package/es/MultiSelect/SelectedOptions.js +6 -3
  96. package/es/MultiSelect/SelectedOptions.module.css +15 -15
  97. package/es/MultiSelect/Suggestions.js +7 -3
  98. package/es/MultiSelect/__tests__/MultiSelect.spec.js +4 -6
  99. package/es/MultiSelect/props/propTypes.js +2 -0
  100. package/es/PopOver/PopOver.js +18 -2
  101. package/es/PopOver/PopOver.module.css +8 -8
  102. package/es/PopOver/__tests__/PopOver.spec.js +2 -1
  103. package/es/Popup/Popup.js +77 -24
  104. package/es/Popup/PositionMapping.json +73 -73
  105. package/es/Popup/__tests__/Popup.spec.js +17 -5
  106. package/es/Popup/viewPort.js +16 -4
  107. package/es/Provider/IdProvider.js +10 -5
  108. package/es/Provider/LibraryContext.js +6 -4
  109. package/es/Provider/NumberGenerator/NumberGenerator.js +21 -7
  110. package/es/Provider/ZindexProvider.js +9 -2
  111. package/es/Radio/Radio.js +4 -2
  112. package/es/Radio/Radio.module.css +112 -112
  113. package/es/Responsive/CustomResponsive.js +30 -18
  114. package/es/Responsive/RefWrapper.js +6 -7
  115. package/es/Responsive/ResizeComponent.js +35 -25
  116. package/es/Responsive/ResizeObserver.js +26 -6
  117. package/es/Responsive/Responsive.js +34 -20
  118. package/es/Responsive/index.js +1 -3
  119. package/es/Responsive/sizeObservers.js +28 -7
  120. package/es/Responsive/utils/index.js +7 -5
  121. package/es/Responsive/utils/shallowCompare.js +7 -2
  122. package/es/Responsive/windowResizeObserver.js +7 -0
  123. package/es/ResponsiveDropBox/ResponsiveDropBox.js +4 -0
  124. package/es/ResponsiveDropBox/ResponsiveDropBox.module.css +6 -6
  125. package/es/Ribbon/Ribbon.js +3 -2
  126. package/es/Ribbon/Ribbon.module.css +454 -454
  127. package/es/Ribbon/__tests__/__snapshots__/Ribbon.spec.js.snap +163 -163
  128. package/es/RippleEffect/RippleEffect.js +1 -3
  129. package/es/RippleEffect/RippleEffect.module.css +92 -92
  130. package/es/Select/GroupSelect.js +58 -14
  131. package/es/Select/Select.js +79 -33
  132. package/es/Select/Select.module.css +108 -108
  133. package/es/Select/SelectWithAvatar.js +17 -4
  134. package/es/Select/SelectWithIcon.js +46 -5
  135. package/es/Select/__tests__/Select.spec.js +6 -8
  136. package/es/Select/props/propTypes.js +1 -0
  137. package/es/Stencils/Stencils.js +3 -3
  138. package/es/Stencils/Stencils.module.css +96 -96
  139. package/es/Stencils/__tests__/__snapshots__/Stencils.spec.js.snap +49 -49
  140. package/es/Switch/Switch.js +5 -3
  141. package/es/Switch/Switch.module.css +127 -127
  142. package/es/Tab/Tab.js +4 -4
  143. package/es/Tab/Tab.module.css +100 -100
  144. package/es/Tab/TabContent.js +1 -0
  145. package/es/Tab/TabContent.module.css +4 -4
  146. package/es/Tab/TabContentWrapper.js +2 -0
  147. package/es/Tab/TabWrapper.js +5 -2
  148. package/es/Tab/Tabs.js +71 -24
  149. package/es/Tab/Tabs.module.css +143 -143
  150. package/es/Tab/__tests__/Tab.spec.js +1 -3
  151. package/es/Tab/__tests__/TabWrapper.spec.js +1 -0
  152. package/es/Tag/Tag.js +14 -11
  153. package/es/Tag/Tag.module.css +254 -254
  154. package/es/TextBox/TextBox.js +15 -3
  155. package/es/TextBox/TextBox.module.css +158 -157
  156. package/es/TextBox/__tests__/TextBox.spec.js +1 -4
  157. package/es/TextBox/__tests__/__snapshots__/TextBox.spec.js.snap +127 -127
  158. package/es/TextBoxIcon/TextBoxIcon.js +9 -2
  159. package/es/TextBoxIcon/TextBoxIcon.module.css +79 -78
  160. package/es/TextBoxIcon/__tests__/TextBoxIcon.spec.js +2 -7
  161. package/es/TextBoxIcon/__tests__/__snapshots__/TextBoxIcon.spec.js.snap +334 -334
  162. package/es/Textarea/Textarea.js +12 -3
  163. package/es/Textarea/Textarea.module.css +139 -139
  164. package/es/Textarea/__tests__/Textarea.spec.js +2 -2
  165. package/es/Textarea/__tests__/__snapshots__/Textarea.spec.js.snap +97 -97
  166. package/es/Tooltip/Tooltip.js +58 -14
  167. package/es/Tooltip/Tooltip.module.css +140 -133
  168. package/es/Tooltip/__tests__/Tooltip.spec.js +5 -0
  169. package/es/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +3 -2
  170. package/es/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +7 -5
  171. package/es/common/a11y.module.css +3 -3
  172. package/es/common/animation.module.css +624 -624
  173. package/es/common/avatarsizes.module.css +48 -48
  174. package/es/common/basic.module.css +33 -33
  175. package/es/common/basicReset.module.css +40 -40
  176. package/es/common/boxShadow.module.css +33 -33
  177. package/es/common/common.module.css +524 -524
  178. package/es/common/customscroll.module.css +91 -89
  179. package/es/common/reset.module.css +13 -12
  180. package/es/common/transition.module.css +146 -146
  181. package/es/deprecated/AdvancedMultiSelect.module.css +126 -126
  182. package/es/deprecated/PortalLayer/PortalLayer.js +25 -20
  183. package/es/semantic/Button/Button.js +3 -2
  184. package/es/semantic/Button/semanticButton.module.css +9 -9
  185. package/es/utils/Common.js +54 -9
  186. package/es/utils/ContextOptimizer.js +4 -5
  187. package/es/utils/__tests__/debounce.spec.js +2 -2
  188. package/es/utils/constructFullName.js +2 -0
  189. package/es/utils/css/compileClassNames.js +5 -0
  190. package/es/utils/css/mergeStyle.js +7 -6
  191. package/es/utils/css/utils.js +1 -0
  192. package/es/utils/datetime/common.js +16 -5
  193. package/es/utils/debounce.js +5 -1
  194. package/es/utils/dropDownUtils.js +68 -11
  195. package/es/utils/getInitial.js +4 -0
  196. package/es/utils/shallowEqual.js +6 -0
  197. package/install.md +10 -10
  198. package/lib/Accordion/Accordion.js +42 -18
  199. package/lib/Accordion/AccordionItem.js +40 -18
  200. package/lib/Accordion/__tests__/Accordion.spec.js +3 -0
  201. package/lib/Accordion/index.js +3 -0
  202. package/lib/Accordion/props/propTypes.js +3 -0
  203. package/lib/Animation/Animation.js +38 -18
  204. package/lib/Animation/__tests__/Animation.spec.js +11 -7
  205. package/lib/Animation/props/propTypes.js +3 -0
  206. package/lib/AppContainer/AppContainer.js +56 -21
  207. package/lib/AppContainer/AppContainer.module.css +18 -18
  208. package/lib/AppContainer/props/propTypes.js +3 -0
  209. package/lib/Avatar/Avatar.js +87 -47
  210. package/lib/Avatar/Avatar.module.css +175 -175
  211. package/lib/Avatar/__tests__/Avatar.spec.js +44 -0
  212. package/lib/Avatar/__tests__/__snapshots__/Avatar.spec.js.snap +288 -288
  213. package/lib/Avatar/props/propTypes.js +3 -0
  214. package/lib/AvatarTeam/AvatarTeam.js +59 -37
  215. package/lib/AvatarTeam/AvatarTeam.module.css +189 -188
  216. package/lib/AvatarTeam/__tests__/AvatarTeam.spec.js +13 -0
  217. package/lib/AvatarTeam/__tests__/__snapshots__/AvatarTeam.spec.js.snap +226 -226
  218. package/lib/AvatarTeam/props/propTypes.js +3 -0
  219. package/lib/Button/Button.js +35 -24
  220. package/lib/Button/css/Button.module.css +525 -524
  221. package/lib/Button/css/cssJSLogic.js +18 -17
  222. package/lib/Button/index.js +3 -0
  223. package/lib/Button/props/defaultProps.js +2 -0
  224. package/lib/Button/props/propTypes.js +3 -0
  225. package/lib/Buttongroup/Buttongroup.js +33 -13
  226. package/lib/Buttongroup/Buttongroup.module.css +105 -106
  227. package/lib/Buttongroup/__test__/Buttongroup.spec.js +10 -0
  228. package/lib/Buttongroup/__test__/__snapshots__/Buttongroup.spec.js.snap +146 -146
  229. package/lib/Buttongroup/props/propTypes.js +3 -0
  230. package/lib/Card/Card.js +106 -50
  231. package/lib/Card/Card.module.css +20 -20
  232. package/lib/Card/__tests__/Card.spec.js +10 -1
  233. package/lib/Card/index.js +4 -0
  234. package/lib/Card/props/propTypes.js +3 -0
  235. package/lib/CheckBox/CheckBox.js +71 -47
  236. package/lib/CheckBox/CheckBox.module.css +157 -157
  237. package/lib/CheckBox/__tests__/CheckBox.spec.js +3 -0
  238. package/lib/CheckBox/props/propTypes.js +3 -0
  239. package/lib/DateTime/CalendarView.js +82 -42
  240. package/lib/DateTime/DateTime.js +240 -156
  241. package/lib/DateTime/DateTime.module.css +235 -235
  242. package/lib/DateTime/DateTimePopupFooter.js +31 -8
  243. package/lib/DateTime/DateTimePopupHeader.js +48 -17
  244. package/lib/DateTime/DateWidget.js +352 -250
  245. package/lib/DateTime/DateWidget.module.css +38 -38
  246. package/lib/DateTime/DaysRow.js +27 -5
  247. package/lib/DateTime/Time.js +73 -32
  248. package/lib/DateTime/YearView.js +77 -28
  249. package/lib/DateTime/YearView.module.css +98 -98
  250. package/lib/DateTime/__tests__/CalendarView.spec.js +13 -5
  251. package/lib/DateTime/__tests__/DateTime.spec.js +51 -37
  252. package/lib/DateTime/__tests__/DateWidget.spec.js +10 -8
  253. package/lib/DateTime/common.js +6 -0
  254. package/lib/DateTime/constants.js +1 -0
  255. package/lib/DateTime/dateFormatUtils/dateFormat.js +184 -122
  256. package/lib/DateTime/dateFormatUtils/dateFormats.js +0 -1
  257. package/lib/DateTime/dateFormatUtils/dayChange.js +14 -7
  258. package/lib/DateTime/dateFormatUtils/index.js +74 -16
  259. package/lib/DateTime/dateFormatUtils/monthChange.js +19 -9
  260. package/lib/DateTime/dateFormatUtils/timeChange.js +54 -22
  261. package/lib/DateTime/dateFormatUtils/yearChange.js +22 -11
  262. package/lib/DateTime/index.js +2 -0
  263. package/lib/DateTime/objectUtils.js +24 -20
  264. package/lib/DateTime/props/propTypes.js +11 -1
  265. package/lib/DateTime/typeChecker.js +4 -0
  266. package/lib/DateTime/validator.js +73 -10
  267. package/lib/DropBox/DropBox.js +34 -10
  268. package/lib/DropBox/DropBoxElement/DropBoxElement.js +58 -37
  269. package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +428 -427
  270. package/lib/DropBox/DropBoxElement/css/cssJSLogic.js +41 -33
  271. package/lib/DropBox/DropBoxElement/props/propTypes.js +3 -0
  272. package/lib/DropBox/DropBoxElement/useDropboxPosCalc.js +14 -9
  273. package/lib/DropBox/DropBoxPositionMapping.json +144 -144
  274. package/lib/DropBox/__tests__/DropBox.spec.js +6 -2
  275. package/lib/DropBox/css/DropBox.module.css +58 -58
  276. package/lib/DropBox/css/cssJSLogic.js +3 -1
  277. package/lib/DropBox/props/defaultProps.js +8 -4
  278. package/lib/DropBox/props/propTypes.js +10 -4
  279. package/lib/DropDown/DropDown.js +52 -8
  280. package/lib/DropDown/DropDown.module.css +5 -5
  281. package/lib/DropDown/DropDownHeading.js +39 -20
  282. package/lib/DropDown/DropDownHeading.module.css +53 -53
  283. package/lib/DropDown/DropDownItem.js +42 -20
  284. package/lib/DropDown/DropDownItem.module.css +94 -94
  285. package/lib/DropDown/DropDownSearch.js +40 -17
  286. package/lib/DropDown/DropDownSearch.module.css +14 -14
  287. package/lib/DropDown/DropDownSeparator.js +24 -4
  288. package/lib/DropDown/DropDownSeparator.module.css +7 -7
  289. package/lib/DropDown/__tests__/DropDown.spec.js +15 -9
  290. package/lib/DropDown/__tests__/DropDownItem.spec.js +9 -4
  291. package/lib/DropDown/__tests__/DropDownSearch.spec.js +3 -0
  292. package/lib/DropDown/index.js +9 -0
  293. package/lib/DropDown/props/propTypes.js +6 -4
  294. package/lib/Heading/Heading.js +37 -15
  295. package/lib/Heading/Heading.module.css +4 -4
  296. package/lib/Heading/props/propTypes.js +3 -0
  297. package/lib/Label/Label.js +39 -19
  298. package/lib/Label/Label.module.css +52 -52
  299. package/lib/Label/LabelColors.module.css +20 -20
  300. package/lib/Label/__tests__/Label.spec.js +14 -1
  301. package/lib/Label/__tests__/__snapshots__/Label.spec.js.snap +101 -101
  302. package/lib/Label/props/propTypes.js +3 -0
  303. package/lib/Layout/Box.js +31 -11
  304. package/lib/Layout/Container.js +29 -10
  305. package/lib/Layout/Layout.module.css +335 -335
  306. package/lib/Layout/__tests__/Box.spec.js +65 -49
  307. package/lib/Layout/__tests__/Container.spec.js +67 -50
  308. package/lib/Layout/index.js +3 -0
  309. package/lib/Layout/props/propTypes.js +3 -0
  310. package/lib/Layout/utils.js +10 -0
  311. package/lib/ListItem/ListContainer.js +48 -27
  312. package/lib/ListItem/ListItem.js +69 -45
  313. package/lib/ListItem/ListItem.module.css +216 -216
  314. package/lib/ListItem/ListItemWithAvatar.js +75 -48
  315. package/lib/ListItem/ListItemWithCheckBox.js +64 -39
  316. package/lib/ListItem/ListItemWithIcon.js +68 -44
  317. package/lib/ListItem/ListItemWithRadio.js +65 -41
  318. package/lib/ListItem/index.js +7 -0
  319. package/lib/ListItem/props/propTypes.js +6 -4
  320. package/lib/Modal/Modal.js +45 -10
  321. package/lib/Modal/props/propTypes.js +3 -0
  322. package/lib/MultiSelect/AdvancedGroupMultiSelect.js +299 -171
  323. package/lib/MultiSelect/AdvancedMultiSelect.js +202 -125
  324. package/lib/MultiSelect/EmptyState.js +45 -24
  325. package/lib/MultiSelect/MultiSelect.js +328 -211
  326. package/lib/MultiSelect/MultiSelect.module.css +206 -205
  327. package/lib/MultiSelect/MultiSelectHeader.js +30 -8
  328. package/lib/MultiSelect/MultiSelectWithAvatar.js +105 -63
  329. package/lib/MultiSelect/SelectedOptions.js +43 -17
  330. package/lib/MultiSelect/SelectedOptions.module.css +15 -15
  331. package/lib/MultiSelect/Suggestions.js +64 -32
  332. package/lib/MultiSelect/__tests__/MultiSelect.spec.js +86 -75
  333. package/lib/MultiSelect/index.js +5 -0
  334. package/lib/MultiSelect/props/defaultProps.js +2 -0
  335. package/lib/MultiSelect/props/propTypes.js +5 -0
  336. package/lib/PopOver/PopOver.js +95 -49
  337. package/lib/PopOver/PopOver.module.css +8 -8
  338. package/lib/PopOver/__tests__/PopOver.spec.js +4 -1
  339. package/lib/PopOver/index.js +4 -0
  340. package/lib/PopOver/props/propTypes.js +3 -0
  341. package/lib/Popup/Popup.js +158 -81
  342. package/lib/Popup/PositionMapping.json +73 -73
  343. package/lib/Popup/__tests__/Popup.spec.js +43 -8
  344. package/lib/Popup/viewPort.js +28 -14
  345. package/lib/Provider/AvatarSize.js +4 -0
  346. package/lib/Provider/Config.js +2 -0
  347. package/lib/Provider/CssProvider.js +4 -0
  348. package/lib/Provider/IdProvider.js +17 -6
  349. package/lib/Provider/LibraryContext.js +35 -15
  350. package/lib/Provider/LibraryContextInit.js +4 -0
  351. package/lib/Provider/NumberGenerator/NumberGenerator.js +44 -15
  352. package/lib/Provider/ZindexProvider.js +15 -3
  353. package/lib/Provider/index.js +5 -0
  354. package/lib/Radio/Radio.js +61 -38
  355. package/lib/Radio/Radio.module.css +112 -112
  356. package/lib/Radio/__tests__/Radiospec.js +9 -5
  357. package/lib/Radio/props/propTypes.js +3 -0
  358. package/lib/Responsive/CustomResponsive.js +73 -29
  359. package/lib/Responsive/RefWrapper.js +17 -11
  360. package/lib/Responsive/ResizeComponent.js +62 -36
  361. package/lib/Responsive/ResizeObserver.js +24 -10
  362. package/lib/Responsive/Responsive.js +80 -30
  363. package/lib/Responsive/index.js +4 -0
  364. package/lib/Responsive/props/propTypes.js +3 -0
  365. package/lib/Responsive/sizeObservers.js +53 -17
  366. package/lib/Responsive/utils/index.js +11 -3
  367. package/lib/Responsive/utils/shallowCompare.js +11 -2
  368. package/lib/Responsive/windowResizeObserver.js +8 -0
  369. package/lib/ResponsiveDropBox/ResponsiveDropBox.js +45 -17
  370. package/lib/ResponsiveDropBox/ResponsiveDropBox.module.css +6 -6
  371. package/lib/ResponsiveDropBox/props/propTypes.js +3 -0
  372. package/lib/Ribbon/Ribbon.js +33 -13
  373. package/lib/Ribbon/Ribbon.module.css +454 -454
  374. package/lib/Ribbon/__tests__/Ribbon.spec.js +22 -0
  375. package/lib/Ribbon/__tests__/__snapshots__/Ribbon.spec.js.snap +163 -163
  376. package/lib/Ribbon/props/propTypes.js +3 -0
  377. package/lib/RippleEffect/RippleEffect.js +18 -10
  378. package/lib/RippleEffect/RippleEffect.module.css +92 -92
  379. package/lib/RippleEffect/props/propTypes.js +3 -0
  380. package/lib/Select/GroupSelect.js +229 -130
  381. package/lib/Select/Select.js +290 -209
  382. package/lib/Select/Select.module.css +108 -108
  383. package/lib/Select/SelectWithAvatar.js +102 -56
  384. package/lib/Select/SelectWithIcon.js +132 -76
  385. package/lib/Select/__tests__/Select.spec.js +133 -91
  386. package/lib/Select/index.js +5 -0
  387. package/lib/Select/props/defaultProps.js +5 -4
  388. package/lib/Select/props/propTypes.js +4 -0
  389. package/lib/Stencils/Stencils.js +29 -10
  390. package/lib/Stencils/Stencils.module.css +96 -96
  391. package/lib/Stencils/__tests__/Stencils.spec.js +12 -0
  392. package/lib/Stencils/__tests__/__snapshots__/Stencils.spec.js.snap +49 -49
  393. package/lib/Stencils/props/propTypes.js +3 -0
  394. package/lib/Switch/Switch.js +57 -34
  395. package/lib/Switch/Switch.module.css +127 -127
  396. package/lib/Switch/props/propTypes.js +3 -0
  397. package/lib/Tab/Tab.js +40 -27
  398. package/lib/Tab/Tab.module.css +100 -100
  399. package/lib/Tab/TabContent.js +12 -5
  400. package/lib/Tab/TabContent.module.css +4 -4
  401. package/lib/Tab/TabContentWrapper.js +13 -6
  402. package/lib/Tab/TabWrapper.js +37 -19
  403. package/lib/Tab/Tabs.js +182 -102
  404. package/lib/Tab/Tabs.module.css +143 -143
  405. package/lib/Tab/__tests__/Tab.spec.js +67 -58
  406. package/lib/Tab/__tests__/TabContent.spec.js +10 -6
  407. package/lib/Tab/__tests__/TabContentWrapper.spec.js +28 -20
  408. package/lib/Tab/__tests__/TabWrapper.spec.js +12 -0
  409. package/lib/Tab/__tests__/Tabs.spec.js +53 -39
  410. package/lib/Tab/index.js +6 -0
  411. package/lib/Tab/props/propTypes.js +3 -0
  412. package/lib/Tag/Tag.js +80 -51
  413. package/lib/Tag/Tag.module.css +254 -254
  414. package/lib/Tag/__tests__/Tag.spec.js +14 -8
  415. package/lib/Tag/props/propTypes.js +3 -0
  416. package/lib/TextBox/TextBox.js +85 -59
  417. package/lib/TextBox/TextBox.module.css +158 -157
  418. package/lib/TextBox/__tests__/TextBox.spec.js +14 -4
  419. package/lib/TextBox/__tests__/__snapshots__/TextBox.spec.js.snap +127 -127
  420. package/lib/TextBox/props/propTypes.js +6 -4
  421. package/lib/TextBoxIcon/TextBoxIcon.js +79 -52
  422. package/lib/TextBoxIcon/TextBoxIcon.module.css +79 -78
  423. package/lib/TextBoxIcon/__tests__/TextBoxIcon.spec.js +14 -5
  424. package/lib/TextBoxIcon/__tests__/__snapshots__/TextBoxIcon.spec.js.snap +334 -334
  425. package/lib/TextBoxIcon/props/propTypes.js +3 -0
  426. package/lib/Textarea/Textarea.js +54 -29
  427. package/lib/Textarea/Textarea.module.css +139 -139
  428. package/lib/Textarea/__tests__/Textarea.spec.js +14 -2
  429. package/lib/Textarea/__tests__/__snapshots__/Textarea.spec.js.snap +97 -97
  430. package/lib/Textarea/props/propTypes.js +3 -0
  431. package/lib/Tooltip/Tooltip.js +94 -31
  432. package/lib/Tooltip/Tooltip.module.css +140 -133
  433. package/lib/Tooltip/__tests__/Tooltip.spec.js +24 -3
  434. package/lib/Tooltip/props/propTypes.js +3 -0
  435. package/lib/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +40 -16
  436. package/lib/VelocityAnimation/VelocityAnimation/props/propTypes.js +3 -0
  437. package/lib/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +53 -25
  438. package/lib/VelocityAnimation/VelocityAnimationGroup/props/propTypes.js +3 -0
  439. package/lib/VelocityAnimation/index.js +3 -0
  440. package/lib/common/a11y.module.css +3 -3
  441. package/lib/common/animation.module.css +624 -624
  442. package/lib/common/avatarsizes.module.css +48 -48
  443. package/lib/common/basic.module.css +33 -33
  444. package/lib/common/basicReset.module.css +40 -40
  445. package/lib/common/boxShadow.module.css +33 -33
  446. package/lib/common/common.module.css +524 -524
  447. package/lib/common/customscroll.module.css +91 -89
  448. package/lib/common/reset.module.css +13 -12
  449. package/lib/common/transition.module.css +146 -146
  450. package/lib/css.js +40 -0
  451. package/lib/deprecated/AdvancedMultiSelect.module.css +126 -126
  452. package/lib/deprecated/PortalLayer/PortalLayer.js +46 -23
  453. package/lib/deprecated/PortalLayer/props/propTypes.js +3 -0
  454. package/lib/index.js +57 -0
  455. package/lib/semantic/Button/Button.js +42 -22
  456. package/lib/semantic/Button/props/propTypes.js +3 -0
  457. package/lib/semantic/Button/semanticButton.module.css +9 -9
  458. package/lib/semantic/index.js +2 -0
  459. package/lib/utils/Common.js +108 -18
  460. package/lib/utils/ContextOptimizer.js +16 -10
  461. package/lib/utils/__tests__/constructFullName.spec.js +1 -0
  462. package/lib/utils/__tests__/debounce.spec.js +3 -2
  463. package/lib/utils/__tests__/getInitial.spec.js +1 -0
  464. package/lib/utils/constructFullName.js +13 -4
  465. package/lib/utils/css/compileClassNames.js +6 -0
  466. package/lib/utils/css/mergeStyle.js +10 -7
  467. package/lib/utils/css/utils.js +8 -0
  468. package/lib/utils/datetime/common.js +32 -5
  469. package/lib/utils/debounce.js +6 -1
  470. package/lib/utils/dropDownUtils.js +175 -59
  471. package/lib/utils/dummyFunction.js +2 -0
  472. package/lib/utils/getHTMLFontSize.js +1 -0
  473. package/lib/utils/getInitial.js +6 -0
  474. package/lib/utils/index.js +4 -0
  475. package/lib/utils/scrollTo.js +2 -0
  476. package/lib/utils/shallowEqual.js +8 -0
  477. package/package.json +123 -116
package/README.md CHANGED
@@ -1,1204 +1,1208 @@
1
- # DOT Style Guide
2
-
3
- In this Package, we Provide Some Basic Components to Build Web App
4
-
5
- - Avatar
6
- - AvatarTeam
7
- - Accordion
8
- - Animation
9
- - Button
10
- - Buttongroup
11
- - Card
12
- - CheckBox
13
- - DateTime
14
- - DropBox
15
- - Icon
16
- - Label
17
- - Layout
18
- - ListItem
19
- - MultiSelect
20
- - Popup
21
- - Radio
22
- - Responsive
23
- - Ribbon
24
- - Select
25
- - GroupSelect
26
- - Stencils
27
- - Switch
28
- - Tab
29
- - Tag
30
- - Textarea
31
- - TextBox
32
- - TextBoxIcon
33
- - Tooltip
34
-
35
- # 1.0.0-alpha-268
36
-
37
- - Contrast default variables :root selector removed
38
-
39
- # 1.0.0-alpha-267
40
-
41
- - **DropBox** - Fixed Position issue fix.
42
-
43
- - **Select** - Fixed Position prop support.
44
-
45
- # 1.0.0-alpha-266
46
-
47
- - **Button** - migrated to UCL and converted to functional component
48
- - Contrast option implemented through preprocess. Category key value added for all color variables.
49
- - BoxShadow Values Separated for Contrast
50
-
51
- # 1.0.0-alpha-265
52
-
53
- - **mergeStyle** - Logic Issue Fixed
54
- - **Tab** - State Restricted Names Check added
55
- - **cancelBubblingEffect** function added in utils/Common
56
-
57
- # 1.0.0-alpha-264
58
-
59
- - **DropBox** - customStyle renamed to customInlineStyle and migrarted to functional UCL component
60
-
61
- # 1.0.0-alpha-263
62
-
63
- - **ListItem, ListItemWithAvatar, ListItemWithCheckbox, ListItemWithIcon, ListItemWithRadio** - Line height changed 20px and Padding also changed.
64
-
65
- # 1.0.0-alpha-262
66
-
67
- - **ListItem, ListItemWithAvatar, ListItemWithCheckbox, ListItemWithIcon, ListItemWithRadio** - Added New Prop `needMultiLineText`
68
-
69
- - **MultiSelect, MultiSelectWithAvatar** - `keepSelectedOptions` prop added. When this prop is true, it won't remove selected items from the dropdown instead it highlights each selected item with tick mark.
70
-
71
- - **MultiSelectWithAvatar** - `customProps` support.
72
-
73
- # 1.0.0-alpha-261
74
-
75
- - **Tab,Tabs** - Removed offsection property from css.
76
-
77
- - compileClassNames , mergeStyle utils added.
78
-
79
- - index export object fixed.
80
-
81
- # 1.0.0-alpha-260
82
-
83
- - **TextBoxIcon** - OnClear Focus in TextBox issue Resolved.
84
-
85
- - Suggestions - `listItemCustomProps` prop support given for all suggestion to control all listitems.
86
-
87
- - `isTextSelected` - common method added in utils to know any text highlighted or not.
88
-
89
- - **Popup** - Issue fix: While click on the document, popup won't close if any text highlighted in the product.
90
-
91
- # 1.0.0-alpha-259
92
-
93
- - **Avatar**
94
-
95
- `needInnerBorder` and `needDefaultBorder` prop has been added.
96
-
97
- `xxsmall` option added for size prop.
98
-
99
- - **AvatarTeam** - `needInnerBorder`, `needBorder` and `needDefaultBorder` props has been added.
100
-
101
- # 1.0.0-alpha-258
102
-
103
- - **CheckBox** - dataSlector prop changed to `dataSelectorId`.
104
-
105
- - `dataSelectorId` prop added for all components
106
-
107
- # 1.0.0-alpha-257
108
-
109
- - **Avatar** - Avatar initial render issue and image border issue solved
110
-
111
- - **DateWidget** - `boxSize` and `onError` prop has been added.
112
-
113
- # 1.0.0-alpha-256
114
-
115
- - **Button** - Safari browser focus issue fix and `customProps` validation.
116
-
117
- - **Switch** - Click handling issue fix.
118
-
119
- - **Tabs, Tab** - Screen Reader fix.
120
-
121
- # 1.0.0-alpha-255
122
-
123
- - **CalenderView, DateTime** - Today and selected date issue fix.
124
-
125
- - `Accesssility`- Screen Reader fix.
126
-
127
- # 1.0.0-alpha-254
128
-
129
- - **AppContainer** - accessibility theme css has been added.
130
-
131
- - **Button** - `customProps` support.
132
-
133
- - **DropBox** - Focus scope navigation support.
134
-
135
- # 1.0.0-alpha-253
136
-
137
- - **Tabs, Tooltip** - If condition check added to reduce murphy error logs.
138
-
139
- - `Accesssility`- Screen Reader support for some components.
140
-
141
- # 1.0.0-alpha-252
142
-
143
- - **Select,GroupSelect,SelectWithAvatar,SelectWithIcon,MultiSelect,MultiSelectWithAvatar** - Initial Loader and Scroll End Loader added.
144
-
145
- - **componentAppearanceVariableJson**
146
-
147
- `zdt_datetime_today_bg` variable renamed as `zdt_datetime_selected_bg`
148
-
149
- `zdt_datetime_today_border` variable added.
150
-
151
- - **CalendarView** - `isToday` prop added to display today's date as a separate style.
152
-
153
- - **DateTime.module.css** - `.today` class renamed as `.active` class.
154
-
155
- # 1.0.0-alpha-251
156
-
157
- - Heading component - font reset css fix
158
-
159
- # 1.0.0-alpha-250
160
-
161
- - Heading (accessibility) - new component added
162
- - Avatar => component initial rendering optimization.
163
-
164
- # 1.0.0-alpha-249
165
-
166
- - color => secondary_border light mode color changes
167
-
168
- # 1.0.0-alpha-248
169
-
170
- - preventParentScroll props added for Box and Container
171
-
172
- # 1.0.0-alpha-247
173
-
174
- - Svg path changes
175
- # 1.0.0-alpha-246
176
-
177
- - :focus in css removed
178
- # 1.0.0-alpha-245
179
-
180
- - PureDark mode color lists added in docs
181
-
182
- # 1.0.0-alpha-244
183
-
184
- - AdvancedGroupMultiSelect , AdvancedMultiSelect => textbox flexible ui fix and duplicate css removed
185
-
186
- # 1.0.0-alpha-243
187
-
188
- - DateTime, DateWidget => Portal Id support for fixed position.
189
- - YearView => Theme Variable support for month text.
190
-
191
- # 1.0.0-alpha-242
192
-
193
- - Tag -> defaultLink palette added
194
-
195
- # 1.0.0-alpha-241
196
-
197
- - Added unobserve element condition for Tooltip.
198
-
199
- # 1.0.0-alpha-240
200
-
201
- - DateWidget input selection color variable removed
202
- - ResponsiveDropBox Implemented for all DropBox
203
-
204
- # 1.0.0-alpha-239
205
-
206
- - #999 instead of #a8b0bd color value in PureDark mode
207
- - DateTime, DateWidget => DropBox Fixed position prop support.(positionsOffset , targetOffset ,isRestrictScroll added)
208
-
209
- # 1.0.0-alpha-238
210
-
211
- - Tooltip optimization - container client rect calc is cached and only calc when resized.
212
- - Provider/Config => tooltipContainer key removed and getTooltipContainer key added
213
- - PureDark mode implemented via preprocess
214
-
215
- # 1.0.0-alpha-237
216
-
217
- - ListItem Responsive Min Height Fixed
218
- - CheckBox data-selector attribute added
219
-
220
- # 1.0.0-alpha-236
221
-
222
- - Input => autocomplete added in provider configuration
223
-
224
- # 1.0.0-alpha-235
225
-
226
- -Tooltip
227
- => data-title-wrap prop added
228
- => tooltip calculation based on root or window case added
229
-
230
- # 1.0.0-alpha-234
231
-
232
- - MultiSelect => SelectedId fix on component did update
233
-
234
- # 1.0.0-alpha-233
235
-
236
- - MultiSelect => On press tab key selecting option removed
237
-
238
- # 1.0.0-alpha-232
239
-
240
- - ListContainer => Mobile Responsive Implemented
241
-
242
- # 1.0.0-alpha-231
243
-
244
- - DropBox - Position Undefined Issue Solved
245
-
246
- # 1.0.0-alpha-230
247
-
248
- - Avatar, AdvancedGroupMultiSelect, AdvancedMultiSelect, MultiSelect, MultiSelectWithAvatar, GroupSelect, Select, SelectWithAvatar, SelectWithIcon, TextBoxIcon => Tooltip undefined case solved
249
- - Select , MultiSelect => boxSize prop added
250
-
251
- # 1.0.0-alpha-229
252
-
253
- - MultiSelect, AdvancedMultiSelect => disabledOption Clear icon handled properly
254
-
255
- # 1.0.0-alpha-228
256
-
257
- - Button => danger, primary loader color issue solved
258
-
259
- # 1.0.0-alpha-227
260
-
261
- - isReadOnly and needEffect prop added in Tag Component for read-only case
262
- - needEffect prop added for the below components: ( This props has been added for read-only case )
263
- => Advanced Group Multi Select
264
- => Advanced Multi Select
265
- => Multi Select
266
- => Multi Select With Avatar
267
- => Select With Avatar
268
- - isReadonly prop added for SelectedOption component
269
- - Read-only class added for TextBoxIcon component
270
- - Removed click action in tag multi select component for read-only case
271
- - Changed the cursor default to not-allowed in Radio component for read-only case
272
-
273
- # 1.0.0-alpha-226
274
-
275
- - ListContainer Implemented in => ListItem,ListItemWithAvatar,ListItemWithIcon,ListItemWithRadio,ListItemWithCheckBox
276
-
277
- # 1.0.0-alpha-225
278
-
279
- - Appearance css moved to assets
280
-
281
- # 1.0.0-alpha-224
282
-
283
- - css color variable updation
284
-
285
- # 1.0.0-alpha-223
286
-
287
- - bg,shadow,text,border based variables removed and renamed.
288
-
289
- # 1.0.0-alpha-222
290
-
291
- - Tabs=> isResponsive condition handled properly
292
- - Select, MultiSelect => on press tab, choose selected value then move focus to next focuable element flow implemented
293
-
294
- # 1.0.0-alpha-221
295
-
296
- - blueDefaultTheme & blueDarkTheme class name added in Blue CTATheme & ComponentTheme files
297
-
298
- # 1.0.0-alpha-220
299
-
300
- - Tooltip Delay Controlled to Improve Perf
301
-
302
- # 1.0.0-alpha-219
303
-
304
- - ContextOptimizer => ShallowEqal function issue solved
305
-
306
- # 1.0.0-alpha-218
307
-
308
- - Select => Custom props undefined issue solved
309
-
310
- # 1.0.0-alpha-217
311
-
312
- - TextBox, Multiselect, Tag missing dark palette variables moved under Themes folder file
313
-
314
- # 1.0.0-alpha-216
315
-
316
- - Select component -> customProps added -> TextBoxProps ,DropdownSearchTextBoxProps, listItemProps added
317
- - Suggestions component -> customProps added -> listItemProps
318
- - TextBox component -> customProps added
319
- - TextBoxIcon component -> customProps added -> TextBoxProps
320
-
321
- # 1.0.0-alpha-215
322
-
323
- - Select Search Regex Changed to Lowercase
324
-
325
- # 1.0.0-alpha-214
326
-
327
- - Avatar, Label, Tag, Dropdown, ListItem, Multiselect missing dark palette variables moved under Themes folder files
328
-
329
- # 1.0.0-alpha-213
330
-
331
- - AnimationVariable File import removed
332
-
333
- # 1.0.0-alpha-212
334
-
335
- - Stencils => Converted to Pure Component
336
-
337
- # 1.0.0-alpha-211
338
-
339
- - Lato font reference changed from local to Zoho URL(web fonts)
340
-
341
- # 1.0.0-alpha-210
342
-
343
- - Published but some issues are there
344
-
345
- # 1.0.0-alpha-209
346
-
347
- - Config => isReducedMotion, direction added
348
- - LibraryContext => added
349
- - transition variable implemented in all css
350
-
351
- # 1.0.0-alpha-208
352
-
353
- - Select, AdvancedGroupMultiSelect, MultiSelect => search space issue solved
354
- - Common => getSearchString fn added,
355
- - Tabs => MoreButtonProps added in customProps
356
- - Tab => customProps added
357
-
358
- # 1.0.0-alpha-207
359
-
360
- - Popup => PreventDefault On RemoveClose Removed
361
- - Tabs => getCustomDropBoxHeaderPlaceHolder props added
362
-
363
- # 1.0.0-alpha-206
364
-
365
- - LableColor Css File Separated
366
- - Select, TextBox,MultiSelect,AdvancedMultiSelect => on focusing input preventScroll disabled.
367
- - ResizeComponent Added
368
-
369
- # 1.0.0-alpha-205
370
-
371
- - MultiSelect => lowBandwidth Force Apicall issue fixed
372
-
373
- # 1.0.0-alpha-204
374
-
375
- - CTA alpha color value changed
376
-
377
- # 1.0.0-alpha-203
378
-
379
- - Default mode CTA grey color value changed
380
-
381
- # 1.0.0-alpha-202
382
-
383
- - MultiSelect - scroll top issue fix
384
-
385
- # 1.0.0-alpha-201
386
-
387
- - AccordionItem - innerclass prop has been added.
388
-
389
- # 1.0.0-alpha-200
390
-
391
- - Responsive Sender Receiver Performance Improvement
392
-
393
- # 1.0.0-alpha-199
394
-
395
- - Font size variable fixed for missed place
396
-
397
- # 1.0.0-alpha-198
398
-
399
- - Date Component optimization
400
-
401
- # 1.0.0-alpha-197
402
-
403
- - Card => isPercentageScroll prop added, scrollFetchLimit config implemented
404
- - Tabs => customProps Prop added
405
-
406
- # 1.0.0-alpha-196
407
-
408
- - AdvancedMultiSelect => SelectedOptionsLimti old and new comparsion based rerender update
409
-
410
- # 1.0.0-alpha-195
411
-
412
- - ZIndex Number Counter Issue solved
413
-
414
- # 1.0.0-alpha-194
415
-
416
- - Tab => css modified position correction and mousedown issue fixed
417
- - fitContWidth,fitContHeight class added in common
418
- - propType Declaration fixes
419
-
420
- # 1.0.0-alpha-193
421
-
422
- - VelocityAnimation => slideLeft animation added
423
- - Tabs => containerClass prop added
424
-
425
- # 1.0.0-alpha-192
426
-
427
- - CTA gray based color changes
428
-
429
- # 1.0.0-alpha-191
430
-
431
- - CustomScroll Color Fixes
432
-
433
- # 1.0.0-alpha-190
434
-
435
- - DarkMode => input placeholder color changed
436
-
437
- # 1.0.0-alpha-189
438
-
439
- - DropBox => Calculation Based Performance improvement
440
- - Popup => Popup WitthIn Popup Body Focus Issue Solved
441
-
442
- # 1.0.0-alpha-188
443
-
444
- - Popup => popup within popup open body click issue fixed
445
-
446
- # 1.0.0-alpha-187
447
-
448
- - Popup => popupGroup empty array check added
449
-
450
- # 1.0.0-alpha-186
451
-
452
- - MultiSelect - children render place changed
453
-
454
- # 1.0.0-alpha-185
455
-
456
- - DropBox => Toggle Position Issue Solved For Left Right Padding Calculation
457
-
458
- # 1.0.0-alpha-184
459
-
460
- - Palette-Based Folder Structure Changed.
461
- - data-theme changed to data-mode
462
- - data-palette changed to data-theme
463
-
464
- # 1.0.0-alpha-183
465
-
466
- - AppContainer => dataThemeAttr,dataTheme prop removed. instead customProps prop added
467
- - Palette Based Color System Implemented
468
-
469
- # 1.0.0-alpha-182
470
-
471
- - DateComponent => Safari Browser Focus Selection Issue Fixed
472
-
473
- # 1.0.0-alpha-181
474
-
475
- - MultiSelect , AdvancedMultiSelect => selection reorder issue fixed
476
- - Avatar, AvatarTeam, Checkbox, ListItem, Switch => customProps Added
477
-
478
- # 1.0.0-alpha-180
479
-
480
- - Tab => Rtl Fix
481
- - Config => idCounter, ZindexCounter, IdPrefix Added, Intial Zindex Increased to 3
482
-
483
- # 1.0.0-alpha-179
484
-
485
- - DateWidget => 24 hours HH caps placeholder issue solved
486
-
487
- # 1.0.0-alpha-178
488
-
489
- - MultiSelect => getFooter prop added
490
- - AdvancedMultiSelect => getFooter prop added
491
-
492
- # 1.0.0-alpha-177
493
-
494
- - DateWidget - PlaceHolder Lower Case Issue Solved
495
- - Tab - Hook Callback Issue Fixed
496
- - MultiSelect Empty Array Fix
497
-
498
- # 1.0.0-alpha-176
499
-
500
- - DateWidget - isHideCurrentYear,onBlur,onFocus prop added
501
-
502
- # 1.0.0-alpha-175
503
-
504
- - DateTime,DateWidget - is24Hour prop added
505
- - DateTime => isDefaultPosition prop added
506
- - Responsive Observer Performance Issue Fixed
507
-
508
- # 1.0.0-alpha-174
509
-
510
- - CheckBox - isClipped Prop added
511
-
512
- # 1.0.0-alpha-173
513
-
514
- - code-based issue fixed ( const to let)
515
-
516
- # 1.0.0-alpha-172
517
-
518
- - TextBoxIcon/TextBoxIcon.js
519
- => onClearMouseDown prop support
520
- - MultiSelect, MultiSelectWithAvatar,AdvancedMultiSelect => disabledOptions prop supported
521
-
522
- # 1.0.0-alpha-171
523
-
524
- - Dropbox => mobileWidth Configuration Hook given
525
-
526
- # 1.0.0-alpha-170
527
-
528
- - MultiSelectWithAvatar => isSearchClearOnSelect prop added
529
- - DropBox => customStyle prop added
530
- - DropDownHeading => tabIndex removed
531
-
532
- # 1.0.0-alpha-169
533
-
534
- - DateWidget => iconOnHover added and autoComplete disabled
535
- - AdvancedGroupMultiSelect => autoComplete disabled
536
- - AdvancedMultiSelect => autoComplete disabled
537
- - MultiSelect => autoComplete disabled
538
- - MultiSelectWithAvatar => isBoxPaddingNeed prop added
539
- - GroupSelect => iconOnHover prop added and tab focus issue solved
540
- - Select => iconOnHover prop added and tab focus issue solved
541
- - SelectWithAvatar => autoComplete disabled
542
- - SelectWithIcon => autoComplete disabled
543
- - TextBox => isFocus prop added
544
- - TextBoxIcon => isFocus,iconOnHover prop added
545
-
546
- # 1.0.0-alpha-168
547
-
548
- - DropBox Duplicate Portal removed
549
-
550
- # 1.0.0-alpha-167
551
-
552
- - DropBox - responsive ui fixes , isRestrictScroll,needAutoZindex prop added, needResponsive default value changed to true
553
- - Popup - customOrder prop added
554
- - ListItemWithAvatar => tick icon padding issue solved
555
-
556
- # 1.0.0-alpha-166
557
-
558
- - Tab => Border Calculation Issue Fixed
559
- - Tooltip => Position Issue Fixed
560
-
561
- # 1.0.0-alpha-165
562
-
563
- - Select -> onFocus Prop Added
564
- - Tab -> titlePosition prop added for tooltip
565
-
566
- # 1.0.0-alpha-164
567
-
568
- - Fixed Tab highlight issue.
569
-
570
- # 1.0.0-alpha-163
571
-
572
- - Fixed the bug to recalculate dimension if tab id changed
573
-
574
- # 1.0.0-alpha-162
575
-
576
- - Performance Changes added in Tab , Tooltip Components
577
- - MultiSelect, MultiSelectWithAvatar => customChildrenClass prop Added and TextBox component replaced with TextBoxWithIcon component
578
-
579
- # 1.0.0-alpha-161
580
-
581
- - Proxima Font Removed and Lato Font Added
582
-
583
- # 1.0.0-alpha-159
584
-
585
- - MultiSelect,MultiSelectWithAvatar,AdvancedGroupMultiSelect,AdvancedMultiSelect - isSearchClearOnSelect default Prop changed as true
586
- - Tooltip Box Layout Position Issue Fixed
587
- - autoTabIndex prop removed in listitem component groups
588
-
589
- # 1.0.0-alpha-158
590
-
591
- - ListItem => dataId Fix
592
- - MultiSelect => Bg color fix
593
-
594
- # 1.0.0-alpha-157
595
-
596
- - RippleEffect => needBorder prop added
597
- - Select => Children Prop added
598
- - MultiSelect,MultiSelectWithAvatar,AdvancedGroupMultiSelect,AdvancedMultiSelect - isSearchClearOnSelect prop added
599
- - ListItem,ListItemWithIcon,ListItemWithAvatar => dataId added for tickIcon
600
-
601
- # 1.0.0-alpha-156
602
-
603
- - A11y Changes
604
-
605
- # 1.0.0-alpha-156
606
-
607
- - Dark Theme Changes
608
-
609
- # 1.0.0-alpha-155
610
-
611
- - Tooltip DarkMode Theme Css Added
612
-
613
- # 1.0.0-alpha-154
614
-
615
- - isDarkMode based props removed for all components
616
- - AppContainer => Tooltip moved from Container Html
617
-
618
- # 1.0.0-alpha-153
619
-
620
- - ListItem => text-decoration fixed
621
- - AdvancedGroupMultiSelect => isGroupMultiSelect prop removed
622
- - AdvancedMultiSelect => isGroupMultiSelect removed, isBoxPaddingNeed added
623
- - MultiSelectHeader => isGroupMultiSelect removed
624
-
625
- # 1.0.0-alpha-152
626
-
627
- - A11y Changes
628
- - Theme Primary Colors Added
629
-
630
- # 1.0.0-alpha-150
631
-
632
- - Label => dark palette added
633
- - TextBox => light variant added
634
-
635
- # 1.0.0-alpha-149
636
-
637
- - Avatar,AvatarTeam =>borderOnActive,borderOnHover prop added
638
- - Tab - text decoration added
639
- - Semantic Button Css fixed
640
-
641
- # 1.0.0-alpha-148
642
-
643
- - Tag => max-width 100% added
644
- - Theme Changes in => DateTime,Tabs,AdvancedMultiSelect,RippleEffect
645
-
646
- # 1.0.0-alpha-147
647
-
648
- - currentScreenSize returned from Responsive Receiver
649
- - sticky class added in common.module.css
650
- - --zdt prefix added for theme variables
651
-
652
- # 1.0.0-alpha-146
653
-
654
- - ListItem => dataId fixes
655
- - Tag => dataId issue Fixed
656
- - DropBox => RTL fixes
657
- - VelocityAnimation => RTL fixes
658
-
659
- # 1.0.0-alpha-145
660
-
661
- - TextBoxIcon Clear Icon Color Fix
662
-
663
- # 1.0.0-alpha-144
664
-
665
- - PortalLayer Moved to deprecated folder
666
- - A11y Id Added For Select, MultiSelect Based Components
667
- - Semantic Button Default Font and Padding Resetted.
668
- - LisItem - dataId setted default
669
-
670
- - DropDown
671
- - DropDownHeading - Added customClass props
672
- - DropDownItem - Added customClass props
673
- - DropDownSearch - Added customClass
674
- - DropDownSeparator - Added customClass props
675
- - Radio - Added customClass
676
- - ListItem
677
- - ListItem - Removed customClass props and Added customClass object
678
- - ListItemWithAvatar - Added customClass
679
- - ListItemWithCheckBox - Added customClass
680
- - ListItemWIthIcon - Added customClass
681
- - ListItemWithRadio - Added customClass
682
- - Ribbon - Added customClass props
683
- - Stencils - Added customClass props
684
- - Switch - Added customClass
685
- - TextBoxIcon - Removed className props and Added customClass
686
- - Textarea - Removed className props and Added customClass props
687
- - Tooltip - No customClass. Just declared variables for Theme mode
688
-
689
- # 1.0.0-alpha-143
690
-
691
- - Issue fix in displaying Avatar Initial when 'name' prop has trailing space.
692
-
693
- # 1.0.0-alpha-142
694
-
695
- - Theme Based Changes(Variable changes no Impacts)
696
-
697
- # 1.0.0-alpha-141
698
-
699
- - Tab => keyboardprevent(ctrl,shift,alt) for link case
700
- - Appcontainer => dataThemeAttr added
701
- - ListItem => isDarkMode prop added
702
-
703
- # 1.0.0-alpha-140
704
-
705
- - DropBox -> PortalLayer changed to Modal
706
-
707
- # 1.0.0-alpha-139
708
-
709
- - DateTime => i18keys supported
710
- - variable name changes
711
-
712
- # 1.0.0-alpha-138
713
-
714
- - - Avatar - Removed customTextClass and added customClass props
715
- - - AvatarTeam - Removed customTextClass and added customClass
716
- - - Button - Removed className and added customClass
717
- - - Buttongroup - Added customClass props
718
- - - Card, CardHeader, CardContent, CardFooter - Removed className and added customClass props in Card, CardHeader, CardContent, CardFooter
719
- - - CheckBox - Added customClass
720
- - - DropBox - Removed className and added customClass
721
- - - Label - Added customClass props
722
- - - Tag - Removed className and added customClass
723
- - - TextBox - Removed className and added customClass props
724
- - - AppContainer - dataTheme Prop added
725
-
726
- # 1.0.0-alpha-137
727
-
728
- - ally Fixes
729
- - htmlId prop added in the select component
730
- - AdvancedGroupMultiSelect => scroll fetch issue fix
731
-
732
- # 1.0.0-alpha-136
733
-
734
- - removed dataIdNoOptnsMsg from GroupSelect
735
- - i18keys props renamed to i18nKeys
736
- - clearTitle prop removed from MultiSelect, MultiSelectAvatar, AdvancedMultiSelect, AdvancedGroupMultiSelect
737
- - Textare => default font fix
738
- - CalenderView => dataId changed for invalidDate as invalidDate
739
- - DatePicker limit changed to 1850 - 9999
740
-
741
- # 1.0.0-alpha-135
742
-
743
- - Avatar alternateSrc supported
744
-
745
- # 1.0.0-alpha-134
746
-
747
- - Reset Code Splitting
748
-
749
- # 1.0.0-alpha-133
750
-
751
- - AdvancedGroupMultiSelect => isPadding Prop added
752
-
753
- # 1.0.0-alpha-132
754
-
755
- - htmlId prop given in TextBox , Textboxwithicon, Textarea
756
- - CssProvider Changes
757
-
758
- # 1.0.0-alpha-131
759
-
760
- - Removed isLicenseSuccess and i18n in Label
761
- - name Prop changed to htmlFor in Label
762
- - title prop added in DropDownHeading
763
-
764
- # 1.0.0-alpha-130
765
-
766
- - Added 'isLicenseSuccess' props in 'ListItemWithIcon' component
767
-
768
- # 1.0.0-alpha-129
769
-
770
- - DropBox className Fix
771
-
772
- # 1.0.0-alpha-128
773
-
774
- - DateComponent => isEditable added
775
-
776
- # 1.0.0-alpha-127
777
-
778
- - DateComponent => error through fix
779
-
780
- # 1.0.0-alpha-126
781
-
782
- - AllY implementation for the button, textbox
783
- - Semantic button added
784
-
785
- # 1.0.0-alpha-125
786
-
787
- - fize => font_sizevariable replaced
788
- - Tab => moreiconActiveClass
789
-
790
- # 1.0.0-alpha-124
791
-
792
- - size => fsize
793
-
794
- # 1.0.0-alpha-123
795
-
796
- - Appcontainer RemFontVariable added
797
-
798
- # 1.0.0-alpha-122
799
-
800
- - Tag default bg color Changed
801
- - AvatarTeam background color removed
802
-
803
- # 1.0.0-alpha-121
804
-
805
- - Dropbox shadow changed
806
-
807
- # 1.0.0-alpha-120
808
-
809
- - Reponsive Render Fixes
810
- - DropBoxBorder Removed
811
-
812
- # 1.0.0-alpha-119
813
-
814
- - DateTime component Fix
815
-
816
- # 1.0.0-alpha-118
817
-
818
- - CustomResponsive Added
819
-
820
- # 1.0.0-alpha-117
821
-
822
- - DateTime Placeholder Selection Fix For Firefox
823
-
824
- # 1.0.0-alpha-116
825
-
826
- - DateTime Component Issue Fix , Row Fix, YearView Fix
827
- - DateTime => i18keys prop added
828
- - TextBoxWithIcon => children prop Parent Changed to Box
829
-
830
- # 1.0.0-alpha-115
831
-
832
- - DropBox => isDarkMode added
833
- - DropDownHeading => isDarkMode added
834
- - ListItem => palette dark added
835
- - ListItemWithAvatar => isDarkMode,avatarPalette added
836
- - EmptyState => isDarkMode added
837
- - MultiSelect => isDarkMode,palette added
838
- - MultiSelectWithAvatar => isDarkMode,palette added
839
- - SelectedOptions => isDarkMode added
840
- - Suggestions => isDarkMode, palette added
841
- - Stencils => dark palette added
842
- - Tag => isDarkMode prop added
843
-
844
- # 1.0.0-alpha-114
845
-
846
- - Tab iconSize Prop Added
847
-
848
- # 1.0.0-alpha-113
849
-
850
- - DateTime => isPadding prop added
851
- - common diabled opacity changed to 0.5
852
- - MultiSelect => isBoxPaddingNeed needa prop added
853
- - DropBox => isBoxPaddingNeed prop added
854
- - RippleEffect => primaryDark palette added
855
-
856
- # 1.0.0-alpha-112
857
-
858
- - Card scroll issue fix
859
-
860
- # 1.0.0-alpha-111
861
-
862
- - AdvancedGroupMultiSelect => children,getFooter, customClass added , Loader Handled
863
- - GroupSelect => children, getFooter added
864
- - Svg package Added
865
- - RippleEffect => before zindex removed
866
- - Container , Box Performance Fix
867
- - Card ReRender Fix
868
-
869
- # 1.0.0-alpha-110
870
-
871
- - MultiSelect DataId Fix
872
- - ToolTip Fix
873
- - RippleEffect Added
874
-
875
- # 1.0.0-alpha-109
876
-
877
- - MultiSelect Data-Id fix
878
- - Peer Dependencies Added
879
-
880
- # 1.0.0-alpha-108
881
-
882
- - Disabling internal state support for Accordion.
883
- - Adding 'equalityCheck' function support for AccordionItem.
884
-
885
- # 1.0.0-alpha-107
886
-
887
- - Adding onScroll support for TabContentWrapper component
888
-
889
- # 1.0.0-alpha-106
890
-
891
- - Package Update
892
-
893
- # 1.0.0-alpha-105
894
-
895
- - icon, variable version update
896
- - radio,checkbox,switch accessiblity changes => data-checked removed
897
- - semantic button added
898
-
899
- # 1.0.0-alpha-104
900
-
901
- - Dropbox => isBoxPaddingNeed,isPadding Added
902
-
903
- # 1.0.0-alpha-103
904
-
905
- - Tag Flat Removed
906
-
907
- # 1.0.0-alpha-102
908
-
909
- - ListItemWithAvatar => avatarPalette added
910
- - AdvancedGroupMultiSelect => needBorder added
911
- - AdvancedMultiSelect => needBorder added
912
- - Suggestions => avatarPalette added
913
- - SelectWithAvatar => onRemove,avatarPalette,tagSize,groupName added
914
- - Tag => avatarPalette added
915
-
916
- # 1.0.0-alpha-101
917
-
918
- - PortalLayer Fix Zindex
919
-
920
- # 1.0.0-alpha-100
921
-
922
- - Listitem Data-selected attr added, tabIndex Fixed
923
-
924
- # 1.0.0-alpha-99
925
-
926
- - Tab Click Fixed
927
-
928
- # 1.0.0-alpha-98
929
-
930
- - Modal Zindex issue fixed
931
- - Tabs OnmouseDown Implement
932
-
933
- # 1.0.0-alpha-97
934
-
935
- - MultiSelect Issue Fix
936
-
937
- # 1.0.0-alpha-96
938
-
939
- - Tootltip Update
940
- - Avatar -> textPalette,customTextClass added - font-family light removed
941
- - AvatarTeam -> textPalette,customTextClass added
942
-
943
- # 1.0.0-alpha-95
944
-
945
- - Icon Package Update
946
-
947
- # 1.0.0-alpha-94
948
-
949
- - Tab Mapping Fix
950
-
951
- # 1.0.0-alpha-93
952
-
953
- - Tab Fixes
954
-
955
- # 1.0.0-alpha-92
956
-
957
- - Tab Custom Element Fix
958
- - Avatar xlarge size changes
959
-
960
- # 1.0.0-alpha-91
961
-
962
- - Tab Click Prevent Fix
963
-
964
- # 1.0.0-alpha-90
965
-
966
- - Switch,CheckBox,Radio => data-checked added
967
- - Tab Resize Issue Solved, setTitleForMoreOptions added for vertical, a11y tags added , gamma and zeta palatte removed
968
- - ListItem TaBIndex Added
969
-
970
- # 1.0.0-alpha-89
971
-
972
- - Tooltip Change
973
- - Icon Version Update
974
- - For MultiSelect Based Components clearTitle prop Added
975
- - tooltip added in Tag Component
976
-
977
- # 1.0.0-alpha-88
978
-
979
- - Datewidget/Datetime tested and docs update with @zohodesk/datetimejs package
980
-
981
- # 1.0.0-alpha-87
982
-
983
- - Date Component TimeZone Fix
984
- - Unwanted Functions Removed from utils/Common
985
-
986
- # 1.0.0-alpha-86
987
-
988
- - Tooltip UI Updated
989
- - DropDownFooter,DropDownHeader,DropDownMenu,SimpleDropdown Deleted
990
- - DropDownHeading => children and customClass Added
991
- - AdvancedGroupMultiSelect -> search fix
992
- - MultiSelect -> search clear fix
993
- - GroupSelect -> Keydown Fix
994
-
995
- # 1.0.0-alpha-85
996
-
997
- - Datetime/DateWidget Component changes from @zohodesk/datetimejs package
998
-
999
- # 1.0.0-alpha-84
1000
-
1001
- - ListItemWiithIcon Data-Id Fix
1002
-
1003
- # 1.0.0-alpha-83
1004
-
1005
- - CheckBox Prop Fix Update activeStyle added
1006
-
1007
- # 1.0.0-alpha-82
1008
-
1009
- - DateTime, DateWidget Changes => date return object Fix
1010
- - autoFocus prop added in Textarea component
1011
-
1012
- # 1.0.0-alpha-81
1013
-
1014
- - variant - secondary type removed in a Label component
1015
- - customClass Added For Label component
1016
- - Radio, CheckBox SVG Updated, and Palette Danger Added, isFilled Added For Transparent BG
1017
- - MultiSelect Avatar DataId Changes
1018
-
1019
- # 1.0.0-alpha-80
1020
-
1021
- - data-dottedTitle added for Tooltip
1022
-
1023
- # 1.0.0-alpha-79
1024
-
1025
- - Tag danger, default color changed to dot_bg_hawkesBlue
1026
- - MultiSelectWithAvatar size prop passed for tags Parent
1027
-
1028
- # 1.0.0-alpha-78
1029
-
1030
- - isAbsolute,isAnimate,needAction,boxSize,className,innerClass prop added in DateTime
1031
- - needBorder prop added in CalendarView
1032
- - isAbsolutePositioningNeeded prop fixed in dropbox
1033
- - Timezone Day light savings offset calculation fix in Date Components
1034
- - isSearchClearOnClose props added for Select Based components
1035
- - Radio line-heignt fix
1036
-
1037
- # 1.0.0-alpha-77
1038
-
1039
- - TestCase Fix
1040
-
1041
- # 1.0.0-alpha-76
1042
-
1043
- - ResizeObserver Implementation
1044
-
1045
- # 1.0.0-alpha-75
1046
-
1047
- - Select children prop undefined issue fix
1048
-
1049
- # 1.0.0-alpha-74
1050
-
1051
- - SelectWithIcon Component Added
1052
- - getChildren,getFooter,getCustomEmptyState feature added in Select Component
1053
-
1054
- # 1.0.0-alpha-73
1055
-
1056
- - Appcontainer eleRef Supported
1057
- - Responsive TouchDevice Fix
1058
- - Stencils color Update
1059
-
1060
- # 1.0.0-alpha-72
1061
-
1062
- - BaseLine Added in Layout
1063
- - hide added in CssProvider
1064
-
1065
- # 1.0.0-alpha-71
1066
-
1067
- - disableTitle and needAvatarTitle Added For List Items
1068
- - Avatar Team Title Fix
1069
-
1070
- # 1.0.0-alpha-70
1071
-
1072
- - Leap Year Date Component Fix
1073
- - Card Shrink issue Fix
1074
-
1075
- # 1.0.0-alpha-69
1076
-
1077
- - Exporting RefElement component from PortalLayer component
1078
-
1079
- # 1.0.0-alpha-68
1080
-
1081
- - Tab Width Calculation fix, Dotted Fix
1082
- - SelectWithAvatar Fix
1083
- - Select Fix
1084
- - MultiSelect disableAction Fix
1085
- - Variable Update
1086
-
1087
- # 1.0.0-alpha-67
1088
-
1089
- - Adding TourId and isAbsolutePositioningNeeded key in DropBox
1090
- - Adding TourId in Box, Container, and Tab components
1091
-
1092
- # 1.0.0-alpha-66
1093
-
1094
- - Snap Update
1095
-
1096
- # 1.0.0-alpha-65
1097
-
1098
- - isDisabled, Readonly Unified in all Form Components
1099
- - Date Dropdown => Select List Border Fix
1100
- - Unified All Fields
1101
-
1102
- # 1.0.0-alpha-64
1103
-
1104
- - isDisabled Option added for List Item Based Atoms
1105
- - needBorder and disableAction Option added for MultiSelect
1106
- - Select BoxSize Added for DropBox
1107
-
1108
- # 1.0.0-alpha-62
1109
-
1110
- - Switch Title Issue Fixed
1111
-
1112
- # 1.0.0-alpha-61
1113
-
1114
- - Tab Click Issue Fixed
1115
-
1116
- # 1.0.0-alpha-60
1117
-
1118
- - Button Title Added
1119
- - Tab Disabled Added
1120
- - Tooltip Fix
1121
-
1122
- # 1.0.0-alpha-59
1123
-
1124
- - AppContainer Added
1125
-
1126
- # 1.0.0-alpha-58
1127
-
1128
- - Tag Line Height Issue Fixed
1129
- - Advanced MultiSelect Event Passed in Argument
1130
-
1131
- # 1.0.0-alpha-57
1132
-
1133
- - Base Font Version 3 Updated
1134
- - Advanced Group Multi-Select Added
1135
-
1136
- # 1.0.0-alpha-56
1137
-
1138
- - Accordion unMount Added
1139
- - Icon Package Updated
1140
- - Velocity Docs Added
1141
-
1142
- # 1.0.0-alpha-55
1143
-
1144
- - Tab Dot Color Convert
1145
-
1146
- # 1.0.0-alpha-54
1147
-
1148
- - GroupSelect Unlimited Scroll Fix
1149
- - Dropdown Header Css After 1px Fix
1150
-
1151
- # 1.0.0-alpha-53
1152
-
1153
- - CustomScroll Make Optional
1154
- - Reset Code Implemented in Portal
1155
- - Icon Line-Height Remove
1156
- - New Reports Icons Added
1157
-
1158
- # 1.0.0-alpha-52
1159
-
1160
- - Advance Multi-Select Added
1161
-
1162
- # 1.0.0-alpha-51
1163
-
1164
- - Docs Run Path Issue Fix
1165
-
1166
- # 1.0.0-alpha-50
1167
-
1168
- - VelocityAnimation Added
1169
-
1170
- # 1.0.0-alpha-49
1171
-
1172
- - Radio Test Cases Fixed
1173
-
1174
- # 1.0.0-alpha-48
1175
-
1176
- - TimeZone Added in DateTime and DateWidget
1177
- - Radio DataId Fix
1178
-
1179
- # 1.0.0-alpha-47
1180
-
1181
- - DateTime Component needDefaultTime Prop Fix
1182
- - Dot Variables Updated
1183
- - For All ListItem Based IsTick Prop Removed
1184
- - ResponsiveBox and ResponsiveContainer Removed
1185
- - MultiSelect Fragment Implemented
1186
-
1187
- # 1.0.0-alpha-46
1188
-
1189
- - ReadMe Files Removed
1190
- - Style Order Fixed
1191
-
1192
- # 1.0.0-alpha-45
1193
-
1194
- - Button RTL Issue Resolved
1195
- - Unwanted Files Removed
1196
- - Responsive Component Verified
1197
-
1198
- # 1.0.0-alpha-44
1199
-
1200
- - FontIcons and Variables Reverted.
1201
-
1202
- # 1.0.0-alpha-43
1203
-
1204
- - RTL Implemented.
1
+ # DOT Style Guide
2
+
3
+ In this Package, we Provide Some Basic Components to Build Web App
4
+
5
+ - Avatar
6
+ - AvatarTeam
7
+ - Accordion
8
+ - Animation
9
+ - Button
10
+ - Buttongroup
11
+ - Card
12
+ - CheckBox
13
+ - DateTime
14
+ - DropBox
15
+ - Icon
16
+ - Label
17
+ - Layout
18
+ - ListItem
19
+ - MultiSelect
20
+ - Popup
21
+ - Radio
22
+ - Responsive
23
+ - Ribbon
24
+ - Select
25
+ - GroupSelect
26
+ - Stencils
27
+ - Switch
28
+ - Tab
29
+ - Tag
30
+ - Textarea
31
+ - TextBox
32
+ - TextBoxIcon
33
+ - Tooltip
34
+
35
+ # 1.0.0-alpha-269
36
+
37
+ - **DateTime** - 24Hour Suggestion Issue Fixed
38
+
39
+ # 1.0.0-alpha-268
40
+
41
+ - Contrast default variables :root selector removed
42
+
43
+ # 1.0.0-alpha-267
44
+
45
+ - **DropBox** - Fixed Position issue fix.
46
+
47
+ - **Select** - Fixed Position prop support.
48
+
49
+ # 1.0.0-alpha-266
50
+
51
+ - **Button** - migrated to UCL and converted to functional component
52
+ - Contrast option implemented through preprocess. Category key value added for all color variables.
53
+ - BoxShadow Values Separated for Contrast
54
+
55
+ # 1.0.0-alpha-265
56
+
57
+ - **mergeStyle** - Logic Issue Fixed
58
+ - **Tab** - State Restricted Names Check added
59
+ - **cancelBubblingEffect** function added in utils/Common
60
+
61
+ # 1.0.0-alpha-264
62
+
63
+ - **DropBox** - customStyle renamed to customInlineStyle and migrarted to functional UCL component
64
+
65
+ # 1.0.0-alpha-263
66
+
67
+ - **ListItem, ListItemWithAvatar, ListItemWithCheckbox, ListItemWithIcon, ListItemWithRadio** - Line height changed 20px and Padding also changed.
68
+
69
+ # 1.0.0-alpha-262
70
+
71
+ - **ListItem, ListItemWithAvatar, ListItemWithCheckbox, ListItemWithIcon, ListItemWithRadio** - Added New Prop `needMultiLineText`
72
+
73
+ - **MultiSelect, MultiSelectWithAvatar** - `keepSelectedOptions` prop added. When this prop is true, it won't remove selected items from the dropdown instead it highlights each selected item with tick mark.
74
+
75
+ - **MultiSelectWithAvatar** - `customProps` support.
76
+
77
+ # 1.0.0-alpha-261
78
+
79
+ - **Tab,Tabs** - Removed offsection property from css.
80
+
81
+ - compileClassNames , mergeStyle utils added.
82
+
83
+ - index export object fixed.
84
+
85
+ # 1.0.0-alpha-260
86
+
87
+ - **TextBoxIcon** - OnClear Focus in TextBox issue Resolved.
88
+
89
+ - Suggestions - `listItemCustomProps` prop support given for all suggestion to control all listitems.
90
+
91
+ - `isTextSelected` - common method added in utils to know any text highlighted or not.
92
+
93
+ - **Popup** - Issue fix: While click on the document, popup won't close if any text highlighted in the product.
94
+
95
+ # 1.0.0-alpha-259
96
+
97
+ - **Avatar**
98
+
99
+ `needInnerBorder` and `needDefaultBorder` prop has been added.
100
+
101
+ `xxsmall` option added for size prop.
102
+
103
+ - **AvatarTeam** - `needInnerBorder`, `needBorder` and `needDefaultBorder` props has been added.
104
+
105
+ # 1.0.0-alpha-258
106
+
107
+ - **CheckBox** - dataSlector prop changed to `dataSelectorId`.
108
+
109
+ - `dataSelectorId` prop added for all components
110
+
111
+ # 1.0.0-alpha-257
112
+
113
+ - **Avatar** - Avatar initial render issue and image border issue solved
114
+
115
+ - **DateWidget** - `boxSize` and `onError` prop has been added.
116
+
117
+ # 1.0.0-alpha-256
118
+
119
+ - **Button** - Safari browser focus issue fix and `customProps` validation.
120
+
121
+ - **Switch** - Click handling issue fix.
122
+
123
+ - **Tabs, Tab** - Screen Reader fix.
124
+
125
+ # 1.0.0-alpha-255
126
+
127
+ - **CalenderView, DateTime** - Today and selected date issue fix.
128
+
129
+ - `Accesssility`- Screen Reader fix.
130
+
131
+ # 1.0.0-alpha-254
132
+
133
+ - **AppContainer** - accessibility theme css has been added.
134
+
135
+ - **Button** - `customProps` support.
136
+
137
+ - **DropBox** - Focus scope navigation support.
138
+
139
+ # 1.0.0-alpha-253
140
+
141
+ - **Tabs, Tooltip** - If condition check added to reduce murphy error logs.
142
+
143
+ - `Accesssility`- Screen Reader support for some components.
144
+
145
+ # 1.0.0-alpha-252
146
+
147
+ - **Select,GroupSelect,SelectWithAvatar,SelectWithIcon,MultiSelect,MultiSelectWithAvatar** - Initial Loader and Scroll End Loader added.
148
+
149
+ - **componentAppearanceVariableJson**
150
+
151
+ `zdt_datetime_today_bg` variable renamed as `zdt_datetime_selected_bg`
152
+
153
+ `zdt_datetime_today_border` variable added.
154
+
155
+ - **CalendarView** - `isToday` prop added to display today's date as a separate style.
156
+
157
+ - **DateTime.module.css** - `.today` class renamed as `.active` class.
158
+
159
+ # 1.0.0-alpha-251
160
+
161
+ - Heading component - font reset css fix
162
+
163
+ # 1.0.0-alpha-250
164
+
165
+ - Heading (accessibility) - new component added
166
+ - Avatar => component initial rendering optimization.
167
+
168
+ # 1.0.0-alpha-249
169
+
170
+ - color => secondary_border light mode color changes
171
+
172
+ # 1.0.0-alpha-248
173
+
174
+ - preventParentScroll props added for Box and Container
175
+
176
+ # 1.0.0-alpha-247
177
+
178
+ - Svg path changes
179
+ # 1.0.0-alpha-246
180
+
181
+ - :focus in css removed
182
+ # 1.0.0-alpha-245
183
+
184
+ - PureDark mode color lists added in docs
185
+
186
+ # 1.0.0-alpha-244
187
+
188
+ - AdvancedGroupMultiSelect , AdvancedMultiSelect => textbox flexible ui fix and duplicate css removed
189
+
190
+ # 1.0.0-alpha-243
191
+
192
+ - DateTime, DateWidget => Portal Id support for fixed position.
193
+ - YearView => Theme Variable support for month text.
194
+
195
+ # 1.0.0-alpha-242
196
+
197
+ - Tag -> defaultLink palette added
198
+
199
+ # 1.0.0-alpha-241
200
+
201
+ - Added unobserve element condition for Tooltip.
202
+
203
+ # 1.0.0-alpha-240
204
+
205
+ - DateWidget input selection color variable removed
206
+ - ResponsiveDropBox Implemented for all DropBox
207
+
208
+ # 1.0.0-alpha-239
209
+
210
+ - #999 instead of #a8b0bd color value in PureDark mode
211
+ - DateTime, DateWidget => DropBox Fixed position prop support.(positionsOffset , targetOffset ,isRestrictScroll added)
212
+
213
+ # 1.0.0-alpha-238
214
+
215
+ - Tooltip optimization - container client rect calc is cached and only calc when resized.
216
+ - Provider/Config => tooltipContainer key removed and getTooltipContainer key added
217
+ - PureDark mode implemented via preprocess
218
+
219
+ # 1.0.0-alpha-237
220
+
221
+ - ListItem Responsive Min Height Fixed
222
+ - CheckBox data-selector attribute added
223
+
224
+ # 1.0.0-alpha-236
225
+
226
+ - Input => autocomplete added in provider configuration
227
+
228
+ # 1.0.0-alpha-235
229
+
230
+ -Tooltip
231
+ => data-title-wrap prop added
232
+ => tooltip calculation based on root or window case added
233
+
234
+ # 1.0.0-alpha-234
235
+
236
+ - MultiSelect => SelectedId fix on component did update
237
+
238
+ # 1.0.0-alpha-233
239
+
240
+ - MultiSelect => On press tab key selecting option removed
241
+
242
+ # 1.0.0-alpha-232
243
+
244
+ - ListContainer => Mobile Responsive Implemented
245
+
246
+ # 1.0.0-alpha-231
247
+
248
+ - DropBox - Position Undefined Issue Solved
249
+
250
+ # 1.0.0-alpha-230
251
+
252
+ - Avatar, AdvancedGroupMultiSelect, AdvancedMultiSelect, MultiSelect, MultiSelectWithAvatar, GroupSelect, Select, SelectWithAvatar, SelectWithIcon, TextBoxIcon => Tooltip undefined case solved
253
+ - Select , MultiSelect => boxSize prop added
254
+
255
+ # 1.0.0-alpha-229
256
+
257
+ - MultiSelect, AdvancedMultiSelect => disabledOption Clear icon handled properly
258
+
259
+ # 1.0.0-alpha-228
260
+
261
+ - Button => danger, primary loader color issue solved
262
+
263
+ # 1.0.0-alpha-227
264
+
265
+ - isReadOnly and needEffect prop added in Tag Component for read-only case
266
+ - needEffect prop added for the below components: ( This props has been added for read-only case )
267
+ => Advanced Group Multi Select
268
+ => Advanced Multi Select
269
+ => Multi Select
270
+ => Multi Select With Avatar
271
+ => Select With Avatar
272
+ - isReadonly prop added for SelectedOption component
273
+ - Read-only class added for TextBoxIcon component
274
+ - Removed click action in tag multi select component for read-only case
275
+ - Changed the cursor default to not-allowed in Radio component for read-only case
276
+
277
+ # 1.0.0-alpha-226
278
+
279
+ - ListContainer Implemented in => ListItem,ListItemWithAvatar,ListItemWithIcon,ListItemWithRadio,ListItemWithCheckBox
280
+
281
+ # 1.0.0-alpha-225
282
+
283
+ - Appearance css moved to assets
284
+
285
+ # 1.0.0-alpha-224
286
+
287
+ - css color variable updation
288
+
289
+ # 1.0.0-alpha-223
290
+
291
+ - bg,shadow,text,border based variables removed and renamed.
292
+
293
+ # 1.0.0-alpha-222
294
+
295
+ - Tabs=> isResponsive condition handled properly
296
+ - Select, MultiSelect => on press tab, choose selected value then move focus to next focuable element flow implemented
297
+
298
+ # 1.0.0-alpha-221
299
+
300
+ - blueDefaultTheme & blueDarkTheme class name added in Blue CTATheme & ComponentTheme files
301
+
302
+ # 1.0.0-alpha-220
303
+
304
+ - Tooltip Delay Controlled to Improve Perf
305
+
306
+ # 1.0.0-alpha-219
307
+
308
+ - ContextOptimizer => ShallowEqal function issue solved
309
+
310
+ # 1.0.0-alpha-218
311
+
312
+ - Select => Custom props undefined issue solved
313
+
314
+ # 1.0.0-alpha-217
315
+
316
+ - TextBox, Multiselect, Tag missing dark palette variables moved under Themes folder file
317
+
318
+ # 1.0.0-alpha-216
319
+
320
+ - Select component -> customProps added -> TextBoxProps ,DropdownSearchTextBoxProps, listItemProps added
321
+ - Suggestions component -> customProps added -> listItemProps
322
+ - TextBox component -> customProps added
323
+ - TextBoxIcon component -> customProps added -> TextBoxProps
324
+
325
+ # 1.0.0-alpha-215
326
+
327
+ - Select Search Regex Changed to Lowercase
328
+
329
+ # 1.0.0-alpha-214
330
+
331
+ - Avatar, Label, Tag, Dropdown, ListItem, Multiselect missing dark palette variables moved under Themes folder files
332
+
333
+ # 1.0.0-alpha-213
334
+
335
+ - AnimationVariable File import removed
336
+
337
+ # 1.0.0-alpha-212
338
+
339
+ - Stencils => Converted to Pure Component
340
+
341
+ # 1.0.0-alpha-211
342
+
343
+ - Lato font reference changed from local to Zoho URL(web fonts)
344
+
345
+ # 1.0.0-alpha-210
346
+
347
+ - Published but some issues are there
348
+
349
+ # 1.0.0-alpha-209
350
+
351
+ - Config => isReducedMotion, direction added
352
+ - LibraryContext => added
353
+ - transition variable implemented in all css
354
+
355
+ # 1.0.0-alpha-208
356
+
357
+ - Select, AdvancedGroupMultiSelect, MultiSelect => search space issue solved
358
+ - Common => getSearchString fn added,
359
+ - Tabs => MoreButtonProps added in customProps
360
+ - Tab => customProps added
361
+
362
+ # 1.0.0-alpha-207
363
+
364
+ - Popup => PreventDefault On RemoveClose Removed
365
+ - Tabs => getCustomDropBoxHeaderPlaceHolder props added
366
+
367
+ # 1.0.0-alpha-206
368
+
369
+ - LableColor Css File Separated
370
+ - Select, TextBox,MultiSelect,AdvancedMultiSelect => on focusing input preventScroll disabled.
371
+ - ResizeComponent Added
372
+
373
+ # 1.0.0-alpha-205
374
+
375
+ - MultiSelect => lowBandwidth Force Apicall issue fixed
376
+
377
+ # 1.0.0-alpha-204
378
+
379
+ - CTA alpha color value changed
380
+
381
+ # 1.0.0-alpha-203
382
+
383
+ - Default mode CTA grey color value changed
384
+
385
+ # 1.0.0-alpha-202
386
+
387
+ - MultiSelect - scroll top issue fix
388
+
389
+ # 1.0.0-alpha-201
390
+
391
+ - AccordionItem - innerclass prop has been added.
392
+
393
+ # 1.0.0-alpha-200
394
+
395
+ - Responsive Sender Receiver Performance Improvement
396
+
397
+ # 1.0.0-alpha-199
398
+
399
+ - Font size variable fixed for missed place
400
+
401
+ # 1.0.0-alpha-198
402
+
403
+ - Date Component optimization
404
+
405
+ # 1.0.0-alpha-197
406
+
407
+ - Card => isPercentageScroll prop added, scrollFetchLimit config implemented
408
+ - Tabs => customProps Prop added
409
+
410
+ # 1.0.0-alpha-196
411
+
412
+ - AdvancedMultiSelect => SelectedOptionsLimti old and new comparsion based rerender update
413
+
414
+ # 1.0.0-alpha-195
415
+
416
+ - ZIndex Number Counter Issue solved
417
+
418
+ # 1.0.0-alpha-194
419
+
420
+ - Tab => css modified position correction and mousedown issue fixed
421
+ - fitContWidth,fitContHeight class added in common
422
+ - propType Declaration fixes
423
+
424
+ # 1.0.0-alpha-193
425
+
426
+ - VelocityAnimation => slideLeft animation added
427
+ - Tabs => containerClass prop added
428
+
429
+ # 1.0.0-alpha-192
430
+
431
+ - CTA gray based color changes
432
+
433
+ # 1.0.0-alpha-191
434
+
435
+ - CustomScroll Color Fixes
436
+
437
+ # 1.0.0-alpha-190
438
+
439
+ - DarkMode => input placeholder color changed
440
+
441
+ # 1.0.0-alpha-189
442
+
443
+ - DropBox => Calculation Based Performance improvement
444
+ - Popup => Popup WitthIn Popup Body Focus Issue Solved
445
+
446
+ # 1.0.0-alpha-188
447
+
448
+ - Popup => popup within popup open body click issue fixed
449
+
450
+ # 1.0.0-alpha-187
451
+
452
+ - Popup => popupGroup empty array check added
453
+
454
+ # 1.0.0-alpha-186
455
+
456
+ - MultiSelect - children render place changed
457
+
458
+ # 1.0.0-alpha-185
459
+
460
+ - DropBox => Toggle Position Issue Solved For Left Right Padding Calculation
461
+
462
+ # 1.0.0-alpha-184
463
+
464
+ - Palette-Based Folder Structure Changed.
465
+ - data-theme changed to data-mode
466
+ - data-palette changed to data-theme
467
+
468
+ # 1.0.0-alpha-183
469
+
470
+ - AppContainer => dataThemeAttr,dataTheme prop removed. instead customProps prop added
471
+ - Palette Based Color System Implemented
472
+
473
+ # 1.0.0-alpha-182
474
+
475
+ - DateComponent => Safari Browser Focus Selection Issue Fixed
476
+
477
+ # 1.0.0-alpha-181
478
+
479
+ - MultiSelect , AdvancedMultiSelect => selection reorder issue fixed
480
+ - Avatar, AvatarTeam, Checkbox, ListItem, Switch => customProps Added
481
+
482
+ # 1.0.0-alpha-180
483
+
484
+ - Tab => Rtl Fix
485
+ - Config => idCounter, ZindexCounter, IdPrefix Added, Intial Zindex Increased to 3
486
+
487
+ # 1.0.0-alpha-179
488
+
489
+ - DateWidget => 24 hours HH caps placeholder issue solved
490
+
491
+ # 1.0.0-alpha-178
492
+
493
+ - MultiSelect => getFooter prop added
494
+ - AdvancedMultiSelect => getFooter prop added
495
+
496
+ # 1.0.0-alpha-177
497
+
498
+ - DateWidget - PlaceHolder Lower Case Issue Solved
499
+ - Tab - Hook Callback Issue Fixed
500
+ - MultiSelect Empty Array Fix
501
+
502
+ # 1.0.0-alpha-176
503
+
504
+ - DateWidget - isHideCurrentYear,onBlur,onFocus prop added
505
+
506
+ # 1.0.0-alpha-175
507
+
508
+ - DateTime,DateWidget - is24Hour prop added
509
+ - DateTime => isDefaultPosition prop added
510
+ - Responsive Observer Performance Issue Fixed
511
+
512
+ # 1.0.0-alpha-174
513
+
514
+ - CheckBox - isClipped Prop added
515
+
516
+ # 1.0.0-alpha-173
517
+
518
+ - code-based issue fixed ( const to let)
519
+
520
+ # 1.0.0-alpha-172
521
+
522
+ - TextBoxIcon/TextBoxIcon.js
523
+ => onClearMouseDown prop support
524
+ - MultiSelect, MultiSelectWithAvatar,AdvancedMultiSelect => disabledOptions prop supported
525
+
526
+ # 1.0.0-alpha-171
527
+
528
+ - Dropbox => mobileWidth Configuration Hook given
529
+
530
+ # 1.0.0-alpha-170
531
+
532
+ - MultiSelectWithAvatar => isSearchClearOnSelect prop added
533
+ - DropBox => customStyle prop added
534
+ - DropDownHeading => tabIndex removed
535
+
536
+ # 1.0.0-alpha-169
537
+
538
+ - DateWidget => iconOnHover added and autoComplete disabled
539
+ - AdvancedGroupMultiSelect => autoComplete disabled
540
+ - AdvancedMultiSelect => autoComplete disabled
541
+ - MultiSelect => autoComplete disabled
542
+ - MultiSelectWithAvatar => isBoxPaddingNeed prop added
543
+ - GroupSelect => iconOnHover prop added and tab focus issue solved
544
+ - Select => iconOnHover prop added and tab focus issue solved
545
+ - SelectWithAvatar => autoComplete disabled
546
+ - SelectWithIcon => autoComplete disabled
547
+ - TextBox => isFocus prop added
548
+ - TextBoxIcon => isFocus,iconOnHover prop added
549
+
550
+ # 1.0.0-alpha-168
551
+
552
+ - DropBox Duplicate Portal removed
553
+
554
+ # 1.0.0-alpha-167
555
+
556
+ - DropBox - responsive ui fixes , isRestrictScroll,needAutoZindex prop added, needResponsive default value changed to true
557
+ - Popup - customOrder prop added
558
+ - ListItemWithAvatar => tick icon padding issue solved
559
+
560
+ # 1.0.0-alpha-166
561
+
562
+ - Tab => Border Calculation Issue Fixed
563
+ - Tooltip => Position Issue Fixed
564
+
565
+ # 1.0.0-alpha-165
566
+
567
+ - Select -> onFocus Prop Added
568
+ - Tab -> titlePosition prop added for tooltip
569
+
570
+ # 1.0.0-alpha-164
571
+
572
+ - Fixed Tab highlight issue.
573
+
574
+ # 1.0.0-alpha-163
575
+
576
+ - Fixed the bug to recalculate dimension if tab id changed
577
+
578
+ # 1.0.0-alpha-162
579
+
580
+ - Performance Changes added in Tab , Tooltip Components
581
+ - MultiSelect, MultiSelectWithAvatar => customChildrenClass prop Added and TextBox component replaced with TextBoxWithIcon component
582
+
583
+ # 1.0.0-alpha-161
584
+
585
+ - Proxima Font Removed and Lato Font Added
586
+
587
+ # 1.0.0-alpha-159
588
+
589
+ - MultiSelect,MultiSelectWithAvatar,AdvancedGroupMultiSelect,AdvancedMultiSelect - isSearchClearOnSelect default Prop changed as true
590
+ - Tooltip Box Layout Position Issue Fixed
591
+ - autoTabIndex prop removed in listitem component groups
592
+
593
+ # 1.0.0-alpha-158
594
+
595
+ - ListItem => dataId Fix
596
+ - MultiSelect => Bg color fix
597
+
598
+ # 1.0.0-alpha-157
599
+
600
+ - RippleEffect => needBorder prop added
601
+ - Select => Children Prop added
602
+ - MultiSelect,MultiSelectWithAvatar,AdvancedGroupMultiSelect,AdvancedMultiSelect - isSearchClearOnSelect prop added
603
+ - ListItem,ListItemWithIcon,ListItemWithAvatar => dataId added for tickIcon
604
+
605
+ # 1.0.0-alpha-156
606
+
607
+ - A11y Changes
608
+
609
+ # 1.0.0-alpha-156
610
+
611
+ - Dark Theme Changes
612
+
613
+ # 1.0.0-alpha-155
614
+
615
+ - Tooltip DarkMode Theme Css Added
616
+
617
+ # 1.0.0-alpha-154
618
+
619
+ - isDarkMode based props removed for all components
620
+ - AppContainer => Tooltip moved from Container Html
621
+
622
+ # 1.0.0-alpha-153
623
+
624
+ - ListItem => text-decoration fixed
625
+ - AdvancedGroupMultiSelect => isGroupMultiSelect prop removed
626
+ - AdvancedMultiSelect => isGroupMultiSelect removed, isBoxPaddingNeed added
627
+ - MultiSelectHeader => isGroupMultiSelect removed
628
+
629
+ # 1.0.0-alpha-152
630
+
631
+ - A11y Changes
632
+ - Theme Primary Colors Added
633
+
634
+ # 1.0.0-alpha-150
635
+
636
+ - Label => dark palette added
637
+ - TextBox => light variant added
638
+
639
+ # 1.0.0-alpha-149
640
+
641
+ - Avatar,AvatarTeam =>borderOnActive,borderOnHover prop added
642
+ - Tab - text decoration added
643
+ - Semantic Button Css fixed
644
+
645
+ # 1.0.0-alpha-148
646
+
647
+ - Tag => max-width 100% added
648
+ - Theme Changes in => DateTime,Tabs,AdvancedMultiSelect,RippleEffect
649
+
650
+ # 1.0.0-alpha-147
651
+
652
+ - currentScreenSize returned from Responsive Receiver
653
+ - sticky class added in common.module.css
654
+ - --zdt prefix added for theme variables
655
+
656
+ # 1.0.0-alpha-146
657
+
658
+ - ListItem => dataId fixes
659
+ - Tag => dataId issue Fixed
660
+ - DropBox => RTL fixes
661
+ - VelocityAnimation => RTL fixes
662
+
663
+ # 1.0.0-alpha-145
664
+
665
+ - TextBoxIcon Clear Icon Color Fix
666
+
667
+ # 1.0.0-alpha-144
668
+
669
+ - PortalLayer Moved to deprecated folder
670
+ - A11y Id Added For Select, MultiSelect Based Components
671
+ - Semantic Button Default Font and Padding Resetted.
672
+ - LisItem - dataId setted default
673
+
674
+ - DropDown
675
+ - DropDownHeading - Added customClass props
676
+ - DropDownItem - Added customClass props
677
+ - DropDownSearch - Added customClass
678
+ - DropDownSeparator - Added customClass props
679
+ - Radio - Added customClass
680
+ - ListItem
681
+ - ListItem - Removed customClass props and Added customClass object
682
+ - ListItemWithAvatar - Added customClass
683
+ - ListItemWithCheckBox - Added customClass
684
+ - ListItemWIthIcon - Added customClass
685
+ - ListItemWithRadio - Added customClass
686
+ - Ribbon - Added customClass props
687
+ - Stencils - Added customClass props
688
+ - Switch - Added customClass
689
+ - TextBoxIcon - Removed className props and Added customClass
690
+ - Textarea - Removed className props and Added customClass props
691
+ - Tooltip - No customClass. Just declared variables for Theme mode
692
+
693
+ # 1.0.0-alpha-143
694
+
695
+ - Issue fix in displaying Avatar Initial when 'name' prop has trailing space.
696
+
697
+ # 1.0.0-alpha-142
698
+
699
+ - Theme Based Changes(Variable changes no Impacts)
700
+
701
+ # 1.0.0-alpha-141
702
+
703
+ - Tab => keyboardprevent(ctrl,shift,alt) for link case
704
+ - Appcontainer => dataThemeAttr added
705
+ - ListItem => isDarkMode prop added
706
+
707
+ # 1.0.0-alpha-140
708
+
709
+ - DropBox -> PortalLayer changed to Modal
710
+
711
+ # 1.0.0-alpha-139
712
+
713
+ - DateTime => i18keys supported
714
+ - variable name changes
715
+
716
+ # 1.0.0-alpha-138
717
+
718
+ - - Avatar - Removed customTextClass and added customClass props
719
+ - - AvatarTeam - Removed customTextClass and added customClass
720
+ - - Button - Removed className and added customClass
721
+ - - Buttongroup - Added customClass props
722
+ - - Card, CardHeader, CardContent, CardFooter - Removed className and added customClass props in Card, CardHeader, CardContent, CardFooter
723
+ - - CheckBox - Added customClass
724
+ - - DropBox - Removed className and added customClass
725
+ - - Label - Added customClass props
726
+ - - Tag - Removed className and added customClass
727
+ - - TextBox - Removed className and added customClass props
728
+ - - AppContainer - dataTheme Prop added
729
+
730
+ # 1.0.0-alpha-137
731
+
732
+ - ally Fixes
733
+ - htmlId prop added in the select component
734
+ - AdvancedGroupMultiSelect => scroll fetch issue fix
735
+
736
+ # 1.0.0-alpha-136
737
+
738
+ - removed dataIdNoOptnsMsg from GroupSelect
739
+ - i18keys props renamed to i18nKeys
740
+ - clearTitle prop removed from MultiSelect, MultiSelectAvatar, AdvancedMultiSelect, AdvancedGroupMultiSelect
741
+ - Textare => default font fix
742
+ - CalenderView => dataId changed for invalidDate as invalidDate
743
+ - DatePicker limit changed to 1850 - 9999
744
+
745
+ # 1.0.0-alpha-135
746
+
747
+ - Avatar alternateSrc supported
748
+
749
+ # 1.0.0-alpha-134
750
+
751
+ - Reset Code Splitting
752
+
753
+ # 1.0.0-alpha-133
754
+
755
+ - AdvancedGroupMultiSelect => isPadding Prop added
756
+
757
+ # 1.0.0-alpha-132
758
+
759
+ - htmlId prop given in TextBox , Textboxwithicon, Textarea
760
+ - CssProvider Changes
761
+
762
+ # 1.0.0-alpha-131
763
+
764
+ - Removed isLicenseSuccess and i18n in Label
765
+ - name Prop changed to htmlFor in Label
766
+ - title prop added in DropDownHeading
767
+
768
+ # 1.0.0-alpha-130
769
+
770
+ - Added 'isLicenseSuccess' props in 'ListItemWithIcon' component
771
+
772
+ # 1.0.0-alpha-129
773
+
774
+ - DropBox className Fix
775
+
776
+ # 1.0.0-alpha-128
777
+
778
+ - DateComponent => isEditable added
779
+
780
+ # 1.0.0-alpha-127
781
+
782
+ - DateComponent => error through fix
783
+
784
+ # 1.0.0-alpha-126
785
+
786
+ - AllY implementation for the button, textbox
787
+ - Semantic button added
788
+
789
+ # 1.0.0-alpha-125
790
+
791
+ - fize => font_sizevariable replaced
792
+ - Tab => moreiconActiveClass
793
+
794
+ # 1.0.0-alpha-124
795
+
796
+ - size => fsize
797
+
798
+ # 1.0.0-alpha-123
799
+
800
+ - Appcontainer RemFontVariable added
801
+
802
+ # 1.0.0-alpha-122
803
+
804
+ - Tag default bg color Changed
805
+ - AvatarTeam background color removed
806
+
807
+ # 1.0.0-alpha-121
808
+
809
+ - Dropbox shadow changed
810
+
811
+ # 1.0.0-alpha-120
812
+
813
+ - Reponsive Render Fixes
814
+ - DropBoxBorder Removed
815
+
816
+ # 1.0.0-alpha-119
817
+
818
+ - DateTime component Fix
819
+
820
+ # 1.0.0-alpha-118
821
+
822
+ - CustomResponsive Added
823
+
824
+ # 1.0.0-alpha-117
825
+
826
+ - DateTime Placeholder Selection Fix For Firefox
827
+
828
+ # 1.0.0-alpha-116
829
+
830
+ - DateTime Component Issue Fix , Row Fix, YearView Fix
831
+ - DateTime => i18keys prop added
832
+ - TextBoxWithIcon => children prop Parent Changed to Box
833
+
834
+ # 1.0.0-alpha-115
835
+
836
+ - DropBox => isDarkMode added
837
+ - DropDownHeading => isDarkMode added
838
+ - ListItem => palette dark added
839
+ - ListItemWithAvatar => isDarkMode,avatarPalette added
840
+ - EmptyState => isDarkMode added
841
+ - MultiSelect => isDarkMode,palette added
842
+ - MultiSelectWithAvatar => isDarkMode,palette added
843
+ - SelectedOptions => isDarkMode added
844
+ - Suggestions => isDarkMode, palette added
845
+ - Stencils => dark palette added
846
+ - Tag => isDarkMode prop added
847
+
848
+ # 1.0.0-alpha-114
849
+
850
+ - Tab iconSize Prop Added
851
+
852
+ # 1.0.0-alpha-113
853
+
854
+ - DateTime => isPadding prop added
855
+ - common diabled opacity changed to 0.5
856
+ - MultiSelect => isBoxPaddingNeed needa prop added
857
+ - DropBox => isBoxPaddingNeed prop added
858
+ - RippleEffect => primaryDark palette added
859
+
860
+ # 1.0.0-alpha-112
861
+
862
+ - Card scroll issue fix
863
+
864
+ # 1.0.0-alpha-111
865
+
866
+ - AdvancedGroupMultiSelect => children,getFooter, customClass added , Loader Handled
867
+ - GroupSelect => children, getFooter added
868
+ - Svg package Added
869
+ - RippleEffect => before zindex removed
870
+ - Container , Box Performance Fix
871
+ - Card ReRender Fix
872
+
873
+ # 1.0.0-alpha-110
874
+
875
+ - MultiSelect DataId Fix
876
+ - ToolTip Fix
877
+ - RippleEffect Added
878
+
879
+ # 1.0.0-alpha-109
880
+
881
+ - MultiSelect Data-Id fix
882
+ - Peer Dependencies Added
883
+
884
+ # 1.0.0-alpha-108
885
+
886
+ - Disabling internal state support for Accordion.
887
+ - Adding 'equalityCheck' function support for AccordionItem.
888
+
889
+ # 1.0.0-alpha-107
890
+
891
+ - Adding onScroll support for TabContentWrapper component
892
+
893
+ # 1.0.0-alpha-106
894
+
895
+ - Package Update
896
+
897
+ # 1.0.0-alpha-105
898
+
899
+ - icon, variable version update
900
+ - radio,checkbox,switch accessiblity changes => data-checked removed
901
+ - semantic button added
902
+
903
+ # 1.0.0-alpha-104
904
+
905
+ - Dropbox => isBoxPaddingNeed,isPadding Added
906
+
907
+ # 1.0.0-alpha-103
908
+
909
+ - Tag Flat Removed
910
+
911
+ # 1.0.0-alpha-102
912
+
913
+ - ListItemWithAvatar => avatarPalette added
914
+ - AdvancedGroupMultiSelect => needBorder added
915
+ - AdvancedMultiSelect => needBorder added
916
+ - Suggestions => avatarPalette added
917
+ - SelectWithAvatar => onRemove,avatarPalette,tagSize,groupName added
918
+ - Tag => avatarPalette added
919
+
920
+ # 1.0.0-alpha-101
921
+
922
+ - PortalLayer Fix Zindex
923
+
924
+ # 1.0.0-alpha-100
925
+
926
+ - Listitem Data-selected attr added, tabIndex Fixed
927
+
928
+ # 1.0.0-alpha-99
929
+
930
+ - Tab Click Fixed
931
+
932
+ # 1.0.0-alpha-98
933
+
934
+ - Modal Zindex issue fixed
935
+ - Tabs OnmouseDown Implement
936
+
937
+ # 1.0.0-alpha-97
938
+
939
+ - MultiSelect Issue Fix
940
+
941
+ # 1.0.0-alpha-96
942
+
943
+ - Tootltip Update
944
+ - Avatar -> textPalette,customTextClass added - font-family light removed
945
+ - AvatarTeam -> textPalette,customTextClass added
946
+
947
+ # 1.0.0-alpha-95
948
+
949
+ - Icon Package Update
950
+
951
+ # 1.0.0-alpha-94
952
+
953
+ - Tab Mapping Fix
954
+
955
+ # 1.0.0-alpha-93
956
+
957
+ - Tab Fixes
958
+
959
+ # 1.0.0-alpha-92
960
+
961
+ - Tab Custom Element Fix
962
+ - Avatar xlarge size changes
963
+
964
+ # 1.0.0-alpha-91
965
+
966
+ - Tab Click Prevent Fix
967
+
968
+ # 1.0.0-alpha-90
969
+
970
+ - Switch,CheckBox,Radio => data-checked added
971
+ - Tab Resize Issue Solved, setTitleForMoreOptions added for vertical, a11y tags added , gamma and zeta palatte removed
972
+ - ListItem TaBIndex Added
973
+
974
+ # 1.0.0-alpha-89
975
+
976
+ - Tooltip Change
977
+ - Icon Version Update
978
+ - For MultiSelect Based Components clearTitle prop Added
979
+ - tooltip added in Tag Component
980
+
981
+ # 1.0.0-alpha-88
982
+
983
+ - Datewidget/Datetime tested and docs update with @zohodesk/datetimejs package
984
+
985
+ # 1.0.0-alpha-87
986
+
987
+ - Date Component TimeZone Fix
988
+ - Unwanted Functions Removed from utils/Common
989
+
990
+ # 1.0.0-alpha-86
991
+
992
+ - Tooltip UI Updated
993
+ - DropDownFooter,DropDownHeader,DropDownMenu,SimpleDropdown Deleted
994
+ - DropDownHeading => children and customClass Added
995
+ - AdvancedGroupMultiSelect -> search fix
996
+ - MultiSelect -> search clear fix
997
+ - GroupSelect -> Keydown Fix
998
+
999
+ # 1.0.0-alpha-85
1000
+
1001
+ - Datetime/DateWidget Component changes from @zohodesk/datetimejs package
1002
+
1003
+ # 1.0.0-alpha-84
1004
+
1005
+ - ListItemWiithIcon Data-Id Fix
1006
+
1007
+ # 1.0.0-alpha-83
1008
+
1009
+ - CheckBox Prop Fix Update activeStyle added
1010
+
1011
+ # 1.0.0-alpha-82
1012
+
1013
+ - DateTime, DateWidget Changes => date return object Fix
1014
+ - autoFocus prop added in Textarea component
1015
+
1016
+ # 1.0.0-alpha-81
1017
+
1018
+ - variant - secondary type removed in a Label component
1019
+ - customClass Added For Label component
1020
+ - Radio, CheckBox SVG Updated, and Palette Danger Added, isFilled Added For Transparent BG
1021
+ - MultiSelect Avatar DataId Changes
1022
+
1023
+ # 1.0.0-alpha-80
1024
+
1025
+ - data-dottedTitle added for Tooltip
1026
+
1027
+ # 1.0.0-alpha-79
1028
+
1029
+ - Tag danger, default color changed to dot_bg_hawkesBlue
1030
+ - MultiSelectWithAvatar size prop passed for tags Parent
1031
+
1032
+ # 1.0.0-alpha-78
1033
+
1034
+ - isAbsolute,isAnimate,needAction,boxSize,className,innerClass prop added in DateTime
1035
+ - needBorder prop added in CalendarView
1036
+ - isAbsolutePositioningNeeded prop fixed in dropbox
1037
+ - Timezone Day light savings offset calculation fix in Date Components
1038
+ - isSearchClearOnClose props added for Select Based components
1039
+ - Radio line-heignt fix
1040
+
1041
+ # 1.0.0-alpha-77
1042
+
1043
+ - TestCase Fix
1044
+
1045
+ # 1.0.0-alpha-76
1046
+
1047
+ - ResizeObserver Implementation
1048
+
1049
+ # 1.0.0-alpha-75
1050
+
1051
+ - Select children prop undefined issue fix
1052
+
1053
+ # 1.0.0-alpha-74
1054
+
1055
+ - SelectWithIcon Component Added
1056
+ - getChildren,getFooter,getCustomEmptyState feature added in Select Component
1057
+
1058
+ # 1.0.0-alpha-73
1059
+
1060
+ - Appcontainer eleRef Supported
1061
+ - Responsive TouchDevice Fix
1062
+ - Stencils color Update
1063
+
1064
+ # 1.0.0-alpha-72
1065
+
1066
+ - BaseLine Added in Layout
1067
+ - hide added in CssProvider
1068
+
1069
+ # 1.0.0-alpha-71
1070
+
1071
+ - disableTitle and needAvatarTitle Added For List Items
1072
+ - Avatar Team Title Fix
1073
+
1074
+ # 1.0.0-alpha-70
1075
+
1076
+ - Leap Year Date Component Fix
1077
+ - Card Shrink issue Fix
1078
+
1079
+ # 1.0.0-alpha-69
1080
+
1081
+ - Exporting RefElement component from PortalLayer component
1082
+
1083
+ # 1.0.0-alpha-68
1084
+
1085
+ - Tab Width Calculation fix, Dotted Fix
1086
+ - SelectWithAvatar Fix
1087
+ - Select Fix
1088
+ - MultiSelect disableAction Fix
1089
+ - Variable Update
1090
+
1091
+ # 1.0.0-alpha-67
1092
+
1093
+ - Adding TourId and isAbsolutePositioningNeeded key in DropBox
1094
+ - Adding TourId in Box, Container, and Tab components
1095
+
1096
+ # 1.0.0-alpha-66
1097
+
1098
+ - Snap Update
1099
+
1100
+ # 1.0.0-alpha-65
1101
+
1102
+ - isDisabled, Readonly Unified in all Form Components
1103
+ - Date Dropdown => Select List Border Fix
1104
+ - Unified All Fields
1105
+
1106
+ # 1.0.0-alpha-64
1107
+
1108
+ - isDisabled Option added for List Item Based Atoms
1109
+ - needBorder and disableAction Option added for MultiSelect
1110
+ - Select BoxSize Added for DropBox
1111
+
1112
+ # 1.0.0-alpha-62
1113
+
1114
+ - Switch Title Issue Fixed
1115
+
1116
+ # 1.0.0-alpha-61
1117
+
1118
+ - Tab Click Issue Fixed
1119
+
1120
+ # 1.0.0-alpha-60
1121
+
1122
+ - Button Title Added
1123
+ - Tab Disabled Added
1124
+ - Tooltip Fix
1125
+
1126
+ # 1.0.0-alpha-59
1127
+
1128
+ - AppContainer Added
1129
+
1130
+ # 1.0.0-alpha-58
1131
+
1132
+ - Tag Line Height Issue Fixed
1133
+ - Advanced MultiSelect Event Passed in Argument
1134
+
1135
+ # 1.0.0-alpha-57
1136
+
1137
+ - Base Font Version 3 Updated
1138
+ - Advanced Group Multi-Select Added
1139
+
1140
+ # 1.0.0-alpha-56
1141
+
1142
+ - Accordion unMount Added
1143
+ - Icon Package Updated
1144
+ - Velocity Docs Added
1145
+
1146
+ # 1.0.0-alpha-55
1147
+
1148
+ - Tab Dot Color Convert
1149
+
1150
+ # 1.0.0-alpha-54
1151
+
1152
+ - GroupSelect Unlimited Scroll Fix
1153
+ - Dropdown Header Css After 1px Fix
1154
+
1155
+ # 1.0.0-alpha-53
1156
+
1157
+ - CustomScroll Make Optional
1158
+ - Reset Code Implemented in Portal
1159
+ - Icon Line-Height Remove
1160
+ - New Reports Icons Added
1161
+
1162
+ # 1.0.0-alpha-52
1163
+
1164
+ - Advance Multi-Select Added
1165
+
1166
+ # 1.0.0-alpha-51
1167
+
1168
+ - Docs Run Path Issue Fix
1169
+
1170
+ # 1.0.0-alpha-50
1171
+
1172
+ - VelocityAnimation Added
1173
+
1174
+ # 1.0.0-alpha-49
1175
+
1176
+ - Radio Test Cases Fixed
1177
+
1178
+ # 1.0.0-alpha-48
1179
+
1180
+ - TimeZone Added in DateTime and DateWidget
1181
+ - Radio DataId Fix
1182
+
1183
+ # 1.0.0-alpha-47
1184
+
1185
+ - DateTime Component needDefaultTime Prop Fix
1186
+ - Dot Variables Updated
1187
+ - For All ListItem Based IsTick Prop Removed
1188
+ - ResponsiveBox and ResponsiveContainer Removed
1189
+ - MultiSelect Fragment Implemented
1190
+
1191
+ # 1.0.0-alpha-46
1192
+
1193
+ - ReadMe Files Removed
1194
+ - Style Order Fixed
1195
+
1196
+ # 1.0.0-alpha-45
1197
+
1198
+ - Button RTL Issue Resolved
1199
+ - Unwanted Files Removed
1200
+ - Responsive Component Verified
1201
+
1202
+ # 1.0.0-alpha-44
1203
+
1204
+ - FontIcons and Variables Reverted.
1205
+
1206
+ # 1.0.0-alpha-43
1207
+
1208
+ - RTL Implemented.