@zohodesk/dot 1.0.0-temp.999 → 1.0.0-test.113

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 (1128) hide show
  1. package/README.md +57 -1
  2. package/assets/Appearance/dark/mode/dotDarkMode.module.css +3 -0
  3. package/assets/Appearance/default/mode/dotDefaultMode.module.css +3 -0
  4. package/assets/Appearance/pureDark/mode/dotPureDarkMode.module.css +3 -0
  5. package/es/ActionButton/ActionButton.js +20 -57
  6. package/es/ActionButton/ActionButton.module.css +25 -9
  7. package/es/ActionButton/props/defaultProps.js +17 -0
  8. package/es/ActionButton/props/propTypes.js +31 -0
  9. package/es/AlphabeticList/AlphabeticList.js +6 -43
  10. package/es/AlphabeticList/AlphabeticList.module.css +7 -4
  11. package/es/AlphabeticList/props/defaultProps.js +11 -0
  12. package/es/AlphabeticList/props/propTypes.js +22 -0
  13. package/es/Attachment/Attachment.js +4 -23
  14. package/es/Attachment/Attachment.module.css +47 -10
  15. package/es/Attachment/props/defaultProps.js +6 -0
  16. package/es/Attachment/props/propTypes.js +15 -0
  17. package/es/AttachmentViewer/Attachment.js +0 -1
  18. package/es/AttachmentViewer/AttachmentImage.js +4 -21
  19. package/es/AttachmentViewer/AttachmentViewer.js +4 -61
  20. package/es/AttachmentViewer/AttachmentViewer.module.css +89 -27
  21. package/es/AttachmentViewer/props/defaultProps.js +10 -0
  22. package/es/AttachmentViewer/props/propTypes.js +31 -0
  23. package/es/AttachmentViewer/utils.js +0 -17
  24. package/es/ChannelIcon/ChannelIcon.js +4 -35
  25. package/es/ChannelIcon/ChannelIcon.module.css +30 -21
  26. package/es/ChannelIcon/props/defaultProps.js +6 -0
  27. package/es/ChannelIcon/props/propTypes.js +24 -0
  28. package/es/Drawer/Drawer.js +44 -90
  29. package/es/Drawer/Drawer.module.css +59 -11
  30. package/es/Drawer/props/defaultProps.js +21 -0
  31. package/es/Drawer/props/propTypes.js +50 -0
  32. package/es/ExternalLink/ExternalLink.js +6 -25
  33. package/es/ExternalLink/props/defaultProps.js +5 -0
  34. package/es/ExternalLink/props/propTypes.js +12 -0
  35. package/es/FlipCard/FlipCard.js +5 -50
  36. package/es/FlipCard/FlipCard.module.css +14 -5
  37. package/es/FlipCard/props/defaultProps.js +5 -0
  38. package/es/FlipCard/props/propTypes.js +37 -0
  39. package/es/FormAction/FormAction.js +7 -16
  40. package/es/FormAction/FormAction.module.css +34 -9
  41. package/es/FormAction/props/defaultProps.js +4 -0
  42. package/es/FormAction/props/propTypes.js +7 -0
  43. package/es/FreezeLayer/FreezeLayer.js +4 -35
  44. package/es/FreezeLayer/FreezeLayer.module.css +6 -2
  45. package/es/FreezeLayer/props/defaultProps.js +8 -0
  46. package/es/FreezeLayer/props/propTypes.js +17 -0
  47. package/es/IconButton/IconButton.js +4 -54
  48. package/es/IconButton/IconButton.module.css +1 -1
  49. package/es/IconButton/props/defaultProps.js +15 -0
  50. package/es/IconButton/props/propTypes.js +31 -0
  51. package/es/Image/Image.js +4 -19
  52. package/es/Image/props/defaultProps.js +4 -0
  53. package/es/Image/props/propTypes.js +13 -0
  54. package/es/ImportantNotes/ImportantNotes.js +4 -19
  55. package/es/ImportantNotes/ImportantNotes.module.css +7 -2
  56. package/es/ImportantNotes/props/defaultProps.js +6 -0
  57. package/es/ImportantNotes/props/propTypes.js +10 -0
  58. package/es/Link/Link.js +13 -38
  59. package/es/Link/props/defaultProps.js +5 -0
  60. package/es/Link/props/propTypes.js +14 -0
  61. package/es/Loader/Loader.js +0 -3
  62. package/es/Loader/Loader.module.css +25 -4
  63. package/es/Message/Message.js +5 -26
  64. package/es/Message/Message.module.css +42 -9
  65. package/es/Message/props/defaultProps.js +3 -0
  66. package/es/Message/props/propTypes.js +12 -0
  67. package/es/MessageBanner/MessageBanner.js +4 -20
  68. package/es/MessageBanner/MessageBanner.module.css +12 -4
  69. package/es/MessageBanner/props/defaultProps.js +6 -0
  70. package/es/MessageBanner/props/propTypes.js +12 -0
  71. package/es/NewStar/NewStar.js +4 -12
  72. package/es/NewStar/NewStar.module.css +42 -5
  73. package/es/NewStar/props/defaultProps.js +4 -0
  74. package/es/NewStar/props/propTypes.js +6 -0
  75. package/es/PlusIcon/PlusIcon.js +4 -22
  76. package/es/PlusIcon/props/defaultProps.js +8 -0
  77. package/es/PlusIcon/props/propTypes.js +11 -0
  78. package/es/ToastMessage/ToastMessage.js +11 -71
  79. package/es/ToastMessage/ToastMessage.module.css +96 -25
  80. package/es/ToastMessage/props/defaultProps.js +17 -0
  81. package/es/ToastMessage/props/propTypes.js +38 -0
  82. package/es/Upload/Upload.js +4 -24
  83. package/es/Upload/Upload.module.css +27 -8
  84. package/es/Upload/props/defaultProps.js +6 -0
  85. package/es/Upload/props/propTypes.js +16 -0
  86. package/es/actions/AutoClose.js +4 -16
  87. package/es/actions/index.js +0 -3
  88. package/es/actions/props/defaultProps.js +3 -0
  89. package/es/actions/props/propTypes.js +7 -0
  90. package/es/alert/AlertHeader/AlertHeader.js +4 -25
  91. package/es/alert/AlertHeader/AlertHeader.module.css +21 -3
  92. package/es/alert/AlertHeader/props/defaultProps.js +8 -0
  93. package/es/alert/AlertHeader/props/propTypes.js +15 -0
  94. package/es/alert/AlertLookup/AlertLookup.js +18 -108
  95. package/es/alert/AlertLookup/AlertLookup.module.css +6 -2
  96. package/es/alert/AlertLookup/props/defaultProps.js +14 -0
  97. package/es/alert/AlertLookup/props/propTypes.js +36 -0
  98. package/es/avatar/AvatarClose/AvatarClose.js +5 -23
  99. package/es/avatar/AvatarClose/AvatarClose.module.css +9 -3
  100. package/es/avatar/AvatarClose/props/defaultProps.js +5 -0
  101. package/es/avatar/AvatarClose/props/propTypes.js +13 -0
  102. package/es/avatar/AvatarCollision/AvatarCollision.js +5 -28
  103. package/es/avatar/AvatarCollision/AvatarCollision.module.css +18 -4
  104. package/es/avatar/AvatarCollision/props/defaultProps.js +7 -0
  105. package/es/avatar/AvatarCollision/props/propTypes.js +16 -0
  106. package/es/avatar/AvatarIcon/AvatarIcon.js +5 -36
  107. package/es/avatar/AvatarIcon/AvatarIcon.module.css +3 -4
  108. package/es/avatar/AvatarIcon/props/defaultProps.js +13 -0
  109. package/es/avatar/AvatarIcon/props/propTypes.js +19 -0
  110. package/es/avatar/AvatarStatus/AvatarStatus.js +9 -38
  111. package/es/avatar/AvatarStatus/AvatarStatus.module.css +59 -9
  112. package/es/avatar/AvatarStatus/props/defaultProps.js +9 -0
  113. package/es/avatar/AvatarStatus/props/propTypes.js +23 -0
  114. package/es/avatar/AvatarThread/AvatarThread.js +5 -41
  115. package/es/avatar/AvatarThread/AvatarThread.module.css +59 -5
  116. package/es/avatar/AvatarThread/props/defaultProps.js +8 -0
  117. package/es/avatar/AvatarThread/props/propTypes.js +29 -0
  118. package/es/avatar/AvatarUser/AvatarUser.js +5 -46
  119. package/es/avatar/AvatarUser/AvatarUser.module.css +81 -10
  120. package/es/avatar/AvatarUser/props/defaultProps.js +7 -0
  121. package/es/avatar/AvatarUser/props/propTypes.js +34 -0
  122. package/es/avatar/AvatarWithTeam/AvatarWithTeam.js +5 -34
  123. package/es/avatar/AvatarWithTeam/AvatarWithTeam.module.css +10 -3
  124. package/es/avatar/AvatarWithTeam/props/defaultProps.js +7 -0
  125. package/es/avatar/AvatarWithTeam/props/propTypes.js +23 -0
  126. package/es/common/dot_animation.module.css +16 -3
  127. package/es/deprecated/SelectDropdown/SelectDropdown.js +0 -9
  128. package/es/deprecated/SelectDropdown/SelectDropdown.module.css +11 -3
  129. package/es/deprecated/utils/General.js +0 -2
  130. package/es/deprecated/utils/KeyboardApi.js +4 -45
  131. package/es/docs/formDocs.js +15 -15
  132. package/es/docs/generalDocs.js +107 -76
  133. package/es/docs/lookupDocs.js +27 -19
  134. package/es/docs/setupDocs.js +14 -11
  135. package/es/dropdown/ToggleDropDown/ToggleDropDown.js +88 -198
  136. package/es/dropdown/ToggleDropDown/ToggleDropDown.module.css +19 -6
  137. package/es/dropdown/ToggleDropDown/props/defaultProps.js +24 -0
  138. package/es/dropdown/ToggleDropDown/props/propTypes.js +70 -0
  139. package/es/emptystate/CommonEmptyState/CommonEmptyState.js +4 -33
  140. package/es/emptystate/CommonEmptyState/CommonEmptyState.module.css +12 -4
  141. package/es/emptystate/CommonEmptyState/props/defaultProps.js +10 -0
  142. package/es/emptystate/CommonEmptyState/props/propTypes.js +21 -0
  143. package/es/emptystate/EditionPage/EditionPage.css +9 -3
  144. package/es/emptystate/EditionPage/EditionPage.js +5 -16
  145. package/es/emptystate/EditionPage/props/defaultProps.js +5 -0
  146. package/es/emptystate/EditionPage/props/propTypes.js +7 -0
  147. package/es/errorstate/EmptyStates.module.css +13 -10
  148. package/es/errorstate/Inconvenience/Inconvenience.js +5 -20
  149. package/es/errorstate/Inconvenience/Inconvenience.module.css +3 -0
  150. package/es/errorstate/Inconvenience/props/defaultProps.js +4 -0
  151. package/es/errorstate/Inconvenience/props/propTypes.js +11 -0
  152. package/es/errorstate/LinkText/LinkText.js +4 -14
  153. package/es/errorstate/LinkText/LinkText.module.css +1 -1
  154. package/es/errorstate/LinkText/props/defaultProps.js +4 -0
  155. package/es/errorstate/LinkText/props/propTypes.js +8 -0
  156. package/es/errorstate/NoRequestFound/NoRequestFound.js +5 -20
  157. package/es/errorstate/NoRequestFound/props/defaultProps.js +4 -0
  158. package/es/errorstate/NoRequestFound/props/propTypes.js +11 -0
  159. package/es/errorstate/PermissionPlay/PermissionPlay.js +5 -20
  160. package/es/errorstate/PermissionPlay/PermissionPlay.module.css +2 -2
  161. package/es/errorstate/PermissionPlay/props/defaultProps.js +4 -0
  162. package/es/errorstate/PermissionPlay/props/propTypes.js +11 -0
  163. package/es/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +5 -20
  164. package/es/errorstate/RequestUrlNotFound/props/defaultProps.js +4 -0
  165. package/es/errorstate/RequestUrlNotFound/props/propTypes.js +11 -0
  166. package/es/errorstate/UnableToProcess/UnableToProcess.js +5 -20
  167. package/es/errorstate/UnableToProcess/props/defaultProps.js +4 -0
  168. package/es/errorstate/UnableToProcess/props/propTypes.js +11 -0
  169. package/es/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +5 -20
  170. package/es/errorstate/UnauthorizedLogin/props/defaultProps.js +4 -0
  171. package/es/errorstate/UnauthorizedLogin/props/propTypes.js +11 -0
  172. package/es/errorstate/WillBack/WillBack.js +5 -14
  173. package/es/errorstate/WillBack/WillBack.module.css +1 -3
  174. package/es/errorstate/WillBack/props/defaultProps.js +4 -0
  175. package/es/errorstate/WillBack/props/propTypes.js +5 -0
  176. package/es/form/fields/CheckBoxField/CheckBoxField.js +6 -49
  177. package/es/form/fields/CheckBoxField/props/defaultProps.js +11 -0
  178. package/es/form/fields/CheckBoxField/props/propTypes.js +27 -0
  179. package/es/form/fields/CurrencyField/CurrencyField.js +6 -66
  180. package/es/form/fields/CurrencyField/props/defaultProps.js +16 -0
  181. package/es/form/fields/CurrencyField/props/propTypes.js +36 -0
  182. package/es/form/fields/DateField/DateField.js +14 -76
  183. package/es/form/fields/DateField/props/defaultProps.js +18 -0
  184. package/es/form/fields/DateField/props/propTypes.js +39 -0
  185. package/es/form/fields/FieldContainer/FieldContainer.js +5 -22
  186. package/es/form/fields/FieldContainer/props/defaultProps.js +6 -0
  187. package/es/form/fields/FieldContainer/props/propTypes.js +12 -0
  188. package/es/form/fields/Fields.module.css +49 -14
  189. package/es/form/fields/MultiSelectField/MultiSelectField.js +16 -84
  190. package/es/form/fields/MultiSelectField/props/defaultProps.js +16 -0
  191. package/es/form/fields/MultiSelectField/props/propTypes.js +50 -0
  192. package/es/form/fields/PhoneField/PhoneField.js +7 -69
  193. package/es/form/fields/PhoneField/props/defaultProps.js +15 -0
  194. package/es/form/fields/PhoneField/props/propTypes.js +40 -0
  195. package/es/form/fields/RadioField/RadioField.js +7 -49
  196. package/es/form/fields/RadioField/props/defaultProps.js +11 -0
  197. package/es/form/fields/RadioField/props/propTypes.js +30 -0
  198. package/es/form/fields/SelectField/SelectField.js +20 -82
  199. package/es/form/fields/SelectField/props/defaultProps.js +17 -0
  200. package/es/form/fields/SelectField/props/propTypes.js +50 -0
  201. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +9 -72
  202. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +19 -7
  203. package/es/form/fields/TagsMultiSelect/props/defaultProps.js +10 -0
  204. package/es/form/fields/TagsMultiSelect/props/propTypes.js +43 -0
  205. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +8 -93
  206. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.module.css +4 -1
  207. package/es/form/fields/TagsMultiSelectField/props/defaultProps.js +18 -0
  208. package/es/form/fields/TagsMultiSelectField/props/propTypes.js +52 -0
  209. package/es/form/fields/TextBoxField/TextBoxField.js +19 -68
  210. package/es/form/fields/TextBoxField/props/defaultProps.js +16 -0
  211. package/es/form/fields/TextBoxField/props/propTypes.js +37 -0
  212. package/es/form/fields/TextEditor/TextEditor.js +16 -113
  213. package/es/form/fields/TextEditor/TextEditor.module.css +149 -72
  214. package/es/form/fields/TextEditor/props/defaultProps.js +12 -0
  215. package/es/form/fields/TextEditor/props/propTypes.js +40 -0
  216. package/es/form/fields/TextEditorField/TextEditorField.js +6 -74
  217. package/es/form/fields/TextEditorField/props/defaultProps.js +14 -0
  218. package/es/form/fields/TextEditorField/props/propTypes.js +47 -0
  219. package/es/form/fields/TextEditorWrapper/TextEditorWrapper.js +9 -60
  220. package/es/form/fields/TextEditorWrapper/TextEditorWrapper.module.css +13 -2
  221. package/es/form/fields/TextEditorWrapper/props/defaultProps.js +8 -0
  222. package/es/form/fields/TextEditorWrapper/props/propTypes.js +39 -0
  223. package/es/form/fields/TextareaField/TextareaField.js +18 -64
  224. package/es/form/fields/TextareaField/props/defaultProps.js +14 -0
  225. package/es/form/fields/TextareaField/props/propTypes.js +34 -0
  226. package/es/form/fields/ValidationMessage/ValidationMessage.js +4 -22
  227. package/es/form/fields/ValidationMessage/ValidationMessage.module.css +9 -4
  228. package/es/form/fields/ValidationMessage/props/defaultProps.js +6 -0
  229. package/es/form/fields/ValidationMessage/props/propTypes.js +14 -0
  230. package/es/form/layout/Field/Field.js +4 -16
  231. package/es/form/layout/Field/props/defaultProps.js +4 -0
  232. package/es/form/layout/Field/props/propTypes.js +10 -0
  233. package/es/form/layout/Section/Section.js +2 -12
  234. package/es/form/layout/Section/props/propTypes.js +9 -0
  235. package/es/index.js +3 -4
  236. package/es/layout/SetupDetailLayout/SetupDetailLayout.js +10 -63
  237. package/es/layout/SetupDetailLayout/SetupDetailLayout.module.css +52 -16
  238. package/es/layout/SetupDetailLayout/props/defaultProps.js +18 -0
  239. package/es/layout/SetupDetailLayout/props/propTypes.js +33 -0
  240. package/es/layout/SubtabLayout/SubtabLayout.js +11 -72
  241. package/es/layout/SubtabLayout/SubtabLayout.module.css +55 -29
  242. package/es/layout/SubtabLayout/props/defaultProps.js +25 -0
  243. package/es/layout/SubtabLayout/props/propTypes.js +40 -0
  244. package/es/list/AvatarFlip/AvatarFlip.js +4 -35
  245. package/es/list/AvatarFlip/props/defaultProps.js +5 -0
  246. package/es/list/AvatarFlip/props/propTypes.js +28 -0
  247. package/es/list/BluePrintStatus/BluePrintStatus.js +2 -7
  248. package/es/list/BluePrintStatus/BluePrintStatus.module.css +4 -1
  249. package/es/list/BluePrintStatus/props/propTypes.js +4 -0
  250. package/es/list/Comment/Comment.js +8 -16
  251. package/es/list/Comment/Comment.module.css +5 -0
  252. package/es/list/Comment/props/defaultProps.js +3 -0
  253. package/es/list/Comment/props/propTypes.js +9 -0
  254. package/es/list/DepartmentDropDown/DepartmentDropDown.js +4 -40
  255. package/es/list/DepartmentDropDown/props/defaultProps.js +7 -0
  256. package/es/list/DepartmentDropDown/props/propTypes.js +24 -0
  257. package/es/list/Dot/Dot.js +4 -11
  258. package/es/list/Dot/props/defaultProps.js +4 -0
  259. package/es/list/Dot/props/propTypes.js +5 -0
  260. package/es/list/DotNew/DotNew.js +4 -12
  261. package/es/list/DotNew/DotNew.module.css +3 -3
  262. package/es/list/DotNew/props/defaultProps.js +3 -0
  263. package/es/list/DotNew/props/propTypes.js +6 -0
  264. package/es/list/GridStencils/GridStencils.js +2 -9
  265. package/es/list/GridStencils/GridStencils.module.css +66 -16
  266. package/es/list/GridStencils/props/propTypes.js +7 -0
  267. package/es/list/Icons/AddNewIcon.js +2 -9
  268. package/es/list/Icons/CompleteIcon.js +2 -10
  269. package/es/list/Icons/DeleteIcon.js +4 -11
  270. package/es/list/Icons/EditIcon.js +2 -10
  271. package/es/list/Icons/FloatingIcons.js +4 -11
  272. package/es/list/Icons/Icons.module.css +2 -2
  273. package/es/list/Icons/ReadUnreadIcon.js +4 -15
  274. package/es/list/Icons/SmartIcon.js +2 -11
  275. package/es/list/Icons/props/defaultProps.js +6 -0
  276. package/es/list/Icons/props/propTypes.js +55 -0
  277. package/es/list/ListLayout/ListLayout.js +6 -46
  278. package/es/list/ListLayout/ListLayout.module.css +22 -14
  279. package/es/list/ListLayout/props/defaultProps.js +11 -0
  280. package/es/list/ListLayout/props/propTypes.js +28 -0
  281. package/es/list/ListStencils/ListStencils.js +5 -11
  282. package/es/list/ListStencils/ListStencils.module.css +11 -6
  283. package/es/list/ListStencils/props/defaultProps.js +3 -0
  284. package/es/list/ListStencils/props/propTypes.js +4 -0
  285. package/es/list/SecondaryText/AccountName.js +10 -36
  286. package/es/list/SecondaryText/ContactName.js +10 -43
  287. package/es/list/SecondaryText/DepartmentText.js +2 -11
  288. package/es/list/SecondaryText/Email.js +7 -28
  289. package/es/list/SecondaryText/HappinessRating.js +3 -10
  290. package/es/list/SecondaryText/PhoneNumber.js +7 -31
  291. package/es/list/SecondaryText/PriorityText.js +4 -15
  292. package/es/list/SecondaryText/SecondaryText.js +5 -19
  293. package/es/list/SecondaryText/SecondaryText.module.css +13 -3
  294. package/es/list/SecondaryText/StatusText.js +4 -17
  295. package/es/list/SecondaryText/TicketId.js +5 -26
  296. package/es/list/SecondaryText/Website.js +6 -18
  297. package/es/list/SecondaryText/props/defaultProps.js +44 -0
  298. package/es/list/SecondaryText/props/propTypes.js +143 -0
  299. package/es/list/SecondryPanel/SecondryPanel.js +15 -54
  300. package/es/list/SecondryPanel/props/defaultProps.js +18 -0
  301. package/es/list/SecondryPanel/props/propTypes.js +27 -0
  302. package/es/list/SentimentStatus/SentimentStatus.js +2 -8
  303. package/es/list/SentimentStatus/SentimentStatus.module.css +4 -1
  304. package/es/list/SentimentStatus/props/propTypes.js +5 -0
  305. package/es/list/Subject/Subject.js +5 -31
  306. package/es/list/Subject/props/defaultProps.js +7 -0
  307. package/es/list/Subject/props/propTypes.js +19 -0
  308. package/es/list/TagNew/TagNew.js +4 -15
  309. package/es/list/TagNew/TagNew.module.css +14 -7
  310. package/es/list/TagNew/props/defaultProps.js +4 -0
  311. package/es/list/TagNew/props/propTypes.js +8 -0
  312. package/es/list/Thread/Thread.js +8 -16
  313. package/es/list/Thread/Thread.module.css +13 -1
  314. package/es/list/Thread/props/defaultProps.js +4 -0
  315. package/es/list/Thread/props/propTypes.js +8 -0
  316. package/es/list/UserTime/UserTime.js +7 -21
  317. package/es/list/UserTime/UserTime.module.css +6 -0
  318. package/es/list/UserTime/props/defaultProps.js +3 -0
  319. package/es/list/UserTime/props/propTypes.js +14 -0
  320. package/es/list/listCommon.module.css +9 -1
  321. package/es/list/status/StatusDropdown/StatusDropdown.js +7 -103
  322. package/es/list/status/StatusDropdown/StatusDropdown.module.css +19 -6
  323. package/es/list/status/StatusDropdown/props/defaultProps.js +18 -0
  324. package/es/list/status/StatusDropdown/props/propTypes.js +50 -0
  325. package/es/list/status/StatusListItem/StatusListItem.js +5 -54
  326. package/es/list/status/StatusListItem/StatusListItem.module.css +38 -15
  327. package/es/list/status/StatusListItem/props/defaultProps.js +14 -0
  328. package/es/list/status/StatusListItem/props/propTypes.js +28 -0
  329. package/es/lookup/EmptyPage/EmptyPage.js +8 -22
  330. package/es/lookup/EmptyPage/props/defaultProps.js +4 -0
  331. package/es/lookup/EmptyPage/props/propTypes.js +5 -0
  332. package/es/lookup/Lookup/Lookup.js +30 -43
  333. package/es/lookup/Lookup/Lookup.module.css +2 -2
  334. package/es/lookup/Lookup/props/defaultProps.js +7 -0
  335. package/es/lookup/Lookup/props/propTypes.js +18 -0
  336. package/es/lookup/Section/LookupSection.module.css +2 -2
  337. package/es/lookup/Section/Section.js +2 -9
  338. package/es/lookup/Section/props/propTypes.js +6 -0
  339. package/es/lookup/header/Close/Close.js +5 -12
  340. package/es/lookup/header/Close/LookupClose.module.css +4 -4
  341. package/es/lookup/header/Close/props/defaultProps.js +3 -0
  342. package/es/lookup/header/Close/props/propTypes.js +6 -0
  343. package/es/lookup/header/ModuleHeader/ModuleHeader.js +7 -24
  344. package/es/lookup/header/ModuleHeader/props/defaultProps.js +3 -0
  345. package/es/lookup/header/ModuleHeader/props/propTypes.js +17 -0
  346. package/es/lookup/header/Search/LookupSearch.module.css +21 -12
  347. package/es/lookup/header/Search/Search.js +14 -56
  348. package/es/lookup/header/Search/props/defaultProps.js +5 -0
  349. package/es/lookup/header/Search/props/propTypes.js +28 -0
  350. package/es/lookup/header/TicketHeader/TicketHeader.js +7 -28
  351. package/es/lookup/header/TicketHeader/TicketHeader.module.css +5 -2
  352. package/es/lookup/header/TicketHeader/props/defaultProps.js +4 -0
  353. package/es/lookup/header/TicketHeader/props/propTypes.js +20 -0
  354. package/es/lookup/header/Title/Title.js +5 -12
  355. package/es/lookup/header/Title/props/defaultProps.js +3 -0
  356. package/es/lookup/header/Title/props/propTypes.js +6 -0
  357. package/es/lookup/header/ViewDropDown/ViewDropDown.js +10 -49
  358. package/es/lookup/header/ViewDropDown/ViewDropDown.module.css +8 -3
  359. package/es/lookup/header/ViewDropDown/props/defaultProps.js +7 -0
  360. package/es/lookup/header/ViewDropDown/props/propTypes.js +26 -0
  361. package/es/lookup/header/lookupHeaderCommon.module.css +15 -5
  362. package/es/lookup/header/lookupHeaderCommonResponsive.module.css +12 -3
  363. package/es/setup/header/Button/Button.js +4 -14
  364. package/es/setup/header/Button/HeaderButton.module.css +3 -1
  365. package/es/setup/header/Button/props/defaultProps.js +4 -0
  366. package/es/setup/header/Button/props/propTypes.js +7 -0
  367. package/es/setup/header/Link/HeaderLink.module.css +7 -1
  368. package/es/setup/header/Link/Link.js +4 -15
  369. package/es/setup/header/Link/props/defaultProps.js +4 -0
  370. package/es/setup/header/Link/props/propTypes.js +8 -0
  371. package/es/setup/header/Search/Search.js +4 -21
  372. package/es/setup/header/Search/Search.module.css +19 -8
  373. package/es/setup/header/Search/props/defaultProps.js +5 -0
  374. package/es/setup/header/Search/props/propTypes.js +11 -0
  375. package/es/setup/header/Views/Views.js +4 -18
  376. package/es/setup/header/Views/Views.module.css +15 -5
  377. package/es/setup/header/Views/props/defaultProps.js +6 -0
  378. package/es/setup/header/Views/props/propTypes.js +9 -0
  379. package/es/setup/helptips/Description/Description.js +2 -7
  380. package/es/setup/helptips/Description/props/propTypes.js +4 -0
  381. package/es/setup/helptips/Link/HelpTipsLink.module.css +1 -0
  382. package/es/setup/helptips/Link/Link.js +2 -12
  383. package/es/setup/helptips/Link/props/propTypes.js +7 -0
  384. package/es/setup/helptips/ListGroup/ListGroup.js +2 -10
  385. package/es/setup/helptips/ListGroup/ListGroup.module.css +6 -1
  386. package/es/setup/helptips/ListGroup/props/propTypes.js +5 -0
  387. package/es/setup/helptips/Title/Title.js +2 -7
  388. package/es/setup/helptips/Title/props/propTypes.js +4 -0
  389. package/es/setup/table/Table/Table.js +4 -12
  390. package/es/setup/table/Table/props/defaultProps.js +4 -0
  391. package/es/setup/table/Table/props/propTypes.js +6 -0
  392. package/es/setup/table/TableBody/TableBody.js +4 -12
  393. package/es/setup/table/TableBody/props/defaultProps.js +3 -0
  394. package/es/setup/table/TableBody/props/propTypes.js +7 -0
  395. package/es/setup/table/TableData/SetupTableData.module.css +11 -3
  396. package/es/setup/table/TableData/TableData.js +4 -18
  397. package/es/setup/table/TableData/props/defaultProps.js +5 -0
  398. package/es/setup/table/TableData/props/propTypes.js +10 -0
  399. package/es/setup/table/TableHead/SetupTableHead.module.css +4 -0
  400. package/es/setup/table/TableHead/TableHead.js +4 -14
  401. package/es/setup/table/TableHead/props/defaultProps.js +4 -0
  402. package/es/setup/table/TableHead/props/propTypes.js +7 -0
  403. package/es/setup/table/TableRow/SetupTableRow.module.css +6 -2
  404. package/es/setup/table/TableRow/TableRow.js +4 -18
  405. package/es/setup/table/TableRow/props/defaultProps.js +4 -0
  406. package/es/setup/table/TableRow/props/propTypes.js +11 -0
  407. package/es/setup/table/Text/Text.js +4 -24
  408. package/es/setup/table/Text/props/defaultProps.js +7 -0
  409. package/es/setup/table/Text/props/propTypes.js +13 -0
  410. package/es/svg/PlusIcon.js +5 -14
  411. package/es/svg/SnippetIcon.js +5 -14
  412. package/es/svg/TemplateIcon.js +5 -14
  413. package/es/svg/props/defaultProps.js +15 -0
  414. package/es/svg/props/propTypes.js +16 -0
  415. package/es/utils/General.js +0 -7
  416. package/es/utils/editorUtils.js +16 -40
  417. package/es/version2/AlertClose/AlertClose.js +2 -10
  418. package/es/version2/AlertClose/AlertClose.module.css +1 -1
  419. package/es/version2/AlertClose/props/propTypes.js +8 -0
  420. package/es/version2/GlobalNotification/GlobalNotification.js +7 -30
  421. package/es/version2/GlobalNotification/GlobalNotification.module.css +44 -9
  422. package/es/version2/GlobalNotification/props/defaultProps.js +3 -0
  423. package/es/version2/GlobalNotification/props/propTypes.js +13 -0
  424. package/es/version2/alertIcons/AlarmAlertIcon.js +4 -9
  425. package/es/version2/alertIcons/AlertIcons.js +4 -11
  426. package/es/version2/alertIcons/DangerAlertIcon.js +4 -10
  427. package/es/version2/alertIcons/ErrorAlertIcon.js +4 -9
  428. package/es/version2/alertIcons/InfoAlertIcon.js +4 -9
  429. package/es/version2/alertIcons/NotificationAlertIcon.js +4 -9
  430. package/es/version2/alertIcons/SuccessAlertIcon.js +4 -9
  431. package/es/version2/alertIcons/WarningAlertIcon.js +4 -9
  432. package/es/version2/alertIcons/props/defaultProps.js +26 -0
  433. package/es/version2/alertIcons/props/propTypes.js +33 -0
  434. package/es/version2/errorstate/Inconvenience/Inconvenience.js +5 -29
  435. package/es/version2/errorstate/Inconvenience/props/defaultProps.js +8 -0
  436. package/es/version2/errorstate/Inconvenience/props/propTypes.js +16 -0
  437. package/es/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +5 -29
  438. package/es/version2/errorstate/OopsSomethingMiss/props/defaultProps.js +8 -0
  439. package/es/version2/errorstate/OopsSomethingMiss/props/propTypes.js +16 -0
  440. package/es/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +5 -29
  441. package/es/version2/errorstate/UnableToProcessRequest/props/defaultProps.js +8 -0
  442. package/es/version2/errorstate/UnableToProcessRequest/props/propTypes.js +16 -0
  443. package/es/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +5 -31
  444. package/es/version2/errorstate/UnauthorizedLogin/props/defaultProps.js +9 -0
  445. package/es/version2/errorstate/UnauthorizedLogin/props/propTypes.js +17 -0
  446. package/es/version2/errorstate/UrlNotFound/UrlNotFound.js +5 -29
  447. package/es/version2/errorstate/UrlNotFound/props/defaultProps.js +8 -0
  448. package/es/version2/errorstate/UrlNotFound/props/propTypes.js +16 -0
  449. package/es/version2/errorstate/WillBeRightBack/WillBeRightBack.js +5 -29
  450. package/es/version2/errorstate/WillBeRightBack/props/defaultProps.js +8 -0
  451. package/es/version2/errorstate/WillBeRightBack/props/propTypes.js +16 -0
  452. package/es/version2/lookup/AlertHeader/AlertHeader.js +4 -20
  453. package/es/version2/lookup/AlertHeader/AlertHeaderNew.module.css +25 -2
  454. package/es/version2/lookup/AlertHeader/props/defaultProps.js +6 -0
  455. package/es/version2/lookup/AlertHeader/props/propTypes.js +12 -0
  456. package/es/version2/lookup/AlertLookup/AlertLookup.js +45 -103
  457. package/es/version2/lookup/AlertLookup/AlertLookupNew.module.css +7 -3
  458. package/es/version2/lookup/AlertLookup/props/defaultProps.js +13 -0
  459. package/es/version2/lookup/AlertLookup/props/propTypes.js +36 -0
  460. package/es/version2/lookup/alertLookupCommonNew.module.css +8 -1
  461. package/es/version2/notification/DesktopNotification/DesktopNotification.js +5 -56
  462. package/es/version2/notification/DesktopNotification/DesktopNotification.module.css +26 -10
  463. package/es/version2/notification/DesktopNotification/props/defaultProps.js +14 -0
  464. package/es/version2/notification/DesktopNotification/props/propTypes.js +36 -0
  465. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +4 -19
  466. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +47 -10
  467. package/es/version2/notification/DesktopNotificationHeader/props/defaultProps.js +5 -0
  468. package/es/version2/notification/DesktopNotificationHeader/props/propTypes.js +11 -0
  469. package/lib/ActionButton/ActionButton.js +55 -113
  470. package/lib/ActionButton/ActionButton.module.css +0 -1
  471. package/lib/ActionButton/props/defaultProps.js +24 -0
  472. package/lib/ActionButton/props/propTypes.js +39 -0
  473. package/lib/AlphabeticList/AlphabeticList.js +26 -99
  474. package/lib/AlphabeticList/props/defaultProps.js +19 -0
  475. package/lib/AlphabeticList/props/propTypes.js +40 -0
  476. package/lib/Attachment/Attachment.js +18 -61
  477. package/lib/Attachment/Attachment.module.css +27 -1
  478. package/lib/Attachment/props/defaultProps.js +13 -0
  479. package/lib/Attachment/props/propTypes.js +23 -0
  480. package/lib/AttachmentViewer/Attachment.js +24 -0
  481. package/lib/{FreezeLayer/docs/FreezeLayer__dark.docs.js → AttachmentViewer/AttachmentImage.js} +60 -68
  482. package/lib/AttachmentViewer/AttachmentViewer.js +556 -0
  483. package/lib/AttachmentViewer/AttachmentViewer.module.css +354 -0
  484. package/lib/AttachmentViewer/props/defaultProps.js +18 -0
  485. package/lib/AttachmentViewer/props/propTypes.js +40 -0
  486. package/lib/AttachmentViewer/utils.js +110 -0
  487. package/lib/ChannelIcon/ChannelIcon.js +27 -84
  488. package/lib/ChannelIcon/props/defaultProps.js +13 -0
  489. package/lib/ChannelIcon/props/propTypes.js +32 -0
  490. package/lib/Drawer/Drawer.js +88 -184
  491. package/lib/Drawer/Drawer.module.css +1 -1
  492. package/lib/Drawer/props/defaultProps.js +30 -0
  493. package/lib/Drawer/props/propTypes.js +61 -0
  494. package/lib/ExternalLink/ExternalLink.js +16 -55
  495. package/lib/ExternalLink/__tests__/ExternalLink.spec.js +0 -7
  496. package/lib/ExternalLink/props/defaultProps.js +12 -0
  497. package/lib/ExternalLink/props/propTypes.js +20 -0
  498. package/lib/FlipCard/FlipCard.js +42 -115
  499. package/lib/FlipCard/props/defaultProps.js +12 -0
  500. package/lib/FlipCard/props/propTypes.js +45 -0
  501. package/lib/FormAction/FormAction.js +13 -52
  502. package/lib/FormAction/props/defaultProps.js +11 -0
  503. package/lib/FormAction/props/propTypes.js +15 -0
  504. package/lib/FreezeLayer/FreezeLayer.js +48 -77
  505. package/lib/FreezeLayer/props/defaultProps.js +15 -0
  506. package/lib/FreezeLayer/props/propTypes.js +25 -0
  507. package/lib/IconButton/IconButton.js +34 -104
  508. package/lib/IconButton/props/defaultProps.js +22 -0
  509. package/lib/IconButton/props/propTypes.js +37 -0
  510. package/lib/Image/Image.js +16 -52
  511. package/lib/Image/props/defaultProps.js +11 -0
  512. package/lib/Image/props/propTypes.js +21 -0
  513. package/lib/ImportantNotes/ImportantNotes.js +14 -49
  514. package/lib/ImportantNotes/props/defaultProps.js +13 -0
  515. package/lib/ImportantNotes/props/propTypes.js +18 -0
  516. package/lib/Link/Link.js +30 -76
  517. package/lib/Link/LinkContext.js +0 -4
  518. package/lib/Link/props/defaultProps.js +12 -0
  519. package/lib/Link/props/propTypes.js +22 -0
  520. package/lib/Loader/Loader.js +2 -26
  521. package/lib/Message/Message.js +16 -59
  522. package/lib/Message/props/defaultProps.js +10 -0
  523. package/lib/Message/props/propTypes.js +20 -0
  524. package/lib/MessageBanner/MessageBanner.js +15 -55
  525. package/lib/MessageBanner/props/defaultProps.js +13 -0
  526. package/lib/MessageBanner/props/propTypes.js +20 -0
  527. package/lib/NewStar/NewStar.js +9 -40
  528. package/lib/NewStar/props/defaultProps.js +11 -0
  529. package/lib/NewStar/props/propTypes.js +14 -0
  530. package/lib/PlusIcon/PlusIcon.js +14 -53
  531. package/lib/PlusIcon/props/defaultProps.js +15 -0
  532. package/lib/PlusIcon/props/propTypes.js +19 -0
  533. package/lib/Provider/Config.js +19 -0
  534. package/lib/ToastMessage/ToastMessage.js +44 -127
  535. package/lib/ToastMessage/props/defaultProps.js +24 -0
  536. package/lib/ToastMessage/props/propTypes.js +46 -0
  537. package/lib/Upload/Upload.js +19 -63
  538. package/lib/Upload/props/defaultProps.js +13 -0
  539. package/lib/Upload/props/propTypes.js +24 -0
  540. package/lib/actions/AutoClose.js +11 -38
  541. package/lib/actions/index.js +0 -5
  542. package/lib/actions/props/defaultProps.js +10 -0
  543. package/lib/actions/props/propTypes.js +15 -0
  544. package/lib/alert/AlertHeader/AlertHeader.js +18 -66
  545. package/lib/alert/AlertHeader/props/defaultProps.js +15 -0
  546. package/lib/alert/AlertHeader/props/propTypes.js +23 -0
  547. package/lib/alert/AlertLookup/AlertLookup.js +52 -168
  548. package/lib/alert/AlertLookup/props/defaultProps.js +21 -0
  549. package/lib/alert/AlertLookup/props/propTypes.js +44 -0
  550. package/lib/avatar/AvatarClose/AvatarClose.js +17 -57
  551. package/lib/avatar/AvatarClose/props/defaultProps.js +12 -0
  552. package/lib/avatar/AvatarClose/props/propTypes.js +21 -0
  553. package/lib/avatar/AvatarCollision/AvatarCollision.js +20 -65
  554. package/lib/avatar/AvatarCollision/props/defaultProps.js +14 -0
  555. package/lib/avatar/AvatarCollision/props/propTypes.js +24 -0
  556. package/lib/avatar/AvatarIcon/AvatarIcon.js +22 -77
  557. package/lib/avatar/AvatarIcon/props/defaultProps.js +20 -0
  558. package/lib/avatar/AvatarIcon/props/propTypes.js +27 -0
  559. package/lib/avatar/AvatarStatus/AvatarStatus.js +31 -81
  560. package/lib/avatar/AvatarStatus/props/defaultProps.js +16 -0
  561. package/lib/avatar/AvatarStatus/props/propTypes.js +31 -0
  562. package/lib/avatar/AvatarThread/AvatarThread.js +33 -92
  563. package/lib/avatar/AvatarThread/AvatarThread.module.css +7 -3
  564. package/lib/avatar/AvatarThread/props/defaultProps.js +15 -0
  565. package/lib/avatar/AvatarThread/props/propTypes.js +37 -0
  566. package/lib/avatar/AvatarUser/AvatarUser.js +40 -104
  567. package/lib/avatar/AvatarUser/props/defaultProps.js +14 -0
  568. package/lib/avatar/AvatarUser/props/propTypes.js +42 -0
  569. package/lib/avatar/AvatarWithTeam/AvatarWithTeam.js +31 -83
  570. package/lib/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js +6 -12
  571. package/lib/avatar/AvatarWithTeam/props/defaultProps.js +14 -0
  572. package/lib/avatar/AvatarWithTeam/props/propTypes.js +31 -0
  573. package/lib/common/dot_animation.module.css +27 -0
  574. package/lib/common/dot_common.module.css +4 -0
  575. package/lib/deprecated/SelectDropdown/SelectDropdown.js +76 -89
  576. package/lib/deprecated/SelectDropdown/SelectDropdown.module.css +1 -0
  577. package/lib/deprecated/utils/General.js +24 -0
  578. package/lib/{utils → deprecated/utils}/KeyboardApi.js +3 -47
  579. package/lib/docs/formDocs.js +6 -110
  580. package/lib/docs/generalDocs.js +3 -623
  581. package/lib/docs/lookupDocs.js +0 -169
  582. package/lib/docs/setupDocs.js +0 -100
  583. package/lib/dropdown/ToggleDropDown/ToggleDropDown.js +386 -493
  584. package/lib/dropdown/ToggleDropDown/ToggleDropDown.module.css +6 -2
  585. package/lib/dropdown/ToggleDropDown/props/defaultProps.js +31 -0
  586. package/lib/dropdown/ToggleDropDown/props/propTypes.js +78 -0
  587. package/lib/emptystate/CommonEmptyState/CommonEmptyState.js +24 -77
  588. package/lib/emptystate/CommonEmptyState/props/defaultProps.js +17 -0
  589. package/lib/emptystate/CommonEmptyState/props/propTypes.js +29 -0
  590. package/lib/emptystate/EditionPage/EditionPage.js +15 -49
  591. package/lib/emptystate/EditionPage/props/defaultProps.js +12 -0
  592. package/lib/emptystate/EditionPage/props/propTypes.js +15 -0
  593. package/lib/errorstate/Inconvenience/Inconvenience.js +16 -56
  594. package/lib/errorstate/Inconvenience/props/defaultProps.js +11 -0
  595. package/lib/errorstate/Inconvenience/props/propTypes.js +19 -0
  596. package/lib/errorstate/LinkText/LinkText.js +11 -43
  597. package/lib/errorstate/LinkText/props/defaultProps.js +11 -0
  598. package/lib/errorstate/LinkText/props/propTypes.js +16 -0
  599. package/lib/errorstate/NoRequestFound/NoRequestFound.js +16 -56
  600. package/lib/errorstate/NoRequestFound/props/defaultProps.js +11 -0
  601. package/lib/errorstate/NoRequestFound/props/propTypes.js +19 -0
  602. package/lib/errorstate/PermissionPlay/PermissionPlay.js +16 -56
  603. package/lib/errorstate/PermissionPlay/props/defaultProps.js +11 -0
  604. package/lib/errorstate/PermissionPlay/props/propTypes.js +19 -0
  605. package/lib/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +16 -56
  606. package/lib/errorstate/RequestUrlNotFound/props/defaultProps.js +11 -0
  607. package/lib/errorstate/RequestUrlNotFound/props/propTypes.js +19 -0
  608. package/lib/errorstate/UnableToProcess/UnableToProcess.js +16 -56
  609. package/lib/errorstate/UnableToProcess/props/defaultProps.js +11 -0
  610. package/lib/errorstate/UnableToProcess/props/propTypes.js +19 -0
  611. package/lib/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +16 -56
  612. package/lib/errorstate/UnauthorizedLogin/props/defaultProps.js +11 -0
  613. package/lib/errorstate/UnauthorizedLogin/props/propTypes.js +19 -0
  614. package/lib/errorstate/WillBack/WillBack.js +10 -43
  615. package/lib/errorstate/WillBack/props/defaultProps.js +11 -0
  616. package/lib/errorstate/WillBack/props/propTypes.js +13 -0
  617. package/lib/form/fields/CheckBoxField/CheckBoxField.js +49 -129
  618. package/lib/form/fields/CheckBoxField/props/defaultProps.js +20 -0
  619. package/lib/form/fields/CheckBoxField/props/propTypes.js +37 -0
  620. package/lib/form/fields/CurrencyField/CurrencyField.js +61 -155
  621. package/lib/form/fields/CurrencyField/props/defaultProps.js +25 -0
  622. package/lib/form/fields/CurrencyField/props/propTypes.js +46 -0
  623. package/lib/form/fields/DateField/DateField.js +65 -161
  624. package/lib/form/fields/DateField/props/defaultProps.js +27 -0
  625. package/lib/form/fields/DateField/props/propTypes.js +49 -0
  626. package/lib/form/fields/{TextBoxField/docs/TextBoxField__default.docs.js → FieldContainer/FieldContainer.js} +57 -65
  627. package/lib/form/fields/FieldContainer/props/defaultProps.js +15 -0
  628. package/lib/form/fields/FieldContainer/props/propTypes.js +22 -0
  629. package/lib/form/fields/MultiSelectField/MultiSelectField.js +85 -187
  630. package/lib/form/fields/MultiSelectField/props/defaultProps.js +25 -0
  631. package/lib/form/fields/MultiSelectField/props/propTypes.js +60 -0
  632. package/lib/form/fields/PhoneField/PhoneField.js +44 -129
  633. package/lib/form/fields/PhoneField/props/defaultProps.js +22 -0
  634. package/lib/form/fields/PhoneField/props/propTypes.js +48 -0
  635. package/lib/form/fields/RadioField/RadioField.js +38 -106
  636. package/lib/form/fields/RadioField/props/defaultProps.js +18 -0
  637. package/lib/form/fields/RadioField/props/propTypes.js +38 -0
  638. package/lib/form/fields/SelectField/SelectField.js +84 -185
  639. package/lib/form/fields/SelectField/props/defaultProps.js +26 -0
  640. package/lib/form/fields/SelectField/props/propTypes.js +60 -0
  641. package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.js +149 -199
  642. package/lib/form/fields/TagsMultiSelect/props/defaultProps.js +17 -0
  643. package/lib/form/fields/TagsMultiSelect/props/propTypes.js +51 -0
  644. package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +79 -186
  645. package/lib/form/fields/TagsMultiSelectField/props/defaultProps.js +27 -0
  646. package/lib/form/fields/TagsMultiSelectField/props/propTypes.js +62 -0
  647. package/lib/form/fields/TextBoxField/TextBoxField.js +75 -175
  648. package/lib/form/fields/TextBoxField/props/defaultProps.js +25 -0
  649. package/lib/form/fields/TextBoxField/props/propTypes.js +47 -0
  650. package/lib/form/fields/TextEditor/TextEditor.js +59 -167
  651. package/lib/form/fields/TextEditor/TextEditor.module.css +13 -2
  652. package/lib/form/fields/TextEditor/props/defaultProps.js +19 -0
  653. package/lib/form/fields/TextEditor/props/propTypes.js +48 -0
  654. package/lib/form/fields/TextEditorField/TextEditorField.js +80 -189
  655. package/lib/form/fields/TextEditorField/props/defaultProps.js +23 -0
  656. package/lib/form/fields/TextEditorField/props/propTypes.js +57 -0
  657. package/lib/form/fields/TextEditorWrapper/TextEditorWrapper.js +50 -126
  658. package/lib/form/fields/TextEditorWrapper/props/defaultProps.js +15 -0
  659. package/lib/form/fields/TextEditorWrapper/props/propTypes.js +47 -0
  660. package/lib/form/fields/TextareaField/TextareaField.js +68 -150
  661. package/lib/form/fields/TextareaField/props/defaultProps.js +23 -0
  662. package/lib/form/fields/TextareaField/props/propTypes.js +44 -0
  663. package/lib/form/fields/ValidationMessage/ValidationMessage.js +17 -59
  664. package/lib/form/fields/ValidationMessage/props/defaultProps.js +13 -0
  665. package/lib/form/fields/ValidationMessage/props/propTypes.js +22 -0
  666. package/lib/form/fields/props/FieldCommonDefaultProps.js +17 -0
  667. package/lib/form/fields/props/FieldCommonPropTypes.js +30 -0
  668. package/lib/form/layout/Field/Field.js +13 -48
  669. package/lib/form/layout/Field/props/defaultProps.js +11 -0
  670. package/lib/form/layout/Field/props/propTypes.js +18 -0
  671. package/lib/form/layout/Section/Section.js +11 -43
  672. package/lib/form/layout/Section/props/propTypes.js +17 -0
  673. package/lib/index.js +1 -53
  674. package/lib/layout/SetupDetailLayout/SetupDetailLayout.js +36 -128
  675. package/lib/layout/SetupDetailLayout/index.js +0 -4
  676. package/lib/layout/SetupDetailLayout/props/defaultProps.js +28 -0
  677. package/lib/layout/SetupDetailLayout/props/propTypes.js +44 -0
  678. package/lib/layout/SubtabLayout/SubtabLayout.js +46 -149
  679. package/lib/layout/SubtabLayout/index.js +0 -4
  680. package/lib/layout/SubtabLayout/props/defaultProps.js +35 -0
  681. package/lib/layout/SubtabLayout/props/propTypes.js +51 -0
  682. package/lib/list/AvatarFlip/AvatarFlip.js +31 -86
  683. package/lib/list/AvatarFlip/props/defaultProps.js +12 -0
  684. package/lib/list/AvatarFlip/props/propTypes.js +36 -0
  685. package/lib/list/BluePrintStatus/BluePrintStatus.js +4 -30
  686. package/lib/list/BluePrintStatus/props/propTypes.js +12 -0
  687. package/lib/list/Comment/Comment.js +13 -46
  688. package/lib/list/Comment/props/defaultProps.js +10 -0
  689. package/lib/list/Comment/props/propTypes.js +17 -0
  690. package/lib/list/DepartmentDropDown/DepartmentDropDown.js +31 -88
  691. package/lib/list/DepartmentDropDown/props/defaultProps.js +14 -0
  692. package/lib/list/DepartmentDropDown/props/propTypes.js +30 -0
  693. package/lib/list/Dot/Dot.js +8 -37
  694. package/lib/list/Dot/props/defaultProps.js +11 -0
  695. package/lib/list/Dot/props/propTypes.js +13 -0
  696. package/lib/list/DotNew/DotNew.js +9 -39
  697. package/lib/list/DotNew/props/defaultProps.js +10 -0
  698. package/lib/list/DotNew/props/propTypes.js +14 -0
  699. package/lib/list/GridStencils/GridStencils.js +9 -37
  700. package/lib/list/GridStencils/GridStencils.module.css +8 -17
  701. package/lib/list/GridStencils/props/propTypes.js +15 -0
  702. package/lib/list/Icons/AddNewIcon.js +9 -38
  703. package/lib/list/Icons/CompleteIcon.js +10 -40
  704. package/lib/list/Icons/DeleteIcon.js +12 -41
  705. package/lib/list/Icons/EditIcon.js +10 -40
  706. package/lib/list/Icons/FloatingIcons.js +9 -40
  707. package/lib/list/Icons/Icons.module.css +1 -1
  708. package/lib/list/Icons/ReadUnreadIcon.js +14 -47
  709. package/lib/list/Icons/SmartIcon.js +9 -42
  710. package/lib/list/Icons/props/defaultProps.js +14 -0
  711. package/lib/list/Icons/props/propTypes.js +69 -0
  712. package/lib/list/ListLayout/ListLayout.js +30 -99
  713. package/lib/list/ListLayout/props/defaultProps.js +18 -0
  714. package/lib/list/ListLayout/props/propTypes.js +36 -0
  715. package/lib/list/ListStencils/ListStencils.js +6 -35
  716. package/lib/list/ListStencils/props/defaultProps.js +10 -0
  717. package/lib/list/ListStencils/props/propTypes.js +12 -0
  718. package/lib/list/SecondaryText/AccountName.js +31 -81
  719. package/lib/list/SecondaryText/ContactName.js +38 -98
  720. package/lib/list/SecondaryText/DepartmentText.js +8 -39
  721. package/lib/list/SecondaryText/Email.js +20 -64
  722. package/lib/list/SecondaryText/HappinessRating.js +7 -37
  723. package/lib/list/SecondaryText/PhoneNumber.js +22 -69
  724. package/lib/list/SecondaryText/PriorityText.js +11 -44
  725. package/lib/list/SecondaryText/SecondaryText.js +13 -49
  726. package/lib/list/SecondaryText/SecondaryText.module.css +3 -3
  727. package/lib/list/SecondaryText/StatusText.js +12 -47
  728. package/lib/list/SecondaryText/TicketId.js +21 -65
  729. package/lib/list/SecondaryText/Website.js +13 -48
  730. package/lib/list/SecondaryText/index.js +0 -12
  731. package/lib/list/SecondaryText/props/defaultProps.js +59 -0
  732. package/lib/list/SecondaryText/props/propTypes.js +161 -0
  733. package/lib/list/SecondryPanel/SecondryPanel.js +34 -116
  734. package/lib/list/SecondryPanel/props/defaultProps.js +28 -0
  735. package/lib/list/SecondryPanel/props/propTypes.js +38 -0
  736. package/lib/list/SentimentStatus/SentimentStatus.js +6 -33
  737. package/lib/list/SentimentStatus/props/propTypes.js +13 -0
  738. package/lib/list/Subject/Subject.js +23 -72
  739. package/lib/list/Subject/props/defaultProps.js +14 -0
  740. package/lib/list/Subject/props/propTypes.js +27 -0
  741. package/lib/list/TagNew/TagNew.js +11 -44
  742. package/lib/list/TagNew/props/defaultProps.js +11 -0
  743. package/lib/list/TagNew/props/propTypes.js +16 -0
  744. package/lib/list/Thread/Thread.js +15 -47
  745. package/lib/list/Thread/props/defaultProps.js +11 -0
  746. package/lib/list/Thread/props/propTypes.js +16 -0
  747. package/lib/list/UserTime/UserTime.js +24 -63
  748. package/lib/list/UserTime/props/defaultProps.js +10 -0
  749. package/lib/list/UserTime/props/propTypes.js +22 -0
  750. package/lib/list/status/StatusDropdown/StatusDropdown.js +221 -287
  751. package/lib/list/status/StatusDropdown/StatusDropdown.module.css +3 -0
  752. package/lib/list/status/StatusDropdown/props/defaultProps.js +25 -0
  753. package/lib/list/status/StatusDropdown/props/propTypes.js +29 -0
  754. package/lib/list/status/StatusListItem/StatusListItem.js +37 -105
  755. package/lib/list/status/StatusListItem/props/defaultProps.js +21 -0
  756. package/lib/list/status/StatusListItem/props/propTypes.js +36 -0
  757. package/lib/lookup/EmptyPage/EmptyPage.js +12 -51
  758. package/lib/lookup/EmptyPage/props/defaultProps.js +11 -0
  759. package/lib/lookup/EmptyPage/props/propTypes.js +13 -0
  760. package/lib/lookup/Lookup/Lookup.js +44 -79
  761. package/lib/lookup/Lookup/props/defaultProps.js +14 -0
  762. package/lib/lookup/Lookup/props/propTypes.js +26 -0
  763. package/lib/lookup/Section/Section.js +6 -36
  764. package/lib/lookup/Section/props/propTypes.js +14 -0
  765. package/lib/lookup/header/Close/Close.js +9 -39
  766. package/lib/lookup/header/Close/props/defaultProps.js +10 -0
  767. package/lib/lookup/header/Close/props/propTypes.js +14 -0
  768. package/lib/lookup/header/ModuleHeader/ModuleHeader.js +24 -65
  769. package/lib/lookup/header/ModuleHeader/props/defaultProps.js +10 -0
  770. package/lib/lookup/header/ModuleHeader/props/propTypes.js +25 -0
  771. package/lib/lookup/header/Search/Search.js +36 -100
  772. package/lib/lookup/header/Search/props/defaultProps.js +12 -0
  773. package/lib/lookup/header/Search/props/propTypes.js +37 -0
  774. package/lib/lookup/header/TicketHeader/TicketHeader.js +23 -72
  775. package/lib/lookup/header/TicketHeader/props/defaultProps.js +11 -0
  776. package/lib/lookup/header/TicketHeader/props/propTypes.js +28 -0
  777. package/lib/lookup/header/Title/Title.js +9 -39
  778. package/lib/lookup/header/Title/props/defaultProps.js +10 -0
  779. package/lib/lookup/header/Title/props/propTypes.js +14 -0
  780. package/lib/lookup/header/ViewDropDown/ViewDropDown.js +102 -147
  781. package/lib/lookup/header/ViewDropDown/props/defaultProps.js +14 -0
  782. package/lib/lookup/header/ViewDropDown/props/propTypes.js +34 -0
  783. package/lib/lookup/header/lookupHeaderCommon.module.css +8 -2
  784. package/lib/setup/header/Button/Button.js +10 -41
  785. package/lib/setup/header/Button/props/defaultProps.js +11 -0
  786. package/lib/setup/header/Button/props/propTypes.js +15 -0
  787. package/lib/setup/header/Link/Link.js +11 -45
  788. package/lib/setup/header/Link/props/defaultProps.js +11 -0
  789. package/lib/setup/header/Link/props/propTypes.js +16 -0
  790. package/lib/setup/header/Search/Search.js +12 -50
  791. package/lib/setup/header/Search/props/defaultProps.js +12 -0
  792. package/lib/setup/header/Search/props/propTypes.js +19 -0
  793. package/lib/setup/header/Views/Views.js +14 -49
  794. package/lib/setup/header/Views/props/defaultProps.js +13 -0
  795. package/lib/setup/header/Views/props/propTypes.js +17 -0
  796. package/lib/setup/helptips/Description/Description.js +4 -29
  797. package/lib/setup/helptips/Description/props/propTypes.js +12 -0
  798. package/lib/setup/helptips/Link/Link.js +9 -40
  799. package/lib/setup/helptips/Link/props/propTypes.js +15 -0
  800. package/lib/setup/helptips/ListGroup/ListGroup.js +6 -34
  801. package/lib/setup/helptips/ListGroup/props/propTypes.js +13 -0
  802. package/lib/setup/helptips/Title/Title.js +4 -29
  803. package/lib/setup/helptips/Title/props/propTypes.js +12 -0
  804. package/lib/setup/table/Table/Table.js +9 -38
  805. package/lib/setup/table/Table/props/defaultProps.js +11 -0
  806. package/lib/setup/table/Table/props/propTypes.js +14 -0
  807. package/lib/setup/table/TableBody/TableBody.js +11 -40
  808. package/lib/setup/table/TableBody/props/defaultProps.js +10 -0
  809. package/lib/setup/table/TableBody/props/propTypes.js +15 -0
  810. package/lib/setup/table/TableData/TableData.js +13 -48
  811. package/lib/setup/table/TableData/props/defaultProps.js +12 -0
  812. package/lib/setup/table/TableData/props/propTypes.js +18 -0
  813. package/lib/setup/table/TableHead/TableHead.js +11 -42
  814. package/lib/setup/table/TableHead/props/defaultProps.js +11 -0
  815. package/lib/setup/table/TableHead/props/propTypes.js +15 -0
  816. package/lib/setup/table/TableRow/TableRow.js +14 -49
  817. package/lib/setup/table/TableRow/props/defaultProps.js +11 -0
  818. package/lib/setup/table/TableRow/props/propTypes.js +19 -0
  819. package/lib/setup/table/Text/Text.js +17 -59
  820. package/lib/setup/table/Text/props/defaultProps.js +14 -0
  821. package/lib/setup/table/Text/props/propTypes.js +21 -0
  822. package/lib/svg/PlusIcon.js +10 -40
  823. package/lib/svg/SnippetIcon.js +10 -40
  824. package/lib/svg/TemplateIcon.js +10 -40
  825. package/lib/svg/props/defaultProps.js +24 -0
  826. package/lib/svg/props/propTypes.js +26 -0
  827. package/lib/utils/ChannelIconMapping.js +0 -2
  828. package/lib/utils/General.js +0 -35
  829. package/lib/utils/editorUtils.js +13 -48
  830. package/lib/version2/AlertClose/AlertClose.js +9 -42
  831. package/lib/version2/AlertClose/props/propTypes.js +16 -0
  832. package/lib/version2/GlobalNotification/GlobalNotification.js +31 -76
  833. package/lib/version2/GlobalNotification/props/defaultProps.js +10 -0
  834. package/lib/version2/GlobalNotification/props/propTypes.js +21 -0
  835. package/lib/version2/alertIcons/AlarmAlertIcon.js +8 -36
  836. package/lib/version2/alertIcons/AlertIcons.js +10 -49
  837. package/lib/version2/alertIcons/DangerAlertIcon.js +8 -37
  838. package/lib/version2/alertIcons/ErrorAlertIcon.js +8 -36
  839. package/lib/version2/alertIcons/InfoAlertIcon.js +8 -36
  840. package/lib/version2/alertIcons/NotificationAlertIcon.js +8 -36
  841. package/lib/version2/alertIcons/SuccessAlertIcon.js +8 -36
  842. package/lib/version2/alertIcons/WarningAlertIcon.js +8 -36
  843. package/lib/version2/alertIcons/props/defaultProps.js +40 -0
  844. package/lib/version2/alertIcons/props/propTypes.js +48 -0
  845. package/lib/version2/errorstate/Inconvenience/Inconvenience.js +20 -68
  846. package/lib/version2/errorstate/Inconvenience/props/defaultProps.js +15 -0
  847. package/lib/version2/errorstate/Inconvenience/props/propTypes.js +24 -0
  848. package/lib/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +20 -68
  849. package/lib/version2/errorstate/OopsSomethingMiss/props/defaultProps.js +15 -0
  850. package/lib/version2/errorstate/OopsSomethingMiss/props/propTypes.js +24 -0
  851. package/lib/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +20 -68
  852. package/lib/version2/errorstate/UnableToProcessRequest/props/defaultProps.js +15 -0
  853. package/lib/version2/errorstate/UnableToProcessRequest/props/propTypes.js +24 -0
  854. package/lib/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +21 -71
  855. package/lib/version2/errorstate/UnauthorizedLogin/props/defaultProps.js +16 -0
  856. package/lib/version2/errorstate/UnauthorizedLogin/props/propTypes.js +25 -0
  857. package/lib/version2/errorstate/UrlNotFound/UrlNotFound.js +20 -68
  858. package/lib/version2/errorstate/UrlNotFound/props/defaultProps.js +15 -0
  859. package/lib/version2/errorstate/UrlNotFound/props/propTypes.js +24 -0
  860. package/lib/version2/errorstate/WillBeRightBack/WillBeRightBack.js +20 -68
  861. package/lib/version2/errorstate/WillBeRightBack/props/defaultProps.js +15 -0
  862. package/lib/version2/errorstate/WillBeRightBack/props/propTypes.js +24 -0
  863. package/lib/version2/lookup/AlertHeader/AlertHeader.js +15 -57
  864. package/lib/version2/lookup/AlertHeader/props/defaultProps.js +13 -0
  865. package/lib/version2/lookup/AlertHeader/props/propTypes.js +20 -0
  866. package/lib/version2/lookup/AlertLookup/AlertLookup.js +86 -179
  867. package/lib/version2/lookup/AlertLookup/props/defaultProps.js +20 -0
  868. package/lib/version2/lookup/AlertLookup/props/propTypes.js +44 -0
  869. package/lib/version2/notification/DesktopNotification/DesktopNotification.js +39 -109
  870. package/lib/version2/notification/DesktopNotification/props/defaultProps.js +21 -0
  871. package/lib/version2/notification/DesktopNotification/props/propTypes.js +44 -0
  872. package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +15 -55
  873. package/lib/version2/notification/DesktopNotificationHeader/props/defaultProps.js +12 -0
  874. package/lib/version2/notification/DesktopNotificationHeader/props/propTypes.js +19 -0
  875. package/package.json +21 -10
  876. package/es/ActionButton/docs/ActionButton__default.docs.js +0 -144
  877. package/es/AlphabeticList/docs/AlphabeticList__default.docs.js +0 -34
  878. package/es/AlphabeticList/docs/AlphabeticList__horizontal.docs.js +0 -43
  879. package/es/Attachment/docs/Attachment__default.docs.js +0 -54
  880. package/es/AttachmentViewer/docs/AttachmentViewer__default.docs.js +0 -70
  881. package/es/ChannelIcon/docs/ChannelIcon__default.docs.js +0 -57
  882. package/es/Drawer/docs/Drawer__default.docs.js +0 -87
  883. package/es/Drawer/docs/Drawer__multiDrawer.docs.js +0 -112
  884. package/es/Drawer/docs/Drawer__noFreeze.docs.js +0 -20
  885. package/es/Drawer/docs/Drawer__withModal.docs.js +0 -74
  886. package/es/ExternalLink/docs/ExternalLink__default.docs.js +0 -19
  887. package/es/FlipCard/docs/FlipCard__default.docs.js +0 -66
  888. package/es/FormAction/docs/FormAction__default.docs.js +0 -72
  889. package/es/FreezeLayer/docs/FreezeLayer__dark.docs.js +0 -51
  890. package/es/FreezeLayer/docs/FreezeLayer__default.docs.js +0 -48
  891. package/es/IconButton/docs/IconButton__default.docs.js +0 -219
  892. package/es/Image/docs/Image__default.docs.js +0 -22
  893. package/es/ImportantNotes/docs/ImportantNotes__default.docs.js +0 -22
  894. package/es/Link/docs/Link__default.docs.js +0 -36
  895. package/es/Loader/docs/Loader__default.docs.js +0 -23
  896. package/es/Message/docs/Message__default.docs.js +0 -55
  897. package/es/MessageBanner/docs/MessageBanner__default.docs.js +0 -88
  898. package/es/NewStar/docs/NewStar__default.docs.js +0 -62
  899. package/es/PlusIcon/docs/PlusIcon__default.docs.js +0 -16
  900. package/es/Provider.js +0 -160
  901. package/es/ToastMessage/docs/ToastMessage__custom.docs.js +0 -92
  902. package/es/ToastMessage/docs/ToastMessage__information.docs.js +0 -54
  903. package/es/ToastMessage/docs/ToastMessage__primary.docs.js +0 -125
  904. package/es/ToastMessage/docs/ToastMessage__secondary.docs.js +0 -37
  905. package/es/ToastMessage/docs/ToastMessage__success.docs.js +0 -61
  906. package/es/Upload/docs/Upload__default.docs.js +0 -61
  907. package/es/alert/AlertHeader/docs/AlertHeader__default.docs.js +0 -63
  908. package/es/alert/AlertLookup/docs/AlertLookup__default.docs.js +0 -132
  909. package/es/avatar/AvatarClose/docs/AvatarClose__default.docs.js +0 -26
  910. package/es/avatar/AvatarCollision/docs/AvatarCollision__default.docs.js +0 -35
  911. package/es/avatar/AvatarIcon/docs/AvatarIcon__palette.docs.js +0 -40
  912. package/es/avatar/AvatarIcon/docs/AvatarIcon__size.docs.js +0 -46
  913. package/es/avatar/AvatarStatus/docs/AvatarStatus__size.docs.js +0 -35
  914. package/es/avatar/AvatarStatus/docs/AvatarStatus__state.docs.js +0 -51
  915. package/es/avatar/AvatarThread/docs/AvatarThread__default.docs.js +0 -147
  916. package/es/avatar/AvatarUser/docs/AvatarUser__default.docs.js +0 -173
  917. package/es/avatar/AvatarWithTeam/docs/AvatarWithTeam__default.docs.js +0 -24
  918. package/es/deprecated/SelectDropdown/docs/SelectDropdown__default.docs.js +0 -34
  919. package/es/dropdown/ToggleDropDown/docs/ToggleDropDown__default.docs.js +0 -228
  920. package/es/emptystate/CommonEmptyState/docs/CommonEmptyState__default.docs.js +0 -111
  921. package/es/emptystate/EditionPage/docs/EditionPage__default.docs.js +0 -21
  922. package/es/errorstate/Inconvenience/docs/Inconvenience__default.docs.js +0 -19
  923. package/es/errorstate/LinkText/docs/LinkText__default.docs.js +0 -17
  924. package/es/errorstate/NoRequestFound/docs/NoRequestFound__default.docs.js +0 -19
  925. package/es/errorstate/PermissionPlay/docs/PermissionPlay__default.docs.js +0 -20
  926. package/es/errorstate/RequestUrlNotFound/docs/RequestUrlNotFound__default.docs.js +0 -19
  927. package/es/errorstate/UnableToProcess/docs/UnableToProcess__default.docs.js +0 -19
  928. package/es/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__insufficient.docs.js +0 -20
  929. package/es/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__unauthorizedLogin.docs.js +0 -19
  930. package/es/errorstate/WillBack/docs/WillBack__default.docs.js +0 -21
  931. package/es/form/fields/CheckBoxField/docs/CheckBoxField__default.docs.js +0 -37
  932. package/es/form/fields/CurrencyField/docs/CurrencyField__default.docs.js +0 -36
  933. package/es/form/fields/DateField/docs/DateField__default.docs.js +0 -32
  934. package/es/form/fields/FieldContainer/docs/FieldContainer__default.docs.js +0 -49
  935. package/es/form/fields/MultiSelectField/docs/MultiSelectField__default.docs.js +0 -55
  936. package/es/form/fields/PhoneField/docs/PhoneField__default.docs.js +0 -26
  937. package/es/form/fields/SelectField/docs/SelectField__default.docs.js +0 -65
  938. package/es/form/fields/TagsMultiSelect/docs/TagsMultiSelect__default.docs.js +0 -77
  939. package/es/form/fields/TagsMultiSelectField/docs/TagsMultiSelectField__default.docs.js +0 -82
  940. package/es/form/fields/TextBoxField/docs/TextBoxField__default.docs.js +0 -72
  941. package/es/form/fields/TextEditorField/docs/TextEditorField__default.docs.js +0 -50
  942. package/es/form/fields/TextareaField/docs/TextareaField__default.docs.js +0 -33
  943. package/es/form/fields/ValidationMessage/docs/ValidationMessage__default.docs.js +0 -58
  944. package/es/form/layout/Field/docs/Field__default.docs.js +0 -25
  945. package/es/form/layout/Section/docs/Section__default.docs.js +0 -21
  946. package/es/i18n.js +0 -4349
  947. package/es/layout/SetupDetailLayout/docs/SetupDetailLayout__default.docs.js +0 -29
  948. package/es/layout/SubtabLayout/docs/SubtabLayout__default.docs.js +0 -67
  949. package/es/list/AvatarFlip/docs/AvatarFlip__default.docs.js +0 -100
  950. package/es/list/BluePrintStatus/docs/BluePrintStatus__default.docs.js +0 -19
  951. package/es/list/Comment/docs/Comment__default.docs.js +0 -26
  952. package/es/list/DotNew/docs/DotNew__default.docs.js +0 -20
  953. package/es/list/GridStencils/docs/GridStencils__default.docs.js +0 -35
  954. package/es/list/Icons/docs/FloatingIcons__default.docs.js +0 -24
  955. package/es/list/ListLayout/docs/ListLayout__default.docs.js +0 -60
  956. package/es/list/ListStencils/docs/ListStencils__default.docs.js +0 -20
  957. package/es/list/SecondaryText/docs/ContactName__default.docs.js +0 -23
  958. package/es/list/SecondaryText/docs/SecondaryText__default.docs.js +0 -114
  959. package/es/list/SecondryPanel/docs/SecondryPanelDocs.module.css +0 -37
  960. package/es/list/SecondryPanel/docs/SecondryPanel__default.docs.js +0 -81
  961. package/es/list/SentimentStatus/docs/SentimentStatus__default.docs.js +0 -19
  962. package/es/list/Subject/docs/Subject__default.docs.js +0 -44
  963. package/es/list/TagNew/docs/TagNew__default.docs.js +0 -23
  964. package/es/list/Thread/docs/Thread__default.docs.js +0 -22
  965. package/es/list/UserTime/docs/UserTime__default.docs.js +0 -157
  966. package/es/list/status/StatusDropdown/docs/StatusDropdown__default.docs.js +0 -129
  967. package/es/list/status/StatusListItem/docs/StatusListItem__default.docs.js +0 -27
  968. package/es/lookup/EmptyPage/docs/EmptyPage__account.docs.js +0 -20
  969. package/es/lookup/EmptyPage/docs/EmptyPage__contact.docs.js +0 -20
  970. package/es/lookup/EmptyPage/docs/EmptyPage__default.docs.js +0 -17
  971. package/es/lookup/EmptyPage/docs/EmptyPage__product.docs.js +0 -20
  972. package/es/lookup/Lookup/docs/Lookup__contact.docs.js +0 -196
  973. package/es/lookup/Lookup/docs/Lookup__default.docs.js +0 -68
  974. package/es/lookup/header/Close/docs/Close__default.docs.js +0 -19
  975. package/es/lookup/header/ModuleHeader/docs/ModuleHeader__default.docs.js +0 -51
  976. package/es/lookup/header/Search/docs/Search__default.docs.js +0 -124
  977. package/es/lookup/header/TicketHeader/docs/TicketHeader__default.docs.js +0 -83
  978. package/es/lookup/header/Title/docs/Title__default.docs.js +0 -21
  979. package/es/lookup/header/ViewDropDown/docs/ViewDropDown__default.docs.js +0 -75
  980. package/es/setup/header/Button/docs/Button__default.docs.js +0 -22
  981. package/es/setup/header/Link/docs/Link__default.docs.js +0 -23
  982. package/es/setup/header/Search/docs/Search__default.docs.js +0 -41
  983. package/es/setup/header/Views/docs/Views__default.docs.js +0 -24
  984. package/es/setup/helptips/Description/docs/Description__default.docs.js +0 -26
  985. package/es/setup/helptips/Link/docs/Link__default.docs.js +0 -27
  986. package/es/setup/helptips/ListGroup/docs/ListGroup__default.docs.js +0 -30
  987. package/es/setup/helptips/Title/docs/Title__default.docs.js +0 -26
  988. package/es/setup/table/Table/docs/Table__default.docs.js +0 -181
  989. package/es/setup/table/Text/docs/Text__default.docs.js +0 -35
  990. package/es/svg/docs/SVG__default.docs.js +0 -49
  991. package/es/utils/Common.js +0 -24
  992. package/es/utils/KeyboardApi.js +0 -294
  993. package/es/version2/AlertClose/docs/AlertClose__default.docs.js +0 -47
  994. package/es/version2/GlobalNotification/docs/GlobalNotification__default.docs.js +0 -95
  995. package/es/version2/alertIcons/docs/AlertIcons__default.docs.js +0 -138
  996. package/es/version2/errorstate/Inconvenience/docs/Inconvenience__default.docs.js +0 -18
  997. package/es/version2/errorstate/OopsSomethingMiss/docs/OopsSomethingMiss__default.docs.js +0 -20
  998. package/es/version2/errorstate/UnableToProcessRequest/docs/UnableToProcessRequest__default.docs.js +0 -30
  999. package/es/version2/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__default.docs.js +0 -18
  1000. package/es/version2/errorstate/UrlNotFound/docs/UrlNotFound__default.docs.js +0 -20
  1001. package/es/version2/errorstate/WillBeRightBack/docs/WillBeRightBack__default.docs.js +0 -18
  1002. package/es/version2/lookup/AlertHeader/docs/AlertHeader__default.docs.js +0 -56
  1003. package/es/version2/lookup/AlertLookup/docs/AlertLookup__default.docs.js +0 -157
  1004. package/es/version2/notification/DesktopNotification/docs/DesktopNotification__default.docs.js +0 -92
  1005. package/es/version2/notification/DesktopNotificationHeader/docs/DesktopNotificationHeader__default.docs.js +0 -57
  1006. package/lib/ActionButton/docs/ActionButton__default.docs.js +0 -197
  1007. package/lib/AlphabeticList/docs/AlphabeticList__default.docs.js +0 -82
  1008. package/lib/AlphabeticList/docs/AlphabeticList__horizontal.docs.js +0 -91
  1009. package/lib/Attachment/docs/Attachment__default.docs.js +0 -104
  1010. package/lib/ChannelIcon/docs/ChannelIcon__default.docs.js +0 -112
  1011. package/lib/Drawer/docs/Drawer__default.docs.js +0 -143
  1012. package/lib/Drawer/docs/Drawer__multiDrawer.docs.js +0 -171
  1013. package/lib/Drawer/docs/Drawer__noFreeze.docs.js +0 -65
  1014. package/lib/Drawer/docs/Drawer__withModal.docs.js +0 -131
  1015. package/lib/ExternalLink/docs/ExternalLink__default.docs.js +0 -68
  1016. package/lib/FlipCard/docs/FlipCard__default.docs.js +0 -121
  1017. package/lib/FormAction/docs/FormAction__default.docs.js +0 -127
  1018. package/lib/FreezeLayer/docs/FreezeLayer__default.docs.js +0 -100
  1019. package/lib/IconButton/docs/IconButton__default.docs.js +0 -272
  1020. package/lib/Image/docs/Image__default.docs.js +0 -76
  1021. package/lib/ImportantNotes/docs/ImportantNotes__default.docs.js +0 -68
  1022. package/lib/Link/docs/Link__default.docs.js +0 -90
  1023. package/lib/Loader/docs/Loader__default.docs.js +0 -68
  1024. package/lib/Message/docs/Message__default.docs.js +0 -100
  1025. package/lib/MessageBanner/docs/MessageBanner__default.docs.js +0 -132
  1026. package/lib/NewStar/docs/NewStar__default.docs.js +0 -111
  1027. package/lib/PlusIcon/docs/PlusIcon__default.docs.js +0 -70
  1028. package/lib/Provider.js +0 -309
  1029. package/lib/ToastMessage/docs/ToastMessage__custom.docs.js +0 -151
  1030. package/lib/ToastMessage/docs/ToastMessage__information.docs.js +0 -108
  1031. package/lib/ToastMessage/docs/ToastMessage__primary.docs.js +0 -175
  1032. package/lib/ToastMessage/docs/ToastMessage__secondary.docs.js +0 -91
  1033. package/lib/ToastMessage/docs/ToastMessage__success.docs.js +0 -115
  1034. package/lib/Upload/docs/Upload__default.docs.js +0 -110
  1035. package/lib/alert/AlertHeader/docs/AlertHeader__default.docs.js +0 -112
  1036. package/lib/alert/AlertLookup/docs/AlertLookup__default.docs.js +0 -187
  1037. package/lib/avatar/AvatarClose/docs/AvatarClose__default.docs.js +0 -72
  1038. package/lib/avatar/AvatarCollision/docs/AvatarCollision__default.docs.js +0 -81
  1039. package/lib/avatar/AvatarIcon/docs/AvatarIcon__palette.docs.js +0 -95
  1040. package/lib/avatar/AvatarIcon/docs/AvatarIcon__size.docs.js +0 -99
  1041. package/lib/avatar/AvatarStatus/docs/AvatarStatus__size.docs.js +0 -90
  1042. package/lib/avatar/AvatarStatus/docs/AvatarStatus__state.docs.js +0 -104
  1043. package/lib/avatar/AvatarThread/docs/AvatarThread__default.docs.js +0 -198
  1044. package/lib/avatar/AvatarUser/docs/AvatarUser__default.docs.js +0 -224
  1045. package/lib/avatar/AvatarWithTeam/docs/AvatarWithTeam__default.docs.js +0 -74
  1046. package/lib/deprecated/SelectDropdown/docs/SelectDropdown__default.docs.js +0 -80
  1047. package/lib/dropdown/ToggleDropDown/docs/ToggleDropDown__default.docs.js +0 -279
  1048. package/lib/emptystate/CommonEmptyState/docs/CommonEmptyState__default.docs.js +0 -171
  1049. package/lib/emptystate/EditionPage/docs/EditionPage__default.docs.js +0 -74
  1050. package/lib/errorstate/Inconvenience/docs/Inconvenience__default.docs.js +0 -69
  1051. package/lib/errorstate/LinkText/docs/LinkText__default.docs.js +0 -67
  1052. package/lib/errorstate/NoRequestFound/docs/NoRequestFound__default.docs.js +0 -68
  1053. package/lib/errorstate/PermissionPlay/docs/PermissionPlay__default.docs.js +0 -70
  1054. package/lib/errorstate/RequestUrlNotFound/docs/RequestUrlNotFound__default.docs.js +0 -69
  1055. package/lib/errorstate/UnableToProcess/docs/UnableToProcess__default.docs.js +0 -69
  1056. package/lib/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__insufficient.docs.js +0 -70
  1057. package/lib/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__unauthorizedLogin.docs.js +0 -69
  1058. package/lib/errorstate/WillBack/docs/WillBack__default.docs.js +0 -71
  1059. package/lib/form/fields/CheckBoxField/docs/CheckBoxField__default.docs.js +0 -80
  1060. package/lib/form/fields/DateField/docs/DateField__default.docs.js +0 -74
  1061. package/lib/form/fields/MultiSelectField/docs/MultiSelectField__default.docs.js +0 -100
  1062. package/lib/form/fields/PhoneField/docs/PhoneField__default.docs.js +0 -76
  1063. package/lib/form/fields/SelectField/docs/SelectField__default.docs.js +0 -110
  1064. package/lib/form/fields/TagsMultiSelect/docs/TagsMultiSelect__default.docs.js +0 -126
  1065. package/lib/form/fields/TagsMultiSelectField/docs/TagsMultiSelectField__default.docs.js +0 -96
  1066. package/lib/form/fields/TextEditorField/docs/TextEditorField__default.docs.js +0 -94
  1067. package/lib/form/fields/TextareaField/docs/TextareaField__default.docs.js +0 -76
  1068. package/lib/form/fields/ValidationMessage/docs/ValidationMessage__default.docs.js +0 -103
  1069. package/lib/form/layout/Field/docs/Field__default.docs.js +0 -74
  1070. package/lib/form/layout/Section/docs/Section__default.docs.js +0 -71
  1071. package/lib/i18n.js +0 -3417
  1072. package/lib/layout/SetupDetailLayout/docs/SetupDetailLayout__default.docs.js +0 -80
  1073. package/lib/layout/SubtabLayout/docs/SubtabLayout__default.docs.js +0 -118
  1074. package/lib/list/AvatarFlip/docs/AvatarFlip__default.docs.js +0 -149
  1075. package/lib/list/BluePrintStatus/docs/BluePrintStatus__default.docs.js +0 -65
  1076. package/lib/list/Comment/docs/Comment__default.docs.js +0 -76
  1077. package/lib/list/DotNew/docs/DotNew__default.docs.js +0 -70
  1078. package/lib/list/GridStencils/docs/GridStencils__default.docs.js +0 -86
  1079. package/lib/list/Icons/docs/FloatingIcons__default.docs.js +0 -81
  1080. package/lib/list/ListLayout/docs/ListLayout__default.docs.js +0 -111
  1081. package/lib/list/ListStencils/docs/ListStencils__default.docs.js +0 -70
  1082. package/lib/list/SecondaryText/docs/ContactName__default.docs.js +0 -73
  1083. package/lib/list/SecondryPanel/docs/SecondryPanelDocs.module.css +0 -37
  1084. package/lib/list/SecondryPanel/docs/SecondryPanel__default.docs.js +0 -133
  1085. package/lib/list/SentimentStatus/docs/SentimentStatus__default.docs.js +0 -65
  1086. package/lib/list/Subject/docs/Subject__default.docs.js +0 -94
  1087. package/lib/list/TagNew/docs/TagNew__default.docs.js +0 -73
  1088. package/lib/list/Thread/docs/Thread__default.docs.js +0 -72
  1089. package/lib/list/UserTime/docs/UserTime__default.docs.js +0 -196
  1090. package/lib/list/status/StatusDropdown/docs/StatusDropdown__default.docs.js +0 -178
  1091. package/lib/list/status/StatusListItem/docs/StatusListItem__default.docs.js +0 -77
  1092. package/lib/lookup/EmptyPage/docs/EmptyPage__account.docs.js +0 -70
  1093. package/lib/lookup/EmptyPage/docs/EmptyPage__contact.docs.js +0 -70
  1094. package/lib/lookup/EmptyPage/docs/EmptyPage__default.docs.js +0 -67
  1095. package/lib/lookup/EmptyPage/docs/EmptyPage__product.docs.js +0 -70
  1096. package/lib/lookup/Lookup/docs/Lookup__contact.docs.js +0 -247
  1097. package/lib/lookup/Lookup/docs/Lookup__default.docs.js +0 -121
  1098. package/lib/lookup/header/Close/docs/Close__default.docs.js +0 -69
  1099. package/lib/lookup/header/ModuleHeader/docs/ModuleHeader__default.docs.js +0 -89
  1100. package/lib/lookup/header/Search/docs/Search__default.docs.js +0 -175
  1101. package/lib/lookup/header/TicketHeader/docs/TicketHeader__default.docs.js +0 -133
  1102. package/lib/lookup/header/Title/docs/Title__default.docs.js +0 -71
  1103. package/lib/lookup/header/ViewDropDown/docs/ViewDropDown__default.docs.js +0 -119
  1104. package/lib/setup/header/Button/docs/Button__default.docs.js +0 -68
  1105. package/lib/setup/header/Link/docs/Link__default.docs.js +0 -69
  1106. package/lib/setup/header/Search/docs/Search__default.docs.js +0 -92
  1107. package/lib/setup/header/Views/docs/Views__default.docs.js +0 -70
  1108. package/lib/setup/helptips/Description/docs/Description__default.docs.js +0 -72
  1109. package/lib/setup/helptips/Link/docs/Link__default.docs.js +0 -73
  1110. package/lib/setup/helptips/ListGroup/docs/ListGroup__default.docs.js +0 -76
  1111. package/lib/setup/helptips/Title/docs/Title__default.docs.js +0 -72
  1112. package/lib/setup/table/Table/docs/Table__default.docs.js +0 -238
  1113. package/lib/setup/table/Text/docs/Text__default.docs.js +0 -84
  1114. package/lib/svg/docs/SVG__default.docs.js +0 -101
  1115. package/lib/utils/Common.js +0 -33
  1116. package/lib/version2/AlertClose/docs/AlertClose__default.docs.js +0 -97
  1117. package/lib/version2/GlobalNotification/docs/GlobalNotification__default.docs.js +0 -143
  1118. package/lib/version2/alertIcons/docs/AlertIcons__default.docs.js +0 -187
  1119. package/lib/version2/errorstate/Inconvenience/docs/Inconvenience__default.docs.js +0 -68
  1120. package/lib/version2/errorstate/OopsSomethingMiss/docs/OopsSomethingMiss__default.docs.js +0 -70
  1121. package/lib/version2/errorstate/UnableToProcessRequest/docs/UnableToProcessRequest__default.docs.js +0 -80
  1122. package/lib/version2/errorstate/UnauthorizedLogin/docs/UnauthorizedLogin__default.docs.js +0 -68
  1123. package/lib/version2/errorstate/UrlNotFound/docs/UrlNotFound__default.docs.js +0 -70
  1124. package/lib/version2/errorstate/WillBeRightBack/docs/WillBeRightBack__default.docs.js +0 -68
  1125. package/lib/version2/lookup/AlertHeader/docs/AlertHeader__default.docs.js +0 -105
  1126. package/lib/version2/lookup/AlertLookup/docs/AlertLookup__default.docs.js +0 -212
  1127. package/lib/version2/notification/DesktopNotification/docs/DesktopNotification__default.docs.js +0 -142
  1128. package/lib/version2/notification/DesktopNotificationHeader/docs/DesktopNotificationHeader__default.docs.js +0 -108
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.SecondryPanel_propTypes = exports.SecondryPanelUL_propTypes = exports.SecondryPanelLI_propTypes = exports.SecondryPanelItem_propTypes = void 0;
7
+ var _propTypes = _interopRequireDefault(require("prop-types"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9
+ var SecondryPanel_propTypes = {
10
+ children: _propTypes["default"].node,
11
+ className: _propTypes["default"].string
12
+ };
13
+ exports.SecondryPanel_propTypes = SecondryPanel_propTypes;
14
+ var SecondryPanelUL_propTypes = {
15
+ align: _propTypes["default"].string,
16
+ children: _propTypes["default"].node,
17
+ className: _propTypes["default"].string,
18
+ dataId: _propTypes["default"].string
19
+ };
20
+ exports.SecondryPanelUL_propTypes = SecondryPanelUL_propTypes;
21
+ var SecondryPanelLI_propTypes = {
22
+ children: _propTypes["default"].node,
23
+ className: _propTypes["default"].string,
24
+ dataId: _propTypes["default"].string,
25
+ isShrink: _propTypes["default"].bool
26
+ };
27
+ exports.SecondryPanelLI_propTypes = SecondryPanelLI_propTypes;
28
+ var SecondryPanelItem_propTypes = {
29
+ children: _propTypes["default"].node,
30
+ className: _propTypes["default"].string,
31
+ clipped: _propTypes["default"].bool,
32
+ dotClass: _propTypes["default"].string,
33
+ dotSpacingType: _propTypes["default"].oneOf(['minimalList', 'list']),
34
+ flex: _propTypes["default"].bool,
35
+ isDot: _propTypes["default"].bool,
36
+ title: _propTypes["default"].string
37
+ };
38
+ exports.SecondryPanelItem_propTypes = SecondryPanelItem_propTypes;
@@ -1,59 +1,38 @@
1
1
  "use strict";
2
2
 
3
3
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
-
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports["default"] = void 0;
9
-
10
8
  var _react = _interopRequireDefault(require("react"));
11
-
12
- var _propTypes = _interopRequireDefault(require("prop-types"));
13
-
9
+ var _propTypes = require("./props/propTypes");
14
10
  var _SentimentStatusModule = _interopRequireDefault(require("./SentimentStatus.module.css"));
15
-
16
11
  var _Icon = _interopRequireDefault(require("@zohodesk/icons/lib/Icon"));
17
-
18
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
19
-
20
13
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
21
-
22
14
  function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
23
-
24
15
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
25
-
26
16
  function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
27
-
28
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
29
-
17
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
30
18
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
31
-
32
19
  function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
33
-
34
20
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
35
-
36
21
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
37
-
38
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
39
-
22
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
40
23
  var SentimentStatus = /*#__PURE__*/function (_React$Component) {
41
24
  _inherits(SentimentStatus, _React$Component);
42
-
43
25
  var _super = _createSuper(SentimentStatus);
44
-
45
26
  function SentimentStatus(props) {
46
27
  _classCallCheck(this, SentimentStatus);
47
-
48
28
  return _super.call(this, props);
49
29
  }
50
-
51
30
  _createClass(SentimentStatus, [{
52
31
  key: "render",
53
32
  value: function render() {
54
33
  var _this$props = this.props,
55
- type = _this$props.type,
56
- dataTitle = _this$props.dataTitle;
34
+ type = _this$props.type,
35
+ dataTitle = _this$props.dataTitle;
57
36
  var icons = {
58
37
  neutral: 'ZD-botNeutral',
59
38
  negative: 'ZD-botNegative',
@@ -68,16 +47,10 @@ var SentimentStatus = /*#__PURE__*/function (_React$Component) {
68
47
  }));
69
48
  }
70
49
  }]);
71
-
72
50
  return SentimentStatus;
73
51
  }(_react["default"].Component);
74
-
75
52
  exports["default"] = SentimentStatus;
76
- SentimentStatus.propTypes = {
77
- dataTitle: _propTypes["default"].string,
78
- type: _propTypes["default"].oneOf(['neutral', 'negative', 'positive'])
79
- };
80
-
53
+ SentimentStatus.propTypes = _propTypes.propTypes;
81
54
  if (false) {
82
55
  SentimentStatus.docs = {
83
56
  componentGroup: ''
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.propTypes = void 0;
7
+ var _propTypes = _interopRequireDefault(require("prop-types"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9
+ var propTypes = {
10
+ dataTitle: _propTypes["default"].string,
11
+ type: _propTypes["default"].oneOf(['neutral', 'negative', 'positive'])
12
+ };
13
+ exports.propTypes = propTypes;
@@ -1,80 +1,57 @@
1
1
  "use strict";
2
2
 
3
3
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
-
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports["default"] = void 0;
9
-
10
8
  var _react = _interopRequireWildcard(require("react"));
11
-
12
- var _propTypes = _interopRequireDefault(require("prop-types"));
13
-
9
+ var _defaultProps = require("./props/defaultProps");
10
+ var _propTypes = require("./props/propTypes");
14
11
  var _Link = _interopRequireDefault(require("../../Link/Link"));
15
-
16
12
  var _SubjectModule = _interopRequireDefault(require("./Subject.module.css"));
17
-
18
13
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
19
-
20
14
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
21
-
22
15
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
23
-
24
- function _extends() { _extends = Object.assign || 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); }
25
-
16
+ 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); }
26
17
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
27
-
28
18
  function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
29
-
30
19
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
31
-
32
20
  function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
33
-
34
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
35
-
21
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
36
22
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
37
-
38
23
  function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
39
-
40
24
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
41
-
42
25
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
43
-
44
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
45
-
26
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
46
27
  var Subject = /*#__PURE__*/function (_Component) {
47
28
  _inherits(Subject, _Component);
48
-
49
29
  var _super = _createSuper(Subject);
50
-
51
30
  function Subject(props) {
52
31
  _classCallCheck(this, Subject);
53
-
54
32
  return _super.call(this, props);
55
33
  }
56
-
57
34
  _createClass(Subject, [{
58
35
  key: "render",
59
36
  value: function render() {
60
37
  var _this$props = this.props,
61
- text = _this$props.text,
62
- dataId = _this$props.dataId,
63
- urlName = _this$props.urlName,
64
- href = _this$props.href,
65
- urlData = _this$props.urlData,
66
- onClick = _this$props.onClick,
67
- isLink = _this$props.isLink,
68
- target = _this$props.target,
69
- fontWeight = _this$props.fontWeight,
70
- className = _this$props.className,
71
- isDotted = _this$props.isDotted,
72
- children = _this$props.children,
73
- customProps = _this$props.customProps;
38
+ text = _this$props.text,
39
+ dataId = _this$props.dataId,
40
+ urlName = _this$props.urlName,
41
+ href = _this$props.href,
42
+ urlData = _this$props.urlData,
43
+ onClick = _this$props.onClick,
44
+ isLink = _this$props.isLink,
45
+ target = _this$props.target,
46
+ fontWeight = _this$props.fontWeight,
47
+ className = _this$props.className,
48
+ isDotted = _this$props.isDotted,
49
+ children = _this$props.children,
50
+ customProps = _this$props.customProps;
74
51
  var _customProps$LinkProp = customProps.LinkProps,
75
- LinkProps = _customProps$LinkProp === void 0 ? {} : _customProps$LinkProp,
76
- _customProps$TextProp = customProps.TextProps,
77
- TextProps = _customProps$TextProp === void 0 ? {} : _customProps$TextProp;
52
+ LinkProps = _customProps$LinkProp === void 0 ? {} : _customProps$LinkProp,
53
+ _customProps$TextProp = customProps.TextProps,
54
+ TextProps = _customProps$TextProp === void 0 ? {} : _customProps$TextProp;
78
55
  return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, isLink ? /*#__PURE__*/_react["default"].createElement(_Link["default"], _extends({
79
56
  urlName: urlName,
80
57
  href: href,
@@ -91,37 +68,11 @@ var Subject = /*#__PURE__*/function (_Component) {
91
68
  }, TextProps), text));
92
69
  }
93
70
  }]);
94
-
95
71
  return Subject;
96
72
  }(_react.Component);
97
-
98
73
  exports["default"] = Subject;
99
- Subject.propTypes = {
100
- className: _propTypes["default"].string,
101
- dataId: _propTypes["default"].string,
102
- fontWeight: _propTypes["default"].oneOf(['regular', 'semibold', 'bold']),
103
- href: _propTypes["default"].string,
104
- isLink: _propTypes["default"].bool,
105
- onClick: _propTypes["default"].func,
106
- target: _propTypes["default"].oneOf(['_blank', '_self']),
107
- text: _propTypes["default"].string,
108
- urlData: _propTypes["default"].object,
109
- urlName: _propTypes["default"].string,
110
- isDotted: _propTypes["default"].bool,
111
- children: _propTypes["default"].node,
112
- customProps: _propTypes["default"].shape({
113
- LinkProps: _propTypes["default"].object,
114
- TextProps: _propTypes["default"].object
115
- })
116
- };
117
- Subject.defaultProps = {
118
- isLink: false,
119
- fontWeight: 'regular',
120
- className: '',
121
- isDotted: true,
122
- customProps: {}
123
- };
124
-
74
+ Subject.propTypes = _propTypes.propTypes;
75
+ Subject.defaultProps = _defaultProps.defaultProps;
125
76
  if (false) {
126
77
  Subject.docs = {
127
78
  folderName: 'List',
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.defaultProps = void 0;
7
+ var defaultProps = {
8
+ isLink: false,
9
+ fontWeight: 'regular',
10
+ className: '',
11
+ isDotted: true,
12
+ customProps: {}
13
+ };
14
+ exports.defaultProps = defaultProps;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.propTypes = void 0;
7
+ var _propTypes = _interopRequireDefault(require("prop-types"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9
+ var propTypes = {
10
+ className: _propTypes["default"].string,
11
+ dataId: _propTypes["default"].string,
12
+ fontWeight: _propTypes["default"].oneOf(['regular', 'semibold', 'bold']),
13
+ href: _propTypes["default"].string,
14
+ isLink: _propTypes["default"].bool,
15
+ onClick: _propTypes["default"].func,
16
+ target: _propTypes["default"].oneOf(['_blank', '_self']),
17
+ text: _propTypes["default"].string,
18
+ urlData: _propTypes["default"].object,
19
+ urlName: _propTypes["default"].string,
20
+ isDotted: _propTypes["default"].bool,
21
+ children: _propTypes["default"].node,
22
+ customProps: _propTypes["default"].shape({
23
+ LinkProps: _propTypes["default"].object,
24
+ TextProps: _propTypes["default"].object
25
+ })
26
+ };
27
+ exports.propTypes = propTypes;
@@ -1,64 +1,43 @@
1
1
  "use strict";
2
2
 
3
3
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
-
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports["default"] = void 0;
9
-
10
8
  var _react = _interopRequireWildcard(require("react"));
11
-
12
- var _propTypes = _interopRequireDefault(require("prop-types"));
13
-
9
+ var _defaultProps = require("./props/defaultProps");
10
+ var _propTypes = require("./props/propTypes");
14
11
  var _TagNewModule = _interopRequireDefault(require("./TagNew.module.css"));
15
-
16
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
-
18
13
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
19
-
20
14
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
21
-
22
15
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
23
-
24
16
  function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
25
-
26
17
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
27
-
28
18
  function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
29
-
30
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
31
-
19
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
32
20
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
33
-
34
21
  function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
35
-
36
22
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
37
-
38
23
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
39
-
40
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
41
-
24
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
42
25
  var TagNew = /*#__PURE__*/function (_Component) {
43
26
  _inherits(TagNew, _Component);
44
-
45
27
  var _super = _createSuper(TagNew);
46
-
47
28
  function TagNew(props) {
48
29
  _classCallCheck(this, TagNew);
49
-
50
30
  return _super.call(this, props);
51
31
  }
52
-
53
32
  _createClass(TagNew, [{
54
33
  key: "render",
55
34
  value: function render() {
56
35
  var _this$props = this.props,
57
- className = _this$props.className,
58
- text = _this$props.text,
59
- animate = _this$props.animate,
60
- onClick = _this$props.onClick,
61
- dataId = _this$props.dataId;
36
+ className = _this$props.className,
37
+ text = _this$props.text,
38
+ animate = _this$props.animate,
39
+ onClick = _this$props.onClick,
40
+ dataId = _this$props.dataId;
62
41
  return /*#__PURE__*/_react["default"].createElement("div", {
63
42
  className: "".concat(_TagNewModule["default"].tagStyle, " ").concat(animate ? _TagNewModule["default"].bounceIn : '', " ").concat(className ? className : ''),
64
43
  onClick: onClick,
@@ -66,23 +45,11 @@ var TagNew = /*#__PURE__*/function (_Component) {
66
45
  }, text);
67
46
  }
68
47
  }]);
69
-
70
48
  return TagNew;
71
49
  }(_react.Component);
72
-
73
50
  exports["default"] = TagNew;
74
- TagNew.propTypes = {
75
- animate: _propTypes["default"].bool,
76
- className: _propTypes["default"].string,
77
- dataId: _propTypes["default"].string,
78
- onClick: _propTypes["default"].func,
79
- text: _propTypes["default"].string
80
- };
81
- TagNew.defaultProps = {
82
- animate: false,
83
- dataId: 'TagNew'
84
- };
85
-
51
+ TagNew.propTypes = _propTypes.propTypes;
52
+ TagNew.defaultProps = _defaultProps.defaultProps;
86
53
  if (false) {
87
54
  TagNew.docs = {
88
55
  folderName: 'List',
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.defaultProps = void 0;
7
+ var defaultProps = {
8
+ animate: false,
9
+ dataId: 'TagNew'
10
+ };
11
+ exports.defaultProps = defaultProps;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.propTypes = void 0;
7
+ var _propTypes = _interopRequireDefault(require("prop-types"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9
+ var propTypes = {
10
+ animate: _propTypes["default"].bool,
11
+ className: _propTypes["default"].string,
12
+ dataId: _propTypes["default"].string,
13
+ onClick: _propTypes["default"].func,
14
+ text: _propTypes["default"].string
15
+ };
16
+ exports.propTypes = propTypes;
@@ -1,73 +1,53 @@
1
1
  "use strict";
2
2
 
3
3
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
-
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports["default"] = void 0;
9
-
10
8
  var _react = _interopRequireWildcard(require("react"));
11
-
12
- var _propTypes = _interopRequireDefault(require("prop-types"));
13
-
9
+ var _defaultProps = require("./props/defaultProps");
10
+ var _propTypes = require("./props/propTypes");
14
11
  var _Icon = _interopRequireDefault(require("@zohodesk/icons/lib/Icon"));
15
-
16
12
  var _Button = _interopRequireDefault(require("@zohodesk/components/lib/semantic/Button/Button"));
17
-
18
13
  var _ThreadModule = _interopRequireDefault(require("./Thread.module.css"));
19
-
20
14
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
21
-
22
15
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
23
-
24
16
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
25
-
26
17
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
27
-
28
18
  function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
29
-
30
19
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
31
-
32
20
  function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
33
-
34
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
35
-
21
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
36
22
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
37
-
38
23
  function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
39
-
40
24
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
41
-
42
25
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
43
-
44
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
45
-
26
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
46
27
  var Thread = /*#__PURE__*/function (_Component) {
47
28
  _inherits(Thread, _Component);
48
-
49
29
  var _super = _createSuper(Thread);
50
-
51
30
  function Thread(props) {
52
31
  _classCallCheck(this, Thread);
53
-
54
32
  return _super.call(this, props);
55
33
  }
56
-
57
34
  _createClass(Thread, [{
58
35
  key: "render",
59
36
  value: function render() {
60
37
  var _this$props = this.props,
61
- threadCount = _this$props.count,
62
- className = _this$props.className,
63
- iconTitle = _this$props.iconTitle,
64
- dataId = _this$props.dataId,
65
- align = _this$props.align;
38
+ threadCount = _this$props.count,
39
+ className = _this$props.className,
40
+ iconTitle = _this$props.iconTitle,
41
+ dataId = _this$props.dataId,
42
+ align = _this$props.align;
66
43
  var count = threadCount === '0' ? '1' : threadCount;
67
44
  return /*#__PURE__*/_react["default"].createElement(_Button["default"], {
68
45
  customClass: "".concat(_ThreadModule["default"].container, " ").concat(_ThreadModule["default"]["align_".concat(align)], " ").concat(className),
69
46
  title: iconTitle,
70
- dataId: dataId
47
+ dataId: dataId,
48
+ a11y: {
49
+ ariaLabel: iconTitle
50
+ }
71
51
  }, /*#__PURE__*/_react["default"].createElement(_Icon["default"], {
72
52
  name: "ZD-TK-thread",
73
53
  size: "9"
@@ -76,23 +56,11 @@ var Thread = /*#__PURE__*/function (_Component) {
76
56
  }, count));
77
57
  }
78
58
  }]);
79
-
80
59
  return Thread;
81
60
  }(_react.Component);
82
-
83
61
  exports["default"] = Thread;
84
- Thread.propTypes = {
85
- align: _propTypes["default"].oneOf(['left', 'right']),
86
- className: _propTypes["default"].string,
87
- count: _propTypes["default"].string,
88
- dataId: _propTypes["default"].string,
89
- iconTitle: _propTypes["default"].string
90
- };
91
- Thread.defaultProps = {
92
- align: 'left',
93
- className: ''
94
- };
95
-
62
+ Thread.propTypes = _propTypes.propTypes;
63
+ Thread.defaultProps = _defaultProps.defaultProps;
96
64
  if (false) {
97
65
  Thread.docs = {
98
66
  folderName: 'List',
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.defaultProps = void 0;
7
+ var defaultProps = {
8
+ align: 'left',
9
+ className: ''
10
+ };
11
+ exports.defaultProps = defaultProps;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.propTypes = void 0;
7
+ var _propTypes = _interopRequireDefault(require("prop-types"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9
+ var propTypes = {
10
+ align: _propTypes["default"].oneOf(['left', 'right']),
11
+ className: _propTypes["default"].string,
12
+ count: _propTypes["default"].string,
13
+ dataId: _propTypes["default"].string,
14
+ iconTitle: _propTypes["default"].string
15
+ };
16
+ exports.propTypes = propTypes;