@zohodesk/components 1.2.18 → 1.2.20

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 (356) hide show
  1. package/.cli/AppearanceThemeValidationExcludeFiles.js +1 -0
  2. package/.cli/PropLessFiles.html +1 -1
  3. package/.cli/PropUnificationExcludeFilesArray.js +231 -0
  4. package/.cli/propValidation_report.html +24 -2
  5. package/PropValidationExcludeFilesArray.js +1 -0
  6. package/README.md +10 -0
  7. package/assets/Appearance/dark/mode/Component_DarkMode.module.css +3 -0
  8. package/assets/Appearance/light/mode/Component_LightMode.module.css +3 -0
  9. package/assets/Appearance/pureDark/mode/Component_PureDarkMode.module.css +3 -0
  10. package/es/Avatar/Avatar.js +2 -1
  11. package/es/Avatar/Avatar.module.css +12 -0
  12. package/es/AvatarTeam/AvatarTeam.module.css +2 -0
  13. package/es/AvatarTeam/__tests__/__snapshots__/AvatarTeam.spec.js.snap +1 -0
  14. package/es/Button/css/Button.module.css +9 -1
  15. package/es/Buttongroup/Buttongroup.module.css +2 -0
  16. package/es/CheckBox/CheckBox.module.css +2 -0
  17. package/es/DateTime/DateTime.module.css +1 -0
  18. package/es/DateTime/dateFormatUtils/dateFormat.js +6 -1
  19. package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +7 -0
  20. package/es/DropBox/css/DropBox.module.css +1 -0
  21. package/es/DropDown/DropDownHeading.module.css +6 -0
  22. package/es/DropDown/DropDownItem.module.css +3 -0
  23. package/es/Label/Label.module.css +1 -0
  24. package/es/ListItem/ListContainer.js +3 -2
  25. package/es/ListItem/ListItem.module.css +21 -0
  26. package/es/MultiSelect/Suggestions.js +2 -1
  27. package/es/PopOver/PopOver.module.css +1 -0
  28. package/es/Radio/Radio.module.css +1 -0
  29. package/es/Ribbon/Ribbon.module.css +4 -0
  30. package/es/Select/Select.js +3 -2
  31. package/es/Switch/Switch.js +2 -2
  32. package/es/Switch/Switch.module.css +2 -0
  33. package/es/Switch/__tests__/__snapshots__/Switch.spec.js.snap +22 -22
  34. package/es/Tag/Tag.module.css +6 -0
  35. package/es/TextBox/TextBox.module.css +20 -0
  36. package/es/TextBoxIcon/TextBoxIcon.module.css +5 -0
  37. package/es/Textarea/Textarea.module.css +6 -0
  38. package/es/Tooltip/Tooltip.module.css +4 -0
  39. package/es/common/customscroll.module.css +37 -0
  40. package/es/v1/Accordion/Accordion.js +2 -2
  41. package/es/v1/Accordion/AccordionItem.js +2 -2
  42. package/es/v1/Accordion/props/defaultProps.js +12 -0
  43. package/es/v1/Accordion/props/propTypes.js +33 -0
  44. package/es/v1/Animation/Animation.js +2 -2
  45. package/es/v1/Animation/props/defaultProps.js +7 -0
  46. package/es/v1/Animation/props/propTypes.js +12 -0
  47. package/es/v1/AppContainer/AppContainer.js +2 -2
  48. package/es/v1/AppContainer/props/defaultProps.js +10 -0
  49. package/es/v1/AppContainer/props/propTypes.js +17 -0
  50. package/es/v1/Avatar/Avatar.js +4 -3
  51. package/es/v1/Avatar/props/defaultProps.js +17 -0
  52. package/es/v1/Avatar/props/propTypes.js +26 -0
  53. package/es/v1/AvatarTeam/AvatarTeam.js +3 -3
  54. package/es/v1/AvatarTeam/props/defaultProps.js +17 -0
  55. package/es/v1/AvatarTeam/props/propTypes.js +27 -0
  56. package/es/v1/Button/Button.js +2 -2
  57. package/es/v1/Button/props/defaultProps.js +18 -0
  58. package/es/v1/Button/props/propTypes.js +27 -0
  59. package/es/v1/Buttongroup/Buttongroup.js +2 -2
  60. package/es/v1/Buttongroup/props/defaultProps.js +6 -0
  61. package/es/v1/Buttongroup/props/propTypes.js +9 -0
  62. package/es/v1/Card/Card.js +2 -2
  63. package/es/v1/Card/props/defaultProps.js +25 -0
  64. package/es/v1/Card/props/propTypes.js +48 -0
  65. package/es/v1/CheckBox/CheckBox.js +4 -4
  66. package/es/v1/CheckBox/props/defaultProps.js +18 -0
  67. package/es/v1/CheckBox/props/propTypes.js +40 -0
  68. package/es/v1/DropBox/DropBox.js +2 -2
  69. package/es/v1/DropBox/DropBoxElement/DropBoxElement.js +2 -2
  70. package/es/v1/DropBox/DropBoxElement/props/defaultProps.js +18 -0
  71. package/es/v1/DropBox/DropBoxElement/props/propTypes.js +51 -0
  72. package/es/v1/DropBox/props/defaultProps.js +14 -0
  73. package/es/v1/DropBox/props/propTypes.js +16 -0
  74. package/es/v1/DropDown/DropDown.js +2 -2
  75. package/es/v1/DropDown/DropDownHeading.js +2 -2
  76. package/es/v1/DropDown/DropDownItem.js +2 -2
  77. package/es/v1/DropDown/DropDownSearch.js +2 -2
  78. package/es/v1/DropDown/DropDownSeparator.js +1 -1
  79. package/es/v1/DropDown/props/defaultProps.js +20 -0
  80. package/es/v1/DropDown/props/propTypes.js +65 -0
  81. package/es/v1/Heading/Heading.js +2 -2
  82. package/es/v1/Heading/props/defaultProps.js +5 -0
  83. package/es/v1/Heading/props/propTypes.js +11 -0
  84. package/es/v1/Label/Label.js +2 -2
  85. package/es/v1/Label/props/defaultProps.js +11 -0
  86. package/es/v1/Label/props/propTypes.js +19 -0
  87. package/es/v1/Layout/Box.js +2 -2
  88. package/es/v1/Layout/Container.js +2 -2
  89. package/es/v1/Layout/props/defaultProps.js +16 -0
  90. package/es/v1/Layout/props/propTypes.js +46 -0
  91. package/es/v1/ListItem/ListContainer.js +5 -4
  92. package/es/v1/ListItem/ListItem.js +2 -2
  93. package/es/v1/ListItem/ListItemWithAvatar.js +2 -2
  94. package/es/v1/ListItem/ListItemWithCheckBox.js +2 -2
  95. package/es/v1/ListItem/ListItemWithIcon.js +2 -2
  96. package/es/v1/ListItem/ListItemWithRadio.js +2 -2
  97. package/es/v1/ListItem/props/defaultProps.js +97 -0
  98. package/es/v1/ListItem/props/propTypes.js +202 -0
  99. package/es/v1/Modal/Modal.js +88 -116
  100. package/es/v1/Modal/props/defaultProps.js +3 -0
  101. package/es/v1/Modal/props/propTypes.js +7 -0
  102. package/es/v1/MultiSelect/AdvancedGroupMultiSelect.js +2 -2
  103. package/es/v1/MultiSelect/AdvancedMultiSelect.js +2 -2
  104. package/es/v1/MultiSelect/EmptyState.js +2 -2
  105. package/es/v1/MultiSelect/MobileHeader/MobileHeader.js +2 -2
  106. package/es/v1/MultiSelect/MobileHeader/props/defaultProps.js +7 -0
  107. package/es/v1/MultiSelect/MobileHeader/props/propTypes.js +7 -0
  108. package/es/v1/MultiSelect/MultiSelect.js +3 -3
  109. package/es/v1/MultiSelect/MultiSelectHeader.js +2 -2
  110. package/es/v1/MultiSelect/MultiSelectWithAvatar.js +3 -3
  111. package/es/v1/MultiSelect/SelectedOptions.js +2 -2
  112. package/es/v1/MultiSelect/Suggestions.js +4 -3
  113. package/es/v1/MultiSelect/props/defaultProps.js +153 -0
  114. package/es/v1/MultiSelect/props/propTypes.js +312 -0
  115. package/es/v1/PopOver/PopOver.js +2 -2
  116. package/es/v1/PopOver/props/defaultProps.js +7 -0
  117. package/es/v1/PopOver/props/propTypes.js +53 -0
  118. package/es/v1/Radio/Radio.js +4 -4
  119. package/es/v1/Radio/props/defaultProps.js +14 -0
  120. package/es/v1/Radio/props/propTypes.js +33 -0
  121. package/es/v1/Responsive/CustomResponsive.js +2 -2
  122. package/es/v1/Responsive/Responsive.js +2 -2
  123. package/es/v1/Responsive/props/defaultProps.js +13 -0
  124. package/es/v1/Responsive/props/propTypes.js +25 -0
  125. package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +2 -2
  126. package/es/v1/ResponsiveDropBox/props/defaultProps.js +4 -0
  127. package/es/v1/ResponsiveDropBox/props/propTypes.js +8 -0
  128. package/es/v1/Ribbon/Ribbon.js +3 -3
  129. package/es/v1/Ribbon/props/defaultProps.js +9 -0
  130. package/es/v1/Ribbon/props/propTypes.js +11 -0
  131. package/es/v1/RippleEffect/RippleEffect.js +2 -2
  132. package/es/v1/RippleEffect/props/defaultProps.js +9 -0
  133. package/es/v1/RippleEffect/props/propTypes.js +11 -0
  134. package/es/v1/Select/GroupSelect.js +2 -2
  135. package/es/v1/Select/Select.js +5 -4
  136. package/es/v1/Select/SelectWithAvatar.js +2 -2
  137. package/es/v1/Select/SelectWithIcon.js +2 -2
  138. package/es/v1/Select/props/defaultProps.js +119 -0
  139. package/es/v1/Select/props/propTypes.js +288 -0
  140. package/es/v1/Stencils/Stencils.js +2 -2
  141. package/es/v1/Stencils/props/defaultProps.js +6 -0
  142. package/es/v1/Stencils/props/propTypes.js +7 -0
  143. package/es/v1/Switch/Switch.js +4 -4
  144. package/es/v1/Switch/props/defaultProps.js +11 -0
  145. package/es/v1/Switch/props/propTypes.js +28 -0
  146. package/es/v1/Tab/Tab.js +2 -2
  147. package/es/v1/Tab/TabContent.js +2 -2
  148. package/es/v1/Tab/TabContentWrapper.js +2 -2
  149. package/es/v1/Tab/TabWrapper.js +2 -2
  150. package/es/v1/Tab/Tabs.js +2 -2
  151. package/es/v1/Tab/props/defaultProps.js +44 -0
  152. package/es/v1/Tab/props/propTypes.js +106 -0
  153. package/es/v1/Tag/Tag.js +2 -2
  154. package/es/v1/Tag/props/defaultProps.js +14 -0
  155. package/es/v1/Tag/props/propTypes.js +35 -0
  156. package/es/v1/TextBox/TextBox.js +2 -2
  157. package/es/v1/TextBox/props/defaultProps.js +19 -0
  158. package/es/v1/TextBox/props/propTypes.js +55 -0
  159. package/es/v1/TextBoxIcon/TextBoxIcon.js +2 -2
  160. package/es/v1/TextBoxIcon/props/defaultProps.js +22 -0
  161. package/es/v1/TextBoxIcon/props/propTypes.js +51 -0
  162. package/es/v1/Textarea/Textarea.js +2 -2
  163. package/es/v1/Textarea/props/defaultProps.js +17 -0
  164. package/es/v1/Textarea/props/propTypes.js +31 -0
  165. package/es/v1/Tooltip/Tooltip.js +2 -2
  166. package/es/v1/Tooltip/props/defaultProps.js +4 -0
  167. package/es/v1/Tooltip/props/propTypes.js +5 -0
  168. package/es/v1/Typography/css/Typography.module.css +83 -112
  169. package/es/v1/Typography/css/cssJSLogic.js +6 -2
  170. package/es/v1/Typography/props/propTypes.js +2 -2
  171. package/es/v1/Typography/utils/index.js +50 -0
  172. package/es/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +2 -2
  173. package/es/v1/VelocityAnimation/VelocityAnimation/props/defaultProps.js +7 -0
  174. package/es/v1/VelocityAnimation/VelocityAnimation/props/propTypes.js +12 -0
  175. package/es/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +2 -2
  176. package/es/v1/VelocityAnimation/VelocityAnimationGroup/props/defaultProps.js +15 -0
  177. package/es/v1/VelocityAnimation/VelocityAnimationGroup/props/propTypes.js +19 -0
  178. package/es/v1/semantic/Button/Button.js +2 -2
  179. package/es/v1/semantic/Button/props/defaultProps.js +12 -0
  180. package/es/v1/semantic/Button/props/propTypes.js +22 -0
  181. package/lib/Avatar/Avatar.js +2 -1
  182. package/lib/Avatar/Avatar.module.css +12 -0
  183. package/lib/AvatarTeam/AvatarTeam.module.css +2 -0
  184. package/lib/AvatarTeam/__tests__/__snapshots__/AvatarTeam.spec.js.snap +1 -0
  185. package/lib/Button/css/Button.module.css +9 -1
  186. package/lib/Buttongroup/Buttongroup.module.css +2 -0
  187. package/lib/CheckBox/CheckBox.module.css +2 -0
  188. package/lib/DateTime/DateTime.module.css +1 -0
  189. package/lib/DateTime/dateFormatUtils/dateFormat.js +6 -1
  190. package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +7 -0
  191. package/lib/DropBox/css/DropBox.module.css +1 -0
  192. package/lib/DropDown/DropDownHeading.module.css +6 -0
  193. package/lib/DropDown/DropDownItem.module.css +3 -0
  194. package/lib/Label/Label.module.css +1 -0
  195. package/lib/ListItem/ListContainer.js +10 -2
  196. package/lib/ListItem/ListItem.module.css +21 -0
  197. package/lib/MultiSelect/Suggestions.js +2 -1
  198. package/lib/PopOver/PopOver.module.css +1 -0
  199. package/lib/Radio/Radio.module.css +1 -0
  200. package/lib/Ribbon/Ribbon.module.css +4 -0
  201. package/lib/Select/Select.js +3 -2
  202. package/lib/Switch/Switch.js +2 -2
  203. package/lib/Switch/Switch.module.css +2 -0
  204. package/lib/Switch/__tests__/__snapshots__/Switch.spec.js.snap +22 -22
  205. package/lib/Tag/Tag.module.css +6 -0
  206. package/lib/TextBox/TextBox.module.css +20 -0
  207. package/lib/TextBoxIcon/TextBoxIcon.module.css +5 -0
  208. package/lib/Textarea/Textarea.module.css +6 -0
  209. package/lib/Tooltip/Tooltip.module.css +4 -0
  210. package/lib/common/customscroll.module.css +37 -0
  211. package/lib/v1/Accordion/Accordion.js +2 -2
  212. package/lib/v1/Accordion/AccordionItem.js +2 -2
  213. package/lib/v1/Accordion/props/defaultProps.js +20 -0
  214. package/lib/v1/Accordion/props/propTypes.js +45 -0
  215. package/lib/v1/Animation/Animation.js +2 -2
  216. package/lib/v1/Animation/props/defaultProps.js +14 -0
  217. package/lib/v1/Animation/props/propTypes.js +23 -0
  218. package/lib/v1/AppContainer/AppContainer.js +2 -2
  219. package/lib/v1/AppContainer/props/defaultProps.js +17 -0
  220. package/lib/v1/AppContainer/props/propTypes.js +28 -0
  221. package/lib/v1/Avatar/Avatar.js +4 -3
  222. package/lib/v1/Avatar/props/defaultProps.js +24 -0
  223. package/lib/v1/Avatar/props/propTypes.js +37 -0
  224. package/lib/v1/AvatarTeam/AvatarTeam.js +3 -3
  225. package/lib/v1/AvatarTeam/props/defaultProps.js +24 -0
  226. package/lib/v1/AvatarTeam/props/propTypes.js +38 -0
  227. package/lib/v1/Button/Button.js +2 -2
  228. package/lib/v1/Button/props/defaultProps.js +27 -0
  229. package/lib/v1/Button/props/propTypes.js +39 -0
  230. package/lib/v1/Buttongroup/Buttongroup.js +2 -2
  231. package/lib/v1/Buttongroup/props/defaultProps.js +13 -0
  232. package/lib/v1/Buttongroup/props/propTypes.js +20 -0
  233. package/lib/v1/Card/Card.js +2 -2
  234. package/lib/v1/Card/props/defaultProps.js +35 -0
  235. package/lib/v1/Card/props/propTypes.js +62 -0
  236. package/lib/v1/CheckBox/CheckBox.js +4 -4
  237. package/lib/v1/CheckBox/props/defaultProps.js +25 -0
  238. package/lib/v1/CheckBox/props/propTypes.js +51 -0
  239. package/lib/v1/DropBox/DropBox.js +2 -2
  240. package/lib/v1/DropBox/DropBoxElement/DropBoxElement.js +2 -2
  241. package/lib/v1/DropBox/DropBoxElement/props/defaultProps.js +25 -0
  242. package/lib/v1/DropBox/DropBoxElement/props/propTypes.js +62 -0
  243. package/lib/v1/DropBox/props/defaultProps.js +30 -0
  244. package/lib/v1/DropBox/props/propTypes.js +35 -0
  245. package/lib/v1/DropDown/DropDown.js +2 -2
  246. package/lib/v1/DropDown/DropDownHeading.js +2 -2
  247. package/lib/v1/DropDown/DropDownItem.js +2 -2
  248. package/lib/v1/DropDown/DropDownSearch.js +2 -2
  249. package/lib/v1/DropDown/DropDownSeparator.js +1 -1
  250. package/lib/v1/DropDown/props/defaultProps.js +30 -0
  251. package/lib/v1/DropDown/props/propTypes.js +87 -0
  252. package/lib/v1/Heading/Heading.js +2 -2
  253. package/lib/v1/Heading/props/defaultProps.js +12 -0
  254. package/lib/v1/Heading/props/propTypes.js +22 -0
  255. package/lib/v1/Label/Label.js +2 -2
  256. package/lib/v1/Label/props/defaultProps.js +18 -0
  257. package/lib/v1/Label/props/propTypes.js +30 -0
  258. package/lib/v1/Layout/Box.js +2 -2
  259. package/lib/v1/Layout/Container.js +2 -2
  260. package/lib/v1/Layout/props/defaultProps.js +24 -0
  261. package/lib/v1/Layout/props/propTypes.js +58 -0
  262. package/lib/v1/ListItem/ListContainer.js +12 -4
  263. package/lib/v1/ListItem/ListItem.js +2 -2
  264. package/lib/v1/ListItem/ListItemWithAvatar.js +2 -2
  265. package/lib/v1/ListItem/ListItemWithCheckBox.js +2 -2
  266. package/lib/v1/ListItem/ListItemWithIcon.js +2 -2
  267. package/lib/v1/ListItem/ListItemWithRadio.js +2 -2
  268. package/lib/v1/ListItem/props/defaultProps.js +109 -0
  269. package/lib/v1/ListItem/props/propTypes.js +196 -0
  270. package/lib/v1/Modal/Modal.js +120 -166
  271. package/lib/v1/Modal/props/defaultProps.js +10 -0
  272. package/lib/v1/Modal/props/propTypes.js +18 -0
  273. package/lib/v1/MultiSelect/AdvancedGroupMultiSelect.js +2 -2
  274. package/lib/v1/MultiSelect/AdvancedMultiSelect.js +2 -2
  275. package/lib/v1/MultiSelect/EmptyState.js +2 -2
  276. package/lib/v1/MultiSelect/MobileHeader/MobileHeader.js +2 -2
  277. package/lib/v1/MultiSelect/MobileHeader/props/defaultProps.js +14 -0
  278. package/lib/v1/MultiSelect/MobileHeader/props/propTypes.js +18 -0
  279. package/lib/v1/MultiSelect/MultiSelect.js +3 -3
  280. package/lib/v1/MultiSelect/MultiSelectHeader.js +2 -2
  281. package/lib/v1/MultiSelect/MultiSelectWithAvatar.js +3 -3
  282. package/lib/v1/MultiSelect/SelectedOptions.js +2 -2
  283. package/lib/v1/MultiSelect/Suggestions.js +4 -3
  284. package/lib/v1/MultiSelect/props/defaultProps.js +169 -0
  285. package/lib/v1/MultiSelect/props/propTypes.js +340 -0
  286. package/lib/v1/PopOver/PopOver.js +2 -2
  287. package/lib/v1/PopOver/props/defaultProps.js +15 -0
  288. package/lib/v1/PopOver/props/propTypes.js +66 -0
  289. package/lib/v1/Radio/Radio.js +4 -4
  290. package/lib/v1/Radio/props/defaultProps.js +21 -0
  291. package/lib/v1/Radio/props/propTypes.js +44 -0
  292. package/lib/v1/Responsive/CustomResponsive.js +2 -2
  293. package/lib/v1/Responsive/Responsive.js +2 -2
  294. package/lib/v1/Responsive/props/defaultProps.js +23 -0
  295. package/lib/v1/Responsive/props/propTypes.js +39 -0
  296. package/lib/v1/ResponsiveDropBox/ResponsiveDropBox.js +2 -2
  297. package/lib/v1/ResponsiveDropBox/props/defaultProps.js +11 -0
  298. package/lib/v1/ResponsiveDropBox/props/propTypes.js +27 -0
  299. package/lib/v1/Ribbon/Ribbon.js +3 -3
  300. package/lib/v1/Ribbon/props/defaultProps.js +16 -0
  301. package/lib/v1/Ribbon/props/propTypes.js +22 -0
  302. package/lib/v1/RippleEffect/RippleEffect.js +2 -2
  303. package/lib/v1/RippleEffect/props/defaultProps.js +16 -0
  304. package/lib/v1/RippleEffect/props/propTypes.js +22 -0
  305. package/lib/v1/Select/GroupSelect.js +2 -2
  306. package/lib/v1/Select/Select.js +5 -4
  307. package/lib/v1/Select/SelectWithAvatar.js +2 -2
  308. package/lib/v1/Select/SelectWithIcon.js +2 -2
  309. package/lib/v1/Select/props/defaultProps.js +120 -0
  310. package/lib/v1/Select/props/propTypes.js +310 -0
  311. package/lib/v1/Stencils/Stencils.js +2 -2
  312. package/lib/v1/Stencils/props/defaultProps.js +13 -0
  313. package/lib/v1/Stencils/props/propTypes.js +18 -0
  314. package/lib/v1/Switch/Switch.js +4 -4
  315. package/lib/v1/Switch/props/defaultProps.js +18 -0
  316. package/lib/v1/Switch/props/propTypes.js +39 -0
  317. package/lib/v1/Tab/Tab.js +2 -2
  318. package/lib/v1/Tab/TabContent.js +2 -2
  319. package/lib/v1/Tab/TabContentWrapper.js +2 -2
  320. package/lib/v1/Tab/TabWrapper.js +2 -2
  321. package/lib/v1/Tab/Tabs.js +2 -2
  322. package/lib/v1/Tab/props/defaultProps.js +55 -0
  323. package/lib/v1/Tab/props/propTypes.js +121 -0
  324. package/lib/v1/Tag/Tag.js +2 -2
  325. package/lib/v1/Tag/props/defaultProps.js +21 -0
  326. package/lib/v1/Tag/props/propTypes.js +46 -0
  327. package/lib/v1/TextBox/TextBox.js +2 -2
  328. package/lib/v1/TextBox/props/defaultProps.js +26 -0
  329. package/lib/v1/TextBox/props/propTypes.js +62 -0
  330. package/lib/v1/TextBoxIcon/TextBoxIcon.js +2 -2
  331. package/lib/v1/TextBoxIcon/props/defaultProps.js +29 -0
  332. package/lib/v1/TextBoxIcon/props/propTypes.js +70 -0
  333. package/lib/v1/Textarea/Textarea.js +2 -2
  334. package/lib/v1/Textarea/props/defaultProps.js +24 -0
  335. package/lib/v1/Textarea/props/propTypes.js +42 -0
  336. package/lib/v1/Tooltip/Tooltip.js +2 -2
  337. package/lib/v1/Tooltip/props/defaultProps.js +11 -0
  338. package/lib/v1/Tooltip/props/propTypes.js +16 -0
  339. package/lib/v1/Typography/css/Typography.module.css +83 -112
  340. package/lib/v1/Typography/css/cssJSLogic.js +7 -3
  341. package/lib/v1/Typography/props/propTypes.js +2 -2
  342. package/lib/v1/Typography/utils/index.js +59 -0
  343. package/lib/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +2 -2
  344. package/lib/v1/VelocityAnimation/VelocityAnimation/props/defaultProps.js +14 -0
  345. package/lib/v1/VelocityAnimation/VelocityAnimation/props/propTypes.js +23 -0
  346. package/lib/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +2 -2
  347. package/lib/v1/VelocityAnimation/VelocityAnimationGroup/props/defaultProps.js +22 -0
  348. package/lib/v1/VelocityAnimation/VelocityAnimationGroup/props/propTypes.js +30 -0
  349. package/lib/v1/semantic/Button/Button.js +2 -2
  350. package/lib/v1/semantic/Button/props/defaultProps.js +19 -0
  351. package/lib/v1/semantic/Button/props/propTypes.js +33 -0
  352. package/package.json +12 -10
  353. package/propValidationArg.json +8 -0
  354. package/result.json +1 -1
  355. package/es/v1/Typography/css/letterSpacingMap.js +0 -12
  356. package/lib/v1/Typography/css/letterSpacingMap.js +0 -20
@@ -0,0 +1,106 @@
1
+ import PropTypes from 'prop-types';
2
+ export const Tab_propTypes = {
3
+ activeClass: PropTypes.string,
4
+ align: PropTypes.string,
5
+ children: PropTypes.oneOfType([PropTypes.element, PropTypes.string]),
6
+ className: PropTypes.string,
7
+ dataId: PropTypes.string,
8
+ getTabRef: PropTypes.func,
9
+ href: PropTypes.string,
10
+ id: PropTypes.string,
11
+ isActive: PropTypes.bool,
12
+ isAnimate: PropTypes.bool,
13
+ isDisabled: PropTypes.bool,
14
+ isLink: PropTypes.bool,
15
+ needAppearance: PropTypes.bool,
16
+ needBorder: PropTypes.bool,
17
+ onClick: PropTypes.func,
18
+ onSelect: PropTypes.func,
19
+ style: PropTypes.object,
20
+ text: PropTypes.string,
21
+ title: PropTypes.string,
22
+ titlePosition: PropTypes.oneOf(['top', 'bottom', 'right', 'left']),
23
+ tourId: PropTypes.string,
24
+ type: PropTypes.string,
25
+ customProps: PropTypes.object,
26
+ isVirtual: PropTypes.bool,
27
+ dataSelectorId: PropTypes.string
28
+ };
29
+ export const TabContent_propTypes = {
30
+ children: PropTypes.node,
31
+ dataId: PropTypes.string,
32
+ id: PropTypes.string,
33
+ scroll: PropTypes.oneOf(['vertical', 'horizontal', 'both', 'none']),
34
+ dataSelectorId: PropTypes.string
35
+ };
36
+ export const TabContentWrapper_propTypes = {
37
+ children: PropTypes.node,
38
+ className: PropTypes.string,
39
+ dataId: PropTypes.string,
40
+ onScroll: PropTypes.func,
41
+ selectedTab: PropTypes.string,
42
+ style: PropTypes.object,
43
+ dataSelectorId: PropTypes.string
44
+ };
45
+ export const Tabs_propTypes = {
46
+ align: PropTypes.oneOf(['vertical', 'horizontal']),
47
+ boxPosition: PropTypes.string,
48
+ childType: PropTypes.elementType,
49
+ children: PropTypes.array,
50
+ className: PropTypes.string,
51
+ dataId: PropTypes.string,
52
+ getContainerRef: PropTypes.func,
53
+ highlightClass: PropTypes.string,
54
+ iconName: PropTypes.string,
55
+ iconSize: PropTypes.string,
56
+ isAnimate: PropTypes.bool,
57
+ isPopupOpen: PropTypes.bool,
58
+ isPopupReady: PropTypes.bool,
59
+ isResponsive: PropTypes.bool,
60
+ itemActiveClass: PropTypes.string,
61
+ itemClass: PropTypes.string,
62
+ maxTabsCount: PropTypes.number,
63
+ menuItemClass: PropTypes.string,
64
+ minTabsCount: PropTypes.number,
65
+ moreBoxClass: PropTypes.string,
66
+ moreButtonActiveClass: PropTypes.string,
67
+ moreButtonClass: PropTypes.string,
68
+ moreContainerClass: PropTypes.string,
69
+ needAppearance: PropTypes.bool,
70
+ needBorder: PropTypes.bool,
71
+ needPadding: PropTypes.bool,
72
+ needTabBorder: PropTypes.bool,
73
+ onScroll: PropTypes.func,
74
+ onSelect: PropTypes.func,
75
+ position: PropTypes.string,
76
+ removeClose: PropTypes.func,
77
+ selectedTab: PropTypes.string,
78
+ showTitleInMoreOptions: PropTypes.bool,
79
+ style: PropTypes.object,
80
+ togglePopup: PropTypes.func,
81
+ type: PropTypes.oneOf(['alpha', 'beta', 'delta']),
82
+ getTargetRef: PropTypes.func,
83
+ containerClass: PropTypes.string,
84
+ customProps: PropTypes.shape({
85
+ DropBoxProps: PropTypes.object,
86
+ ListItemProps: PropTypes.object,
87
+ MoreButtonProps: PropTypes.object
88
+ }),
89
+ getCustomDropBoxHeaderPlaceHolder: PropTypes.func,
90
+ dataSelectorId: PropTypes.string
91
+ };
92
+ export const TabWrapper_propTypes = {
93
+ align: PropTypes.oneOf(['vertical', 'horizontal']),
94
+ children: PropTypes.node,
95
+ dataId: PropTypes.string,
96
+ defaultTab: PropTypes.string,
97
+ hookToDisableInternalState: PropTypes.bool,
98
+ isAnimate: PropTypes.bool,
99
+ needAppearance: PropTypes.bool,
100
+ needBorder: PropTypes.bool,
101
+ needPadding: PropTypes.bool,
102
+ needTabBorder: PropTypes.bool,
103
+ onSelect: PropTypes.func,
104
+ type: PropTypes.oneOf(['alpha', 'beta', 'delta']),
105
+ dataSelectorId: PropTypes.string
106
+ };
package/es/v1/Tag/Tag.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import React, { memo } from 'react';
2
- import { defaultProps } from '../../Tag/props/defaultProps';
3
- import { propTypes } from '../../Tag/props/propTypes';
2
+ import { defaultProps } from './props/defaultProps';
3
+ import { propTypes } from './props/propTypes';
4
4
  import { Icon } from '@zohodesk/icons';
5
5
  import Avatar from '../Avatar/Avatar';
6
6
  import { Container } from '../Layout';
@@ -0,0 +1,14 @@
1
+ export const defaultProps = {
2
+ active: false,
3
+ closePalette: 'danger',
4
+ hasAvatar: false,
5
+ palette: 'default',
6
+ rounded: true,
7
+ size: 'medium',
8
+ dataId: 'tag',
9
+ customClass: {},
10
+ a11y: {},
11
+ needEffect: true,
12
+ isReadOnly: false,
13
+ dataSelectorId: 'tag'
14
+ };
@@ -0,0 +1,35 @@
1
+ import PropTypes from 'prop-types';
2
+ export const propTypes = {
3
+ active: PropTypes.bool,
4
+ avatarPalette: PropTypes.string,
5
+ closePalette: PropTypes.oneOf(['danger', 'primary']),
6
+ closeTitle: PropTypes.string,
7
+ dataId: PropTypes.string,
8
+ disabled: PropTypes.bool,
9
+ getRef: PropTypes.func,
10
+ hasAvatar: PropTypes.bool,
11
+ iconName: PropTypes.string,
12
+ iconSize: PropTypes.string,
13
+ id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
14
+ imageURL: PropTypes.string,
15
+ initial: PropTypes.string,
16
+ onRemove: PropTypes.func,
17
+ onSelectTag: PropTypes.func,
18
+ palette: PropTypes.oneOf(['default', 'danger', 'secondary', 'pureDotted', 'primaryDotted', 'dark', 'pureDarkDotted', 'darkPrimaryDotted', 'defaultLink']),
19
+ rounded: PropTypes.bool,
20
+ size: PropTypes.oneOf(['small', 'medium']),
21
+ text: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
22
+ tooltip: PropTypes.string,
23
+ customClass: PropTypes.shape({
24
+ customTag: PropTypes.string,
25
+ customTagClose: PropTypes.string,
26
+ customTagIcon: PropTypes.string,
27
+ customAvatar: PropTypes.string
28
+ }),
29
+ a11y: PropTypes.shape({
30
+ clearLabel: PropTypes.string
31
+ }),
32
+ needEffect: PropTypes.bool,
33
+ isReadOnly: PropTypes.bool,
34
+ dataSelectorId: PropTypes.string
35
+ };
@@ -1,8 +1,8 @@
1
1
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
2
 
3
3
  import React, { memo, useRef, useCallback } from 'react';
4
- import { defaultProps } from '../../TextBox/props/defaultProps';
5
- import { propTypes } from '../../TextBox/props/propTypes';
4
+ import { defaultProps } from './props/defaultProps';
5
+ import { propTypes } from './props/propTypes';
6
6
  import style from '../../TextBox/TextBox.module.css';
7
7
 
8
8
  function TextBox(props) {
@@ -0,0 +1,19 @@
1
+ export const defaultProps = {
2
+ isDisabled: false,
3
+ isReadOnly: false,
4
+ needBorder: true,
5
+ size: 'medium',
6
+ type: 'text',
7
+ variant: 'default',
8
+ dataId: 'textBox',
9
+ needReadOnlyStyle: true,
10
+ needAppearance: true,
11
+ isClickable: false,
12
+ needEffect: true,
13
+ autoComplete: true,
14
+ borderColor: 'default',
15
+ a11y: {},
16
+ isFocus: false,
17
+ customProps: {},
18
+ dataSelectorId: 'textBox'
19
+ };
@@ -0,0 +1,55 @@
1
+ import PropTypes from 'prop-types';
2
+ export const propTypes = {
3
+ autofocus: PropTypes.bool,
4
+ borderColor: PropTypes.oneOf(['transparent', 'default']),
5
+ dataId: PropTypes.string,
6
+ htmlId: PropTypes.string,
7
+ id: PropTypes.string,
8
+ inputRef: PropTypes.func,
9
+ isClickable: PropTypes.bool,
10
+ isDisabled: PropTypes.bool,
11
+ isReadOnly: PropTypes.bool,
12
+ maxLength: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
13
+ name: PropTypes.string,
14
+ needAppearance: PropTypes.bool,
15
+ needBorder: PropTypes.bool,
16
+ needEffect: PropTypes.bool,
17
+ needReadOnlyStyle: PropTypes.bool,
18
+ onBlur: PropTypes.func,
19
+ onChange: PropTypes.func,
20
+ onClick: PropTypes.func,
21
+ onFocus: PropTypes.func,
22
+ onKeyDown: PropTypes.func,
23
+ onKeyPress: PropTypes.func,
24
+ onKeyUp: PropTypes.func,
25
+ onMouseDown: PropTypes.func,
26
+ placeHolder: PropTypes.string,
27
+ size: PropTypes.oneOf(['small', 'xsmall', 'medium', 'xmedium']),
28
+ type: PropTypes.oneOf(['text', 'password', 'number']),
29
+ value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
30
+ variant: PropTypes.oneOf(['primary', 'secondary', 'default', 'light']),
31
+ htmlId: PropTypes.string,
32
+ customClass: PropTypes.string,
33
+ htmlId: PropTypes.string,
34
+ a11y: PropTypes.shape({
35
+ role: PropTypes.string,
36
+ ariaAutocomplete: PropTypes.string,
37
+ ariaControls: PropTypes.string,
38
+ ariaDescribedby: PropTypes.string,
39
+ ariaExpanded: PropTypes.bool,
40
+ ariaLabel: PropTypes.string,
41
+ autoComplete: PropTypes.bool,
42
+ ariaHaspopup: PropTypes.bool,
43
+ ariaRequired: PropTypes.bool,
44
+ ariaLabelledby: PropTypes.string,
45
+ ariaInvalid: PropTypes.bool,
46
+ ariaOwns: PropTypes.string,
47
+ ariaActivedescendant: PropTypes.string,
48
+ ariaReadonly: PropTypes.bool,
49
+ ariaMultiselectable: PropTypes.bool
50
+ }),
51
+ isFocus: PropTypes.bool,
52
+ customProps: PropTypes.object,
53
+ dataSelectorId: PropTypes.string,
54
+ autoComplete: PropTypes.bool
55
+ };
@@ -1,8 +1,8 @@
1
1
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
2
 
3
3
  import React, { useState, useRef, useCallback } from 'react';
4
- import { defaultProps } from '../../TextBoxIcon/props/defaultProps';
5
- import { propTypes } from '../../TextBoxIcon/props/propTypes';
4
+ import { defaultProps } from './props/defaultProps';
5
+ import { propTypes } from './props/propTypes';
6
6
  import TextBox from '../TextBox/TextBox';
7
7
  import { Container, Box } from '../Layout';
8
8
  import { Icon } from '@zohodesk/icons';
@@ -0,0 +1,22 @@
1
+ export const defaultProps = {
2
+ isDisabled: false,
3
+ isReadOnly: false,
4
+ iconRotated: false,
5
+ maxLength: '250',
6
+ needBorder: true,
7
+ size: 'medium',
8
+ type: 'text',
9
+ variant: 'default',
10
+ needReadOnlyStyle: true,
11
+ isClickable: false,
12
+ needEffect: true,
13
+ dataId: 'textBoxIcon',
14
+ borderColor: 'default',
15
+ showClearIcon: false,
16
+ i18nKeys: {},
17
+ customClass: {},
18
+ iconOnHover: false,
19
+ isFocus: false,
20
+ customProps: {},
21
+ dataSelectorId: 'textBoxIcon'
22
+ };
@@ -0,0 +1,51 @@
1
+ import PropTypes from 'prop-types';
2
+ import { propTypes as TextBox_propTypes } from '../../TextBox/props/propTypes';
3
+ export const propTypes = { ...TextBox_propTypes,
4
+ borderColor: PropTypes.oneOf(['transparent', 'default', 'error']),
5
+ children: PropTypes.node,
6
+ dataId: PropTypes.string,
7
+ dataSelectorId: PropTypes.string,
8
+ htmlId: PropTypes.string,
9
+ i18nKeys: PropTypes.shape({
10
+ clearText: PropTypes.string
11
+ }),
12
+ iconRotated: PropTypes.bool,
13
+ id: PropTypes.string,
14
+ inputRef: PropTypes.func,
15
+ isClickable: PropTypes.bool,
16
+ isDisabled: PropTypes.bool,
17
+ isReadOnly: PropTypes.bool,
18
+ maxLength: PropTypes.string,
19
+ name: PropTypes.string,
20
+ needBorder: PropTypes.bool,
21
+ needEffect: PropTypes.bool,
22
+ needReadOnlyStyle: PropTypes.bool,
23
+ onBlur: PropTypes.func,
24
+ onChange: PropTypes.func,
25
+ onClear: PropTypes.func,
26
+ onClick: PropTypes.func,
27
+ onFocus: PropTypes.func,
28
+ onKeyDown: PropTypes.func,
29
+ onKeyPress: PropTypes.func,
30
+ onKeyUp: PropTypes.func,
31
+ onMouseDown: PropTypes.func,
32
+ placeHolder: PropTypes.string,
33
+ showClearIcon: PropTypes.bool,
34
+ size: PropTypes.oneOf(['small', 'xsmall', 'medium', 'xmedium']),
35
+ title: PropTypes.func,
36
+ type: PropTypes.oneOf(['text', 'password', 'number']),
37
+ value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
38
+ variant: PropTypes.oneOf(['primary', 'secondary', 'default']),
39
+ customClass: PropTypes.shape({
40
+ customTBoxWrap: PropTypes.string,
41
+ customTextBox: PropTypes.string,
42
+ customTBoxIcon: PropTypes.string,
43
+ customTBoxLine: PropTypes.string
44
+ }),
45
+ iconOnHover: PropTypes.bool,
46
+ isFocus: PropTypes.bool,
47
+ onClearMouseDown: PropTypes.func,
48
+ customProps: PropTypes.shape({
49
+ TextBoxProps: PropTypes.object
50
+ })
51
+ };
@@ -1,8 +1,8 @@
1
1
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
2
 
3
3
  import React, { useRef } from 'react';
4
- import { defaultProps } from '../../Textarea/props/defaultProps';
5
- import { propTypes } from '../../Textarea/props/propTypes';
4
+ import { defaultProps } from './props/defaultProps';
5
+ import { propTypes } from './props/propTypes';
6
6
  import style from '../../Textarea/Textarea.module.css';
7
7
  export default function Textarea(props) {
8
8
  let {
@@ -0,0 +1,17 @@
1
+ export const defaultProps = {
2
+ isDisabled: false,
3
+ isReadOnly: false,
4
+ dataId: 'TextareaComp',
5
+ needBorder: true,
6
+ resize: 'none',
7
+ size: 'small',
8
+ variant: 'default',
9
+ needAppearance: true,
10
+ needReadOnlyStyle: true,
11
+ borderColor: 'default',
12
+ needEffect: true,
13
+ autoFocus: false,
14
+ customClass: '',
15
+ a11y: {},
16
+ dataSelectorId: 'textarea'
17
+ };
@@ -0,0 +1,31 @@
1
+ import PropTypes from 'prop-types';
2
+ export const propTypes = {
3
+ animated: PropTypes.bool,
4
+ autoFocus: PropTypes.bool,
5
+ borderColor: PropTypes.oneOf(['transparent', 'default']),
6
+ dataId: PropTypes.string,
7
+ dataSelectorId: PropTypes.string,
8
+ getRef: PropTypes.func,
9
+ htmlId: PropTypes.string,
10
+ isDisabled: PropTypes.bool,
11
+ isReadOnly: PropTypes.bool,
12
+ maxLength: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
13
+ needAppearance: PropTypes.bool,
14
+ needBorder: PropTypes.bool,
15
+ needEffect: PropTypes.bool,
16
+ needReadOnlyStyle: PropTypes.bool,
17
+ onBlur: PropTypes.func,
18
+ onChange: PropTypes.func,
19
+ onFocus: PropTypes.func,
20
+ onKeyDown: PropTypes.func,
21
+ placeHolder: PropTypes.string,
22
+ resize: PropTypes.oneOf(['horizontal', 'vertical', 'both', 'none']),
23
+ size: PropTypes.oneOf(['xsmall', 'small', 'xmedium', 'medium', 'large']),
24
+ text: PropTypes.string,
25
+ variant: PropTypes.oneOf(['default', 'primary']),
26
+ customClass: PropTypes.string,
27
+ a11y: PropTypes.shape({
28
+ ariaLabel: PropTypes.string,
29
+ ariaLabelledby: PropTypes.string
30
+ })
31
+ };
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { defaultProps } from '../../Tooltip/props/defaultProps';
3
- import { propTypes } from '../../Tooltip/props/propTypes';
2
+ import { defaultProps } from './props/defaultProps';
3
+ import { propTypes } from './props/propTypes';
4
4
  import { getLibraryConfig } from '../../Provider/Config';
5
5
  import style from '../../Tooltip/Tooltip.module.css';
6
6
  import ResizeObserver from '../Responsive/ResizeObserver';
@@ -0,0 +1,4 @@
1
+ export const defaultProps = {
2
+ dataId: 'toolTip',
3
+ customClass: ''
4
+ };
@@ -0,0 +1,5 @@
1
+ import PropTypes from 'prop-types';
2
+ export const propTypes = {
3
+ dataId: PropTypes.string,
4
+ customClass: PropTypes.string
5
+ };
@@ -238,130 +238,77 @@
238
238
  .lineheight_inherit{
239
239
  line-height: inherit;
240
240
  }
241
- .lineheight_0{
242
- line-height: 0px;
243
- }
244
- .lineheight_1{
245
- line-height: 1;
246
- }
247
- .lineheight_8{
248
- line-height: 8px;
249
- }
250
- .lineheight_10{
251
- line-height: 10px;
252
- }
253
- .lineheight_11{
254
- line-height: 11px;
255
- }
256
- .lineheight_12{
257
- line-height: 12px;
258
- }
259
- .lineheight_13{
260
- line-height: 13px;
261
- }
262
- .lineheight_14{
263
- line-height: 14px;
264
- }
265
- .lineheight_15{
266
- line-height: 15px;
267
- }
268
- .lineheight_16{
269
- line-height: 16px;
270
- }
271
- .lineheight_17{
272
- line-height: 17px;
273
- }
274
- .lineheight_18{
275
- line-height: 18px;
276
- }
277
- .lineheight_19{
278
- line-height: 19px;
279
- }
280
- .lineheight_20{
281
- line-height: 20px;
282
- }
283
- .lineheight_21{
284
- line-height: 21px;
285
- }
286
- .lineheight_22{
287
- line-height: 22px;
241
+ .lineheight_initial{
242
+ line-height: initial;
288
243
  }
289
- .lineheight_24{
290
- line-height: 24px;
244
+ .lineheight_normal{
245
+ line-height: normal;
291
246
  }
292
- .lineheight_25{
293
- line-height: 25px;
294
- }
295
- .lineheight_26{
296
- line-height: 26px;
297
- }
298
- .lineheight_27{
299
- line-height: 27px;
300
- }
301
- .lineheight_28{
302
- line-height: 28px;
247
+ .lineheight_0{
248
+ line-height: 0;
303
249
  }
304
- .lineheight_29{
305
- line-height: 29px;
250
+ .lineheight_0_1{
251
+ line-height: 0.1;
306
252
  }
307
- .lineheight_30{
308
- line-height: 30px;
253
+ .lineheight_0_2{
254
+ line-height: 0.2;
309
255
  }
310
- .lineheight_32{
311
- line-height: 32px;
256
+ .lineheight_0_3{
257
+ line-height: 0.3;
312
258
  }
313
- .lineheight_33{
314
- line-height: 33px;
259
+ .lineheight_0_4{
260
+ line-height: 0.4;
315
261
  }
316
- .lineheight_34{
317
- line-height: 34px;
262
+ .lineheight_0_5{
263
+ line-height: 0.5;
318
264
  }
319
- .lineheight_35{
320
- line-height: 35px;
265
+ .lineheight_0_6{
266
+ line-height: 0.6;
321
267
  }
322
- .lineheight_36{
323
- line-height: 36px;
268
+ .lineheight_0_7{
269
+ line-height: 0.7;
324
270
  }
325
- .lineheight_38{
326
- line-height: 38px;
271
+ .lineheight_0_8{
272
+ line-height: 0.8;
327
273
  }
328
- .lineheight_40{
329
- line-height: 40px;
274
+ .lineheight_0_9{
275
+ line-height: 0.9;
330
276
  }
331
- .lineheight_41{
332
- line-height: 41px;
277
+ .lineheight_1{
278
+ line-height: 1;
333
279
  }
334
- .lineheight_42{
335
- line-height: 42px;
280
+ .lineheight_1_1{
281
+ line-height: 1.1;
336
282
  }
337
- .lineheight_45{
338
- line-height: 45px;
283
+ .lineheight_1_2{
284
+ line-height: 1.2;
339
285
  }
340
- .lineheight_50{
341
- line-height: 50px;
286
+ .lineheight_1_3{
287
+ line-height: 1.3;
342
288
  }
343
- .lineheight_52{
344
- line-height: 52px;
289
+ .lineheight_1_4{
290
+ line-height: 1.4;
345
291
  }
346
- .lineheight_54{
347
- line-height: 54px;
292
+ .lineheight_1_5{
293
+ line-height: 1.5;
348
294
  }
349
- .lineheight_55{
350
- line-height: 55px;
295
+ .lineheight_1_6{
296
+ line-height: 1.6;
351
297
  }
352
- .lineheight_60{
353
- line-height: 60px;
298
+ .lineheight_1_7{
299
+ line-height: 1.7;
354
300
  }
355
- .lineheight_70{
356
- line-height: 70px;
301
+ .lineheight_1_8{
302
+ line-height: 1.8;
357
303
  }
358
- .lineheight_75{
359
- line-height: 75px;
304
+ .lineheight_1_9{
305
+ line-height: 1.9;
360
306
  }
361
- .lineheight_120{
362
- line-height: 120px;
307
+ .lineheight_2{
308
+ line-height: 2;
363
309
  }
364
310
 
311
+
365
312
  /*............... Lineheight End.........*/
366
313
 
367
314
  /*............... Letterspacing Start.........*/
@@ -369,41 +316,65 @@
369
316
  .letterspacing_inherit{
370
317
  letter-spacing:inherit;
371
318
  }
372
- .letterspacing_01{
319
+ .letterspacing_0_1{
373
320
  letter-spacing: 0.1px;
374
321
  }
375
- .letterspacing_02{
322
+ .letterspacing_0_2{
376
323
  letter-spacing: 0.2px;
377
324
  }
378
- .letterspacing_03{
325
+ .letterspacing_0_3{
379
326
  letter-spacing: 0.3px;
380
327
  }
381
- .letterspacing_04{
328
+ .letterspacing_0_4{
382
329
  letter-spacing: 0.4px;
383
330
  }
384
- .letterspacing_05{
331
+ .letterspacing_0_5{
385
332
  letter-spacing: 0.5px;
386
333
  }
387
- .letterspacing_06{
334
+ .letterspacing_0_6{
388
335
  letter-spacing: 0.6px;
389
336
  }
390
- .letterspacing_07{
337
+ .letterspacing_0_7{
391
338
  letter-spacing: 0.7px;
392
339
  }
393
- .letterspacing_08{
340
+ .letterspacing_0_8{
394
341
  letter-spacing: 0.8px;
395
342
  }
396
- .letterspacing_09{
343
+ .letterspacing_0_9{
397
344
  letter-spacing: 0.9px;
398
345
  }
399
346
  .letterspacing_1{
400
347
  letter-spacing: 1px;
401
348
  }
349
+ .letterspacing_1_1{
350
+ letter-spacing: 1.1px;
351
+ }
352
+ .letterspacing_1_2{
353
+ letter-spacing: 1.2px;
354
+ }
355
+ .letterspacing_1_3{
356
+ letter-spacing: 1.3px;
357
+ }
358
+ .letterspacing_1_4{
359
+ letter-spacing: 1.4px;
360
+ }
361
+ .letterspacing_1_5{
362
+ letter-spacing: 1.5px;
363
+ }
364
+ .letterspacing_1_6{
365
+ letter-spacing: 1.6px;
366
+ }
367
+ .letterspacing_1_7{
368
+ letter-spacing: 1.7px;
369
+ }
370
+ .letterspacing_1_8{
371
+ letter-spacing: 1.8px;
372
+ }
373
+ .letterspacing_1_9{
374
+ letter-spacing: 1.9px;
375
+ }
402
376
  .letterspacing_2{
403
377
  letter-spacing: 2px;
404
378
  }
405
- .letterspacing_4{
406
- letter-spacing: 4px;
407
- }
408
379
 
409
380
  /*............... Letterspacing End.........*/