@zohodesk/dot 1.0.0-temp-206.2 → 1.0.0-temp-200.4

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 (577) hide show
  1. package/README.md +4 -0
  2. package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +0 -3
  3. package/assets/Appearance/dark/themes/blue/blue_DotTheme_DarkTheme.module.css +3 -0
  4. package/assets/Appearance/dark/themes/green/green_DotTheme_DarkTheme.module.css +3 -0
  5. package/assets/Appearance/dark/themes/orange/orange_DotTheme_DarkTheme.module.css +3 -0
  6. package/assets/Appearance/dark/themes/red/red_DotTheme_DarkTheme.module.css +3 -0
  7. package/assets/Appearance/dark/themes/yellow/yellow_DotTheme_DarkTheme.module.css +3 -0
  8. package/assets/Appearance/light/mode/Dot_LightMode.module.css +0 -3
  9. package/assets/Appearance/light/themes/blue/blue_DotTheme_LightTheme.module.css +3 -0
  10. package/assets/Appearance/light/themes/green/green_DotTheme_LightTheme.module.css +3 -0
  11. package/assets/Appearance/light/themes/orange/orange_DotTheme_LightTheme.module.css +3 -0
  12. package/assets/Appearance/light/themes/red/red_DotTheme_LightTheme.module.css +3 -0
  13. package/assets/Appearance/light/themes/yellow/yellow_DotTheme_LightTheme.module.css +3 -0
  14. package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +0 -3
  15. package/assets/Appearance/pureDark/themes/blue/blue_DotTheme_PureDarkTheme.module.css +3 -0
  16. package/assets/Appearance/pureDark/themes/green/green_DotTheme_PureDarkTheme.module.css +3 -0
  17. package/assets/Appearance/pureDark/themes/orange/orange_DotTheme_PureDarkTheme.module.css +3 -0
  18. package/assets/Appearance/pureDark/themes/red/red_DotTheme_PureDarkTheme.module.css +3 -0
  19. package/assets/Appearance/pureDark/themes/yellow/yellow_DotTheme_PureDarkTheme.module.css +3 -0
  20. package/es/ActionButton/ActionButton.js +3 -3
  21. package/es/ActionButton/__tests__/ActionButton.spec.js +1 -1
  22. package/es/AlphabeticList/AlphabeticList.js +3 -3
  23. package/es/AlphabeticList/__tests__/AlphabeticList.spec.js +1 -1
  24. package/es/Attachment/Attachment.js +4 -4
  25. package/es/Attachment/Attachment.module.css +7 -3
  26. package/es/Attachment/__tests__/Attachment.spec.js +1 -1
  27. package/es/AttachmentViewer/Attachment.js +60 -1
  28. package/es/AttachmentViewer/AttachmentImage.js +5 -5
  29. package/es/AttachmentViewer/AttachmentViewer.js +276 -22
  30. package/es/AttachmentViewer/AttachmentViewer.module.css +125 -5
  31. package/es/AttachmentViewer/__tests__/AttachmentImage.spec.js +1 -1
  32. package/es/AttachmentViewer/__tests__/AttachmentViewer.spec.js +1 -1
  33. package/es/AttachmentViewer/utils.js +22 -0
  34. package/es/ChannelIcon/ChannelIcon.js +5 -5
  35. package/es/ChannelIcon/__tests__/ChannelIcon.spec.js +1 -1
  36. package/es/DotProvider/DotProvider.js +2 -2
  37. package/es/DotProvider/__tests__/DotProvider.spec.js +1 -1
  38. package/es/DotProvider/hooks/useDotProvider.js +2 -2
  39. package/es/DotProvider/hooks/useDownloadAssetsAndSetAttr.js +4 -4
  40. package/es/DotProvider/libraryChunks/themes/dot/blue/Blue_Dark_Dot.js +1 -1
  41. package/es/DotProvider/libraryChunks/themes/dot/blue/Blue_Light_Dot.js +1 -1
  42. package/es/DotProvider/libraryChunks/themes/dot/blue/Blue_PureDark_Dot.js +1 -1
  43. package/es/DotProvider/libraryChunks/themes/dot/green/Green_Dark_Dot.js +1 -1
  44. package/es/DotProvider/libraryChunks/themes/dot/green/Green_Light_Dot.js +1 -1
  45. package/es/DotProvider/libraryChunks/themes/dot/green/Green_PureDark_Dot.js +1 -1
  46. package/es/DotProvider/libraryChunks/themes/dot/orange/Orange_Dark_Dot.js +1 -1
  47. package/es/DotProvider/libraryChunks/themes/dot/orange/Orange_Light_Dot.js +1 -1
  48. package/es/DotProvider/libraryChunks/themes/dot/orange/Orange_PureDark_Dot.js +1 -1
  49. package/es/DotProvider/libraryChunks/themes/dot/red/Red_Dark_Dot.js +1 -1
  50. package/es/DotProvider/libraryChunks/themes/dot/red/Red_Light_Dot.js +1 -1
  51. package/es/DotProvider/libraryChunks/themes/dot/red/Red_PureDark_Dot.js +1 -1
  52. package/es/DotProvider/libraryChunks/themes/dot/yellow/Yellow_Dark_Dot.js +1 -1
  53. package/es/DotProvider/libraryChunks/themes/dot/yellow/Yellow_Light_Dot.js +1 -1
  54. package/es/DotProvider/libraryChunks/themes/dot/yellow/Yellow_PureDark_Dot.js +1 -1
  55. package/es/DotProvider/props/propTypes.js +1 -1
  56. package/es/DotProvider/utils/themeAppearanceAssetsConfig.js +4 -4
  57. package/es/DotProvider/utils/themeColorAssetsConfig.js +46 -46
  58. package/es/Drawer/Drawer.js +6 -6
  59. package/es/Drawer/__tests__/Drawer.spec.js +1 -1
  60. package/es/Drawer/index.js +1 -1
  61. package/es/ExternalLink/ExternalLink.js +3 -3
  62. package/es/ExternalLink/__tests__/ExternalLink.spec.js +1 -1
  63. package/es/FlipCard/FlipCard.js +7 -7
  64. package/es/FlipCard/__tests__/FlipCard.spec.js +1 -1
  65. package/es/FormAction/FormAction.js +3 -3
  66. package/es/FormAction/__tests__/FormAction.spec.js +1 -1
  67. package/es/FreezeLayer/FreezeLayer.js +5 -5
  68. package/es/FreezeLayer/__tests__/FreezeLayer.spec.js +1 -1
  69. package/es/FreezeLayer/index.js +2 -2
  70. package/es/Hooks/Dragger/useDragger.js +5 -5
  71. package/es/Hooks/useFreezeLayer.js +1 -1
  72. package/es/IconButton/IconButton.js +3 -3
  73. package/es/IconButton/__tests__/IconButton.spec.js +1 -1
  74. package/es/Image/Image.js +3 -3
  75. package/es/Image/__tests__/Image.spec.js +1 -1
  76. package/es/ImportantNotes/ImportantNotes.js +3 -3
  77. package/es/ImportantNotes/__tests__/ImportantNotes.spec.js +1 -1
  78. package/es/Link/Link.js +4 -4
  79. package/es/Link/__tests__/Link.spec.js +1 -1
  80. package/es/Loader/Loader.js +1 -1
  81. package/es/Loader/Loader.module.css +8 -7
  82. package/es/Loader/__tests__/Loader.spec.js +1 -1
  83. package/es/Message/Message.js +4 -4
  84. package/es/Message/__tests__/Message.spec.js +1 -1
  85. package/es/Message/props/propTypes.js +1 -1
  86. package/es/MessageBanner/MessageBanner.js +4 -4
  87. package/es/MessageBanner/__tests__/MessageBanner.spec.js +1 -1
  88. package/es/NewStar/NewStar.js +3 -3
  89. package/es/NewStar/__tests__/NewStar.spec.js +1 -1
  90. package/es/PlusIcon/PlusIcon.js +4 -4
  91. package/es/PlusIcon/__tests__/PlusIcon.spec.js +1 -1
  92. package/es/Separator/Separator.js +3 -3
  93. package/es/Separator/__tests__/Separator.spec.js +1 -1
  94. package/es/TagWithIcon/TagWithIcon.js +3 -3
  95. package/es/TagWithIcon/__tests__/TagWithIcon.spec.js +1 -1
  96. package/es/ToastMessage/ToastMessage.js +4 -4
  97. package/es/ToastMessage/__tests__/ToastMessage.spec.js +1 -1
  98. package/es/Upload/Upload.js +4 -4
  99. package/es/Upload/__tests__/Upload.spec.js +1 -1
  100. package/es/actions/AutoClose.js +2 -2
  101. package/es/alert/AlertHeader/AlertHeader.js +5 -5
  102. package/es/alert/AlertHeader/__tests__/AlertHeader.spec.js +1 -1
  103. package/es/alert/AlertLookup/AlertLookup.js +7 -7
  104. package/es/alert/AlertLookup/__tests__/AlertLookup.spec.js +1 -1
  105. package/es/alert/index.js +2 -2
  106. package/es/avatar/AvatarClose/AvatarClose.js +3 -3
  107. package/es/avatar/AvatarClose/__tests__/AvatarClose.spec.js +1 -1
  108. package/es/avatar/AvatarCollision/AvatarCollision.js +3 -3
  109. package/es/avatar/AvatarCollision/__tests__/AvatarCollision.spec.js +1 -1
  110. package/es/avatar/AvatarIcon/AvatarIcon.js +3 -3
  111. package/es/avatar/AvatarIcon/__tests__/AvatarIcon.spec.js +1 -1
  112. package/es/avatar/AvatarStatus/AvatarStatus.js +3 -3
  113. package/es/avatar/AvatarStatus/__tests__/AvatarStatus.spec.js +1 -1
  114. package/es/avatar/AvatarThread/AvatarThread.js +3 -3
  115. package/es/avatar/AvatarThread/__tests__/AvatarThread.spec.js +1 -1
  116. package/es/avatar/AvatarUser/AvatarUser.js +4 -4
  117. package/es/avatar/AvatarUser/__tests__/AvatarUser.spec.js +1 -1
  118. package/es/avatar/AvatarWithTeam/AvatarWithTeam.js +3 -3
  119. package/es/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js +1 -1
  120. package/es/avatar/index.js +7 -7
  121. package/es/common/dot_common.module.css +37 -2
  122. package/es/deprecated/FreezeLayer/FreezeLayer.js +4 -4
  123. package/es/deprecated/SelectDropdown/SelectDropdown.js +1 -1
  124. package/es/dropdown/ToggleDropDown/ToggleDropDown.js +4 -4
  125. package/es/dropdown/ToggleDropDown/__tests__/ToggleDropDown.spec.js +1 -1
  126. package/es/emptystate/CommonEmptyState/CommonEmptyState.js +4 -4
  127. package/es/emptystate/CommonEmptyState/__tests__/CommonEmptyState.spec.js +1 -1
  128. package/es/emptystate/EditionPage/EditionPage.js +3 -3
  129. package/es/emptystate/EditionPage/__tests__/EditionPage.spec.js +1 -1
  130. package/es/errorstate/Inconvenience/Inconvenience.js +5 -5
  131. package/es/errorstate/Inconvenience/__tests__/Inconvenience.spec.js +1 -1
  132. package/es/errorstate/LinkText/LinkText.js +4 -4
  133. package/es/errorstate/LinkText/__tests__/LinkText.spec.js +1 -1
  134. package/es/errorstate/NoRequestFound/NoRequestFound.js +5 -5
  135. package/es/errorstate/NoRequestFound/__tests__/NoRequestFound.spec.js +1 -1
  136. package/es/errorstate/PermissionPlay/PermissionPlay.js +5 -5
  137. package/es/errorstate/PermissionPlay/__tests__/PermissionPlay.spec.js +1 -1
  138. package/es/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +5 -5
  139. package/es/errorstate/RequestUrlNotFound/__tests__/RequestUrlNotFound.spec.js +1 -1
  140. package/es/errorstate/UnableToProcess/UnableToProcess.js +5 -5
  141. package/es/errorstate/UnableToProcess/__tests__/UnableToProcess.spec.js +1 -1
  142. package/es/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +5 -5
  143. package/es/errorstate/UnauthorizedLogin/__tests__/UnauthorizedLogin.spec.js +1 -1
  144. package/es/errorstate/WillBack/WillBack.js +4 -4
  145. package/es/errorstate/WillBack/__tests__/WillBack.spec.js +1 -1
  146. package/es/errorstate/index.js +8 -8
  147. package/es/form/fields/CheckBoxField/CheckBoxField.js +5 -5
  148. package/es/form/fields/CheckBoxField/__tests__/CheckBoxField.spec.js +1 -1
  149. package/es/form/fields/CheckBoxField/props/defaultProps.js +1 -1
  150. package/es/form/fields/CheckBoxField/props/propTypes.js +1 -1
  151. package/es/form/fields/CurrencyField/CurrencyField.js +5 -5
  152. package/es/form/fields/CurrencyField/__tests__/CurrencyField.spec.js +1 -1
  153. package/es/form/fields/CurrencyField/props/defaultProps.js +1 -1
  154. package/es/form/fields/CurrencyField/props/propTypes.js +1 -1
  155. package/es/form/fields/DateField/DateField.js +5 -5
  156. package/es/form/fields/DateField/__tests__/DateField.spec.js +1 -1
  157. package/es/form/fields/DateField/props/defaultProps.js +1 -1
  158. package/es/form/fields/DateField/props/propTypes.js +1 -1
  159. package/es/form/fields/FieldContainer/FieldContainer.js +3 -3
  160. package/es/form/fields/FieldContainer/__tests__/FieldContainer.spec.js +1 -1
  161. package/es/form/fields/FieldContainer/props/defaultProps.js +1 -1
  162. package/es/form/fields/MultiSelectField/MultiSelectField.js +5 -5
  163. package/es/form/fields/MultiSelectField/__tests__/MultiSelectField.spec.js +1 -1
  164. package/es/form/fields/MultiSelectField/props/defaultProps.js +1 -1
  165. package/es/form/fields/MultiSelectField/props/propTypes.js +1 -1
  166. package/es/form/fields/PhoneField/PhoneField.js +6 -6
  167. package/es/form/fields/PhoneField/__tests__/PhoneField.spec.js +1 -1
  168. package/es/form/fields/RadioField/RadioField.js +4 -4
  169. package/es/form/fields/RadioField/__tests__/RadioField.spec.js +1 -1
  170. package/es/form/fields/SelectField/SelectField.js +5 -5
  171. package/es/form/fields/SelectField/__tests__/SelectField.spec.js +1 -1
  172. package/es/form/fields/SelectField/props/defaultProps.js +1 -1
  173. package/es/form/fields/SelectField/props/propTypes.js +1 -1
  174. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +5 -5
  175. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +116 -116
  176. package/es/form/fields/TagsMultiSelect/__tests__/TagsMultiSelect.spec.js +1 -1
  177. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +7 -7
  178. package/es/form/fields/TagsMultiSelectField/__tests__/TagsMultiSelectField.spec.js +1 -1
  179. package/es/form/fields/TagsMultiSelectField/props/defaultProps.js +1 -1
  180. package/es/form/fields/TagsMultiSelectField/props/propTypes.js +1 -1
  181. package/es/form/fields/TextBoxField/TextBoxField.js +5 -5
  182. package/es/form/fields/TextBoxField/__tests__/TextBoxField.spec.js +1 -1
  183. package/es/form/fields/TextBoxField/props/defaultProps.js +1 -1
  184. package/es/form/fields/TextBoxField/props/propTypes.js +1 -1
  185. package/es/form/fields/TextEditor/TextEditor.js +6 -11
  186. package/es/form/fields/TextEditor/__tests__/TextEditor.spec.js +1 -1
  187. package/es/form/fields/TextEditorField/TextEditorField.js +6 -6
  188. package/es/form/fields/TextEditorField/__tests__/TextEditorField.spec.js +1 -1
  189. package/es/form/fields/TextEditorField/props/defaultProps.js +1 -1
  190. package/es/form/fields/TextEditorField/props/propTypes.js +1 -1
  191. package/es/form/fields/TextEditorWrapper/TextEditorWrapper.js +5 -5
  192. package/es/form/fields/TextEditorWrapper/__tests__/TextEditorWrapper.spec.js +1 -1
  193. package/es/form/fields/TextareaField/TextareaField.js +5 -5
  194. package/es/form/fields/TextareaField/__tests__/TextareaField.spec.js +1 -1
  195. package/es/form/fields/TextareaField/props/defaultProps.js +1 -1
  196. package/es/form/fields/TextareaField/props/propTypes.js +1 -1
  197. package/es/form/fields/ValidationMessage/ValidationMessage.js +3 -3
  198. package/es/form/fields/ValidationMessage/__tests__/ValidationMessage.spec.js +1 -1
  199. package/es/form/fields/index.js +16 -16
  200. package/es/form/layout/Field/Field.js +3 -3
  201. package/es/form/layout/Field/__tests__/Field.spec.js +1 -1
  202. package/es/form/layout/Section/Section.js +2 -2
  203. package/es/form/layout/Section/__tests__/Section.spec.js +1 -1
  204. package/es/form/layout/index.js +2 -2
  205. package/es/index.js +39 -39
  206. package/es/layout/SetupDetailLayout/SetupDetailLayout.js +3 -3
  207. package/es/layout/SetupDetailLayout/__tests__/SetupDetailLayout.spec.js +1 -1
  208. package/es/layout/SetupDetailLayout/index.js +4 -4
  209. package/es/layout/SubtabLayout/SubtabLayout.js +4 -4
  210. package/es/layout/SubtabLayout/__tests__/SubtabLayout.spec.js +1 -1
  211. package/es/layout/SubtabLayout/index.js +4 -4
  212. package/es/list/AvatarFlip/AvatarFlip.js +4 -4
  213. package/es/list/AvatarFlip/__tests__/AvatarFlip.spec.js +1 -1
  214. package/es/list/BluePrintStatus/BluePrintStatus.js +2 -2
  215. package/es/list/BluePrintStatus/__tests__/BluePrintStatus.spec.js +1 -1
  216. package/es/list/Comment/Comment.js +3 -3
  217. package/es/list/Comment/__tests__/Comment.spec.js +1 -1
  218. package/es/list/DepartmentDropDown/DepartmentDropDown.js +5 -5
  219. package/es/list/DepartmentDropDown/__tests__/DepartmentDropDown.spec.js +1 -1
  220. package/es/list/Dot/Dot.js +3 -3
  221. package/es/list/Dot/__tests__/Dot.spec.js +1 -1
  222. package/es/list/DotNew/DotNew.js +3 -3
  223. package/es/list/DotNew/__tests__/DotNew.spec.js +1 -1
  224. package/es/list/GridStencils/GridStencils.js +2 -2
  225. package/es/list/GridStencils/__tests__/GridStencils.spec.js +1 -1
  226. package/es/list/Icons/AddNewIcon.js +2 -2
  227. package/es/list/Icons/CompleteIcon.js +2 -2
  228. package/es/list/Icons/DeleteIcon.js +2 -2
  229. package/es/list/Icons/EditIcon.js +2 -2
  230. package/es/list/Icons/FloatingIcons.js +3 -3
  231. package/es/list/Icons/ReadUnreadIcon.js +3 -3
  232. package/es/list/Icons/SmartIcon.js +2 -2
  233. package/es/list/Icons/__tests__/AddNewIcon.spec.js +1 -1
  234. package/es/list/Icons/__tests__/CompleteIcon.spec.js +1 -1
  235. package/es/list/Icons/__tests__/DeleteIcon.spec.js +1 -1
  236. package/es/list/Icons/__tests__/EditIcon.spec.js +1 -1
  237. package/es/list/Icons/__tests__/FloatingIcons.spec.js +1 -1
  238. package/es/list/Icons/__tests__/ReadUnreadIcon.spec.js +1 -1
  239. package/es/list/Icons/__tests__/SmartIcon.spec.js +1 -1
  240. package/es/list/Icons/index.js +7 -7
  241. package/es/list/ListLayout/ListLayout.js +3 -3
  242. package/es/list/ListLayout/__tests__/ListLayout.spec.js +1 -1
  243. package/es/list/ListStencils/ListStencils.js +3 -3
  244. package/es/list/ListStencils/__tests__/ListStencils.spec.js +1 -1
  245. package/es/list/SecondaryText/AccountName.js +4 -4
  246. package/es/list/SecondaryText/ContactName.js +5 -5
  247. package/es/list/SecondaryText/DepartmentText.js +2 -2
  248. package/es/list/SecondaryText/Email.js +4 -4
  249. package/es/list/SecondaryText/HappinessRating.js +2 -2
  250. package/es/list/SecondaryText/PhoneNumber.js +4 -4
  251. package/es/list/SecondaryText/PriorityText.js +3 -3
  252. package/es/list/SecondaryText/SecondaryText.js +3 -3
  253. package/es/list/SecondaryText/StatusText.js +3 -3
  254. package/es/list/SecondaryText/TicketId.js +4 -4
  255. package/es/list/SecondaryText/Website.js +4 -4
  256. package/es/list/SecondaryText/__tests__/AccountName.spec.js +1 -1
  257. package/es/list/SecondaryText/__tests__/ContactName.spec.js +1 -1
  258. package/es/list/SecondaryText/__tests__/DepartmentText.spec.js +1 -1
  259. package/es/list/SecondaryText/__tests__/Email.spec.js +1 -1
  260. package/es/list/SecondaryText/__tests__/HappinessRating.spec.js +1 -1
  261. package/es/list/SecondaryText/__tests__/PhoneNumber.spec.js +1 -1
  262. package/es/list/SecondaryText/__tests__/PriorityText.spec.js +1 -1
  263. package/es/list/SecondaryText/__tests__/SecondaryText.spec.js +1 -1
  264. package/es/list/SecondaryText/__tests__/StatusText.spec.js +1 -1
  265. package/es/list/SecondaryText/__tests__/TicketId.spec.js +1 -1
  266. package/es/list/SecondaryText/__tests__/Website.spec.js +1 -1
  267. package/es/list/SecondaryText/index.js +11 -11
  268. package/es/list/SecondryPanel/SecondryPanel.js +4 -4
  269. package/es/list/SecondryPanel/__tests__/SecondryPanel.spec.js +1 -1
  270. package/es/list/SentimentStatus/SentimentStatus.js +2 -2
  271. package/es/list/SentimentStatus/__tests__/SentimentStatus.spec.js +1 -1
  272. package/es/list/Subject/Subject.js +4 -4
  273. package/es/list/Subject/__tests__/Subject.spec.js +1 -1
  274. package/es/list/TagNew/TagNew.js +3 -3
  275. package/es/list/TagNew/__tests__/TagNew.spec.js +1 -1
  276. package/es/list/Thread/Thread.js +3 -3
  277. package/es/list/Thread/__tests__/Thread.spec.js +1 -1
  278. package/es/list/index.js +16 -16
  279. package/es/list/status/StatusDropdown/StatusDropdown.js +5 -5
  280. package/es/list/status/StatusDropdown/__tests__/StatusDropdown.spec.js +1 -1
  281. package/es/list/status/StatusListItem/StatusListItem.js +3 -3
  282. package/es/list/status/StatusListItem/__tests__/StatusListItem.spec.js +1 -1
  283. package/es/list/status/index.js +2 -2
  284. package/es/lookup/EmptyPage/EmptyPage.js +3 -3
  285. package/es/lookup/EmptyPage/__tests__/EmptyPage.spec.js +1 -1
  286. package/es/lookup/Lookup/Lookup.js +4 -4
  287. package/es/lookup/Lookup/__tests__/Lookup.spec.js +1 -1
  288. package/es/lookup/Section/Section.js +2 -2
  289. package/es/lookup/Section/__tests__/Section.spec.js +1 -1
  290. package/es/lookup/header/Close/Close.js +3 -3
  291. package/es/lookup/header/Close/__tests__/Close.spec.js +1 -1
  292. package/es/lookup/header/ModuleHeader/ModuleHeader.js +8 -8
  293. package/es/lookup/header/ModuleHeader/__tests__/ModuleHeader.spec.js +1 -1
  294. package/es/lookup/header/Search/Search.js +4 -4
  295. package/es/lookup/header/Search/__tests__/Search.spec.js +1 -1
  296. package/es/lookup/header/TicketHeader/TicketHeader.js +10 -10
  297. package/es/lookup/header/TicketHeader/__tests__/TicketHeader.spec.js +1 -1
  298. package/es/lookup/header/Title/Title.js +3 -3
  299. package/es/lookup/header/Title/__tests__/Titles.spec.js +1 -1
  300. package/es/lookup/header/ViewDropDown/ViewDropDown.js +3 -3
  301. package/es/lookup/header/ViewDropDown/__test__/ViewDropDown.spec.js +1 -1
  302. package/es/lookup/header/index.js +5 -5
  303. package/es/lookup/index.js +4 -4
  304. package/es/setup/header/Button/Button.js +3 -3
  305. package/es/setup/header/Button/__tests__/Button.spec.js +1 -1
  306. package/es/setup/header/Link/Link.js +4 -4
  307. package/es/setup/header/Link/__tests__/Link.spec.js +1 -1
  308. package/es/setup/header/Search/Search.js +3 -3
  309. package/es/setup/header/Search/__tests__/Search.spec.js +1 -1
  310. package/es/setup/header/Views/Views.js +3 -3
  311. package/es/setup/header/Views/__tests__/Views.spec.js +1 -1
  312. package/es/setup/header/index.js +4 -4
  313. package/es/setup/helptips/Description/Description.js +2 -2
  314. package/es/setup/helptips/Description/__tests__/Description.spec.js +1 -1
  315. package/es/setup/helptips/Link/Link.js +3 -3
  316. package/es/setup/helptips/Link/__tests__/Link.spec.js +1 -1
  317. package/es/setup/helptips/ListGroup/ListGroup.js +2 -2
  318. package/es/setup/helptips/ListGroup/__tests__/ListGroup.spec.js +1 -1
  319. package/es/setup/helptips/Title/Title.js +2 -2
  320. package/es/setup/helptips/Title/__tests__/Title.spec.js +1 -1
  321. package/es/setup/helptips/index.js +4 -4
  322. package/es/setup/index.js +3 -3
  323. package/es/setup/table/Table/Table.js +2 -2
  324. package/es/setup/table/Table/__tests__/Table.spec.js +1 -1
  325. package/es/setup/table/TableBody/TableBody.js +2 -2
  326. package/es/setup/table/TableBody/__tests__/TableBody.spec.js +1 -1
  327. package/es/setup/table/TableData/TableData.js +3 -3
  328. package/es/setup/table/TableData/__tests__/TableData.spec.js +1 -1
  329. package/es/setup/table/TableHead/TableHead.js +3 -3
  330. package/es/setup/table/TableHead/__tests__/TableHead.spec.js +1 -1
  331. package/es/setup/table/TableRow/TableRow.js +3 -3
  332. package/es/setup/table/TableRow/__tests__/TableRow.spec.js +1 -1
  333. package/es/setup/table/Text/Text.js +4 -4
  334. package/es/setup/table/Text/__tests__/Text.spec.js +1 -1
  335. package/es/setup/table/index.js +5 -5
  336. package/es/svg/PlusIcon.js +2 -2
  337. package/es/svg/SnippetIcon.js +2 -2
  338. package/es/svg/TemplateIcon.js +2 -2
  339. package/es/svg/__tests__/PlusIcon.spec.js +1 -1
  340. package/es/svg/__tests__/SnippetIcon.spec.js +1 -1
  341. package/es/svg/__tests__/TemplateIcon.spec.js +1 -1
  342. package/es/svg/index.js +3 -3
  343. package/es/v1/ActionButton/ActionButton.js +3 -3
  344. package/es/v1/AlphabeticList/AlphabeticList.js +3 -3
  345. package/es/v1/Attachment/Attachment.js +4 -4
  346. package/es/v1/AttachmentViewer/AttachmentImage.js +5 -5
  347. package/es/v1/AttachmentViewer/AttachmentViewer.js +11 -11
  348. package/es/v1/ChannelIcon/ChannelIcon.js +5 -5
  349. package/es/v1/Drawer/Drawer.js +6 -6
  350. package/es/v1/ExternalLink/ExternalLink.js +3 -3
  351. package/es/v1/FlipCard/FlipCard.js +7 -7
  352. package/es/v1/FormAction/FormAction.js +3 -3
  353. package/es/v1/FreezeLayer/FreezeLayer.js +5 -5
  354. package/es/v1/GlobalNotification/GlobalNotification.js +6 -6
  355. package/es/v1/IconButton/IconButton.js +3 -3
  356. package/es/v1/Image/Image.js +3 -3
  357. package/es/v1/ImportantNotes/ImportantNotes.js +3 -3
  358. package/es/v1/Link/Link.js +4 -4
  359. package/es/v1/Loader/Loader.js +1 -1
  360. package/es/v1/Message/Message.js +4 -4
  361. package/es/v1/Message/props/propTypes.js +1 -1
  362. package/es/v1/MessageBanner/MessageBanner.js +4 -4
  363. package/es/v1/NewStar/NewStar.js +3 -3
  364. package/es/v1/PlusIcon/PlusIcon.js +4 -4
  365. package/es/v1/Separator/Separator.js +3 -3
  366. package/es/v1/TagWithIcon/TagWithIcon.js +3 -3
  367. package/es/v1/ToastMessage/ToastMessage.js +4 -4
  368. package/es/v1/Upload/Upload.js +4 -4
  369. package/es/v1/actions/AutoClose.js +2 -2
  370. package/es/v1/alert/AlertClose/AlertClose.js +2 -2
  371. package/es/v1/alert/AlertHeader/AlertHeader.js +7 -7
  372. package/es/v1/alert/AlertLookup/AlertLookup.js +7 -7
  373. package/es/v1/alert/alertIcons/AlarmAlertIcon.js +3 -3
  374. package/es/v1/alert/alertIcons/AlertIcons.js +9 -9
  375. package/es/v1/alert/alertIcons/DangerAlertIcon.js +3 -3
  376. package/es/v1/alert/alertIcons/ErrorAlertIcon.js +3 -3
  377. package/es/v1/alert/alertIcons/InfoAlertIcon.js +3 -3
  378. package/es/v1/alert/alertIcons/NotificationAlertIcon.js +3 -3
  379. package/es/v1/alert/alertIcons/SuccessAlertIcon.js +3 -3
  380. package/es/v1/alert/alertIcons/WarningAlertIcon.js +3 -3
  381. package/es/v1/alert/alertIcons/index.js +8 -8
  382. package/es/v1/alert/index.js +2 -2
  383. package/es/v1/avatar/AvatarClose/AvatarClose.js +3 -3
  384. package/es/v1/avatar/AvatarCollision/AvatarCollision.js +3 -3
  385. package/es/v1/avatar/AvatarIcon/AvatarIcon.js +3 -3
  386. package/es/v1/avatar/AvatarStatus/AvatarStatus.js +3 -3
  387. package/es/v1/avatar/AvatarThread/AvatarThread.js +3 -3
  388. package/es/v1/avatar/AvatarUser/AvatarUser.js +4 -4
  389. package/es/v1/avatar/AvatarWithTeam/AvatarWithTeam.js +3 -3
  390. package/es/v1/avatar/index.js +7 -7
  391. package/es/v1/dropdown/ToggleDropDown/ToggleDropDown.js +4 -4
  392. package/es/v1/emptystate/CommonEmptyState/CommonEmptyState.js +4 -4
  393. package/es/v1/emptystate/EditionPage/EditionPage.js +3 -3
  394. package/es/v1/errorstate/Inconvenience/Inconvenience.js +4 -4
  395. package/es/v1/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +4 -4
  396. package/es/v1/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +4 -4
  397. package/es/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +4 -4
  398. package/es/v1/errorstate/UrlNotFound/UrlNotFound.js +4 -4
  399. package/es/v1/errorstate/WillBeRightBack/WillBeRightBack.js +4 -4
  400. package/es/v1/form/fields/CheckBoxField/CheckBoxField.js +5 -5
  401. package/es/v1/form/fields/CheckBoxField/props/defaultProps.js +1 -1
  402. package/es/v1/form/fields/CheckBoxField/props/propTypes.js +1 -1
  403. package/es/v1/form/fields/CurrencyField/CurrencyField.js +5 -5
  404. package/es/v1/form/fields/CurrencyField/props/defaultProps.js +1 -1
  405. package/es/v1/form/fields/CurrencyField/props/propTypes.js +1 -1
  406. package/es/v1/form/fields/DateField/DateField.js +5 -5
  407. package/es/v1/form/fields/DateField/props/defaultProps.js +1 -1
  408. package/es/v1/form/fields/DateField/props/propTypes.js +1 -1
  409. package/es/v1/form/fields/FieldContainer/FieldContainer.js +3 -3
  410. package/es/v1/form/fields/FieldContainer/props/defaultProps.js +1 -1
  411. package/es/v1/form/fields/MultiSelectField/MultiSelectField.js +5 -5
  412. package/es/v1/form/fields/MultiSelectField/props/defaultProps.js +1 -1
  413. package/es/v1/form/fields/MultiSelectField/props/propTypes.js +1 -1
  414. package/es/v1/form/fields/PhoneField/PhoneField.js +6 -6
  415. package/es/v1/form/fields/RadioField/RadioField.js +5 -5
  416. package/es/v1/form/fields/SelectField/SelectField.js +5 -5
  417. package/es/v1/form/fields/SelectField/props/defaultProps.js +1 -1
  418. package/es/v1/form/fields/SelectField/props/propTypes.js +1 -1
  419. package/es/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +5 -5
  420. package/es/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +7 -7
  421. package/es/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +1 -1
  422. package/es/v1/form/fields/TagsMultiSelectField/props/propTypes.js +1 -1
  423. package/es/v1/form/fields/TextBoxField/TextBoxField.js +5 -5
  424. package/es/v1/form/fields/TextBoxField/props/defaultProps.js +1 -1
  425. package/es/v1/form/fields/TextBoxField/props/propTypes.js +1 -1
  426. package/es/v1/form/fields/TextEditor/TextEditor.js +4 -4
  427. package/es/v1/form/fields/TextEditorField/TextEditorField.js +6 -6
  428. package/es/v1/form/fields/TextEditorField/props/defaultProps.js +1 -1
  429. package/es/v1/form/fields/TextEditorField/props/propTypes.js +1 -1
  430. package/es/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +5 -5
  431. package/es/v1/form/fields/TextareaField/TextareaField.js +5 -5
  432. package/es/v1/form/fields/TextareaField/props/defaultProps.js +1 -1
  433. package/es/v1/form/fields/TextareaField/props/propTypes.js +1 -1
  434. package/es/v1/form/fields/ValidationMessage/ValidationMessage.js +3 -3
  435. package/es/v1/form/fields/index.js +16 -16
  436. package/es/v1/form/layout/Field/Field.js +3 -3
  437. package/es/v1/form/layout/Section/Section.js +2 -2
  438. package/es/v1/form/layout/index.js +2 -2
  439. package/es/v1/layout/SetupDetailLayout/SetupDetailLayout.js +3 -3
  440. package/es/v1/layout/SetupDetailLayout/index.js +4 -4
  441. package/es/v1/layout/SubtabLayout/SubtabLayout.js +4 -4
  442. package/es/v1/layout/SubtabLayout/index.js +4 -4
  443. package/es/v1/list/AvatarFlip/AvatarFlip.js +4 -4
  444. package/es/v1/list/BluePrintStatus/BluePrintStatus.js +2 -2
  445. package/es/v1/list/Comment/Comment.js +3 -3
  446. package/es/v1/list/DepartmentDropDown/DepartmentDropDown.js +5 -5
  447. package/es/v1/list/Dot/Dot.js +3 -3
  448. package/es/v1/list/DotNew/DotNew.js +3 -3
  449. package/es/v1/list/GridStencils/GridStencils.js +2 -2
  450. package/es/v1/list/Icons/AddNewIcon.js +2 -2
  451. package/es/v1/list/Icons/CompleteIcon.js +2 -2
  452. package/es/v1/list/Icons/DeleteIcon.js +2 -2
  453. package/es/v1/list/Icons/EditIcon.js +2 -2
  454. package/es/v1/list/Icons/FloatingIcons.js +3 -3
  455. package/es/v1/list/Icons/ReadUnreadIcon.js +3 -3
  456. package/es/v1/list/Icons/SmartIcon.js +2 -2
  457. package/es/v1/list/Icons/index.js +7 -7
  458. package/es/v1/list/ListLayout/ListLayout.js +3 -3
  459. package/es/v1/list/ListStencils/ListStencils.js +3 -3
  460. package/es/v1/list/SecondaryText/AccountName.js +4 -4
  461. package/es/v1/list/SecondaryText/ContactName.js +5 -5
  462. package/es/v1/list/SecondaryText/DepartmentText.js +2 -2
  463. package/es/v1/list/SecondaryText/Email.js +4 -4
  464. package/es/v1/list/SecondaryText/HappinessRating.js +2 -2
  465. package/es/v1/list/SecondaryText/PhoneNumber.js +4 -4
  466. package/es/v1/list/SecondaryText/PriorityText.js +3 -3
  467. package/es/v1/list/SecondaryText/SecondaryText.js +3 -3
  468. package/es/v1/list/SecondaryText/StatusText.js +3 -3
  469. package/es/v1/list/SecondaryText/TicketId.js +4 -4
  470. package/es/v1/list/SecondaryText/Website.js +4 -4
  471. package/es/v1/list/SecondaryText/index.js +11 -11
  472. package/es/v1/list/SecondryPanel/SecondryPanel.js +4 -4
  473. package/es/v1/list/SentimentStatus/SentimentStatus.js +2 -2
  474. package/es/v1/list/Subject/Subject.js +4 -4
  475. package/es/v1/list/TagNew/TagNew.js +3 -3
  476. package/es/v1/list/Thread/Thread.js +3 -3
  477. package/es/v1/list/index.js +16 -16
  478. package/es/v1/list/status/StatusDropdown/StatusDropdown.js +5 -5
  479. package/es/v1/list/status/StatusListItem/StatusListItem.js +3 -3
  480. package/es/v1/list/status/index.js +2 -2
  481. package/es/v1/lookup/EmptyPage/EmptyPage.js +3 -3
  482. package/es/v1/lookup/Lookup/Lookup.js +4 -4
  483. package/es/v1/lookup/Section/Section.js +2 -2
  484. package/es/v1/lookup/header/Close/Close.js +3 -3
  485. package/es/v1/lookup/header/ModuleHeader/ModuleHeader.js +8 -8
  486. package/es/v1/lookup/header/Search/Search.js +4 -4
  487. package/es/v1/lookup/header/TicketHeader/TicketHeader.js +10 -10
  488. package/es/v1/lookup/header/Title/Title.js +3 -3
  489. package/es/v1/lookup/header/ViewDropDown/ViewDropDown.js +3 -3
  490. package/es/v1/lookup/header/index.js +5 -5
  491. package/es/v1/notification/DesktopNotification/DesktopNotification.js +6 -6
  492. package/es/v1/notification/DesktopNotification/props/defaultProps.js +1 -1
  493. package/es/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +5 -5
  494. package/es/v1/notification/DesktopNotificationHeader/props/defaultProps.js +1 -1
  495. package/es/v1/setup/header/Button/Button.js +3 -3
  496. package/es/v1/setup/header/Link/Link.js +4 -4
  497. package/es/v1/setup/header/Search/Search.js +3 -3
  498. package/es/v1/setup/header/Views/Views.js +3 -3
  499. package/es/v1/setup/header/index.js +4 -4
  500. package/es/v1/setup/helptips/Description/Description.js +2 -2
  501. package/es/v1/setup/helptips/Link/Link.js +3 -3
  502. package/es/v1/setup/helptips/ListGroup/ListGroup.js +2 -2
  503. package/es/v1/setup/helptips/Title/Title.js +2 -2
  504. package/es/v1/setup/helptips/index.js +4 -4
  505. package/es/v1/setup/index.js +3 -3
  506. package/es/v1/setup/table/Table/Table.js +2 -2
  507. package/es/v1/setup/table/TableBody/TableBody.js +2 -2
  508. package/es/v1/setup/table/TableData/TableData.js +3 -3
  509. package/es/v1/setup/table/TableHead/TableHead.js +3 -3
  510. package/es/v1/setup/table/TableRow/TableRow.js +3 -3
  511. package/es/v1/setup/table/Text/Text.js +4 -4
  512. package/es/v1/setup/table/index.js +5 -5
  513. package/es/v1/svg/PlusIcon.js +2 -2
  514. package/es/v1/svg/SnippetIcon.js +2 -2
  515. package/es/v1/svg/TemplateIcon.js +2 -2
  516. package/es/v1/svg/index.js +3 -3
  517. package/es/version2/AlertClose/AlertClose.js +2 -2
  518. package/es/version2/AlertClose/__tests__/AlertClose.spec.js +1 -1
  519. package/es/version2/GlobalNotification/GlobalNotification.js +6 -6
  520. package/es/version2/GlobalNotification/__tests__/GlobalNotification.spec.js +1 -1
  521. package/es/version2/alertIcons/AlarmAlertIcon.js +3 -3
  522. package/es/version2/alertIcons/AlertIcons.js +9 -9
  523. package/es/version2/alertIcons/DangerAlertIcon.js +3 -3
  524. package/es/version2/alertIcons/ErrorAlertIcon.js +3 -3
  525. package/es/version2/alertIcons/InfoAlertIcon.js +3 -3
  526. package/es/version2/alertIcons/NotificationAlertIcon.js +3 -3
  527. package/es/version2/alertIcons/SuccessAlertIcon.js +3 -3
  528. package/es/version2/alertIcons/WarningAlertIcon.js +3 -3
  529. package/es/version2/alertIcons/__tests__/AlarmAlertIcon.spec.js +1 -1
  530. package/es/version2/alertIcons/__tests__/AlertIcons.spec.js +1 -1
  531. package/es/version2/alertIcons/__tests__/DangerAlertIcon.spec.js +1 -1
  532. package/es/version2/alertIcons/__tests__/ErrorAlertIcon.spec.js +1 -1
  533. package/es/version2/alertIcons/__tests__/InfoAlertIcon.spec.js +1 -1
  534. package/es/version2/alertIcons/__tests__/NotificationAlertIcon.spec.js +1 -1
  535. package/es/version2/alertIcons/__tests__/SuccessAlertIcon.spec.js +1 -1
  536. package/es/version2/alertIcons/__tests__/WarningAlertIcon.spec.js +1 -1
  537. package/es/version2/alertIcons/index.js +8 -8
  538. package/es/version2/errorstate/Inconvenience/Inconvenience.js +4 -4
  539. package/es/version2/errorstate/Inconvenience/__tests__/Inconvenience.spec.js +1 -1
  540. package/es/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +4 -4
  541. package/es/version2/errorstate/OopsSomethingMiss/__tests__/OopsSomethingMiss.spec.js +1 -1
  542. package/es/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +4 -4
  543. package/es/version2/errorstate/UnableToProcessRequest/__tests__/UnableToProcessRequest.spec.js +1 -1
  544. package/es/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +4 -4
  545. package/es/version2/errorstate/UnauthorizedLogin/__tests__/UnauthorizedLogin.spec.js +1 -1
  546. package/es/version2/errorstate/UrlNotFound/UrlNotFound.js +4 -4
  547. package/es/version2/errorstate/UrlNotFound/__tests__/UrlNotFound.spec.js +1 -1
  548. package/es/version2/errorstate/WillBeRightBack/WillBeRightBack.js +4 -4
  549. package/es/version2/errorstate/WillBeRightBack/__tests__/WillBeRightBack.spec.js +1 -1
  550. package/es/version2/errorstate/index.js +6 -6
  551. package/es/version2/index.js +8 -8
  552. package/es/version2/lookup/AlertHeader/AlertHeader.js +7 -7
  553. package/es/version2/lookup/AlertHeader/__tests__/AlertHeader.spec.js +1 -1
  554. package/es/version2/lookup/AlertLookup/AlertLookup.js +7 -7
  555. package/es/version2/lookup/AlertLookup/__tests__/AlertLookup.spec.js +1 -1
  556. package/es/version2/lookup/index.js +2 -2
  557. package/es/version2/notification/DesktopNotification/DesktopNotification.js +6 -6
  558. package/es/version2/notification/DesktopNotification/__tests__/DesktopNotification.spec.js +1 -1
  559. package/es/version2/notification/DesktopNotification/props/defaultProps.js +1 -1
  560. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +5 -5
  561. package/es/version2/notification/DesktopNotificationHeader/__tests__/DesktopNotificationHeader.spec.js +1 -1
  562. package/es/version2/notification/DesktopNotificationHeader/props/defaultProps.js +1 -1
  563. package/es/version2/notification/index.js +3 -3
  564. package/lib/Attachment/Attachment.module.css +7 -3
  565. package/lib/AttachmentViewer/Attachment.js +78 -1
  566. package/lib/AttachmentViewer/AttachmentViewer.js +262 -16
  567. package/lib/AttachmentViewer/AttachmentViewer.module.css +125 -5
  568. package/lib/AttachmentViewer/utils.js +24 -0
  569. package/lib/DotProvider/utils/themeAppearanceAssetsConfig.js +3 -3
  570. package/lib/DotProvider/utils/themeColorAssetsConfig.js +45 -45
  571. package/lib/Loader/Loader.module.css +8 -7
  572. package/lib/common/dot_common.module.css +37 -2
  573. package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +116 -116
  574. package/lib/form/fields/TextEditor/TextEditor.js +2 -7
  575. package/package.json +4 -4
  576. package/result.json +1 -1
  577. package/unittest/index.html +2 -2
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { render } from '@testing-library/react';
3
- import PlusIcon from '../PlusIcon';
3
+ import PlusIcon from "../PlusIcon";
4
4
  describe('PlusIcon', () => {
5
5
  test('rendering the defult props', () => {
6
6
  const {
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { render } from '@testing-library/react';
3
- import SnippetIcon from '../SnippetIcon';
3
+ import SnippetIcon from "../SnippetIcon";
4
4
  describe('SnippetIcon', () => {
5
5
  test('rendering the defult props', () => {
6
6
  const {
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { render } from '@testing-library/react';
3
- import TemplateIcon from '../TemplateIcon';
3
+ import TemplateIcon from "../TemplateIcon";
4
4
  describe('TemplateIcon', () => {
5
5
  test('rendering the defult props', () => {
6
6
  const {
package/es/svg/index.js CHANGED
@@ -1,3 +1,3 @@
1
- export { default as PlusIcon } from './PlusIcon';
2
- export { default as SnippetIcon } from './SnippetIcon';
3
- export { default as TemplateIcon } from './TemplateIcon';
1
+ export { default as PlusIcon } from "./PlusIcon";
2
+ export { default as SnippetIcon } from "./SnippetIcon";
3
+ export { default as TemplateIcon } from "./TemplateIcon";
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
4
  import Popup from '@zohodesk/components/es/v1/Popup/Popup';
5
5
  import { Icon } from '@zohodesk/icons';
6
6
  import Button from '@zohodesk/components/es/v1/Button/Button';
@@ -8,7 +8,7 @@ import { Container, Box } from '@zohodesk/components/es/v1/Layout';
8
8
  import ResponsiveDropBox from '@zohodesk/components/es/v1/ResponsiveDropBox/ResponsiveDropBox';
9
9
  import CssProvider from '@zohodesk/components/es/Provider/CssProvider';
10
10
  import btnStyle from '@zohodesk/components/es/semantic/Button/semanticButton.module.css';
11
- import style from '../../ActionButton/ActionButton.module.css';
11
+ import style from "../../ActionButton/ActionButton.module.css";
12
12
 
13
13
  function ActionButton(props) {
14
14
  let {
@@ -1,11 +1,11 @@
1
1
  /*** Libraries ***/
2
2
  import React, { memo } from 'react';
3
- import { AlphabeticList_defaultProps, AlphabeticListItem_defaultProps } from './props/defaultProps';
4
- import { AlphabeticList_propTypes, AlphabeticListItem_propTypes, AlphabeticCharacters, NumberList, AlphabeticCharactersWithHash } from './props/propTypes';
3
+ import { AlphabeticList_defaultProps, AlphabeticListItem_defaultProps } from "./props/defaultProps";
4
+ import { AlphabeticList_propTypes, AlphabeticListItem_propTypes, AlphabeticCharacters, NumberList, AlphabeticCharactersWithHash } from "./props/propTypes";
5
5
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
6
6
  /*** CSS ***/
7
7
 
8
- import style from '../../AlphabeticList/AlphabeticList.module.css';
8
+ import style from "../../AlphabeticList/AlphabeticList.module.css";
9
9
  const AlphabeticListItemMemo = /*#__PURE__*/memo(AlphabeticListItem);
10
10
 
11
11
  function AlphabeticList(props) {
@@ -1,13 +1,13 @@
1
1
  /**** Libraries ****/
2
2
  import React from 'react';
3
- import { defaultProps } from './props/defaultProps';
4
- import { propTypes } from './props/propTypes';
3
+ import { defaultProps } from "./props/defaultProps";
4
+ import { propTypes } from "./props/propTypes";
5
5
  import { Icon } from '@zohodesk/icons';
6
6
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
7
- import Link from '../Link/Link';
7
+ import Link from "../Link/Link";
8
8
  /**** CSS ****/
9
9
 
10
- import style from '../../Attachment/Attachment.module.css';
10
+ import style from "../../Attachment/Attachment.module.css";
11
11
 
12
12
  const Attachment = props => {
13
13
  const {
@@ -4,13 +4,13 @@
4
4
  import React, { useRef, useEffect, useState } from 'react';
5
5
  import { useEffectCallOnlyAfterState } from '@zohodesk/hooks';
6
6
  import { Container } from '@zohodesk/components/es/Layout';
7
- import { AttachmentImage_defaultProps } from './props/defaultProps';
8
- import { AttachmentImage_propTypes } from './props/propTypes';
9
- import { checkImageValidity } from '../../AttachmentViewer/utils';
10
- import Image from '../Image/Image';
7
+ import { AttachmentImage_defaultProps } from "./props/defaultProps";
8
+ import { AttachmentImage_propTypes } from "./props/propTypes";
9
+ import { checkImageValidity } from "../../AttachmentViewer/utils";
10
+ import Image from "../Image/Image";
11
11
  /** * CSS ** */
12
12
 
13
- import style from '../../AttachmentViewer/AttachmentViewer.module.css';
13
+ import style from "../../AttachmentViewer/AttachmentViewer.module.css";
14
14
 
15
15
  const AttachmentImage = props => {
16
16
  const {
@@ -1,20 +1,20 @@
1
1
  import React, { Component } from 'react';
2
- import { AttachmentViewer_defaultProps } from './props/defaultProps';
3
- import { AttachmentViewer_propTypes } from './props/propTypes';
2
+ import { AttachmentViewer_defaultProps } from "./props/defaultProps";
3
+ import { AttachmentViewer_propTypes } from "./props/propTypes";
4
4
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
5
5
  import { Icon } from '@zohodesk/icons';
6
6
  import Avatar from '@zohodesk/components/es/v1/Avatar/Avatar';
7
7
  import { ResponsiveReceiver } from '@zohodesk/components/es/Responsive/CustomResponsive';
8
8
  import { getUniqueId } from '@zohodesk/components/es/Provider/IdProvider';
9
- import AttachmentImage from './AttachmentImage';
10
- import Link from '../Link/Link';
11
- import IconButton from '../IconButton/IconButton';
12
- import FreezeLayer from '../FreezeLayer/FreezeLayer';
13
- import { isAudioFile, getExtensionFromFileName } from '../../AttachmentViewer/Attachment';
14
- import { checkFileSourcesValidation } from '../../AttachmentViewer/utils';
15
- import audioThumbNail from '../../../images/audio_thumbnail.png';
16
- import { shallowDiff } from '../../utils/General';
17
- import style from '../../AttachmentViewer/AttachmentViewer.module.css';
9
+ import AttachmentImage from "./AttachmentImage";
10
+ import Link from "../Link/Link";
11
+ import IconButton from "../IconButton/IconButton";
12
+ import FreezeLayer from "../FreezeLayer/FreezeLayer";
13
+ import { isAudioFile, getExtensionFromFileName } from "../../AttachmentViewer/Attachment";
14
+ import { checkFileSourcesValidation } from "../../AttachmentViewer/utils";
15
+ import audioThumbNail from "../../../images/audio_thumbnail.png";
16
+ import { shallowDiff } from "../../utils/General";
17
+ import style from "../../AttachmentViewer/AttachmentViewer.module.css";
18
18
  export default class AttachmentViewer extends Component {
19
19
  constructor(props) {
20
20
  super(props);
@@ -1,11 +1,11 @@
1
1
  import React, { Component } from 'react';
2
2
  import { Icon } from '@zohodesk/icons';
3
3
  import Avatar from '@zohodesk/components/es/v1/Avatar/Avatar';
4
- import AvatarIcon from '../avatar/AvatarIcon/AvatarIcon';
5
- import { defaultProps } from './props/defaultProps';
6
- import { propTypes } from './props/propTypes';
7
- import { getChannelMappingObj } from '../utils/ChannelIconMapping';
8
- import style from '../../ChannelIcon/ChannelIcon.module.css';
4
+ import AvatarIcon from "../avatar/AvatarIcon/AvatarIcon";
5
+ import { defaultProps } from "./props/defaultProps";
6
+ import { propTypes } from "./props/propTypes";
7
+ import { getChannelMappingObj } from "../utils/ChannelIconMapping";
8
+ import style from "../../ChannelIcon/ChannelIcon.module.css";
9
9
 
10
10
  const ChannelIcon = props => {
11
11
  let {
@@ -1,6 +1,6 @@
1
1
  import React, { useRef } from 'react';
2
- import { Header_defaultProps, Footer_defaultProps, Drawer_defaultProps } from './props/defaultProps';
3
- import { Header_propTypes, Content_propTypes, Footer_propTypes, Drawer_propTypes } from './props/propTypes';
2
+ import { Header_defaultProps, Footer_defaultProps, Drawer_defaultProps } from "./props/defaultProps";
3
+ import { Header_propTypes, Content_propTypes, Footer_propTypes, Drawer_propTypes } from "./props/propTypes";
4
4
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
5
5
  import { Card, CardHeader, CardContent } from '@zohodesk/components/es/v1/Card';
6
6
  import VelocityAnimationGroup from '@zohodesk/components/es/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup';
@@ -9,10 +9,10 @@ import { Icon } from '@zohodesk/icons';
9
9
  import { useZIndex } from '@zohodesk/components/es/Provider/ZindexProvider';
10
10
  import FocusScope from '@zohodesk/a11y/es/FocusScope/FocusScope';
11
11
  import Heading from '@zohodesk/components/es/v1/Heading/Heading';
12
- import FreezeLayer from '../FreezeLayer/FreezeLayer';
13
- import FormAction from '../FormAction/FormAction';
14
- import IconButton from '../IconButton/IconButton';
15
- import style from '../../Drawer/Drawer.module.css';
12
+ import FreezeLayer from "../FreezeLayer/FreezeLayer";
13
+ import FormAction from "../FormAction/FormAction";
14
+ import IconButton from "../IconButton/IconButton";
15
+ import style from "../../Drawer/Drawer.module.css";
16
16
  export function Header(props) {
17
17
  let {
18
18
  title,
@@ -1,10 +1,10 @@
1
1
  /**** Libraries ****/
2
2
  import React from 'react';
3
- import { defaultProps } from './props/defaultProps';
4
- import { propTypes } from './props/propTypes';
3
+ import { defaultProps } from "./props/defaultProps";
4
+ import { propTypes } from "./props/propTypes";
5
5
  /**** CSS ****/
6
6
 
7
- import style from '../../ExternalLink/ExternalLink.module.css';
7
+ import style from "../../ExternalLink/ExternalLink.module.css";
8
8
 
9
9
  const ExternalLink = props => {
10
10
  const {
@@ -1,14 +1,14 @@
1
1
  import React from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
4
  import CheckBox from '@zohodesk/components/es/v1/CheckBox/CheckBox';
5
5
  import { Container } from '@zohodesk/components/es/v1/Layout';
6
6
  import AvatarSize from '@zohodesk/components/es/Provider/AvatarSize';
7
- import ChannelIcon from '../ChannelIcon/ChannelIcon';
8
- import AvatarIcon from '../avatar/AvatarIcon/AvatarIcon';
9
- import AvatarUser from '../avatar/AvatarUser/AvatarUser';
10
- import { stopBubbling } from '../../utils/General';
11
- import style from '../../FlipCard/FlipCard.module.css';
7
+ import ChannelIcon from "../ChannelIcon/ChannelIcon";
8
+ import AvatarIcon from "../avatar/AvatarIcon/AvatarIcon";
9
+ import AvatarUser from "../avatar/AvatarUser/AvatarUser";
10
+ import { stopBubbling } from "../../utils/General";
11
+ import style from "../../FlipCard/FlipCard.module.css";
12
12
  export default function FlipCard(props) {
13
13
  let {
14
14
  id,
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
4
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
5
- import style from '../../FormAction/FormAction.module.css';
5
+ import style from "../../FormAction/FormAction.module.css";
6
6
  export const LeftSide = props => {
7
7
  props.children;
8
8
  };
@@ -1,13 +1,13 @@
1
1
  import React from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
4
  import { Container } from '@zohodesk/components/es/v1/Layout';
5
5
  import { mergeStyle } from '@zohodesk/utils';
6
6
  import VelocityAnimationGroup from '@zohodesk/components/es/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup';
7
7
  import { useZIndex } from '@zohodesk/components/es/Provider/ZindexProvider';
8
- import cssJSLogic from '../../FreezeLayer/css/cssJSLogic';
9
- import useFreezeLayer from '../../Hooks/useFreezeLayer';
10
- import style from '../../FreezeLayer/css/FreezeLayer.module.css';
8
+ import cssJSLogic from "../../FreezeLayer/css/cssJSLogic";
9
+ import useFreezeLayer from "../../Hooks/useFreezeLayer";
10
+ import style from "../../FreezeLayer/css/FreezeLayer.module.css";
11
11
  export default function FreezeLayer(props) {
12
12
  let {
13
13
  isActive: propsActive,
@@ -1,12 +1,12 @@
1
1
  import React, { useEffect } from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes, UI_propTypes, new_propTypes } from './props/propTypes';
4
- import AutoClose from '../../actions/AutoClose';
5
- import AlertIcons from '../alert/alertIcons/AlertIcons';
6
- import AlertClose from '../alert/AlertClose/AlertClose';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes, UI_propTypes, new_propTypes } from "./props/propTypes";
4
+ import AutoClose from "../../actions/AutoClose";
5
+ import AlertIcons from "../alert/alertIcons/AlertIcons";
6
+ import AlertClose from "../alert/AlertClose/AlertClose";
7
7
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
8
8
  import { cancelBubblingEffect } from '@zohodesk/components/es/utils/Common';
9
- import style from '../../version2/GlobalNotification/GlobalNotification.module.css';
9
+ import style from "../../version2/GlobalNotification/GlobalNotification.module.css";
10
10
  export default function GlobalNotification(props) {
11
11
  let {
12
12
  type,
@@ -1,11 +1,11 @@
1
1
  import React, { useState } from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
4
  import { Icon } from '@zohodesk/icons';
5
5
  import { Container } from '@zohodesk/components/es/v1/Layout';
6
6
  import btnStyle from '@zohodesk/components/es/semantic/Button/semanticButton.module.css';
7
7
  import RippleEffect from '@zohodesk/components/es/v1/RippleEffect/RippleEffect';
8
- import style from '../../IconButton/IconButton.module.css';
8
+ import style from "../../IconButton/IconButton.module.css";
9
9
  export default function IconButton(props) {
10
10
  let {
11
11
  palette,
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
4
- import style from '../../Image/Image.module.css';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
+ import style from "../../Image/Image.module.css";
5
5
  export default function Image(props) {
6
6
  let {
7
7
  alt,
@@ -1,9 +1,9 @@
1
1
  import React from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
4
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
5
5
  import { Icon } from '@zohodesk/icons';
6
- import style from '../../ImportantNotes/ImportantNotes.module.css';
6
+ import style from "../../ImportantNotes/ImportantNotes.module.css";
7
7
  export default function ImportantNotes(props) {
8
8
  let {
9
9
  text,
@@ -1,9 +1,9 @@
1
1
  import React, { useContext, useRef } from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
4
  import { cancelBubblingEffect } from '@zohodesk/components/es/utils/Common';
5
- import LinkContext from '../../Link/LinkContext';
6
- import style from '../../Link/Link.module.css';
5
+ import LinkContext from "../../Link/LinkContext";
6
+ import style from "../../Link/Link.module.css";
7
7
  export default function Link(props) {
8
8
  let {
9
9
  children,
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { useZIndex } from '@zohodesk/components/es/Provider/ZindexProvider';
3
- import style from '../../Loader/Loader.module.css';
3
+ import style from "../../Loader/Loader.module.css";
4
4
  export default function Loader() {
5
5
  let getNextId = useZIndex();
6
6
  let Zindex = getNextId();
@@ -1,9 +1,9 @@
1
1
  import React, { useState, useEffect } from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes, MessageUI_propTypes, MessageNew_propTypes } from './props/propTypes';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes, MessageUI_propTypes, MessageNew_propTypes } from "./props/propTypes";
4
4
  import { Icon } from '@zohodesk/icons';
5
- import AutoClose from '../actions/AutoClose';
6
- import style from '../../Message/Message.module.css';
5
+ import AutoClose from "../actions/AutoClose";
6
+ import style from "../../Message/Message.module.css";
7
7
  export default function Message(props) {
8
8
  // constructor(props) {
9
9
  // super(props);
@@ -1,5 +1,5 @@
1
1
  import PropTypes from 'prop-types';
2
- import { propTypes as AutoClose_PropTypes } from '../../actions/props/propTypes';
2
+ import { propTypes as AutoClose_PropTypes } from "../../actions/props/propTypes";
3
3
  export const propTypes = {
4
4
  hideMessage: PropTypes.func,
5
5
  showMessage: PropTypes.bool,
@@ -1,10 +1,10 @@
1
1
  import React from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
4
- import Link from '../Link/Link';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
+ import Link from "../Link/Link";
5
5
  import { Icon } from '@zohodesk/icons';
6
6
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
7
- import style from '../../MessageBanner/MessageBanner.module.css';
7
+ import style from "../../MessageBanner/MessageBanner.module.css";
8
8
  export default function MessageBanner(props) {
9
9
  let {
10
10
  type,
@@ -1,9 +1,9 @@
1
1
  import React from 'react';
2
2
  import { Icon } from '@zohodesk/icons';
3
3
  import { Container } from '@zohodesk/components/es/v1/Layout';
4
- import { defaultProps } from './props/defaultProps';
5
- import { propTypes } from './props/propTypes';
6
- import style from '../../NewStar/NewStar.module.css';
4
+ import { defaultProps } from "./props/defaultProps";
5
+ import { propTypes } from "./props/propTypes";
6
+ import style from "../../NewStar/NewStar.module.css";
7
7
 
8
8
  const NewStar = props => {
9
9
  const {
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
4
- import style from '../../PlusIcon/PlusIcon.module.css';
5
- import AvatarIcon from '../avatar/AvatarIcon/AvatarIcon';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
+ import style from "../../PlusIcon/PlusIcon.module.css";
5
+ import AvatarIcon from "../avatar/AvatarIcon/AvatarIcon";
6
6
  export default function PlusIcon(props) {
7
7
  let {
8
8
  dataId,
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
2
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
3
- import { defaultProps } from './props/defaultProps';
4
- import { propTypes } from './props/propTypes';
5
- import style from '../../Separator/Separator.module.css';
3
+ import { defaultProps } from "./props/defaultProps";
4
+ import { propTypes } from "./props/propTypes";
5
+ import style from "../../Separator/Separator.module.css";
6
6
  export default function Separator(props) {
7
7
  const {
8
8
  children,
@@ -1,9 +1,9 @@
1
1
  import React from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
4
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
5
5
  import Icon from '@zohodesk/icons/es/Icon';
6
- import style from '../../TagWithIcon/TagWithIcon.module.css';
6
+ import style from "../../TagWithIcon/TagWithIcon.module.css";
7
7
  export default function TagWithIcon(props) {
8
8
  const {
9
9
  text,
@@ -1,16 +1,16 @@
1
1
  import React, { useState } from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes'; //components
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes"; //components
4
4
 
5
5
  import { cancelBubblingEffect } from '@zohodesk/components/es/utils/Common';
6
6
  import { Icon } from '@zohodesk/icons';
7
7
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
8
8
  import { useZIndex } from '@zohodesk/components/es/Provider/ZindexProvider';
9
9
  import { useUniqueId } from '@zohodesk/components/es/Provider/IdProvider';
10
- import AutoClose from '../actions/AutoClose';
10
+ import AutoClose from "../actions/AutoClose";
11
11
  import a11yStyle from '@zohodesk/components/es/semantic/Button/semanticButton.module.css'; //style
12
12
 
13
- import style from '../../ToastMessage/ToastMessage.module.css';
13
+ import style from "../../ToastMessage/ToastMessage.module.css";
14
14
 
15
15
  function ToastMessageUI(props) {
16
16
  let [messageState, setMessageState] = useState(props.messageState);
@@ -1,10 +1,10 @@
1
1
  import React from 'react';
2
- import { defaultProps } from './props/defaultProps';
3
- import { propTypes } from './props/propTypes';
2
+ import { defaultProps } from "./props/defaultProps";
3
+ import { propTypes } from "./props/propTypes";
4
4
  import { Icon } from '@zohodesk/icons';
5
5
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
6
- import Image from '../Image/Image';
7
- import style from '../../Upload/Upload.module.css';
6
+ import Image from "../Image/Image";
7
+ import style from "../../Upload/Upload.module.css";
8
8
  export default function Upload(props) {
9
9
  let {
10
10
  isPreview,
@@ -1,7 +1,7 @@
1
1
  import React, { useState, useEffect } from 'react';
2
2
  import { cancelBubblingEffect } from '@zohodesk/components/es/utils/Common';
3
- import { defaultProps } from './props/defaultProps';
4
- import { propTypes } from './props/propTypes';
3
+ import { defaultProps } from "./props/defaultProps";
4
+ import { propTypes } from "./props/propTypes";
5
5
  export default function AutoClose(props) {
6
6
  let {
7
7
  Element,
@@ -1,9 +1,9 @@
1
1
  /*** Libraries ***/
2
2
  import React, { memo } from 'react';
3
- import { propTypes } from './props/propTypes';
3
+ import { propTypes } from "./props/propTypes";
4
4
  import { Icon } from '@zohodesk/icons';
5
5
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
6
- import style from '../../../version2/AlertClose/AlertClose.module.css';
6
+ import style from "../../../version2/AlertClose/AlertClose.module.css";
7
7
 
8
8
  function AlertClose(props) {
9
9
  let {
@@ -1,17 +1,17 @@
1
1
  import React, { useRef } from 'react'; //AlertDependencies
2
2
 
3
3
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
4
- import AlertClose from '../AlertClose/AlertClose';
5
- import AlertIcons from '../alertIcons/AlertIcons'; //CSS
4
+ import AlertClose from "../AlertClose/AlertClose";
5
+ import AlertIcons from "../alertIcons/AlertIcons"; //CSS
6
6
 
7
- import style from '../../../version2/lookup/AlertHeader/css/AlertHeaderNew.module.css';
8
- import cssJSLogic from '../../../version2/lookup/AlertHeader/css/cssJSLogic';
7
+ import style from "../../../version2/lookup/AlertHeader/css/AlertHeaderNew.module.css";
8
+ import cssJSLogic from "../../../version2/lookup/AlertHeader/css/cssJSLogic";
9
9
  import { mergeStyle } from '@zohodesk/utils'; //customHooks
10
10
 
11
- import useDragger from '../../../Hooks/Dragger/useDragger'; //Props
11
+ import useDragger from "../../../Hooks/Dragger/useDragger"; //Props
12
12
 
13
- import defaultProps from './props/defaultProps';
14
- import propTypes from './props/propTypes';
13
+ import defaultProps from "./props/defaultProps";
14
+ import propTypes from "./props/propTypes";
15
15
  export default function AlertHeader(props) {
16
16
  const {
17
17
  title,
@@ -1,19 +1,19 @@
1
1
  /**** Libraries ****/
2
2
  import React from 'react';
3
- import { defaultProps } from './props/defaultProps';
4
- import { propTypes } from './props/propTypes';
3
+ import { defaultProps } from "./props/defaultProps";
4
+ import { propTypes } from "./props/propTypes";
5
5
  /**** Components ****/
6
6
 
7
7
  import { useUniqueId } from '@zohodesk/components/es/Provider/IdProvider';
8
8
  import Button from '@zohodesk/components/es/v1/Button/Button';
9
9
  import { Container, Box } from '@zohodesk/components/es/v1/Layout';
10
- import Lookup from '../../lookup/Lookup/Lookup';
11
- import AlertHeader from '../AlertHeader/AlertHeader';
12
- import Section from '../../lookup/Section/Section';
13
- import FormAction from '../../FormAction/FormAction';
10
+ import Lookup from "../../lookup/Lookup/Lookup";
11
+ import AlertHeader from "../AlertHeader/AlertHeader";
12
+ import Section from "../../lookup/Section/Section";
13
+ import FormAction from "../../FormAction/FormAction";
14
14
  /**** CSS ****/
15
15
 
16
- import style from '../../../version2/lookup/AlertLookup/AlertLookupNew.module.css';
16
+ import style from "../../../version2/lookup/AlertLookup/AlertLookupNew.module.css";
17
17
  let buttonPaletteObject = {
18
18
  success: {
19
19
  buttonPalette: 'successFilled'
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
- import { AlarmAlertIcon_defaultProps } from './props/defaultProps';
3
- import { AlarmAlertIcon_propTypes } from './props/propTypes';
4
- import style from '../../../version2/alertIcons/AlertIcons.module.css';
2
+ import { AlarmAlertIcon_defaultProps } from "./props/defaultProps";
3
+ import { AlarmAlertIcon_propTypes } from "./props/propTypes";
4
+ import style from "../../../version2/alertIcons/AlertIcons.module.css";
5
5
  export default function AlarmAlertIcon(props) {
6
6
  let {
7
7
  variant,
@@ -1,13 +1,13 @@
1
1
  import React from 'react';
2
- import { AlertIcons_defaultProps } from './props/defaultProps';
3
- import { AlertIcons_propTypes } from './props/propTypes';
4
- import DangerAlertIcon from './DangerAlertIcon';
5
- import SuccessAlertIcon from './SuccessAlertIcon';
6
- import WarningAlertIcon from './WarningAlertIcon';
7
- import InfoAlertIcon from './InfoAlertIcon';
8
- import NotificationAlertIcon from './NotificationAlertIcon';
9
- import AlarmAlertIcon from './AlarmAlertIcon';
10
- import style from '../../../version2/alertIcons/AlertIcons.module.css';
2
+ import { AlertIcons_defaultProps } from "./props/defaultProps";
3
+ import { AlertIcons_propTypes } from "./props/propTypes";
4
+ import DangerAlertIcon from "./DangerAlertIcon";
5
+ import SuccessAlertIcon from "./SuccessAlertIcon";
6
+ import WarningAlertIcon from "./WarningAlertIcon";
7
+ import InfoAlertIcon from "./InfoAlertIcon";
8
+ import NotificationAlertIcon from "./NotificationAlertIcon";
9
+ import AlarmAlertIcon from "./AlarmAlertIcon";
10
+ import style from "../../../version2/alertIcons/AlertIcons.module.css";
11
11
  let alertIconsObject = {
12
12
  success: {
13
13
  AlertIcon: SuccessAlertIcon