@zohodesk/dot 1.0.0-beta.20 → 1.0.0-beta.200

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