@zohodesk/dot 1.0.0-beta.25 → 1.0.0-beta.251

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 (1537) hide show
  1. package/README.md +1122 -11
  2. package/assets/Appearance/dark/mode/dotDarkMode.module.css +541 -0
  3. package/assets/Appearance/dark/themes/blue/blueDarkDotTheme.module.css +16 -0
  4. package/assets/Appearance/dark/themes/green/greenDarkDotTheme.module.css +16 -0
  5. package/assets/Appearance/dark/themes/orange/orangeDarkDotTheme.module.css +16 -0
  6. package/assets/Appearance/dark/themes/red/redDarkDotTheme.module.css +16 -0
  7. package/assets/Appearance/dark/themes/yellow/yellowDarkDotTheme.module.css +16 -0
  8. package/assets/Appearance/default/mode/dotDefaultMode.module.css +541 -0
  9. package/assets/Appearance/default/themes/blue/blueDefaultDotTheme.module.css +16 -0
  10. package/assets/Appearance/default/themes/green/greenDefaultDotTheme.module.css +16 -0
  11. package/assets/Appearance/default/themes/orange/orangeDefaultDotTheme.module.css +16 -0
  12. package/assets/Appearance/default/themes/red/redDefaultDotTheme.module.css +16 -0
  13. package/assets/Appearance/default/themes/yellow/yellowDefaultDotTheme.module.css +16 -0
  14. package/assets/Appearance/pureDark/mode/dotPureDarkMode.module.css +541 -0
  15. package/assets/Appearance/pureDark/themes/blue/bluePureDarkDotTheme.module.css +16 -0
  16. package/assets/Appearance/pureDark/themes/green/greenPureDarkDotTheme.module.css +16 -0
  17. package/assets/Appearance/pureDark/themes/orange/orangePureDarkDotTheme.module.css +16 -0
  18. package/assets/Appearance/pureDark/themes/red/redPureDarkDotTheme.module.css +16 -0
  19. package/assets/Appearance/pureDark/themes/yellow/yellowPureDarkDotTheme.module.css +16 -0
  20. package/dubFinder.js +7 -4
  21. package/es/ActionButton/ActionButton.js +141 -0
  22. package/es/ActionButton/ActionButton.module.css +139 -0
  23. package/es/ActionButton/props/defaultProps.js +17 -0
  24. package/es/ActionButton/props/propTypes.js +31 -0
  25. package/es/AlphabeticList/AlphabeticList.js +103 -0
  26. package/es/AlphabeticList/AlphabeticList.module.css +57 -0
  27. package/es/AlphabeticList/props/defaultProps.js +12 -0
  28. package/es/AlphabeticList/props/propTypes.js +23 -0
  29. package/es/Attachment/Attachment.js +88 -0
  30. package/es/Attachment/Attachment.module.css +158 -0
  31. package/es/Attachment/props/defaultProps.js +7 -0
  32. package/es/Attachment/props/propTypes.js +16 -0
  33. package/es/AttachmentViewer/Attachment.js +16 -0
  34. package/es/AttachmentViewer/AttachmentImage.js +72 -0
  35. package/es/AttachmentViewer/AttachmentViewer.js +507 -0
  36. package/es/AttachmentViewer/AttachmentViewer.module.css +354 -0
  37. package/es/AttachmentViewer/props/defaultProps.js +10 -0
  38. package/es/AttachmentViewer/props/propTypes.js +31 -0
  39. package/es/AttachmentViewer/utils.js +90 -0
  40. package/es/ChannelIcon/ChannelIcon.js +90 -111
  41. package/es/ChannelIcon/ChannelIcon.module.css +68 -59
  42. package/es/ChannelIcon/props/defaultProps.js +7 -0
  43. package/es/ChannelIcon/props/propTypes.js +25 -0
  44. package/es/Drawer/Drawer.js +257 -333
  45. package/es/Drawer/Drawer.module.css +71 -123
  46. package/es/Drawer/index.js +1 -0
  47. package/es/Drawer/props/defaultProps.js +21 -0
  48. package/es/Drawer/props/propTypes.js +50 -0
  49. package/es/ExternalLink/ExternalLink.js +42 -79
  50. package/es/ExternalLink/ExternalLink.module.css +3 -3
  51. package/es/ExternalLink/__tests__/ExternalLink.spec.js +17 -26
  52. package/es/ExternalLink/props/defaultProps.js +5 -0
  53. package/es/ExternalLink/props/propTypes.js +12 -0
  54. package/es/FlipCard/FlipCard.js +127 -168
  55. package/es/FlipCard/FlipCard.module.css +15 -6
  56. package/es/FlipCard/props/defaultProps.js +5 -0
  57. package/es/FlipCard/props/propTypes.js +37 -0
  58. package/es/FormAction/FormAction.js +67 -116
  59. package/es/FormAction/FormAction.module.css +9 -4
  60. package/es/FormAction/props/defaultProps.js +5 -0
  61. package/es/FormAction/props/propTypes.js +8 -0
  62. package/es/FreezeLayer/FreezeLayer.js +72 -141
  63. package/es/FreezeLayer/css/FreezeLayer.module.css +42 -0
  64. package/es/FreezeLayer/css/cssJSLogic.js +23 -0
  65. package/es/FreezeLayer/index.js +2 -0
  66. package/es/FreezeLayer/props/defaultProps.js +9 -0
  67. package/es/FreezeLayer/props/propTypes.js +18 -0
  68. package/es/FreezeLayer/useFreezeLayer.js +50 -0
  69. package/es/IconButton/IconButton.js +137 -81
  70. package/es/IconButton/IconButton.module.css +13 -28
  71. package/es/IconButton/props/defaultProps.js +17 -0
  72. package/es/IconButton/props/propTypes.js +33 -0
  73. package/es/Image/Image.js +35 -63
  74. package/es/Image/props/defaultProps.js +4 -0
  75. package/es/Image/props/propTypes.js +13 -0
  76. package/es/ImportantNotes/ImportantNotes.js +48 -0
  77. package/es/ImportantNotes/ImportantNotes.module.css +20 -0
  78. package/es/ImportantNotes/props/defaultProps.js +6 -0
  79. package/es/ImportantNotes/props/propTypes.js +10 -0
  80. package/es/Link/Link.js +86 -126
  81. package/es/Link/LinkContext.js +2 -4
  82. package/es/Link/props/defaultProps.js +5 -0
  83. package/es/Link/props/propTypes.js +14 -0
  84. package/es/Loader/Loader.js +25 -0
  85. package/es/Loader/Loader.module.css +46 -0
  86. package/es/Message/Message.js +107 -0
  87. package/es/Message/Message.module.css +103 -0
  88. package/es/Message/props/defaultProps.js +4 -0
  89. package/es/Message/props/propTypes.js +13 -0
  90. package/es/MessageBanner/MessageBanner.js +62 -0
  91. package/es/MessageBanner/MessageBanner.module.css +46 -0
  92. package/es/MessageBanner/props/defaultProps.js +7 -0
  93. package/es/MessageBanner/props/propTypes.js +13 -0
  94. package/es/NewStar/NewStar.js +70 -0
  95. package/es/NewStar/NewStar.module.css +175 -0
  96. package/es/NewStar/props/defaultProps.js +4 -0
  97. package/es/NewStar/props/propTypes.js +6 -0
  98. package/es/PlusIcon/PlusIcon.js +39 -81
  99. package/es/PlusIcon/PlusIcon.module.css +11 -2
  100. package/es/PlusIcon/props/defaultProps.js +8 -0
  101. package/es/PlusIcon/props/propTypes.js +11 -0
  102. package/es/Provider/Config.js +12 -0
  103. package/es/Separator/Separator.js +57 -0
  104. package/es/Separator/Separator.module.css +34 -0
  105. package/es/Separator/props/defaultProps.js +12 -0
  106. package/es/Separator/props/propTypes.js +11 -0
  107. package/es/ToastMessage/ToastMessage.js +197 -338
  108. package/es/ToastMessage/ToastMessage.module.css +57 -62
  109. package/es/ToastMessage/props/defaultProps.js +18 -0
  110. package/es/ToastMessage/props/propTypes.js +39 -0
  111. package/es/Upload/Upload.js +75 -0
  112. package/es/Upload/Upload.module.css +125 -0
  113. package/es/Upload/props/defaultProps.js +7 -0
  114. package/es/Upload/props/propTypes.js +17 -0
  115. package/es/actions/AutoClose.js +42 -0
  116. package/es/actions/index.js +12 -10
  117. package/es/actions/props/defaultProps.js +3 -0
  118. package/es/actions/props/propTypes.js +7 -0
  119. package/es/alert/AlertHeader/AlertHeader.js +67 -126
  120. package/es/alert/AlertHeader/AlertHeader.module.css +14 -13
  121. package/es/alert/AlertHeader/props/defaultProps.js +8 -0
  122. package/es/alert/AlertHeader/props/propTypes.js +15 -0
  123. package/es/alert/AlertLookup/AlertLookup.js +94 -184
  124. package/es/alert/AlertLookup/AlertLookup.module.css +7 -3
  125. package/es/alert/AlertLookup/props/defaultProps.js +14 -0
  126. package/es/alert/AlertLookup/props/propTypes.js +36 -0
  127. package/es/alert/index.js +2 -0
  128. package/es/avatar/AvatarClose/AvatarClose.js +47 -66
  129. package/es/avatar/AvatarClose/AvatarClose.module.css +4 -4
  130. package/es/avatar/AvatarClose/props/defaultProps.js +6 -0
  131. package/es/avatar/AvatarClose/props/propTypes.js +14 -0
  132. package/es/avatar/AvatarCollision/AvatarCollision.js +55 -86
  133. package/es/avatar/AvatarCollision/AvatarCollision.module.css +9 -9
  134. package/es/avatar/AvatarCollision/props/defaultProps.js +8 -0
  135. package/es/avatar/AvatarCollision/props/propTypes.js +17 -0
  136. package/es/avatar/AvatarIcon/AvatarIcon.js +49 -85
  137. package/es/avatar/AvatarIcon/AvatarIcon.module.css +32 -10
  138. package/es/avatar/AvatarIcon/props/defaultProps.js +14 -0
  139. package/es/avatar/AvatarIcon/props/propTypes.js +20 -0
  140. package/es/avatar/AvatarStatus/AvatarStatus.js +66 -72
  141. package/es/avatar/AvatarStatus/AvatarStatus.module.css +87 -34
  142. package/es/avatar/AvatarStatus/props/defaultProps.js +12 -0
  143. package/es/avatar/AvatarStatus/props/propTypes.js +26 -0
  144. package/es/avatar/AvatarThread/AvatarThread.js +73 -102
  145. package/es/avatar/AvatarThread/AvatarThread.module.css +119 -17
  146. package/es/avatar/AvatarThread/props/defaultProps.js +9 -0
  147. package/es/avatar/AvatarThread/props/propTypes.js +30 -0
  148. package/es/avatar/AvatarUser/AvatarUser.js +101 -113
  149. package/es/avatar/AvatarUser/AvatarUser.module.css +95 -25
  150. package/es/avatar/AvatarUser/props/defaultProps.js +8 -0
  151. package/es/avatar/AvatarUser/props/propTypes.js +35 -0
  152. package/es/avatar/AvatarWithTeam/AvatarWithTeam.js +90 -75
  153. package/es/avatar/AvatarWithTeam/AvatarWithTeam.module.css +5 -5
  154. package/es/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js +43 -44
  155. package/es/avatar/AvatarWithTeam/props/defaultProps.js +9 -0
  156. package/es/avatar/AvatarWithTeam/props/propTypes.js +25 -0
  157. package/es/avatar/index.js +7 -0
  158. package/es/common/dot_animation.module.css +27 -0
  159. package/es/common/dot_common.module.css +4 -0
  160. package/es/deprecated/FreezeLayer/FreezeLayer.js +128 -0
  161. package/es/deprecated/FreezeLayer/_FreezeLayer.module.css +42 -0
  162. package/es/deprecated/FreezeLayer/props/defaultProps.js +8 -0
  163. package/es/deprecated/FreezeLayer/props/propTypes.js +17 -0
  164. package/es/deprecated/SelectDropdown/SelectDropdown.js +145 -0
  165. package/es/deprecated/SelectDropdown/SelectDropdown.module.css +56 -0
  166. package/es/deprecated/utils/General.js +17 -0
  167. package/es/deprecated/utils/KeyboardApi.js +253 -0
  168. package/es/docs/formDocs.js +15 -0
  169. package/es/docs/generalDocs.js +22 -77
  170. package/es/docs/lookupDocs.js +9 -24
  171. package/es/docs/setupDocs.js +1 -17
  172. package/es/dropdown/ToggleDropDown/ToggleDropDown.js +787 -536
  173. package/es/dropdown/ToggleDropDown/ToggleDropDown.module.css +40 -14
  174. package/es/dropdown/ToggleDropDown/props/defaultProps.js +26 -0
  175. package/es/dropdown/ToggleDropDown/props/propTypes.js +72 -0
  176. package/es/emptystate/CommonEmptyState/CommonEmptyState.js +61 -124
  177. package/es/emptystate/CommonEmptyState/CommonEmptyState.module.css +66 -15
  178. package/es/emptystate/CommonEmptyState/props/defaultProps.js +10 -0
  179. package/es/emptystate/CommonEmptyState/props/propTypes.js +21 -0
  180. package/es/emptystate/EditionPage/EditionPage.css +5 -5
  181. package/es/emptystate/EditionPage/EditionPage.js +52 -97
  182. package/es/emptystate/EditionPage/props/defaultProps.js +5 -0
  183. package/es/emptystate/EditionPage/props/propTypes.js +7 -0
  184. package/es/errorstate/EmptyStates.module.css +56 -13
  185. package/es/errorstate/Inconvenience/Inconvenience.js +71 -76
  186. package/es/errorstate/Inconvenience/Inconvenience.module.css +0 -2
  187. package/es/errorstate/Inconvenience/props/defaultProps.js +4 -0
  188. package/es/errorstate/Inconvenience/props/propTypes.js +11 -0
  189. package/es/errorstate/LinkText/LinkText.js +25 -50
  190. package/es/errorstate/LinkText/LinkText.module.css +2 -2
  191. package/es/errorstate/LinkText/props/defaultProps.js +4 -0
  192. package/es/errorstate/LinkText/props/propTypes.js +8 -0
  193. package/es/errorstate/NoRequestFound/NoRequestFound.js +76 -81
  194. package/es/errorstate/NoRequestFound/NoRequestFound.module.css +0 -2
  195. package/es/errorstate/NoRequestFound/props/defaultProps.js +4 -0
  196. package/es/errorstate/NoRequestFound/props/propTypes.js +11 -0
  197. package/es/errorstate/PermissionPlay/PermissionPlay.js +75 -89
  198. package/es/errorstate/PermissionPlay/PermissionPlay.module.css +10 -9
  199. package/es/errorstate/PermissionPlay/props/defaultProps.js +4 -0
  200. package/es/errorstate/PermissionPlay/props/propTypes.js +11 -0
  201. package/es/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +76 -81
  202. package/es/errorstate/RequestUrlNotFound/RequestUrlNotFound.module.css +0 -2
  203. package/es/errorstate/RequestUrlNotFound/props/defaultProps.js +4 -0
  204. package/es/errorstate/RequestUrlNotFound/props/propTypes.js +11 -0
  205. package/es/errorstate/UnableToProcess/UnableToProcess.js +71 -76
  206. package/es/errorstate/UnableToProcess/UnableToProcess.module.css +0 -15
  207. package/es/errorstate/UnableToProcess/props/defaultProps.js +4 -0
  208. package/es/errorstate/UnableToProcess/props/propTypes.js +11 -0
  209. package/es/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +76 -81
  210. package/es/errorstate/UnauthorizedLogin/UnauthorizedLogin.module.css +0 -15
  211. package/es/errorstate/UnauthorizedLogin/props/defaultProps.js +4 -0
  212. package/es/errorstate/UnauthorizedLogin/props/propTypes.js +11 -0
  213. package/es/errorstate/WillBack/WillBack.js +68 -74
  214. package/es/errorstate/WillBack/WillBack.module.css +23 -10
  215. package/es/errorstate/WillBack/props/defaultProps.js +4 -0
  216. package/es/errorstate/WillBack/props/propTypes.js +5 -0
  217. package/es/errorstate/index.js +8 -0
  218. package/es/form/fields/CheckBoxField/CheckBoxField.js +137 -0
  219. package/es/form/fields/CheckBoxField/props/defaultProps.js +12 -0
  220. package/es/form/fields/CheckBoxField/props/propTypes.js +27 -0
  221. package/es/form/fields/CurrencyField/CurrencyField.js +176 -0
  222. package/es/form/fields/CurrencyField/props/defaultProps.js +17 -0
  223. package/es/form/fields/CurrencyField/props/propTypes.js +36 -0
  224. package/es/form/fields/DateField/DateField.js +185 -0
  225. package/es/form/fields/DateField/props/defaultProps.js +19 -0
  226. package/es/form/fields/DateField/props/propTypes.js +39 -0
  227. package/es/form/fields/FieldContainer/FieldContainer.js +68 -0
  228. package/es/form/fields/FieldContainer/props/defaultProps.js +7 -0
  229. package/es/form/fields/FieldContainer/props/propTypes.js +12 -0
  230. package/es/form/fields/Fields.module.css +183 -0
  231. package/es/form/fields/MultiSelectField/MultiSelectField.js +210 -0
  232. package/es/form/fields/MultiSelectField/props/defaultProps.js +17 -0
  233. package/es/form/fields/MultiSelectField/props/propTypes.js +50 -0
  234. package/es/form/fields/PhoneField/PhoneField.js +181 -0
  235. package/es/form/fields/PhoneField/props/defaultProps.js +16 -0
  236. package/es/form/fields/PhoneField/props/propTypes.js +40 -0
  237. package/es/form/fields/RadioField/RadioField.js +113 -0
  238. package/es/form/fields/RadioField/props/defaultProps.js +12 -0
  239. package/es/form/fields/RadioField/props/propTypes.js +30 -0
  240. package/es/form/fields/SelectField/SelectField.js +183 -0
  241. package/es/form/fields/SelectField/props/defaultProps.js +18 -0
  242. package/es/form/fields/SelectField/props/propTypes.js +50 -0
  243. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +280 -0
  244. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +107 -0
  245. package/es/form/fields/TagsMultiSelect/props/defaultProps.js +11 -0
  246. package/es/form/fields/TagsMultiSelect/props/propTypes.js +43 -0
  247. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +242 -0
  248. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.module.css +9 -0
  249. package/es/form/fields/TagsMultiSelectField/props/defaultProps.js +19 -0
  250. package/es/form/fields/TagsMultiSelectField/props/propTypes.js +52 -0
  251. package/es/form/fields/TextBoxField/TextBoxField.js +163 -0
  252. package/es/form/fields/TextBoxField/props/defaultProps.js +17 -0
  253. package/es/form/fields/TextBoxField/props/propTypes.js +37 -0
  254. package/es/form/fields/TextEditor/TextEditor.js +366 -0
  255. package/es/form/fields/TextEditor/TextEditor.module.css +666 -0
  256. package/es/form/fields/TextEditor/props/defaultProps.js +13 -0
  257. package/es/form/fields/TextEditor/props/propTypes.js +40 -0
  258. package/es/form/fields/TextEditorField/TextEditorField.js +172 -0
  259. package/es/form/fields/TextEditorField/props/defaultProps.js +15 -0
  260. package/es/form/fields/TextEditorField/props/propTypes.js +47 -0
  261. package/es/form/fields/TextEditorWrapper/TextEditorWrapper.js +195 -0
  262. package/es/form/fields/TextEditorWrapper/TextEditorWrapper.module.css +37 -0
  263. package/es/form/fields/TextEditorWrapper/props/defaultProps.js +9 -0
  264. package/es/form/fields/TextEditorWrapper/props/propTypes.js +39 -0
  265. package/es/form/fields/TextareaField/TextareaField.js +160 -0
  266. package/es/form/fields/TextareaField/props/defaultProps.js +15 -0
  267. package/es/form/fields/TextareaField/props/propTypes.js +34 -0
  268. package/es/form/fields/ValidationMessage/ValidationMessage.js +58 -0
  269. package/es/form/fields/ValidationMessage/ValidationMessage.module.css +27 -0
  270. package/es/form/fields/ValidationMessage/props/defaultProps.js +7 -0
  271. package/es/form/fields/ValidationMessage/props/propTypes.js +14 -0
  272. package/es/form/fields/index.js +16 -0
  273. package/es/form/fields/props/FieldCommonDefaultProps.js +10 -0
  274. package/es/form/fields/props/FieldCommonPropTypes.js +23 -0
  275. package/es/form/layout/Field/Field.js +33 -0
  276. package/es/form/layout/Field/Field.module.css +22 -0
  277. package/es/form/layout/Field/props/defaultProps.js +4 -0
  278. package/es/form/layout/Field/props/propTypes.js +10 -0
  279. package/es/form/layout/Section/ModuleFormSection.module.css +3 -0
  280. package/es/form/layout/Section/Section.js +34 -0
  281. package/es/form/layout/Section/props/propTypes.js +9 -0
  282. package/es/form/layout/index.js +2 -0
  283. package/es/index.js +51 -14
  284. package/es/layout/SetupDetailLayout/SetupDetailLayout.js +184 -320
  285. package/es/layout/SetupDetailLayout/SetupDetailLayout.module.css +20 -20
  286. package/es/layout/SetupDetailLayout/props/defaultProps.js +18 -0
  287. package/es/layout/SetupDetailLayout/props/propTypes.js +33 -0
  288. package/es/layout/SubtabLayout/SubtabLayout.js +132 -218
  289. package/es/layout/SubtabLayout/SubtabLayout.module.css +72 -16
  290. package/es/layout/SubtabLayout/index.js +2 -1
  291. package/es/layout/SubtabLayout/props/defaultProps.js +25 -0
  292. package/es/layout/SubtabLayout/props/propTypes.js +40 -0
  293. package/es/list/AvatarFlip/AvatarFlip.js +72 -104
  294. package/es/list/AvatarFlip/AvatarFlip.module.css +1 -13
  295. package/es/list/AvatarFlip/props/defaultProps.js +6 -0
  296. package/es/list/AvatarFlip/props/propTypes.js +29 -0
  297. package/es/list/BluePrintStatus/BluePrintStatus.js +25 -47
  298. package/es/list/BluePrintStatus/BluePrintStatus.module.css +8 -6
  299. package/es/list/BluePrintStatus/props/propTypes.js +4 -0
  300. package/es/list/Comment/Comment.js +41 -77
  301. package/es/list/Comment/Comment.module.css +12 -5
  302. package/es/list/Comment/props/defaultProps.js +3 -0
  303. package/es/list/Comment/props/propTypes.js +9 -0
  304. package/es/list/DepartmentDropDown/DepartmentDropDown.js +87 -96
  305. package/es/list/DepartmentDropDown/DepartmentDropDown.module.css +6 -80
  306. package/es/list/DepartmentDropDown/props/defaultProps.js +7 -0
  307. package/es/list/DepartmentDropDown/props/propTypes.js +24 -0
  308. package/es/list/Dot/Dot.js +17 -44
  309. package/es/list/Dot/Dot.module.css +7 -5
  310. package/es/list/Dot/props/defaultProps.js +4 -0
  311. package/es/list/Dot/props/propTypes.js +5 -0
  312. package/es/list/DotNew/DotNew.js +26 -38
  313. package/es/list/DotNew/DotNew.module.css +14 -11
  314. package/es/list/DotNew/props/defaultProps.js +3 -0
  315. package/es/list/DotNew/props/propTypes.js +6 -0
  316. package/es/list/GridStencils/GridStencils.js +32 -62
  317. package/es/list/GridStencils/GridStencils.module.css +23 -68
  318. package/es/list/GridStencils/props/propTypes.js +7 -0
  319. package/es/list/Icons/AddNewIcon.js +22 -66
  320. package/es/list/Icons/CompleteIcon.js +23 -55
  321. package/es/list/Icons/DeleteIcon.js +24 -75
  322. package/es/list/Icons/EditIcon.js +23 -74
  323. package/es/list/Icons/FloatingIcons.js +27 -55
  324. package/es/list/Icons/Icons.module.css +5 -4
  325. package/es/list/Icons/ReadUnreadIcon.js +31 -0
  326. package/es/list/Icons/SmartIcon.js +23 -45
  327. package/es/list/Icons/index.js +7 -0
  328. package/es/list/Icons/props/defaultProps.js +6 -0
  329. package/es/list/Icons/props/propTypes.js +55 -0
  330. package/es/list/ListLayout/ListLayout.js +73 -134
  331. package/es/list/ListLayout/ListLayout.module.css +38 -7
  332. package/es/list/ListLayout/props/defaultProps.js +11 -0
  333. package/es/list/ListLayout/props/propTypes.js +28 -0
  334. package/es/list/ListStencils/ListStencils.js +39 -55
  335. package/es/list/ListStencils/ListStencils.module.css +48 -8
  336. package/es/list/ListStencils/props/defaultProps.js +3 -0
  337. package/es/list/ListStencils/props/propTypes.js +4 -0
  338. package/es/list/SecondaryText/AccountName.js +72 -90
  339. package/es/list/SecondaryText/ContactName.js +78 -121
  340. package/es/list/SecondaryText/DepartmentText.js +26 -51
  341. package/es/list/SecondaryText/Email.js +44 -80
  342. package/es/list/SecondaryText/HappinessRating.js +26 -58
  343. package/es/list/SecondaryText/PhoneNumber.js +48 -83
  344. package/es/list/SecondaryText/PriorityText.js +29 -59
  345. package/es/list/SecondaryText/SecondaryText.js +35 -57
  346. package/es/list/SecondaryText/SecondaryText.module.css +53 -21
  347. package/es/list/SecondaryText/StatusText.js +30 -62
  348. package/es/list/SecondaryText/TicketId.js +47 -72
  349. package/es/list/SecondaryText/Website.js +33 -77
  350. package/es/list/SecondaryText/props/defaultProps.js +44 -0
  351. package/es/list/SecondaryText/props/propTypes.js +143 -0
  352. package/es/list/SecondryPanel/SecondryPanel.js +93 -187
  353. package/es/list/SecondryPanel/SecondryPanel.module.css +1 -22
  354. package/es/list/SecondryPanel/props/defaultProps.js +18 -0
  355. package/es/list/SecondryPanel/props/propTypes.js +27 -0
  356. package/es/list/SentimentStatus/SentimentStatus.js +31 -50
  357. package/es/list/SentimentStatus/SentimentStatus.module.css +1 -1
  358. package/es/list/SentimentStatus/props/propTypes.js +5 -0
  359. package/es/list/Subject/Subject.js +51 -85
  360. package/es/list/Subject/Subject.module.css +21 -3
  361. package/es/list/Subject/props/defaultProps.js +7 -0
  362. package/es/list/Subject/props/propTypes.js +19 -0
  363. package/es/list/TagNew/TagNew.js +29 -55
  364. package/es/list/TagNew/TagNew.module.css +5 -5
  365. package/es/list/TagNew/props/defaultProps.js +4 -0
  366. package/es/list/TagNew/props/propTypes.js +8 -0
  367. package/es/list/Thread/Thread.js +40 -60
  368. package/es/list/Thread/Thread.module.css +30 -7
  369. package/es/list/Thread/props/defaultProps.js +4 -0
  370. package/es/list/Thread/props/propTypes.js +8 -0
  371. package/es/list/UserTime/UserTime.js +76 -106
  372. package/es/list/UserTime/UserTime.module.css +23 -14
  373. package/es/list/UserTime/props/defaultProps.js +3 -0
  374. package/es/list/UserTime/props/propTypes.js +14 -0
  375. package/es/list/index.js +17 -0
  376. package/es/list/listCommon.module.css +19 -51
  377. package/es/list/status/StatusDropdown/StatusDropdown.js +425 -0
  378. package/es/list/status/StatusDropdown/StatusDropdown.module.css +92 -0
  379. package/es/list/status/StatusDropdown/props/defaultProps.js +19 -0
  380. package/es/list/status/StatusDropdown/props/propTypes.js +51 -0
  381. package/es/list/status/StatusListItem/StatusListItem.js +114 -0
  382. package/es/list/status/StatusListItem/StatusListItem.module.css +107 -0
  383. package/es/list/status/StatusListItem/props/defaultProps.js +15 -0
  384. package/es/list/status/StatusListItem/props/propTypes.js +29 -0
  385. package/es/list/status/index.js +2 -0
  386. package/es/lookup/EmptyPage/EmptyPage.js +52 -83
  387. package/es/lookup/EmptyPage/LookupEmptyPage.module.css +1 -1
  388. package/es/lookup/EmptyPage/props/defaultProps.js +4 -0
  389. package/es/lookup/EmptyPage/props/propTypes.js +5 -0
  390. package/es/lookup/Lookup/Lookup.js +86 -86
  391. package/es/lookup/Lookup/Lookup.module.css +12 -8
  392. package/es/lookup/Lookup/props/defaultProps.js +7 -0
  393. package/es/lookup/Lookup/props/propTypes.js +18 -0
  394. package/es/lookup/Section/LookupSection.module.css +3 -2
  395. package/es/lookup/Section/Section.js +18 -48
  396. package/es/lookup/Section/props/propTypes.js +6 -0
  397. package/es/lookup/header/Close/Close.js +25 -53
  398. package/es/lookup/header/Close/LookupClose.module.css +5 -5
  399. package/es/lookup/header/Close/props/defaultProps.js +3 -0
  400. package/es/lookup/header/Close/props/propTypes.js +6 -0
  401. package/es/lookup/header/ModuleHeader/ModuleHeader.js +62 -90
  402. package/es/lookup/header/ModuleHeader/props/defaultProps.js +3 -0
  403. package/es/lookup/header/ModuleHeader/props/propTypes.js +17 -0
  404. package/es/lookup/header/Search/LookupSearch.module.css +52 -9
  405. package/es/lookup/header/Search/Search.js +210 -129
  406. package/es/lookup/header/Search/props/defaultProps.js +5 -0
  407. package/es/lookup/header/Search/props/propTypes.js +28 -0
  408. package/es/lookup/header/TicketHeader/TicketHeader.js +80 -115
  409. package/es/lookup/header/TicketHeader/TicketHeader.module.css +3 -2
  410. package/es/lookup/header/TicketHeader/props/defaultProps.js +4 -0
  411. package/es/lookup/header/TicketHeader/props/propTypes.js +20 -0
  412. package/es/lookup/header/Title/LookupTitle.module.css +4 -4
  413. package/es/lookup/header/Title/Title.js +22 -54
  414. package/es/lookup/header/Title/props/defaultProps.js +3 -0
  415. package/es/lookup/header/Title/props/propTypes.js +6 -0
  416. package/es/lookup/header/ViewDropDown/ViewDropDown.js +149 -195
  417. package/es/lookup/header/ViewDropDown/ViewDropDown.module.css +9 -11
  418. package/es/lookup/header/ViewDropDown/props/defaultProps.js +7 -0
  419. package/es/lookup/header/ViewDropDown/props/propTypes.js +26 -0
  420. package/es/lookup/header/index.js +5 -0
  421. package/es/lookup/header/lookupHeaderCommon.module.css +13 -5
  422. package/es/lookup/header/lookupHeaderCommonResponsive.module.css +1 -1
  423. package/es/lookup/index.js +5 -0
  424. package/es/setup/header/Button/Button.js +32 -59
  425. package/es/setup/header/Button/props/defaultProps.js +4 -0
  426. package/es/setup/header/Button/props/propTypes.js +7 -0
  427. package/es/setup/header/Link/HeaderLink.module.css +4 -5
  428. package/es/setup/header/Link/Link.js +39 -70
  429. package/es/setup/header/Link/props/defaultProps.js +4 -0
  430. package/es/setup/header/Link/props/propTypes.js +8 -0
  431. package/es/setup/header/Search/Search.js +71 -96
  432. package/es/setup/header/Search/Search.module.css +13 -12
  433. package/es/setup/header/Search/props/defaultProps.js +5 -0
  434. package/es/setup/header/Search/props/propTypes.js +11 -0
  435. package/es/setup/header/Views/Views.js +43 -77
  436. package/es/setup/header/Views/Views.module.css +4 -4
  437. package/es/setup/header/Views/props/defaultProps.js +6 -0
  438. package/es/setup/header/Views/props/propTypes.js +9 -0
  439. package/es/setup/header/index.js +4 -0
  440. package/es/setup/helptips/Description/Description.js +21 -42
  441. package/es/setup/helptips/Description/HelpTipsDescription.module.css +2 -2
  442. package/es/setup/helptips/Description/props/propTypes.js +4 -0
  443. package/es/setup/helptips/Link/HelpTipsLink.module.css +2 -2
  444. package/es/setup/helptips/Link/Link.js +34 -57
  445. package/es/setup/helptips/Link/props/propTypes.js +7 -0
  446. package/es/setup/helptips/ListGroup/ListGroup.js +33 -63
  447. package/es/setup/helptips/ListGroup/ListGroup.module.css +2 -2
  448. package/es/setup/helptips/ListGroup/props/propTypes.js +5 -0
  449. package/es/setup/helptips/Title/HelpTipsTitle.module.css +2 -2
  450. package/es/setup/helptips/Title/Title.js +21 -42
  451. package/es/setup/helptips/Title/props/propTypes.js +4 -0
  452. package/es/setup/helptips/index.js +4 -0
  453. package/es/setup/index.js +6 -0
  454. package/es/setup/table/Table/Table.js +23 -50
  455. package/es/setup/table/Table/props/defaultProps.js +4 -0
  456. package/es/setup/table/Table/props/propTypes.js +6 -0
  457. package/es/setup/table/TableBody/TableBody.js +27 -50
  458. package/es/setup/table/TableBody/props/defaultProps.js +3 -0
  459. package/es/setup/table/TableBody/props/propTypes.js +7 -0
  460. package/es/setup/table/TableData/TableData.js +33 -65
  461. package/es/setup/table/TableData/props/defaultProps.js +5 -0
  462. package/es/setup/table/TableData/props/propTypes.js +10 -0
  463. package/es/setup/table/TableHead/SetupTableHead.module.css +12 -0
  464. package/es/setup/table/TableHead/TableHead.js +35 -69
  465. package/es/setup/table/TableHead/props/defaultProps.js +4 -0
  466. package/es/setup/table/TableHead/props/propTypes.js +7 -0
  467. package/es/setup/table/TableRow/SetupTableRow.module.css +14 -0
  468. package/es/setup/table/TableRow/TableRow.js +40 -75
  469. package/es/setup/table/TableRow/props/defaultProps.js +4 -0
  470. package/es/setup/table/TableRow/props/propTypes.js +11 -0
  471. package/es/setup/table/Text/TableText.module.css +37 -0
  472. package/es/setup/table/Text/Text.js +48 -100
  473. package/es/setup/table/Text/props/defaultProps.js +7 -0
  474. package/es/setup/table/Text/props/propTypes.js +13 -0
  475. package/es/setup/table/index.js +5 -0
  476. package/es/svg/PlusIcon.js +31 -66
  477. package/es/svg/SnippetIcon.js +33 -69
  478. package/es/svg/TemplateIcon.js +34 -64
  479. package/es/svg/index.js +3 -0
  480. package/es/svg/props/defaultProps.js +15 -0
  481. package/es/svg/props/propTypes.js +16 -0
  482. package/es/utils/ChannelIconMapping.js +101 -84
  483. package/es/utils/General.js +25 -6
  484. package/es/utils/editorUtils.js +169 -0
  485. package/es/version2/AlertClose/AlertClose.js +40 -0
  486. package/es/version2/AlertClose/AlertClose.module.css +43 -0
  487. package/es/version2/AlertClose/props/propTypes.js +8 -0
  488. package/es/version2/GlobalNotification/GlobalNotification.js +134 -0
  489. package/es/version2/GlobalNotification/GlobalNotification.module.css +125 -0
  490. package/es/version2/GlobalNotification/props/defaultProps.js +4 -0
  491. package/es/version2/GlobalNotification/props/propTypes.js +14 -0
  492. package/es/version2/alertIcons/AlarmAlertIcon.js +67 -0
  493. package/es/version2/alertIcons/AlertIcons.js +61 -0
  494. package/es/version2/alertIcons/AlertIcons.module.css +67 -0
  495. package/es/version2/alertIcons/DangerAlertIcon.js +67 -0
  496. package/es/version2/alertIcons/ErrorAlertIcon.js +72 -0
  497. package/es/version2/alertIcons/InfoAlertIcon.js +76 -0
  498. package/es/version2/alertIcons/NotificationAlertIcon.js +72 -0
  499. package/es/version2/alertIcons/SuccessAlertIcon.js +67 -0
  500. package/es/version2/alertIcons/WarningAlertIcon.js +67 -0
  501. package/es/version2/alertIcons/index.js +8 -0
  502. package/es/version2/alertIcons/props/defaultProps.js +27 -0
  503. package/es/version2/alertIcons/props/propTypes.js +34 -0
  504. package/es/version2/errorstate/Inconvenience/Inconvenience.js +70 -0
  505. package/es/version2/errorstate/Inconvenience/props/defaultProps.js +8 -0
  506. package/es/version2/errorstate/Inconvenience/props/propTypes.js +16 -0
  507. package/es/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +71 -0
  508. package/es/version2/errorstate/OopsSomethingMiss/props/defaultProps.js +8 -0
  509. package/es/version2/errorstate/OopsSomethingMiss/props/propTypes.js +16 -0
  510. package/es/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +70 -0
  511. package/es/version2/errorstate/UnableToProcessRequest/props/defaultProps.js +8 -0
  512. package/es/version2/errorstate/UnableToProcessRequest/props/propTypes.js +16 -0
  513. package/es/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +72 -0
  514. package/es/version2/errorstate/UnauthorizedLogin/props/defaultProps.js +9 -0
  515. package/es/version2/errorstate/UnauthorizedLogin/props/propTypes.js +17 -0
  516. package/es/version2/errorstate/UrlNotFound/UrlNotFound.js +70 -0
  517. package/es/version2/errorstate/UrlNotFound/props/defaultProps.js +8 -0
  518. package/es/version2/errorstate/UrlNotFound/props/propTypes.js +16 -0
  519. package/es/version2/errorstate/V2_ErrorStates.module.css +46 -0
  520. package/es/version2/errorstate/WillBeRightBack/WillBeRightBack.js +70 -0
  521. package/es/version2/errorstate/WillBeRightBack/props/defaultProps.js +8 -0
  522. package/es/version2/errorstate/WillBeRightBack/props/propTypes.js +16 -0
  523. package/es/version2/errorstate/index.js +6 -0
  524. package/es/version2/index.js +12 -0
  525. package/es/version2/lookup/AlertHeader/AlertHeader.js +63 -0
  526. package/es/version2/lookup/AlertHeader/AlertHeaderNew.module.css +87 -0
  527. package/es/version2/lookup/AlertHeader/props/defaultProps.js +6 -0
  528. package/es/version2/lookup/AlertHeader/props/propTypes.js +12 -0
  529. package/es/version2/lookup/AlertLookup/AlertLookup.js +197 -0
  530. package/es/version2/lookup/AlertLookup/AlertLookupNew.module.css +44 -0
  531. package/es/version2/lookup/AlertLookup/props/defaultProps.js +13 -0
  532. package/es/version2/lookup/AlertLookup/props/propTypes.js +36 -0
  533. package/es/version2/lookup/alertLookupCommonNew.module.css +33 -0
  534. package/es/version2/lookup/index.js +2 -0
  535. package/es/version2/notification/DesktopNotification/DesktopNotification.js +161 -0
  536. package/es/version2/notification/DesktopNotification/DesktopNotification.module.css +106 -0
  537. package/es/version2/notification/DesktopNotification/props/defaultProps.js +15 -0
  538. package/es/version2/notification/DesktopNotification/props/propTypes.js +37 -0
  539. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +61 -0
  540. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +137 -0
  541. package/es/version2/notification/DesktopNotificationHeader/props/defaultProps.js +5 -0
  542. package/es/version2/notification/DesktopNotificationHeader/props/propTypes.js +11 -0
  543. package/es/version2/notification/index.js +3 -0
  544. package/images/audio_thumbnail.png +0 -0
  545. package/install.md +12 -0
  546. package/lib/ActionButton/ActionButton.js +172 -0
  547. package/lib/ActionButton/ActionButton.module.css +139 -0
  548. package/lib/ActionButton/props/defaultProps.js +24 -0
  549. package/lib/ActionButton/props/propTypes.js +39 -0
  550. package/lib/AlphabeticList/AlphabeticList.js +144 -0
  551. package/lib/AlphabeticList/AlphabeticList.module.css +57 -0
  552. package/lib/AlphabeticList/props/defaultProps.js +20 -0
  553. package/lib/AlphabeticList/props/propTypes.js +41 -0
  554. package/lib/Attachment/Attachment.js +117 -0
  555. package/lib/Attachment/Attachment.module.css +158 -0
  556. package/lib/Attachment/props/defaultProps.js +14 -0
  557. package/lib/Attachment/props/propTypes.js +24 -0
  558. package/lib/AttachmentViewer/Attachment.js +24 -0
  559. package/lib/AttachmentViewer/AttachmentImage.js +97 -0
  560. package/lib/AttachmentViewer/AttachmentViewer.js +559 -0
  561. package/lib/AttachmentViewer/AttachmentViewer.module.css +354 -0
  562. package/lib/AttachmentViewer/props/defaultProps.js +18 -0
  563. package/lib/AttachmentViewer/props/propTypes.js +40 -0
  564. package/lib/AttachmentViewer/utils.js +113 -0
  565. package/lib/ChannelIcon/ChannelIcon.js +105 -126
  566. package/lib/ChannelIcon/ChannelIcon.module.css +68 -59
  567. package/lib/ChannelIcon/props/defaultProps.js +14 -0
  568. package/lib/ChannelIcon/props/propTypes.js +33 -0
  569. package/lib/Drawer/Drawer.js +278 -335
  570. package/lib/Drawer/Drawer.module.css +71 -123
  571. package/lib/Drawer/index.js +33 -0
  572. package/lib/Drawer/props/defaultProps.js +30 -0
  573. package/lib/Drawer/props/propTypes.js +61 -0
  574. package/lib/ExternalLink/ExternalLink.js +59 -87
  575. package/lib/ExternalLink/ExternalLink.module.css +3 -3
  576. package/lib/ExternalLink/__tests__/ExternalLink.spec.js +13 -31
  577. package/lib/ExternalLink/props/defaultProps.js +12 -0
  578. package/lib/ExternalLink/props/propTypes.js +20 -0
  579. package/lib/FlipCard/FlipCard.js +139 -183
  580. package/lib/FlipCard/FlipCard.module.css +15 -6
  581. package/lib/FlipCard/props/defaultProps.js +12 -0
  582. package/lib/FlipCard/props/propTypes.js +45 -0
  583. package/lib/FormAction/FormAction.js +78 -114
  584. package/lib/FormAction/FormAction.module.css +9 -4
  585. package/lib/FormAction/props/defaultProps.js +12 -0
  586. package/lib/FormAction/props/propTypes.js +16 -0
  587. package/lib/FreezeLayer/FreezeLayer.js +74 -164
  588. package/lib/FreezeLayer/css/FreezeLayer.module.css +42 -0
  589. package/lib/FreezeLayer/css/cssJSLogic.js +25 -0
  590. package/lib/FreezeLayer/index.js +20 -0
  591. package/lib/FreezeLayer/props/defaultProps.js +16 -0
  592. package/lib/FreezeLayer/props/propTypes.js +26 -0
  593. package/lib/FreezeLayer/useFreezeLayer.js +73 -0
  594. package/lib/IconButton/IconButton.js +160 -98
  595. package/lib/IconButton/IconButton.module.css +13 -28
  596. package/lib/IconButton/props/defaultProps.js +24 -0
  597. package/lib/IconButton/props/propTypes.js +41 -0
  598. package/lib/Image/Image.js +51 -68
  599. package/lib/Image/props/defaultProps.js +11 -0
  600. package/lib/Image/props/propTypes.js +21 -0
  601. package/lib/ImportantNotes/ImportantNotes.js +75 -0
  602. package/lib/ImportantNotes/ImportantNotes.module.css +20 -0
  603. package/lib/ImportantNotes/props/defaultProps.js +13 -0
  604. package/lib/ImportantNotes/props/propTypes.js +18 -0
  605. package/lib/Link/Link.js +78 -108
  606. package/lib/Link/LinkContext.js +7 -10
  607. package/lib/Link/props/defaultProps.js +12 -0
  608. package/lib/Link/props/propTypes.js +22 -0
  609. package/lib/Loader/Loader.js +53 -0
  610. package/lib/Loader/Loader.module.css +46 -0
  611. package/lib/Message/Message.js +136 -0
  612. package/lib/Message/Message.module.css +103 -0
  613. package/lib/Message/props/defaultProps.js +11 -0
  614. package/lib/Message/props/propTypes.js +21 -0
  615. package/lib/MessageBanner/MessageBanner.js +92 -0
  616. package/lib/MessageBanner/MessageBanner.module.css +46 -0
  617. package/lib/MessageBanner/props/defaultProps.js +14 -0
  618. package/lib/MessageBanner/props/propTypes.js +21 -0
  619. package/lib/NewStar/NewStar.js +100 -0
  620. package/lib/NewStar/NewStar.module.css +175 -0
  621. package/lib/NewStar/props/defaultProps.js +11 -0
  622. package/lib/NewStar/props/propTypes.js +14 -0
  623. package/lib/PlusIcon/PlusIcon.js +56 -93
  624. package/lib/PlusIcon/PlusIcon.module.css +11 -2
  625. package/lib/PlusIcon/props/defaultProps.js +15 -0
  626. package/lib/PlusIcon/props/propTypes.js +19 -0
  627. package/lib/Provider/Config.js +19 -0
  628. package/lib/Separator/Separator.js +84 -0
  629. package/lib/Separator/Separator.module.css +34 -0
  630. package/lib/Separator/props/defaultProps.js +19 -0
  631. package/lib/Separator/props/propTypes.js +19 -0
  632. package/lib/ToastMessage/ToastMessage.js +213 -360
  633. package/lib/ToastMessage/ToastMessage.module.css +57 -62
  634. package/lib/ToastMessage/props/defaultProps.js +25 -0
  635. package/lib/ToastMessage/props/propTypes.js +47 -0
  636. package/lib/Upload/Upload.js +104 -0
  637. package/lib/Upload/Upload.module.css +125 -0
  638. package/lib/Upload/props/defaultProps.js +14 -0
  639. package/lib/Upload/props/propTypes.js +25 -0
  640. package/lib/actions/AutoClose.js +58 -0
  641. package/lib/actions/index.js +8 -3
  642. package/lib/actions/props/defaultProps.js +10 -0
  643. package/lib/actions/props/propTypes.js +15 -0
  644. package/lib/alert/AlertHeader/AlertHeader.js +86 -142
  645. package/lib/alert/AlertHeader/AlertHeader.module.css +14 -13
  646. package/lib/alert/AlertHeader/props/defaultProps.js +15 -0
  647. package/lib/alert/AlertHeader/props/propTypes.js +23 -0
  648. package/lib/alert/AlertLookup/AlertLookup.js +122 -219
  649. package/lib/alert/AlertLookup/AlertLookup.module.css +7 -3
  650. package/lib/alert/AlertLookup/props/defaultProps.js +21 -0
  651. package/lib/alert/AlertLookup/props/propTypes.js +44 -0
  652. package/lib/alert/index.js +20 -0
  653. package/lib/avatar/AvatarClose/AvatarClose.js +64 -81
  654. package/lib/avatar/AvatarClose/AvatarClose.module.css +4 -4
  655. package/lib/avatar/AvatarClose/props/defaultProps.js +13 -0
  656. package/lib/avatar/AvatarClose/props/propTypes.js +22 -0
  657. package/lib/avatar/AvatarCollision/AvatarCollision.js +72 -102
  658. package/lib/avatar/AvatarCollision/AvatarCollision.module.css +9 -9
  659. package/lib/avatar/AvatarCollision/props/defaultProps.js +15 -0
  660. package/lib/avatar/AvatarCollision/props/propTypes.js +25 -0
  661. package/lib/avatar/AvatarIcon/AvatarIcon.js +68 -99
  662. package/lib/avatar/AvatarIcon/AvatarIcon.module.css +32 -10
  663. package/lib/avatar/AvatarIcon/props/defaultProps.js +21 -0
  664. package/lib/avatar/AvatarIcon/props/propTypes.js +28 -0
  665. package/lib/avatar/AvatarStatus/AvatarStatus.js +84 -85
  666. package/lib/avatar/AvatarStatus/AvatarStatus.module.css +87 -34
  667. package/lib/avatar/AvatarStatus/props/defaultProps.js +19 -0
  668. package/lib/avatar/AvatarStatus/props/propTypes.js +33 -0
  669. package/lib/avatar/AvatarThread/AvatarThread.js +93 -118
  670. package/lib/avatar/AvatarThread/AvatarThread.module.css +119 -17
  671. package/lib/avatar/AvatarThread/props/defaultProps.js +16 -0
  672. package/lib/avatar/AvatarThread/props/propTypes.js +38 -0
  673. package/lib/avatar/AvatarUser/AvatarUser.js +124 -135
  674. package/lib/avatar/AvatarUser/AvatarUser.module.css +95 -25
  675. package/lib/avatar/AvatarUser/props/defaultProps.js +15 -0
  676. package/lib/avatar/AvatarUser/props/propTypes.js +43 -0
  677. package/lib/avatar/AvatarWithTeam/AvatarWithTeam.js +116 -92
  678. package/lib/avatar/AvatarWithTeam/AvatarWithTeam.module.css +5 -5
  679. package/lib/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js +42 -51
  680. package/lib/avatar/AvatarWithTeam/props/defaultProps.js +16 -0
  681. package/lib/avatar/AvatarWithTeam/props/propTypes.js +33 -0
  682. package/lib/avatar/index.js +55 -0
  683. package/lib/common/dot_animation.module.css +27 -0
  684. package/lib/common/dot_common.module.css +4 -0
  685. package/lib/deprecated/FreezeLayer/FreezeLayer.js +163 -0
  686. package/lib/deprecated/FreezeLayer/_FreezeLayer.module.css +42 -0
  687. package/lib/deprecated/FreezeLayer/props/defaultProps.js +15 -0
  688. package/lib/deprecated/FreezeLayer/props/propTypes.js +25 -0
  689. package/lib/deprecated/SelectDropdown/SelectDropdown.js +175 -0
  690. package/lib/deprecated/SelectDropdown/SelectDropdown.module.css +56 -0
  691. package/lib/deprecated/utils/General.js +24 -0
  692. package/lib/deprecated/utils/KeyboardApi.js +258 -0
  693. package/lib/docs/formDocs.js +111 -0
  694. package/lib/docs/generalDocs.js +179 -631
  695. package/lib/docs/lookupDocs.js +50 -128
  696. package/lib/docs/setupDocs.js +35 -175
  697. package/lib/dropdown/ToggleDropDown/ToggleDropDown.js +798 -556
  698. package/lib/dropdown/ToggleDropDown/ToggleDropDown.module.css +40 -14
  699. package/lib/dropdown/ToggleDropDown/props/defaultProps.js +33 -0
  700. package/lib/dropdown/ToggleDropDown/props/propTypes.js +80 -0
  701. package/lib/emptystate/CommonEmptyState/CommonEmptyState.js +83 -140
  702. package/lib/emptystate/CommonEmptyState/CommonEmptyState.module.css +66 -15
  703. package/lib/emptystate/CommonEmptyState/props/defaultProps.js +17 -0
  704. package/lib/emptystate/CommonEmptyState/props/propTypes.js +29 -0
  705. package/lib/emptystate/EditionPage/EditionPage.css +5 -5
  706. package/lib/emptystate/EditionPage/EditionPage.js +69 -105
  707. package/lib/emptystate/EditionPage/props/defaultProps.js +12 -0
  708. package/lib/emptystate/EditionPage/props/propTypes.js +15 -0
  709. package/lib/errorstate/EmptyStates.module.css +56 -13
  710. package/lib/errorstate/Inconvenience/Inconvenience.js +91 -98
  711. package/lib/errorstate/Inconvenience/Inconvenience.module.css +0 -2
  712. package/lib/errorstate/Inconvenience/props/defaultProps.js +11 -0
  713. package/lib/errorstate/Inconvenience/props/propTypes.js +19 -0
  714. package/lib/errorstate/LinkText/LinkText.js +45 -62
  715. package/lib/errorstate/LinkText/LinkText.module.css +2 -2
  716. package/lib/errorstate/LinkText/props/defaultProps.js +11 -0
  717. package/lib/errorstate/LinkText/props/propTypes.js +16 -0
  718. package/lib/errorstate/NoRequestFound/NoRequestFound.js +96 -103
  719. package/lib/errorstate/NoRequestFound/NoRequestFound.module.css +0 -2
  720. package/lib/errorstate/NoRequestFound/props/defaultProps.js +11 -0
  721. package/lib/errorstate/NoRequestFound/props/propTypes.js +19 -0
  722. package/lib/errorstate/PermissionPlay/PermissionPlay.js +95 -111
  723. package/lib/errorstate/PermissionPlay/PermissionPlay.module.css +10 -9
  724. package/lib/errorstate/PermissionPlay/props/defaultProps.js +11 -0
  725. package/lib/errorstate/PermissionPlay/props/propTypes.js +19 -0
  726. package/lib/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +96 -103
  727. package/lib/errorstate/RequestUrlNotFound/RequestUrlNotFound.module.css +0 -2
  728. package/lib/errorstate/RequestUrlNotFound/props/defaultProps.js +11 -0
  729. package/lib/errorstate/RequestUrlNotFound/props/propTypes.js +19 -0
  730. package/lib/errorstate/UnableToProcess/UnableToProcess.js +91 -98
  731. package/lib/errorstate/UnableToProcess/UnableToProcess.module.css +0 -15
  732. package/lib/errorstate/UnableToProcess/props/defaultProps.js +11 -0
  733. package/lib/errorstate/UnableToProcess/props/propTypes.js +19 -0
  734. package/lib/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +96 -103
  735. package/lib/errorstate/UnauthorizedLogin/UnauthorizedLogin.module.css +0 -15
  736. package/lib/errorstate/UnauthorizedLogin/props/defaultProps.js +11 -0
  737. package/lib/errorstate/UnauthorizedLogin/props/propTypes.js +19 -0
  738. package/lib/errorstate/WillBack/WillBack.js +87 -92
  739. package/lib/errorstate/WillBack/WillBack.module.css +23 -10
  740. package/lib/errorstate/WillBack/props/defaultProps.js +11 -0
  741. package/lib/errorstate/WillBack/props/propTypes.js +13 -0
  742. package/lib/errorstate/index.js +62 -0
  743. package/lib/form/fields/CheckBoxField/CheckBoxField.js +167 -0
  744. package/lib/form/fields/CheckBoxField/props/defaultProps.js +24 -0
  745. package/lib/form/fields/CheckBoxField/props/propTypes.js +40 -0
  746. package/lib/form/fields/CurrencyField/CurrencyField.js +204 -0
  747. package/lib/form/fields/CurrencyField/props/defaultProps.js +29 -0
  748. package/lib/form/fields/CurrencyField/props/propTypes.js +49 -0
  749. package/lib/form/fields/DateField/DateField.js +216 -0
  750. package/lib/form/fields/DateField/props/defaultProps.js +31 -0
  751. package/lib/form/fields/DateField/props/propTypes.js +52 -0
  752. package/lib/form/fields/FieldContainer/FieldContainer.js +94 -0
  753. package/lib/form/fields/FieldContainer/props/defaultProps.js +19 -0
  754. package/lib/form/fields/FieldContainer/props/propTypes.js +25 -0
  755. package/lib/form/fields/Fields.module.css +183 -0
  756. package/lib/form/fields/MultiSelectField/MultiSelectField.js +242 -0
  757. package/lib/form/fields/MultiSelectField/props/defaultProps.js +29 -0
  758. package/lib/form/fields/MultiSelectField/props/propTypes.js +63 -0
  759. package/lib/form/fields/PhoneField/PhoneField.js +206 -0
  760. package/lib/form/fields/PhoneField/props/defaultProps.js +23 -0
  761. package/lib/form/fields/PhoneField/props/propTypes.js +48 -0
  762. package/lib/form/fields/RadioField/RadioField.js +141 -0
  763. package/lib/form/fields/RadioField/props/defaultProps.js +19 -0
  764. package/lib/form/fields/RadioField/props/propTypes.js +38 -0
  765. package/lib/form/fields/SelectField/SelectField.js +210 -0
  766. package/lib/form/fields/SelectField/props/defaultProps.js +30 -0
  767. package/lib/form/fields/SelectField/props/propTypes.js +63 -0
  768. package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.js +308 -0
  769. package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +107 -0
  770. package/lib/form/fields/TagsMultiSelect/props/defaultProps.js +18 -0
  771. package/lib/form/fields/TagsMultiSelect/props/propTypes.js +51 -0
  772. package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +258 -0
  773. package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.module.css +9 -0
  774. package/lib/form/fields/TagsMultiSelectField/props/defaultProps.js +31 -0
  775. package/lib/form/fields/TagsMultiSelectField/props/propTypes.js +65 -0
  776. package/lib/form/fields/TextBoxField/TextBoxField.js +192 -0
  777. package/lib/form/fields/TextBoxField/props/defaultProps.js +29 -0
  778. package/lib/form/fields/TextBoxField/props/propTypes.js +50 -0
  779. package/lib/form/fields/TextEditor/TextEditor.js +399 -0
  780. package/lib/form/fields/TextEditor/TextEditor.module.css +666 -0
  781. package/lib/form/fields/TextEditor/props/defaultProps.js +20 -0
  782. package/lib/form/fields/TextEditor/props/propTypes.js +48 -0
  783. package/lib/form/fields/TextEditorField/TextEditorField.js +202 -0
  784. package/lib/form/fields/TextEditorField/props/defaultProps.js +27 -0
  785. package/lib/form/fields/TextEditorField/props/propTypes.js +60 -0
  786. package/lib/form/fields/TextEditorWrapper/TextEditorWrapper.js +224 -0
  787. package/lib/form/fields/TextEditorWrapper/TextEditorWrapper.module.css +37 -0
  788. package/lib/form/fields/TextEditorWrapper/props/defaultProps.js +16 -0
  789. package/lib/form/fields/TextEditorWrapper/props/propTypes.js +47 -0
  790. package/lib/form/fields/TextareaField/TextareaField.js +189 -0
  791. package/lib/form/fields/TextareaField/props/defaultProps.js +27 -0
  792. package/lib/form/fields/TextareaField/props/propTypes.js +47 -0
  793. package/lib/form/fields/ValidationMessage/ValidationMessage.js +87 -0
  794. package/lib/form/fields/ValidationMessage/ValidationMessage.module.css +27 -0
  795. package/lib/form/fields/ValidationMessage/props/defaultProps.js +14 -0
  796. package/lib/form/fields/ValidationMessage/props/propTypes.js +22 -0
  797. package/lib/form/fields/index.js +118 -0
  798. package/lib/form/fields/props/FieldCommonDefaultProps.js +17 -0
  799. package/lib/form/fields/props/FieldCommonPropTypes.js +31 -0
  800. package/lib/form/layout/Field/Field.js +65 -0
  801. package/lib/form/layout/Field/Field.module.css +22 -0
  802. package/lib/form/layout/Field/props/defaultProps.js +11 -0
  803. package/lib/form/layout/Field/props/propTypes.js +18 -0
  804. package/lib/form/layout/Section/ModuleFormSection.module.css +3 -0
  805. package/lib/form/layout/Section/Section.js +63 -0
  806. package/lib/form/layout/Section/props/propTypes.js +17 -0
  807. package/lib/form/layout/index.js +20 -0
  808. package/lib/index.js +258 -56
  809. package/lib/layout/SetupDetailLayout/SetupDetailLayout.js +191 -304
  810. package/lib/layout/SetupDetailLayout/SetupDetailLayout.module.css +20 -20
  811. package/lib/layout/SetupDetailLayout/index.js +12 -13
  812. package/lib/layout/SetupDetailLayout/props/defaultProps.js +28 -0
  813. package/lib/layout/SetupDetailLayout/props/propTypes.js +44 -0
  814. package/lib/layout/SubtabLayout/SubtabLayout.js +171 -225
  815. package/lib/layout/SubtabLayout/SubtabLayout.module.css +72 -16
  816. package/lib/layout/SubtabLayout/index.js +16 -11
  817. package/lib/layout/SubtabLayout/props/defaultProps.js +35 -0
  818. package/lib/layout/SubtabLayout/props/propTypes.js +51 -0
  819. package/lib/list/AvatarFlip/AvatarFlip.js +74 -96
  820. package/lib/list/AvatarFlip/AvatarFlip.module.css +1 -13
  821. package/lib/list/AvatarFlip/props/defaultProps.js +13 -0
  822. package/lib/list/AvatarFlip/props/propTypes.js +37 -0
  823. package/lib/list/BluePrintStatus/BluePrintStatus.js +40 -58
  824. package/lib/list/BluePrintStatus/BluePrintStatus.module.css +8 -6
  825. package/lib/list/BluePrintStatus/props/propTypes.js +12 -0
  826. package/lib/list/Comment/Comment.js +57 -86
  827. package/lib/list/Comment/Comment.module.css +12 -5
  828. package/lib/list/Comment/props/defaultProps.js +10 -0
  829. package/lib/list/Comment/props/propTypes.js +17 -0
  830. package/lib/list/DepartmentDropDown/DepartmentDropDown.js +94 -90
  831. package/lib/list/DepartmentDropDown/DepartmentDropDown.module.css +6 -80
  832. package/lib/list/DepartmentDropDown/props/defaultProps.js +14 -0
  833. package/lib/list/DepartmentDropDown/props/propTypes.js +33 -0
  834. package/lib/list/Dot/Dot.js +34 -51
  835. package/lib/list/Dot/Dot.module.css +7 -5
  836. package/lib/list/Dot/props/defaultProps.js +11 -0
  837. package/lib/list/Dot/props/propTypes.js +13 -0
  838. package/lib/list/DotNew/DotNew.js +43 -45
  839. package/lib/list/DotNew/DotNew.module.css +14 -11
  840. package/lib/list/DotNew/props/defaultProps.js +10 -0
  841. package/lib/list/DotNew/props/propTypes.js +14 -0
  842. package/lib/list/GridStencils/GridStencils.js +51 -70
  843. package/lib/list/GridStencils/GridStencils.module.css +23 -68
  844. package/lib/list/GridStencils/props/propTypes.js +15 -0
  845. package/lib/list/Icons/AddNewIcon.js +46 -83
  846. package/lib/list/Icons/CompleteIcon.js +52 -75
  847. package/lib/list/Icons/DeleteIcon.js +44 -89
  848. package/lib/list/Icons/EditIcon.js +48 -93
  849. package/lib/list/Icons/FloatingIcons.js +47 -60
  850. package/lib/list/Icons/Icons.module.css +5 -4
  851. package/lib/list/Icons/ReadUnreadIcon.js +61 -0
  852. package/lib/list/Icons/SmartIcon.js +53 -63
  853. package/lib/list/Icons/index.js +55 -0
  854. package/lib/list/Icons/props/defaultProps.js +14 -0
  855. package/lib/list/Icons/props/propTypes.js +69 -0
  856. package/lib/list/ListLayout/ListLayout.js +89 -138
  857. package/lib/list/ListLayout/ListLayout.module.css +38 -7
  858. package/lib/list/ListLayout/props/defaultProps.js +18 -0
  859. package/lib/list/ListLayout/props/propTypes.js +39 -0
  860. package/lib/list/ListStencils/ListStencils.js +59 -69
  861. package/lib/list/ListStencils/ListStencils.module.css +48 -8
  862. package/lib/list/ListStencils/props/defaultProps.js +10 -0
  863. package/lib/list/ListStencils/props/propTypes.js +12 -0
  864. package/lib/list/SecondaryText/AccountName.js +97 -112
  865. package/lib/list/SecondaryText/ContactName.js +103 -142
  866. package/lib/list/SecondaryText/DepartmentText.js +43 -58
  867. package/lib/list/SecondaryText/Email.js +65 -99
  868. package/lib/list/SecondaryText/HappinessRating.js +46 -69
  869. package/lib/list/SecondaryText/PhoneNumber.js +69 -102
  870. package/lib/list/SecondaryText/PriorityText.js +46 -66
  871. package/lib/list/SecondaryText/SecondaryText.js +50 -64
  872. package/lib/list/SecondaryText/SecondaryText.module.css +53 -21
  873. package/lib/list/SecondaryText/StatusText.js +47 -69
  874. package/lib/list/SecondaryText/TicketId.js +65 -83
  875. package/lib/list/SecondaryText/Website.js +54 -96
  876. package/lib/list/SecondaryText/index.js +35 -58
  877. package/lib/list/SecondaryText/props/defaultProps.js +59 -0
  878. package/lib/list/SecondaryText/props/propTypes.js +161 -0
  879. package/lib/list/SecondryPanel/SecondryPanel.js +117 -182
  880. package/lib/list/SecondryPanel/SecondryPanel.module.css +1 -22
  881. package/lib/list/SecondryPanel/props/defaultProps.js +28 -0
  882. package/lib/list/SecondryPanel/props/propTypes.js +38 -0
  883. package/lib/list/SentimentStatus/SentimentStatus.js +42 -56
  884. package/lib/list/SentimentStatus/SentimentStatus.module.css +1 -1
  885. package/lib/list/SentimentStatus/props/propTypes.js +13 -0
  886. package/lib/list/Subject/Subject.js +69 -95
  887. package/lib/list/Subject/Subject.module.css +21 -3
  888. package/lib/list/Subject/props/defaultProps.js +14 -0
  889. package/lib/list/Subject/props/propTypes.js +27 -0
  890. package/lib/list/TagNew/TagNew.js +46 -62
  891. package/lib/list/TagNew/TagNew.module.css +5 -5
  892. package/lib/list/TagNew/props/defaultProps.js +11 -0
  893. package/lib/list/TagNew/props/propTypes.js +16 -0
  894. package/lib/list/Thread/Thread.js +56 -69
  895. package/lib/list/Thread/Thread.module.css +30 -7
  896. package/lib/list/Thread/props/defaultProps.js +11 -0
  897. package/lib/list/Thread/props/propTypes.js +16 -0
  898. package/lib/list/UserTime/UserTime.js +96 -120
  899. package/lib/list/UserTime/UserTime.module.css +23 -14
  900. package/lib/list/UserTime/props/defaultProps.js +10 -0
  901. package/lib/list/UserTime/props/propTypes.js +22 -0
  902. package/lib/list/index.js +152 -0
  903. package/lib/list/listCommon.module.css +19 -51
  904. package/lib/list/status/StatusDropdown/StatusDropdown.js +475 -0
  905. package/lib/list/status/StatusDropdown/StatusDropdown.module.css +92 -0
  906. package/lib/list/status/StatusDropdown/props/defaultProps.js +26 -0
  907. package/lib/list/status/StatusDropdown/props/propTypes.js +32 -0
  908. package/lib/list/status/StatusListItem/StatusListItem.js +142 -0
  909. package/lib/list/status/StatusListItem/StatusListItem.module.css +107 -0
  910. package/lib/list/status/StatusListItem/props/defaultProps.js +22 -0
  911. package/lib/list/status/StatusListItem/props/propTypes.js +37 -0
  912. package/lib/list/status/index.js +20 -0
  913. package/lib/lookup/EmptyPage/EmptyPage.js +61 -92
  914. package/lib/lookup/EmptyPage/LookupEmptyPage.module.css +1 -1
  915. package/lib/lookup/EmptyPage/props/defaultProps.js +11 -0
  916. package/lib/lookup/EmptyPage/props/propTypes.js +13 -0
  917. package/lib/lookup/Lookup/Lookup.js +112 -111
  918. package/lib/lookup/Lookup/Lookup.module.css +12 -8
  919. package/lib/lookup/Lookup/props/defaultProps.js +14 -0
  920. package/lib/lookup/Lookup/props/propTypes.js +26 -0
  921. package/lib/lookup/Section/LookupSection.module.css +3 -2
  922. package/lib/lookup/Section/Section.js +36 -57
  923. package/lib/lookup/Section/props/propTypes.js +14 -0
  924. package/lib/lookup/header/Close/Close.js +42 -61
  925. package/lib/lookup/header/Close/LookupClose.module.css +5 -5
  926. package/lib/lookup/header/Close/props/defaultProps.js +10 -0
  927. package/lib/lookup/header/Close/props/propTypes.js +14 -0
  928. package/lib/lookup/header/ModuleHeader/ModuleHeader.js +92 -126
  929. package/lib/lookup/header/ModuleHeader/props/defaultProps.js +10 -0
  930. package/lib/lookup/header/ModuleHeader/props/propTypes.js +25 -0
  931. package/lib/lookup/header/Search/LookupSearch.module.css +52 -9
  932. package/lib/lookup/header/Search/Search.js +213 -120
  933. package/lib/lookup/header/Search/props/defaultProps.js +12 -0
  934. package/lib/lookup/header/Search/props/propTypes.js +37 -0
  935. package/lib/lookup/header/TicketHeader/TicketHeader.js +107 -159
  936. package/lib/lookup/header/TicketHeader/TicketHeader.module.css +3 -2
  937. package/lib/lookup/header/TicketHeader/props/defaultProps.js +11 -0
  938. package/lib/lookup/header/TicketHeader/props/propTypes.js +28 -0
  939. package/lib/lookup/header/Title/LookupTitle.module.css +4 -4
  940. package/lib/lookup/header/Title/Title.js +42 -65
  941. package/lib/lookup/header/Title/props/defaultProps.js +10 -0
  942. package/lib/lookup/header/Title/props/propTypes.js +14 -0
  943. package/lib/lookup/header/ViewDropDown/ViewDropDown.js +168 -239
  944. package/lib/lookup/header/ViewDropDown/ViewDropDown.module.css +9 -11
  945. package/lib/lookup/header/ViewDropDown/props/defaultProps.js +14 -0
  946. package/lib/lookup/header/ViewDropDown/props/propTypes.js +34 -0
  947. package/lib/lookup/header/index.js +41 -0
  948. package/lib/lookup/header/lookupHeaderCommon.module.css +13 -5
  949. package/lib/lookup/header/lookupHeaderCommonResponsive.module.css +1 -1
  950. package/lib/lookup/index.js +33 -0
  951. package/lib/setup/header/Button/Button.js +49 -71
  952. package/lib/setup/header/Button/props/defaultProps.js +11 -0
  953. package/lib/setup/header/Button/props/propTypes.js +15 -0
  954. package/lib/setup/header/Link/HeaderLink.module.css +4 -5
  955. package/lib/setup/header/Link/Link.js +57 -87
  956. package/lib/setup/header/Link/props/defaultProps.js +11 -0
  957. package/lib/setup/header/Link/props/propTypes.js +16 -0
  958. package/lib/setup/header/Search/Search.js +73 -98
  959. package/lib/setup/header/Search/Search.module.css +13 -12
  960. package/lib/setup/header/Search/props/defaultProps.js +12 -0
  961. package/lib/setup/header/Search/props/propTypes.js +19 -0
  962. package/lib/setup/header/Views/Views.js +59 -88
  963. package/lib/setup/header/Views/Views.module.css +4 -4
  964. package/lib/setup/header/Views/props/defaultProps.js +13 -0
  965. package/lib/setup/header/Views/props/propTypes.js +17 -0
  966. package/lib/setup/header/index.js +34 -0
  967. package/lib/setup/helptips/Description/Description.js +35 -49
  968. package/lib/setup/helptips/Description/HelpTipsDescription.module.css +2 -2
  969. package/lib/setup/helptips/Description/props/propTypes.js +12 -0
  970. package/lib/setup/helptips/Link/HelpTipsLink.module.css +2 -2
  971. package/lib/setup/helptips/Link/Link.js +49 -67
  972. package/lib/setup/helptips/Link/props/propTypes.js +15 -0
  973. package/lib/setup/helptips/ListGroup/ListGroup.js +52 -70
  974. package/lib/setup/helptips/ListGroup/ListGroup.module.css +2 -2
  975. package/lib/setup/helptips/ListGroup/props/propTypes.js +13 -0
  976. package/lib/setup/helptips/Title/HelpTipsTitle.module.css +2 -2
  977. package/lib/setup/helptips/Title/Title.js +35 -49
  978. package/lib/setup/helptips/Title/props/propTypes.js +12 -0
  979. package/lib/setup/helptips/index.js +34 -0
  980. package/lib/setup/index.js +15 -0
  981. package/lib/setup/table/Table/Table.js +42 -56
  982. package/lib/setup/table/Table/props/defaultProps.js +11 -0
  983. package/lib/setup/table/Table/props/propTypes.js +14 -0
  984. package/lib/setup/table/TableBody/TableBody.js +47 -56
  985. package/lib/setup/table/TableBody/props/defaultProps.js +10 -0
  986. package/lib/setup/table/TableBody/props/propTypes.js +15 -0
  987. package/lib/setup/table/TableData/TableData.js +49 -74
  988. package/lib/setup/table/TableData/props/defaultProps.js +12 -0
  989. package/lib/setup/table/TableData/props/propTypes.js +18 -0
  990. package/lib/setup/table/TableHead/SetupTableHead.module.css +12 -0
  991. package/lib/setup/table/TableHead/TableHead.js +51 -78
  992. package/lib/setup/table/TableHead/props/defaultProps.js +11 -0
  993. package/lib/setup/table/TableHead/props/propTypes.js +15 -0
  994. package/lib/setup/table/TableRow/SetupTableRow.module.css +14 -0
  995. package/lib/setup/table/TableRow/TableRow.js +56 -84
  996. package/lib/setup/table/TableRow/props/defaultProps.js +11 -0
  997. package/lib/setup/table/TableRow/props/propTypes.js +19 -0
  998. package/lib/setup/table/Text/TableText.module.css +37 -0
  999. package/lib/setup/table/Text/Text.js +62 -105
  1000. package/lib/setup/table/Text/props/defaultProps.js +14 -0
  1001. package/lib/setup/table/Text/props/propTypes.js +21 -0
  1002. package/lib/setup/table/index.js +41 -0
  1003. package/lib/svg/PlusIcon.js +48 -72
  1004. package/lib/svg/SnippetIcon.js +50 -75
  1005. package/lib/svg/TemplateIcon.js +52 -71
  1006. package/lib/svg/index.js +27 -0
  1007. package/lib/svg/props/defaultProps.js +24 -0
  1008. package/lib/svg/props/propTypes.js +26 -0
  1009. package/lib/utils/ChannelIconMapping.js +103 -85
  1010. package/lib/utils/General.js +26 -5
  1011. package/lib/utils/editorUtils.js +188 -0
  1012. package/lib/version2/AlertClose/AlertClose.js +71 -0
  1013. package/lib/version2/AlertClose/AlertClose.module.css +43 -0
  1014. package/lib/version2/AlertClose/props/propTypes.js +16 -0
  1015. package/lib/version2/GlobalNotification/GlobalNotification.js +165 -0
  1016. package/lib/version2/GlobalNotification/GlobalNotification.module.css +125 -0
  1017. package/lib/version2/GlobalNotification/props/defaultProps.js +11 -0
  1018. package/lib/version2/GlobalNotification/props/propTypes.js +22 -0
  1019. package/lib/version2/alertIcons/AlarmAlertIcon.js +99 -0
  1020. package/lib/version2/alertIcons/AlertIcons.js +93 -0
  1021. package/lib/version2/alertIcons/AlertIcons.module.css +67 -0
  1022. package/lib/version2/alertIcons/DangerAlertIcon.js +99 -0
  1023. package/lib/version2/alertIcons/ErrorAlertIcon.js +104 -0
  1024. package/lib/version2/alertIcons/InfoAlertIcon.js +108 -0
  1025. package/lib/version2/alertIcons/NotificationAlertIcon.js +104 -0
  1026. package/lib/version2/alertIcons/SuccessAlertIcon.js +99 -0
  1027. package/lib/version2/alertIcons/WarningAlertIcon.js +99 -0
  1028. package/lib/version2/alertIcons/index.js +62 -0
  1029. package/lib/version2/alertIcons/props/defaultProps.js +41 -0
  1030. package/lib/version2/alertIcons/props/propTypes.js +49 -0
  1031. package/lib/version2/errorstate/Inconvenience/Inconvenience.js +101 -0
  1032. package/lib/version2/errorstate/Inconvenience/props/defaultProps.js +15 -0
  1033. package/lib/version2/errorstate/Inconvenience/props/propTypes.js +24 -0
  1034. package/lib/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +102 -0
  1035. package/lib/version2/errorstate/OopsSomethingMiss/props/defaultProps.js +15 -0
  1036. package/lib/version2/errorstate/OopsSomethingMiss/props/propTypes.js +24 -0
  1037. package/lib/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +101 -0
  1038. package/lib/version2/errorstate/UnableToProcessRequest/props/defaultProps.js +15 -0
  1039. package/lib/version2/errorstate/UnableToProcessRequest/props/propTypes.js +24 -0
  1040. package/lib/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +103 -0
  1041. package/lib/version2/errorstate/UnauthorizedLogin/props/defaultProps.js +16 -0
  1042. package/lib/version2/errorstate/UnauthorizedLogin/props/propTypes.js +25 -0
  1043. package/lib/version2/errorstate/UrlNotFound/UrlNotFound.js +101 -0
  1044. package/lib/version2/errorstate/UrlNotFound/props/defaultProps.js +15 -0
  1045. package/lib/version2/errorstate/UrlNotFound/props/propTypes.js +24 -0
  1046. package/lib/version2/errorstate/V2_ErrorStates.module.css +46 -0
  1047. package/lib/version2/errorstate/WillBeRightBack/WillBeRightBack.js +101 -0
  1048. package/lib/version2/errorstate/WillBeRightBack/props/defaultProps.js +15 -0
  1049. package/lib/version2/errorstate/WillBeRightBack/props/propTypes.js +24 -0
  1050. package/lib/version2/errorstate/index.js +48 -0
  1051. package/lib/version2/index.js +44 -0
  1052. package/lib/version2/lookup/AlertHeader/AlertHeader.js +95 -0
  1053. package/lib/version2/lookup/AlertHeader/AlertHeaderNew.module.css +87 -0
  1054. package/lib/version2/lookup/AlertHeader/props/defaultProps.js +13 -0
  1055. package/lib/version2/lookup/AlertHeader/props/propTypes.js +20 -0
  1056. package/lib/version2/lookup/AlertLookup/AlertLookup.js +226 -0
  1057. package/lib/version2/lookup/AlertLookup/AlertLookupNew.module.css +44 -0
  1058. package/lib/version2/lookup/AlertLookup/props/defaultProps.js +20 -0
  1059. package/lib/version2/lookup/AlertLookup/props/propTypes.js +44 -0
  1060. package/lib/version2/lookup/alertLookupCommonNew.module.css +33 -0
  1061. package/lib/version2/lookup/index.js +20 -0
  1062. package/lib/version2/notification/DesktopNotification/DesktopNotification.js +169 -0
  1063. package/lib/version2/notification/DesktopNotification/DesktopNotification.module.css +106 -0
  1064. package/lib/version2/notification/DesktopNotification/props/defaultProps.js +22 -0
  1065. package/lib/version2/notification/DesktopNotification/props/propTypes.js +45 -0
  1066. package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +91 -0
  1067. package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +137 -0
  1068. package/lib/version2/notification/DesktopNotificationHeader/props/defaultProps.js +12 -0
  1069. package/lib/version2/notification/DesktopNotificationHeader/props/propTypes.js +19 -0
  1070. package/lib/version2/notification/index.js +29 -0
  1071. package/package.json +82 -24
  1072. package/__testUtils__/globals.js +0 -0
  1073. package/es/ChannelIcon/docs/ChannelIcon__default.docs.js +0 -97
  1074. package/es/Drawer/docs/Drawer__default.docs.js +0 -73
  1075. package/es/Drawer/docs/Drawer__noFreeze.docs.js +0 -43
  1076. package/es/ExternalLink/docs/ExternalLink__default.docs.js +0 -40
  1077. package/es/FlipCard/docs/FlipCard__default.docs.js +0 -105
  1078. package/es/FormAction/docs/FormAction__default.docs.js +0 -199
  1079. package/es/FreezeLayer/FreezeLayer.module.css +0 -41
  1080. package/es/FreezeLayer/docs/FreezeLayer__dark.docs.js +0 -77
  1081. package/es/FreezeLayer/docs/FreezeLayer__default.docs.js +0 -76
  1082. package/es/IconButton/docs/IconButton__default.docs.js +0 -81
  1083. package/es/Image/docs/Image__default.docs.js +0 -40
  1084. package/es/Link/docs/Link__default.docs.js +0 -64
  1085. package/es/PlusIcon/docs/PlusIcon__default.docs.js +0 -40
  1086. package/es/ToastMessage/docs/ToastMessage__custom.docs.js +0 -132
  1087. package/es/ToastMessage/docs/ToastMessage__information.docs.js +0 -80
  1088. package/es/ToastMessage/docs/ToastMessage__primary.docs.js +0 -172
  1089. package/es/ToastMessage/docs/ToastMessage__secondary.docs.js +0 -64
  1090. package/es/ToastMessage/docs/ToastMessage__success.docs.js +0 -94
  1091. package/es/alert/AlertHeader/docs/AlertHeader__default.docs.js +0 -91
  1092. package/es/alert/AlertLookup/docs/AlertLookup__default.docs.js +0 -170
  1093. package/es/avatar/AvatarClose/docs/AvatarClose__default.docs.js +0 -44
  1094. package/es/avatar/AvatarCollision/docs/AvatarCollision__default.docs.js +0 -58
  1095. package/es/avatar/AvatarIcon/docs/AvatarIcon__palette.docs.js +0 -54
  1096. package/es/avatar/AvatarIcon/docs/AvatarIcon__size.docs.js +0 -49
  1097. package/es/avatar/AvatarStatus/docs/AvatarStatus__size.docs.js +0 -52
  1098. package/es/avatar/AvatarStatus/docs/AvatarStatus__state.docs.js +0 -75
  1099. package/es/avatar/AvatarThread/docs/AvatarThread__default.docs.js +0 -69
  1100. package/es/avatar/AvatarUser/docs/AvatarUser__default.docs.js +0 -146
  1101. package/es/avatar/AvatarWithTeam/docs/AvatarWithTeam__default.docs.js +0 -45
  1102. package/es/dropdown/ToggleDropDown/docs/ToggleDropDown__default.docs.js +0 -78
  1103. package/es/emptystate/CommonEmptyState/docs/CommonEmptyState__default.docs.js +0 -85
  1104. package/es/emptystate/EditionPage/docs/EditionPage__default.docs.js +0 -42
  1105. package/es/errorstate/Inconvenience/docs/Inconvenience__default.docs.js +0 -39
  1106. package/es/errorstate/LinkText/docs/LinkText__default.docs.js +0 -35
  1107. package/es/errorstate/NoRequestFound/docs/NoRequestFound__default.docs.js +0 -39
  1108. package/es/errorstate/PermissionPlay/docs/PermissionPlay__default.docs.js +0 -40
  1109. package/es/errorstate/RequestUrlNotFound/docs/RequestUrlNotFound__default.docs.js +0 -39
  1110. package/es/errorstate/UnableToProcess/docs/UnableToProcess__default.docs.js +0 -39
  1111. package/es/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__insufficient.docs.js +0 -40
  1112. package/es/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__unauthorizedLogin.docs.js +0 -39
  1113. package/es/errorstate/WillBack/docs/WillBack__default.docs.js +0 -41
  1114. package/es/layout/SetupDetailLayout/docs/SetupDetailLayout__default.docs.js +0 -79
  1115. package/es/layout/SubtabLayout/docs/SubtabLayout__default.docs.js +0 -191
  1116. package/es/list/AvatarFlip/docs/AvatarFlip__default.docs.js +0 -308
  1117. package/es/list/BluePrintStatus/docs/BluePrintStatus__default.docs.js +0 -36
  1118. package/es/list/Comment/docs/Comment__default.docs.js +0 -40
  1119. package/es/list/DotNew/docs/DotNew__default.docs.js +0 -36
  1120. package/es/list/GridStencils/docs/GridStencils__default.docs.js +0 -50
  1121. package/es/list/Icons/docs/FloatingIcons__default.docs.js +0 -56
  1122. package/es/list/ListLayout/docs/ListLayout__default.docs.js +0 -131
  1123. package/es/list/ListStencils/docs/ListStencils__default.docs.js +0 -36
  1124. package/es/list/SecondaryText/docs/ContactName__default.docs.js +0 -36
  1125. package/es/list/SecondryPanel/docs/SecondryPanelDocs.module.css +0 -41
  1126. package/es/list/SecondryPanel/docs/SecondryPanel__default.docs.js +0 -131
  1127. package/es/list/SentimentStatus/docs/SentimentStatus__default.docs.js +0 -36
  1128. package/es/list/StatusDropdown/StatusDropdown.js +0 -205
  1129. package/es/list/StatusDropdown/StatusDropdown.module.css +0 -65
  1130. package/es/list/StatusDropdown/docs/StatusDropdown__default.docs.js +0 -76
  1131. package/es/list/Subject/docs/Subject__default.docs.js +0 -49
  1132. package/es/list/TagNew/docs/TagNew__default.docs.js +0 -36
  1133. package/es/list/Thread/docs/Thread__default.docs.js +0 -36
  1134. package/es/list/TimeInfo/TimeInfo.js +0 -171
  1135. package/es/list/TimeInfo/docs/TimeInfo__default.docs.js +0 -49
  1136. package/es/list/UserTime/docs/UserTime__default.docs.js +0 -172
  1137. package/es/lookup/EmptyPage/docs/EmptyPage__account.docs.js +0 -38
  1138. package/es/lookup/EmptyPage/docs/EmptyPage__contact.docs.js +0 -38
  1139. package/es/lookup/EmptyPage/docs/EmptyPage__default.docs.js +0 -37
  1140. package/es/lookup/EmptyPage/docs/EmptyPage__product.docs.js +0 -38
  1141. package/es/lookup/Lookup/docs/Lookup__contact.docs.js +0 -212
  1142. package/es/lookup/Lookup/docs/Lookup__default.docs.js +0 -90
  1143. package/es/lookup/header/Close/docs/Close__default.docs.js +0 -35
  1144. package/es/lookup/header/ModuleHeader/docs/ModuleHeader__default.docs.js +0 -58
  1145. package/es/lookup/header/Search/docs/Search__default.docs.js +0 -62
  1146. package/es/lookup/header/TicketHeader/docs/TicketHeader__default.docs.js +0 -74
  1147. package/es/lookup/header/Title/docs/Title__default.docs.js +0 -35
  1148. package/es/lookup/header/ViewDropDown/docs/ViewDropDown__default.docs.js +0 -64
  1149. package/es/setup/header/Button/docs/Button__default.docs.js +0 -37
  1150. package/es/setup/header/Link/docs/Link__default.docs.js +0 -36
  1151. package/es/setup/header/Search/docs/Search__default.docs.js +0 -54
  1152. package/es/setup/header/SelectDropdown/SelectDropdown.js +0 -162
  1153. package/es/setup/header/SelectDropdown/SelectDropdown.module.css +0 -43
  1154. package/es/setup/header/SelectDropdown/docs/SelectDropdown__default.docs.js +0 -44
  1155. package/es/setup/header/Views/docs/Views__default.docs.js +0 -40
  1156. package/es/setup/helptips/Description/docs/Description__default.docs.js +0 -42
  1157. package/es/setup/helptips/Link/docs/Link__default.docs.js +0 -43
  1158. package/es/setup/helptips/ListGroup/docs/ListGroup__default.docs.js +0 -46
  1159. package/es/setup/helptips/Title/docs/Title__default.docs.js +0 -40
  1160. package/es/setup/table/Table/docs/Table__default.docs.js +0 -193
  1161. package/es/setup/table/TableHead/TableHead.css +0 -12
  1162. package/es/setup/table/TableRow/TableRow.css +0 -14
  1163. package/es/setup/table/Text/Text.css +0 -37
  1164. package/es/setup/table/Text/docs/Text__default.docs.js +0 -69
  1165. package/es/svg/docs/SVG__default.docs.js +0 -87
  1166. package/es/utils/KeyboardApi.js +0 -254
  1167. package/es/utils/Ticket.js +0 -3
  1168. package/lib/ChannelIcon/docs/ChannelIcon__default.docs.js +0 -114
  1169. package/lib/Drawer/docs/Drawer__default.docs.js +0 -95
  1170. package/lib/Drawer/docs/Drawer__noFreeze.docs.js +0 -59
  1171. package/lib/ExternalLink/docs/ExternalLink__default.docs.js +0 -56
  1172. package/lib/FlipCard/docs/FlipCard__default.docs.js +0 -124
  1173. package/lib/FormAction/docs/FormAction__default.docs.js +0 -221
  1174. package/lib/FreezeLayer/FreezeLayer.module.css +0 -41
  1175. package/lib/FreezeLayer/docs/FreezeLayer__dark.docs.js +0 -96
  1176. package/lib/FreezeLayer/docs/FreezeLayer__default.docs.js +0 -95
  1177. package/lib/IconButton/docs/IconButton__default.docs.js +0 -97
  1178. package/lib/Image/docs/Image__default.docs.js +0 -59
  1179. package/lib/Link/docs/Link__default.docs.js +0 -80
  1180. package/lib/PlusIcon/docs/PlusIcon__default.docs.js +0 -59
  1181. package/lib/ToastMessage/docs/ToastMessage__custom.docs.js +0 -157
  1182. package/lib/ToastMessage/docs/ToastMessage__information.docs.js +0 -99
  1183. package/lib/ToastMessage/docs/ToastMessage__primary.docs.js +0 -191
  1184. package/lib/ToastMessage/docs/ToastMessage__secondary.docs.js +0 -83
  1185. package/lib/ToastMessage/docs/ToastMessage__success.docs.js +0 -113
  1186. package/lib/alert/AlertHeader/docs/AlertHeader__default.docs.js +0 -107
  1187. package/lib/alert/AlertLookup/docs/AlertLookup__default.docs.js +0 -189
  1188. package/lib/avatar/AvatarClose/docs/AvatarClose__default.docs.js +0 -63
  1189. package/lib/avatar/AvatarCollision/docs/AvatarCollision__default.docs.js +0 -77
  1190. package/lib/avatar/AvatarIcon/docs/AvatarIcon__palette.docs.js +0 -76
  1191. package/lib/avatar/AvatarIcon/docs/AvatarIcon__size.docs.js +0 -71
  1192. package/lib/avatar/AvatarStatus/docs/AvatarStatus__size.docs.js +0 -74
  1193. package/lib/avatar/AvatarStatus/docs/AvatarStatus__state.docs.js +0 -97
  1194. package/lib/avatar/AvatarThread/docs/AvatarThread__default.docs.js +0 -91
  1195. package/lib/avatar/AvatarUser/docs/AvatarUser__default.docs.js +0 -168
  1196. package/lib/avatar/AvatarWithTeam/docs/AvatarWithTeam__default.docs.js +0 -64
  1197. package/lib/dropdown/ToggleDropDown/docs/ToggleDropDown__default.docs.js +0 -94
  1198. package/lib/emptystate/CommonEmptyState/docs/CommonEmptyState__default.docs.js +0 -110
  1199. package/lib/emptystate/EditionPage/docs/EditionPage__default.docs.js +0 -58
  1200. package/lib/errorstate/Inconvenience/docs/Inconvenience__default.docs.js +0 -58
  1201. package/lib/errorstate/LinkText/docs/LinkText__default.docs.js +0 -54
  1202. package/lib/errorstate/NoRequestFound/docs/NoRequestFound__default.docs.js +0 -55
  1203. package/lib/errorstate/PermissionPlay/docs/PermissionPlay__default.docs.js +0 -59
  1204. package/lib/errorstate/RequestUrlNotFound/docs/RequestUrlNotFound__default.docs.js +0 -58
  1205. package/lib/errorstate/UnableToProcess/docs/UnableToProcess__default.docs.js +0 -58
  1206. package/lib/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__insufficient.docs.js +0 -59
  1207. package/lib/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__unauthorizedLogin.docs.js +0 -58
  1208. package/lib/errorstate/WillBack/docs/WillBack__default.docs.js +0 -60
  1209. package/lib/layout/SetupDetailLayout/docs/SetupDetailLayout__default.docs.js +0 -99
  1210. package/lib/layout/SubtabLayout/docs/SubtabLayout__default.docs.js +0 -205
  1211. package/lib/list/AvatarFlip/docs/AvatarFlip__default.docs.js +0 -327
  1212. package/lib/list/BluePrintStatus/docs/BluePrintStatus__default.docs.js +0 -54
  1213. package/lib/list/Comment/docs/Comment__default.docs.js +0 -59
  1214. package/lib/list/DotNew/docs/DotNew__default.docs.js +0 -55
  1215. package/lib/list/GridStencils/docs/GridStencils__default.docs.js +0 -72
  1216. package/lib/list/Icons/docs/FloatingIcons__default.docs.js +0 -81
  1217. package/lib/list/ListLayout/docs/ListLayout__default.docs.js +0 -150
  1218. package/lib/list/ListStencils/docs/ListStencils__default.docs.js +0 -55
  1219. package/lib/list/SecondaryText/docs/ContactName__default.docs.js +0 -55
  1220. package/lib/list/SecondryPanel/docs/SecondryPanelDocs.module.css +0 -41
  1221. package/lib/list/SecondryPanel/docs/SecondryPanel__default.docs.js +0 -152
  1222. package/lib/list/SentimentStatus/docs/SentimentStatus__default.docs.js +0 -54
  1223. package/lib/list/StatusDropdown/StatusDropdown.js +0 -243
  1224. package/lib/list/StatusDropdown/StatusDropdown.module.css +0 -65
  1225. package/lib/list/StatusDropdown/docs/StatusDropdown__default.docs.js +0 -96
  1226. package/lib/list/Subject/docs/Subject__default.docs.js +0 -68
  1227. package/lib/list/TagNew/docs/TagNew__default.docs.js +0 -55
  1228. package/lib/list/Thread/docs/Thread__default.docs.js +0 -55
  1229. package/lib/list/TimeInfo/TimeInfo.js +0 -191
  1230. package/lib/list/TimeInfo/docs/TimeInfo__default.docs.js +0 -69
  1231. package/lib/list/UserTime/docs/UserTime__default.docs.js +0 -192
  1232. package/lib/lookup/EmptyPage/docs/EmptyPage__account.docs.js +0 -55
  1233. package/lib/lookup/EmptyPage/docs/EmptyPage__contact.docs.js +0 -55
  1234. package/lib/lookup/EmptyPage/docs/EmptyPage__default.docs.js +0 -54
  1235. package/lib/lookup/EmptyPage/docs/EmptyPage__product.docs.js +0 -55
  1236. package/lib/lookup/Lookup/docs/Lookup__contact.docs.js +0 -234
  1237. package/lib/lookup/Lookup/docs/Lookup__default.docs.js +0 -113
  1238. package/lib/lookup/header/Close/docs/Close__default.docs.js +0 -54
  1239. package/lib/lookup/header/ModuleHeader/docs/ModuleHeader__default.docs.js +0 -75
  1240. package/lib/lookup/header/Search/docs/Search__default.docs.js +0 -79
  1241. package/lib/lookup/header/TicketHeader/docs/TicketHeader__default.docs.js +0 -91
  1242. package/lib/lookup/header/Title/docs/Title__default.docs.js +0 -54
  1243. package/lib/lookup/header/ViewDropDown/docs/ViewDropDown__default.docs.js +0 -81
  1244. package/lib/setup/header/Button/docs/Button__default.docs.js +0 -55
  1245. package/lib/setup/header/Link/docs/Link__default.docs.js +0 -55
  1246. package/lib/setup/header/Search/docs/Search__default.docs.js +0 -73
  1247. package/lib/setup/header/SelectDropdown/SelectDropdown.js +0 -200
  1248. package/lib/setup/header/SelectDropdown/SelectDropdown.module.css +0 -43
  1249. package/lib/setup/header/SelectDropdown/docs/SelectDropdown__default.docs.js +0 -63
  1250. package/lib/setup/header/Views/docs/Views__default.docs.js +0 -59
  1251. package/lib/setup/helptips/Description/docs/Description__default.docs.js +0 -61
  1252. package/lib/setup/helptips/Link/docs/Link__default.docs.js +0 -62
  1253. package/lib/setup/helptips/ListGroup/docs/ListGroup__default.docs.js +0 -65
  1254. package/lib/setup/helptips/Title/docs/Title__default.docs.js +0 -59
  1255. package/lib/setup/table/Table/docs/Table__default.docs.js +0 -228
  1256. package/lib/setup/table/TableHead/TableHead.css +0 -12
  1257. package/lib/setup/table/TableRow/TableRow.css +0 -14
  1258. package/lib/setup/table/Text/Text.css +0 -37
  1259. package/lib/setup/table/Text/docs/Text__default.docs.js +0 -85
  1260. package/lib/svg/docs/SVG__default.docs.js +0 -110
  1261. package/lib/utils/KeyboardApi.js +0 -262
  1262. package/lib/utils/Ticket.js +0 -8
  1263. package/postpublish.js +0 -100
  1264. package/src/ChannelIcon/ChannelIcon.js +0 -120
  1265. package/src/ChannelIcon/ChannelIcon.module.css +0 -187
  1266. package/src/ChannelIcon/docs/ChannelIcon__default.docs.js +0 -63
  1267. package/src/Drawer/Drawer.js +0 -271
  1268. package/src/Drawer/Drawer.module.css +0 -140
  1269. package/src/Drawer/docs/Drawer__default.docs.js +0 -45
  1270. package/src/Drawer/docs/Drawer__noFreeze.docs.js +0 -21
  1271. package/src/ExternalLink/ExternalLink.js +0 -57
  1272. package/src/ExternalLink/ExternalLink.module.css +0 -4
  1273. package/src/ExternalLink/__tests__/ExternalLink.spec.js +0 -28
  1274. package/src/ExternalLink/docs/ExternalLink__default.docs.js +0 -24
  1275. package/src/FlipCard/FlipCard.js +0 -159
  1276. package/src/FlipCard/FlipCard.module.css +0 -35
  1277. package/src/FlipCard/docs/FlipCard__default.docs.js +0 -76
  1278. package/src/FormAction/FormAction.js +0 -120
  1279. package/src/FormAction/FormAction.module.css +0 -52
  1280. package/src/FormAction/docs/FormAction__default.docs.js +0 -94
  1281. package/src/FreezeLayer/FreezeLayer.js +0 -130
  1282. package/src/FreezeLayer/FreezeLayer.module.css +0 -37
  1283. package/src/FreezeLayer/docs/FreezeLayer__dark.docs.js +0 -53
  1284. package/src/FreezeLayer/docs/FreezeLayer__default.docs.js +0 -51
  1285. package/src/IconButton/IconButton.js +0 -70
  1286. package/src/IconButton/IconButton.module.css +0 -38
  1287. package/src/IconButton/docs/IconButton__default.docs.js +0 -49
  1288. package/src/Image/Image.js +0 -41
  1289. package/src/Image/Image.module.css +0 -11
  1290. package/src/Image/docs/Image__default.docs.js +0 -18
  1291. package/src/Link/Link.js +0 -115
  1292. package/src/Link/Link.module.css +0 -4
  1293. package/src/Link/LinkContext.js +0 -9
  1294. package/src/Link/docs/Link__default.docs.js +0 -91
  1295. package/src/PlusIcon/PlusIcon.js +0 -68
  1296. package/src/PlusIcon/PlusIcon.module.css +0 -7
  1297. package/src/PlusIcon/docs/PlusIcon__default.docs.js +0 -18
  1298. package/src/ToastMessage/ToastMessage.js +0 -289
  1299. package/src/ToastMessage/ToastMessage.module.css +0 -260
  1300. package/src/ToastMessage/docs/ToastMessage__custom.docs.js +0 -97
  1301. package/src/ToastMessage/docs/ToastMessage__information.docs.js +0 -55
  1302. package/src/ToastMessage/docs/ToastMessage__primary.docs.js +0 -135
  1303. package/src/ToastMessage/docs/ToastMessage__secondary.docs.js +0 -40
  1304. package/src/ToastMessage/docs/ToastMessage__success.docs.js +0 -68
  1305. package/src/actions/index.js +0 -22
  1306. package/src/alert/AlertHeader/AlertHeader.js +0 -115
  1307. package/src/alert/AlertHeader/AlertHeader.module.css +0 -62
  1308. package/src/alert/AlertHeader/docs/AlertHeader__default.docs.js +0 -72
  1309. package/src/alert/AlertLookup/AlertLookup.js +0 -174
  1310. package/src/alert/AlertLookup/AlertLookup.module.css +0 -20
  1311. package/src/alert/AlertLookup/docs/AlertLookup__default.docs.js +0 -123
  1312. package/src/avatar/AvatarClose/AvatarClose.js +0 -43
  1313. package/src/avatar/AvatarClose/AvatarClose.module.css +0 -31
  1314. package/src/avatar/AvatarClose/docs/AvatarClose__default.docs.js +0 -26
  1315. package/src/avatar/AvatarCollision/AvatarCollision.js +0 -72
  1316. package/src/avatar/AvatarCollision/AvatarCollision.module.css +0 -55
  1317. package/src/avatar/AvatarCollision/docs/AvatarCollision__default.docs.js +0 -40
  1318. package/src/avatar/AvatarIcon/AvatarIcon.js +0 -83
  1319. package/src/avatar/AvatarIcon/AvatarIcon.module.css +0 -36
  1320. package/src/avatar/AvatarIcon/docs/AvatarIcon__palette.docs.js +0 -35
  1321. package/src/avatar/AvatarIcon/docs/AvatarIcon__size.docs.js +0 -36
  1322. package/src/avatar/AvatarStatus/AvatarStatus.js +0 -50
  1323. package/src/avatar/AvatarStatus/AvatarStatus.module.css +0 -64
  1324. package/src/avatar/AvatarStatus/docs/AvatarStatus__size.docs.js +0 -34
  1325. package/src/avatar/AvatarStatus/docs/AvatarStatus__state.docs.js +0 -63
  1326. package/src/avatar/AvatarThread/AvatarThread.js +0 -88
  1327. package/src/avatar/AvatarThread/AvatarThread.module.css +0 -58
  1328. package/src/avatar/AvatarThread/docs/AvatarThread__default.docs.js +0 -45
  1329. package/src/avatar/AvatarUser/AvatarUser.js +0 -103
  1330. package/src/avatar/AvatarUser/AvatarUser.module.css +0 -61
  1331. package/src/avatar/AvatarUser/docs/AvatarUser__default.docs.js +0 -111
  1332. package/src/avatar/AvatarWithTeam/AvatarWithTeam.js +0 -57
  1333. package/src/avatar/AvatarWithTeam/AvatarWithTeam.module.css +0 -16
  1334. package/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js +0 -50
  1335. package/src/avatar/AvatarWithTeam/docs/AvatarWithTeam__default.docs.js +0 -28
  1336. package/src/docs/generalDocs.js +0 -118
  1337. package/src/docs/lookupDocs.js +0 -33
  1338. package/src/docs/setupDocs.js +0 -27
  1339. package/src/dropdown/ToggleDropDown/ToggleDropDown.js +0 -598
  1340. package/src/dropdown/ToggleDropDown/ToggleDropDown.module.css +0 -65
  1341. package/src/dropdown/ToggleDropDown/docs/ToggleDropDown__default.docs.js +0 -75
  1342. package/src/emptystate/CommonEmptyState/CommonEmptyState.js +0 -117
  1343. package/src/emptystate/CommonEmptyState/CommonEmptyState.module.css +0 -31
  1344. package/src/emptystate/CommonEmptyState/docs/CommonEmptyState__default.docs.js +0 -53
  1345. package/src/emptystate/EditionPage/EditionPage.css +0 -37
  1346. package/src/emptystate/EditionPage/EditionPage.js +0 -69
  1347. package/src/emptystate/EditionPage/docs/EditionPage__default.docs.js +0 -23
  1348. package/src/errorstate/EmptyStates.module.css +0 -40
  1349. package/src/errorstate/Inconvenience/Inconvenience.js +0 -42
  1350. package/src/errorstate/Inconvenience/Inconvenience.module.css +0 -6
  1351. package/src/errorstate/Inconvenience/docs/Inconvenience__default.docs.js +0 -19
  1352. package/src/errorstate/LinkText/LinkText.js +0 -28
  1353. package/src/errorstate/LinkText/LinkText.module.css +0 -6
  1354. package/src/errorstate/LinkText/docs/LinkText__default.docs.js +0 -13
  1355. package/src/errorstate/NoRequestFound/NoRequestFound.js +0 -42
  1356. package/src/errorstate/NoRequestFound/NoRequestFound.module.css +0 -5
  1357. package/src/errorstate/NoRequestFound/docs/NoRequestFound__default.docs.js +0 -19
  1358. package/src/errorstate/PermissionPlay/PermissionPlay.js +0 -46
  1359. package/src/errorstate/PermissionPlay/PermissionPlay.module.css +0 -33
  1360. package/src/errorstate/PermissionPlay/docs/PermissionPlay__default.docs.js +0 -20
  1361. package/src/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +0 -42
  1362. package/src/errorstate/RequestUrlNotFound/RequestUrlNotFound.module.css +0 -5
  1363. package/src/errorstate/RequestUrlNotFound/docs/RequestUrlNotFound__default.docs.js +0 -19
  1364. package/src/errorstate/UnableToProcess/UnableToProcess.js +0 -42
  1365. package/src/errorstate/UnableToProcess/UnableToProcess.module.css +0 -14
  1366. package/src/errorstate/UnableToProcess/docs/UnableToProcess__default.docs.js +0 -19
  1367. package/src/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +0 -42
  1368. package/src/errorstate/UnauthorizedLogin/UnauthorizedLogin.module.css +0 -14
  1369. package/src/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__insufficient.docs.js +0 -20
  1370. package/src/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__unauthorizedLogin.docs.js +0 -19
  1371. package/src/errorstate/WillBack/WillBack.js +0 -40
  1372. package/src/errorstate/WillBack/WillBack.module.css +0 -21
  1373. package/src/errorstate/WillBack/docs/WillBack__default.docs.js +0 -21
  1374. package/src/index.js +0 -14
  1375. package/src/layout/SetupDetailLayout/SetupDetailLayout.js +0 -248
  1376. package/src/layout/SetupDetailLayout/SetupDetailLayout.module.css +0 -116
  1377. package/src/layout/SetupDetailLayout/docs/SetupDetailLayout__default.docs.js +0 -35
  1378. package/src/layout/SetupDetailLayout/index.js +0 -4
  1379. package/src/layout/SubtabLayout/SubtabLayout.js +0 -166
  1380. package/src/layout/SubtabLayout/SubtabLayout.module.css +0 -66
  1381. package/src/layout/SubtabLayout/docs/SubtabLayout__default.docs.js +0 -72
  1382. package/src/layout/SubtabLayout/index.js +0 -3
  1383. package/src/list/AvatarFlip/AvatarFlip.js +0 -89
  1384. package/src/list/AvatarFlip/AvatarFlip.module.css +0 -15
  1385. package/src/list/AvatarFlip/docs/AvatarFlip__default.docs.js +0 -207
  1386. package/src/list/BluePrintStatus/BluePrintStatus.js +0 -31
  1387. package/src/list/BluePrintStatus/BluePrintStatus.module.css +0 -13
  1388. package/src/list/BluePrintStatus/docs/BluePrintStatus__default.docs.js +0 -20
  1389. package/src/list/Comment/Comment.js +0 -54
  1390. package/src/list/Comment/Comment.module.css +0 -17
  1391. package/src/list/Comment/docs/Comment__default.docs.js +0 -22
  1392. package/src/list/DepartmentDropDown/DepartmentDropDown.js +0 -78
  1393. package/src/list/DepartmentDropDown/DepartmentDropDown.module.css +0 -62
  1394. package/src/list/Dot/Dot.js +0 -28
  1395. package/src/list/Dot/Dot.module.css +0 -13
  1396. package/src/list/DotNew/DotNew.js +0 -24
  1397. package/src/list/DotNew/DotNew.module.css +0 -16
  1398. package/src/list/DotNew/docs/DotNew__default.docs.js +0 -18
  1399. package/src/list/GridStencils/GridStencils.js +0 -46
  1400. package/src/list/GridStencils/GridStencils.module.css +0 -131
  1401. package/src/list/GridStencils/docs/GridStencils__default.docs.js +0 -30
  1402. package/src/list/Icons/AddNewIcon.js +0 -53
  1403. package/src/list/Icons/CompleteIcon.js +0 -54
  1404. package/src/list/Icons/DeleteIcon.js +0 -61
  1405. package/src/list/Icons/EditIcon.js +0 -61
  1406. package/src/list/Icons/FloatingIcons.js +0 -32
  1407. package/src/list/Icons/Icons.module.css +0 -15
  1408. package/src/list/Icons/SmartIcon.js +0 -40
  1409. package/src/list/Icons/docs/FloatingIcons__default.docs.js +0 -37
  1410. package/src/list/ListLayout/ListLayout.js +0 -105
  1411. package/src/list/ListLayout/ListLayout.module.css +0 -30
  1412. package/src/list/ListLayout/docs/ListLayout__default.docs.js +0 -54
  1413. package/src/list/ListStencils/ListStencils.js +0 -34
  1414. package/src/list/ListStencils/ListStencils.module.css +0 -24
  1415. package/src/list/ListStencils/docs/ListStencils__default.docs.js +0 -18
  1416. package/src/list/SecondaryText/AccountName.js +0 -80
  1417. package/src/list/SecondaryText/ContactName.js +0 -107
  1418. package/src/list/SecondaryText/DepartmentText.js +0 -32
  1419. package/src/list/SecondaryText/Email.js +0 -69
  1420. package/src/list/SecondaryText/HappinessRating.js +0 -37
  1421. package/src/list/SecondaryText/PhoneNumber.js +0 -72
  1422. package/src/list/SecondaryText/PriorityText.js +0 -40
  1423. package/src/list/SecondaryText/SecondaryText.js +0 -36
  1424. package/src/list/SecondaryText/SecondaryText.module.css +0 -94
  1425. package/src/list/SecondaryText/StatusText.js +0 -49
  1426. package/src/list/SecondaryText/TicketId.js +0 -53
  1427. package/src/list/SecondaryText/Website.js +0 -58
  1428. package/src/list/SecondaryText/docs/ContactName__default.docs.js +0 -18
  1429. package/src/list/SecondaryText/index.js +0 -11
  1430. package/src/list/SecondryPanel/SecondryPanel.js +0 -120
  1431. package/src/list/SecondryPanel/SecondryPanel.module.css +0 -27
  1432. package/src/list/SecondryPanel/docs/SecondryPanelDocs.module.css +0 -41
  1433. package/src/list/SecondryPanel/docs/SecondryPanel__default.docs.js +0 -66
  1434. package/src/list/SentimentStatus/SentimentStatus.js +0 -32
  1435. package/src/list/SentimentStatus/SentimentStatus.module.css +0 -9
  1436. package/src/list/SentimentStatus/docs/SentimentStatus__default.docs.js +0 -20
  1437. package/src/list/StatusDropdown/StatusDropdown.js +0 -174
  1438. package/src/list/StatusDropdown/StatusDropdown.module.css +0 -51
  1439. package/src/list/StatusDropdown/docs/StatusDropdown__default.docs.js +0 -72
  1440. package/src/list/Subject/Subject.js +0 -71
  1441. package/src/list/Subject/Subject.module.css +0 -9
  1442. package/src/list/Subject/docs/Subject__default.docs.js +0 -27
  1443. package/src/list/TagNew/TagNew.js +0 -37
  1444. package/src/list/TagNew/TagNew.module.css +0 -108
  1445. package/src/list/TagNew/docs/TagNew__default.docs.js +0 -18
  1446. package/src/list/Thread/Thread.js +0 -36
  1447. package/src/list/Thread/Thread.module.css +0 -15
  1448. package/src/list/Thread/docs/Thread__default.docs.js +0 -18
  1449. package/src/list/TimeInfo/TimeInfo.js +0 -156
  1450. package/src/list/TimeInfo/docs/TimeInfo__default.docs.js +0 -26
  1451. package/src/list/UserTime/UserTime.js +0 -130
  1452. package/src/list/UserTime/UserTime.module.css +0 -42
  1453. package/src/list/UserTime/docs/UserTime__default.docs.js +0 -122
  1454. package/src/list/listCommon.module.css +0 -84
  1455. package/src/lookup/EmptyPage/EmptyPage.js +0 -62
  1456. package/src/lookup/EmptyPage/LookupEmptyPage.module.css +0 -12
  1457. package/src/lookup/EmptyPage/docs/EmptyPage__account.docs.js +0 -17
  1458. package/src/lookup/EmptyPage/docs/EmptyPage__contact.docs.js +0 -17
  1459. package/src/lookup/EmptyPage/docs/EmptyPage__default.docs.js +0 -16
  1460. package/src/lookup/EmptyPage/docs/EmptyPage__product.docs.js +0 -17
  1461. package/src/lookup/Lookup/Lookup.js +0 -80
  1462. package/src/lookup/Lookup/Lookup.module.css +0 -22
  1463. package/src/lookup/Lookup/docs/Lookup__contact.docs.js +0 -189
  1464. package/src/lookup/Lookup/docs/Lookup__default.docs.js +0 -59
  1465. package/src/lookup/Section/LookupSection.module.css +0 -7
  1466. package/src/lookup/Section/Section.js +0 -27
  1467. package/src/lookup/header/Close/Close.js +0 -36
  1468. package/src/lookup/header/Close/LookupClose.module.css +0 -15
  1469. package/src/lookup/header/Close/docs/Close__default.docs.js +0 -17
  1470. package/src/lookup/header/ModuleHeader/ModuleHeader.js +0 -76
  1471. package/src/lookup/header/ModuleHeader/docs/ModuleHeader__default.docs.js +0 -39
  1472. package/src/lookup/header/Search/LookupSearch.module.css +0 -14
  1473. package/src/lookup/header/Search/Search.js +0 -104
  1474. package/src/lookup/header/Search/docs/Search__default.docs.js +0 -41
  1475. package/src/lookup/header/TicketHeader/TicketHeader.js +0 -105
  1476. package/src/lookup/header/TicketHeader/TicketHeader.module.css +0 -19
  1477. package/src/lookup/header/TicketHeader/docs/TicketHeader__default.docs.js +0 -63
  1478. package/src/lookup/header/Title/LookupTitle.module.css +0 -20
  1479. package/src/lookup/header/Title/Title.js +0 -37
  1480. package/src/lookup/header/Title/docs/Title__default.docs.js +0 -17
  1481. package/src/lookup/header/ViewDropDown/ViewDropDown.js +0 -185
  1482. package/src/lookup/header/ViewDropDown/ViewDropDown.module.css +0 -50
  1483. package/src/lookup/header/ViewDropDown/docs/ViewDropDown__default.docs.js +0 -54
  1484. package/src/lookup/header/lookupHeaderCommon.module.css +0 -21
  1485. package/src/lookup/header/lookupHeaderCommonResponsive.module.css +0 -15
  1486. package/src/setup/header/Button/Button.js +0 -40
  1487. package/src/setup/header/Button/HeaderButton.module.css +0 -3
  1488. package/src/setup/header/Button/docs/Button__default.docs.js +0 -21
  1489. package/src/setup/header/Link/HeaderLink.module.css +0 -16
  1490. package/src/setup/header/Link/Link.js +0 -48
  1491. package/src/setup/header/Link/docs/Link__default.docs.js +0 -20
  1492. package/src/setup/header/Search/Search.js +0 -74
  1493. package/src/setup/header/Search/Search.module.css +0 -56
  1494. package/src/setup/header/Search/docs/Search__default.docs.js +0 -32
  1495. package/src/setup/header/SelectDropdown/SelectDropdown.js +0 -122
  1496. package/src/setup/header/SelectDropdown/SelectDropdown.module.css +0 -35
  1497. package/src/setup/header/SelectDropdown/docs/SelectDropdown__default.docs.js +0 -31
  1498. package/src/setup/header/Views/Views.js +0 -62
  1499. package/src/setup/header/Views/Views.module.css +0 -27
  1500. package/src/setup/header/Views/docs/Views__default.docs.js +0 -20
  1501. package/src/setup/helptips/Description/Description.js +0 -22
  1502. package/src/setup/helptips/Description/HelpTipsDescription.module.css +0 -6
  1503. package/src/setup/helptips/Description/docs/Description__default.docs.js +0 -24
  1504. package/src/setup/helptips/Link/HelpTipsLink.module.css +0 -6
  1505. package/src/setup/helptips/Link/Link.js +0 -40
  1506. package/src/setup/helptips/Link/docs/Link__default.docs.js +0 -27
  1507. package/src/setup/helptips/ListGroup/ListGroup.js +0 -42
  1508. package/src/setup/helptips/ListGroup/ListGroup.module.css +0 -17
  1509. package/src/setup/helptips/ListGroup/docs/ListGroup__default.docs.js +0 -37
  1510. package/src/setup/helptips/Title/HelpTipsTitle.module.css +0 -5
  1511. package/src/setup/helptips/Title/Title.js +0 -22
  1512. package/src/setup/helptips/Title/docs/Title__default.docs.js +0 -22
  1513. package/src/setup/table/Table/Table.js +0 -25
  1514. package/src/setup/table/Table/docs/Table__default.docs.js +0 -115
  1515. package/src/setup/table/TableBody/TableBody.js +0 -27
  1516. package/src/setup/table/TableData/TableData.css +0 -36
  1517. package/src/setup/table/TableData/TableData.js +0 -45
  1518. package/src/setup/table/TableData/hover.css +0 -6
  1519. package/src/setup/table/TableHead/TableHead.css +0 -8
  1520. package/src/setup/table/TableHead/TableHead.js +0 -53
  1521. package/src/setup/table/TableRow/TableRow.css +0 -10
  1522. package/src/setup/table/TableRow/TableRow.js +0 -60
  1523. package/src/setup/table/Text/Text.css +0 -37
  1524. package/src/setup/table/Text/Text.js +0 -81
  1525. package/src/setup/table/Text/docs/Text__default.docs.js +0 -38
  1526. package/src/svg/PlusIcon.js +0 -43
  1527. package/src/svg/SnippetIcon.js +0 -50
  1528. package/src/svg/TemplateIcon.js +0 -46
  1529. package/src/svg/docs/SVG__default.docs.js +0 -46
  1530. package/src/utils/ChannelIconMapping.js +0 -112
  1531. package/src/utils/General.js +0 -18
  1532. package/src/utils/KeyboardApi.js +0 -280
  1533. package/src/utils/Ticket.js +0 -10
  1534. /package/es/setup/table/TableData/{TableData.css → SetupTableData.module.css} +0 -0
  1535. /package/es/setup/table/TableData/{hover.css → Tablehover.module.css} +0 -0
  1536. /package/lib/setup/table/TableData/{TableData.css → SetupTableData.module.css} +0 -0
  1537. /package/lib/setup/table/TableData/{hover.css → Tablehover.module.css} +0 -0
@@ -1,179 +1,138 @@
1
- import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
2
- import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
3
- import _createClass from 'babel-runtime/helpers/createClass';
4
- import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
5
- import _inherits from 'babel-runtime/helpers/inherits';
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); }
6
2
  import React, { Component } from 'react';
7
- import PropTypes from 'prop-types';
3
+ import { defaultProps } from './props/defaultProps';
4
+ import { propTypes } from './props/propTypes';
8
5
  import AvatarUser from '../avatar/AvatarUser/AvatarUser';
9
6
  import AvatarIcon from '../avatar/AvatarIcon/AvatarIcon';
10
7
  import CheckBox from '@zohodesk/components/lib/CheckBox/CheckBox';
11
8
  import { Container } from '@zohodesk/components/lib/Layout';
12
9
  import ChannelIcon from '../ChannelIcon/ChannelIcon';
13
- import { CssProvider } from '@zohodesk/components/lib/CssProvider';
10
+ import AvatarSize from '@zohodesk/components/lib/Provider/AvatarSize';
14
11
  import style from './FlipCard.module.css';
15
12
  import { stopBubbling } from '../utils/General';
16
-
17
- var FlipCard = function (_Component) {
18
- _inherits(FlipCard, _Component);
19
-
20
- function FlipCard(props) {
21
- _classCallCheck(this, FlipCard);
22
-
23
- var _this = _possibleConstructorReturn(this, (FlipCard.__proto__ || _Object$getPrototypeOf(FlipCard)).call(this, props));
24
-
25
- _this.onChange = _this.onChange.bind(_this);
26
- _this.onClick = _this.onClick.bind(_this);
27
- return _this;
13
+ export default class FlipCard extends Component {
14
+ constructor(props) {
15
+ super(props);
16
+ this.onChange = this.onChange.bind(this);
17
+ this.onClick = this.onClick.bind(this);
28
18
  }
29
-
30
- _createClass(FlipCard, [{
31
- key: 'onClick',
32
- value: function onClick(e) {
33
- var noNeedFlip = this.props.noNeedFlip;
34
-
35
- if (!noNeedFlip) {
36
- stopBubbling(e);
37
- }
38
- }
39
- }, {
40
- key: 'onChange',
41
- value: function onChange(isChecked, e) {
42
- var onChange = this.props.onChange;
43
-
19
+ onClick(e) {
20
+ let {
21
+ noNeedFlip
22
+ } = this.props;
23
+ if (!noNeedFlip) {
44
24
  stopBubbling(e);
45
- var id = this.props.id;
46
-
47
- onChange(id, isChecked, e);
48
- }
49
- }, {
50
- key: 'render',
51
- value: function render() {
52
- var _props = this.props,
53
- id = _props.id,
54
- action = _props.action,
55
- name = _props.name,
56
- initial = _props.initial,
57
- isChecked = _props.isChecked,
58
- noNeedFlip = _props.noNeedFlip,
59
- size = _props.size,
60
- channel = _props.channel,
61
- isPaidUser = _props.isPaidUser,
62
- isPortalUser = _props.isPortalUser,
63
- src = _props.src,
64
- icon = _props.icon,
65
- iconSize = _props.iconSize,
66
- iconClass = _props.iconClass,
67
- ticListContainer = _props.ticListContainer,
68
- ticList = _props.ticList,
69
- dataId = _props.dataId,
70
- className = _props.className,
71
- palette = _props.palette,
72
- frontClass = _props.frontClass,
73
- needTitle = _props.needTitle,
74
- iconColor = _props.iconColor,
75
- tourId = _props.tourId;
76
-
77
- return React.createElement(
78
- 'div',
79
- {
80
- className: CssProvider(size) + ' ' + (noNeedFlip ? style.flipNone : isChecked ? style.notFlip : style.flip),
81
- onClick: this.onClick,
82
- 'data-id': ticListContainer,
83
- 'data-tour': tourId
84
- },
85
- React.createElement(
86
- 'div',
87
- { className: style.container, 'data-id': ticList },
88
- !noNeedFlip ? React.createElement(
89
- Container,
90
- {
91
- align: 'both',
92
- className: style.front + ' ' + (frontClass ? frontClass : '')
93
- },
94
- React.createElement(CheckBox, {
95
- checked: isChecked,
96
- name: 'category',
97
- onChange: this.onChange,
98
- id: 'checkbox_' + id,
99
- dataId: 'listViewCheckBox_' + id
100
- })
101
- ) : null,
102
- React.createElement(
103
- Container,
104
- { align: 'both', className: style.back },
105
- channel && action ? React.createElement(ChannelIcon, {
106
- name: channel,
107
- action: action,
108
- size: size,
109
- iconSize: iconSize,
110
- iconClass: iconClass,
111
- dataId: channel,
112
- className: className,
113
- palette: palette,
114
- iconColor: iconColor
115
- }) : icon ? React.createElement(AvatarIcon, {
116
- name: icon,
117
- iconSize: iconSize,
118
- size: size,
119
- iconClass: iconClass,
120
- dataId: icon,
121
- className: className,
122
- iconColor: iconColor
123
- }) : React.createElement(AvatarUser, {
124
- name: name,
125
- initial: initial,
126
- size: size,
127
- isPaid: isPaidUser,
128
- isPortal: isPortalUser,
129
- src: src,
130
- dataId: dataId,
131
- needTitle: needTitle
132
- })
133
- )
134
- )
135
- );
136
25
  }
137
- }]);
138
-
139
- return FlipCard;
140
- }(Component);
141
-
142
- export default FlipCard;
143
-
144
-
145
- FlipCard.propTypes = {
146
- action: PropTypes.string,
147
- channel: PropTypes.string,
148
- className: PropTypes.string,
149
- dataId: PropTypes.string,
150
- frontClass: PropTypes.string,
151
- icon: PropTypes.string,
152
- iconClass: PropTypes.string,
153
- iconSize: PropTypes.string,
154
- id: PropTypes.string.isRequired,
155
- initial: PropTypes.string,
156
- isChecked: PropTypes.bool,
157
- isPaidUser: PropTypes.bool,
158
- isPortalUser: PropTypes.bool,
159
- name: PropTypes.string,
160
- needTitle: PropTypes.bool,
161
- noNeedFlip: PropTypes.bool,
162
- onChange: PropTypes.func,
163
- palette: PropTypes.oneOf(['primary', 'secondary', 'info', 'default']),
164
- size: PropTypes.string,
165
- src: PropTypes.string,
166
- ticList: PropTypes.string,
167
- ticListContainer: PropTypes.string,
168
- iconColor: PropTypes.string,
169
- tourId: PropTypes.string
170
- };
171
- FlipCard.defaultProps = {
172
- size: 'medium',
173
- needTitle: true
174
- };
175
- if (false) {
176
- FlipCard.docs = {
177
- componentGroup: 'Molecule'
178
- };
179
- }
26
+ }
27
+ onChange(isChecked, e) {
28
+ let {
29
+ onChange
30
+ } = this.props;
31
+ stopBubbling(e);
32
+ let {
33
+ id
34
+ } = this.props;
35
+ onChange(id, isChecked, e);
36
+ }
37
+ render() {
38
+ let {
39
+ id,
40
+ action,
41
+ name,
42
+ initial,
43
+ isChecked,
44
+ noNeedFlip,
45
+ size,
46
+ channel,
47
+ isPaidUser,
48
+ isPortalUser,
49
+ src,
50
+ icon,
51
+ iconSize,
52
+ iconClass,
53
+ ticListContainer,
54
+ ticList,
55
+ dataId,
56
+ className,
57
+ palette,
58
+ textPalette,
59
+ customTextClass,
60
+ frontClass,
61
+ needTitle,
62
+ iconColor,
63
+ tourId,
64
+ isFilledCheckbox,
65
+ channelTitle,
66
+ customProps
67
+ } = this.props;
68
+ const {
69
+ CheckBoxProps = {},
70
+ ChannelIconProps = {},
71
+ AvatarIconProps = {},
72
+ AvatarUserProps = {}
73
+ } = customProps;
74
+ return /*#__PURE__*/React.createElement("div", {
75
+ className: `${AvatarSize(size)} ${noNeedFlip ? style.flipNone : isChecked ? style.notFlip : style.flip}`,
76
+ onClick: this.onClick,
77
+ "data-id": ticListContainer,
78
+ "data-tour": tourId
79
+ }, /*#__PURE__*/React.createElement("div", {
80
+ className: style.container,
81
+ "data-id": ticList
82
+ }, !noNeedFlip ? /*#__PURE__*/React.createElement(Container, {
83
+ align: "both",
84
+ className: `${style.front} ${frontClass ? frontClass : ''}`
85
+ }, /*#__PURE__*/React.createElement(CheckBox, _extends({
86
+ isFilled: isFilledCheckbox,
87
+ checked: isChecked,
88
+ onChange: this.onChange,
89
+ id: `checkbox_${id}`,
90
+ dataId: `listViewCheckBox_${id}`
91
+ }, CheckBoxProps))) : null, /*#__PURE__*/React.createElement(Container, {
92
+ align: "both",
93
+ className: style.back
94
+ }, channel && action ? /*#__PURE__*/React.createElement(ChannelIcon, _extends({
95
+ name: channel,
96
+ action: action,
97
+ size: size,
98
+ iconSize: iconSize,
99
+ iconClass: iconClass,
100
+ dataId: channel,
101
+ className: className,
102
+ palette: palette,
103
+ textPalette: textPalette,
104
+ customTextClass: customTextClass,
105
+ iconColor: iconColor,
106
+ title: channelTitle,
107
+ iconTitle: channelTitle
108
+ }, ChannelIconProps)) : icon ? /*#__PURE__*/React.createElement(AvatarIcon, _extends({
109
+ name: icon,
110
+ iconSize: iconSize,
111
+ size: size,
112
+ iconClass: iconClass,
113
+ dataId: icon,
114
+ className: className,
115
+ iconColor: iconColor,
116
+ title: needTitle ? name : ''
117
+ }, AvatarIconProps)) : /*#__PURE__*/React.createElement(AvatarUser, _extends({
118
+ name: name,
119
+ initial: initial,
120
+ size: size,
121
+ isPaid: isPaidUser,
122
+ isPortal: isPortalUser,
123
+ src: src,
124
+ dataId: dataId,
125
+ needTitle: needTitle,
126
+ palette: palette,
127
+ textPalette: textPalette,
128
+ customTextClass: customTextClass
129
+ }, AvatarUserProps)))));
130
+ }
131
+ }
132
+ FlipCard.propTypes = propTypes;
133
+ FlipCard.defaultProps = defaultProps;
134
+ // if (__DOCS__) {
135
+ // FlipCard.docs = {
136
+ // componentGroup: 'Molecule'
137
+ // };
138
+ // }
@@ -1,12 +1,12 @@
1
1
  .flip,
2
2
  .flipNone {
3
- color: var(--zd_text_smoke21);
3
+ color: var(--zdt_flipcard_default_text);
4
4
  }.flip, .flipNone {
5
- background-color: transparent;
5
+ background-color: var(--zdt_flipcard_default_bg);
6
6
  }
7
7
  .container {
8
8
  position: relative;
9
- transition: 0.3s all;
9
+ transition: var(--zd_transition3) all;
10
10
  transform-style: preserve-3d;
11
11
  }
12
12
  .container,
@@ -21,15 +21,24 @@
21
21
  backface-visibility: hidden;
22
22
  -webkit-backface-visibility: hidden;
23
23
  }
24
- .front {
24
+ [dir=ltr] .front {
25
25
  transform: rotateY(180deg) perspective(1px);
26
26
  }
27
+ [dir=rtl] .front {
28
+ transform: rotateY(-180deg) perspective(1px);
29
+ }
27
30
  .back {
28
31
  transform: rotateY(0deg) perspective(1px);
29
32
  }
30
- .notFlip .container {
33
+ [dir=ltr] .notFlip .container {
31
34
  transform: rotateY(180deg);
32
35
  }
33
- .flip:hover .container, .hoverContainer:hover .container {
36
+ [dir=rtl] .notFlip .container {
37
+ transform: rotateY(-180deg);
38
+ }
39
+ [dir=ltr] .flip:hover .container, [dir=ltr] .hoverContainer:hover .container {
34
40
  transform: rotateY(180deg);
35
41
  }
42
+ [dir=rtl] .flip:hover .container, [dir=rtl] .hoverContainer:hover .container {
43
+ transform: rotateY(-180deg);
44
+ }
@@ -0,0 +1,5 @@
1
+ export const defaultProps = {
2
+ size: 'medium',
3
+ needTitle: true,
4
+ customProps: {}
5
+ };
@@ -0,0 +1,37 @@
1
+ import PropTypes from 'prop-types';
2
+ export const propTypes = {
3
+ action: PropTypes.string,
4
+ channel: PropTypes.string,
5
+ channelTitle: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
6
+ className: PropTypes.string,
7
+ customTextClass: PropTypes.string,
8
+ dataId: PropTypes.string,
9
+ frontClass: PropTypes.string,
10
+ icon: PropTypes.string,
11
+ iconClass: PropTypes.string,
12
+ iconColor: PropTypes.string,
13
+ iconSize: PropTypes.string,
14
+ id: PropTypes.string.isRequired,
15
+ initial: PropTypes.string,
16
+ isChecked: PropTypes.bool,
17
+ isFilledCheckbox: PropTypes.bool,
18
+ isPaidUser: PropTypes.bool,
19
+ isPortalUser: PropTypes.bool,
20
+ name: PropTypes.string,
21
+ needTitle: PropTypes.bool,
22
+ noNeedFlip: PropTypes.bool,
23
+ onChange: PropTypes.func,
24
+ palette: PropTypes.oneOf(['primary', 'secondary', 'info', 'default']),
25
+ size: PropTypes.string,
26
+ src: PropTypes.string,
27
+ textPalette: PropTypes.oneOf(['white', 'black']),
28
+ ticList: PropTypes.string,
29
+ ticListContainer: PropTypes.string,
30
+ tourId: PropTypes.string,
31
+ customProps: PropTypes.shape({
32
+ CheckBoxProps: PropTypes.object,
33
+ ChannelIconProps: PropTypes.object,
34
+ AvatarIconProps: PropTypes.object,
35
+ AvatarUserProps: PropTypes.object
36
+ })
37
+ };
@@ -1,128 +1,79 @@
1
- import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
2
- import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
3
- import _createClass from 'babel-runtime/helpers/createClass';
4
- import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
5
- import _inherits from 'babel-runtime/helpers/inherits';
6
1
  import React from 'react';
7
- import PropTypes from 'prop-types';
2
+ import { defaultProps } from './props/defaultProps';
3
+ import { propTypes } from './props/propTypes';
8
4
  import style from './FormAction.module.css';
9
5
  import { Container, Box } from '@zohodesk/components/lib/Layout';
10
- export var LeftSide = function LeftSide(props) {
6
+ export const LeftSide = props => {
11
7
  props.children;
12
8
  };
13
- export var RightSide = function RightSide(props) {
9
+ export const RightSide = props => {
14
10
  props.children;
15
11
  };
16
- export var Center = function Center(props) {
12
+ export const Center = props => {
17
13
  props.children;
18
14
  };
15
+ export default class FormAction extends React.Component {
16
+ render() {
17
+ let {
18
+ size,
19
+ children,
20
+ paddingLeftSize,
21
+ paddingRightClass,
22
+ dataSelectorId
23
+ } = this.props;
24
+ let leftbuttonGroup = [],
25
+ rightbuttonGroup = [],
26
+ centerbuttonGroup = [];
27
+ React.Children.map(children, child => {
28
+ if (!child) {
29
+ return child;
30
+ } else if (child.type === LeftSide) {
31
+ leftbuttonGroup = leftbuttonGroup.concat(child.props.children);
32
+ } else if (child.type === RightSide) {
33
+ rightbuttonGroup = rightbuttonGroup.concat(child.props.children);
34
+ } else if (child.type === Center) {
35
+ centerbuttonGroup = centerbuttonGroup.concat(child.props.children);
36
+ } else {
37
+ leftbuttonGroup.push(child);
38
+ }
39
+ });
40
+ let hasLeftChild = leftbuttonGroup.length > 0;
41
+ let hasRightChild = rightbuttonGroup.length > 0;
42
+ let hasCenterChild = centerbuttonGroup.length > 0;
43
+ return /*#__PURE__*/React.createElement("div", {
44
+ className: style.wrapperDiv,
45
+ "data-selector-id": dataSelectorId
46
+ }, /*#__PURE__*/React.createElement(Container, {
47
+ alignBox: "row",
48
+ isCover: false,
49
+ align: hasCenterChild ? 'around' : hasRightChild && !hasLeftChild ? 'right' : null,
50
+ className: `
51
+ ${`${style.footerParent} ${hasCenterChild ? '' : style[`${paddingLeftSize ? paddingLeftSize : size}Padding`]} ${paddingRightClass}`}
19
52
 
20
- var FormAction = function (_React$Component) {
21
- _inherits(FormAction, _React$Component);
22
-
23
- function FormAction() {
24
- _classCallCheck(this, FormAction);
25
-
26
- return _possibleConstructorReturn(this, (FormAction.__proto__ || _Object$getPrototypeOf(FormAction)).apply(this, arguments));
53
+ ${style[`${size}Footer`]}
54
+ `
55
+ }, hasLeftChild ? /*#__PURE__*/React.createElement(Box, {
56
+ flexible: hasRightChild ? true : false,
57
+ shrink: !hasRightChild && hasLeftChild ? true : false
58
+ }, leftbuttonGroup.length > 1 ? leftbuttonGroup.map((item, index) => /*#__PURE__*/React.createElement("div", {
59
+ className: style.marginRight,
60
+ key: index
61
+ }, item)) : leftbuttonGroup[0]) : null, hasRightChild ? /*#__PURE__*/React.createElement(Box, {
62
+ shrink: hasRightChild && !hasLeftChild ? true : false
63
+ }, rightbuttonGroup.length > 1 ? rightbuttonGroup.map((item, index) => /*#__PURE__*/React.createElement("div", {
64
+ className: style.marginRight,
65
+ key: index
66
+ }, item)) : rightbuttonGroup[0]) : null, hasCenterChild ? /*#__PURE__*/React.createElement(Box, null, centerbuttonGroup.length > 1 ? centerbuttonGroup.map((item, index) => /*#__PURE__*/React.createElement("div", {
67
+ className: style.marginRight,
68
+ key: index
69
+ }, item)) : centerbuttonGroup[0]) : null));
27
70
  }
71
+ }
72
+ FormAction.propTypes = propTypes;
73
+ FormAction.defaultProps = defaultProps;
28
74
 
29
- _createClass(FormAction, [{
30
- key: 'render',
31
- value: function render() {
32
- var _props = this.props,
33
- size = _props.size,
34
- children = _props.children,
35
- paddingLeftSize = _props.paddingLeftSize,
36
- paddingRightClass = _props.paddingRightClass;
37
-
38
- var leftbuttonGroup = [],
39
- rightbuttonGroup = [],
40
- centerbuttonGroup = [];
41
- React.Children.map(children, function (child) {
42
- if (!child) {
43
- return child;
44
- } else if (child.type === LeftSide) {
45
- leftbuttonGroup = leftbuttonGroup.concat(child.props.children);
46
- } else if (child.type === RightSide) {
47
- rightbuttonGroup = rightbuttonGroup.concat(child.props.children);
48
- } else if (child.type === Center) {
49
- centerbuttonGroup = centerbuttonGroup.concat(child.props.children);
50
- } else {
51
- leftbuttonGroup.push(child);
52
- }
53
- });
54
-
55
- var hasLeftChild = leftbuttonGroup.length > 0;
56
-
57
- var hasRightChild = rightbuttonGroup.length > 0;
58
-
59
- var hasCenterChild = centerbuttonGroup.length > 0;
60
- return React.createElement(
61
- 'div',
62
- { className: style.wrapperDiv },
63
- React.createElement(
64
- Container,
65
- {
66
- alignBox: 'row',
67
- isCover: false,
68
- align: hasCenterChild ? 'around' : hasRightChild && !hasLeftChild ? 'right' : null,
69
- className: ' \n ' + (style.footerParent + ' ' + (hasCenterChild ? '' : style[(paddingLeftSize ? paddingLeftSize : size) + 'Padding']) + ' ' + paddingRightClass) + '\n\n ' + style[size + 'Footer'] + '\n '
70
- },
71
- hasLeftChild ? React.createElement(
72
- Box,
73
- {
74
- flexible: hasRightChild ? true : false,
75
- shrink: !hasRightChild && hasLeftChild ? true : false
76
- },
77
- leftbuttonGroup.length > 1 ? leftbuttonGroup.map(function (item) {
78
- return React.createElement(
79
- 'div',
80
- { className: style.marginRight },
81
- item
82
- );
83
- }) : leftbuttonGroup[0]
84
- ) : null,
85
- hasRightChild ? React.createElement(
86
- Box,
87
- { shrink: hasRightChild && !hasLeftChild ? true : false },
88
- rightbuttonGroup.length > 1 ? rightbuttonGroup.map(function (item) {
89
- return React.createElement(
90
- 'div',
91
- { className: style.marginRight },
92
- item
93
- );
94
- }) : rightbuttonGroup[0]
95
- ) : null,
96
- hasCenterChild ? React.createElement(
97
- Box,
98
- null,
99
- centerbuttonGroup.length > 1 ? centerbuttonGroup.map(function (item, index) {
100
- return React.createElement(
101
- 'div',
102
- { className: style.marginRight, key: index },
103
- item
104
- );
105
- }) : centerbuttonGroup[0]
106
- ) : null
107
- )
108
- );
109
- }
110
- }]);
111
-
112
- return FormAction;
113
- }(React.Component);
114
-
115
- export default FormAction;
116
-
117
-
118
- FormAction.propTypes = {
119
- children: PropTypes.node,
120
- paddingLeftSize: PropTypes.oneOf(['large', 'medium', 'xmedium', 'small', 'xsmall']),
121
- paddingRightClass: PropTypes.string,
122
- size: PropTypes.oneOf(['large', 'medium', 'small'])
123
- };
124
-
125
- FormAction.defaultProps = {
126
- size: 'medium',
127
- paddingRightClass: ''
128
- };
75
+ // if (__DOCS__) {
76
+ // FormAction.docs = {
77
+ // componentGroup: 'Atom'
78
+ // };
79
+ // }
@@ -1,11 +1,16 @@
1
+ .varClass {
2
+ --footerBg: var(--zdt_formAction_bg);
3
+ --footerBorder: var(--zdt_formAction_border);
4
+ }
1
5
  .wrapperDiv {
2
6
  position: relative;
3
7
  z-index: 1;
8
+ composes: varClass;
4
9
  }
5
10
  .footerParent {
6
11
  position: relative;
7
- background-color: var(--dot_bg_white);
8
- border-top: solid 1px var(--dot_border_solitude);
12
+ background-color: var(--footerBg);
13
+ border-top: solid 1px var(--footerBorder);
9
14
  }
10
15
  .largeFooter {
11
16
  padding-top: var(--zd_size24);
@@ -16,8 +21,8 @@
16
21
  padding-bottom: var(--zd_size20);
17
22
  }
18
23
  .smallFooter {
19
- padding-top: var(--zd_size6);
20
- padding-bottom: var(--zd_size6);
24
+ padding-top: var(--zd_size10);
25
+ padding-bottom: var(--zd_size10);
21
26
  }
22
27
 
23
28
  [dir=ltr] .largePadding {
@@ -0,0 +1,5 @@
1
+ export const defaultProps = {
2
+ size: 'medium',
3
+ paddingRightClass: '',
4
+ dataSelectorId: 'formAction'
5
+ };
@@ -0,0 +1,8 @@
1
+ import PropTypes from 'prop-types';
2
+ export const propTypes = {
3
+ children: PropTypes.node,
4
+ paddingLeftSize: PropTypes.oneOf(['large', 'medium', 'xmedium', 'small', 'xsmall']),
5
+ paddingRightClass: PropTypes.string,
6
+ size: PropTypes.oneOf(['large', 'medium', 'small']),
7
+ dataSelectorId: PropTypes.string
8
+ };