@zohodesk/dot 1.9.1 → 1.9.3

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 (933) hide show
  1. package/README.md +20 -0
  2. package/_react-cli.config.js +27 -0
  3. package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +425 -422
  4. package/assets/Appearance/dark/themes/blue/blue_DotTheme_DarkTheme.module.css +16 -16
  5. package/assets/Appearance/dark/themes/green/green_DotTheme_DarkTheme.module.css +16 -16
  6. package/assets/Appearance/dark/themes/orange/orange_DotTheme_DarkTheme.module.css +16 -16
  7. package/assets/Appearance/dark/themes/red/red_DotTheme_DarkTheme.module.css +16 -16
  8. package/assets/Appearance/dark/themes/yellow/yellow_DotTheme_DarkTheme.module.css +16 -16
  9. package/assets/Appearance/light/mode/Dot_LightMode.module.css +425 -422
  10. package/assets/Appearance/light/themes/blue/blue_DotTheme_LightTheme.module.css +16 -16
  11. package/assets/Appearance/light/themes/green/green_DotTheme_LightTheme.module.css +16 -16
  12. package/assets/Appearance/light/themes/orange/orange_DotTheme_LightTheme.module.css +16 -16
  13. package/assets/Appearance/light/themes/red/red_DotTheme_LightTheme.module.css +16 -16
  14. package/assets/Appearance/light/themes/yellow/yellow_DotTheme_LightTheme.module.css +16 -16
  15. package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +425 -422
  16. package/assets/Appearance/pureDark/themes/blue/blue_DotTheme_PureDarkTheme.module.css +16 -16
  17. package/assets/Appearance/pureDark/themes/green/green_DotTheme_PureDarkTheme.module.css +16 -16
  18. package/assets/Appearance/pureDark/themes/orange/orange_DotTheme_PureDarkTheme.module.css +16 -16
  19. package/assets/Appearance/pureDark/themes/red/red_DotTheme_PureDarkTheme.module.css +16 -16
  20. package/assets/Appearance/pureDark/themes/yellow/yellow_DotTheme_PureDarkTheme.module.css +16 -16
  21. package/cbt.config.js +41 -0
  22. package/es/AlphabeticList/AlphabeticList.module.css +0 -0
  23. package/es/AttachmentViewer/AttachmentViewer.js +20 -24
  24. package/es/AudioPlayer/Timer/__tests__/Timer.spec.js +1 -2
  25. package/es/AudioPlayer/__tests__/AudioPlayer.spec.js +39 -38
  26. package/es/ChannelIcon/ChannelIcon.js +11 -13
  27. package/es/DotProvider/DotProvider.js +4 -2
  28. package/es/Drawer/Drawer.js +5 -4
  29. package/es/ExternalLink/ExternalLink.js +5 -4
  30. package/es/ExternalLink/ExternalLink.module.css +0 -0
  31. package/es/ExternalLink/__tests__/ExternalLink.spec.js +0 -0
  32. package/es/FlipCard/FlipCard.js +12 -14
  33. package/es/IconButton/IconButton.js +5 -4
  34. package/es/Link/Link.js +10 -8
  35. package/es/Message/Message.js +5 -4
  36. package/es/Onboarding/Onboarding.js +25 -33
  37. package/es/PlusIcon/PlusIcon.js +0 -0
  38. package/es/Separator/Separator.module.css +5 -5
  39. package/es/TagWithIcon/TagWithIcon.module.css +2 -2
  40. package/es/ToastMessage/ToastMessage.js +4 -2
  41. package/es/ToastMessage/ToastMessage.module.css +0 -0
  42. package/es/actions/AutoClose.js +1 -2
  43. package/es/alert/AlertLookup/AlertLookup.js +12 -14
  44. package/es/avatar/AvatarClose/AvatarClose.js +7 -7
  45. package/es/avatar/AvatarCollision/AvatarCollision.js +7 -7
  46. package/es/avatar/AvatarIcon/AvatarIcon.js +5 -4
  47. package/es/avatar/AvatarStatus/AvatarStatus.js +8 -7
  48. package/es/avatar/AvatarThread/AvatarThread.js +7 -7
  49. package/es/avatar/AvatarUser/AvatarUser.js +9 -10
  50. package/es/avatar/AvatarWithTeam/AvatarWithTeam.js +14 -17
  51. package/es/dot_layer.module.css +1 -1
  52. package/es/dropdown/ToggleDropDown/ToggleDropDown.js +24 -28
  53. package/es/emptystate/CommonEmptyState/CommonEmptyState.js +0 -0
  54. package/es/errorstate/Inconvenience/Inconvenience.js +1 -1
  55. package/es/errorstate/UnableToProcess/UnableToProcess.js +1 -1
  56. package/es/form/fields/CheckBoxField/CheckBoxField.js +13 -15
  57. package/es/form/fields/CheckBoxField/__tests__/__snapshots__/CheckBoxField.spec.js.snap +21 -18
  58. package/es/form/fields/CurrencyField/CurrencyField.js +12 -14
  59. package/es/form/fields/DateField/DateField.js +13 -14
  60. package/es/form/fields/Fields.module.css +4 -1
  61. package/es/form/fields/MultiSelectField/MultiSelectField.js +12 -13
  62. package/es/form/fields/PhoneField/PhoneField.js +7 -7
  63. package/es/form/fields/RadioField/RadioField.js +17 -19
  64. package/es/form/fields/SelectField/SelectField.js +13 -14
  65. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +20 -20
  66. package/es/form/fields/TagsMultiSelect/props/propTypes.js +2 -1
  67. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +11 -11
  68. package/es/form/fields/TextBoxField/TextBoxField.js +13 -14
  69. package/es/form/fields/TextEditor/TextEditor.module.css +0 -0
  70. package/es/form/fields/TextEditorField/TextEditorField.js +10 -11
  71. package/es/form/fields/TextEditorWrapper/TextEditorWrapper.js +10 -11
  72. package/es/form/fields/TextareaField/TextareaField.js +14 -15
  73. package/es/form/fields/ValidationMessage/ValidationMessage.js +4 -2
  74. package/es/form/layout/Field/Field.js +0 -0
  75. package/es/form/layout/Section/Section.js +0 -0
  76. package/es/layout/SubtabLayout/SubtabLayout.js +6 -4
  77. package/es/list/DepartmentDropDown/DepartmentDropDown.js +17 -10
  78. package/es/list/DepartmentDropDown/__tests__/__snapshots__/DepartmentDropDown.spec.js.snap +1 -1
  79. package/es/list/DepartmentDropDown/props/defaultProps.js +2 -1
  80. package/es/list/DepartmentDropDown/props/propTypes.js +3 -0
  81. package/es/list/GridStencils/GridStencils.module.css +14 -5
  82. package/es/list/ListLayout/ListLayout.js +5 -4
  83. package/es/list/SecondaryText/AccountName.js +28 -11
  84. package/es/list/SecondaryText/ContactName.js +23 -9
  85. package/es/list/SecondaryText/DepartmentText.js +13 -6
  86. package/es/list/SecondaryText/Email.js +23 -10
  87. package/es/list/SecondaryText/PhoneNumber.js +23 -10
  88. package/es/list/SecondaryText/PriorityText.js +13 -6
  89. package/es/list/SecondaryText/SecondaryText.js +17 -8
  90. package/es/list/SecondaryText/SecondaryText.module.css +40 -24
  91. package/es/list/SecondaryText/StatusText.js +13 -6
  92. package/es/list/SecondaryText/TicketId.js +14 -8
  93. package/es/list/SecondaryText/Website.js +16 -5
  94. package/es/list/SecondaryText/__tests__/__snapshots__/AccountName.spec.js.snap +1 -1
  95. package/es/list/SecondaryText/__tests__/__snapshots__/ContactName.spec.js.snap +1 -1
  96. package/es/list/SecondaryText/__tests__/__snapshots__/DepartmentText.spec.js.snap +1 -1
  97. package/es/list/SecondaryText/__tests__/__snapshots__/Email.spec.js.snap +1 -1
  98. package/es/list/SecondaryText/__tests__/__snapshots__/PhoneNumber.spec.js.snap +1 -1
  99. package/es/list/SecondaryText/__tests__/__snapshots__/PriorityText.spec.js.snap +1 -1
  100. package/es/list/SecondaryText/__tests__/__snapshots__/SecondaryText.spec.js.snap +1 -1
  101. package/es/list/SecondaryText/__tests__/__snapshots__/StatusText.spec.js.snap +1 -1
  102. package/es/list/SecondaryText/__tests__/__snapshots__/Website.spec.js.snap +6 -2
  103. package/es/list/SecondaryText/props/defaultProps.js +18 -0
  104. package/es/list/SecondaryText/props/propTypes.js +21 -0
  105. package/es/list/SecondryPanel/SecondryPanel.js +0 -0
  106. package/es/list/Subject/Subject.js +32 -15
  107. package/es/list/Subject/__tests__/__snapshots__/Subject.spec.js.snap +14 -14
  108. package/es/list/Subject/props/defaultProps.js +3 -1
  109. package/es/list/Subject/props/propTypes.js +5 -1
  110. package/es/list/status/StatusDropdown/StatusDropdown.js +7 -2
  111. package/es/list/status/StatusDropdown/props/defaultProps.js +2 -1
  112. package/es/list/status/StatusDropdown/props/propTypes.js +4 -1
  113. package/es/list/status/StatusListItem/StatusListItem.js +11 -7
  114. package/es/list/status/StatusListItem/StatusListItem.module.css +38 -17
  115. package/es/list/status/StatusListItem/__tests__/__snapshots__/StatusListItem.spec.js.snap +30 -23
  116. package/es/list/status/StatusListItem/props/defaultProps.js +2 -1
  117. package/es/list/status/StatusListItem/props/propTypes.js +2 -1
  118. package/es/lookup/EmptyPage/EmptyPage.js +0 -0
  119. package/es/lookup/Lookup/Lookup.js +5 -4
  120. package/es/lookup/Lookup/Lookup.module.css +0 -0
  121. package/es/lookup/header/Search/Search.js +3 -5
  122. package/es/lookup/header/TicketHeader/TicketHeader.module.css +0 -0
  123. package/es/lookup/header/ViewDropDown/ViewDropDown.module.css +0 -0
  124. package/es/setup/helptips/Link/Link.js +0 -0
  125. package/es/setup/helptips/Title/Title.js +0 -0
  126. package/es/setup/table/Text/TableText.module.css +0 -0
  127. package/es/setup/table/Text/Text.js +0 -0
  128. package/es/version2/GlobalNotification/GlobalNotification.js +9 -8
  129. package/es/version2/lookup/AlertLookup/AlertLookup.js +15 -15
  130. package/es/version2/notification/DesktopNotification/DesktopNotification.js +7 -6
  131. package/lib/AlphabeticList/AlphabeticList.module.css +0 -0
  132. package/lib/Drawer/Drawer.js +0 -0
  133. package/lib/ExternalLink/ExternalLink.js +0 -0
  134. package/lib/ExternalLink/ExternalLink.module.css +0 -0
  135. package/lib/ExternalLink/__tests__/ExternalLink.spec.js +0 -0
  136. package/lib/Link/Link.js +0 -0
  137. package/lib/PlusIcon/PlusIcon.js +0 -0
  138. package/lib/Separator/Separator.module.css +5 -5
  139. package/lib/TagWithIcon/TagWithIcon.module.css +2 -2
  140. package/lib/ToastMessage/ToastMessage.js +0 -0
  141. package/lib/ToastMessage/ToastMessage.module.css +0 -0
  142. package/lib/avatar/AvatarStatus/AvatarStatus.js +0 -0
  143. package/lib/avatar/AvatarUser/AvatarUser.js +0 -0
  144. package/lib/dot_layer.module.css +1 -1
  145. package/lib/emptystate/CommonEmptyState/CommonEmptyState.js +0 -0
  146. package/lib/errorstate/Inconvenience/Inconvenience.js +1 -1
  147. package/lib/errorstate/UnableToProcess/UnableToProcess.js +1 -1
  148. package/lib/form/fields/CheckBoxField/CheckBoxField.js +0 -0
  149. package/lib/form/fields/CheckBoxField/__tests__/__snapshots__/CheckBoxField.spec.js.snap +21 -18
  150. package/lib/form/fields/Fields.module.css +4 -1
  151. package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.js +12 -7
  152. package/lib/form/fields/TagsMultiSelect/props/propTypes.js +2 -1
  153. package/lib/form/fields/TextEditor/TextEditor.module.css +0 -0
  154. package/lib/form/layout/Field/Field.js +0 -0
  155. package/lib/form/layout/Section/Section.js +0 -0
  156. package/lib/list/DepartmentDropDown/DepartmentDropDown.js +16 -10
  157. package/lib/list/DepartmentDropDown/__tests__/__snapshots__/DepartmentDropDown.spec.js.snap +1 -1
  158. package/lib/list/DepartmentDropDown/props/defaultProps.js +2 -1
  159. package/lib/list/DepartmentDropDown/props/propTypes.js +2 -0
  160. package/lib/list/GridStencils/GridStencils.module.css +14 -5
  161. package/lib/list/SecondaryText/AccountName.js +27 -8
  162. package/lib/list/SecondaryText/ContactName.js +21 -6
  163. package/lib/list/SecondaryText/DepartmentText.js +15 -6
  164. package/lib/list/SecondaryText/Email.js +22 -7
  165. package/lib/list/SecondaryText/PhoneNumber.js +22 -7
  166. package/lib/list/SecondaryText/PriorityText.js +15 -6
  167. package/lib/list/SecondaryText/SecondaryText.js +26 -8
  168. package/lib/list/SecondaryText/SecondaryText.module.css +40 -24
  169. package/lib/list/SecondaryText/StatusText.js +15 -6
  170. package/lib/list/SecondaryText/TicketId.js +10 -2
  171. package/lib/list/SecondaryText/Website.js +18 -5
  172. package/lib/list/SecondaryText/__tests__/__snapshots__/AccountName.spec.js.snap +1 -1
  173. package/lib/list/SecondaryText/__tests__/__snapshots__/ContactName.spec.js.snap +1 -1
  174. package/lib/list/SecondaryText/__tests__/__snapshots__/DepartmentText.spec.js.snap +1 -1
  175. package/lib/list/SecondaryText/__tests__/__snapshots__/Email.spec.js.snap +1 -1
  176. package/lib/list/SecondaryText/__tests__/__snapshots__/PhoneNumber.spec.js.snap +1 -1
  177. package/lib/list/SecondaryText/__tests__/__snapshots__/PriorityText.spec.js.snap +1 -1
  178. package/lib/list/SecondaryText/__tests__/__snapshots__/SecondaryText.spec.js.snap +1 -1
  179. package/lib/list/SecondaryText/__tests__/__snapshots__/StatusText.spec.js.snap +1 -1
  180. package/lib/list/SecondaryText/__tests__/__snapshots__/Website.spec.js.snap +6 -2
  181. package/lib/list/SecondaryText/props/defaultProps.js +18 -0
  182. package/lib/list/SecondaryText/props/propTypes.js +22 -0
  183. package/lib/list/SecondryPanel/SecondryPanel.js +0 -0
  184. package/lib/list/Subject/Subject.js +40 -13
  185. package/lib/list/Subject/__tests__/__snapshots__/Subject.spec.js.snap +14 -14
  186. package/lib/list/Subject/props/defaultProps.js +3 -1
  187. package/lib/list/Subject/props/propTypes.js +6 -1
  188. package/lib/list/status/StatusDropdown/StatusDropdown.js +6 -2
  189. package/lib/list/status/StatusDropdown/props/defaultProps.js +2 -1
  190. package/lib/list/status/StatusDropdown/props/propTypes.js +3 -1
  191. package/lib/list/status/StatusListItem/StatusListItem.js +7 -3
  192. package/lib/list/status/StatusListItem/StatusListItem.module.css +38 -17
  193. package/lib/list/status/StatusListItem/__tests__/__snapshots__/StatusListItem.spec.js.snap +30 -23
  194. package/lib/list/status/StatusListItem/props/defaultProps.js +2 -1
  195. package/lib/list/status/StatusListItem/props/propTypes.js +2 -1
  196. package/lib/lookup/EmptyPage/EmptyPage.js +0 -0
  197. package/lib/lookup/Lookup/Lookup.js +0 -0
  198. package/lib/lookup/Lookup/Lookup.module.css +0 -0
  199. package/lib/lookup/header/TicketHeader/TicketHeader.module.css +0 -0
  200. package/lib/lookup/header/ViewDropDown/ViewDropDown.module.css +0 -0
  201. package/lib/setup/helptips/Link/Link.js +0 -0
  202. package/lib/setup/helptips/Title/Title.js +0 -0
  203. package/lib/setup/table/Text/TableText.module.css +0 -0
  204. package/lib/setup/table/Text/Text.js +0 -0
  205. package/package.json +16 -20
  206. package/es/v1/ActionButton/ActionButton.js +0 -155
  207. package/es/v1/ActionButton/props/defaultProps.js +0 -19
  208. package/es/v1/ActionButton/props/propTypes.js +0 -37
  209. package/es/v1/AlphabeticList/AlphabeticList.js +0 -94
  210. package/es/v1/AlphabeticList/props/defaultProps.js +0 -12
  211. package/es/v1/AlphabeticList/props/propTypes.js +0 -23
  212. package/es/v1/Attachment/Attachment.js +0 -96
  213. package/es/v1/Attachment/props/defaultProps.js +0 -8
  214. package/es/v1/Attachment/props/propTypes.js +0 -18
  215. package/es/v1/AttachmentViewer/AttachmentImage.js +0 -81
  216. package/es/v1/AttachmentViewer/AttachmentViewer.js +0 -626
  217. package/es/v1/AttachmentViewer/props/defaultProps.js +0 -11
  218. package/es/v1/AttachmentViewer/props/propTypes.js +0 -36
  219. package/es/v1/ChannelIcon/ChannelIcon.js +0 -93
  220. package/es/v1/ChannelIcon/props/defaultProps.js +0 -7
  221. package/es/v1/ChannelIcon/props/propTypes.js +0 -25
  222. package/es/v1/Drawer/Drawer.js +0 -270
  223. package/es/v1/Drawer/props/defaultProps.js +0 -23
  224. package/es/v1/Drawer/props/propTypes.js +0 -53
  225. package/es/v1/ExternalLink/ExternalLink.js +0 -48
  226. package/es/v1/ExternalLink/props/defaultProps.js +0 -5
  227. package/es/v1/ExternalLink/props/propTypes.js +0 -12
  228. package/es/v1/FlipCard/FlipCard.js +0 -132
  229. package/es/v1/FlipCard/props/defaultProps.js +0 -5
  230. package/es/v1/FlipCard/props/propTypes.js +0 -37
  231. package/es/v1/FormAction/FormAction.js +0 -75
  232. package/es/v1/FormAction/props/defaultProps.js +0 -5
  233. package/es/v1/FormAction/props/propTypes.js +0 -8
  234. package/es/v1/FreezeLayer/FreezeLayer.js +0 -74
  235. package/es/v1/FreezeLayer/props/defaultProps.js +0 -9
  236. package/es/v1/FreezeLayer/props/propTypes.js +0 -19
  237. package/es/v1/GlobalNotification/GlobalNotification.js +0 -144
  238. package/es/v1/GlobalNotification/props/defaultProps.js +0 -6
  239. package/es/v1/GlobalNotification/props/propTypes.js +0 -42
  240. package/es/v1/IconButton/IconButton.js +0 -112
  241. package/es/v1/IconButton/props/defaultProps.js +0 -17
  242. package/es/v1/IconButton/props/propTypes.js +0 -33
  243. package/es/v1/Image/Image.js +0 -36
  244. package/es/v1/Image/props/defaultProps.js +0 -4
  245. package/es/v1/Image/props/propTypes.js +0 -15
  246. package/es/v1/ImportantNotes/ImportantNotes.js +0 -41
  247. package/es/v1/ImportantNotes/props/defaultProps.js +0 -6
  248. package/es/v1/ImportantNotes/props/propTypes.js +0 -10
  249. package/es/v1/Link/Link.js +0 -93
  250. package/es/v1/Link/props/defaultProps.js +0 -5
  251. package/es/v1/Link/props/propTypes.js +0 -18
  252. package/es/v1/Loader/Loader.js +0 -15
  253. package/es/v1/Message/Message.js +0 -91
  254. package/es/v1/Message/props/defaultProps.js +0 -4
  255. package/es/v1/Message/props/propTypes.js +0 -20
  256. package/es/v1/MessageBanner/MessageBanner.js +0 -60
  257. package/es/v1/MessageBanner/props/defaultProps.js +0 -7
  258. package/es/v1/MessageBanner/props/propTypes.js +0 -13
  259. package/es/v1/NewStar/NewStar.js +0 -61
  260. package/es/v1/NewStar/props/defaultProps.js +0 -4
  261. package/es/v1/NewStar/props/propTypes.js +0 -6
  262. package/es/v1/PlusIcon/PlusIcon.js +0 -32
  263. package/es/v1/PlusIcon/props/defaultProps.js +0 -8
  264. package/es/v1/PlusIcon/props/propTypes.js +0 -11
  265. package/es/v1/Separator/Separator.js +0 -53
  266. package/es/v1/Separator/props/defaultProps.js +0 -12
  267. package/es/v1/Separator/props/propTypes.js +0 -11
  268. package/es/v1/TagWithIcon/TagWithIcon.js +0 -39
  269. package/es/v1/TagWithIcon/props/defaultProps.js +0 -8
  270. package/es/v1/TagWithIcon/props/propTypes.js +0 -13
  271. package/es/v1/ToastMessage/ToastMessage.js +0 -201
  272. package/es/v1/ToastMessage/props/defaultProps.js +0 -18
  273. package/es/v1/ToastMessage/props/propTypes.js +0 -40
  274. package/es/v1/Upload/Upload.js +0 -69
  275. package/es/v1/Upload/props/defaultProps.js +0 -7
  276. package/es/v1/Upload/props/propTypes.js +0 -17
  277. package/es/v1/actions/AutoClose.js +0 -44
  278. package/es/v1/actions/props/defaultProps.js +0 -3
  279. package/es/v1/actions/props/propTypes.js +0 -8
  280. package/es/v1/alert/AlertClose/AlertClose.js +0 -43
  281. package/es/v1/alert/AlertClose/props/propTypes.js +0 -8
  282. package/es/v1/alert/AlertHeader/AlertHeader.js +0 -82
  283. package/es/v1/alert/AlertHeader/props/defaultProps.js +0 -12
  284. package/es/v1/alert/AlertHeader/props/propTypes.js +0 -20
  285. package/es/v1/alert/AlertLookup/AlertLookup.js +0 -166
  286. package/es/v1/alert/AlertLookup/props/defaultProps.js +0 -13
  287. package/es/v1/alert/AlertLookup/props/propTypes.js +0 -36
  288. package/es/v1/alert/alertIcons/AlarmAlertIcon.js +0 -65
  289. package/es/v1/alert/alertIcons/AlertIcons.js +0 -57
  290. package/es/v1/alert/alertIcons/DangerAlertIcon.js +0 -65
  291. package/es/v1/alert/alertIcons/ErrorAlertIcon.js +0 -70
  292. package/es/v1/alert/alertIcons/InfoAlertIcon.js +0 -74
  293. package/es/v1/alert/alertIcons/NotificationAlertIcon.js +0 -70
  294. package/es/v1/alert/alertIcons/SuccessAlertIcon.js +0 -65
  295. package/es/v1/alert/alertIcons/WarningAlertIcon.js +0 -65
  296. package/es/v1/alert/alertIcons/index.js +0 -8
  297. package/es/v1/alert/alertIcons/props/defaultProps.js +0 -27
  298. package/es/v1/alert/alertIcons/props/propTypes.js +0 -34
  299. package/es/v1/alert/index.js +0 -2
  300. package/es/v1/avatar/AvatarClose/AvatarClose.js +0 -47
  301. package/es/v1/avatar/AvatarClose/props/defaultProps.js +0 -7
  302. package/es/v1/avatar/AvatarClose/props/propTypes.js +0 -15
  303. package/es/v1/avatar/AvatarCollision/AvatarCollision.js +0 -51
  304. package/es/v1/avatar/AvatarCollision/props/defaultProps.js +0 -8
  305. package/es/v1/avatar/AvatarCollision/props/propTypes.js +0 -17
  306. package/es/v1/avatar/AvatarIcon/AvatarIcon.js +0 -48
  307. package/es/v1/avatar/AvatarIcon/props/defaultProps.js +0 -14
  308. package/es/v1/avatar/AvatarIcon/props/propTypes.js +0 -20
  309. package/es/v1/avatar/AvatarStatus/AvatarStatus.js +0 -59
  310. package/es/v1/avatar/AvatarStatus/props/defaultProps.js +0 -12
  311. package/es/v1/avatar/AvatarStatus/props/propTypes.js +0 -26
  312. package/es/v1/avatar/AvatarThread/AvatarThread.js +0 -72
  313. package/es/v1/avatar/AvatarThread/props/defaultProps.js +0 -9
  314. package/es/v1/avatar/AvatarThread/props/propTypes.js +0 -30
  315. package/es/v1/avatar/AvatarUser/AvatarUser.js +0 -110
  316. package/es/v1/avatar/AvatarUser/props/defaultProps.js +0 -8
  317. package/es/v1/avatar/AvatarUser/props/propTypes.js +0 -35
  318. package/es/v1/avatar/AvatarWithTeam/AvatarWithTeam.js +0 -94
  319. package/es/v1/avatar/AvatarWithTeam/props/defaultProps.js +0 -9
  320. package/es/v1/avatar/AvatarWithTeam/props/propTypes.js +0 -25
  321. package/es/v1/avatar/index.js +0 -7
  322. package/es/v1/dropdown/ToggleDropDown/ToggleDropDown.js +0 -880
  323. package/es/v1/dropdown/ToggleDropDown/props/defaultProps.js +0 -29
  324. package/es/v1/dropdown/ToggleDropDown/props/propTypes.js +0 -83
  325. package/es/v1/emptystate/CommonEmptyState/CommonEmptyState.js +0 -64
  326. package/es/v1/emptystate/CommonEmptyState/props/defaultProps.js +0 -10
  327. package/es/v1/emptystate/CommonEmptyState/props/propTypes.js +0 -21
  328. package/es/v1/emptystate/EditionPage/EditionPage.js +0 -51
  329. package/es/v1/emptystate/EditionPage/props/defaultProps.js +0 -5
  330. package/es/v1/emptystate/EditionPage/props/propTypes.js +0 -11
  331. package/es/v1/errorstate/Inconvenience/Inconvenience.js +0 -60
  332. package/es/v1/errorstate/Inconvenience/props/defaultProps.js +0 -8
  333. package/es/v1/errorstate/Inconvenience/props/propTypes.js +0 -16
  334. package/es/v1/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +0 -64
  335. package/es/v1/errorstate/OopsSomethingMiss/props/defaultProps.js +0 -8
  336. package/es/v1/errorstate/OopsSomethingMiss/props/propTypes.js +0 -16
  337. package/es/v1/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +0 -64
  338. package/es/v1/errorstate/UnableToProcessRequest/props/defaultProps.js +0 -8
  339. package/es/v1/errorstate/UnableToProcessRequest/props/propTypes.js +0 -16
  340. package/es/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +0 -65
  341. package/es/v1/errorstate/UnauthorizedLogin/props/defaultProps.js +0 -9
  342. package/es/v1/errorstate/UnauthorizedLogin/props/propTypes.js +0 -17
  343. package/es/v1/errorstate/UrlNotFound/UrlNotFound.js +0 -64
  344. package/es/v1/errorstate/UrlNotFound/props/defaultProps.js +0 -8
  345. package/es/v1/errorstate/UrlNotFound/props/propTypes.js +0 -16
  346. package/es/v1/errorstate/WillBeRightBack/WillBeRightBack.js +0 -64
  347. package/es/v1/errorstate/WillBeRightBack/props/defaultProps.js +0 -8
  348. package/es/v1/errorstate/WillBeRightBack/props/propTypes.js +0 -16
  349. package/es/v1/form/fields/CheckBoxField/CheckBoxField.js +0 -130
  350. package/es/v1/form/fields/CheckBoxField/props/defaultProps.js +0 -12
  351. package/es/v1/form/fields/CheckBoxField/props/propTypes.js +0 -29
  352. package/es/v1/form/fields/CurrencyField/CurrencyField.js +0 -160
  353. package/es/v1/form/fields/CurrencyField/props/defaultProps.js +0 -17
  354. package/es/v1/form/fields/CurrencyField/props/propTypes.js +0 -39
  355. package/es/v1/form/fields/DateField/DateField.js +0 -164
  356. package/es/v1/form/fields/DateField/props/defaultProps.js +0 -19
  357. package/es/v1/form/fields/DateField/props/propTypes.js +0 -39
  358. package/es/v1/form/fields/FieldContainer/FieldContainer.js +0 -66
  359. package/es/v1/form/fields/FieldContainer/props/defaultProps.js +0 -6
  360. package/es/v1/form/fields/FieldContainer/props/propTypes.js +0 -24
  361. package/es/v1/form/fields/MultiSelectField/MultiSelectField.js +0 -190
  362. package/es/v1/form/fields/MultiSelectField/props/defaultProps.js +0 -17
  363. package/es/v1/form/fields/MultiSelectField/props/propTypes.js +0 -50
  364. package/es/v1/form/fields/PhoneField/PhoneField.js +0 -161
  365. package/es/v1/form/fields/PhoneField/props/defaultProps.js +0 -16
  366. package/es/v1/form/fields/PhoneField/props/propTypes.js +0 -47
  367. package/es/v1/form/fields/RadioField/RadioField.js +0 -144
  368. package/es/v1/form/fields/RadioField/props/defaultProps.js +0 -13
  369. package/es/v1/form/fields/RadioField/props/propTypes.js +0 -33
  370. package/es/v1/form/fields/RadioField/useRadio.js +0 -44
  371. package/es/v1/form/fields/SelectField/SelectField.js +0 -160
  372. package/es/v1/form/fields/SelectField/props/defaultProps.js +0 -18
  373. package/es/v1/form/fields/SelectField/props/propTypes.js +0 -50
  374. package/es/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +0 -333
  375. package/es/v1/form/fields/TagsMultiSelect/props/defaultProps.js +0 -16
  376. package/es/v1/form/fields/TagsMultiSelect/props/propTypes.js +0 -57
  377. package/es/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +0 -276
  378. package/es/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +0 -23
  379. package/es/v1/form/fields/TagsMultiSelectField/props/propTypes.js +0 -71
  380. package/es/v1/form/fields/TextBoxField/TextBoxField.js +0 -144
  381. package/es/v1/form/fields/TextBoxField/props/defaultProps.js +0 -17
  382. package/es/v1/form/fields/TextBoxField/props/propTypes.js +0 -44
  383. package/es/v1/form/fields/TextEditor/TextEditor.js +0 -418
  384. package/es/v1/form/fields/TextEditor/props/defaultProps.js +0 -16
  385. package/es/v1/form/fields/TextEditor/props/propTypes.js +0 -53
  386. package/es/v1/form/fields/TextEditorField/TextEditorField.js +0 -159
  387. package/es/v1/form/fields/TextEditorField/props/defaultProps.js +0 -15
  388. package/es/v1/form/fields/TextEditorField/props/propTypes.js +0 -59
  389. package/es/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +0 -163
  390. package/es/v1/form/fields/TextEditorWrapper/props/defaultProps.js +0 -9
  391. package/es/v1/form/fields/TextEditorWrapper/props/propTypes.js +0 -40
  392. package/es/v1/form/fields/TextareaField/TextareaField.js +0 -140
  393. package/es/v1/form/fields/TextareaField/props/defaultProps.js +0 -15
  394. package/es/v1/form/fields/TextareaField/props/propTypes.js +0 -35
  395. package/es/v1/form/fields/ValidationMessage/ValidationMessage.js +0 -58
  396. package/es/v1/form/fields/ValidationMessage/props/defaultProps.js +0 -7
  397. package/es/v1/form/fields/ValidationMessage/props/propTypes.js +0 -16
  398. package/es/v1/form/fields/index.js +0 -16
  399. package/es/v1/form/fields/props/FieldCommonDefaultProps.js +0 -10
  400. package/es/v1/form/fields/props/FieldCommonPropTypes.js +0 -17
  401. package/es/v1/form/layout/Field/Field.js +0 -29
  402. package/es/v1/form/layout/Field/props/defaultProps.js +0 -4
  403. package/es/v1/form/layout/Field/props/propTypes.js +0 -10
  404. package/es/v1/form/layout/Section/Section.js +0 -30
  405. package/es/v1/form/layout/Section/props/propTypes.js +0 -11
  406. package/es/v1/form/layout/index.js +0 -2
  407. package/es/v1/layout/SetupDetailLayout/SetupDetailLayout.js +0 -174
  408. package/es/v1/layout/SetupDetailLayout/index.js +0 -4
  409. package/es/v1/layout/SetupDetailLayout/props/defaultProps.js +0 -20
  410. package/es/v1/layout/SetupDetailLayout/props/propTypes.js +0 -40
  411. package/es/v1/layout/SubtabLayout/SubtabLayout.js +0 -126
  412. package/es/v1/layout/SubtabLayout/index.js +0 -4
  413. package/es/v1/layout/SubtabLayout/props/defaultProps.js +0 -25
  414. package/es/v1/layout/SubtabLayout/props/propTypes.js +0 -40
  415. package/es/v1/list/AvatarFlip/AvatarFlip.js +0 -73
  416. package/es/v1/list/AvatarFlip/props/defaultProps.js +0 -6
  417. package/es/v1/list/AvatarFlip/props/propTypes.js +0 -29
  418. package/es/v1/list/BluePrintStatus/BluePrintStatus.js +0 -21
  419. package/es/v1/list/BluePrintStatus/props/propTypes.js +0 -4
  420. package/es/v1/list/Comment/Comment.js +0 -35
  421. package/es/v1/list/Comment/props/defaultProps.js +0 -4
  422. package/es/v1/list/Comment/props/propTypes.js +0 -7
  423. package/es/v1/list/DepartmentDropDown/DepartmentDropDown.js +0 -85
  424. package/es/v1/list/DepartmentDropDown/props/defaultProps.js +0 -7
  425. package/es/v1/list/DepartmentDropDown/props/propTypes.js +0 -24
  426. package/es/v1/list/Dot/Dot.js +0 -15
  427. package/es/v1/list/Dot/props/defaultProps.js +0 -4
  428. package/es/v1/list/Dot/props/propTypes.js +0 -5
  429. package/es/v1/list/DotNew/DotNew.js +0 -22
  430. package/es/v1/list/DotNew/props/defaultProps.js +0 -3
  431. package/es/v1/list/DotNew/props/propTypes.js +0 -6
  432. package/es/v1/list/GridStencils/GridStencils.js +0 -31
  433. package/es/v1/list/GridStencils/props/propTypes.js +0 -8
  434. package/es/v1/list/Icons/AddNewIcon.js +0 -25
  435. package/es/v1/list/Icons/CompleteIcon.js +0 -27
  436. package/es/v1/list/Icons/DeleteIcon.js +0 -28
  437. package/es/v1/list/Icons/EditIcon.js +0 -28
  438. package/es/v1/list/Icons/FloatingIcons.js +0 -23
  439. package/es/v1/list/Icons/ReadUnreadIcon.js +0 -32
  440. package/es/v1/list/Icons/SmartIcon.js +0 -25
  441. package/es/v1/list/Icons/index.js +0 -7
  442. package/es/v1/list/Icons/props/defaultProps.js +0 -6
  443. package/es/v1/list/Icons/props/propTypes.js +0 -53
  444. package/es/v1/list/ListLayout/ListLayout.js +0 -68
  445. package/es/v1/list/ListLayout/props/defaultProps.js +0 -11
  446. package/es/v1/list/ListLayout/props/propTypes.js +0 -27
  447. package/es/v1/list/ListStencils/ListStencils.js +0 -44
  448. package/es/v1/list/ListStencils/props/defaultProps.js +0 -3
  449. package/es/v1/list/ListStencils/props/propTypes.js +0 -4
  450. package/es/v1/list/SecondaryText/AccountName.js +0 -77
  451. package/es/v1/list/SecondaryText/ContactName.js +0 -76
  452. package/es/v1/list/SecondaryText/DepartmentText.js +0 -18
  453. package/es/v1/list/SecondaryText/Email.js +0 -47
  454. package/es/v1/list/SecondaryText/HappinessRating.js +0 -23
  455. package/es/v1/list/SecondaryText/PhoneNumber.js +0 -51
  456. package/es/v1/list/SecondaryText/PriorityText.js +0 -21
  457. package/es/v1/list/SecondaryText/SecondaryText.js +0 -27
  458. package/es/v1/list/SecondaryText/StatusText.js +0 -22
  459. package/es/v1/list/SecondaryText/TicketId.js +0 -41
  460. package/es/v1/list/SecondaryText/Website.js +0 -35
  461. package/es/v1/list/SecondaryText/index.js +0 -11
  462. package/es/v1/list/SecondaryText/props/defaultProps.js +0 -44
  463. package/es/v1/list/SecondaryText/props/propTypes.js +0 -142
  464. package/es/v1/list/SecondryPanel/SecondryPanel.js +0 -87
  465. package/es/v1/list/SecondryPanel/props/defaultProps.js +0 -18
  466. package/es/v1/list/SecondryPanel/props/propTypes.js +0 -27
  467. package/es/v1/list/SentimentStatus/SentimentStatus.js +0 -23
  468. package/es/v1/list/SentimentStatus/props/propTypes.js +0 -5
  469. package/es/v1/list/Subject/Subject.js +0 -52
  470. package/es/v1/list/Subject/props/defaultProps.js +0 -8
  471. package/es/v1/list/Subject/props/propTypes.js +0 -20
  472. package/es/v1/list/TagNew/TagNew.js +0 -24
  473. package/es/v1/list/TagNew/props/defaultProps.js +0 -4
  474. package/es/v1/list/TagNew/props/propTypes.js +0 -8
  475. package/es/v1/list/Thread/Thread.js +0 -33
  476. package/es/v1/list/Thread/props/defaultProps.js +0 -4
  477. package/es/v1/list/Thread/props/propTypes.js +0 -8
  478. package/es/v1/list/index.js +0 -16
  479. package/es/v1/list/status/StatusDropdown/StatusDropdown.js +0 -307
  480. package/es/v1/list/status/StatusDropdown/props/defaultProps.js +0 -22
  481. package/es/v1/list/status/StatusDropdown/props/propTypes.js +0 -60
  482. package/es/v1/list/status/StatusListItem/StatusListItem.js +0 -108
  483. package/es/v1/list/status/StatusListItem/props/defaultProps.js +0 -16
  484. package/es/v1/list/status/StatusListItem/props/propTypes.js +0 -31
  485. package/es/v1/list/status/index.js +0 -2
  486. package/es/v1/lookup/EmptyPage/EmptyPage.js +0 -54
  487. package/es/v1/lookup/EmptyPage/props/defaultProps.js +0 -4
  488. package/es/v1/lookup/EmptyPage/props/propTypes.js +0 -5
  489. package/es/v1/lookup/Lookup/Lookup.js +0 -116
  490. package/es/v1/lookup/Lookup/props/defaultProps.js +0 -9
  491. package/es/v1/lookup/Lookup/props/propTypes.js +0 -24
  492. package/es/v1/lookup/Section/Section.js +0 -18
  493. package/es/v1/lookup/Section/props/propTypes.js +0 -6
  494. package/es/v1/lookup/header/Close/Close.js +0 -30
  495. package/es/v1/lookup/header/Close/props/defaultProps.js +0 -3
  496. package/es/v1/lookup/header/Close/props/propTypes.js +0 -6
  497. package/es/v1/lookup/header/ModuleHeader/ModuleHeader.js +0 -89
  498. package/es/v1/lookup/header/ModuleHeader/props/defaultProps.js +0 -9
  499. package/es/v1/lookup/header/ModuleHeader/props/propTypes.js +0 -20
  500. package/es/v1/lookup/header/Search/Search.js +0 -179
  501. package/es/v1/lookup/header/Search/props/defaultProps.js +0 -5
  502. package/es/v1/lookup/header/Search/props/propTypes.js +0 -28
  503. package/es/v1/lookup/header/TicketHeader/TicketHeader.js +0 -108
  504. package/es/v1/lookup/header/TicketHeader/props/defaultProps.js +0 -10
  505. package/es/v1/lookup/header/TicketHeader/props/propTypes.js +0 -21
  506. package/es/v1/lookup/header/Title/Title.js +0 -27
  507. package/es/v1/lookup/header/Title/props/defaultProps.js +0 -3
  508. package/es/v1/lookup/header/Title/props/propTypes.js +0 -6
  509. package/es/v1/lookup/header/ViewDropDown/ViewDropDown.js +0 -194
  510. package/es/v1/lookup/header/ViewDropDown/props/defaultProps.js +0 -10
  511. package/es/v1/lookup/header/ViewDropDown/props/propTypes.js +0 -27
  512. package/es/v1/lookup/header/index.js +0 -5
  513. package/es/v1/notification/DesktopNotification/DesktopNotification.js +0 -190
  514. package/es/v1/notification/DesktopNotification/props/defaultProps.js +0 -17
  515. package/es/v1/notification/DesktopNotification/props/propTypes.js +0 -43
  516. package/es/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +0 -91
  517. package/es/v1/notification/DesktopNotificationHeader/props/defaultProps.js +0 -7
  518. package/es/v1/notification/DesktopNotificationHeader/props/propTypes.js +0 -13
  519. package/es/v1/setup/header/Button/Button.js +0 -24
  520. package/es/v1/setup/header/Button/props/defaultProps.js +0 -4
  521. package/es/v1/setup/header/Button/props/propTypes.js +0 -7
  522. package/es/v1/setup/header/Link/Link.js +0 -32
  523. package/es/v1/setup/header/Link/props/defaultProps.js +0 -4
  524. package/es/v1/setup/header/Link/props/propTypes.js +0 -8
  525. package/es/v1/setup/header/Search/Search.js +0 -60
  526. package/es/v1/setup/header/Search/props/defaultProps.js +0 -6
  527. package/es/v1/setup/header/Search/props/propTypes.js +0 -12
  528. package/es/v1/setup/header/Views/Views.js +0 -34
  529. package/es/v1/setup/header/Views/props/defaultProps.js +0 -6
  530. package/es/v1/setup/header/Views/props/propTypes.js +0 -9
  531. package/es/v1/setup/header/index.js +0 -4
  532. package/es/v1/setup/helptips/Description/Description.js +0 -12
  533. package/es/v1/setup/helptips/Description/props/propTypes.js +0 -4
  534. package/es/v1/setup/helptips/Link/Link.js +0 -29
  535. package/es/v1/setup/helptips/Link/props/propTypes.js +0 -7
  536. package/es/v1/setup/helptips/ListGroup/ListGroup.js +0 -27
  537. package/es/v1/setup/helptips/ListGroup/props/propTypes.js +0 -5
  538. package/es/v1/setup/helptips/Title/Title.js +0 -12
  539. package/es/v1/setup/helptips/Title/props/propTypes.js +0 -4
  540. package/es/v1/setup/helptips/index.js +0 -4
  541. package/es/v1/setup/index.js +0 -6
  542. package/es/v1/setup/table/Table/Table.js +0 -22
  543. package/es/v1/setup/table/Table/props/defaultProps.js +0 -4
  544. package/es/v1/setup/table/Table/props/propTypes.js +0 -6
  545. package/es/v1/setup/table/TableBody/TableBody.js +0 -26
  546. package/es/v1/setup/table/TableBody/props/defaultProps.js +0 -3
  547. package/es/v1/setup/table/TableBody/props/propTypes.js +0 -7
  548. package/es/v1/setup/table/TableData/TableData.js +0 -31
  549. package/es/v1/setup/table/TableData/props/defaultProps.js +0 -5
  550. package/es/v1/setup/table/TableData/props/propTypes.js +0 -11
  551. package/es/v1/setup/table/TableHead/TableHead.js +0 -31
  552. package/es/v1/setup/table/TableHead/props/defaultProps.js +0 -4
  553. package/es/v1/setup/table/TableHead/props/propTypes.js +0 -8
  554. package/es/v1/setup/table/TableRow/TableRow.js +0 -36
  555. package/es/v1/setup/table/TableRow/props/defaultProps.js +0 -4
  556. package/es/v1/setup/table/TableRow/props/propTypes.js +0 -11
  557. package/es/v1/setup/table/Text/Text.js +0 -50
  558. package/es/v1/setup/table/Text/props/defaultProps.js +0 -7
  559. package/es/v1/setup/table/Text/props/propTypes.js +0 -13
  560. package/es/v1/setup/table/index.js +0 -5
  561. package/es/v1/svg/PlusIcon.js +0 -25
  562. package/es/v1/svg/SnippetIcon.js +0 -27
  563. package/es/v1/svg/TemplateIcon.js +0 -28
  564. package/es/v1/svg/index.js +0 -3
  565. package/es/v1/svg/props/defaultProps.js +0 -15
  566. package/es/v1/svg/props/propTypes.js +0 -16
  567. package/es/v1/utils/ChannelIconMapping.js +0 -129
  568. package/es/v1/utils/General.js +0 -45
  569. package/es/v1/utils/editorUtils.js +0 -193
  570. package/lib/v1/ActionButton/ActionButton.js +0 -173
  571. package/lib/v1/ActionButton/props/defaultProps.js +0 -26
  572. package/lib/v1/ActionButton/props/propTypes.js +0 -48
  573. package/lib/v1/AlphabeticList/AlphabeticList.js +0 -113
  574. package/lib/v1/AlphabeticList/props/defaultProps.js +0 -20
  575. package/lib/v1/AlphabeticList/props/propTypes.js +0 -50
  576. package/lib/v1/Attachment/Attachment.js +0 -110
  577. package/lib/v1/Attachment/props/defaultProps.js +0 -15
  578. package/lib/v1/Attachment/props/propTypes.js +0 -29
  579. package/lib/v1/AttachmentViewer/AttachmentImage.js +0 -117
  580. package/lib/v1/AttachmentViewer/AttachmentViewer.js +0 -713
  581. package/lib/v1/AttachmentViewer/props/defaultProps.js +0 -19
  582. package/lib/v1/AttachmentViewer/props/propTypes.js +0 -48
  583. package/lib/v1/ChannelIcon/ChannelIcon.js +0 -114
  584. package/lib/v1/ChannelIcon/props/defaultProps.js +0 -14
  585. package/lib/v1/ChannelIcon/props/propTypes.js +0 -36
  586. package/lib/v1/Drawer/Drawer.js +0 -302
  587. package/lib/v1/Drawer/props/defaultProps.js +0 -32
  588. package/lib/v1/Drawer/props/propTypes.js +0 -67
  589. package/lib/v1/ExternalLink/ExternalLink.js +0 -57
  590. package/lib/v1/ExternalLink/props/defaultProps.js +0 -12
  591. package/lib/v1/ExternalLink/props/propTypes.js +0 -23
  592. package/lib/v1/FlipCard/FlipCard.js +0 -149
  593. package/lib/v1/FlipCard/props/defaultProps.js +0 -12
  594. package/lib/v1/FlipCard/props/propTypes.js +0 -48
  595. package/lib/v1/FormAction/FormAction.js +0 -102
  596. package/lib/v1/FormAction/props/defaultProps.js +0 -12
  597. package/lib/v1/FormAction/props/propTypes.js +0 -19
  598. package/lib/v1/FreezeLayer/FreezeLayer.js +0 -94
  599. package/lib/v1/FreezeLayer/props/defaultProps.js +0 -16
  600. package/lib/v1/FreezeLayer/props/propTypes.js +0 -31
  601. package/lib/v1/GlobalNotification/GlobalNotification.js +0 -187
  602. package/lib/v1/GlobalNotification/props/defaultProps.js +0 -13
  603. package/lib/v1/GlobalNotification/props/propTypes.js +0 -58
  604. package/lib/v1/IconButton/IconButton.js +0 -149
  605. package/lib/v1/IconButton/props/defaultProps.js +0 -24
  606. package/lib/v1/IconButton/props/propTypes.js +0 -43
  607. package/lib/v1/Image/Image.js +0 -48
  608. package/lib/v1/Image/props/defaultProps.js +0 -11
  609. package/lib/v1/Image/props/propTypes.js +0 -26
  610. package/lib/v1/ImportantNotes/ImportantNotes.js +0 -55
  611. package/lib/v1/ImportantNotes/props/defaultProps.js +0 -13
  612. package/lib/v1/ImportantNotes/props/propTypes.js +0 -21
  613. package/lib/v1/Link/Link.js +0 -116
  614. package/lib/v1/Link/props/defaultProps.js +0 -12
  615. package/lib/v1/Link/props/propTypes.js +0 -29
  616. package/lib/v1/Loader/Loader.js +0 -27
  617. package/lib/v1/Message/Message.js +0 -113
  618. package/lib/v1/Message/props/defaultProps.js +0 -11
  619. package/lib/v1/Message/props/propTypes.js +0 -41
  620. package/lib/v1/MessageBanner/MessageBanner.js +0 -75
  621. package/lib/v1/MessageBanner/props/defaultProps.js +0 -14
  622. package/lib/v1/MessageBanner/props/propTypes.js +0 -24
  623. package/lib/v1/NewStar/NewStar.js +0 -74
  624. package/lib/v1/NewStar/props/defaultProps.js +0 -11
  625. package/lib/v1/NewStar/props/propTypes.js +0 -17
  626. package/lib/v1/PlusIcon/PlusIcon.js +0 -45
  627. package/lib/v1/PlusIcon/props/defaultProps.js +0 -15
  628. package/lib/v1/PlusIcon/props/propTypes.js +0 -22
  629. package/lib/v1/Separator/Separator.js +0 -66
  630. package/lib/v1/Separator/props/defaultProps.js +0 -19
  631. package/lib/v1/Separator/props/propTypes.js +0 -22
  632. package/lib/v1/TagWithIcon/TagWithIcon.js +0 -53
  633. package/lib/v1/TagWithIcon/props/defaultProps.js +0 -15
  634. package/lib/v1/TagWithIcon/props/propTypes.js +0 -24
  635. package/lib/v1/ToastMessage/ToastMessage.js +0 -246
  636. package/lib/v1/ToastMessage/props/defaultProps.js +0 -25
  637. package/lib/v1/ToastMessage/props/propTypes.js +0 -51
  638. package/lib/v1/Upload/Upload.js +0 -83
  639. package/lib/v1/Upload/props/defaultProps.js +0 -14
  640. package/lib/v1/Upload/props/propTypes.js +0 -28
  641. package/lib/v1/actions/AutoClose.js +0 -75
  642. package/lib/v1/actions/props/defaultProps.js +0 -10
  643. package/lib/v1/actions/props/propTypes.js +0 -19
  644. package/lib/v1/alert/AlertClose/AlertClose.js +0 -62
  645. package/lib/v1/alert/AlertClose/props/propTypes.js +0 -19
  646. package/lib/v1/alert/AlertHeader/AlertHeader.js +0 -107
  647. package/lib/v1/alert/AlertHeader/props/defaultProps.js +0 -19
  648. package/lib/v1/alert/AlertHeader/props/propTypes.js +0 -31
  649. package/lib/v1/alert/AlertLookup/AlertLookup.js +0 -187
  650. package/lib/v1/alert/AlertLookup/props/defaultProps.js +0 -20
  651. package/lib/v1/alert/AlertLookup/props/propTypes.js +0 -47
  652. package/lib/v1/alert/alertIcons/AlarmAlertIcon.js +0 -77
  653. package/lib/v1/alert/alertIcons/AlertIcons.js +0 -78
  654. package/lib/v1/alert/alertIcons/DangerAlertIcon.js +0 -77
  655. package/lib/v1/alert/alertIcons/ErrorAlertIcon.js +0 -82
  656. package/lib/v1/alert/alertIcons/InfoAlertIcon.js +0 -86
  657. package/lib/v1/alert/alertIcons/NotificationAlertIcon.js +0 -82
  658. package/lib/v1/alert/alertIcons/SuccessAlertIcon.js +0 -77
  659. package/lib/v1/alert/alertIcons/WarningAlertIcon.js +0 -77
  660. package/lib/v1/alert/alertIcons/index.js +0 -71
  661. package/lib/v1/alert/alertIcons/props/defaultProps.js +0 -41
  662. package/lib/v1/alert/alertIcons/props/propTypes.js +0 -52
  663. package/lib/v1/alert/index.js +0 -23
  664. package/lib/v1/avatar/AvatarClose/AvatarClose.js +0 -61
  665. package/lib/v1/avatar/AvatarClose/props/defaultProps.js +0 -14
  666. package/lib/v1/avatar/AvatarClose/props/propTypes.js +0 -26
  667. package/lib/v1/avatar/AvatarCollision/AvatarCollision.js +0 -65
  668. package/lib/v1/avatar/AvatarCollision/props/defaultProps.js +0 -15
  669. package/lib/v1/avatar/AvatarCollision/props/propTypes.js +0 -28
  670. package/lib/v1/avatar/AvatarIcon/AvatarIcon.js +0 -63
  671. package/lib/v1/avatar/AvatarIcon/props/defaultProps.js +0 -21
  672. package/lib/v1/avatar/AvatarIcon/props/propTypes.js +0 -31
  673. package/lib/v1/avatar/AvatarStatus/AvatarStatus.js +0 -73
  674. package/lib/v1/avatar/AvatarStatus/props/defaultProps.js +0 -19
  675. package/lib/v1/avatar/AvatarStatus/props/propTypes.js +0 -35
  676. package/lib/v1/avatar/AvatarThread/AvatarThread.js +0 -85
  677. package/lib/v1/avatar/AvatarThread/props/defaultProps.js +0 -16
  678. package/lib/v1/avatar/AvatarThread/props/propTypes.js +0 -41
  679. package/lib/v1/avatar/AvatarUser/AvatarUser.js +0 -122
  680. package/lib/v1/avatar/AvatarUser/props/defaultProps.js +0 -15
  681. package/lib/v1/avatar/AvatarUser/props/propTypes.js +0 -46
  682. package/lib/v1/avatar/AvatarWithTeam/AvatarWithTeam.js +0 -109
  683. package/lib/v1/avatar/AvatarWithTeam/props/defaultProps.js +0 -16
  684. package/lib/v1/avatar/AvatarWithTeam/props/propTypes.js +0 -36
  685. package/lib/v1/avatar/index.js +0 -63
  686. package/lib/v1/dropdown/ToggleDropDown/ToggleDropDown.js +0 -946
  687. package/lib/v1/dropdown/ToggleDropDown/props/defaultProps.js +0 -36
  688. package/lib/v1/dropdown/ToggleDropDown/props/propTypes.js +0 -94
  689. package/lib/v1/emptystate/CommonEmptyState/CommonEmptyState.js +0 -77
  690. package/lib/v1/emptystate/CommonEmptyState/props/defaultProps.js +0 -17
  691. package/lib/v1/emptystate/CommonEmptyState/props/propTypes.js +0 -32
  692. package/lib/v1/emptystate/EditionPage/EditionPage.js +0 -64
  693. package/lib/v1/emptystate/EditionPage/props/defaultProps.js +0 -12
  694. package/lib/v1/emptystate/EditionPage/props/propTypes.js +0 -22
  695. package/lib/v1/errorstate/Inconvenience/Inconvenience.js +0 -76
  696. package/lib/v1/errorstate/Inconvenience/props/defaultProps.js +0 -15
  697. package/lib/v1/errorstate/Inconvenience/props/propTypes.js +0 -27
  698. package/lib/v1/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +0 -80
  699. package/lib/v1/errorstate/OopsSomethingMiss/props/defaultProps.js +0 -15
  700. package/lib/v1/errorstate/OopsSomethingMiss/props/propTypes.js +0 -27
  701. package/lib/v1/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +0 -80
  702. package/lib/v1/errorstate/UnableToProcessRequest/props/defaultProps.js +0 -15
  703. package/lib/v1/errorstate/UnableToProcessRequest/props/propTypes.js +0 -27
  704. package/lib/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +0 -81
  705. package/lib/v1/errorstate/UnauthorizedLogin/props/defaultProps.js +0 -16
  706. package/lib/v1/errorstate/UnauthorizedLogin/props/propTypes.js +0 -28
  707. package/lib/v1/errorstate/UrlNotFound/UrlNotFound.js +0 -80
  708. package/lib/v1/errorstate/UrlNotFound/props/defaultProps.js +0 -15
  709. package/lib/v1/errorstate/UrlNotFound/props/propTypes.js +0 -27
  710. package/lib/v1/errorstate/WillBeRightBack/WillBeRightBack.js +0 -80
  711. package/lib/v1/errorstate/WillBeRightBack/props/defaultProps.js +0 -15
  712. package/lib/v1/errorstate/WillBeRightBack/props/propTypes.js +0 -27
  713. package/lib/v1/form/fields/CheckBoxField/CheckBoxField.js +0 -148
  714. package/lib/v1/form/fields/CheckBoxField/props/defaultProps.js +0 -27
  715. package/lib/v1/form/fields/CheckBoxField/props/propTypes.js +0 -47
  716. package/lib/v1/form/fields/CurrencyField/CurrencyField.js +0 -194
  717. package/lib/v1/form/fields/CurrencyField/props/defaultProps.js +0 -32
  718. package/lib/v1/form/fields/CurrencyField/props/propTypes.js +0 -57
  719. package/lib/v1/form/fields/DateField/DateField.js +0 -183
  720. package/lib/v1/form/fields/DateField/props/defaultProps.js +0 -34
  721. package/lib/v1/form/fields/DateField/props/propTypes.js +0 -57
  722. package/lib/v1/form/fields/FieldContainer/FieldContainer.js +0 -87
  723. package/lib/v1/form/fields/FieldContainer/props/defaultProps.js +0 -22
  724. package/lib/v1/form/fields/FieldContainer/props/propTypes.js +0 -35
  725. package/lib/v1/form/fields/MultiSelectField/MultiSelectField.js +0 -208
  726. package/lib/v1/form/fields/MultiSelectField/props/defaultProps.js +0 -32
  727. package/lib/v1/form/fields/MultiSelectField/props/propTypes.js +0 -68
  728. package/lib/v1/form/fields/PhoneField/PhoneField.js +0 -193
  729. package/lib/v1/form/fields/PhoneField/props/defaultProps.js +0 -23
  730. package/lib/v1/form/fields/PhoneField/props/propTypes.js +0 -58
  731. package/lib/v1/form/fields/RadioField/RadioField.js +0 -164
  732. package/lib/v1/form/fields/RadioField/props/defaultProps.js +0 -20
  733. package/lib/v1/form/fields/RadioField/props/propTypes.js +0 -44
  734. package/lib/v1/form/fields/RadioField/useRadio.js +0 -50
  735. package/lib/v1/form/fields/SelectField/SelectField.js +0 -179
  736. package/lib/v1/form/fields/SelectField/props/defaultProps.js +0 -33
  737. package/lib/v1/form/fields/SelectField/props/propTypes.js +0 -68
  738. package/lib/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +0 -387
  739. package/lib/v1/form/fields/TagsMultiSelect/props/defaultProps.js +0 -23
  740. package/lib/v1/form/fields/TagsMultiSelect/props/propTypes.js +0 -68
  741. package/lib/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +0 -317
  742. package/lib/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +0 -38
  743. package/lib/v1/form/fields/TagsMultiSelectField/props/propTypes.js +0 -83
  744. package/lib/v1/form/fields/TextBoxField/TextBoxField.js +0 -163
  745. package/lib/v1/form/fields/TextBoxField/props/defaultProps.js +0 -32
  746. package/lib/v1/form/fields/TextBoxField/props/propTypes.js +0 -62
  747. package/lib/v1/form/fields/TextEditor/TextEditor.js +0 -462
  748. package/lib/v1/form/fields/TextEditor/props/defaultProps.js +0 -23
  749. package/lib/v1/form/fields/TextEditor/props/propTypes.js +0 -64
  750. package/lib/v1/form/fields/TextEditorField/TextEditorField.js +0 -175
  751. package/lib/v1/form/fields/TextEditorField/props/defaultProps.js +0 -30
  752. package/lib/v1/form/fields/TextEditorField/props/propTypes.js +0 -67
  753. package/lib/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +0 -204
  754. package/lib/v1/form/fields/TextEditorWrapper/props/defaultProps.js +0 -16
  755. package/lib/v1/form/fields/TextEditorWrapper/props/propTypes.js +0 -51
  756. package/lib/v1/form/fields/TextareaField/TextareaField.js +0 -157
  757. package/lib/v1/form/fields/TextareaField/props/defaultProps.js +0 -30
  758. package/lib/v1/form/fields/TextareaField/props/propTypes.js +0 -53
  759. package/lib/v1/form/fields/ValidationMessage/ValidationMessage.js +0 -71
  760. package/lib/v1/form/fields/ValidationMessage/props/defaultProps.js +0 -14
  761. package/lib/v1/form/fields/ValidationMessage/props/propTypes.js +0 -27
  762. package/lib/v1/form/fields/index.js +0 -135
  763. package/lib/v1/form/fields/props/FieldCommonDefaultProps.js +0 -19
  764. package/lib/v1/form/fields/props/FieldCommonPropTypes.js +0 -28
  765. package/lib/v1/form/layout/Field/Field.js +0 -40
  766. package/lib/v1/form/layout/Field/props/defaultProps.js +0 -11
  767. package/lib/v1/form/layout/Field/props/propTypes.js +0 -21
  768. package/lib/v1/form/layout/Section/Section.js +0 -40
  769. package/lib/v1/form/layout/Section/props/propTypes.js +0 -22
  770. package/lib/v1/form/layout/index.js +0 -23
  771. package/lib/v1/layout/SetupDetailLayout/SetupDetailLayout.js +0 -212
  772. package/lib/v1/layout/SetupDetailLayout/index.js +0 -37
  773. package/lib/v1/layout/SetupDetailLayout/props/defaultProps.js +0 -30
  774. package/lib/v1/layout/SetupDetailLayout/props/propTypes.js +0 -54
  775. package/lib/v1/layout/SubtabLayout/SubtabLayout.js +0 -146
  776. package/lib/v1/layout/SubtabLayout/index.js +0 -37
  777. package/lib/v1/layout/SubtabLayout/props/defaultProps.js +0 -35
  778. package/lib/v1/layout/SubtabLayout/props/propTypes.js +0 -54
  779. package/lib/v1/list/AvatarFlip/AvatarFlip.js +0 -86
  780. package/lib/v1/list/AvatarFlip/props/defaultProps.js +0 -13
  781. package/lib/v1/list/AvatarFlip/props/propTypes.js +0 -40
  782. package/lib/v1/list/BluePrintStatus/BluePrintStatus.js +0 -33
  783. package/lib/v1/list/BluePrintStatus/props/propTypes.js +0 -15
  784. package/lib/v1/list/Comment/Comment.js +0 -49
  785. package/lib/v1/list/Comment/props/defaultProps.js +0 -11
  786. package/lib/v1/list/Comment/props/propTypes.js +0 -18
  787. package/lib/v1/list/DepartmentDropDown/DepartmentDropDown.js +0 -102
  788. package/lib/v1/list/DepartmentDropDown/props/defaultProps.js +0 -14
  789. package/lib/v1/list/DepartmentDropDown/props/propTypes.js +0 -35
  790. package/lib/v1/list/Dot/Dot.js +0 -27
  791. package/lib/v1/list/Dot/props/defaultProps.js +0 -11
  792. package/lib/v1/list/Dot/props/propTypes.js +0 -16
  793. package/lib/v1/list/DotNew/DotNew.js +0 -34
  794. package/lib/v1/list/DotNew/props/defaultProps.js +0 -10
  795. package/lib/v1/list/DotNew/props/propTypes.js +0 -17
  796. package/lib/v1/list/GridStencils/GridStencils.js +0 -42
  797. package/lib/v1/list/GridStencils/props/propTypes.js +0 -19
  798. package/lib/v1/list/Icons/AddNewIcon.js +0 -38
  799. package/lib/v1/list/Icons/CompleteIcon.js +0 -40
  800. package/lib/v1/list/Icons/DeleteIcon.js +0 -41
  801. package/lib/v1/list/Icons/EditIcon.js +0 -41
  802. package/lib/v1/list/Icons/FloatingIcons.js +0 -42
  803. package/lib/v1/list/Icons/ReadUnreadIcon.js +0 -46
  804. package/lib/v1/list/Icons/SmartIcon.js +0 -38
  805. package/lib/v1/list/Icons/index.js +0 -63
  806. package/lib/v1/list/Icons/props/defaultProps.js +0 -14
  807. package/lib/v1/list/Icons/props/propTypes.js +0 -70
  808. package/lib/v1/list/ListLayout/ListLayout.js +0 -82
  809. package/lib/v1/list/ListLayout/props/defaultProps.js +0 -18
  810. package/lib/v1/list/ListLayout/props/propTypes.js +0 -39
  811. package/lib/v1/list/ListStencils/ListStencils.js +0 -57
  812. package/lib/v1/list/ListStencils/props/defaultProps.js +0 -10
  813. package/lib/v1/list/ListStencils/props/propTypes.js +0 -15
  814. package/lib/v1/list/SecondaryText/AccountName.js +0 -86
  815. package/lib/v1/list/SecondaryText/ContactName.js +0 -94
  816. package/lib/v1/list/SecondaryText/DepartmentText.js +0 -29
  817. package/lib/v1/list/SecondaryText/Email.js +0 -53
  818. package/lib/v1/list/SecondaryText/HappinessRating.js +0 -34
  819. package/lib/v1/list/SecondaryText/PhoneNumber.js +0 -57
  820. package/lib/v1/list/SecondaryText/PriorityText.js +0 -33
  821. package/lib/v1/list/SecondaryText/SecondaryText.js +0 -38
  822. package/lib/v1/list/SecondaryText/StatusText.js +0 -34
  823. package/lib/v1/list/SecondaryText/TicketId.js +0 -54
  824. package/lib/v1/list/SecondaryText/Website.js +0 -48
  825. package/lib/v1/list/SecondaryText/index.js +0 -95
  826. package/lib/v1/list/SecondaryText/props/defaultProps.js +0 -59
  827. package/lib/v1/list/SecondaryText/props/propTypes.js +0 -163
  828. package/lib/v1/list/SecondryPanel/SecondryPanel.js +0 -104
  829. package/lib/v1/list/SecondryPanel/props/defaultProps.js +0 -28
  830. package/lib/v1/list/SecondryPanel/props/propTypes.js +0 -41
  831. package/lib/v1/list/SentimentStatus/SentimentStatus.js +0 -35
  832. package/lib/v1/list/SentimentStatus/props/propTypes.js +0 -16
  833. package/lib/v1/list/Subject/Subject.js +0 -65
  834. package/lib/v1/list/Subject/props/defaultProps.js +0 -15
  835. package/lib/v1/list/Subject/props/propTypes.js +0 -31
  836. package/lib/v1/list/TagNew/TagNew.js +0 -35
  837. package/lib/v1/list/TagNew/props/defaultProps.js +0 -11
  838. package/lib/v1/list/TagNew/props/propTypes.js +0 -19
  839. package/lib/v1/list/Thread/Thread.js +0 -46
  840. package/lib/v1/list/Thread/props/defaultProps.js +0 -11
  841. package/lib/v1/list/Thread/props/propTypes.js +0 -19
  842. package/lib/v1/list/index.js +0 -165
  843. package/lib/v1/list/status/StatusDropdown/StatusDropdown.js +0 -363
  844. package/lib/v1/list/status/StatusDropdown/props/defaultProps.js +0 -29
  845. package/lib/v1/list/status/StatusDropdown/props/propTypes.js +0 -34
  846. package/lib/v1/list/status/StatusListItem/StatusListItem.js +0 -124
  847. package/lib/v1/list/status/StatusListItem/props/defaultProps.js +0 -23
  848. package/lib/v1/list/status/StatusListItem/props/propTypes.js +0 -42
  849. package/lib/v1/list/status/index.js +0 -23
  850. package/lib/v1/lookup/EmptyPage/EmptyPage.js +0 -70
  851. package/lib/v1/lookup/EmptyPage/props/defaultProps.js +0 -11
  852. package/lib/v1/lookup/EmptyPage/props/propTypes.js +0 -16
  853. package/lib/v1/lookup/Lookup/Lookup.js +0 -145
  854. package/lib/v1/lookup/Lookup/props/defaultProps.js +0 -16
  855. package/lib/v1/lookup/Lookup/props/propTypes.js +0 -35
  856. package/lib/v1/lookup/Section/Section.js +0 -30
  857. package/lib/v1/lookup/Section/props/propTypes.js +0 -17
  858. package/lib/v1/lookup/header/Close/Close.js +0 -47
  859. package/lib/v1/lookup/header/Close/props/defaultProps.js +0 -10
  860. package/lib/v1/lookup/header/Close/props/propTypes.js +0 -17
  861. package/lib/v1/lookup/header/ModuleHeader/ModuleHeader.js +0 -116
  862. package/lib/v1/lookup/header/ModuleHeader/props/defaultProps.js +0 -16
  863. package/lib/v1/lookup/header/ModuleHeader/props/propTypes.js +0 -31
  864. package/lib/v1/lookup/header/Search/Search.js +0 -208
  865. package/lib/v1/lookup/header/Search/props/defaultProps.js +0 -12
  866. package/lib/v1/lookup/header/Search/props/propTypes.js +0 -40
  867. package/lib/v1/lookup/header/TicketHeader/TicketHeader.js +0 -133
  868. package/lib/v1/lookup/header/TicketHeader/props/defaultProps.js +0 -17
  869. package/lib/v1/lookup/header/TicketHeader/props/propTypes.js +0 -32
  870. package/lib/v1/lookup/header/Title/Title.js +0 -44
  871. package/lib/v1/lookup/header/Title/props/defaultProps.js +0 -10
  872. package/lib/v1/lookup/header/Title/props/propTypes.js +0 -17
  873. package/lib/v1/lookup/header/ViewDropDown/ViewDropDown.js +0 -239
  874. package/lib/v1/lookup/header/ViewDropDown/props/defaultProps.js +0 -17
  875. package/lib/v1/lookup/header/ViewDropDown/props/propTypes.js +0 -38
  876. package/lib/v1/lookup/header/index.js +0 -47
  877. package/lib/v1/notification/DesktopNotification/DesktopNotification.js +0 -209
  878. package/lib/v1/notification/DesktopNotification/props/defaultProps.js +0 -26
  879. package/lib/v1/notification/DesktopNotification/props/propTypes.js +0 -55
  880. package/lib/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +0 -105
  881. package/lib/v1/notification/DesktopNotificationHeader/props/defaultProps.js +0 -16
  882. package/lib/v1/notification/DesktopNotificationHeader/props/propTypes.js +0 -24
  883. package/lib/v1/setup/header/Button/Button.js +0 -37
  884. package/lib/v1/setup/header/Button/props/defaultProps.js +0 -11
  885. package/lib/v1/setup/header/Button/props/propTypes.js +0 -18
  886. package/lib/v1/setup/header/Link/Link.js +0 -47
  887. package/lib/v1/setup/header/Link/props/defaultProps.js +0 -11
  888. package/lib/v1/setup/header/Link/props/propTypes.js +0 -19
  889. package/lib/v1/setup/header/Search/Search.js +0 -99
  890. package/lib/v1/setup/header/Search/props/defaultProps.js +0 -13
  891. package/lib/v1/setup/header/Search/props/propTypes.js +0 -23
  892. package/lib/v1/setup/header/Views/Views.js +0 -47
  893. package/lib/v1/setup/header/Views/props/defaultProps.js +0 -13
  894. package/lib/v1/setup/header/Views/props/propTypes.js +0 -20
  895. package/lib/v1/setup/header/index.js +0 -39
  896. package/lib/v1/setup/helptips/Description/Description.js +0 -23
  897. package/lib/v1/setup/helptips/Description/props/propTypes.js +0 -15
  898. package/lib/v1/setup/helptips/Link/Link.js +0 -42
  899. package/lib/v1/setup/helptips/Link/props/propTypes.js +0 -18
  900. package/lib/v1/setup/helptips/ListGroup/ListGroup.js +0 -42
  901. package/lib/v1/setup/helptips/ListGroup/props/propTypes.js +0 -16
  902. package/lib/v1/setup/helptips/Title/Title.js +0 -23
  903. package/lib/v1/setup/helptips/Title/props/propTypes.js +0 -15
  904. package/lib/v1/setup/helptips/index.js +0 -39
  905. package/lib/v1/setup/index.js +0 -24
  906. package/lib/v1/setup/table/Table/Table.js +0 -34
  907. package/lib/v1/setup/table/Table/props/defaultProps.js +0 -11
  908. package/lib/v1/setup/table/Table/props/propTypes.js +0 -17
  909. package/lib/v1/setup/table/TableBody/TableBody.js +0 -39
  910. package/lib/v1/setup/table/TableBody/props/defaultProps.js +0 -10
  911. package/lib/v1/setup/table/TableBody/props/propTypes.js +0 -18
  912. package/lib/v1/setup/table/TableData/TableData.js +0 -44
  913. package/lib/v1/setup/table/TableData/props/defaultProps.js +0 -12
  914. package/lib/v1/setup/table/TableData/props/propTypes.js +0 -22
  915. package/lib/v1/setup/table/TableHead/TableHead.js +0 -44
  916. package/lib/v1/setup/table/TableHead/props/defaultProps.js +0 -11
  917. package/lib/v1/setup/table/TableHead/props/propTypes.js +0 -19
  918. package/lib/v1/setup/table/TableRow/TableRow.js +0 -49
  919. package/lib/v1/setup/table/TableRow/props/defaultProps.js +0 -11
  920. package/lib/v1/setup/table/TableRow/props/propTypes.js +0 -22
  921. package/lib/v1/setup/table/Text/Text.js +0 -64
  922. package/lib/v1/setup/table/Text/props/defaultProps.js +0 -14
  923. package/lib/v1/setup/table/Text/props/propTypes.js +0 -24
  924. package/lib/v1/setup/table/index.js +0 -47
  925. package/lib/v1/svg/PlusIcon.js +0 -37
  926. package/lib/v1/svg/SnippetIcon.js +0 -39
  927. package/lib/v1/svg/TemplateIcon.js +0 -40
  928. package/lib/v1/svg/index.js +0 -31
  929. package/lib/v1/svg/props/defaultProps.js +0 -24
  930. package/lib/v1/svg/props/propTypes.js +0 -29
  931. package/lib/v1/utils/ChannelIconMapping.js +0 -138
  932. package/lib/v1/utils/General.js +0 -58
  933. package/lib/v1/utils/editorUtils.js +0 -224
@@ -1,6 +1,8 @@
1
1
  import React, { Component } from 'react';
2
2
  import { SecondaryText_defaultProps } from "./props/defaultProps";
3
3
  import { SecondaryText_propTypes } from "./props/propTypes";
4
+ import Typography from '@zohodesk/components/es/Typography/Typography';
5
+ import { DUMMY_OBJECT } from '@zohodesk/components/es/utils/Common';
4
6
  import style from "./SecondaryText.module.css";
5
7
  export default class SecondaryText extends Component {
6
8
  constructor(props) {
@@ -14,18 +16,25 @@ export default class SecondaryText extends Component {
14
16
  dataTitle,
15
17
  dataId,
16
18
  onClick,
17
- customProps
19
+ customProps,
20
+ isHighlighted,
21
+ highlightData
18
22
  } = this.props;
19
23
  let {
20
24
  SecondaryTextProps
21
25
  } = customProps;
22
- return /*#__PURE__*/React.createElement("div", {
23
- className: `${style.secondaryText} ${className ? className : ''}`,
24
- "data-title": dataTitle,
25
- "data-id": dataId,
26
- "data-test-id": dataId,
27
- onClick: onClick,
28
- ...SecondaryTextProps
26
+ const tagAttributes = { ...SecondaryTextProps,
27
+ onClick
28
+ };
29
+ return /*#__PURE__*/React.createElement(Typography, {
30
+ $tagAttributes_text: tagAttributes,
31
+ $ui_size: "12",
32
+ $flag_dotted: true,
33
+ $ui_className: `${style.secondaryText} ${className ? className : ''}`,
34
+ $ui_highlightConfig: isHighlighted ? highlightData : DUMMY_OBJECT,
35
+ $i18n_dataTitle: dataTitle,
36
+ customId: dataId,
37
+ testId: dataId
29
38
  }, text);
30
39
  }
31
40
 
@@ -8,109 +8,120 @@
8
8
  }[dir=rtl] .paidUserIcon {
9
9
  margin-left: var(--zd_size5) ;
10
10
  }
11
+
11
12
  .icon {
12
13
  display: block;
13
14
  }
15
+
14
16
  .disable {
15
17
  cursor: not-allowed;
16
18
  }
19
+
17
20
  .textBold {
18
21
  font-weight: var(--zd-fw-bold);
19
22
  color: var(--zdt_secondaryText_black_text);
20
23
  }
21
- .textStyle, .link{
24
+
25
+ .link {
22
26
  display: block
23
27
  }
24
- .textStyle.textBold {
25
- font-weight: var(--zd-fw-bold);
26
- color: var(--zdt_secondaryText_black_text);
27
- }
28
+
28
29
  .ticketId,
29
30
  .link,
30
- .textStyle,
31
31
  .secondaryText,
32
32
  .ratingText,
33
33
  .phoneNumber {
34
34
  color: var(--zdt_secondaryText_secondaryText_text);
35
35
  }
36
- .textStyle,
37
- .secondaryText {
38
- font-size: var(--zd_font_size12) ;
39
- }
36
+
40
37
  .ticketId,
41
- .phoneNumber,
42
38
  .ratingText {
43
39
  font-size: var(--zd_font_size12) ;
44
40
  }
45
- .textStyle,
41
+
42
+ .linkWithText {
43
+ color: var(--zdt_secondaryText_secondaryText_text);
44
+ max-width: 100% ;
45
+ cursor: pointer;
46
+ }
47
+
48
+ .linkWithText:hover {
49
+ color: var(--zdt_secondaryText_blue_text);
50
+ }
51
+
46
52
  .secondaryText,
47
53
  .phoneNumber {
48
- composes: dotted from '~@zohodesk/components/es/common/common.module.css';
49
54
  max-width: 100% ;
50
- display: block;
51
55
  }
52
- .textStyle, .secondaryText, .phoneNumber {
56
+
57
+ .secondaryText, .phoneNumber {
53
58
  cursor: pointer;
54
59
  }
55
- .textStyle:hover,
60
+
56
61
  .ticketIdLink,
57
62
  .phoneNumber:hover,
58
63
  .link:hover {
59
64
  color: var(--zdt_secondaryText_blue_text);
60
65
  }
66
+
61
67
  /* .link:focus, .link:focus .textStyle, .link:focus .phoneNumber{
62
68
  color: var(--zdt_secondaryText_blue_text);
63
69
  } */
64
70
  .ticketIdLink {
65
71
  cursor: pointer;
66
72
  }
67
- .ticketIdLink:hover,.ticketIdLink:focus {
73
+
74
+ .ticketIdLink:hover,
75
+ .ticketIdLink:focus {
68
76
  color: var(--zdt_secondaryText_blue_hover_text);
69
77
  }
78
+
70
79
  .primaryAccountNameCnt {
71
80
  max-width: 100% ;
72
81
  }
82
+
73
83
  /* status */
74
84
  .font_regular {
75
85
  font-weight: var(--zd-fw-normal);
76
86
  }
87
+
77
88
  .font_semibold {
78
89
  font-weight: var(--zd-fw-semibold);
79
90
  }
91
+
80
92
  .font_bold {
81
93
  font-weight: var(--zd-fw-bold);
82
94
  }
95
+
83
96
  .font_semibold,
84
97
  .font_bold,
85
98
  .textBold {
86
99
  composes: ftsmooth from '~@zohodesk/components/es/common/common.module.css';
87
100
  }
88
- .priorityText,
89
- .statusText {
90
- composes: dotted from '~@zohodesk/components/es/common/common.module.css';
91
- }
92
101
 
93
102
  .priorityText {
94
- font-size: var(--zd_font_size12) ;
95
103
  max-width: 100% ;
96
104
  }
105
+
97
106
  .departmentText {
98
- font-size: var(--zd_font_size12) ;
99
107
  color: var(--zdt_secondaryText_secondaryText_text);
100
108
  max-width: 100% ;
101
- composes: dotted from '~@zohodesk/components/es/common/common.module.css';
102
109
  }
110
+
103
111
  /* HappinessRating Style */
104
112
  .happinessContainer {
105
113
  composes: inlineBlockMiddle from '../listCommon.module.css';
106
114
  }
115
+
107
116
  .happinessImg {
108
117
  width: var(--zd_size13) ;
109
118
  vertical-align: middle;
110
119
  }
120
+
111
121
  [dir=ltr] .happinessImg {
112
122
  margin: 0 var(--zd_size4) 0 0 ;
113
123
  }
124
+
114
125
  [dir=rtl] .happinessImg {
115
126
  margin: 0 0 0 var(--zd_size4) ;
116
127
  }
@@ -119,18 +130,23 @@
119
130
  .gray {
120
131
  color: var(--zdt_secondaryText_gray_text);
121
132
  }
133
+
122
134
  .orange {
123
135
  color: var(--zdt_secondaryText_orage_text);
124
136
  }
137
+
125
138
  .green {
126
139
  color: var(--zdt_secondaryText_green_text);
127
140
  }
141
+
128
142
  .red {
129
143
  color: var(--zdt_secondaryText_red_text);
130
144
  }
145
+
131
146
  .blue {
132
147
  color: var(--zdt_secondaryText_blue_text);
133
148
  }
149
+
134
150
  .black {
135
151
  color: var(--zdt_secondaryText_black_text);
136
152
  }
@@ -1,6 +1,8 @@
1
1
  import React, { Component } from 'react';
2
2
  import { StatusText_defaultProps } from "./props/defaultProps";
3
3
  import { StatusText_propTypes } from "./props/propTypes";
4
+ import Typography from '@zohodesk/components/es/Typography/Typography';
5
+ import { DUMMY_OBJECT } from '@zohodesk/components/es/utils/Common';
4
6
  import style from "./SecondaryText.module.css";
5
7
  export default class StatusText extends Component {
6
8
  constructor(props) {
@@ -14,13 +16,18 @@ export default class StatusText extends Component {
14
16
  text,
15
17
  dataTitle,
16
18
  fontWeight,
17
- dataId
19
+ dataId,
20
+ isHighlighted,
21
+ highlightData
18
22
  } = this.props;
19
- return /*#__PURE__*/React.createElement("div", {
20
- className: `${style.statusText} ${style[color]} ${style[`font_${fontWeight}`]} ${className ? className : ''}`,
21
- "data-title": dataTitle,
22
- "data-id": dataId,
23
- "data-test-id": dataId
23
+ return /*#__PURE__*/React.createElement(Typography, {
24
+ $ui_className: `${style[color]} ${className ? className : ''}`,
25
+ $ui_weight: fontWeight,
26
+ $flag_dotted: true,
27
+ $ui_highlightConfig: isHighlighted ? highlightData : DUMMY_OBJECT,
28
+ $i18n_dataTitle: dataTitle,
29
+ customId: dataId,
30
+ testId: dataId
24
31
  }, text);
25
32
  }
26
33
 
@@ -1,6 +1,10 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  import React, { Component } from 'react';
2
4
  import { TicketId_defaultProps } from "./props/defaultProps";
3
5
  import { TicketId_propTypes } from "./props/propTypes";
6
+ import Typography from '@zohodesk/components/es/Typography/Typography';
7
+ import { DUMMY_OBJECT } from '@zohodesk/components/es/utils/Common';
4
8
  import Link from "../../Link/Link";
5
9
  import style from "./SecondaryText.module.css";
6
10
  export default class TicketId extends Component {
@@ -20,27 +24,29 @@ export default class TicketId extends Component {
20
24
  target,
21
25
  urlName,
22
26
  urlData,
23
- customProps
27
+ customProps,
28
+ isHighlighted,
29
+ highlightData
24
30
  } = this.props;
25
31
  let {
26
32
  LinkProps = {},
27
33
  TicketIdProps = {}
28
34
  } = customProps;
29
- return /*#__PURE__*/React.createElement("div", {
35
+ return /*#__PURE__*/React.createElement("div", _extends({
30
36
  className: `${style.ticketId} ${isLink ? style.ticketIdLink : ''} ${className ? className : ''}`,
31
37
  "data-id": dataId,
32
38
  "data-test-id": dataId,
33
39
  "data-title": dataTitle,
34
- onClick: !isLink && onClick,
35
- ...TicketIdProps
36
- }, isLink ? /*#__PURE__*/React.createElement(Link, {
40
+ onClick: !isLink && onClick
41
+ }, TicketIdProps), isLink ? /*#__PURE__*/React.createElement(Link, _extends({
37
42
  urlName: urlName,
38
43
  urlData: urlData,
39
44
  href: url,
40
45
  target: target,
41
- onClick: onClick,
42
- ...LinkProps
43
- }, text) : text);
46
+ onClick: onClick
47
+ }, LinkProps), /*#__PURE__*/React.createElement(Typography, {
48
+ $ui_highlightConfig: isHighlighted ? highlightData : DUMMY_OBJECT
49
+ }, text)) : text);
44
50
  }
45
51
 
46
52
  }
@@ -6,6 +6,8 @@ import { Website_defaultProps } from "./props/defaultProps";
6
6
  import { Website_propTypes } from "./props/propTypes";
7
7
  /**** Components ****/
8
8
 
9
+ import Typography from '@zohodesk/components/es/Typography/Typography';
10
+ import { DUMMY_OBJECT } from '@zohodesk/components/es/utils/Common';
9
11
  import ExternalLink from "../../ExternalLink/ExternalLink";
10
12
  /**** CSS ****/
11
13
 
@@ -19,17 +21,26 @@ export default class Website extends Component {
19
21
  href,
20
22
  dataId,
21
23
  isLink,
22
- target
24
+ target,
25
+ isHighlighted,
26
+ highlightData
23
27
  } = this.props;
24
28
  return /*#__PURE__*/React.createElement(React.Fragment, null, isLink ? /*#__PURE__*/React.createElement(ExternalLink, {
25
- className: `${style.textStyle} ${className ? className : ''}`,
29
+ className: style.link,
26
30
  href: href,
27
31
  title: title,
28
32
  dataId: dataId,
29
33
  target: target
30
- }, text) : /*#__PURE__*/React.createElement("div", {
31
- className: `${style.secondaryText} ${className ? className : ''}`,
32
- "data-title": text
34
+ }, /*#__PURE__*/React.createElement(Typography, {
35
+ $flag_dotted: true,
36
+ $ui_size: "12",
37
+ $ui_className: `${style.linkWithText} ${className ? className : ''}`,
38
+ $ui_highlightConfig: isHighlighted ? highlightData : DUMMY_OBJECT
39
+ }, text)) : /*#__PURE__*/React.createElement(Typography, {
40
+ $ui_size: "12",
41
+ $flag_dotted: true,
42
+ $ui_className: `${style.secondaryText} ${className ? className : ''}`,
43
+ $i18n_dataTitle: text
33
44
  }, text));
34
45
  }
35
46
 
@@ -35,7 +35,7 @@ exports[`AccountName rendering the defult props 1`] = `
35
35
  rel="noopener noreferrer"
36
36
  >
37
37
  <div
38
- class="textStyle font_regular "
38
+ class="dotted size12 font_regular linkWithText "
39
39
  />
40
40
  </a>
41
41
  </div>
@@ -23,7 +23,7 @@ exports[`ContactName rendering the defult props 1`] = `
23
23
  rel="noopener noreferrer"
24
24
  >
25
25
  <div
26
- class="textStyle font_regular "
26
+ class="dotted size12 font_regular linkWithText "
27
27
  />
28
28
  </a>
29
29
  </div>
@@ -3,7 +3,7 @@
3
3
  exports[`DepartmentText rendering the defult props 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="departmentText "
6
+ class="dotted size12 departmentText "
7
7
  />
8
8
  </DocumentFragment>
9
9
  `;
@@ -8,7 +8,7 @@ exports[`Email rendering the defult props 1`] = `
8
8
  rel="noopener noreferrer"
9
9
  >
10
10
  <div
11
- class="textStyle font_regular "
11
+ class="dotted size12 font_regular linkWithText "
12
12
  />
13
13
  </a>
14
14
  </DocumentFragment>
@@ -8,7 +8,7 @@ exports[`PhoneNumber rendering the defult props 1`] = `
8
8
  rel="noopener noreferrer"
9
9
  >
10
10
  <div
11
- class="phoneNumber phonetxt font_regular "
11
+ class="dotted size12 font_regular phoneNumber phonetxt "
12
12
  />
13
13
  </a>
14
14
  </DocumentFragment>
@@ -3,7 +3,7 @@
3
3
  exports[`PriorityText rendering the defult props 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="priorityText black "
6
+ class="dotted size12 priorityText black "
7
7
  data-id="priority"
8
8
  data-test-id="priority"
9
9
  />
@@ -3,7 +3,7 @@
3
3
  exports[`SecondaryText rendering the defult props 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="secondaryText "
6
+ class="dotted size12 secondaryText "
7
7
  />
8
8
  </DocumentFragment>
9
9
  `;
@@ -3,7 +3,7 @@
3
3
  exports[`StatusText rendering the defult props 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="statusText black font_regular "
6
+ class="dotted font_regular black "
7
7
  data-id="statusContainer"
8
8
  data-test-id="statusContainer"
9
9
  />
@@ -3,10 +3,14 @@
3
3
  exports[`Website rendering the defult props 1`] = `
4
4
  <DocumentFragment>
5
5
  <a
6
- class="link textStyle "
6
+ class="link link"
7
7
  href="javascript:void(0);"
8
8
  rel="noopener noreferrer"
9
9
  target="_blank"
10
- />
10
+ >
11
+ <div
12
+ class="dotted size12 linkWithText "
13
+ />
14
+ </a>
11
15
  </DocumentFragment>
12
16
  `;
@@ -2,6 +2,8 @@ export const AccountName_defaultProps = {
2
2
  isLink: true,
3
3
  dataId: 'accountName',
4
4
  fontWeight: 'regular',
5
+ isHighlighted: false,
6
+ highlightData: {},
5
7
  customProps: {}
6
8
  };
7
9
  export const ContactName_defaultProps = {
@@ -10,35 +12,51 @@ export const ContactName_defaultProps = {
10
12
  dataId: 'contactName',
11
13
  fontWeight: 'regular',
12
14
  i18nKeys: {},
15
+ isHighlighted: false,
16
+ highlightData: {},
13
17
  customProps: {}
14
18
  };
15
19
  export const Email_defaultProps = {
16
20
  isLink: true,
17
21
  fontWeight: 'regular',
22
+ isHighlighted: false,
23
+ highlightData: {},
18
24
  customProps: {}
19
25
  };
20
26
  export const PhoneNumber_defaultProps = {
21
27
  isLink: true,
22
28
  hasReload: false,
23
29
  fontWeight: 'regular',
30
+ isHighlighted: false,
31
+ highlightData: {},
24
32
  customProps: {}
25
33
  };
26
34
  export const PriorityText_defaultProps = {
27
35
  color: 'black',
36
+ isHighlighted: false,
37
+ highlightData: {},
28
38
  dataId: 'priority'
29
39
  };
30
40
  export const SecondaryText_defaultProps = {
41
+ isHighlighted: false,
42
+ highlightData: {},
31
43
  customProps: {}
32
44
  };
33
45
  export const StatusText_defaultProps = {
34
46
  color: 'black',
35
47
  dataId: 'statusContainer',
48
+ isHighlighted: false,
49
+ highlightData: {},
36
50
  fontWeight: 'regular'
37
51
  };
38
52
  export const TicketId_defaultProps = {
39
53
  dataId: 'ticketId',
54
+ isHighlighted: false,
55
+ highlightData: {},
40
56
  customProps: {}
41
57
  };
42
58
  export const Website_defaultProps = {
59
+ isHighlighted: false,
60
+ highlightData: {},
43
61
  isLink: true
44
62
  };
@@ -1,4 +1,5 @@
1
1
  import PropTypes from 'prop-types';
2
+ import { propTypes as typographyProps } from '@zohodesk/components/es/Typography/props/propTypes';
2
3
  export const AccountName_propTypes = {
3
4
  className: PropTypes.string,
4
5
  dataId: PropTypes.string,
@@ -14,6 +15,8 @@ export const AccountName_propTypes = {
14
15
  secondaryAccountHref: PropTypes.string,
15
16
  secondaryAccountClick: PropTypes.func,
16
17
  secondaryAccountText: PropTypes.string,
18
+ isHighlighted: PropTypes.bool,
19
+ highlightData: typographyProps.$ui_highlightConfig,
17
20
  customProps: PropTypes.shape({
18
21
  LinkProps: PropTypes.object,
19
22
  TextProps: PropTypes.object,
@@ -42,6 +45,8 @@ export const ContactName_propTypes = {
42
45
  }),
43
46
  paidTitle: PropTypes.string
44
47
  }),
48
+ isHighlighted: PropTypes.bool,
49
+ highlightData: typographyProps.$ui_highlightConfig,
45
50
  customProps: PropTypes.shape({
46
51
  LinkProps: PropTypes.object,
47
52
  TextProps: PropTypes.object
@@ -51,6 +56,8 @@ export const DepartmentText_propTypes = {
51
56
  className: PropTypes.string,
52
57
  dataId: PropTypes.string,
53
58
  dataTitle: PropTypes.string,
59
+ isHighlighted: PropTypes.bool,
60
+ highlightData: typographyProps.$ui_highlightConfig,
54
61
  text: PropTypes.string
55
62
  };
56
63
  export const Email_propTypes = {
@@ -63,6 +70,8 @@ export const Email_propTypes = {
63
70
  title: PropTypes.string,
64
71
  urlData: PropTypes.object,
65
72
  urlName: PropTypes.string,
73
+ isHighlighted: PropTypes.bool,
74
+ highlightData: typographyProps.$ui_highlightConfig,
66
75
  customProps: PropTypes.shape({
67
76
  LinkProps: PropTypes.object,
68
77
  TextProps: PropTypes.object
@@ -85,6 +94,8 @@ export const PhoneNumber_propTypes = {
85
94
  title: PropTypes.string,
86
95
  urlData: PropTypes.object,
87
96
  urlName: PropTypes.string,
97
+ isHighlighted: PropTypes.bool,
98
+ highlightData: typographyProps.$ui_highlightConfig,
88
99
  customProps: PropTypes.shape({
89
100
  LinkProps: PropTypes.object,
90
101
  TextProps: PropTypes.object
@@ -95,6 +106,8 @@ export const PriorityText_propTypes = {
95
106
  color: PropTypes.oneOf(['red', 'green', 'gray', 'orange']),
96
107
  dataId: PropTypes.string,
97
108
  dataTitle: PropTypes.string,
109
+ isHighlighted: PropTypes.bool,
110
+ highlightData: typographyProps.$ui_highlightConfig,
98
111
  text: PropTypes.string
99
112
  };
100
113
  export const SecondaryText_propTypes = {
@@ -103,6 +116,8 @@ export const SecondaryText_propTypes = {
103
116
  dataTitle: PropTypes.string,
104
117
  onClick: PropTypes.func,
105
118
  text: PropTypes.string,
119
+ isHighlighted: PropTypes.bool,
120
+ highlightData: typographyProps.$ui_highlightConfig,
106
121
  customProps: PropTypes.shape({
107
122
  SecondaryTextProps: PropTypes.object
108
123
  })
@@ -113,6 +128,8 @@ export const StatusText_propTypes = {
113
128
  dataId: PropTypes.string,
114
129
  dataTitle: PropTypes.string,
115
130
  fontWeight: PropTypes.oneOf(['regular', 'semibold', 'bold']),
131
+ isHighlighted: PropTypes.bool,
132
+ highlightData: typographyProps.$ui_highlightConfig,
116
133
  text: PropTypes.string
117
134
  };
118
135
  export const TicketId_propTypes = {
@@ -126,6 +143,8 @@ export const TicketId_propTypes = {
126
143
  url: PropTypes.string,
127
144
  urlData: PropTypes.string,
128
145
  urlName: PropTypes.string,
146
+ isHighlighted: PropTypes.bool,
147
+ highlightData: typographyProps.$ui_highlightConfig,
129
148
  customProps: PropTypes.shape({
130
149
  TicketIdProps: PropTypes.object,
131
150
  LinkProps: PropTypes.object
@@ -138,5 +157,7 @@ export const Website_propTypes = {
138
157
  isLink: PropTypes.bool,
139
158
  target: PropTypes.string,
140
159
  text: PropTypes.string,
160
+ isHighlighted: PropTypes.bool,
161
+ highlightData: typographyProps.$ui_highlightConfig,
141
162
  title: PropTypes.string
142
163
  };
File without changes
@@ -1,6 +1,10 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  import React, { Component } from 'react';
2
4
  import { defaultProps } from "./props/defaultProps";
3
5
  import { propTypes } from "./props/propTypes";
6
+ import Typography from '@zohodesk/components/es/Typography/Typography';
7
+ import { DUMMY_OBJECT } from '@zohodesk/components/es/utils/Common';
4
8
  import Link from "../../Link/Link";
5
9
  import { whiteSpaceClassMapping } from '@zohodesk/components/es/utils/cssUtils';
6
10
  import style from "./Subject.module.css";
@@ -24,30 +28,43 @@ export default class Subject extends Component {
24
28
  isDotted,
25
29
  children,
26
30
  customProps,
27
- whiteSpace
31
+ whiteSpace,
32
+ isHighlighted,
33
+ highlightData
28
34
  } = this.props;
29
35
  let {
30
36
  LinkProps = {},
31
37
  TextProps = {}
32
38
  } = customProps;
33
- return /*#__PURE__*/React.createElement(React.Fragment, null, isLink ? /*#__PURE__*/React.createElement(Link, {
39
+ let tagAttributesText = { ...TextProps,
40
+ 'data-title-wrap': whiteSpace
41
+ };
42
+ let linkTagAttributes = {
43
+ 'data-title-wrap': whiteSpace
44
+ };
45
+ return /*#__PURE__*/React.createElement(React.Fragment, null, isLink ? /*#__PURE__*/React.createElement(Link, _extends({
34
46
  urlName: urlName,
35
47
  href: href,
36
48
  urlData: urlData,
37
49
  onClick: onClick,
38
- className: `${style.subject} ${isDotted ? style.dotted : ''} ${whiteSpaceClassMapping[whiteSpace]} ${className} ${style[`font_${fontWeight}`]} ${style.cursorPointer}`,
39
- dataId: dataId,
40
- title: text,
41
- target: target,
42
- "data-title-wrap": whiteSpace,
43
- ...LinkProps
44
- }, children ? children : text) : /*#__PURE__*/React.createElement("span", {
45
- className: `${style.subject} ${isDotted ? style.dotted : ''} ${whiteSpaceClassMapping[whiteSpace]} ${className} ${style[`font_${fontWeight}`]}`,
46
- "data-title": text,
47
- "data-id": dataId,
48
- "data-test-id": dataId,
49
- "data-title-wrap": whiteSpace,
50
- ...TextProps
50
+ target: target
51
+ }, LinkProps), children ? children : /*#__PURE__*/React.createElement(Typography, {
52
+ $tagAttributes_text: linkTagAttributes,
53
+ $i18n_dataTitle: text,
54
+ $ui_className: `${style.subject} ${whiteSpaceClassMapping[whiteSpace]} ${className} ${style.cursorPointer}`,
55
+ customId: dataId,
56
+ $flag_dotted: isDotted,
57
+ $ui_weight: fontWeight,
58
+ $ui_highlightConfig: isHighlighted ? highlightData : DUMMY_OBJECT
59
+ }, text)) : /*#__PURE__*/React.createElement(Typography, {
60
+ $tagAttributes_text: tagAttributesText,
61
+ $ui_className: `${style.subject} ${className} ${whiteSpaceClassMapping[whiteSpace]}`,
62
+ $flag_dotted: isDotted,
63
+ $ui_weight: fontWeight,
64
+ $i18n_dataTitle: text,
65
+ customId: dataId,
66
+ testId: dataId,
67
+ $ui_highlightConfig: isHighlighted ? highlightData : DUMMY_OBJECT
51
68
  }, text));
52
69
  }
53
70