@zohodesk/dot 1.9.2 → 1.9.4

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 (886) hide show
  1. package/README.md +22 -0
  2. package/_react-cli.config.js +27 -0
  3. package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +425 -422
  4. package/assets/Appearance/dark/themes/blue/blue_DotTheme_DarkTheme.module.css +16 -16
  5. package/assets/Appearance/dark/themes/green/green_DotTheme_DarkTheme.module.css +16 -16
  6. package/assets/Appearance/dark/themes/orange/orange_DotTheme_DarkTheme.module.css +16 -16
  7. package/assets/Appearance/dark/themes/red/red_DotTheme_DarkTheme.module.css +16 -16
  8. package/assets/Appearance/dark/themes/yellow/yellow_DotTheme_DarkTheme.module.css +16 -16
  9. package/assets/Appearance/light/mode/Dot_LightMode.module.css +425 -422
  10. package/assets/Appearance/light/themes/blue/blue_DotTheme_LightTheme.module.css +16 -16
  11. package/assets/Appearance/light/themes/green/green_DotTheme_LightTheme.module.css +16 -16
  12. package/assets/Appearance/light/themes/orange/orange_DotTheme_LightTheme.module.css +16 -16
  13. package/assets/Appearance/light/themes/red/red_DotTheme_LightTheme.module.css +16 -16
  14. package/assets/Appearance/light/themes/yellow/yellow_DotTheme_LightTheme.module.css +16 -16
  15. package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +425 -422
  16. package/assets/Appearance/pureDark/themes/blue/blue_DotTheme_PureDarkTheme.module.css +16 -16
  17. package/assets/Appearance/pureDark/themes/green/green_DotTheme_PureDarkTheme.module.css +16 -16
  18. package/assets/Appearance/pureDark/themes/orange/orange_DotTheme_PureDarkTheme.module.css +16 -16
  19. package/assets/Appearance/pureDark/themes/red/red_DotTheme_PureDarkTheme.module.css +16 -16
  20. package/assets/Appearance/pureDark/themes/yellow/yellow_DotTheme_PureDarkTheme.module.css +16 -16
  21. package/cbt.config.js +41 -0
  22. package/es/AlphabeticList/AlphabeticList.module.css +0 -0
  23. package/es/AttachmentViewer/AttachmentViewer.js +20 -24
  24. package/es/AudioPlayer/Timer/__tests__/Timer.spec.js +1 -2
  25. package/es/AudioPlayer/__tests__/AudioPlayer.spec.js +39 -38
  26. package/es/ChannelIcon/ChannelIcon.js +11 -13
  27. package/es/DotProvider/DotProvider.js +4 -2
  28. package/es/Drawer/Drawer.js +5 -4
  29. package/es/ExternalLink/ExternalLink.js +5 -4
  30. package/es/ExternalLink/ExternalLink.module.css +0 -0
  31. package/es/ExternalLink/__tests__/ExternalLink.spec.js +0 -0
  32. package/es/FlipCard/FlipCard.js +12 -14
  33. package/es/IconButton/IconButton.js +5 -4
  34. package/es/Link/Link.js +10 -8
  35. package/es/Message/Message.js +5 -4
  36. package/es/Onboarding/Onboarding.js +25 -33
  37. package/es/PlusIcon/PlusIcon.js +0 -0
  38. package/es/Separator/Separator.module.css +5 -5
  39. package/es/TagWithIcon/TagWithIcon.module.css +2 -2
  40. package/es/ToastMessage/ToastMessage.js +4 -2
  41. package/es/ToastMessage/ToastMessage.module.css +0 -0
  42. package/es/actions/AutoClose.js +1 -2
  43. package/es/alert/AlertLookup/AlertLookup.js +12 -14
  44. package/es/avatar/AvatarClose/AvatarClose.js +7 -7
  45. package/es/avatar/AvatarCollision/AvatarCollision.js +7 -7
  46. package/es/avatar/AvatarIcon/AvatarIcon.js +5 -4
  47. package/es/avatar/AvatarStatus/AvatarStatus.js +8 -7
  48. package/es/avatar/AvatarThread/AvatarThread.js +7 -7
  49. package/es/avatar/AvatarUser/AvatarUser.js +9 -10
  50. package/es/avatar/AvatarWithTeam/AvatarWithTeam.js +14 -17
  51. package/es/dot_layer.module.css +1 -1
  52. package/es/dropdown/ToggleDropDown/ToggleDropDown.js +24 -28
  53. package/es/emptystate/CommonEmptyState/CommonEmptyState.js +0 -0
  54. package/es/errorstate/Inconvenience/Inconvenience.js +1 -1
  55. package/es/errorstate/UnableToProcess/UnableToProcess.js +1 -1
  56. package/es/form/fields/CheckBoxField/CheckBoxField.js +13 -15
  57. package/es/form/fields/CurrencyField/CurrencyField.js +12 -14
  58. package/es/form/fields/DateField/DateField.js +13 -14
  59. package/es/form/fields/Fields.module.css +4 -1
  60. package/es/form/fields/MultiSelectField/MultiSelectField.js +12 -13
  61. package/es/form/fields/PhoneField/PhoneField.js +7 -7
  62. package/es/form/fields/RadioField/RadioField.js +17 -19
  63. package/es/form/fields/SelectField/SelectField.js +13 -14
  64. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +20 -20
  65. package/es/form/fields/TagsMultiSelect/props/propTypes.js +2 -1
  66. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +11 -11
  67. package/es/form/fields/TextBoxField/TextBoxField.js +13 -14
  68. package/es/form/fields/TextEditor/TextEditor.module.css +0 -0
  69. package/es/form/fields/TextEditorField/TextEditorField.js +10 -11
  70. package/es/form/fields/TextEditorWrapper/TextEditorWrapper.js +10 -11
  71. package/es/form/fields/TextareaField/TextareaField.js +14 -15
  72. package/es/form/fields/ValidationMessage/ValidationMessage.js +4 -2
  73. package/es/form/layout/Field/Field.js +0 -0
  74. package/es/form/layout/Section/Section.js +0 -0
  75. package/es/layout/SubtabLayout/SubtabLayout.js +6 -4
  76. package/es/list/DepartmentDropDown/DepartmentDropDown.js +17 -10
  77. package/es/list/DepartmentDropDown/props/defaultProps.js +2 -1
  78. package/es/list/DepartmentDropDown/props/propTypes.js +3 -0
  79. package/es/list/GridStencils/GridStencils.module.css +14 -5
  80. package/es/list/ListLayout/ListLayout.js +5 -4
  81. package/es/list/SecondaryText/AccountName.js +6 -4
  82. package/es/list/SecondaryText/ContactName.js +6 -4
  83. package/es/list/SecondaryText/Email.js +5 -4
  84. package/es/list/SecondaryText/PhoneNumber.js +5 -4
  85. package/es/list/SecondaryText/TicketId.js +7 -7
  86. package/es/list/SecondaryText/Website.js +0 -0
  87. package/es/list/SecondryPanel/SecondryPanel.js +0 -0
  88. package/es/list/Subject/Subject.js +6 -4
  89. package/es/list/status/StatusDropdown/StatusDropdown.js +7 -2
  90. package/es/list/status/StatusDropdown/props/defaultProps.js +2 -1
  91. package/es/list/status/StatusDropdown/props/propTypes.js +4 -1
  92. package/es/list/status/StatusListItem/StatusListItem.js +11 -7
  93. package/es/list/status/StatusListItem/StatusListItem.module.css +38 -17
  94. package/es/list/status/StatusListItem/__tests__/__snapshots__/StatusListItem.spec.js.snap +30 -23
  95. package/es/list/status/StatusListItem/props/defaultProps.js +2 -1
  96. package/es/list/status/StatusListItem/props/propTypes.js +2 -1
  97. package/es/lookup/EmptyPage/EmptyPage.js +0 -0
  98. package/es/lookup/Lookup/Lookup.js +5 -4
  99. package/es/lookup/Lookup/Lookup.module.css +0 -0
  100. package/es/lookup/header/Search/Search.js +3 -5
  101. package/es/lookup/header/TicketHeader/TicketHeader.module.css +0 -0
  102. package/es/lookup/header/ViewDropDown/ViewDropDown.module.css +0 -0
  103. package/es/setup/helptips/Link/Link.js +0 -0
  104. package/es/setup/helptips/Title/Title.js +0 -0
  105. package/es/setup/table/Text/TableText.module.css +0 -0
  106. package/es/setup/table/Text/Text.js +0 -0
  107. package/es/version2/GlobalNotification/GlobalNotification.js +9 -8
  108. package/es/version2/lookup/AlertLookup/AlertLookup.js +15 -15
  109. package/es/version2/notification/DesktopNotification/DesktopNotification.js +7 -6
  110. package/lib/AlphabeticList/AlphabeticList.module.css +0 -0
  111. package/lib/Drawer/Drawer.js +0 -0
  112. package/lib/ExternalLink/ExternalLink.js +0 -0
  113. package/lib/ExternalLink/ExternalLink.module.css +0 -0
  114. package/lib/ExternalLink/__tests__/ExternalLink.spec.js +0 -0
  115. package/lib/Link/Link.js +0 -0
  116. package/lib/PlusIcon/PlusIcon.js +0 -0
  117. package/lib/Separator/Separator.module.css +5 -5
  118. package/lib/TagWithIcon/TagWithIcon.module.css +2 -2
  119. package/lib/ToastMessage/ToastMessage.js +0 -0
  120. package/lib/ToastMessage/ToastMessage.module.css +0 -0
  121. package/lib/avatar/AvatarStatus/AvatarStatus.js +0 -0
  122. package/lib/avatar/AvatarUser/AvatarUser.js +0 -0
  123. package/lib/dot_layer.module.css +1 -1
  124. package/lib/emptystate/CommonEmptyState/CommonEmptyState.js +0 -0
  125. package/lib/errorstate/Inconvenience/Inconvenience.js +1 -1
  126. package/lib/errorstate/UnableToProcess/UnableToProcess.js +1 -1
  127. package/lib/form/fields/CheckBoxField/CheckBoxField.js +0 -0
  128. package/lib/form/fields/Fields.module.css +4 -1
  129. package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.js +12 -7
  130. package/lib/form/fields/TagsMultiSelect/props/propTypes.js +2 -1
  131. package/lib/form/fields/TextEditor/TextEditor.module.css +0 -0
  132. package/lib/form/layout/Field/Field.js +0 -0
  133. package/lib/form/layout/Section/Section.js +0 -0
  134. package/lib/list/DepartmentDropDown/DepartmentDropDown.js +16 -10
  135. package/lib/list/DepartmentDropDown/props/defaultProps.js +2 -1
  136. package/lib/list/DepartmentDropDown/props/propTypes.js +2 -0
  137. package/lib/list/GridStencils/GridStencils.module.css +14 -5
  138. package/lib/list/SecondaryText/Website.js +0 -0
  139. package/lib/list/SecondryPanel/SecondryPanel.js +0 -0
  140. package/lib/list/Subject/Subject.js +1 -0
  141. package/lib/list/status/StatusDropdown/StatusDropdown.js +6 -2
  142. package/lib/list/status/StatusDropdown/props/defaultProps.js +2 -1
  143. package/lib/list/status/StatusDropdown/props/propTypes.js +3 -1
  144. package/lib/list/status/StatusListItem/StatusListItem.js +7 -3
  145. package/lib/list/status/StatusListItem/StatusListItem.module.css +38 -17
  146. package/lib/list/status/StatusListItem/__tests__/__snapshots__/StatusListItem.spec.js.snap +30 -23
  147. package/lib/list/status/StatusListItem/props/defaultProps.js +2 -1
  148. package/lib/list/status/StatusListItem/props/propTypes.js +2 -1
  149. package/lib/lookup/EmptyPage/EmptyPage.js +0 -0
  150. package/lib/lookup/Lookup/Lookup.js +0 -0
  151. package/lib/lookup/Lookup/Lookup.module.css +0 -0
  152. package/lib/lookup/header/TicketHeader/TicketHeader.module.css +0 -0
  153. package/lib/lookup/header/ViewDropDown/ViewDropDown.module.css +0 -0
  154. package/lib/setup/helptips/Link/Link.js +0 -0
  155. package/lib/setup/helptips/Title/Title.js +0 -0
  156. package/lib/setup/table/Text/TableText.module.css +0 -0
  157. package/lib/setup/table/Text/Text.js +0 -0
  158. package/package.json +16 -20
  159. package/es/v1/ActionButton/ActionButton.js +0 -155
  160. package/es/v1/ActionButton/props/defaultProps.js +0 -19
  161. package/es/v1/ActionButton/props/propTypes.js +0 -37
  162. package/es/v1/AlphabeticList/AlphabeticList.js +0 -94
  163. package/es/v1/AlphabeticList/props/defaultProps.js +0 -12
  164. package/es/v1/AlphabeticList/props/propTypes.js +0 -23
  165. package/es/v1/Attachment/Attachment.js +0 -96
  166. package/es/v1/Attachment/props/defaultProps.js +0 -8
  167. package/es/v1/Attachment/props/propTypes.js +0 -18
  168. package/es/v1/AttachmentViewer/AttachmentImage.js +0 -81
  169. package/es/v1/AttachmentViewer/AttachmentViewer.js +0 -626
  170. package/es/v1/AttachmentViewer/props/defaultProps.js +0 -11
  171. package/es/v1/AttachmentViewer/props/propTypes.js +0 -36
  172. package/es/v1/ChannelIcon/ChannelIcon.js +0 -93
  173. package/es/v1/ChannelIcon/props/defaultProps.js +0 -7
  174. package/es/v1/ChannelIcon/props/propTypes.js +0 -25
  175. package/es/v1/Drawer/Drawer.js +0 -270
  176. package/es/v1/Drawer/props/defaultProps.js +0 -23
  177. package/es/v1/Drawer/props/propTypes.js +0 -53
  178. package/es/v1/ExternalLink/ExternalLink.js +0 -48
  179. package/es/v1/ExternalLink/props/defaultProps.js +0 -5
  180. package/es/v1/ExternalLink/props/propTypes.js +0 -12
  181. package/es/v1/FlipCard/FlipCard.js +0 -132
  182. package/es/v1/FlipCard/props/defaultProps.js +0 -5
  183. package/es/v1/FlipCard/props/propTypes.js +0 -37
  184. package/es/v1/FormAction/FormAction.js +0 -75
  185. package/es/v1/FormAction/props/defaultProps.js +0 -5
  186. package/es/v1/FormAction/props/propTypes.js +0 -8
  187. package/es/v1/FreezeLayer/FreezeLayer.js +0 -74
  188. package/es/v1/FreezeLayer/props/defaultProps.js +0 -9
  189. package/es/v1/FreezeLayer/props/propTypes.js +0 -19
  190. package/es/v1/GlobalNotification/GlobalNotification.js +0 -144
  191. package/es/v1/GlobalNotification/props/defaultProps.js +0 -6
  192. package/es/v1/GlobalNotification/props/propTypes.js +0 -42
  193. package/es/v1/IconButton/IconButton.js +0 -112
  194. package/es/v1/IconButton/props/defaultProps.js +0 -17
  195. package/es/v1/IconButton/props/propTypes.js +0 -33
  196. package/es/v1/Image/Image.js +0 -36
  197. package/es/v1/Image/props/defaultProps.js +0 -4
  198. package/es/v1/Image/props/propTypes.js +0 -15
  199. package/es/v1/ImportantNotes/ImportantNotes.js +0 -41
  200. package/es/v1/ImportantNotes/props/defaultProps.js +0 -6
  201. package/es/v1/ImportantNotes/props/propTypes.js +0 -10
  202. package/es/v1/Link/Link.js +0 -93
  203. package/es/v1/Link/props/defaultProps.js +0 -5
  204. package/es/v1/Link/props/propTypes.js +0 -18
  205. package/es/v1/Loader/Loader.js +0 -15
  206. package/es/v1/Message/Message.js +0 -91
  207. package/es/v1/Message/props/defaultProps.js +0 -4
  208. package/es/v1/Message/props/propTypes.js +0 -20
  209. package/es/v1/MessageBanner/MessageBanner.js +0 -60
  210. package/es/v1/MessageBanner/props/defaultProps.js +0 -7
  211. package/es/v1/MessageBanner/props/propTypes.js +0 -13
  212. package/es/v1/NewStar/NewStar.js +0 -61
  213. package/es/v1/NewStar/props/defaultProps.js +0 -4
  214. package/es/v1/NewStar/props/propTypes.js +0 -6
  215. package/es/v1/PlusIcon/PlusIcon.js +0 -32
  216. package/es/v1/PlusIcon/props/defaultProps.js +0 -8
  217. package/es/v1/PlusIcon/props/propTypes.js +0 -11
  218. package/es/v1/Separator/Separator.js +0 -53
  219. package/es/v1/Separator/props/defaultProps.js +0 -12
  220. package/es/v1/Separator/props/propTypes.js +0 -11
  221. package/es/v1/TagWithIcon/TagWithIcon.js +0 -39
  222. package/es/v1/TagWithIcon/props/defaultProps.js +0 -8
  223. package/es/v1/TagWithIcon/props/propTypes.js +0 -13
  224. package/es/v1/ToastMessage/ToastMessage.js +0 -201
  225. package/es/v1/ToastMessage/props/defaultProps.js +0 -18
  226. package/es/v1/ToastMessage/props/propTypes.js +0 -40
  227. package/es/v1/Upload/Upload.js +0 -69
  228. package/es/v1/Upload/props/defaultProps.js +0 -7
  229. package/es/v1/Upload/props/propTypes.js +0 -17
  230. package/es/v1/actions/AutoClose.js +0 -44
  231. package/es/v1/actions/props/defaultProps.js +0 -3
  232. package/es/v1/actions/props/propTypes.js +0 -8
  233. package/es/v1/alert/AlertClose/AlertClose.js +0 -43
  234. package/es/v1/alert/AlertClose/props/propTypes.js +0 -8
  235. package/es/v1/alert/AlertHeader/AlertHeader.js +0 -82
  236. package/es/v1/alert/AlertHeader/props/defaultProps.js +0 -12
  237. package/es/v1/alert/AlertHeader/props/propTypes.js +0 -20
  238. package/es/v1/alert/AlertLookup/AlertLookup.js +0 -166
  239. package/es/v1/alert/AlertLookup/props/defaultProps.js +0 -13
  240. package/es/v1/alert/AlertLookup/props/propTypes.js +0 -36
  241. package/es/v1/alert/alertIcons/AlarmAlertIcon.js +0 -65
  242. package/es/v1/alert/alertIcons/AlertIcons.js +0 -57
  243. package/es/v1/alert/alertIcons/DangerAlertIcon.js +0 -65
  244. package/es/v1/alert/alertIcons/ErrorAlertIcon.js +0 -70
  245. package/es/v1/alert/alertIcons/InfoAlertIcon.js +0 -74
  246. package/es/v1/alert/alertIcons/NotificationAlertIcon.js +0 -70
  247. package/es/v1/alert/alertIcons/SuccessAlertIcon.js +0 -65
  248. package/es/v1/alert/alertIcons/WarningAlertIcon.js +0 -65
  249. package/es/v1/alert/alertIcons/index.js +0 -8
  250. package/es/v1/alert/alertIcons/props/defaultProps.js +0 -27
  251. package/es/v1/alert/alertIcons/props/propTypes.js +0 -34
  252. package/es/v1/alert/index.js +0 -2
  253. package/es/v1/avatar/AvatarClose/AvatarClose.js +0 -47
  254. package/es/v1/avatar/AvatarClose/props/defaultProps.js +0 -7
  255. package/es/v1/avatar/AvatarClose/props/propTypes.js +0 -15
  256. package/es/v1/avatar/AvatarCollision/AvatarCollision.js +0 -51
  257. package/es/v1/avatar/AvatarCollision/props/defaultProps.js +0 -8
  258. package/es/v1/avatar/AvatarCollision/props/propTypes.js +0 -17
  259. package/es/v1/avatar/AvatarIcon/AvatarIcon.js +0 -48
  260. package/es/v1/avatar/AvatarIcon/props/defaultProps.js +0 -14
  261. package/es/v1/avatar/AvatarIcon/props/propTypes.js +0 -20
  262. package/es/v1/avatar/AvatarStatus/AvatarStatus.js +0 -59
  263. package/es/v1/avatar/AvatarStatus/props/defaultProps.js +0 -12
  264. package/es/v1/avatar/AvatarStatus/props/propTypes.js +0 -26
  265. package/es/v1/avatar/AvatarThread/AvatarThread.js +0 -72
  266. package/es/v1/avatar/AvatarThread/props/defaultProps.js +0 -9
  267. package/es/v1/avatar/AvatarThread/props/propTypes.js +0 -30
  268. package/es/v1/avatar/AvatarUser/AvatarUser.js +0 -110
  269. package/es/v1/avatar/AvatarUser/props/defaultProps.js +0 -8
  270. package/es/v1/avatar/AvatarUser/props/propTypes.js +0 -35
  271. package/es/v1/avatar/AvatarWithTeam/AvatarWithTeam.js +0 -94
  272. package/es/v1/avatar/AvatarWithTeam/props/defaultProps.js +0 -9
  273. package/es/v1/avatar/AvatarWithTeam/props/propTypes.js +0 -25
  274. package/es/v1/avatar/index.js +0 -7
  275. package/es/v1/dropdown/ToggleDropDown/ToggleDropDown.js +0 -880
  276. package/es/v1/dropdown/ToggleDropDown/props/defaultProps.js +0 -29
  277. package/es/v1/dropdown/ToggleDropDown/props/propTypes.js +0 -83
  278. package/es/v1/emptystate/CommonEmptyState/CommonEmptyState.js +0 -64
  279. package/es/v1/emptystate/CommonEmptyState/props/defaultProps.js +0 -10
  280. package/es/v1/emptystate/CommonEmptyState/props/propTypes.js +0 -21
  281. package/es/v1/emptystate/EditionPage/EditionPage.js +0 -51
  282. package/es/v1/emptystate/EditionPage/props/defaultProps.js +0 -5
  283. package/es/v1/emptystate/EditionPage/props/propTypes.js +0 -11
  284. package/es/v1/errorstate/Inconvenience/Inconvenience.js +0 -60
  285. package/es/v1/errorstate/Inconvenience/props/defaultProps.js +0 -8
  286. package/es/v1/errorstate/Inconvenience/props/propTypes.js +0 -16
  287. package/es/v1/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +0 -64
  288. package/es/v1/errorstate/OopsSomethingMiss/props/defaultProps.js +0 -8
  289. package/es/v1/errorstate/OopsSomethingMiss/props/propTypes.js +0 -16
  290. package/es/v1/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +0 -64
  291. package/es/v1/errorstate/UnableToProcessRequest/props/defaultProps.js +0 -8
  292. package/es/v1/errorstate/UnableToProcessRequest/props/propTypes.js +0 -16
  293. package/es/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +0 -65
  294. package/es/v1/errorstate/UnauthorizedLogin/props/defaultProps.js +0 -9
  295. package/es/v1/errorstate/UnauthorizedLogin/props/propTypes.js +0 -17
  296. package/es/v1/errorstate/UrlNotFound/UrlNotFound.js +0 -64
  297. package/es/v1/errorstate/UrlNotFound/props/defaultProps.js +0 -8
  298. package/es/v1/errorstate/UrlNotFound/props/propTypes.js +0 -16
  299. package/es/v1/errorstate/WillBeRightBack/WillBeRightBack.js +0 -64
  300. package/es/v1/errorstate/WillBeRightBack/props/defaultProps.js +0 -8
  301. package/es/v1/errorstate/WillBeRightBack/props/propTypes.js +0 -16
  302. package/es/v1/form/fields/CheckBoxField/CheckBoxField.js +0 -130
  303. package/es/v1/form/fields/CheckBoxField/props/defaultProps.js +0 -12
  304. package/es/v1/form/fields/CheckBoxField/props/propTypes.js +0 -29
  305. package/es/v1/form/fields/CurrencyField/CurrencyField.js +0 -160
  306. package/es/v1/form/fields/CurrencyField/props/defaultProps.js +0 -17
  307. package/es/v1/form/fields/CurrencyField/props/propTypes.js +0 -39
  308. package/es/v1/form/fields/DateField/DateField.js +0 -164
  309. package/es/v1/form/fields/DateField/props/defaultProps.js +0 -19
  310. package/es/v1/form/fields/DateField/props/propTypes.js +0 -39
  311. package/es/v1/form/fields/FieldContainer/FieldContainer.js +0 -66
  312. package/es/v1/form/fields/FieldContainer/props/defaultProps.js +0 -6
  313. package/es/v1/form/fields/FieldContainer/props/propTypes.js +0 -24
  314. package/es/v1/form/fields/MultiSelectField/MultiSelectField.js +0 -190
  315. package/es/v1/form/fields/MultiSelectField/props/defaultProps.js +0 -17
  316. package/es/v1/form/fields/MultiSelectField/props/propTypes.js +0 -50
  317. package/es/v1/form/fields/PhoneField/PhoneField.js +0 -161
  318. package/es/v1/form/fields/PhoneField/props/defaultProps.js +0 -16
  319. package/es/v1/form/fields/PhoneField/props/propTypes.js +0 -47
  320. package/es/v1/form/fields/RadioField/RadioField.js +0 -144
  321. package/es/v1/form/fields/RadioField/props/defaultProps.js +0 -13
  322. package/es/v1/form/fields/RadioField/props/propTypes.js +0 -33
  323. package/es/v1/form/fields/RadioField/useRadio.js +0 -44
  324. package/es/v1/form/fields/SelectField/SelectField.js +0 -160
  325. package/es/v1/form/fields/SelectField/props/defaultProps.js +0 -18
  326. package/es/v1/form/fields/SelectField/props/propTypes.js +0 -50
  327. package/es/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +0 -333
  328. package/es/v1/form/fields/TagsMultiSelect/props/defaultProps.js +0 -16
  329. package/es/v1/form/fields/TagsMultiSelect/props/propTypes.js +0 -57
  330. package/es/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +0 -276
  331. package/es/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +0 -23
  332. package/es/v1/form/fields/TagsMultiSelectField/props/propTypes.js +0 -71
  333. package/es/v1/form/fields/TextBoxField/TextBoxField.js +0 -144
  334. package/es/v1/form/fields/TextBoxField/props/defaultProps.js +0 -17
  335. package/es/v1/form/fields/TextBoxField/props/propTypes.js +0 -44
  336. package/es/v1/form/fields/TextEditor/TextEditor.js +0 -418
  337. package/es/v1/form/fields/TextEditor/props/defaultProps.js +0 -16
  338. package/es/v1/form/fields/TextEditor/props/propTypes.js +0 -53
  339. package/es/v1/form/fields/TextEditorField/TextEditorField.js +0 -159
  340. package/es/v1/form/fields/TextEditorField/props/defaultProps.js +0 -15
  341. package/es/v1/form/fields/TextEditorField/props/propTypes.js +0 -59
  342. package/es/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +0 -163
  343. package/es/v1/form/fields/TextEditorWrapper/props/defaultProps.js +0 -9
  344. package/es/v1/form/fields/TextEditorWrapper/props/propTypes.js +0 -40
  345. package/es/v1/form/fields/TextareaField/TextareaField.js +0 -140
  346. package/es/v1/form/fields/TextareaField/props/defaultProps.js +0 -15
  347. package/es/v1/form/fields/TextareaField/props/propTypes.js +0 -35
  348. package/es/v1/form/fields/ValidationMessage/ValidationMessage.js +0 -58
  349. package/es/v1/form/fields/ValidationMessage/props/defaultProps.js +0 -7
  350. package/es/v1/form/fields/ValidationMessage/props/propTypes.js +0 -16
  351. package/es/v1/form/fields/index.js +0 -16
  352. package/es/v1/form/fields/props/FieldCommonDefaultProps.js +0 -10
  353. package/es/v1/form/fields/props/FieldCommonPropTypes.js +0 -17
  354. package/es/v1/form/layout/Field/Field.js +0 -29
  355. package/es/v1/form/layout/Field/props/defaultProps.js +0 -4
  356. package/es/v1/form/layout/Field/props/propTypes.js +0 -10
  357. package/es/v1/form/layout/Section/Section.js +0 -30
  358. package/es/v1/form/layout/Section/props/propTypes.js +0 -11
  359. package/es/v1/form/layout/index.js +0 -2
  360. package/es/v1/layout/SetupDetailLayout/SetupDetailLayout.js +0 -174
  361. package/es/v1/layout/SetupDetailLayout/index.js +0 -4
  362. package/es/v1/layout/SetupDetailLayout/props/defaultProps.js +0 -20
  363. package/es/v1/layout/SetupDetailLayout/props/propTypes.js +0 -40
  364. package/es/v1/layout/SubtabLayout/SubtabLayout.js +0 -126
  365. package/es/v1/layout/SubtabLayout/index.js +0 -4
  366. package/es/v1/layout/SubtabLayout/props/defaultProps.js +0 -25
  367. package/es/v1/layout/SubtabLayout/props/propTypes.js +0 -40
  368. package/es/v1/list/AvatarFlip/AvatarFlip.js +0 -73
  369. package/es/v1/list/AvatarFlip/props/defaultProps.js +0 -6
  370. package/es/v1/list/AvatarFlip/props/propTypes.js +0 -29
  371. package/es/v1/list/BluePrintStatus/BluePrintStatus.js +0 -21
  372. package/es/v1/list/BluePrintStatus/props/propTypes.js +0 -4
  373. package/es/v1/list/Comment/Comment.js +0 -35
  374. package/es/v1/list/Comment/props/defaultProps.js +0 -4
  375. package/es/v1/list/Comment/props/propTypes.js +0 -7
  376. package/es/v1/list/DepartmentDropDown/DepartmentDropDown.js +0 -85
  377. package/es/v1/list/DepartmentDropDown/props/defaultProps.js +0 -7
  378. package/es/v1/list/DepartmentDropDown/props/propTypes.js +0 -24
  379. package/es/v1/list/Dot/Dot.js +0 -15
  380. package/es/v1/list/Dot/props/defaultProps.js +0 -4
  381. package/es/v1/list/Dot/props/propTypes.js +0 -5
  382. package/es/v1/list/DotNew/DotNew.js +0 -22
  383. package/es/v1/list/DotNew/props/defaultProps.js +0 -3
  384. package/es/v1/list/DotNew/props/propTypes.js +0 -6
  385. package/es/v1/list/GridStencils/GridStencils.js +0 -31
  386. package/es/v1/list/GridStencils/props/propTypes.js +0 -8
  387. package/es/v1/list/Icons/AddNewIcon.js +0 -25
  388. package/es/v1/list/Icons/CompleteIcon.js +0 -27
  389. package/es/v1/list/Icons/DeleteIcon.js +0 -28
  390. package/es/v1/list/Icons/EditIcon.js +0 -28
  391. package/es/v1/list/Icons/FloatingIcons.js +0 -23
  392. package/es/v1/list/Icons/ReadUnreadIcon.js +0 -32
  393. package/es/v1/list/Icons/SmartIcon.js +0 -25
  394. package/es/v1/list/Icons/index.js +0 -7
  395. package/es/v1/list/Icons/props/defaultProps.js +0 -6
  396. package/es/v1/list/Icons/props/propTypes.js +0 -53
  397. package/es/v1/list/ListLayout/ListLayout.js +0 -68
  398. package/es/v1/list/ListLayout/props/defaultProps.js +0 -11
  399. package/es/v1/list/ListLayout/props/propTypes.js +0 -27
  400. package/es/v1/list/ListStencils/ListStencils.js +0 -44
  401. package/es/v1/list/ListStencils/props/defaultProps.js +0 -3
  402. package/es/v1/list/ListStencils/props/propTypes.js +0 -4
  403. package/es/v1/list/SecondaryText/AccountName.js +0 -77
  404. package/es/v1/list/SecondaryText/ContactName.js +0 -76
  405. package/es/v1/list/SecondaryText/DepartmentText.js +0 -18
  406. package/es/v1/list/SecondaryText/Email.js +0 -47
  407. package/es/v1/list/SecondaryText/HappinessRating.js +0 -23
  408. package/es/v1/list/SecondaryText/PhoneNumber.js +0 -51
  409. package/es/v1/list/SecondaryText/PriorityText.js +0 -21
  410. package/es/v1/list/SecondaryText/SecondaryText.js +0 -27
  411. package/es/v1/list/SecondaryText/StatusText.js +0 -22
  412. package/es/v1/list/SecondaryText/TicketId.js +0 -41
  413. package/es/v1/list/SecondaryText/Website.js +0 -35
  414. package/es/v1/list/SecondaryText/index.js +0 -11
  415. package/es/v1/list/SecondaryText/props/defaultProps.js +0 -44
  416. package/es/v1/list/SecondaryText/props/propTypes.js +0 -142
  417. package/es/v1/list/SecondryPanel/SecondryPanel.js +0 -87
  418. package/es/v1/list/SecondryPanel/props/defaultProps.js +0 -18
  419. package/es/v1/list/SecondryPanel/props/propTypes.js +0 -27
  420. package/es/v1/list/SentimentStatus/SentimentStatus.js +0 -23
  421. package/es/v1/list/SentimentStatus/props/propTypes.js +0 -5
  422. package/es/v1/list/Subject/Subject.js +0 -52
  423. package/es/v1/list/Subject/props/defaultProps.js +0 -8
  424. package/es/v1/list/Subject/props/propTypes.js +0 -20
  425. package/es/v1/list/TagNew/TagNew.js +0 -24
  426. package/es/v1/list/TagNew/props/defaultProps.js +0 -4
  427. package/es/v1/list/TagNew/props/propTypes.js +0 -8
  428. package/es/v1/list/Thread/Thread.js +0 -33
  429. package/es/v1/list/Thread/props/defaultProps.js +0 -4
  430. package/es/v1/list/Thread/props/propTypes.js +0 -8
  431. package/es/v1/list/index.js +0 -16
  432. package/es/v1/list/status/StatusDropdown/StatusDropdown.js +0 -307
  433. package/es/v1/list/status/StatusDropdown/props/defaultProps.js +0 -22
  434. package/es/v1/list/status/StatusDropdown/props/propTypes.js +0 -60
  435. package/es/v1/list/status/StatusListItem/StatusListItem.js +0 -108
  436. package/es/v1/list/status/StatusListItem/props/defaultProps.js +0 -16
  437. package/es/v1/list/status/StatusListItem/props/propTypes.js +0 -31
  438. package/es/v1/list/status/index.js +0 -2
  439. package/es/v1/lookup/EmptyPage/EmptyPage.js +0 -54
  440. package/es/v1/lookup/EmptyPage/props/defaultProps.js +0 -4
  441. package/es/v1/lookup/EmptyPage/props/propTypes.js +0 -5
  442. package/es/v1/lookup/Lookup/Lookup.js +0 -116
  443. package/es/v1/lookup/Lookup/props/defaultProps.js +0 -9
  444. package/es/v1/lookup/Lookup/props/propTypes.js +0 -24
  445. package/es/v1/lookup/Section/Section.js +0 -18
  446. package/es/v1/lookup/Section/props/propTypes.js +0 -6
  447. package/es/v1/lookup/header/Close/Close.js +0 -30
  448. package/es/v1/lookup/header/Close/props/defaultProps.js +0 -3
  449. package/es/v1/lookup/header/Close/props/propTypes.js +0 -6
  450. package/es/v1/lookup/header/ModuleHeader/ModuleHeader.js +0 -89
  451. package/es/v1/lookup/header/ModuleHeader/props/defaultProps.js +0 -9
  452. package/es/v1/lookup/header/ModuleHeader/props/propTypes.js +0 -20
  453. package/es/v1/lookup/header/Search/Search.js +0 -179
  454. package/es/v1/lookup/header/Search/props/defaultProps.js +0 -5
  455. package/es/v1/lookup/header/Search/props/propTypes.js +0 -28
  456. package/es/v1/lookup/header/TicketHeader/TicketHeader.js +0 -108
  457. package/es/v1/lookup/header/TicketHeader/props/defaultProps.js +0 -10
  458. package/es/v1/lookup/header/TicketHeader/props/propTypes.js +0 -21
  459. package/es/v1/lookup/header/Title/Title.js +0 -27
  460. package/es/v1/lookup/header/Title/props/defaultProps.js +0 -3
  461. package/es/v1/lookup/header/Title/props/propTypes.js +0 -6
  462. package/es/v1/lookup/header/ViewDropDown/ViewDropDown.js +0 -194
  463. package/es/v1/lookup/header/ViewDropDown/props/defaultProps.js +0 -10
  464. package/es/v1/lookup/header/ViewDropDown/props/propTypes.js +0 -27
  465. package/es/v1/lookup/header/index.js +0 -5
  466. package/es/v1/notification/DesktopNotification/DesktopNotification.js +0 -190
  467. package/es/v1/notification/DesktopNotification/props/defaultProps.js +0 -17
  468. package/es/v1/notification/DesktopNotification/props/propTypes.js +0 -43
  469. package/es/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +0 -91
  470. package/es/v1/notification/DesktopNotificationHeader/props/defaultProps.js +0 -7
  471. package/es/v1/notification/DesktopNotificationHeader/props/propTypes.js +0 -13
  472. package/es/v1/setup/header/Button/Button.js +0 -24
  473. package/es/v1/setup/header/Button/props/defaultProps.js +0 -4
  474. package/es/v1/setup/header/Button/props/propTypes.js +0 -7
  475. package/es/v1/setup/header/Link/Link.js +0 -32
  476. package/es/v1/setup/header/Link/props/defaultProps.js +0 -4
  477. package/es/v1/setup/header/Link/props/propTypes.js +0 -8
  478. package/es/v1/setup/header/Search/Search.js +0 -60
  479. package/es/v1/setup/header/Search/props/defaultProps.js +0 -6
  480. package/es/v1/setup/header/Search/props/propTypes.js +0 -12
  481. package/es/v1/setup/header/Views/Views.js +0 -34
  482. package/es/v1/setup/header/Views/props/defaultProps.js +0 -6
  483. package/es/v1/setup/header/Views/props/propTypes.js +0 -9
  484. package/es/v1/setup/header/index.js +0 -4
  485. package/es/v1/setup/helptips/Description/Description.js +0 -12
  486. package/es/v1/setup/helptips/Description/props/propTypes.js +0 -4
  487. package/es/v1/setup/helptips/Link/Link.js +0 -29
  488. package/es/v1/setup/helptips/Link/props/propTypes.js +0 -7
  489. package/es/v1/setup/helptips/ListGroup/ListGroup.js +0 -27
  490. package/es/v1/setup/helptips/ListGroup/props/propTypes.js +0 -5
  491. package/es/v1/setup/helptips/Title/Title.js +0 -12
  492. package/es/v1/setup/helptips/Title/props/propTypes.js +0 -4
  493. package/es/v1/setup/helptips/index.js +0 -4
  494. package/es/v1/setup/index.js +0 -6
  495. package/es/v1/setup/table/Table/Table.js +0 -22
  496. package/es/v1/setup/table/Table/props/defaultProps.js +0 -4
  497. package/es/v1/setup/table/Table/props/propTypes.js +0 -6
  498. package/es/v1/setup/table/TableBody/TableBody.js +0 -26
  499. package/es/v1/setup/table/TableBody/props/defaultProps.js +0 -3
  500. package/es/v1/setup/table/TableBody/props/propTypes.js +0 -7
  501. package/es/v1/setup/table/TableData/TableData.js +0 -31
  502. package/es/v1/setup/table/TableData/props/defaultProps.js +0 -5
  503. package/es/v1/setup/table/TableData/props/propTypes.js +0 -11
  504. package/es/v1/setup/table/TableHead/TableHead.js +0 -31
  505. package/es/v1/setup/table/TableHead/props/defaultProps.js +0 -4
  506. package/es/v1/setup/table/TableHead/props/propTypes.js +0 -8
  507. package/es/v1/setup/table/TableRow/TableRow.js +0 -36
  508. package/es/v1/setup/table/TableRow/props/defaultProps.js +0 -4
  509. package/es/v1/setup/table/TableRow/props/propTypes.js +0 -11
  510. package/es/v1/setup/table/Text/Text.js +0 -50
  511. package/es/v1/setup/table/Text/props/defaultProps.js +0 -7
  512. package/es/v1/setup/table/Text/props/propTypes.js +0 -13
  513. package/es/v1/setup/table/index.js +0 -5
  514. package/es/v1/svg/PlusIcon.js +0 -25
  515. package/es/v1/svg/SnippetIcon.js +0 -27
  516. package/es/v1/svg/TemplateIcon.js +0 -28
  517. package/es/v1/svg/index.js +0 -3
  518. package/es/v1/svg/props/defaultProps.js +0 -15
  519. package/es/v1/svg/props/propTypes.js +0 -16
  520. package/es/v1/utils/ChannelIconMapping.js +0 -129
  521. package/es/v1/utils/General.js +0 -45
  522. package/es/v1/utils/editorUtils.js +0 -193
  523. package/lib/v1/ActionButton/ActionButton.js +0 -173
  524. package/lib/v1/ActionButton/props/defaultProps.js +0 -26
  525. package/lib/v1/ActionButton/props/propTypes.js +0 -48
  526. package/lib/v1/AlphabeticList/AlphabeticList.js +0 -113
  527. package/lib/v1/AlphabeticList/props/defaultProps.js +0 -20
  528. package/lib/v1/AlphabeticList/props/propTypes.js +0 -50
  529. package/lib/v1/Attachment/Attachment.js +0 -110
  530. package/lib/v1/Attachment/props/defaultProps.js +0 -15
  531. package/lib/v1/Attachment/props/propTypes.js +0 -29
  532. package/lib/v1/AttachmentViewer/AttachmentImage.js +0 -117
  533. package/lib/v1/AttachmentViewer/AttachmentViewer.js +0 -713
  534. package/lib/v1/AttachmentViewer/props/defaultProps.js +0 -19
  535. package/lib/v1/AttachmentViewer/props/propTypes.js +0 -48
  536. package/lib/v1/ChannelIcon/ChannelIcon.js +0 -114
  537. package/lib/v1/ChannelIcon/props/defaultProps.js +0 -14
  538. package/lib/v1/ChannelIcon/props/propTypes.js +0 -36
  539. package/lib/v1/Drawer/Drawer.js +0 -302
  540. package/lib/v1/Drawer/props/defaultProps.js +0 -32
  541. package/lib/v1/Drawer/props/propTypes.js +0 -67
  542. package/lib/v1/ExternalLink/ExternalLink.js +0 -57
  543. package/lib/v1/ExternalLink/props/defaultProps.js +0 -12
  544. package/lib/v1/ExternalLink/props/propTypes.js +0 -23
  545. package/lib/v1/FlipCard/FlipCard.js +0 -149
  546. package/lib/v1/FlipCard/props/defaultProps.js +0 -12
  547. package/lib/v1/FlipCard/props/propTypes.js +0 -48
  548. package/lib/v1/FormAction/FormAction.js +0 -102
  549. package/lib/v1/FormAction/props/defaultProps.js +0 -12
  550. package/lib/v1/FormAction/props/propTypes.js +0 -19
  551. package/lib/v1/FreezeLayer/FreezeLayer.js +0 -94
  552. package/lib/v1/FreezeLayer/props/defaultProps.js +0 -16
  553. package/lib/v1/FreezeLayer/props/propTypes.js +0 -31
  554. package/lib/v1/GlobalNotification/GlobalNotification.js +0 -187
  555. package/lib/v1/GlobalNotification/props/defaultProps.js +0 -13
  556. package/lib/v1/GlobalNotification/props/propTypes.js +0 -58
  557. package/lib/v1/IconButton/IconButton.js +0 -149
  558. package/lib/v1/IconButton/props/defaultProps.js +0 -24
  559. package/lib/v1/IconButton/props/propTypes.js +0 -43
  560. package/lib/v1/Image/Image.js +0 -48
  561. package/lib/v1/Image/props/defaultProps.js +0 -11
  562. package/lib/v1/Image/props/propTypes.js +0 -26
  563. package/lib/v1/ImportantNotes/ImportantNotes.js +0 -55
  564. package/lib/v1/ImportantNotes/props/defaultProps.js +0 -13
  565. package/lib/v1/ImportantNotes/props/propTypes.js +0 -21
  566. package/lib/v1/Link/Link.js +0 -116
  567. package/lib/v1/Link/props/defaultProps.js +0 -12
  568. package/lib/v1/Link/props/propTypes.js +0 -29
  569. package/lib/v1/Loader/Loader.js +0 -27
  570. package/lib/v1/Message/Message.js +0 -113
  571. package/lib/v1/Message/props/defaultProps.js +0 -11
  572. package/lib/v1/Message/props/propTypes.js +0 -41
  573. package/lib/v1/MessageBanner/MessageBanner.js +0 -75
  574. package/lib/v1/MessageBanner/props/defaultProps.js +0 -14
  575. package/lib/v1/MessageBanner/props/propTypes.js +0 -24
  576. package/lib/v1/NewStar/NewStar.js +0 -74
  577. package/lib/v1/NewStar/props/defaultProps.js +0 -11
  578. package/lib/v1/NewStar/props/propTypes.js +0 -17
  579. package/lib/v1/PlusIcon/PlusIcon.js +0 -45
  580. package/lib/v1/PlusIcon/props/defaultProps.js +0 -15
  581. package/lib/v1/PlusIcon/props/propTypes.js +0 -22
  582. package/lib/v1/Separator/Separator.js +0 -66
  583. package/lib/v1/Separator/props/defaultProps.js +0 -19
  584. package/lib/v1/Separator/props/propTypes.js +0 -22
  585. package/lib/v1/TagWithIcon/TagWithIcon.js +0 -53
  586. package/lib/v1/TagWithIcon/props/defaultProps.js +0 -15
  587. package/lib/v1/TagWithIcon/props/propTypes.js +0 -24
  588. package/lib/v1/ToastMessage/ToastMessage.js +0 -246
  589. package/lib/v1/ToastMessage/props/defaultProps.js +0 -25
  590. package/lib/v1/ToastMessage/props/propTypes.js +0 -51
  591. package/lib/v1/Upload/Upload.js +0 -83
  592. package/lib/v1/Upload/props/defaultProps.js +0 -14
  593. package/lib/v1/Upload/props/propTypes.js +0 -28
  594. package/lib/v1/actions/AutoClose.js +0 -75
  595. package/lib/v1/actions/props/defaultProps.js +0 -10
  596. package/lib/v1/actions/props/propTypes.js +0 -19
  597. package/lib/v1/alert/AlertClose/AlertClose.js +0 -62
  598. package/lib/v1/alert/AlertClose/props/propTypes.js +0 -19
  599. package/lib/v1/alert/AlertHeader/AlertHeader.js +0 -107
  600. package/lib/v1/alert/AlertHeader/props/defaultProps.js +0 -19
  601. package/lib/v1/alert/AlertHeader/props/propTypes.js +0 -31
  602. package/lib/v1/alert/AlertLookup/AlertLookup.js +0 -187
  603. package/lib/v1/alert/AlertLookup/props/defaultProps.js +0 -20
  604. package/lib/v1/alert/AlertLookup/props/propTypes.js +0 -47
  605. package/lib/v1/alert/alertIcons/AlarmAlertIcon.js +0 -77
  606. package/lib/v1/alert/alertIcons/AlertIcons.js +0 -78
  607. package/lib/v1/alert/alertIcons/DangerAlertIcon.js +0 -77
  608. package/lib/v1/alert/alertIcons/ErrorAlertIcon.js +0 -82
  609. package/lib/v1/alert/alertIcons/InfoAlertIcon.js +0 -86
  610. package/lib/v1/alert/alertIcons/NotificationAlertIcon.js +0 -82
  611. package/lib/v1/alert/alertIcons/SuccessAlertIcon.js +0 -77
  612. package/lib/v1/alert/alertIcons/WarningAlertIcon.js +0 -77
  613. package/lib/v1/alert/alertIcons/index.js +0 -71
  614. package/lib/v1/alert/alertIcons/props/defaultProps.js +0 -41
  615. package/lib/v1/alert/alertIcons/props/propTypes.js +0 -52
  616. package/lib/v1/alert/index.js +0 -23
  617. package/lib/v1/avatar/AvatarClose/AvatarClose.js +0 -61
  618. package/lib/v1/avatar/AvatarClose/props/defaultProps.js +0 -14
  619. package/lib/v1/avatar/AvatarClose/props/propTypes.js +0 -26
  620. package/lib/v1/avatar/AvatarCollision/AvatarCollision.js +0 -65
  621. package/lib/v1/avatar/AvatarCollision/props/defaultProps.js +0 -15
  622. package/lib/v1/avatar/AvatarCollision/props/propTypes.js +0 -28
  623. package/lib/v1/avatar/AvatarIcon/AvatarIcon.js +0 -63
  624. package/lib/v1/avatar/AvatarIcon/props/defaultProps.js +0 -21
  625. package/lib/v1/avatar/AvatarIcon/props/propTypes.js +0 -31
  626. package/lib/v1/avatar/AvatarStatus/AvatarStatus.js +0 -73
  627. package/lib/v1/avatar/AvatarStatus/props/defaultProps.js +0 -19
  628. package/lib/v1/avatar/AvatarStatus/props/propTypes.js +0 -35
  629. package/lib/v1/avatar/AvatarThread/AvatarThread.js +0 -85
  630. package/lib/v1/avatar/AvatarThread/props/defaultProps.js +0 -16
  631. package/lib/v1/avatar/AvatarThread/props/propTypes.js +0 -41
  632. package/lib/v1/avatar/AvatarUser/AvatarUser.js +0 -122
  633. package/lib/v1/avatar/AvatarUser/props/defaultProps.js +0 -15
  634. package/lib/v1/avatar/AvatarUser/props/propTypes.js +0 -46
  635. package/lib/v1/avatar/AvatarWithTeam/AvatarWithTeam.js +0 -109
  636. package/lib/v1/avatar/AvatarWithTeam/props/defaultProps.js +0 -16
  637. package/lib/v1/avatar/AvatarWithTeam/props/propTypes.js +0 -36
  638. package/lib/v1/avatar/index.js +0 -63
  639. package/lib/v1/dropdown/ToggleDropDown/ToggleDropDown.js +0 -946
  640. package/lib/v1/dropdown/ToggleDropDown/props/defaultProps.js +0 -36
  641. package/lib/v1/dropdown/ToggleDropDown/props/propTypes.js +0 -94
  642. package/lib/v1/emptystate/CommonEmptyState/CommonEmptyState.js +0 -77
  643. package/lib/v1/emptystate/CommonEmptyState/props/defaultProps.js +0 -17
  644. package/lib/v1/emptystate/CommonEmptyState/props/propTypes.js +0 -32
  645. package/lib/v1/emptystate/EditionPage/EditionPage.js +0 -64
  646. package/lib/v1/emptystate/EditionPage/props/defaultProps.js +0 -12
  647. package/lib/v1/emptystate/EditionPage/props/propTypes.js +0 -22
  648. package/lib/v1/errorstate/Inconvenience/Inconvenience.js +0 -76
  649. package/lib/v1/errorstate/Inconvenience/props/defaultProps.js +0 -15
  650. package/lib/v1/errorstate/Inconvenience/props/propTypes.js +0 -27
  651. package/lib/v1/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +0 -80
  652. package/lib/v1/errorstate/OopsSomethingMiss/props/defaultProps.js +0 -15
  653. package/lib/v1/errorstate/OopsSomethingMiss/props/propTypes.js +0 -27
  654. package/lib/v1/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +0 -80
  655. package/lib/v1/errorstate/UnableToProcessRequest/props/defaultProps.js +0 -15
  656. package/lib/v1/errorstate/UnableToProcessRequest/props/propTypes.js +0 -27
  657. package/lib/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +0 -81
  658. package/lib/v1/errorstate/UnauthorizedLogin/props/defaultProps.js +0 -16
  659. package/lib/v1/errorstate/UnauthorizedLogin/props/propTypes.js +0 -28
  660. package/lib/v1/errorstate/UrlNotFound/UrlNotFound.js +0 -80
  661. package/lib/v1/errorstate/UrlNotFound/props/defaultProps.js +0 -15
  662. package/lib/v1/errorstate/UrlNotFound/props/propTypes.js +0 -27
  663. package/lib/v1/errorstate/WillBeRightBack/WillBeRightBack.js +0 -80
  664. package/lib/v1/errorstate/WillBeRightBack/props/defaultProps.js +0 -15
  665. package/lib/v1/errorstate/WillBeRightBack/props/propTypes.js +0 -27
  666. package/lib/v1/form/fields/CheckBoxField/CheckBoxField.js +0 -148
  667. package/lib/v1/form/fields/CheckBoxField/props/defaultProps.js +0 -27
  668. package/lib/v1/form/fields/CheckBoxField/props/propTypes.js +0 -47
  669. package/lib/v1/form/fields/CurrencyField/CurrencyField.js +0 -194
  670. package/lib/v1/form/fields/CurrencyField/props/defaultProps.js +0 -32
  671. package/lib/v1/form/fields/CurrencyField/props/propTypes.js +0 -57
  672. package/lib/v1/form/fields/DateField/DateField.js +0 -183
  673. package/lib/v1/form/fields/DateField/props/defaultProps.js +0 -34
  674. package/lib/v1/form/fields/DateField/props/propTypes.js +0 -57
  675. package/lib/v1/form/fields/FieldContainer/FieldContainer.js +0 -87
  676. package/lib/v1/form/fields/FieldContainer/props/defaultProps.js +0 -22
  677. package/lib/v1/form/fields/FieldContainer/props/propTypes.js +0 -35
  678. package/lib/v1/form/fields/MultiSelectField/MultiSelectField.js +0 -208
  679. package/lib/v1/form/fields/MultiSelectField/props/defaultProps.js +0 -32
  680. package/lib/v1/form/fields/MultiSelectField/props/propTypes.js +0 -68
  681. package/lib/v1/form/fields/PhoneField/PhoneField.js +0 -193
  682. package/lib/v1/form/fields/PhoneField/props/defaultProps.js +0 -23
  683. package/lib/v1/form/fields/PhoneField/props/propTypes.js +0 -58
  684. package/lib/v1/form/fields/RadioField/RadioField.js +0 -164
  685. package/lib/v1/form/fields/RadioField/props/defaultProps.js +0 -20
  686. package/lib/v1/form/fields/RadioField/props/propTypes.js +0 -44
  687. package/lib/v1/form/fields/RadioField/useRadio.js +0 -50
  688. package/lib/v1/form/fields/SelectField/SelectField.js +0 -179
  689. package/lib/v1/form/fields/SelectField/props/defaultProps.js +0 -33
  690. package/lib/v1/form/fields/SelectField/props/propTypes.js +0 -68
  691. package/lib/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +0 -387
  692. package/lib/v1/form/fields/TagsMultiSelect/props/defaultProps.js +0 -23
  693. package/lib/v1/form/fields/TagsMultiSelect/props/propTypes.js +0 -68
  694. package/lib/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +0 -317
  695. package/lib/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +0 -38
  696. package/lib/v1/form/fields/TagsMultiSelectField/props/propTypes.js +0 -83
  697. package/lib/v1/form/fields/TextBoxField/TextBoxField.js +0 -163
  698. package/lib/v1/form/fields/TextBoxField/props/defaultProps.js +0 -32
  699. package/lib/v1/form/fields/TextBoxField/props/propTypes.js +0 -62
  700. package/lib/v1/form/fields/TextEditor/TextEditor.js +0 -462
  701. package/lib/v1/form/fields/TextEditor/props/defaultProps.js +0 -23
  702. package/lib/v1/form/fields/TextEditor/props/propTypes.js +0 -64
  703. package/lib/v1/form/fields/TextEditorField/TextEditorField.js +0 -175
  704. package/lib/v1/form/fields/TextEditorField/props/defaultProps.js +0 -30
  705. package/lib/v1/form/fields/TextEditorField/props/propTypes.js +0 -67
  706. package/lib/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +0 -204
  707. package/lib/v1/form/fields/TextEditorWrapper/props/defaultProps.js +0 -16
  708. package/lib/v1/form/fields/TextEditorWrapper/props/propTypes.js +0 -51
  709. package/lib/v1/form/fields/TextareaField/TextareaField.js +0 -157
  710. package/lib/v1/form/fields/TextareaField/props/defaultProps.js +0 -30
  711. package/lib/v1/form/fields/TextareaField/props/propTypes.js +0 -53
  712. package/lib/v1/form/fields/ValidationMessage/ValidationMessage.js +0 -71
  713. package/lib/v1/form/fields/ValidationMessage/props/defaultProps.js +0 -14
  714. package/lib/v1/form/fields/ValidationMessage/props/propTypes.js +0 -27
  715. package/lib/v1/form/fields/index.js +0 -135
  716. package/lib/v1/form/fields/props/FieldCommonDefaultProps.js +0 -19
  717. package/lib/v1/form/fields/props/FieldCommonPropTypes.js +0 -28
  718. package/lib/v1/form/layout/Field/Field.js +0 -40
  719. package/lib/v1/form/layout/Field/props/defaultProps.js +0 -11
  720. package/lib/v1/form/layout/Field/props/propTypes.js +0 -21
  721. package/lib/v1/form/layout/Section/Section.js +0 -40
  722. package/lib/v1/form/layout/Section/props/propTypes.js +0 -22
  723. package/lib/v1/form/layout/index.js +0 -23
  724. package/lib/v1/layout/SetupDetailLayout/SetupDetailLayout.js +0 -212
  725. package/lib/v1/layout/SetupDetailLayout/index.js +0 -37
  726. package/lib/v1/layout/SetupDetailLayout/props/defaultProps.js +0 -30
  727. package/lib/v1/layout/SetupDetailLayout/props/propTypes.js +0 -54
  728. package/lib/v1/layout/SubtabLayout/SubtabLayout.js +0 -146
  729. package/lib/v1/layout/SubtabLayout/index.js +0 -37
  730. package/lib/v1/layout/SubtabLayout/props/defaultProps.js +0 -35
  731. package/lib/v1/layout/SubtabLayout/props/propTypes.js +0 -54
  732. package/lib/v1/list/AvatarFlip/AvatarFlip.js +0 -86
  733. package/lib/v1/list/AvatarFlip/props/defaultProps.js +0 -13
  734. package/lib/v1/list/AvatarFlip/props/propTypes.js +0 -40
  735. package/lib/v1/list/BluePrintStatus/BluePrintStatus.js +0 -33
  736. package/lib/v1/list/BluePrintStatus/props/propTypes.js +0 -15
  737. package/lib/v1/list/Comment/Comment.js +0 -49
  738. package/lib/v1/list/Comment/props/defaultProps.js +0 -11
  739. package/lib/v1/list/Comment/props/propTypes.js +0 -18
  740. package/lib/v1/list/DepartmentDropDown/DepartmentDropDown.js +0 -102
  741. package/lib/v1/list/DepartmentDropDown/props/defaultProps.js +0 -14
  742. package/lib/v1/list/DepartmentDropDown/props/propTypes.js +0 -35
  743. package/lib/v1/list/Dot/Dot.js +0 -27
  744. package/lib/v1/list/Dot/props/defaultProps.js +0 -11
  745. package/lib/v1/list/Dot/props/propTypes.js +0 -16
  746. package/lib/v1/list/DotNew/DotNew.js +0 -34
  747. package/lib/v1/list/DotNew/props/defaultProps.js +0 -10
  748. package/lib/v1/list/DotNew/props/propTypes.js +0 -17
  749. package/lib/v1/list/GridStencils/GridStencils.js +0 -42
  750. package/lib/v1/list/GridStencils/props/propTypes.js +0 -19
  751. package/lib/v1/list/Icons/AddNewIcon.js +0 -38
  752. package/lib/v1/list/Icons/CompleteIcon.js +0 -40
  753. package/lib/v1/list/Icons/DeleteIcon.js +0 -41
  754. package/lib/v1/list/Icons/EditIcon.js +0 -41
  755. package/lib/v1/list/Icons/FloatingIcons.js +0 -42
  756. package/lib/v1/list/Icons/ReadUnreadIcon.js +0 -46
  757. package/lib/v1/list/Icons/SmartIcon.js +0 -38
  758. package/lib/v1/list/Icons/index.js +0 -63
  759. package/lib/v1/list/Icons/props/defaultProps.js +0 -14
  760. package/lib/v1/list/Icons/props/propTypes.js +0 -70
  761. package/lib/v1/list/ListLayout/ListLayout.js +0 -82
  762. package/lib/v1/list/ListLayout/props/defaultProps.js +0 -18
  763. package/lib/v1/list/ListLayout/props/propTypes.js +0 -39
  764. package/lib/v1/list/ListStencils/ListStencils.js +0 -57
  765. package/lib/v1/list/ListStencils/props/defaultProps.js +0 -10
  766. package/lib/v1/list/ListStencils/props/propTypes.js +0 -15
  767. package/lib/v1/list/SecondaryText/AccountName.js +0 -86
  768. package/lib/v1/list/SecondaryText/ContactName.js +0 -94
  769. package/lib/v1/list/SecondaryText/DepartmentText.js +0 -29
  770. package/lib/v1/list/SecondaryText/Email.js +0 -53
  771. package/lib/v1/list/SecondaryText/HappinessRating.js +0 -34
  772. package/lib/v1/list/SecondaryText/PhoneNumber.js +0 -57
  773. package/lib/v1/list/SecondaryText/PriorityText.js +0 -33
  774. package/lib/v1/list/SecondaryText/SecondaryText.js +0 -38
  775. package/lib/v1/list/SecondaryText/StatusText.js +0 -34
  776. package/lib/v1/list/SecondaryText/TicketId.js +0 -54
  777. package/lib/v1/list/SecondaryText/Website.js +0 -48
  778. package/lib/v1/list/SecondaryText/index.js +0 -95
  779. package/lib/v1/list/SecondaryText/props/defaultProps.js +0 -59
  780. package/lib/v1/list/SecondaryText/props/propTypes.js +0 -163
  781. package/lib/v1/list/SecondryPanel/SecondryPanel.js +0 -104
  782. package/lib/v1/list/SecondryPanel/props/defaultProps.js +0 -28
  783. package/lib/v1/list/SecondryPanel/props/propTypes.js +0 -41
  784. package/lib/v1/list/SentimentStatus/SentimentStatus.js +0 -35
  785. package/lib/v1/list/SentimentStatus/props/propTypes.js +0 -16
  786. package/lib/v1/list/Subject/Subject.js +0 -65
  787. package/lib/v1/list/Subject/props/defaultProps.js +0 -15
  788. package/lib/v1/list/Subject/props/propTypes.js +0 -31
  789. package/lib/v1/list/TagNew/TagNew.js +0 -35
  790. package/lib/v1/list/TagNew/props/defaultProps.js +0 -11
  791. package/lib/v1/list/TagNew/props/propTypes.js +0 -19
  792. package/lib/v1/list/Thread/Thread.js +0 -46
  793. package/lib/v1/list/Thread/props/defaultProps.js +0 -11
  794. package/lib/v1/list/Thread/props/propTypes.js +0 -19
  795. package/lib/v1/list/index.js +0 -165
  796. package/lib/v1/list/status/StatusDropdown/StatusDropdown.js +0 -363
  797. package/lib/v1/list/status/StatusDropdown/props/defaultProps.js +0 -29
  798. package/lib/v1/list/status/StatusDropdown/props/propTypes.js +0 -34
  799. package/lib/v1/list/status/StatusListItem/StatusListItem.js +0 -124
  800. package/lib/v1/list/status/StatusListItem/props/defaultProps.js +0 -23
  801. package/lib/v1/list/status/StatusListItem/props/propTypes.js +0 -42
  802. package/lib/v1/list/status/index.js +0 -23
  803. package/lib/v1/lookup/EmptyPage/EmptyPage.js +0 -70
  804. package/lib/v1/lookup/EmptyPage/props/defaultProps.js +0 -11
  805. package/lib/v1/lookup/EmptyPage/props/propTypes.js +0 -16
  806. package/lib/v1/lookup/Lookup/Lookup.js +0 -145
  807. package/lib/v1/lookup/Lookup/props/defaultProps.js +0 -16
  808. package/lib/v1/lookup/Lookup/props/propTypes.js +0 -35
  809. package/lib/v1/lookup/Section/Section.js +0 -30
  810. package/lib/v1/lookup/Section/props/propTypes.js +0 -17
  811. package/lib/v1/lookup/header/Close/Close.js +0 -47
  812. package/lib/v1/lookup/header/Close/props/defaultProps.js +0 -10
  813. package/lib/v1/lookup/header/Close/props/propTypes.js +0 -17
  814. package/lib/v1/lookup/header/ModuleHeader/ModuleHeader.js +0 -116
  815. package/lib/v1/lookup/header/ModuleHeader/props/defaultProps.js +0 -16
  816. package/lib/v1/lookup/header/ModuleHeader/props/propTypes.js +0 -31
  817. package/lib/v1/lookup/header/Search/Search.js +0 -208
  818. package/lib/v1/lookup/header/Search/props/defaultProps.js +0 -12
  819. package/lib/v1/lookup/header/Search/props/propTypes.js +0 -40
  820. package/lib/v1/lookup/header/TicketHeader/TicketHeader.js +0 -133
  821. package/lib/v1/lookup/header/TicketHeader/props/defaultProps.js +0 -17
  822. package/lib/v1/lookup/header/TicketHeader/props/propTypes.js +0 -32
  823. package/lib/v1/lookup/header/Title/Title.js +0 -44
  824. package/lib/v1/lookup/header/Title/props/defaultProps.js +0 -10
  825. package/lib/v1/lookup/header/Title/props/propTypes.js +0 -17
  826. package/lib/v1/lookup/header/ViewDropDown/ViewDropDown.js +0 -239
  827. package/lib/v1/lookup/header/ViewDropDown/props/defaultProps.js +0 -17
  828. package/lib/v1/lookup/header/ViewDropDown/props/propTypes.js +0 -38
  829. package/lib/v1/lookup/header/index.js +0 -47
  830. package/lib/v1/notification/DesktopNotification/DesktopNotification.js +0 -209
  831. package/lib/v1/notification/DesktopNotification/props/defaultProps.js +0 -26
  832. package/lib/v1/notification/DesktopNotification/props/propTypes.js +0 -55
  833. package/lib/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +0 -105
  834. package/lib/v1/notification/DesktopNotificationHeader/props/defaultProps.js +0 -16
  835. package/lib/v1/notification/DesktopNotificationHeader/props/propTypes.js +0 -24
  836. package/lib/v1/setup/header/Button/Button.js +0 -37
  837. package/lib/v1/setup/header/Button/props/defaultProps.js +0 -11
  838. package/lib/v1/setup/header/Button/props/propTypes.js +0 -18
  839. package/lib/v1/setup/header/Link/Link.js +0 -47
  840. package/lib/v1/setup/header/Link/props/defaultProps.js +0 -11
  841. package/lib/v1/setup/header/Link/props/propTypes.js +0 -19
  842. package/lib/v1/setup/header/Search/Search.js +0 -99
  843. package/lib/v1/setup/header/Search/props/defaultProps.js +0 -13
  844. package/lib/v1/setup/header/Search/props/propTypes.js +0 -23
  845. package/lib/v1/setup/header/Views/Views.js +0 -47
  846. package/lib/v1/setup/header/Views/props/defaultProps.js +0 -13
  847. package/lib/v1/setup/header/Views/props/propTypes.js +0 -20
  848. package/lib/v1/setup/header/index.js +0 -39
  849. package/lib/v1/setup/helptips/Description/Description.js +0 -23
  850. package/lib/v1/setup/helptips/Description/props/propTypes.js +0 -15
  851. package/lib/v1/setup/helptips/Link/Link.js +0 -42
  852. package/lib/v1/setup/helptips/Link/props/propTypes.js +0 -18
  853. package/lib/v1/setup/helptips/ListGroup/ListGroup.js +0 -42
  854. package/lib/v1/setup/helptips/ListGroup/props/propTypes.js +0 -16
  855. package/lib/v1/setup/helptips/Title/Title.js +0 -23
  856. package/lib/v1/setup/helptips/Title/props/propTypes.js +0 -15
  857. package/lib/v1/setup/helptips/index.js +0 -39
  858. package/lib/v1/setup/index.js +0 -24
  859. package/lib/v1/setup/table/Table/Table.js +0 -34
  860. package/lib/v1/setup/table/Table/props/defaultProps.js +0 -11
  861. package/lib/v1/setup/table/Table/props/propTypes.js +0 -17
  862. package/lib/v1/setup/table/TableBody/TableBody.js +0 -39
  863. package/lib/v1/setup/table/TableBody/props/defaultProps.js +0 -10
  864. package/lib/v1/setup/table/TableBody/props/propTypes.js +0 -18
  865. package/lib/v1/setup/table/TableData/TableData.js +0 -44
  866. package/lib/v1/setup/table/TableData/props/defaultProps.js +0 -12
  867. package/lib/v1/setup/table/TableData/props/propTypes.js +0 -22
  868. package/lib/v1/setup/table/TableHead/TableHead.js +0 -44
  869. package/lib/v1/setup/table/TableHead/props/defaultProps.js +0 -11
  870. package/lib/v1/setup/table/TableHead/props/propTypes.js +0 -19
  871. package/lib/v1/setup/table/TableRow/TableRow.js +0 -49
  872. package/lib/v1/setup/table/TableRow/props/defaultProps.js +0 -11
  873. package/lib/v1/setup/table/TableRow/props/propTypes.js +0 -22
  874. package/lib/v1/setup/table/Text/Text.js +0 -64
  875. package/lib/v1/setup/table/Text/props/defaultProps.js +0 -14
  876. package/lib/v1/setup/table/Text/props/propTypes.js +0 -24
  877. package/lib/v1/setup/table/index.js +0 -47
  878. package/lib/v1/svg/PlusIcon.js +0 -37
  879. package/lib/v1/svg/SnippetIcon.js +0 -39
  880. package/lib/v1/svg/TemplateIcon.js +0 -40
  881. package/lib/v1/svg/index.js +0 -31
  882. package/lib/v1/svg/props/defaultProps.js +0 -24
  883. package/lib/v1/svg/props/propTypes.js +0 -29
  884. package/lib/v1/utils/ChannelIconMapping.js +0 -138
  885. package/lib/v1/utils/General.js +0 -58
  886. package/lib/v1/utils/editorUtils.js +0 -224
@@ -1,3 +1,5 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  import React from 'react';
2
4
  import { defaultProps } from "./props/defaultProps";
3
5
  import { propTypes } from "./props/propTypes";
@@ -28,7 +30,7 @@ export default class AvatarIcon extends React.Component {
28
30
  AvatarIconProps = {}
29
31
  } = customProps;
30
32
  let border = borderOnHover || onClick;
31
- return /*#__PURE__*/React.createElement(Container, {
33
+ return /*#__PURE__*/React.createElement(Container, _extends({
32
34
  className: `${style.container} ${borderOnActive ? style.borderOnActive : border ? style.borderOnHover : ''} ${AvatarSize(size)} ${style[palette] ? style[palette] : ''} ${className}`,
33
35
  onClick: onClick,
34
36
  dataId: dataId,
@@ -36,9 +38,8 @@ export default class AvatarIcon extends React.Component {
36
38
  isInline: true,
37
39
  align: "both",
38
40
  isCover: false,
39
- dataSelectorId: dataSelectorId,
40
- ...AvatarIconProps
41
- }, /*#__PURE__*/React.createElement(Icon, {
41
+ dataSelectorId: dataSelectorId
42
+ }, AvatarIconProps), /*#__PURE__*/React.createElement(Icon, {
42
43
  name: name,
43
44
  size: iconSize,
44
45
  iconClass: ` ${iconClass} ${style.avatar_align_center} ${style.iconColor} ${iconColor ? ` ${style[`icon_${iconColor}`] ? style[`icon_${iconColor}`] : ''}` : ''} `,
@@ -1,3 +1,5 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  import React from 'react';
2
4
  import { defaultProps } from "./props/defaultProps";
3
5
  import { propTypes } from "./props/propTypes";
@@ -34,12 +36,12 @@ export default class AvatarStatus extends React.Component {
34
36
  AvatarStatusProps = {},
35
37
  AvatarProps = {}
36
38
  } = customProps;
37
- return /*#__PURE__*/React.createElement("div", {
38
- className: `${style.container} ${className} `,
39
- ...AvatarStatusProps,
39
+ return /*#__PURE__*/React.createElement("div", _extends({
40
+ className: `${style.container} ${className} `
41
+ }, AvatarStatusProps, {
40
42
  "aria-label": `${title}, ${name}, ${statusTitle}`,
41
43
  "data-selector-id": dataSelectorId
42
- }, /*#__PURE__*/React.createElement(Avatar, {
44
+ }), /*#__PURE__*/React.createElement(Avatar, _extends({
43
45
  src: src,
44
46
  name: name,
45
47
  palette: palette,
@@ -53,9 +55,8 @@ export default class AvatarStatus extends React.Component {
53
55
  shape: shape,
54
56
  needTitle: needTitle,
55
57
  needDefaultBorder: needDefaultBorder,
56
- needBorder: needBorder,
57
- ...AvatarProps
58
- }), /*#__PURE__*/React.createElement("span", {
58
+ needBorder: needBorder
59
+ }, AvatarProps)), /*#__PURE__*/React.createElement("span", {
59
60
  "data-title": statusTitle,
60
61
  className: `${style.state} ${style[state]} ${style[size]} ${style[shape]}`
61
62
  }));
@@ -1,3 +1,5 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  import React from 'react';
2
4
  import { defaultProps } from "./props/defaultProps";
3
5
  import { propTypes } from "./props/propTypes";
@@ -37,11 +39,10 @@ export default class AvatarThread extends React.Component {
37
39
  AvatarProps = {}
38
40
  } = customProps;
39
41
  let hoverEffect = showOnHover ? style.hover : '';
40
- return /*#__PURE__*/React.createElement("div", {
42
+ return /*#__PURE__*/React.createElement("div", _extends({
41
43
  className: `${style.container} ${onClick ? style.pointer : ''} ${hoverEffect}`,
42
- "data-selector-id": dataSelectorId,
43
- ...AvatarThreadProps
44
- }, /*#__PURE__*/React.createElement(Avatar, {
44
+ "data-selector-id": dataSelectorId
45
+ }, AvatarThreadProps), /*#__PURE__*/React.createElement(Avatar, _extends({
45
46
  initial: initial,
46
47
  src: src,
47
48
  name: name,
@@ -52,9 +53,8 @@ export default class AvatarThread extends React.Component {
52
53
  palette: palette,
53
54
  textPalette: textPalette,
54
55
  customClass: customTextClass,
55
- needTitle: needTitle,
56
- ...AvatarProps
57
- }), (iconName || getCustomThread) && /*#__PURE__*/React.createElement("span", {
56
+ needTitle: needTitle
57
+ }, AvatarProps)), (iconName || getCustomThread) && /*#__PURE__*/React.createElement("span", {
58
58
  className: `${style.thread} ${onIconClick ? style.pointer : style.defaultCursor} ${needBackground ? style.threadBg : ''} ${style[`thread_${size}_pos`]} ${needBorder ? style[`border_${borderPalette}`] : ''}`,
59
59
  "data-title": iconTitle,
60
60
  "data-id": iconTitle === 'Remove Follower' && 'removeFollower',
@@ -1,3 +1,5 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  /**** Libraries ****/
2
4
  import React from 'react';
3
5
  import { defaultProps } from "./props/defaultProps";
@@ -48,22 +50,20 @@ export default class AvatarUser extends React.Component {
48
50
  portalTitle = 'End User',
49
51
  lockTitle = 'Locked'
50
52
  } = i18nKeys;
51
- return /*#__PURE__*/React.createElement("div", {
53
+ return /*#__PURE__*/React.createElement("div", _extends({
52
54
  className: `${style.container} ${style[size]}`,
53
55
  "data-id": dataId || name || iconName,
54
56
  "data-test-id": dataId || name || iconName,
55
- "data-selector-id": dataSelectorId,
56
- ...AvatarUserProps
57
- }, iconName ? /*#__PURE__*/React.createElement(AvatarIcon, {
57
+ "data-selector-id": dataSelectorId
58
+ }, AvatarUserProps), iconName ? /*#__PURE__*/React.createElement(AvatarIcon, _extends({
58
59
  name: iconName,
59
60
  iconSize: iconSize,
60
61
  size: size,
61
62
  iconClass: iconClass,
62
63
  dataId: iconName,
63
64
  iconColor: iconColor,
64
- title: title,
65
- ...AvatarIconProps
66
- }) : /*#__PURE__*/React.createElement(Avatar, {
65
+ title: title
66
+ }, AvatarIconProps)) : /*#__PURE__*/React.createElement(Avatar, _extends({
67
67
  src: src,
68
68
  name: name,
69
69
  initial: initial,
@@ -74,9 +74,8 @@ export default class AvatarUser extends React.Component {
74
74
  palette: palette,
75
75
  textPalette: textPalette,
76
76
  customClass: customTextClass,
77
- alternateSrc: alternateSrc,
78
- ...AvatarProps
79
- }), isPaid ? /*#__PURE__*/React.createElement("span", {
77
+ alternateSrc: alternateSrc
78
+ }, AvatarProps)), isPaid ? /*#__PURE__*/React.createElement("span", {
80
79
  "data-title": paidTitle,
81
80
  className: style.paid,
82
81
  "data-id": "paidUser",
@@ -1,3 +1,5 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  import React from 'react';
2
4
  import { defaultProps } from "./props/defaultProps";
3
5
  import { propTypes } from "./props/propTypes";
@@ -31,13 +33,12 @@ export default class AvatarWithTeam extends React.Component {
31
33
  Avatar2Props = {},
32
34
  AvatarTeam2Props = {}
33
35
  } = customProps;
34
- return /*#__PURE__*/React.createElement("span", {
36
+ return /*#__PURE__*/React.createElement("span", _extends({
35
37
  className: `${style.container} `,
36
38
  "data-id": "avatarWithTeamId",
37
39
  "data-test-id": "avatarWithTeamId",
38
- "data-selector-id": dataSelectorId,
39
- ...AvatarWithTeamProps
40
- }, isTeam && teamName ? /*#__PURE__*/React.createElement(Avatar, {
40
+ "data-selector-id": dataSelectorId
41
+ }, AvatarWithTeamProps), isTeam && teamName ? /*#__PURE__*/React.createElement(Avatar, _extends({
41
42
  name: name,
42
43
  src: src,
43
44
  size: size,
@@ -46,9 +47,8 @@ export default class AvatarWithTeam extends React.Component {
46
47
  palette: palette,
47
48
  textPalette: textPalette,
48
49
  customClass: customTextClass,
49
- borderOnActive: borderOnActive,
50
- ...Avatar1Props
51
- }) : isTeam ? /*#__PURE__*/React.createElement(AvatarTeam, {
50
+ borderOnActive: borderOnActive
51
+ }, Avatar1Props)) : isTeam ? /*#__PURE__*/React.createElement(AvatarTeam, _extends({
52
52
  name: name,
53
53
  src: src,
54
54
  size: size,
@@ -59,9 +59,8 @@ export default class AvatarWithTeam extends React.Component {
59
59
  customClass: {
60
60
  customAvatar: customTextClass
61
61
  },
62
- borderOnActive: borderOnActive,
63
- ...AvatarTeam1Props
64
- }) : /*#__PURE__*/React.createElement(Avatar, {
62
+ borderOnActive: borderOnActive
63
+ }, AvatarTeam1Props)) : /*#__PURE__*/React.createElement(Avatar, _extends({
65
64
  name: name,
66
65
  src: src,
67
66
  size: size,
@@ -70,14 +69,13 @@ export default class AvatarWithTeam extends React.Component {
70
69
  palette: palette,
71
70
  textPalette: textPalette,
72
71
  customClass: customTextClass,
73
- borderOnActive: borderOnActive,
74
- ...Avatar2Props
75
- }), teamName ? /*#__PURE__*/React.createElement("span", {
72
+ borderOnActive: borderOnActive
73
+ }, Avatar2Props)), teamName ? /*#__PURE__*/React.createElement("span", {
76
74
  className: `${style.teamAvatar} ${teamClassName} `,
77
75
  "data-id": "teamNameTestId",
78
76
  "data-test-id": "teamNameTestId",
79
77
  "data-title": needTitle ? title : undefined
80
- }, /*#__PURE__*/React.createElement(AvatarTeam, {
78
+ }, /*#__PURE__*/React.createElement(AvatarTeam, _extends({
81
79
  name: teamName,
82
80
  size: "small",
83
81
  palette: palette,
@@ -87,9 +85,8 @@ export default class AvatarWithTeam extends React.Component {
87
85
  customClass: {
88
86
  customAvatar: customTextClass
89
87
  },
90
- borderOnActive: teamBorderActive,
91
- ...AvatarTeam2Props
92
- })) : null);
88
+ borderOnActive: teamBorderActive
89
+ }, AvatarTeam2Props))) : null);
93
90
  }
94
91
 
95
92
  }
@@ -1 +1 @@
1
- @layer dot-core, dot-core.ActionButton, dot-core.AlphabeticList, dot-core.Attachment, dot-core.AttachmentViewer, dot-core.ChannelIcon, dot-core.Drawer, dot-core.ExternalLink, dot-core.FlipCard, dot-core.FormAction, dot-core.css, dot-core.IconButton, dot-core.Image, dot-core.ImportantNotes, dot-core.Link, dot-core.Loader, dot-core.Message, dot-core.MessageBanner, dot-core.NewStar, dot-core.PlusIcon, dot-core.Separator, dot-core.TagWithIcon, dot-core.ToastMessage, dot-core.Upload, dot-core.AlertHeader, dot-core.AlertLookup, dot-core.AvatarClose, dot-core.AvatarCollision, dot-core.AvatarIcon, dot-core.AvatarStatus, dot-core.AvatarThread, dot-core.AvatarUser, dot-core.AvatarWithTeam, dot-core.common, dot-core.FreezeLayer, dot-core.SelectDropdown, dot-core.ToggleDropDown, dot-core.CommonEmptyState, dot-core.EditionPage, dot-core.errorstate, dot-core.Inconvenience, dot-core.LinkText, dot-core.NoRequestFound, dot-core.PermissionPlay, dot-core.RequestUrlNotFound, dot-core.UnableToProcess, dot-core.UnauthorizedLogin, dot-core.WillBack, dot-core.fields, dot-core.TagsMultiSelect, dot-core.TagsMultiSelectField, dot-core.TextEditor, dot-core.TextEditorWrapper, dot-core.ValidationMessage, dot-core.Field, dot-core.Section, dot-core.SetupDetailLayout, dot-core.SubtabLayout, dot-core.AvatarFlip, dot-core.BluePrintStatus, dot-core.Comment, dot-core.DepartmentDropDown, dot-core.Dot, dot-core.DotNew, dot-core.GridStencils, dot-core.Icons, dot-core.ListLayout, dot-core.ListStencils, dot-core.SecondaryText, dot-core.SecondryPanel, dot-core.SentimentStatus, dot-core.Subject, dot-core.TagNew, dot-core.Thread, dot-core.list, dot-core.StatusDropdown, dot-core.StatusListItem, dot-core.EmptyPage, dot-core.Lookup, dot-core.Close, dot-core.Search, dot-core.TicketHeader, dot-core.Title, dot-core.ViewDropDown, dot-core.header, dot-core.Button, dot-core.Views, dot-core.Description, dot-core.ListGroup, dot-core.TableData, dot-core.TableHead, dot-core.TableRow, dot-core.Text, dot-core.AlertClose, dot-core.GlobalNotification, dot-core.alertIcons, dot-core.lookup, dot-core.DesktopNotification, dot-core.DesktopNotificationHeader, dot-core.mode, dot-core.blue, dot-core.green, dot-core.orange, dot-core.red, dot-core.yellow;
1
+ @layer dot-core, dot-core.theme, dot-core.core, dot-core.atom, dot-core.molecule, dot-core.organism, dot-core.page, dot-core.ActionButton, dot-core.AlphabeticList, dot-core.Attachment, dot-core.AttachmentViewer, dot-core.ChannelIcon, dot-core.Drawer, dot-core.ExternalLink, dot-core.FlipCard, dot-core.FormAction, dot-core.css, dot-core.IconButton, dot-core.Image, dot-core.ImportantNotes, dot-core.Link, dot-core.Loader, dot-core.Message, dot-core.MessageBanner, dot-core.NewStar, dot-core.PlusIcon, dot-core.Separator, dot-core.TagWithIcon, dot-core.ToastMessage, dot-core.Upload, dot-core.AlertHeader, dot-core.AlertLookup, dot-core.AvatarClose, dot-core.AvatarCollision, dot-core.AvatarIcon, dot-core.AvatarStatus, dot-core.AvatarThread, dot-core.AvatarUser, dot-core.AvatarWithTeam, dot-core.common, dot-core.FreezeLayer, dot-core.SelectDropdown, dot-core.ToggleDropDown, dot-core.CommonEmptyState, dot-core.EditionPage, dot-core.errorstate, dot-core.Inconvenience, dot-core.LinkText, dot-core.NoRequestFound, dot-core.PermissionPlay, dot-core.RequestUrlNotFound, dot-core.UnableToProcess, dot-core.UnauthorizedLogin, dot-core.WillBack, dot-core.fields, dot-core.TagsMultiSelect, dot-core.TagsMultiSelectField, dot-core.TextEditor, dot-core.TextEditorWrapper, dot-core.ValidationMessage, dot-core.Field, dot-core.Section, dot-core.SetupDetailLayout, dot-core.SubtabLayout, dot-core.AvatarFlip, dot-core.BluePrintStatus, dot-core.Comment, dot-core.DepartmentDropDown, dot-core.Dot, dot-core.DotNew, dot-core.GridStencils, dot-core.Icons, dot-core.ListLayout, dot-core.ListStencils, dot-core.SecondaryText, dot-core.SecondryPanel, dot-core.SentimentStatus, dot-core.Subject, dot-core.TagNew, dot-core.Thread, dot-core.list, dot-core.StatusDropdown, dot-core.StatusListItem, dot-core.EmptyPage, dot-core.Lookup, dot-core.Close, dot-core.Search, dot-core.TicketHeader, dot-core.Title, dot-core.ViewDropDown, dot-core.header, dot-core.Button, dot-core.Views, dot-core.Description, dot-core.ListGroup, dot-core.TableData, dot-core.TableHead, dot-core.TableRow, dot-core.Text, dot-core.AlertClose, dot-core.GlobalNotification, dot-core.alertIcons, dot-core.lookup, dot-core.DesktopNotification, dot-core.DesktopNotificationHeader;
@@ -1,3 +1,5 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  import React, { Component, Fragment } from 'react';
2
4
  import { defaultProps } from "./props/defaultProps";
3
5
  import { propTypes } from "./props/propTypes";
@@ -565,22 +567,21 @@ export class ToggleDropDown extends Component {
565
567
  let listIndex = -1;
566
568
  const ariaTitleId = this.getAriaId(); // const allyOptionsArr = this.getOptionsArray();
567
569
 
568
- return /*#__PURE__*/React.createElement("div", {
570
+ return /*#__PURE__*/React.createElement("div", _extends({
569
571
  className: style.wrapper,
570
572
  onMouseEnter: showOnHover && !isDisabled && !isReadOnly && isEditable ? this.showTogglePopup : undefined,
571
573
  onMouseLeave: showOnHover && !isDisabled && !isReadOnly && isEditable ? this.hideTogglePopup : undefined,
572
- "data-selector-id": dataSelectorId,
573
- ...ToggleDropDownProps
574
- }, /*#__PURE__*/React.createElement(Container, {
574
+ "data-selector-id": dataSelectorId
575
+ }, ToggleDropDownProps), /*#__PURE__*/React.createElement(Container, {
575
576
  alignBox: "row",
576
577
  onClick: !showOnHover && !isDisabled && !isReadOnly && isEditable && this.handleTogglePopup,
577
578
  eleRef: getTargetRef,
578
579
  align: "vertical",
579
580
  isCover: false,
580
581
  dataId: dataId
581
- }, children ? isToggleStateNeeded ? /*#__PURE__*/React.createElement(Component, { ...componentProps,
582
+ }, children ? isToggleStateNeeded ? /*#__PURE__*/React.createElement(Component, _extends({}, componentProps, {
582
583
  isActive: isPopupOpen
583
- }) : children : /*#__PURE__*/React.createElement(RippleEffect, {
584
+ })) : children : /*#__PURE__*/React.createElement(RippleEffect, {
584
585
  hoverType: hoverType,
585
586
  isActive: isPopupOpen,
586
587
  isNeedEffect: isEditable && isNeedEffect
@@ -620,7 +621,7 @@ export class ToggleDropDown extends Component {
620
621
  let {
621
622
  tabletMode
622
623
  } = _ref4;
623
- return /*#__PURE__*/React.createElement(ResponsiveDropBox, {
624
+ return /*#__PURE__*/React.createElement(ResponsiveDropBox, _extends({
624
625
  boxPosition: position,
625
626
  isActive: isPopupReady,
626
627
  onClick: removeClose,
@@ -657,12 +658,12 @@ export class ToggleDropDown extends Component {
657
658
  isFetchingOptions: isFetchingOptions
658
659
  }
659
660
  },
660
- dataId: `${dataId}_dropbox`,
661
- ...DropBoxProps,
661
+ dataId: `${dataId}_dropbox`
662
+ }, DropBoxProps, {
662
663
  onClose: this.handleTogglePopup
663
- }, /*#__PURE__*/React.createElement(React.Fragment, null, isSearch ? /*#__PURE__*/React.createElement(Box, {
664
+ }), /*#__PURE__*/React.createElement(React.Fragment, null, isSearch ? /*#__PURE__*/React.createElement(Box, {
664
665
  className: style.search
665
- }, /*#__PURE__*/React.createElement(TextBoxIcon, {
666
+ }, /*#__PURE__*/React.createElement(TextBoxIcon, _extends({
666
667
  placeHolder: placeHolderText,
667
668
  onChange: this.handleChange,
668
669
  value: searchValue,
@@ -684,9 +685,8 @@ export class ToggleDropDown extends Component {
684
685
  ariaAutocomplete: 'list',
685
686
  ariaHaspopup: true,
686
687
  ariaExpanded: true
687
- },
688
- ...TextBoxIconProps
689
- })) : null, title && options.length != 0 && /*#__PURE__*/React.createElement(Box, {
688
+ }
689
+ }, TextBoxIconProps))) : null, title && options.length != 0 && /*#__PURE__*/React.createElement(Box, {
690
690
  className: style.title
691
691
  }, /*#__PURE__*/React.createElement(DropDownHeading, {
692
692
  text: title,
@@ -739,7 +739,7 @@ export class ToggleDropDown extends Component {
739
739
  secondaryValue
740
740
  } = item;
741
741
  listIndex += 1;
742
- return iconName ? /*#__PURE__*/React.createElement(ListItemWithIcon, {
742
+ return iconName ? /*#__PURE__*/React.createElement(ListItemWithIcon, _extends({
743
743
  key: listIndex,
744
744
  dataId: item[keyName],
745
745
  value: item[keyName],
@@ -766,9 +766,8 @@ export class ToggleDropDown extends Component {
766
766
  ariaSelected: selectedId === item[idName],
767
767
  ariaLabel: item[keyName]
768
768
  },
769
- secondaryValue: secondaryValue,
770
- ...ListItemWithIconProps
771
- }) : /*#__PURE__*/React.createElement(ListItem, {
769
+ secondaryValue: secondaryValue
770
+ }, ListItemWithIconProps)) : /*#__PURE__*/React.createElement(ListItem, _extends({
772
771
  key: listIndex,
773
772
  dataId: item[keyName],
774
773
  value: item[keyName],
@@ -792,9 +791,8 @@ export class ToggleDropDown extends Component {
792
791
  ariaSelected: selectedId === item[idName],
793
792
  ariaLabel: item[keyName]
794
793
  },
795
- secondaryValue: secondaryValue,
796
- ...ListItemProps
797
- });
794
+ secondaryValue: secondaryValue
795
+ }, ListItemProps));
798
796
  }));
799
797
  }), isFetchingOptions && /*#__PURE__*/React.createElement(Container, {
800
798
  isCover: false,
@@ -820,7 +818,7 @@ export class ToggleDropDown extends Component {
820
818
  key: i
821
819
  }, needDivider ? /*#__PURE__*/React.createElement("div", {
822
820
  className: style.seperatedLine
823
- }) : iconName ? /*#__PURE__*/React.createElement(ListItemWithIcon, {
821
+ }) : iconName ? /*#__PURE__*/React.createElement(ListItemWithIcon, _extends({
824
822
  dataId: item[keyName],
825
823
  value: item[keyName],
826
824
  id: item[idName],
@@ -847,9 +845,8 @@ export class ToggleDropDown extends Component {
847
845
  ariaSelected: selectedId === item[idName],
848
846
  ariaLabel: item[keyName]
849
847
  },
850
- secondaryValue: secondaryValue,
851
- ...ListItemWithIconProps
852
- }) : /*#__PURE__*/React.createElement(ListItem, {
848
+ secondaryValue: secondaryValue
849
+ }, ListItemWithIconProps)) : /*#__PURE__*/React.createElement(ListItem, _extends({
853
850
  key: listIndex,
854
851
  dataId: item[keyName],
855
852
  value: item[keyName],
@@ -873,9 +870,8 @@ export class ToggleDropDown extends Component {
873
870
  ariaSelected: selectedId === item[idName],
874
871
  ariaLabel: item[keyName]
875
872
  },
876
- secondaryValue: secondaryValue,
877
- ...ListItemProps
878
- }));
873
+ secondaryValue: secondaryValue
874
+ }, ListItemProps)));
879
875
  }), isFetchingOptions && /*#__PURE__*/React.createElement(Container, {
880
876
  isCover: false,
881
877
  align: "both"
@@ -79,7 +79,7 @@ export default class Inconvenience extends React.Component {
79
79
  Inconvenience.propTypes = propTypes;
80
80
  Inconvenience.defaultProps = defaultProps;
81
81
 
82
- if (false) {
82
+ if (__DOCS__) {
83
83
  Inconvenience.docs = {
84
84
  componentGroup: 'errorStates'
85
85
  };
@@ -79,7 +79,7 @@ export default class UnableToProcess extends React.Component {
79
79
  UnableToProcess.propTypes = propTypes;
80
80
  UnableToProcess.defaultProps = defaultProps;
81
81
 
82
- if (false) {
82
+ if (__DOCS__) {
83
83
  UnableToProcess.docs = {
84
84
  componentGroup: 'errorStates'
85
85
  };
@@ -1,3 +1,5 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  /**** Libraries ****/
2
4
  import React, { PureComponent } from 'react';
3
5
  import { defaultProps } from "./props/defaultProps";
@@ -85,7 +87,7 @@ export default class CheckBoxField extends PureComponent {
85
87
  lockedInfoText: lockedInfoText,
86
88
  infoText: infoText,
87
89
  renderProps: renderLabelProps
88
- }, /*#__PURE__*/React.createElement(Label, {
90
+ }, /*#__PURE__*/React.createElement(Label, _extends({
89
91
  text: labelName,
90
92
  isRequired: isMandatory,
91
93
  isDisabled: isDisabled,
@@ -104,9 +106,8 @@ export default class CheckBoxField extends PureComponent {
104
106
  label: {
105
107
  id
106
108
  }
107
- },
108
- ...LabelProps
109
- }));
109
+ }
110
+ }, LabelProps)));
110
111
  return /*#__PURE__*/React.createElement("div", {
111
112
  className: `${style.container} ${isDisabled ? style.disabled : isReadOnly ? style.readonly : ''}`,
112
113
  "data-title": isDisabled ? title : null,
@@ -119,30 +120,27 @@ export default class CheckBoxField extends PureComponent {
119
120
  align: "top"
120
121
  }, /*#__PURE__*/React.createElement(Box, {
121
122
  className: isDirectCol ? style.checkbox : style.checkboxRow
122
- }, /*#__PURE__*/React.createElement(CheckBox, {
123
+ }, /*#__PURE__*/React.createElement(CheckBox, _extends({
123
124
  id: id,
124
125
  onChange: this.handleChange,
125
126
  disabled: removeEvent,
126
127
  checked: checked,
127
128
  getRef: this.handleGetRef,
128
129
  dataId: dataId,
129
- getContainerRef: getContainerRef,
130
- ...CheckBoxProps
131
- })), !isDirectCol && /*#__PURE__*/React.createElement(Box, {
130
+ getContainerRef: getContainerRef
131
+ }, CheckBoxProps))), !isDirectCol && /*#__PURE__*/React.createElement(Box, {
132
132
  flexible: true
133
- }, labelElement)), children, validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, {
133
+ }, labelElement)), children, validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
134
134
  text: validationMessage,
135
135
  palette: validationPalette,
136
136
  type: errorType,
137
- dataId: `${dataId}_ValidationMessage`,
138
- ...ValidationMessageProps1
139
- }), validationRuleMessage && /*#__PURE__*/React.createElement(ValidationMessage, {
137
+ dataId: `${dataId}_ValidationMessage`
138
+ }, ValidationMessageProps1)), validationRuleMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
140
139
  text: validationRuleMessage,
141
140
  palette: validationRulePalette,
142
141
  type: errorType,
143
- dataId: `${dataId}_ValidationRuleMessage`,
144
- ...ValidationMessageProps2
145
- })));
142
+ dataId: `${dataId}_ValidationRuleMessage`
143
+ }, ValidationMessageProps2))));
146
144
  }
147
145
 
148
146
  }
@@ -1,3 +1,5 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  /**** Libraries ****/
2
4
  import React, { PureComponent } from 'react';
3
5
  import { defaultProps } from "./props/defaultProps";
@@ -127,7 +129,7 @@ export default class CurrencyField extends PureComponent {
127
129
  isLocked: isLocked,
128
130
  lockedInfoText: lockedInfoText,
129
131
  renderProps: renderLabelProps
130
- }, /*#__PURE__*/React.createElement(Label, {
132
+ }, /*#__PURE__*/React.createElement(Label, _extends({
131
133
  text: labelName,
132
134
  isRequired: isMandatory,
133
135
  isDisabled: isDisabled,
@@ -139,11 +141,10 @@ export default class CurrencyField extends PureComponent {
139
141
  size: fieldSize === 'small' ? 'small' : 'medium',
140
142
  htmlFor: uniqueId,
141
143
  customId: isDisabled ? `${dataId}_label_disabled` : isMandatory ? `${dataId}_label_mandatory` : `${dataId}_label`,
142
- testId: isDisabled ? `${dataId}_label_disabled` : isMandatory ? `${dataId}_label_mandatory` : `${dataId}_label`,
143
- ...LabelProps
144
- })), /*#__PURE__*/React.createElement("div", {
144
+ testId: isDisabled ? `${dataId}_label_disabled` : isMandatory ? `${dataId}_label_mandatory` : `${dataId}_label`
145
+ }, LabelProps))), /*#__PURE__*/React.createElement("div", {
145
146
  className: `${style.fieldContainer} ${labelName ? style[`fieldMargin_${fieldSize}`] : ''}`
146
- }, /*#__PURE__*/React.createElement(TextBoxIcon, {
147
+ }, /*#__PURE__*/React.createElement(TextBoxIcon, _extends({
147
148
  htmlId: uniqueId,
148
149
  id: id,
149
150
  type: textBoxType,
@@ -166,23 +167,20 @@ export default class CurrencyField extends PureComponent {
166
167
  needReadOnlyStyle: needReadOnlyStyle,
167
168
  a11y: {
168
169
  ariaLabelledby: labelName
169
- },
170
- ...TextBoxIconProps
171
- }), validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, {
170
+ }
171
+ }, TextBoxIconProps)), validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
172
172
  text: validationMessage,
173
173
  palette: validationPalette,
174
174
  type: errorType,
175
175
  dataId: `${dataId}_ValidationMessage`,
176
- htmlFor: uniqueId,
177
- ...ValidationMessageProps1
178
- }), validationRuleMessage && /*#__PURE__*/React.createElement(ValidationMessage, {
176
+ htmlFor: uniqueId
177
+ }, ValidationMessageProps1)), validationRuleMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
179
178
  text: validationRuleMessage,
180
179
  palette: validationRulePalette,
181
180
  type: errorType,
182
181
  htmlFor: uniqueId,
183
- dataId: `${dataId}_ValidationRuleMessage`,
184
- ...ValidationMessageProps2
185
- })));
182
+ dataId: `${dataId}_ValidationRuleMessage`
183
+ }, ValidationMessageProps2))));
186
184
  }
187
185
 
188
186
  }
@@ -1,3 +1,5 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  /**** Libraries ****/
2
4
  import React, { PureComponent } from 'react';
3
5
  import { defaultProps } from "./props/defaultProps";
@@ -131,7 +133,7 @@ export default class DateField extends PureComponent {
131
133
  isLocked: isLocked,
132
134
  lockedInfoText: lockedInfoText,
133
135
  renderProps: renderLabelProps
134
- }, /*#__PURE__*/React.createElement(Label, {
136
+ }, /*#__PURE__*/React.createElement(Label, _extends({
135
137
  text: labelName,
136
138
  isRequired: isMandatory,
137
139
  isDisabled: isDisabled,
@@ -149,13 +151,12 @@ export default class DateField extends PureComponent {
149
151
  label: {
150
152
  id: labelName
151
153
  }
152
- },
153
- ...LabelProps
154
- })), /*#__PURE__*/React.createElement("div", {
154
+ }
155
+ }, LabelProps))), /*#__PURE__*/React.createElement("div", {
155
156
  className: `${style.fieldContainer} ${labelName ? style[`fieldMargin_${fieldSize}`] : ''}`
156
157
  }, isLocked && lockedValueText ? /*#__PURE__*/React.createElement("div", {
157
158
  className: style.lockText
158
- }, lockedValueText) : /*#__PURE__*/React.createElement(DateWidget, {
159
+ }, lockedValueText) : /*#__PURE__*/React.createElement(DateWidget, _extends({
159
160
  textBoxSize: fieldSize === 'medium' ? textBoxSize : 'xsmall',
160
161
  textBoxVariant: textBoxVariant,
161
162
  isDateTime: isDateTime,
@@ -173,26 +174,24 @@ export default class DateField extends PureComponent {
173
174
  isEditable: true,
174
175
  htmlId: getAriaId,
175
176
  i18nKeys: i18nKeys,
176
- iconOnHover: iconOnHover,
177
- ...DateWidgetProps,
177
+ iconOnHover: iconOnHover
178
+ }, DateWidgetProps, {
178
179
  a11y: {
179
180
  ariaLabelledby: labelName
180
181
  }
181
- }), validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, {
182
+ })), validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
182
183
  text: validationMessage,
183
184
  palette: validationPalette,
184
185
  type: errorType,
185
186
  htmlFor: getAriaId,
186
- dataId: `${dataId}_ValidationMessage`,
187
- ...ValidationMessageProps1
188
- }), validationRuleMessage && /*#__PURE__*/React.createElement(ValidationMessage, {
187
+ dataId: `${dataId}_ValidationMessage`
188
+ }, ValidationMessageProps1)), validationRuleMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
189
189
  text: validationRuleMessage,
190
190
  palette: validationRulePalette,
191
191
  type: errorType,
192
192
  htmlFor: getAriaId,
193
- dataId: `${dataId}_ValidationRuleMessage`,
194
- ...ValidationMessageProps2
195
- })));
193
+ dataId: `${dataId}_ValidationRuleMessage`
194
+ }, ValidationMessageProps2))));
196
195
  }
197
196
 
198
197
  }
@@ -226,7 +226,10 @@ position: relative;
226
226
  [dir=rtl] .rightPlaceholder{
227
227
  left:var(--zd_size15)
228
228
  }
229
-
230
229
  .phoneField{
231
230
  composes: ltr-zone from '~@zohodesk/components/es/common/common.module.css';
231
+ }
232
+
233
+ .lineClampPickListItem{
234
+ --line-clamp: var(--picklist-field-line-clamp,3);
232
235
  }
@@ -1,3 +1,5 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
1
3
  /**** Libraries ****/
2
4
  import React, { PureComponent } from 'react';
3
5
  import { defaultProps } from "./props/defaultProps";
@@ -143,7 +145,7 @@ export default class MultiSelectField extends PureComponent {
143
145
  isLocked: isLocked,
144
146
  lockedInfoText: lockedInfoText,
145
147
  renderProps: renderLabelProps
146
- }, /*#__PURE__*/React.createElement(Label, {
148
+ }, /*#__PURE__*/React.createElement(Label, _extends({
147
149
  text: labelName,
148
150
  isRequired: isMandatory,
149
151
  isDisabled: isDisabled,
@@ -158,9 +160,8 @@ export default class MultiSelectField extends PureComponent {
158
160
  label: {
159
161
  id
160
162
  }
161
- },
162
- ...LabelProps
163
- })), /*#__PURE__*/React.createElement(MultiSelect, {
163
+ }
164
+ }, LabelProps))), /*#__PURE__*/React.createElement(MultiSelect, _extends({
164
165
  options: options,
165
166
  onChange: this.handleChange,
166
167
  selectedOptions: selectedOptions,
@@ -191,24 +192,22 @@ export default class MultiSelectField extends PureComponent {
191
192
  i18nKeys: i18nKeys,
192
193
  htmlId: uniqueId,
193
194
  customChildrenClass: customChildrenClass,
194
- onFocus: onFocus,
195
- ...MultiSelectProps,
195
+ onFocus: onFocus
196
+ }, MultiSelectProps, {
196
197
  ariaLabelledby: uniqueId
197
- }, children ? children : null), validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, {
198
+ }), children ? children : null), validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
198
199
  text: validationMessage,
199
200
  palette: validationPalette,
200
201
  type: errorType,
201
202
  dataId: `${dataId}_ValidationMessage`,
202
- htmlFor: uniqueId,
203
- ...ValidationMessageProps1
204
- }), validationRuleMessage && /*#__PURE__*/React.createElement(ValidationMessage, {
203
+ htmlFor: uniqueId
204
+ }, ValidationMessageProps1)), validationRuleMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
205
205
  text: validationRuleMessage,
206
206
  palette: validationRulePalette,
207
207
  type: errorType,
208
208
  dataId: `${dataId}_ValidationRuleMessage`,
209
- htmlFor: uniqueId,
210
- ...ValidationMessageProps2
211
- }));
209
+ htmlFor: uniqueId
210
+ }, ValidationMessageProps2)));
212
211
  }
213
212
 
214
213
  }