@zohodesk/dot 1.0.0-beta.18 → 1.0.0-beta.180

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