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

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