@zohodesk/dot 1.2.1 → 1.2.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 (327) hide show
  1. package/.cli/PropLessFiles.html +1 -1
  2. package/.cli/propValidation_report.html +1 -1
  3. package/README.md +15 -0
  4. package/coverage/ExternalLink/ExternalLink.js.html +1 -1
  5. package/coverage/ExternalLink/ExternalLink.module.css.html +1 -1
  6. package/coverage/ExternalLink/index.html +1 -1
  7. package/coverage/ExternalLink/props/defaultProps.js.html +1 -1
  8. package/coverage/ExternalLink/props/index.html +1 -1
  9. package/coverage/ExternalLink/props/propTypes.js.html +1 -1
  10. package/coverage/Image/Image.js.html +1 -1
  11. package/coverage/Image/Image.module.css.html +1 -1
  12. package/coverage/Image/index.html +1 -1
  13. package/coverage/Image/props/defaultProps.js.html +1 -1
  14. package/coverage/Image/props/index.html +1 -1
  15. package/coverage/Image/props/propTypes.js.html +1 -1
  16. package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.js.html +1 -1
  17. package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.module.css.html +1 -1
  18. package/coverage/avatar/AvatarWithTeam/index.html +1 -1
  19. package/coverage/avatar/AvatarWithTeam/props/defaultProps.js.html +1 -1
  20. package/coverage/avatar/AvatarWithTeam/props/index.html +1 -1
  21. package/coverage/avatar/AvatarWithTeam/props/propTypes.js.html +1 -1
  22. package/coverage/index.html +1 -1
  23. package/es/Attachment/Attachment.js +2 -1
  24. package/es/Attachment/Attachment.module.css +10 -6
  25. package/es/Link/Link.js +2 -1
  26. package/es/TagWithIcon/props/propTypes.js +1 -1
  27. package/es/dropdown/ToggleDropDown/ToggleDropDown.js +5 -2
  28. package/es/emptystate/CommonEmptyState/CommonEmptyState.js +1 -0
  29. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +7 -3
  30. package/es/layout/SubtabLayout/props/propTypes.js +1 -1
  31. package/es/list/Icons/AddNewIcon.js +3 -2
  32. package/es/list/Icons/CompleteIcon.js +3 -2
  33. package/es/list/Icons/DeleteIcon.js +4 -3
  34. package/es/list/Icons/EditIcon.js +5 -3
  35. package/es/list/Icons/ReadUnreadIcon.js +5 -3
  36. package/es/list/Icons/SmartIcon.js +5 -3
  37. package/es/list/ListLayout/ListLayout.module.css +24 -8
  38. package/es/list/listCommon.module.css +23 -5
  39. package/es/list/status/StatusDropdown/StatusDropdown.js +16 -3
  40. package/es/list/status/StatusDropdown/props/propTypes.js +2 -1
  41. package/es/lookup/Lookup/Lookup.js +2 -0
  42. package/es/lookup/header/ViewDropDown/ViewDropDown.js +2 -1
  43. package/es/setup/helptips/ListGroup/ListGroup.js +1 -1
  44. package/es/v1/Attachment/Attachment.js +88 -0
  45. package/es/v1/AttachmentViewer/AttachmentImage.js +79 -0
  46. package/es/v1/AttachmentViewer/AttachmentViewer.js +541 -0
  47. package/es/v1/ChannelIcon/ChannelIcon.js +1 -1
  48. package/es/v1/Drawer/Drawer.js +1 -1
  49. package/es/v1/FlipCard/FlipCard.js +3 -3
  50. package/es/v1/FreezeLayer/FreezeLayer.js +74 -0
  51. package/es/v1/Image/Image.js +39 -0
  52. package/es/v1/Link/Link.js +2 -1
  53. package/es/v1/Loader/Loader.js +21 -0
  54. package/es/v1/Message/Message.js +118 -0
  55. package/es/v1/MessageBanner/MessageBanner.js +1 -1
  56. package/es/v1/PlusIcon/PlusIcon.js +44 -0
  57. package/es/v1/Separator/Separator.js +60 -0
  58. package/es/v1/ToastMessage/ToastMessage.js +203 -0
  59. package/es/v1/Upload/Upload.js +76 -0
  60. package/es/v1/actions/AutoClose.js +43 -0
  61. package/es/v1/alert/index.js +2 -0
  62. package/es/v1/avatar/AvatarClose/AvatarClose.js +53 -0
  63. package/es/v1/avatar/AvatarCollision/AvatarCollision.js +62 -0
  64. package/es/v1/avatar/AvatarIcon/AvatarIcon.js +54 -0
  65. package/es/v1/avatar/AvatarStatus/AvatarStatus.js +72 -0
  66. package/es/v1/avatar/AvatarThread/AvatarThread.js +79 -0
  67. package/es/v1/avatar/AvatarUser/AvatarUser.js +116 -0
  68. package/es/v1/avatar/AvatarWithTeam/AvatarWithTeam.js +98 -0
  69. package/es/v1/avatar/index.js +7 -0
  70. package/es/v1/dropdown/ToggleDropDown/ToggleDropDown.js +861 -0
  71. package/es/v1/emptystate/CommonEmptyState/CommonEmptyState.js +1 -0
  72. package/es/v1/errorstate/Inconvenience/Inconvenience.js +86 -0
  73. package/es/v1/errorstate/LinkText/LinkText.js +29 -0
  74. package/es/v1/errorstate/NoRequestFound/NoRequestFound.js +84 -0
  75. package/es/v1/errorstate/PermissionPlay/PermissionPlay.js +83 -0
  76. package/es/v1/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +84 -0
  77. package/es/v1/errorstate/UnableToProcess/UnableToProcess.js +86 -0
  78. package/es/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +84 -0
  79. package/es/v1/errorstate/WillBack/WillBack.js +75 -0
  80. package/es/v1/errorstate/index.js +8 -0
  81. package/es/v1/form/fields/CheckBoxField/CheckBoxField.js +141 -0
  82. package/es/v1/form/fields/CurrencyField/CurrencyField.js +183 -0
  83. package/es/v1/form/fields/DateField/DateField.js +195 -0
  84. package/es/v1/form/fields/FieldContainer/FieldContainer.js +71 -0
  85. package/es/v1/form/fields/MultiSelectField/MultiSelectField.js +213 -0
  86. package/es/v1/form/fields/PhoneField/PhoneField.js +189 -0
  87. package/es/v1/form/fields/RadioField/RadioField.js +116 -0
  88. package/es/v1/form/fields/SelectField/SelectField.js +183 -0
  89. package/es/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +292 -0
  90. package/es/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +258 -0
  91. package/es/v1/form/fields/TextBoxField/TextBoxField.js +164 -0
  92. package/es/v1/form/fields/TextEditor/TextEditor.js +418 -0
  93. package/es/v1/form/fields/TextEditorField/TextEditorField.js +178 -0
  94. package/es/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +203 -0
  95. package/es/v1/form/fields/TextareaField/TextareaField.js +161 -0
  96. package/es/v1/form/fields/ValidationMessage/ValidationMessage.js +58 -0
  97. package/es/v1/form/fields/index.js +16 -0
  98. package/es/v1/form/layout/Field/Field.js +33 -0
  99. package/es/v1/form/layout/Section/Section.js +37 -0
  100. package/es/v1/form/layout/index.js +2 -0
  101. package/es/v1/layout/SetupDetailLayout/SetupDetailLayout.js +217 -0
  102. package/es/v1/layout/SetupDetailLayout/index.js +4 -0
  103. package/es/v1/layout/SubtabLayout/SubtabLayout.js +144 -0
  104. package/es/v1/layout/SubtabLayout/index.js +4 -0
  105. package/es/v1/list/AvatarFlip/AvatarFlip.js +76 -0
  106. package/es/v1/list/BluePrintStatus/BluePrintStatus.js +28 -0
  107. package/es/v1/list/Comment/Comment.js +45 -0
  108. package/es/v1/list/DepartmentDropDown/DepartmentDropDown.js +100 -0
  109. package/es/v1/list/Dot/Dot.js +22 -0
  110. package/es/v1/list/DotNew/DotNew.js +29 -0
  111. package/es/v1/list/GridStencils/GridStencils.js +34 -0
  112. package/es/v1/list/Icons/AddNewIcon.js +28 -0
  113. package/es/v1/list/Icons/CompleteIcon.js +30 -0
  114. package/es/v1/list/Icons/DeleteIcon.js +31 -0
  115. package/es/v1/list/Icons/EditIcon.js +31 -0
  116. package/es/v1/list/Icons/FloatingIcons.js +30 -0
  117. package/es/v1/list/Icons/ReadUnreadIcon.js +35 -0
  118. package/es/v1/list/Icons/SmartIcon.js +28 -0
  119. package/es/v1/list/Icons/index.js +7 -0
  120. package/es/v1/list/ListLayout/ListLayout.js +83 -0
  121. package/es/v1/list/ListStencils/ListStencils.js +47 -0
  122. package/es/v1/list/SecondaryText/AccountName.js +85 -0
  123. package/es/v1/list/SecondaryText/ContactName.js +85 -0
  124. package/es/v1/list/SecondaryText/DepartmentText.js +30 -0
  125. package/es/v1/list/SecondaryText/Email.js +55 -0
  126. package/es/v1/list/SecondaryText/HappinessRating.js +31 -0
  127. package/es/v1/list/SecondaryText/PhoneNumber.js +59 -0
  128. package/es/v1/list/SecondaryText/PriorityText.js +33 -0
  129. package/es/v1/list/SecondaryText/SecondaryText.js +40 -0
  130. package/es/v1/list/SecondaryText/StatusText.js +34 -0
  131. package/es/v1/list/SecondaryText/TicketId.js +53 -0
  132. package/es/v1/list/SecondaryText/Website.js +43 -0
  133. package/es/v1/list/SecondaryText/index.js +11 -0
  134. package/es/v1/list/SecondryPanel/SecondryPanel.js +105 -0
  135. package/es/v1/list/SentimentStatus/SentimentStatus.js +34 -0
  136. package/es/v1/list/Subject/Subject.js +57 -0
  137. package/es/v1/list/TagNew/TagNew.js +33 -0
  138. package/es/v1/list/Thread/Thread.js +43 -0
  139. package/es/v1/list/UserTime/UserTime.js +83 -0
  140. package/es/v1/list/index.js +17 -0
  141. package/es/v1/list/status/StatusDropdown/StatusDropdown.js +465 -0
  142. package/es/v1/list/status/StatusListItem/StatusListItem.js +122 -0
  143. package/es/v1/list/status/index.js +2 -0
  144. package/es/v1/lookup/EmptyPage/EmptyPage.js +65 -0
  145. package/es/v1/lookup/Lookup/Lookup.js +2 -0
  146. package/es/v1/lookup/Section/Section.js +25 -0
  147. package/es/v1/lookup/header/ViewDropDown/ViewDropDown.js +176 -0
  148. package/es/v1/lookup/header/index.js +5 -0
  149. package/es/v1/setup/header/Button/Button.js +36 -0
  150. package/es/v1/setup/header/Link/Link.js +44 -0
  151. package/es/v1/setup/header/Search/Search.js +81 -0
  152. package/es/v1/setup/header/Views/Views.js +46 -0
  153. package/es/v1/setup/header/index.js +4 -0
  154. package/es/v1/setup/helptips/Description/Description.js +24 -0
  155. package/es/v1/setup/helptips/Link/Link.js +41 -0
  156. package/es/v1/setup/helptips/ListGroup/ListGroup.js +39 -0
  157. package/es/v1/setup/helptips/Title/Title.js +24 -0
  158. package/es/v1/setup/helptips/index.js +4 -0
  159. package/es/v1/setup/index.js +6 -0
  160. package/es/v1/setup/table/index.js +5 -0
  161. package/es/v1/svg/PlusIcon.js +32 -0
  162. package/es/v1/svg/SnippetIcon.js +34 -0
  163. package/es/v1/svg/TemplateIcon.js +35 -0
  164. package/es/v1/svg/index.js +3 -0
  165. package/es/v1/version2/alertIcons/index.js +8 -0
  166. package/es/v1/version2/index.js +12 -0
  167. package/es/v1/version2/lookup/AlertHeader/AlertHeader.js +79 -0
  168. package/es/v1/version2/lookup/AlertLookup/AlertLookup.js +17 -5
  169. package/es/v1/version2/notification/DesktopNotification/DesktopNotification.js +164 -0
  170. package/es/version2/lookup/AlertLookup/AlertLookup.js +14 -2
  171. package/lib/Attachment/Attachment.js +2 -1
  172. package/lib/Attachment/Attachment.module.css +10 -6
  173. package/lib/Link/Link.js +2 -1
  174. package/lib/TagWithIcon/props/propTypes.js +1 -1
  175. package/lib/dropdown/ToggleDropDown/ToggleDropDown.js +5 -3
  176. package/lib/emptystate/CommonEmptyState/CommonEmptyState.js +1 -0
  177. package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +8 -5
  178. package/lib/layout/SubtabLayout/props/propTypes.js +1 -1
  179. package/lib/list/Icons/AddNewIcon.js +4 -2
  180. package/lib/list/Icons/CompleteIcon.js +4 -2
  181. package/lib/list/Icons/DeleteIcon.js +5 -3
  182. package/lib/list/Icons/EditIcon.js +6 -3
  183. package/lib/list/Icons/ReadUnreadIcon.js +6 -3
  184. package/lib/list/Icons/SmartIcon.js +6 -3
  185. package/lib/list/ListLayout/ListLayout.module.css +24 -8
  186. package/lib/list/listCommon.module.css +23 -5
  187. package/lib/list/status/StatusDropdown/StatusDropdown.js +16 -5
  188. package/lib/list/status/StatusDropdown/props/propTypes.js +1 -1
  189. package/lib/lookup/Lookup/Lookup.js +2 -0
  190. package/lib/lookup/header/ViewDropDown/ViewDropDown.js +2 -1
  191. package/lib/setup/helptips/ListGroup/ListGroup.js +1 -1
  192. package/lib/v1/Attachment/Attachment.js +140 -0
  193. package/lib/v1/AttachmentViewer/AttachmentImage.js +124 -0
  194. package/lib/v1/AttachmentViewer/AttachmentViewer.js +625 -0
  195. package/lib/v1/ChannelIcon/ChannelIcon.js +1 -1
  196. package/lib/v1/Drawer/Drawer.js +1 -1
  197. package/lib/v1/FlipCard/FlipCard.js +3 -3
  198. package/lib/v1/FreezeLayer/FreezeLayer.js +94 -0
  199. package/lib/v1/Image/Image.js +89 -0
  200. package/lib/v1/Link/Link.js +2 -1
  201. package/lib/v1/Loader/Loader.js +70 -0
  202. package/lib/v1/Message/Message.js +170 -0
  203. package/lib/v1/MessageBanner/MessageBanner.js +1 -1
  204. package/lib/v1/PlusIcon/PlusIcon.js +91 -0
  205. package/lib/v1/Separator/Separator.js +107 -0
  206. package/lib/v1/ToastMessage/ToastMessage.js +246 -0
  207. package/lib/v1/Upload/Upload.js +128 -0
  208. package/lib/v1/actions/AutoClose.js +75 -0
  209. package/lib/v1/alert/index.js +23 -0
  210. package/lib/v1/avatar/AvatarClose/AvatarClose.js +101 -0
  211. package/lib/v1/avatar/AvatarCollision/AvatarCollision.js +110 -0
  212. package/lib/v1/avatar/AvatarIcon/AvatarIcon.js +106 -0
  213. package/lib/v1/avatar/AvatarStatus/AvatarStatus.js +119 -0
  214. package/lib/v1/avatar/AvatarThread/AvatarThread.js +130 -0
  215. package/lib/v1/avatar/AvatarUser/AvatarUser.js +167 -0
  216. package/lib/v1/avatar/AvatarWithTeam/AvatarWithTeam.js +154 -0
  217. package/lib/v1/avatar/index.js +63 -0
  218. package/lib/v1/dropdown/ToggleDropDown/ToggleDropDown.js +932 -0
  219. package/lib/v1/emptystate/CommonEmptyState/CommonEmptyState.js +1 -0
  220. package/lib/v1/errorstate/Inconvenience/Inconvenience.js +137 -0
  221. package/lib/v1/errorstate/LinkText/LinkText.js +80 -0
  222. package/lib/v1/errorstate/NoRequestFound/NoRequestFound.js +135 -0
  223. package/lib/v1/errorstate/PermissionPlay/PermissionPlay.js +134 -0
  224. package/lib/v1/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +135 -0
  225. package/lib/v1/errorstate/UnableToProcess/UnableToProcess.js +137 -0
  226. package/lib/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +135 -0
  227. package/lib/v1/errorstate/WillBack/WillBack.js +125 -0
  228. package/lib/v1/errorstate/index.js +71 -0
  229. package/lib/v1/form/fields/CheckBoxField/CheckBoxField.js +197 -0
  230. package/lib/v1/form/fields/CurrencyField/CurrencyField.js +234 -0
  231. package/lib/v1/form/fields/DateField/DateField.js +249 -0
  232. package/lib/v1/form/fields/FieldContainer/FieldContainer.js +118 -0
  233. package/lib/v1/form/fields/MultiSelectField/MultiSelectField.js +268 -0
  234. package/lib/v1/form/fields/PhoneField/PhoneField.js +236 -0
  235. package/lib/v1/form/fields/RadioField/RadioField.js +169 -0
  236. package/lib/v1/form/fields/SelectField/SelectField.js +236 -0
  237. package/lib/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +346 -0
  238. package/lib/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +299 -0
  239. package/lib/v1/form/fields/TextBoxField/TextBoxField.js +219 -0
  240. package/lib/v1/form/fields/TextEditor/TextEditor.js +463 -0
  241. package/lib/v1/form/fields/TextEditorField/TextEditorField.js +230 -0
  242. package/lib/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +256 -0
  243. package/lib/v1/form/fields/TextareaField/TextareaField.js +215 -0
  244. package/lib/v1/form/fields/ValidationMessage/ValidationMessage.js +110 -0
  245. package/lib/{docs/formDocs.js → v1/form/fields/index.js} +33 -25
  246. package/lib/v1/form/layout/Field/Field.js +87 -0
  247. package/lib/v1/form/layout/Section/Section.js +86 -0
  248. package/lib/v1/form/layout/index.js +23 -0
  249. package/lib/v1/layout/SetupDetailLayout/SetupDetailLayout.js +305 -0
  250. package/lib/v1/layout/SetupDetailLayout/index.js +37 -0
  251. package/lib/v1/layout/SubtabLayout/SubtabLayout.js +245 -0
  252. package/lib/v1/layout/SubtabLayout/index.js +37 -0
  253. package/lib/v1/list/AvatarFlip/AvatarFlip.js +131 -0
  254. package/lib/v1/list/BluePrintStatus/BluePrintStatus.js +73 -0
  255. package/lib/v1/list/Comment/Comment.js +98 -0
  256. package/lib/v1/list/DepartmentDropDown/DepartmentDropDown.js +157 -0
  257. package/lib/v1/list/Dot/Dot.js +72 -0
  258. package/lib/v1/list/DotNew/DotNew.js +79 -0
  259. package/lib/v1/list/GridStencils/GridStencils.js +83 -0
  260. package/lib/v1/list/Icons/AddNewIcon.js +79 -0
  261. package/lib/v1/list/Icons/CompleteIcon.js +81 -0
  262. package/lib/v1/list/Icons/DeleteIcon.js +82 -0
  263. package/lib/v1/list/Icons/EditIcon.js +82 -0
  264. package/lib/v1/list/Icons/FloatingIcons.js +87 -0
  265. package/lib/v1/list/Icons/ReadUnreadIcon.js +87 -0
  266. package/lib/v1/list/Icons/SmartIcon.js +83 -0
  267. package/lib/v1/list/Icons/index.js +63 -0
  268. package/lib/v1/list/ListLayout/ListLayout.js +145 -0
  269. package/lib/v1/list/ListStencils/ListStencils.js +96 -0
  270. package/lib/v1/list/SecondaryText/AccountName.js +136 -0
  271. package/lib/v1/list/SecondaryText/ContactName.js +144 -0
  272. package/lib/v1/list/SecondaryText/DepartmentText.js +79 -0
  273. package/lib/v1/list/SecondaryText/Email.js +103 -0
  274. package/lib/v1/list/SecondaryText/HappinessRating.js +81 -0
  275. package/lib/v1/list/SecondaryText/PhoneNumber.js +107 -0
  276. package/lib/v1/list/SecondaryText/PriorityText.js +83 -0
  277. package/lib/v1/list/SecondaryText/SecondaryText.js +88 -0
  278. package/lib/v1/list/SecondaryText/StatusText.js +84 -0
  279. package/lib/v1/list/SecondaryText/TicketId.js +104 -0
  280. package/lib/v1/list/SecondaryText/Website.js +91 -0
  281. package/lib/v1/list/SecondaryText/index.js +95 -0
  282. package/lib/v1/list/SecondryPanel/SecondryPanel.js +205 -0
  283. package/lib/v1/list/SentimentStatus/SentimentStatus.js +80 -0
  284. package/lib/v1/list/Subject/Subject.js +108 -0
  285. package/lib/v1/list/TagNew/TagNew.js +83 -0
  286. package/lib/v1/list/Thread/Thread.js +95 -0
  287. package/lib/v1/list/UserTime/UserTime.js +136 -0
  288. package/lib/v1/list/index.js +173 -0
  289. package/lib/v1/list/status/StatusDropdown/StatusDropdown.js +541 -0
  290. package/lib/v1/list/status/StatusListItem/StatusListItem.js +168 -0
  291. package/lib/v1/list/status/index.js +23 -0
  292. package/lib/v1/lookup/EmptyPage/EmptyPage.js +120 -0
  293. package/lib/v1/lookup/Lookup/Lookup.js +2 -0
  294. package/lib/v1/lookup/Section/Section.js +75 -0
  295. package/lib/v1/lookup/header/ViewDropDown/ViewDropDown.js +221 -0
  296. package/lib/v1/lookup/header/index.js +47 -0
  297. package/lib/v1/setup/header/Button/Button.js +83 -0
  298. package/lib/v1/setup/header/Link/Link.js +93 -0
  299. package/lib/v1/setup/header/Search/Search.js +126 -0
  300. package/lib/v1/setup/header/Views/Views.js +93 -0
  301. package/lib/v1/setup/header/index.js +39 -0
  302. package/lib/v1/setup/helptips/Description/Description.js +68 -0
  303. package/lib/v1/setup/helptips/Link/Link.js +88 -0
  304. package/lib/v1/setup/helptips/ListGroup/ListGroup.js +88 -0
  305. package/lib/v1/setup/helptips/Title/Title.js +68 -0
  306. package/lib/v1/setup/helptips/index.js +39 -0
  307. package/lib/v1/setup/index.js +24 -0
  308. package/lib/v1/setup/table/index.js +47 -0
  309. package/lib/v1/svg/PlusIcon.js +82 -0
  310. package/lib/v1/svg/SnippetIcon.js +84 -0
  311. package/lib/v1/svg/TemplateIcon.js +85 -0
  312. package/lib/v1/svg/index.js +31 -0
  313. package/lib/v1/version2/alertIcons/index.js +71 -0
  314. package/lib/v1/version2/index.js +58 -0
  315. package/lib/v1/version2/lookup/AlertHeader/AlertHeader.js +104 -0
  316. package/lib/v1/version2/lookup/AlertLookup/AlertLookup.js +17 -5
  317. package/lib/v1/version2/notification/DesktopNotification/DesktopNotification.js +193 -0
  318. package/lib/version2/lookup/AlertLookup/AlertLookup.js +14 -2
  319. package/package.json +9 -9
  320. package/result.json +1 -1
  321. package/es/docs/formDocs.js +0 -15
  322. package/es/docs/generalDocs.js +0 -63
  323. package/es/docs/lookupDocs.js +0 -17
  324. package/es/docs/setupDocs.js +0 -11
  325. package/lib/docs/generalDocs.js +0 -479
  326. package/lib/docs/lookupDocs.js +0 -135
  327. package/lib/docs/setupDocs.js +0 -95
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ Object.defineProperty(exports, "AlertClose", {
9
+ enumerable: true,
10
+ get: function get() {
11
+ return _AlertClose["default"];
12
+ }
13
+ });
14
+ Object.defineProperty(exports, "GlobalNotification", {
15
+ enumerable: true,
16
+ get: function get() {
17
+ return _GlobalNotification["default"];
18
+ }
19
+ });
20
+ Object.defineProperty(exports, "GlobalNotificationNew", {
21
+ enumerable: true,
22
+ get: function get() {
23
+ return _GlobalNotification.GlobalNotificationNew;
24
+ }
25
+ });
26
+ Object.defineProperty(exports, "GlobalNotificationUI", {
27
+ enumerable: true,
28
+ get: function get() {
29
+ return _GlobalNotification.GlobalNotificationUI;
30
+ }
31
+ });
32
+ exports.notification = exports.lookup = exports.errorstate = exports.alertIcons = void 0;
33
+
34
+ var _AlertClose = _interopRequireDefault(require("./AlertClose/AlertClose"));
35
+
36
+ var _alertIcons = _interopRequireWildcard(require("./alertIcons"));
37
+
38
+ exports.alertIcons = _alertIcons;
39
+
40
+ var _errorstate = _interopRequireWildcard(require("./errorstate"));
41
+
42
+ exports.errorstate = _errorstate;
43
+
44
+ var _GlobalNotification = _interopRequireWildcard(require("./GlobalNotification/GlobalNotification"));
45
+
46
+ var _lookup = _interopRequireWildcard(require("./lookup"));
47
+
48
+ exports.lookup = _lookup;
49
+
50
+ var _notification = _interopRequireWildcard(require("./notification"));
51
+
52
+ exports.notification = _notification;
53
+
54
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
55
+
56
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
57
+
58
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
@@ -0,0 +1,104 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = AlertHeader;
9
+
10
+ var _react = _interopRequireWildcard(require("react"));
11
+
12
+ var _Layout = require("@zohodesk/components/lib/Layout");
13
+
14
+ var _AlertClose = _interopRequireDefault(require("../../AlertClose/AlertClose"));
15
+
16
+ var _AlertIcons = _interopRequireDefault(require("../../alertIcons/AlertIcons"));
17
+
18
+ var _AlertHeaderNewModule = _interopRequireDefault(require("../../../../version2/lookup/AlertHeader/css/AlertHeaderNew.module.css"));
19
+
20
+ var _cssJSLogic2 = _interopRequireDefault(require("../../../../version2/lookup/AlertHeader/css/cssJSLogic"));
21
+
22
+ var _utils = require("@zohodesk/utils");
23
+
24
+ var _useDragger = _interopRequireDefault(require("../../../../Hooks/Dragger/useDragger"));
25
+
26
+ var _defaultProps = _interopRequireDefault(require("../../../../version2/lookup/AlertHeader/props/defaultProps"));
27
+
28
+ var _propTypes = _interopRequireDefault(require("../../../../version2/lookup/AlertHeader/props/propTypes"));
29
+
30
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
31
+
32
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
33
+
34
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
35
+
36
+ //AlertDependencies
37
+ //CSS
38
+ //customHooks
39
+ //Props
40
+ function AlertHeader(props) {
41
+ var title = props.title,
42
+ needIcon = props.needIcon,
43
+ onClose = props.onClose,
44
+ closeTitle = props.closeTitle,
45
+ children = props.children,
46
+ breakChildren = props.breakChildren,
47
+ dataId = props.dataId,
48
+ type = props.type,
49
+ htmlId = props.htmlId,
50
+ customStyle = props.customStyle,
51
+ dragBoundaryLimit = props.dragBoundaryLimit;
52
+ var finalStyle = (0, _utils.mergeStyle)(_AlertHeaderNewModule["default"], customStyle);
53
+
54
+ var _cssJSLogic = (0, _cssJSLogic2["default"])({
55
+ props: props,
56
+ style: finalStyle
57
+ }),
58
+ alertHeaderContainerClass = _cssJSLogic.alertHeaderContainerClass;
59
+
60
+ var dragRef = (0, _react.useRef)(null); //dragRef
61
+
62
+ (0, _useDragger["default"])({
63
+ isActive: true,
64
+ ChildRef: dragRef,
65
+ boundaryLimit: dragBoundaryLimit
66
+ }); //custom Hook
67
+
68
+ return /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
69
+ align: "vertical",
70
+ alignBox: "row",
71
+ className: "".concat(alertHeaderContainerClass),
72
+ isCover: false,
73
+ wrap: "wrap",
74
+ "data-drag-hook": "true",
75
+ eleRef: dragRef
76
+ }, needIcon && /*#__PURE__*/_react["default"].createElement("div", {
77
+ className: finalStyle.iconContainer
78
+ }, /*#__PURE__*/_react["default"].createElement(_AlertIcons["default"], {
79
+ type: type
80
+ })), (title || children) && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
81
+ flexible: true
82
+ }, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
83
+ alignBox: "row",
84
+ wrap: breakChildren ? 'wrap' : null
85
+ }, title && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
86
+ className: finalStyle.title,
87
+ shrink: true,
88
+ id: htmlId
89
+ }, title), children && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
90
+ adjust: true,
91
+ flexible: true
92
+ }, children))), onClose && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
93
+ className: _AlertHeaderNewModule["default"].close
94
+ }, /*#__PURE__*/_react["default"].createElement(_AlertClose["default"], {
95
+ onClose: onClose,
96
+ dataTitle: closeTitle,
97
+ dataId: "".concat(dataId, "_close"),
98
+ type: "light"
99
+ })));
100
+ } //Props
101
+
102
+
103
+ AlertHeader.propTypes = _propTypes["default"];
104
+ AlertHeader.defaultProps = _defaultProps["default"];
@@ -19,11 +19,11 @@ var _Layout = require("@zohodesk/components/lib/Layout");
19
19
 
20
20
  var _Lookup = _interopRequireDefault(require("../../../lookup/Lookup/Lookup"));
21
21
 
22
- var _AlertHeader = _interopRequireDefault(require("../../../../version2/lookup/AlertHeader/AlertHeader"));
22
+ var _AlertHeader = _interopRequireDefault(require("../AlertHeader/AlertHeader"));
23
23
 
24
- var _Section = _interopRequireDefault(require("../../../../lookup/Section/Section"));
24
+ var _Section = _interopRequireDefault(require("../../../lookup/Section/Section"));
25
25
 
26
- var _FormAction = _interopRequireDefault(require("../../../../FormAction/FormAction"));
26
+ var _FormAction = _interopRequireDefault(require("../../../FormAction/FormAction"));
27
27
 
28
28
  var _AlertLookupNewModule = _interopRequireDefault(require("../../../../version2/lookup/AlertLookup/AlertLookupNew.module.css"));
29
29
 
@@ -103,6 +103,8 @@ function AlertLookup(props) {
103
103
  var ariaMessageId = getAriaId();
104
104
  var ariaConfirmMsgId = getAriaId();
105
105
  var ariaTitleId = getAriaId();
106
+ var ariaLeaveButtonId = getAriaId();
107
+ var ariaStayButtonId = getAriaId();
106
108
  a11y = {
107
109
  ariaLabelledby: a11y && a11y.ariaLabelledby ? a11y.ariaLabelledby : ariaTitleId,
108
110
  ariaDescribedby: a11y && a11y.ariaDescribedby ? a11y.ariaDescribedby : ariaMessageId + ' ' + ariaConfirmMsgId
@@ -161,12 +163,22 @@ function AlertLookup(props) {
161
163
  customProps: {
162
164
  'data-a11y-autofocus': isDefaultFocus
163
165
  }
164
- }, PrimaryButtonProps)), cancelText && /*#__PURE__*/_react["default"].createElement(_Button["default"], _extends({
166
+ }, PrimaryButtonProps, {
167
+ a11y: {
168
+ 'aria-labelledby': ariaTitleId + ' ' + ariaMessageId + ' ' + ariaLeaveButtonId
169
+ },
170
+ id: ariaLeaveButtonId
171
+ })), cancelText && /*#__PURE__*/_react["default"].createElement(_Button["default"], _extends({
165
172
  dataId: dataId === 'alertPopup' ? 'alertCancelButton' : "".concat(dataId, "_cancelButton"),
166
173
  text: cancelText,
167
174
  onClick: onCancelClick,
168
175
  palette: "secondary"
169
- }, SecondaryButtonProps))))) : null))));
176
+ }, SecondaryButtonProps, {
177
+ a11y: {
178
+ 'aria-labelledby': ariaTitleId + ' ' + ariaMessageId + ' ' + ariaStayButtonId
179
+ },
180
+ id: ariaStayButtonId
181
+ }))))) : null))));
170
182
  }
171
183
 
172
184
  AlertLookup.propTypes = _propTypes.propTypes;
@@ -0,0 +1,193 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.DesktopNotificationUI = DesktopNotificationUI;
9
+ exports["default"] = DesktopNotification;
10
+
11
+ var _react = _interopRequireWildcard(require("react"));
12
+
13
+ var _defaultProps = require("../../../../version2/notification/DesktopNotification/props/defaultProps");
14
+
15
+ var _propTypes = require("../../../../version2/notification/DesktopNotification/props/propTypes");
16
+
17
+ var _Layout = require("@zohodesk/components/lib/Layout");
18
+
19
+ var _ZindexProvider = require("@zohodesk/components/lib/Provider/ZindexProvider");
20
+
21
+ var _AutoClose = _interopRequireDefault(require("../../../actions/AutoClose"));
22
+
23
+ var _Button = _interopRequireDefault(require("@zohodesk/components/lib/Button/Button"));
24
+
25
+ var _FormAction = _interopRequireDefault(require("../../../FormAction/FormAction"));
26
+
27
+ var _DesktopNotificationHeader = _interopRequireDefault(require("../DesktopNotificationHeader/DesktopNotificationHeader"));
28
+
29
+ var _DesktopNotificationModule = _interopRequireDefault(require("../../../../version2/notification/DesktopNotification/DesktopNotification.module.css"));
30
+
31
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
32
+
33
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
34
+
35
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
36
+
37
+ 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); }
38
+
39
+ var buttonPaletteObject = {
40
+ success: {
41
+ buttonPalette: 'successFilled'
42
+ },
43
+ error: {
44
+ buttonPalette: 'dangerFilled'
45
+ },
46
+ danger: {
47
+ buttonPalette: 'dangerFilled'
48
+ },
49
+ warning: {
50
+ buttonPalette: 'dangerFilled'
51
+ },
52
+ info: {
53
+ buttonPalette: 'primaryFilled'
54
+ },
55
+ notification: {
56
+ buttonPalette: 'primaryFilled'
57
+ }
58
+ };
59
+
60
+ function DesktopNotificationUI(props) {
61
+ var _props$type = props.type,
62
+ type = _props$type === void 0 ? '' : _props$type,
63
+ submitText = props.submitText,
64
+ cancelText = props.cancelText,
65
+ submitType = props.submitType,
66
+ isMore = props.isMore,
67
+ message = props.message,
68
+ isAnimate = props.isAnimate,
69
+ getBottomContainer = props.getBottomContainer,
70
+ getSubmitContainer = props.getSubmitContainer,
71
+ onSubmit = props.onSubmit,
72
+ onCancel = props.onCancel,
73
+ dataId = props.dataId,
74
+ dataSelectorId = props.dataSelectorId,
75
+ isClose = props.isClose,
76
+ needAutoZindex = props.needAutoZindex,
77
+ title = props.title,
78
+ subTitle = props.subTitle,
79
+ needIcon = props.needIcon,
80
+ info = props.info,
81
+ secondaryInfo = props.secondaryInfo,
82
+ titleVariant = props.titleVariant,
83
+ getSectionContainer = props.getSectionContainer,
84
+ isShrinkView = props.isShrinkView,
85
+ size = props.size,
86
+ onClose = props.onClose,
87
+ needClose = props.needClose,
88
+ _props$customClass = props.customClass,
89
+ customClass = _props$customClass === void 0 ? {} : _props$customClass,
90
+ _props$i18nKeys = props.i18nKeys,
91
+ i18nKeys = _props$i18nKeys === void 0 ? {} : _props$i18nKeys,
92
+ customProps = props.customProps;
93
+ var _i18nKeys$closeTitle = i18nKeys.closeTitle,
94
+ closeTitle = _i18nKeys$closeTitle === void 0 ? 'Close' : _i18nKeys$closeTitle;
95
+ var containerClass = customClass.containerClass;
96
+
97
+ var _ref = buttonPaletteObject[type] || {},
98
+ _ref$buttonPalette = _ref.buttonPalette,
99
+ buttonPalette = _ref$buttonPalette === void 0 ? 'dangerFilled' : _ref$buttonPalette;
100
+
101
+ var _customProps$ExtraPro = customProps.ExtraProps,
102
+ ExtraProps = _customProps$ExtraPro === void 0 ? {} : _customProps$ExtraPro;
103
+
104
+ function onClickSubmit(e) {
105
+ onSubmit && onSubmit();
106
+ }
107
+
108
+ function onClickCancel(e) {
109
+ onCancel && onCancel();
110
+ }
111
+
112
+ var animateClass = isClose ? _DesktopNotificationModule["default"].rightanimate : _DesktopNotificationModule["default"].leftanimate;
113
+ var animateRemoveClass = isClose ? _DesktopNotificationModule["default"].rightanimate : _DesktopNotificationModule["default"].leftnoanimate;
114
+ var getNextIndex = (0, _ZindexProvider.useZIndex)();
115
+ var Zindex = isAnimate ? getNextIndex() : null;
116
+ var uiVariantOne = title && (info || secondaryInfo);
117
+ var uiVariantTwo = title && !(info || secondaryInfo) && !getSectionContainer;
118
+ return /*#__PURE__*/_react["default"].createElement("div", {
119
+ className: _DesktopNotificationModule["default"].parentElement,
120
+ style: needAutoZindex && isAnimate ? {
121
+ zIndex: "".concat(Zindex)
122
+ } : {},
123
+ "data-selector-id": dataSelectorId
124
+ }, /*#__PURE__*/_react["default"].createElement(_Layout.Container, _extends({
125
+ className: "".concat(_DesktopNotificationModule["default"].container, " ").concat(isAnimate ? animateClass : animateRemoveClass, " ").concat(_DesktopNotificationModule["default"]["".concat(size)] ? _DesktopNotificationModule["default"]["".concat(size)] : '', " ").concat(isShrinkView ? _DesktopNotificationModule["default"].globalNotify : '', " ").concat(containerClass),
126
+ isCover: false,
127
+ dataId: dataId,
128
+ isInline: uiVariantTwo
129
+ }, ExtraProps), /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement(_DesktopNotificationHeader["default"], {
130
+ type: type,
131
+ title: title,
132
+ variant: titleVariant,
133
+ needIcon: needIcon,
134
+ onClose: onClose,
135
+ closeTitle: closeTitle,
136
+ dataId: "".concat(dataId, "_close"),
137
+ needClose: needClose
138
+ })), /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
139
+ alignBox: "column"
140
+ }, uiVariantOne && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
141
+ flexible: true
142
+ }, /*#__PURE__*/_react["default"].createElement("div", {
143
+ className: "".concat(_DesktopNotificationModule["default"].section, " ").concat(_DesktopNotificationModule["default"].infoText)
144
+ }, subTitle && /*#__PURE__*/_react["default"].createElement("div", {
145
+ className: "".concat(_DesktopNotificationModule["default"].subTitle, " ").concat(info || secondaryInfo ? _DesktopNotificationModule["default"].subTitleMargin : '')
146
+ }, subTitle), info && /*#__PURE__*/_react["default"].createElement("div", null, info), secondaryInfo && /*#__PURE__*/_react["default"].createElement("div", {
147
+ className: "".concat(info ? _DesktopNotificationModule["default"].secondaryInfo : '')
148
+ }, secondaryInfo))), getSectionContainer && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
149
+ flexible: true
150
+ }, getSectionContainer()), submitText || cancelText ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement("div", {
151
+ className: _DesktopNotificationModule["default"].footer
152
+ }, isMore ? /*#__PURE__*/_react["default"].createElement("div", {
153
+ className: "".concat(_DesktopNotificationModule["default"].message)
154
+ }, message) : null, /*#__PURE__*/_react["default"].createElement(_FormAction["default"], {
155
+ size: "small",
156
+ paddingLeftSize: "xmedium"
157
+ }, submitText ? /*#__PURE__*/_react["default"].createElement("div", {
158
+ onClick: onClickSubmit,
159
+ "data-id": "".concat(dataId, "_submitButton"),
160
+ "data-test-id": "".concat(dataId, "_submitButton")
161
+ }, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
162
+ align: "vertical",
163
+ alignBox: "row"
164
+ }, getSubmitContainer ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
165
+ flexible: true
166
+ }, getSubmitContainer()) : /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
167
+ flexible: true
168
+ }, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
169
+ text: submitText,
170
+ palette: submitType ? submitType : buttonPalette
171
+ })))) : null, cancelText ? /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
172
+ text: cancelText,
173
+ palette: "secondary",
174
+ dataId: "".concat(dataId, "_cancelButton"),
175
+ onClick: onClickCancel
176
+ })) : null))) : null)), getBottomContainer ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, getBottomContainer()) : null));
177
+ }
178
+
179
+ DesktopNotificationUI.propTypes = _propTypes.DesktopNotificationUI_propTypes;
180
+
181
+ function DesktopNotification(props) {
182
+ return /*#__PURE__*/_react["default"].createElement(_AutoClose["default"], _extends({}, props, {
183
+ Element: DesktopNotificationUI
184
+ }));
185
+ }
186
+
187
+ DesktopNotification.propTypes = _propTypes.propTypes;
188
+ DesktopNotification.defaultProps = _defaultProps.defaultProps; // if (__DOCS__) {
189
+ // DesktopNotification.docs = {
190
+ // componentGroup: 'DesktopNotification',
191
+ // folderName: 'Alert'
192
+ // };
193
+ // }
@@ -176,6 +176,8 @@ var AlertLookup = /*#__PURE__*/function (_Component) {
176
176
  var ariaMessageId = this.getAriaId();
177
177
  var ariaConfirmMsgId = this.getAriaId();
178
178
  var ariaTitleId = this.getAriaId();
179
+ var ariaLeaveButtonId = this.getAriaId();
180
+ var ariaStayButtonId = this.getAriaId();
179
181
  a11y = {
180
182
  ariaLabelledby: a11y && a11y.ariaLabelledby ? a11y.ariaLabelledby : ariaTitleId,
181
183
  ariaDescribedby: a11y && a11y.ariaDescribedby ? a11y.ariaDescribedby : ariaMessageId + ' ' + ariaConfirmMsgId
@@ -234,12 +236,22 @@ var AlertLookup = /*#__PURE__*/function (_Component) {
234
236
  customProps: {
235
237
  'data-a11y-autofocus': isDefaultFocus
236
238
  }
237
- }, PrimaryButtonProps)), cancelText && /*#__PURE__*/_react["default"].createElement(_Button["default"], _extends({
239
+ }, PrimaryButtonProps, {
240
+ a11y: {
241
+ 'aria-labelledby': ariaTitleId + ' ' + ariaMessageId + ' ' + ariaLeaveButtonId
242
+ },
243
+ id: ariaLeaveButtonId
244
+ })), cancelText && /*#__PURE__*/_react["default"].createElement(_Button["default"], _extends({
238
245
  dataId: dataId === 'alertPopup' ? 'alertCancelButton' : "".concat(dataId, "_cancelButton"),
239
246
  text: cancelText,
240
247
  onClick: onCancelClick,
241
248
  palette: "secondary"
242
- }, SecondaryButtonProps))))) : null))));
249
+ }, SecondaryButtonProps, {
250
+ a11y: {
251
+ 'aria-labelledby': ariaTitleId + ' ' + ariaMessageId + ' ' + ariaStayButtonId
252
+ },
253
+ id: ariaStayButtonId
254
+ }))))) : null))));
243
255
  }
244
256
  }]);
245
257
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/dot",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "main": "lib/index",
5
5
  "module": "es/index.js",
6
6
  "private": false,
@@ -44,17 +44,17 @@
44
44
  "variable:addignore": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/variableIgnore.js ./src",
45
45
  "variable:convert": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/pxParserPostcss.js ./src",
46
46
  "variable:check": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/variableErrorCheck.js ./src ./node_modules/@zohodesk-private/css-variable-migrator/es/config/cssVariableReplacementOptions.json",
47
- "review:props": "node ./node_modules/@zohodesk-private/react-prop-validator/es/propValidation.js ./src/ ./.cli ./.cli devMode "
47
+ "review:props": "node ./node_modules/@zohodesk-private/react-prop-validator/es/propValidation.js ./src/ ./.cli ./.cli "
48
48
  },
49
49
  "devDependencies": {
50
50
  "@zohodesk-private/css-variable-migrator": "^1.0.7",
51
51
  "@zohodesk-private/node-plugins": "^1.0.0",
52
52
  "@zohodesk-private/color-variable-preprocessor": "1.0.6",
53
- "@zohodesk-private/react-prop-validator": "0.0.7",
54
- "@zohodesk/components": "1.2.1",
55
- "@zohodesk/a11y": "2.0.0",
53
+ "@zohodesk-private/react-prop-validator": "0.1.0",
54
+ "@zohodesk/components": "1.2.3",
55
+ "@zohodesk/a11y": "2.0.2",
56
56
  "@zohodesk/i18n": "1.0.0-beta.23",
57
- "@zohodesk/icons": "1.0.1",
57
+ "@zohodesk/icons": "1.0.2",
58
58
  "@zohodesk/svg": "1.1.1",
59
59
  "@zohodesk/variables": "1.0.0",
60
60
  "@zohodesk/virtualizer": "1.0.3",
@@ -71,13 +71,13 @@
71
71
  "velocity-react": "1.4.3",
72
72
  "@zohodesk/variables": "1.0.0",
73
73
  "@zohodesk/i18n": "1.0.0-beta.23",
74
- "@zohodesk/components": "1.2.1",
75
- "@zohodesk/icons": "1.0.1",
74
+ "@zohodesk/components": "1.2.3",
75
+ "@zohodesk/icons": "1.0.2",
76
76
  "@zohodesk/svg": "1.1.1",
77
77
  "@zohodesk/virtualizer": "1.0.3",
78
78
  "react-sortable-hoc": "^0.8.3",
79
79
  "@zohodesk/hooks": "2.0.1",
80
80
  "@zohodesk/utils": "1.3.13",
81
- "@zohodesk/a11y": "1.3.7"
81
+ "@zohodesk/a11y": "2.0.2"
82
82
  }
83
83
  }
package/result.json CHANGED
@@ -1 +1 @@
1
- {"jobDetails":{"isRunByLocal":true,"hostName":"bharathi-zt93","platForm":"Darwin","branchName":"testcase_gowtham"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":14,"numberOfFails":0,"numberOfCases":14,"numberOfSuites":3,"endTime":1691776057760,"startTime":1691776054972,"coverageDetail":{"codeCoveragePercentage":98.03,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}}]}}}
1
+ {"jobDetails":{"isRunByLocal":true,"hostName":"bharathi-zt93","platForm":"Darwin","branchName":"testcase_gowtham"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":14,"numberOfFails":0,"numberOfCases":14,"numberOfSuites":3,"endTime":1693238421406,"startTime":1693238418652,"coverageDetail":{"codeCoveragePercentage":98.03,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}}]}}}
@@ -1,15 +0,0 @@
1
- export { default as FieldLayout } from '../form/layout/Field/Field';
2
- export { default as New_Section } from '../form/layout/Section/Section';
3
- export { default as ValidationMessage } from '../form/fields/ValidationMessage/ValidationMessage';
4
- export { default as TextBoxField } from '../form/fields/TextBoxField/TextBoxField';
5
- export { default as TextareaField } from '../form/fields/TextareaField/TextareaField';
6
- export { default as SelectField } from '../form/fields/SelectField/SelectField';
7
- export { default as PhoneField } from '../form/fields/PhoneField/PhoneField';
8
- export { default as MultiSelectField } from '../form/fields/MultiSelectField/MultiSelectField';
9
- export { default as DateField } from '../form/fields/DateField/DateField';
10
- export { default as CheckBoxField } from '../form/fields/CheckBoxField/CheckBoxField';
11
- export { default as CurrencyField } from '../form/fields/CurrencyField/CurrencyField';
12
- export { default as TagsMultiSelect } from '../form/fields/TagsMultiSelect/TagsMultiSelect';
13
- export { default as TagsMultiSelectField } from '../form/fields/TagsMultiSelectField/TagsMultiSelectField';
14
- export { default as TextEditorField } from '../form/fields/TextEditorField/TextEditorField';
15
- export { default as FieldContainer } from '../form/fields/FieldContainer/FieldContainer';
@@ -1,63 +0,0 @@
1
- export { default as Image } from '../Image/Image';
2
- export { default as AvatarStatus } from '../avatar/AvatarStatus/AvatarStatus';
3
- export { default as AvatarIcon } from '../avatar/AvatarIcon/AvatarIcon';
4
- export { default as AvatarUser } from '../avatar/AvatarUser/AvatarUser';
5
- export { default as AvatarClose } from '../avatar/AvatarClose/AvatarClose';
6
- export { default as AvatarCollision } from '../avatar/AvatarCollision/AvatarCollision';
7
- export { default as AvatarThread } from '../avatar/AvatarThread/AvatarThread';
8
- export { default as AvatarWithTeam } from '../avatar/AvatarWithTeam/AvatarWithTeam';
9
- export { default as ChannelIcon } from '../ChannelIcon/ChannelIcon';
10
- export { default as FlipCard } from '../FlipCard/FlipCard';
11
- export { default as ListAvatarFlip } from '../list/AvatarFlip/AvatarFlip';
12
- export { default as ListComment } from '../list/Comment/Comment';
13
- export { default as ListDotNew } from '../list/DotNew/DotNew';
14
- export { default as GridStencils } from '../list/GridStencils/GridStencils';
15
- export { default as ListUserTime } from '../list/UserTime/UserTime';
16
- export { default as ListThread } from '../list/Thread/Thread';
17
- export { default as ListTagNew } from '../list/TagNew/TagNew';
18
- export { default as ListItemLayout } from '../list/ListLayout/ListLayout';
19
- export { default as ListStencils } from '../list/ListStencils/ListStencils';
20
- export { default as SecondryPanel } from '../list/SecondryPanel/SecondryPanel';
21
- export { default as ListFloatingIcons } from '../list/Icons/FloatingIcons';
22
- export { default as Link } from '../Link/Link';
23
- export { default as ListSubject } from '../list/Subject/Subject';
24
- export { default as ListStatusDropdown } from '../list/status/StatusDropdown/StatusDropdown';
25
- export { default as StatusListItem } from '../list/status/StatusListItem/StatusListItem';
26
- export { default as ToggleDropDown } from '../dropdown/ToggleDropDown/ToggleDropDown';
27
- export { default as SubtabLayout } from '../layout/SubtabLayout/SubtabLayout';
28
- export { default as FreezeLayer } from '../FreezeLayer/FreezeLayer';
29
- export { default as PlusIcon } from '../PlusIcon/PlusIcon';
30
- export { default as FormAction } from '../FormAction/FormAction';
31
- export { default as ToastMessage } from '../ToastMessage/ToastMessage';
32
- export { default as Drawer } from '../Drawer/Drawer';
33
- export { default as CommonEmptyState } from '../emptystate/CommonEmptyState/CommonEmptyState';
34
- export { default as EditionPage } from '../emptystate/EditionPage/EditionPage';
35
- export { default as EmState_Inconvenience } from '../errorstate/Inconvenience/Inconvenience';
36
- export { default as EmState_NoRequestFound } from '../errorstate/NoRequestFound/NoRequestFound';
37
- export { default as EmState_PermissionPlay } from '../errorstate/PermissionPlay/PermissionPlay';
38
- export { default as EmState_RequestUrlNotFound } from '../errorstate/RequestUrlNotFound/RequestUrlNotFound';
39
- export { default as EmState_UnableToProcess } from '../errorstate/UnableToProcess/UnableToProcess';
40
- export { default as EmState_UnauthorizedLogin } from '../errorstate/UnauthorizedLogin/UnauthorizedLogin';
41
- export { default as EmState_WillBack } from '../errorstate/WillBack/WillBack';
42
- export { default as EmState_LinkText } from '../errorstate/LinkText/LinkText';
43
- export { default as IconButton } from '../IconButton/IconButton';
44
- export { default as AlphabeticList } from '../AlphabeticList/AlphabeticList';
45
- export { default as ImportantNotes } from '../ImportantNotes/ImportantNotes';
46
- export { default as Attachment } from '../Attachment/Attachment';
47
- export { default as Upload } from '../Upload/Upload';
48
- export { default as MessageBanner } from '../MessageBanner/MessageBanner';
49
- export { default as Loader } from '../Loader/Loader';
50
- export { default as NewStar } from '../NewStar/NewStar';
51
- export { default as Message } from '../Message/Message';
52
- export { default as ActionButton } from '../ActionButton/ActionButton';
53
- /* version 2 error states */
54
-
55
- export { default as V2_ErrState_Inconvenience } from '../version2/errorstate/Inconvenience/Inconvenience';
56
- export { default as V2_ErrState_UnableToProcessRequest } from '../version2/errorstate/UnableToProcessRequest/UnableToProcessRequest';
57
- export { default as V2_ErrState_UrlNotFound } from '../version2/errorstate/UrlNotFound/UrlNotFound';
58
- export { default as V2_ErrState_UnauthorizedLogin } from '../version2/errorstate/UnauthorizedLogin/UnauthorizedLogin';
59
- export { default as V2_ErrState_WillBeRightBack } from '../version2/errorstate/WillBeRightBack/WillBeRightBack';
60
- export { default as V2_ErrState_OopsSomethingMiss } from '../version2/errorstate/OopsSomethingMiss/OopsSomethingMiss';
61
- /* Attachment Viewer */
62
-
63
- export { default as AttachmentViewer } from '../AttachmentViewer/AttachmentViewer';
@@ -1,17 +0,0 @@
1
- export { default as LookupClose } from '../lookup/header/Close/Close';
2
- export { default as ModuleLookupHeader } from '../lookup/header/ModuleHeader/ModuleHeader';
3
- export { default as LookupSearch } from '../lookup/header/Search/Search';
4
- export { default as TicketLookupHeader } from '../lookup/header/TicketHeader/TicketHeader';
5
- export { default as LookupTitle } from '../lookup/header/Title/Title';
6
- export { default as LookupViewDropdown } from '../lookup/header/ViewDropDown/ViewDropDown';
7
- export { default as AlertLookup } from '../alert/AlertLookup/AlertLookup';
8
- export { default as AlertHeader } from '../alert/AlertHeader/AlertHeader';
9
- export { default as LookupEmptyPage } from '../lookup/EmptyPage/EmptyPage'; // New alerts
10
-
11
- export { default as AlertLookupNew } from '../version2/lookup/AlertLookup/AlertLookup';
12
- export { default as AlertHeaderNew } from '../version2/lookup/AlertHeader/AlertHeader';
13
- export { default as AlertIconsNew } from '../version2/alertIcons/AlertIcons';
14
- export { default as AlertCloseNew } from '../version2/AlertClose/AlertClose';
15
- export { default as GlobalNotification } from '../version2/GlobalNotification/GlobalNotification';
16
- export { default as DesktopNotification } from '../version2/notification/DesktopNotification/DesktopNotification';
17
- export { default as DesktopNotificationHeader } from '../version2/notification/DesktopNotificationHeader/DesktopNotificationHeader';