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

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