@zohodesk/dot 1.5.3 → 1.5.5

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 (841) hide show
  1. package/.cli/propValidation_report.html +1 -1
  2. package/README.md +9 -0
  3. package/es/ActionButton/ActionButton.js +10 -2
  4. package/es/ActionButton/props/defaultProps.js +3 -1
  5. package/es/ActionButton/props/propTypes.js +5 -1
  6. package/es/ExternalLink/__tests__/ExternalLink.spec.js +76 -1
  7. package/es/ExternalLink/__tests__/__snapshots__/ExternalLink.spec.js.snap +120 -1
  8. package/es/PlusIcon/__tests__/PlusIcon.spec.js +58 -1
  9. package/es/PlusIcon/__tests__/__snapshots__/PlusIcon.spec.js.snap +314 -1
  10. package/es/PlusIcon/props/propTypes.js +1 -1
  11. package/es/alert/AlertHeader/__tests__/AlertHeader.spec.js +109 -1
  12. package/es/alert/AlertHeader/__tests__/__snapshots__/AlertHeader.spec.js.snap +927 -1
  13. package/es/form/fields/CheckBoxField/CheckBoxField.js +3 -2
  14. package/es/form/fields/CheckBoxField/__tests__/CheckBoxField.spec.js +18 -0
  15. package/es/form/fields/CheckBoxField/__tests__/__snapshots__/CheckBoxField.spec.js.snap +182 -0
  16. package/es/form/fields/CheckBoxField/props/propTypes.js +1 -0
  17. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +9 -1
  18. package/es/form/fields/TagsMultiSelect/props/defaultProps.js +2 -0
  19. package/es/form/fields/TagsMultiSelect/props/propTypes.js +4 -0
  20. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +9 -1
  21. package/es/form/fields/TagsMultiSelectField/props/defaultProps.js +2 -0
  22. package/es/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
  23. package/es/list/status/StatusDropdown/StatusDropdown.js +8 -0
  24. package/es/list/status/StatusDropdown/props/defaultProps.js +3 -1
  25. package/es/list/status/StatusDropdown/props/propTypes.js +5 -1
  26. package/es/lookup/header/ViewDropDown/ViewDropDown.js +10 -2
  27. package/es/lookup/header/ViewDropDown/props/defaultProps.js +3 -1
  28. package/es/lookup/header/ViewDropDown/props/propTypes.js +5 -1
  29. package/es/v1/ActionButton/ActionButton.js +10 -2
  30. package/es/v1/ActionButton/props/defaultProps.js +3 -1
  31. package/es/v1/ActionButton/props/propTypes.js +5 -1
  32. package/es/v1/form/fields/CheckBoxField/CheckBoxField.js +3 -2
  33. package/es/v1/form/fields/CheckBoxField/props/propTypes.js +1 -0
  34. package/es/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +9 -1
  35. package/es/v1/form/fields/TagsMultiSelect/props/defaultProps.js +2 -0
  36. package/es/v1/form/fields/TagsMultiSelect/props/propTypes.js +4 -0
  37. package/es/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +9 -1
  38. package/es/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +2 -0
  39. package/es/v1/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
  40. package/es/v1/list/status/StatusDropdown/StatusDropdown.js +8 -0
  41. package/es/v1/list/status/StatusDropdown/props/defaultProps.js +3 -1
  42. package/es/v1/list/status/StatusDropdown/props/propTypes.js +4 -0
  43. package/es/v1/lookup/header/ViewDropDown/ViewDropDown.js +10 -2
  44. package/es/v1/lookup/header/ViewDropDown/props/defaultProps.js +3 -1
  45. package/es/v1/lookup/header/ViewDropDown/props/propTypes.js +5 -1
  46. package/lib/ActionButton/ActionButton.js +10 -2
  47. package/lib/ActionButton/props/defaultProps.js +3 -1
  48. package/lib/ActionButton/props/propTypes.js +5 -1
  49. package/lib/ExternalLink/__tests__/ExternalLink.spec.js +77 -1
  50. package/lib/ExternalLink/__tests__/__snapshots__/ExternalLink.spec.js.snap +120 -1
  51. package/lib/PlusIcon/__tests__/PlusIcon.spec.js +58 -1
  52. package/lib/PlusIcon/__tests__/__snapshots__/PlusIcon.spec.js.snap +314 -1
  53. package/lib/PlusIcon/props/propTypes.js +1 -1
  54. package/lib/alert/AlertHeader/__tests__/AlertHeader.spec.js +109 -1
  55. package/lib/alert/AlertHeader/__tests__/__snapshots__/AlertHeader.spec.js.snap +927 -1
  56. package/lib/form/fields/CheckBoxField/CheckBoxField.js +3 -2
  57. package/lib/form/fields/CheckBoxField/__tests__/CheckBoxField.spec.js +18 -0
  58. package/lib/form/fields/CheckBoxField/__tests__/__snapshots__/CheckBoxField.spec.js.snap +182 -0
  59. package/lib/form/fields/CheckBoxField/props/propTypes.js +2 -1
  60. package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.js +9 -1
  61. package/lib/form/fields/TagsMultiSelect/props/defaultProps.js +2 -0
  62. package/lib/form/fields/TagsMultiSelect/props/propTypes.js +4 -0
  63. package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +10 -2
  64. package/lib/form/fields/TagsMultiSelectField/props/defaultProps.js +3 -1
  65. package/lib/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
  66. package/lib/list/status/StatusDropdown/StatusDropdown.js +8 -0
  67. package/lib/list/status/StatusDropdown/props/defaultProps.js +3 -1
  68. package/lib/list/status/StatusDropdown/props/propTypes.js +1 -1
  69. package/lib/lookup/header/ViewDropDown/ViewDropDown.js +10 -2
  70. package/lib/lookup/header/ViewDropDown/props/defaultProps.js +3 -1
  71. package/lib/lookup/header/ViewDropDown/props/propTypes.js +5 -1
  72. package/lib/v1/ActionButton/ActionButton.js +10 -2
  73. package/lib/v1/ActionButton/props/defaultProps.js +3 -1
  74. package/lib/v1/ActionButton/props/propTypes.js +5 -1
  75. package/lib/v1/form/fields/CheckBoxField/CheckBoxField.js +3 -2
  76. package/lib/v1/form/fields/CheckBoxField/props/propTypes.js +2 -1
  77. package/lib/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +9 -1
  78. package/lib/v1/form/fields/TagsMultiSelect/props/defaultProps.js +2 -0
  79. package/lib/v1/form/fields/TagsMultiSelect/props/propTypes.js +4 -0
  80. package/lib/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +10 -2
  81. package/lib/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +3 -1
  82. package/lib/v1/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
  83. package/lib/v1/list/status/StatusDropdown/StatusDropdown.js +8 -0
  84. package/lib/v1/list/status/StatusDropdown/props/defaultProps.js +3 -1
  85. package/lib/v1/list/status/StatusDropdown/props/propTypes.js +1 -1
  86. package/lib/v1/lookup/header/ViewDropDown/ViewDropDown.js +10 -2
  87. package/lib/v1/lookup/header/ViewDropDown/props/defaultProps.js +3 -1
  88. package/lib/v1/lookup/header/ViewDropDown/props/propTypes.js +5 -1
  89. package/package.json +8 -8
  90. package/result.json +1 -1
  91. package/unittest/index.html +38 -2
  92. package/coverage/ActionButton/ActionButton.js.html +0 -628
  93. package/coverage/ActionButton/ActionButton.module.css.html +0 -559
  94. package/coverage/ActionButton/index.html +0 -131
  95. package/coverage/ActionButton/props/defaultProps.js.html +0 -136
  96. package/coverage/ActionButton/props/index.html +0 -131
  97. package/coverage/ActionButton/props/propTypes.js.html +0 -187
  98. package/coverage/AlphabeticList/AlphabeticList.js.html +0 -424
  99. package/coverage/AlphabeticList/AlphabeticList.module.css.html +0 -247
  100. package/coverage/AlphabeticList/index.html +0 -131
  101. package/coverage/AlphabeticList/props/defaultProps.js.html +0 -124
  102. package/coverage/AlphabeticList/props/index.html +0 -131
  103. package/coverage/AlphabeticList/props/propTypes.js.html +0 -250
  104. package/coverage/Attachment/Attachment.js.html +0 -388
  105. package/coverage/Attachment/Attachment.module.css.html +0 -583
  106. package/coverage/Attachment/index.html +0 -131
  107. package/coverage/Attachment/props/defaultProps.js.html +0 -109
  108. package/coverage/Attachment/props/index.html +0 -131
  109. package/coverage/Attachment/props/propTypes.js.html +0 -142
  110. package/coverage/AttachmentViewer/Attachment.js.html +0 -193
  111. package/coverage/AttachmentViewer/AttachmentImage.js.html +0 -268
  112. package/coverage/AttachmentViewer/AttachmentViewer.js.html +0 -1576
  113. package/coverage/AttachmentViewer/AttachmentViewer.module.css.html +0 -955
  114. package/coverage/AttachmentViewer/index.html +0 -161
  115. package/coverage/AttachmentViewer/props/defaultProps.js.html +0 -121
  116. package/coverage/AttachmentViewer/props/index.html +0 -131
  117. package/coverage/AttachmentViewer/props/propTypes.js.html +0 -187
  118. package/coverage/ChannelIcon/ChannelIcon.js.html +0 -448
  119. package/coverage/ChannelIcon/ChannelIcon.module.css.html +0 -727
  120. package/coverage/ChannelIcon/index.html +0 -131
  121. package/coverage/ChannelIcon/props/defaultProps.js.html +0 -106
  122. package/coverage/ChannelIcon/props/index.html +0 -131
  123. package/coverage/ChannelIcon/props/propTypes.js.html +0 -163
  124. package/coverage/Drawer/Drawer.js.html +0 -1042
  125. package/coverage/Drawer/Drawer.module.css.html +0 -466
  126. package/coverage/Drawer/index.html +0 -131
  127. package/coverage/Drawer/props/defaultProps.js.html +0 -160
  128. package/coverage/Drawer/props/index.html +0 -131
  129. package/coverage/Drawer/props/propTypes.js.html +0 -283
  130. package/coverage/ExternalLink/ExternalLink.js.html +0 -229
  131. package/coverage/ExternalLink/ExternalLink.module.css.html +0 -94
  132. package/coverage/ExternalLink/index.html +0 -131
  133. package/coverage/ExternalLink/props/defaultProps.js.html +0 -100
  134. package/coverage/ExternalLink/props/index.html +0 -131
  135. package/coverage/ExternalLink/props/propTypes.js.html +0 -124
  136. package/coverage/FlipCard/FlipCard.js.html +0 -523
  137. package/coverage/FlipCard/FlipCard.module.css.html +0 -190
  138. package/coverage/FlipCard/index.html +0 -131
  139. package/coverage/FlipCard/props/defaultProps.js.html +0 -100
  140. package/coverage/FlipCard/props/index.html +0 -131
  141. package/coverage/FlipCard/props/propTypes.js.html +0 -199
  142. package/coverage/FormAction/FormAction.js.html +0 -391
  143. package/coverage/FormAction/FormAction.module.css.html +0 -292
  144. package/coverage/FormAction/index.html +0 -131
  145. package/coverage/FormAction/props/defaultProps.js.html +0 -100
  146. package/coverage/FormAction/props/index.html +0 -131
  147. package/coverage/FormAction/props/propTypes.js.html +0 -112
  148. package/coverage/FreezeLayer/FreezeLayer.js.html +0 -346
  149. package/coverage/FreezeLayer/css/FreezeLayer.module.css.html +0 -199
  150. package/coverage/FreezeLayer/css/cssJSLogic.js.html +0 -139
  151. package/coverage/FreezeLayer/css/index.html +0 -131
  152. package/coverage/FreezeLayer/index.html +0 -116
  153. package/coverage/FreezeLayer/props/defaultProps.js.html +0 -112
  154. package/coverage/FreezeLayer/props/index.html +0 -131
  155. package/coverage/FreezeLayer/props/propTypes.js.html +0 -151
  156. package/coverage/Hooks/Dragger/css/Dragger.module.css.html +0 -91
  157. package/coverage/Hooks/Dragger/css/index.html +0 -116
  158. package/coverage/Hooks/Dragger/index.html +0 -116
  159. package/coverage/Hooks/Dragger/props/defaultProps.js.html +0 -100
  160. package/coverage/Hooks/Dragger/props/index.html +0 -131
  161. package/coverage/Hooks/Dragger/props/propTypes.js.html +0 -124
  162. package/coverage/Hooks/Dragger/useDragger.js.html +0 -439
  163. package/coverage/Hooks/Dragger/utils/DraggerUtil.js.html +0 -133
  164. package/coverage/Hooks/Dragger/utils/index.html +0 -116
  165. package/coverage/Hooks/index.html +0 -116
  166. package/coverage/Hooks/useFreezeLayer.js.html +0 -247
  167. package/coverage/IconButton/IconButton.js.html +0 -466
  168. package/coverage/IconButton/IconButton.module.css.html +0 -151
  169. package/coverage/IconButton/index.html +0 -131
  170. package/coverage/IconButton/props/defaultProps.js.html +0 -136
  171. package/coverage/IconButton/props/index.html +0 -131
  172. package/coverage/IconButton/props/propTypes.js.html +0 -187
  173. package/coverage/Image/Image.js.html +0 -184
  174. package/coverage/Image/Image.module.css.html +0 -118
  175. package/coverage/Image/index.html +0 -131
  176. package/coverage/Image/props/defaultProps.js.html +0 -97
  177. package/coverage/Image/props/index.html +0 -131
  178. package/coverage/Image/props/propTypes.js.html +0 -127
  179. package/coverage/ImportantNotes/ImportantNotes.js.html +0 -223
  180. package/coverage/ImportantNotes/ImportantNotes.module.css.html +0 -133
  181. package/coverage/ImportantNotes/index.html +0 -131
  182. package/coverage/ImportantNotes/props/defaultProps.js.html +0 -103
  183. package/coverage/ImportantNotes/props/index.html +0 -131
  184. package/coverage/ImportantNotes/props/propTypes.js.html +0 -118
  185. package/coverage/Link/Link.js.html +0 -388
  186. package/coverage/Link/Link.module.css.html +0 -94
  187. package/coverage/Link/LinkContext.js.html +0 -112
  188. package/coverage/Link/index.html +0 -146
  189. package/coverage/Link/props/defaultProps.js.html +0 -100
  190. package/coverage/Link/props/index.html +0 -131
  191. package/coverage/Link/props/propTypes.js.html +0 -142
  192. package/coverage/Loader/Loader.js.html +0 -136
  193. package/coverage/Loader/Loader.module.css.html +0 -163
  194. package/coverage/Loader/index.html +0 -131
  195. package/coverage/Message/Message.js.html +0 -361
  196. package/coverage/Message/Message.module.css.html +0 -292
  197. package/coverage/Message/index.html +0 -131
  198. package/coverage/Message/props/defaultProps.js.html +0 -97
  199. package/coverage/Message/props/index.html +0 -131
  200. package/coverage/Message/props/propTypes.js.html +0 -157
  201. package/coverage/MessageBanner/MessageBanner.js.html +0 -244
  202. package/coverage/MessageBanner/MessageBanner.module.css.html +0 -199
  203. package/coverage/MessageBanner/index.html +0 -131
  204. package/coverage/MessageBanner/props/defaultProps.js.html +0 -106
  205. package/coverage/MessageBanner/props/index.html +0 -131
  206. package/coverage/MessageBanner/props/propTypes.js.html +0 -127
  207. package/coverage/NewStar/NewStar.js.html +0 -259
  208. package/coverage/NewStar/NewStar.module.css.html +0 -490
  209. package/coverage/NewStar/index.html +0 -131
  210. package/coverage/NewStar/props/defaultProps.js.html +0 -97
  211. package/coverage/NewStar/props/index.html +0 -131
  212. package/coverage/NewStar/props/propTypes.js.html +0 -121
  213. package/coverage/PlusIcon/PlusIcon.js.html +0 -190
  214. package/coverage/PlusIcon/PlusIcon.module.css.html +0 -139
  215. package/coverage/PlusIcon/index.html +0 -131
  216. package/coverage/PlusIcon/props/defaultProps.js.html +0 -109
  217. package/coverage/PlusIcon/props/index.html +0 -131
  218. package/coverage/PlusIcon/props/propTypes.js.html +0 -121
  219. package/coverage/Provider/Config.js.html +0 -136
  220. package/coverage/Provider/index.html +0 -116
  221. package/coverage/Separator/Separator.js.html +0 -286
  222. package/coverage/Separator/Separator.module.css.html +0 -187
  223. package/coverage/Separator/index.html +0 -131
  224. package/coverage/Separator/props/defaultProps.js.html +0 -118
  225. package/coverage/Separator/props/index.html +0 -131
  226. package/coverage/Separator/props/propTypes.js.html +0 -121
  227. package/coverage/TagWithIcon/TagWithIcon.js.html +0 -247
  228. package/coverage/TagWithIcon/TagWithIcon.module.css.html +0 -262
  229. package/coverage/TagWithIcon/index.html +0 -131
  230. package/coverage/TagWithIcon/props/defaultProps.js.html +0 -106
  231. package/coverage/TagWithIcon/props/index.html +0 -131
  232. package/coverage/TagWithIcon/props/propTypes.js.html +0 -124
  233. package/coverage/ToastMessage/ToastMessage.js.html +0 -751
  234. package/coverage/ToastMessage/ToastMessage.module.css.html +0 -859
  235. package/coverage/ToastMessage/index.html +0 -131
  236. package/coverage/ToastMessage/props/defaultProps.js.html +0 -139
  237. package/coverage/ToastMessage/props/index.html +0 -131
  238. package/coverage/ToastMessage/props/propTypes.js.html +0 -229
  239. package/coverage/Upload/Upload.js.html +0 -310
  240. package/coverage/Upload/Upload.module.css.html +0 -403
  241. package/coverage/Upload/index.html +0 -131
  242. package/coverage/Upload/props/defaultProps.js.html +0 -106
  243. package/coverage/Upload/props/index.html +0 -131
  244. package/coverage/Upload/props/propTypes.js.html +0 -139
  245. package/coverage/actions/AutoClose.js.html +0 -181
  246. package/coverage/actions/index.html +0 -116
  247. package/coverage/actions/props/defaultProps.js.html +0 -94
  248. package/coverage/actions/props/index.html +0 -131
  249. package/coverage/actions/props/propTypes.js.html +0 -112
  250. package/coverage/alert/AlertHeader/AlertHeader.js.html +0 -337
  251. package/coverage/alert/AlertHeader/AlertHeader.module.css.html +0 -271
  252. package/coverage/alert/AlertHeader/index.html +0 -131
  253. package/coverage/alert/AlertHeader/props/defaultProps.js.html +0 -109
  254. package/coverage/alert/AlertHeader/props/index.html +0 -131
  255. package/coverage/alert/AlertHeader/props/propTypes.js.html +0 -148
  256. package/coverage/alert/AlertLookup/AlertLookup.js.html +0 -472
  257. package/coverage/alert/AlertLookup/AlertLookup.module.css.html +0 -151
  258. package/coverage/alert/AlertLookup/index.html +0 -131
  259. package/coverage/alert/AlertLookup/props/defaultProps.js.html +0 -127
  260. package/coverage/alert/AlertLookup/props/index.html +0 -131
  261. package/coverage/alert/AlertLookup/props/propTypes.js.html +0 -193
  262. package/coverage/avatar/AvatarClose/AvatarClose.js.html +0 -190
  263. package/coverage/avatar/AvatarClose/AvatarClose.module.css.html +0 -178
  264. package/coverage/avatar/AvatarClose/index.html +0 -131
  265. package/coverage/avatar/AvatarClose/props/defaultProps.js.html +0 -106
  266. package/coverage/avatar/AvatarClose/props/index.html +0 -131
  267. package/coverage/avatar/AvatarClose/props/propTypes.js.html +0 -133
  268. package/coverage/avatar/AvatarCollision/AvatarCollision.js.html +0 -241
  269. package/coverage/avatar/AvatarCollision/AvatarCollision.module.css.html +0 -250
  270. package/coverage/avatar/AvatarCollision/index.html +0 -131
  271. package/coverage/avatar/AvatarCollision/props/defaultProps.js.html +0 -109
  272. package/coverage/avatar/AvatarCollision/props/index.html +0 -131
  273. package/coverage/avatar/AvatarCollision/props/propTypes.js.html +0 -139
  274. package/coverage/avatar/AvatarIcon/AvatarIcon.js.html +0 -256
  275. package/coverage/avatar/AvatarIcon/AvatarIcon.module.css.html +0 -262
  276. package/coverage/avatar/AvatarIcon/index.html +0 -131
  277. package/coverage/avatar/AvatarIcon/props/defaultProps.js.html +0 -127
  278. package/coverage/avatar/AvatarIcon/props/index.html +0 -131
  279. package/coverage/avatar/AvatarIcon/props/propTypes.js.html +0 -148
  280. package/coverage/avatar/AvatarStatus/AvatarStatus.js.html +0 -301
  281. package/coverage/avatar/AvatarStatus/AvatarStatus.module.css.html +0 -373
  282. package/coverage/avatar/AvatarStatus/index.html +0 -131
  283. package/coverage/avatar/AvatarStatus/props/defaultProps.js.html +0 -121
  284. package/coverage/avatar/AvatarStatus/props/index.html +0 -131
  285. package/coverage/avatar/AvatarStatus/props/propTypes.js.html +0 -166
  286. package/coverage/avatar/AvatarThread/AvatarThread.js.html +0 -367
  287. package/coverage/avatar/AvatarThread/AvatarThread.module.css.html +0 -439
  288. package/coverage/avatar/AvatarThread/index.html +0 -131
  289. package/coverage/avatar/AvatarThread/props/defaultProps.js.html +0 -112
  290. package/coverage/avatar/AvatarThread/props/index.html +0 -131
  291. package/coverage/avatar/AvatarThread/props/propTypes.js.html +0 -178
  292. package/coverage/avatar/AvatarUser/AvatarUser.js.html +0 -415
  293. package/coverage/avatar/AvatarUser/AvatarUser.module.css.html +0 -385
  294. package/coverage/avatar/AvatarUser/index.html +0 -131
  295. package/coverage/avatar/AvatarUser/props/defaultProps.js.html +0 -109
  296. package/coverage/avatar/AvatarUser/props/index.html +0 -131
  297. package/coverage/avatar/AvatarUser/props/propTypes.js.html +0 -193
  298. package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.js.html +0 -448
  299. package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.module.css.html +0 -133
  300. package/coverage/avatar/AvatarWithTeam/index.html +0 -131
  301. package/coverage/avatar/AvatarWithTeam/props/defaultProps.js.html +0 -112
  302. package/coverage/avatar/AvatarWithTeam/props/index.html +0 -131
  303. package/coverage/avatar/AvatarWithTeam/props/propTypes.js.html +0 -163
  304. package/coverage/base.css +0 -224
  305. package/coverage/block-navigation.js +0 -87
  306. package/coverage/coverage-final.json +0 -490
  307. package/coverage/coverage-summary.json +0 -491
  308. package/coverage/dropdown/ToggleDropDown/ToggleDropDown.js.html +0 -2719
  309. package/coverage/dropdown/ToggleDropDown/ToggleDropDown.module.css.html +0 -346
  310. package/coverage/dropdown/ToggleDropDown/index.html +0 -131
  311. package/coverage/dropdown/ToggleDropDown/props/defaultProps.js.html +0 -172
  312. package/coverage/dropdown/ToggleDropDown/props/index.html +0 -131
  313. package/coverage/dropdown/ToggleDropDown/props/propTypes.js.html +0 -376
  314. package/coverage/emptystate/CommonEmptyState/CommonEmptyState.js.html +0 -334
  315. package/coverage/emptystate/CommonEmptyState/CommonEmptyState.module.css.html +0 -337
  316. package/coverage/emptystate/CommonEmptyState/index.html +0 -131
  317. package/coverage/emptystate/CommonEmptyState/props/defaultProps.js.html +0 -115
  318. package/coverage/emptystate/CommonEmptyState/props/index.html +0 -131
  319. package/coverage/emptystate/CommonEmptyState/props/propTypes.js.html +0 -151
  320. package/coverage/emptystate/EditionPage/EditionPage.css.html +0 -196
  321. package/coverage/emptystate/EditionPage/EditionPage.js.html +0 -229
  322. package/coverage/emptystate/EditionPage/index.html +0 -131
  323. package/coverage/emptystate/EditionPage/props/defaultProps.js.html +0 -100
  324. package/coverage/emptystate/EditionPage/props/index.html +0 -131
  325. package/coverage/emptystate/EditionPage/props/propTypes.js.html +0 -121
  326. package/coverage/errorstate/EmptyStates.module.css.html +0 -337
  327. package/coverage/errorstate/Inconvenience/Inconvenience.js.html +0 -349
  328. package/coverage/errorstate/Inconvenience/Inconvenience.module.css.html +0 -97
  329. package/coverage/errorstate/Inconvenience/index.html +0 -131
  330. package/coverage/errorstate/Inconvenience/props/defaultProps.js.html +0 -97
  331. package/coverage/errorstate/Inconvenience/props/index.html +0 -131
  332. package/coverage/errorstate/Inconvenience/props/propTypes.js.html +0 -121
  333. package/coverage/errorstate/LinkText/LinkText.js.html +0 -166
  334. package/coverage/errorstate/LinkText/LinkText.module.css.html +0 -103
  335. package/coverage/errorstate/LinkText/index.html +0 -131
  336. package/coverage/errorstate/LinkText/props/defaultProps.js.html +0 -97
  337. package/coverage/errorstate/LinkText/props/index.html +0 -131
  338. package/coverage/errorstate/LinkText/props/propTypes.js.html +0 -112
  339. package/coverage/errorstate/NoRequestFound/NoRequestFound.js.html +0 -349
  340. package/coverage/errorstate/NoRequestFound/NoRequestFound.module.css.html +0 -94
  341. package/coverage/errorstate/NoRequestFound/index.html +0 -131
  342. package/coverage/errorstate/NoRequestFound/props/defaultProps.js.html +0 -97
  343. package/coverage/errorstate/NoRequestFound/props/index.html +0 -131
  344. package/coverage/errorstate/NoRequestFound/props/propTypes.js.html +0 -121
  345. package/coverage/errorstate/PermissionPlay/PermissionPlay.js.html +0 -343
  346. package/coverage/errorstate/PermissionPlay/PermissionPlay.module.css.html +0 -187
  347. package/coverage/errorstate/PermissionPlay/index.html +0 -131
  348. package/coverage/errorstate/PermissionPlay/props/defaultProps.js.html +0 -97
  349. package/coverage/errorstate/PermissionPlay/props/index.html +0 -131
  350. package/coverage/errorstate/PermissionPlay/props/propTypes.js.html +0 -121
  351. package/coverage/errorstate/RequestUrlNotFound/RequestUrlNotFound.js.html +0 -349
  352. package/coverage/errorstate/RequestUrlNotFound/RequestUrlNotFound.module.css.html +0 -94
  353. package/coverage/errorstate/RequestUrlNotFound/index.html +0 -131
  354. package/coverage/errorstate/RequestUrlNotFound/props/defaultProps.js.html +0 -97
  355. package/coverage/errorstate/RequestUrlNotFound/props/index.html +0 -131
  356. package/coverage/errorstate/RequestUrlNotFound/props/propTypes.js.html +0 -121
  357. package/coverage/errorstate/UnableToProcess/UnableToProcess.js.html +0 -337
  358. package/coverage/errorstate/UnableToProcess/UnableToProcess.module.css.html +0 -94
  359. package/coverage/errorstate/UnableToProcess/index.html +0 -131
  360. package/coverage/errorstate/UnableToProcess/props/defaultProps.js.html +0 -97
  361. package/coverage/errorstate/UnableToProcess/props/index.html +0 -131
  362. package/coverage/errorstate/UnableToProcess/props/propTypes.js.html +0 -121
  363. package/coverage/errorstate/UnauthorizedLogin/UnauthorizedLogin.js.html +0 -337
  364. package/coverage/errorstate/UnauthorizedLogin/UnauthorizedLogin.module.css.html +0 -94
  365. package/coverage/errorstate/UnauthorizedLogin/index.html +0 -131
  366. package/coverage/errorstate/UnauthorizedLogin/props/defaultProps.js.html +0 -97
  367. package/coverage/errorstate/UnauthorizedLogin/props/index.html +0 -131
  368. package/coverage/errorstate/UnauthorizedLogin/props/propTypes.js.html +0 -121
  369. package/coverage/errorstate/WillBack/WillBack.js.html +0 -307
  370. package/coverage/errorstate/WillBack/WillBack.module.css.html +0 -193
  371. package/coverage/errorstate/WillBack/index.html +0 -131
  372. package/coverage/errorstate/WillBack/props/defaultProps.js.html +0 -97
  373. package/coverage/errorstate/WillBack/props/index.html +0 -131
  374. package/coverage/errorstate/WillBack/props/propTypes.js.html +0 -103
  375. package/coverage/errorstate/index.html +0 -116
  376. package/coverage/favicon.png +0 -0
  377. package/coverage/form/fields/CheckBoxField/CheckBoxField.js.html +0 -574
  378. package/coverage/form/fields/CheckBoxField/index.html +0 -116
  379. package/coverage/form/fields/CheckBoxField/props/defaultProps.js.html +0 -124
  380. package/coverage/form/fields/CheckBoxField/props/index.html +0 -131
  381. package/coverage/form/fields/CheckBoxField/props/propTypes.js.html +0 -175
  382. package/coverage/form/fields/CurrencyField/CurrencyField.js.html +0 -664
  383. package/coverage/form/fields/CurrencyField/index.html +0 -116
  384. package/coverage/form/fields/CurrencyField/props/defaultProps.js.html +0 -139
  385. package/coverage/form/fields/CurrencyField/props/index.html +0 -131
  386. package/coverage/form/fields/CurrencyField/props/propTypes.js.html +0 -208
  387. package/coverage/form/fields/DateField/DateField.js.html +0 -682
  388. package/coverage/form/fields/DateField/index.html +0 -116
  389. package/coverage/form/fields/DateField/props/defaultProps.js.html +0 -145
  390. package/coverage/form/fields/DateField/props/index.html +0 -131
  391. package/coverage/form/fields/DateField/props/propTypes.js.html +0 -208
  392. package/coverage/form/fields/FieldContainer/FieldContainer.js.html +0 -271
  393. package/coverage/form/fields/FieldContainer/index.html +0 -116
  394. package/coverage/form/fields/FieldContainer/props/defaultProps.js.html +0 -109
  395. package/coverage/form/fields/FieldContainer/props/index.html +0 -131
  396. package/coverage/form/fields/FieldContainer/props/propTypes.js.html +0 -166
  397. package/coverage/form/fields/Fields.module.css.html +0 -619
  398. package/coverage/form/fields/MultiSelectField/MultiSelectField.js.html +0 -745
  399. package/coverage/form/fields/MultiSelectField/index.html +0 -116
  400. package/coverage/form/fields/MultiSelectField/props/defaultProps.js.html +0 -139
  401. package/coverage/form/fields/MultiSelectField/props/index.html +0 -131
  402. package/coverage/form/fields/MultiSelectField/props/propTypes.js.html +0 -241
  403. package/coverage/form/fields/PhoneField/PhoneField.js.html +0 -619
  404. package/coverage/form/fields/PhoneField/index.html +0 -116
  405. package/coverage/form/fields/PhoneField/props/defaultProps.js.html +0 -133
  406. package/coverage/form/fields/PhoneField/props/index.html +0 -131
  407. package/coverage/form/fields/PhoneField/props/propTypes.js.html +0 -229
  408. package/coverage/form/fields/RadioField/RadioField.js.html +0 -493
  409. package/coverage/form/fields/RadioField/index.html +0 -116
  410. package/coverage/form/fields/RadioField/props/defaultProps.js.html +0 -121
  411. package/coverage/form/fields/RadioField/props/index.html +0 -131
  412. package/coverage/form/fields/RadioField/props/propTypes.js.html +0 -196
  413. package/coverage/form/fields/SelectField/SelectField.js.html +0 -697
  414. package/coverage/form/fields/SelectField/index.html +0 -116
  415. package/coverage/form/fields/SelectField/props/defaultProps.js.html +0 -142
  416. package/coverage/form/fields/SelectField/props/index.html +0 -131
  417. package/coverage/form/fields/SelectField/props/propTypes.js.html +0 -241
  418. package/coverage/form/fields/TagsMultiSelect/TagsMultiSelect.js.html +0 -1042
  419. package/coverage/form/fields/TagsMultiSelect/TagsMultiSelect.module.css.html +0 -382
  420. package/coverage/form/fields/TagsMultiSelect/index.html +0 -131
  421. package/coverage/form/fields/TagsMultiSelect/props/defaultProps.js.html +0 -127
  422. package/coverage/form/fields/TagsMultiSelect/props/index.html +0 -131
  423. package/coverage/form/fields/TagsMultiSelect/props/propTypes.js.html +0 -244
  424. package/coverage/form/fields/TagsMultiSelectField/TagsMultiSelectField.js.html +0 -844
  425. package/coverage/form/fields/TagsMultiSelectField/TagsMultiSelectField.module.css.html +0 -103
  426. package/coverage/form/fields/TagsMultiSelectField/index.html +0 -131
  427. package/coverage/form/fields/TagsMultiSelectField/props/defaultProps.js.html +0 -151
  428. package/coverage/form/fields/TagsMultiSelectField/props/index.html +0 -131
  429. package/coverage/form/fields/TagsMultiSelectField/props/propTypes.js.html +0 -292
  430. package/coverage/form/fields/TextBoxField/TextBoxField.js.html +0 -634
  431. package/coverage/form/fields/TextBoxField/index.html +0 -116
  432. package/coverage/form/fields/TextBoxField/props/defaultProps.js.html +0 -139
  433. package/coverage/form/fields/TextBoxField/props/index.html +0 -131
  434. package/coverage/form/fields/TextBoxField/props/propTypes.js.html +0 -223
  435. package/coverage/form/fields/TextEditor/TextEditor.js.html +0 -1201
  436. package/coverage/form/fields/TextEditor/TextEditor.module.css.html +0 -2113
  437. package/coverage/form/fields/TextEditor/index.html +0 -131
  438. package/coverage/form/fields/TextEditor/props/defaultProps.js.html +0 -124
  439. package/coverage/form/fields/TextEditor/props/index.html +0 -131
  440. package/coverage/form/fields/TextEditor/props/propTypes.js.html +0 -247
  441. package/coverage/form/fields/TextEditorField/TextEditorField.js.html +0 -622
  442. package/coverage/form/fields/TextEditorField/index.html +0 -116
  443. package/coverage/form/fields/TextEditorField/props/defaultProps.js.html +0 -133
  444. package/coverage/form/fields/TextEditorField/props/index.html +0 -131
  445. package/coverage/form/fields/TextEditorField/props/propTypes.js.html +0 -268
  446. package/coverage/form/fields/TextEditorWrapper/TextEditorWrapper.js.html +0 -631
  447. package/coverage/form/fields/TextEditorWrapper/TextEditorWrapper.module.css.html +0 -163
  448. package/coverage/form/fields/TextEditorWrapper/index.html +0 -131
  449. package/coverage/form/fields/TextEditorWrapper/props/defaultProps.js.html +0 -112
  450. package/coverage/form/fields/TextEditorWrapper/props/index.html +0 -131
  451. package/coverage/form/fields/TextEditorWrapper/props/propTypes.js.html +0 -226
  452. package/coverage/form/fields/TextareaField/TextareaField.js.html +0 -622
  453. package/coverage/form/fields/TextareaField/index.html +0 -116
  454. package/coverage/form/fields/TextareaField/props/defaultProps.js.html +0 -136
  455. package/coverage/form/fields/TextareaField/props/index.html +0 -131
  456. package/coverage/form/fields/TextareaField/props/propTypes.js.html +0 -202
  457. package/coverage/form/fields/ValidationMessage/ValidationMessage.js.html +0 -232
  458. package/coverage/form/fields/ValidationMessage/ValidationMessage.module.css.html +0 -151
  459. package/coverage/form/fields/ValidationMessage/index.html +0 -131
  460. package/coverage/form/fields/ValidationMessage/props/defaultProps.js.html +0 -106
  461. package/coverage/form/fields/ValidationMessage/props/index.html +0 -131
  462. package/coverage/form/fields/ValidationMessage/props/propTypes.js.html +0 -136
  463. package/coverage/form/fields/index.html +0 -116
  464. package/coverage/form/fields/props/FieldCommonDefaultProps.js.html +0 -115
  465. package/coverage/form/fields/props/FieldCommonPropTypes.js.html +0 -130
  466. package/coverage/form/fields/props/index.html +0 -131
  467. package/coverage/form/layout/Field/Field.js.html +0 -184
  468. package/coverage/form/layout/Field/Field.module.css.html +0 -151
  469. package/coverage/form/layout/Field/index.html +0 -131
  470. package/coverage/form/layout/Field/props/defaultProps.js.html +0 -97
  471. package/coverage/form/layout/Field/props/index.html +0 -131
  472. package/coverage/form/layout/Field/props/propTypes.js.html +0 -118
  473. package/coverage/form/layout/Section/ModuleFormSection.module.css.html +0 -94
  474. package/coverage/form/layout/Section/Section.js.html +0 -175
  475. package/coverage/form/layout/Section/index.html +0 -131
  476. package/coverage/form/layout/Section/props/index.html +0 -116
  477. package/coverage/form/layout/Section/props/propTypes.js.html +0 -121
  478. package/coverage/index.html +0 -3866
  479. package/coverage/layout/SetupDetailLayout/SetupDetailLayout.js.html +0 -679
  480. package/coverage/layout/SetupDetailLayout/SetupDetailLayout.module.css.html +0 -433
  481. package/coverage/layout/SetupDetailLayout/index.html +0 -131
  482. package/coverage/layout/SetupDetailLayout/props/defaultProps.js.html +0 -154
  483. package/coverage/layout/SetupDetailLayout/props/index.html +0 -131
  484. package/coverage/layout/SetupDetailLayout/props/propTypes.js.html +0 -223
  485. package/coverage/layout/SubtabLayout/SubtabLayout.js.html +0 -577
  486. package/coverage/layout/SubtabLayout/SubtabLayout.module.css.html +0 -484
  487. package/coverage/layout/SubtabLayout/index.html +0 -131
  488. package/coverage/layout/SubtabLayout/props/defaultProps.js.html +0 -169
  489. package/coverage/layout/SubtabLayout/props/index.html +0 -131
  490. package/coverage/layout/SubtabLayout/props/propTypes.js.html +0 -217
  491. package/coverage/list/AvatarFlip/AvatarFlip.js.html +0 -325
  492. package/coverage/list/AvatarFlip/AvatarFlip.module.css.html +0 -94
  493. package/coverage/list/AvatarFlip/index.html +0 -131
  494. package/coverage/list/AvatarFlip/props/defaultProps.js.html +0 -103
  495. package/coverage/list/AvatarFlip/props/index.html +0 -131
  496. package/coverage/list/AvatarFlip/props/propTypes.js.html +0 -175
  497. package/coverage/list/BluePrintStatus/BluePrintStatus.js.html +0 -160
  498. package/coverage/list/BluePrintStatus/BluePrintStatus.module.css.html +0 -127
  499. package/coverage/list/BluePrintStatus/index.html +0 -131
  500. package/coverage/list/BluePrintStatus/props/index.html +0 -116
  501. package/coverage/list/BluePrintStatus/props/propTypes.js.html +0 -100
  502. package/coverage/list/Comment/Comment.js.html +0 -199
  503. package/coverage/list/Comment/Comment.module.css.html +0 -157
  504. package/coverage/list/Comment/index.html +0 -131
  505. package/coverage/list/Comment/props/defaultProps.js.html +0 -97
  506. package/coverage/list/Comment/props/index.html +0 -131
  507. package/coverage/list/Comment/props/propTypes.js.html +0 -109
  508. package/coverage/list/DepartmentDropDown/DepartmentDropDown.js.html +0 -358
  509. package/coverage/list/DepartmentDropDown/DepartmentDropDown.module.css.html +0 -112
  510. package/coverage/list/DepartmentDropDown/index.html +0 -131
  511. package/coverage/list/DepartmentDropDown/props/defaultProps.js.html +0 -106
  512. package/coverage/list/DepartmentDropDown/props/index.html +0 -131
  513. package/coverage/list/DepartmentDropDown/props/propTypes.js.html +0 -160
  514. package/coverage/list/Dot/Dot.js.html +0 -151
  515. package/coverage/list/Dot/Dot.module.css.html +0 -130
  516. package/coverage/list/Dot/index.html +0 -131
  517. package/coverage/list/Dot/props/defaultProps.js.html +0 -97
  518. package/coverage/list/Dot/props/index.html +0 -131
  519. package/coverage/list/Dot/props/propTypes.js.html +0 -103
  520. package/coverage/list/DotNew/DotNew.js.html +0 -154
  521. package/coverage/list/DotNew/DotNew.module.css.html +0 -157
  522. package/coverage/list/DotNew/index.html +0 -131
  523. package/coverage/list/DotNew/props/defaultProps.js.html +0 -94
  524. package/coverage/list/DotNew/props/index.html +0 -131
  525. package/coverage/list/DotNew/props/propTypes.js.html +0 -106
  526. package/coverage/list/GridStencils/GridStencils.js.html +0 -208
  527. package/coverage/list/GridStencils/GridStencils.module.css.html +0 -373
  528. package/coverage/list/GridStencils/index.html +0 -131
  529. package/coverage/list/GridStencils/props/index.html +0 -116
  530. package/coverage/list/GridStencils/props/propTypes.js.html +0 -112
  531. package/coverage/list/Icons/AddNewIcon.js.html +0 -154
  532. package/coverage/list/Icons/CompleteIcon.js.html +0 -151
  533. package/coverage/list/Icons/DeleteIcon.js.html +0 -157
  534. package/coverage/list/Icons/EditIcon.js.html +0 -157
  535. package/coverage/list/Icons/FloatingIcons.js.html +0 -166
  536. package/coverage/list/Icons/Icons.module.css.html +0 -133
  537. package/coverage/list/Icons/ReadUnreadIcon.js.html +0 -181
  538. package/coverage/list/Icons/SmartIcon.js.html +0 -160
  539. package/coverage/list/Icons/index.html +0 -221
  540. package/coverage/list/Icons/props/defaultProps.js.html +0 -106
  541. package/coverage/list/Icons/props/index.html +0 -131
  542. package/coverage/list/Icons/props/propTypes.js.html +0 -265
  543. package/coverage/list/ListLayout/ListLayout.js.html +0 -337
  544. package/coverage/list/ListLayout/ListLayout.module.css.html +0 -283
  545. package/coverage/list/ListLayout/index.html +0 -131
  546. package/coverage/list/ListLayout/props/defaultProps.js.html +0 -118
  547. package/coverage/list/ListLayout/props/index.html +0 -131
  548. package/coverage/list/ListLayout/props/propTypes.js.html +0 -175
  549. package/coverage/list/ListStencils/ListStencils.js.html +0 -223
  550. package/coverage/list/ListStencils/ListStencils.module.css.html +0 -271
  551. package/coverage/list/ListStencils/index.html +0 -131
  552. package/coverage/list/ListStencils/props/defaultProps.js.html +0 -94
  553. package/coverage/list/ListStencils/props/index.html +0 -131
  554. package/coverage/list/ListStencils/props/propTypes.js.html +0 -100
  555. package/coverage/list/SecondaryText/AccountName.js.html +0 -358
  556. package/coverage/list/SecondaryText/ContactName.js.html +0 -361
  557. package/coverage/list/SecondaryText/DepartmentText.js.html +0 -160
  558. package/coverage/list/SecondaryText/Email.js.html +0 -253
  559. package/coverage/list/SecondaryText/HappinessRating.js.html +0 -172
  560. package/coverage/list/SecondaryText/PhoneNumber.js.html +0 -262
  561. package/coverage/list/SecondaryText/PriorityText.js.html +0 -181
  562. package/coverage/list/SecondaryText/SecondaryText.js.html +0 -190
  563. package/coverage/list/SecondaryText/SecondaryText.module.css.html +0 -463
  564. package/coverage/list/SecondaryText/StatusText.js.html +0 -181
  565. package/coverage/list/SecondaryText/TicketId.js.html +0 -214
  566. package/coverage/list/SecondaryText/Website.js.html +0 -226
  567. package/coverage/list/SecondaryText/index.html +0 -296
  568. package/coverage/list/SecondaryText/index.js.html +0 -118
  569. package/coverage/list/SecondaryText/props/defaultProps.js.html +0 -241
  570. package/coverage/list/SecondaryText/props/index.html +0 -131
  571. package/coverage/list/SecondaryText/props/propTypes.js.html +0 -544
  572. package/coverage/list/SecondryPanel/SecondryPanel.js.html +0 -406
  573. package/coverage/list/SecondryPanel/SecondryPanel.module.css.html +0 -100
  574. package/coverage/list/SecondryPanel/index.html +0 -131
  575. package/coverage/list/SecondryPanel/props/defaultProps.js.html +0 -148
  576. package/coverage/list/SecondryPanel/props/index.html +0 -131
  577. package/coverage/list/SecondryPanel/props/propTypes.js.html +0 -178
  578. package/coverage/list/SentimentStatus/SentimentStatus.js.html +0 -175
  579. package/coverage/list/SentimentStatus/SentimentStatus.module.css.html +0 -112
  580. package/coverage/list/SentimentStatus/index.html +0 -131
  581. package/coverage/list/SentimentStatus/props/index.html +0 -116
  582. package/coverage/list/SentimentStatus/props/propTypes.js.html +0 -103
  583. package/coverage/list/Subject/Subject.js.html +0 -304
  584. package/coverage/list/Subject/Subject.module.css.html +0 -187
  585. package/coverage/list/Subject/index.html +0 -131
  586. package/coverage/list/Subject/props/defaultProps.js.html +0 -109
  587. package/coverage/list/Subject/props/index.html +0 -131
  588. package/coverage/list/Subject/props/propTypes.js.html +0 -148
  589. package/coverage/list/TagNew/TagNew.js.html +0 -181
  590. package/coverage/list/TagNew/TagNew.module.css.html +0 -412
  591. package/coverage/list/TagNew/index.html +0 -131
  592. package/coverage/list/TagNew/props/defaultProps.js.html +0 -97
  593. package/coverage/list/TagNew/props/index.html +0 -131
  594. package/coverage/list/TagNew/props/propTypes.js.html +0 -112
  595. package/coverage/list/Thread/Thread.js.html +0 -199
  596. package/coverage/list/Thread/Thread.module.css.html +0 -175
  597. package/coverage/list/Thread/index.html +0 -131
  598. package/coverage/list/Thread/props/defaultProps.js.html +0 -97
  599. package/coverage/list/Thread/props/index.html +0 -131
  600. package/coverage/list/Thread/props/propTypes.js.html +0 -112
  601. package/coverage/list/status/StatusDropdown/StatusDropdown.js.html +0 -1147
  602. package/coverage/list/status/StatusDropdown/StatusDropdown.module.css.html +0 -292
  603. package/coverage/list/status/StatusDropdown/index.html +0 -131
  604. package/coverage/list/status/StatusDropdown/props/defaultProps.js.html +0 -145
  605. package/coverage/list/status/StatusDropdown/props/index.html +0 -131
  606. package/coverage/list/status/StatusDropdown/props/propTypes.js.html +0 -319
  607. package/coverage/list/status/StatusListItem/StatusListItem.js.html +0 -424
  608. package/coverage/list/status/StatusListItem/StatusListItem.module.css.html +0 -352
  609. package/coverage/list/status/StatusListItem/index.html +0 -131
  610. package/coverage/list/status/StatusListItem/props/defaultProps.js.html +0 -133
  611. package/coverage/list/status/StatusListItem/props/index.html +0 -131
  612. package/coverage/list/status/StatusListItem/props/propTypes.js.html +0 -181
  613. package/coverage/lookup/EmptyPage/EmptyPage.js.html +0 -256
  614. package/coverage/lookup/EmptyPage/LookupEmptyPage.module.css.html +0 -121
  615. package/coverage/lookup/EmptyPage/index.html +0 -131
  616. package/coverage/lookup/EmptyPage/props/defaultProps.js.html +0 -97
  617. package/coverage/lookup/EmptyPage/props/index.html +0 -131
  618. package/coverage/lookup/EmptyPage/props/propTypes.js.html +0 -103
  619. package/coverage/lookup/Lookup/Lookup.js.html +0 -499
  620. package/coverage/lookup/Lookup/Lookup.module.css.html +0 -217
  621. package/coverage/lookup/Lookup/index.html +0 -131
  622. package/coverage/lookup/Lookup/props/defaultProps.js.html +0 -112
  623. package/coverage/lookup/Lookup/props/index.html +0 -131
  624. package/coverage/lookup/Lookup/props/propTypes.js.html +0 -160
  625. package/coverage/lookup/Section/LookupSection.module.css.html +0 -109
  626. package/coverage/lookup/Section/Section.js.html +0 -142
  627. package/coverage/lookup/Section/index.html +0 -131
  628. package/coverage/lookup/Section/props/index.html +0 -116
  629. package/coverage/lookup/Section/props/propTypes.js.html +0 -106
  630. package/coverage/lookup/header/Close/Close.js.html +0 -154
  631. package/coverage/lookup/header/Close/index.html +0 -116
  632. package/coverage/lookup/header/Close/props/defaultProps.js.html +0 -94
  633. package/coverage/lookup/header/Close/props/index.html +0 -131
  634. package/coverage/lookup/header/Close/props/propTypes.js.html +0 -106
  635. package/coverage/lookup/header/ModuleHeader/ModuleHeader.js.html +0 -367
  636. package/coverage/lookup/header/ModuleHeader/index.html +0 -116
  637. package/coverage/lookup/header/ModuleHeader/props/defaultProps.js.html +0 -97
  638. package/coverage/lookup/header/ModuleHeader/props/index.html +0 -131
  639. package/coverage/lookup/header/ModuleHeader/props/propTypes.js.html +0 -148
  640. package/coverage/lookup/header/Search/LookupSearch.module.css.html +0 -229
  641. package/coverage/lookup/header/Search/Search.js.html +0 -724
  642. package/coverage/lookup/header/Search/index.html +0 -131
  643. package/coverage/lookup/header/Search/props/defaultProps.js.html +0 -100
  644. package/coverage/lookup/header/Search/props/index.html +0 -131
  645. package/coverage/lookup/header/Search/props/propTypes.js.html +0 -175
  646. package/coverage/lookup/header/TicketHeader/TicketHeader.js.html +0 -433
  647. package/coverage/lookup/header/TicketHeader/TicketHeader.module.css.html +0 -142
  648. package/coverage/lookup/header/TicketHeader/index.html +0 -131
  649. package/coverage/lookup/header/TicketHeader/props/defaultProps.js.html +0 -100
  650. package/coverage/lookup/header/TicketHeader/props/index.html +0 -131
  651. package/coverage/lookup/header/TicketHeader/props/propTypes.js.html +0 -151
  652. package/coverage/lookup/header/Title/LookupTitle.module.css.html +0 -148
  653. package/coverage/lookup/header/Title/Title.js.html +0 -169
  654. package/coverage/lookup/header/Title/index.html +0 -131
  655. package/coverage/lookup/header/Title/props/defaultProps.js.html +0 -94
  656. package/coverage/lookup/header/Title/props/index.html +0 -131
  657. package/coverage/lookup/header/Title/props/propTypes.js.html +0 -106
  658. package/coverage/lookup/header/ViewDropDown/ViewDropDown.js.html +0 -610
  659. package/coverage/lookup/header/ViewDropDown/ViewDropDown.module.css.html +0 -220
  660. package/coverage/lookup/header/ViewDropDown/index.html +0 -131
  661. package/coverage/lookup/header/ViewDropDown/props/defaultProps.js.html +0 -109
  662. package/coverage/lookup/header/ViewDropDown/props/index.html +0 -131
  663. package/coverage/lookup/header/ViewDropDown/props/propTypes.js.html +0 -157
  664. package/coverage/lookup/header/index.html +0 -131
  665. package/coverage/lookup/header/lookupHeaderCommon.module.css.html +0 -178
  666. package/coverage/lookup/header/lookupHeaderCommonResponsive.module.css.html +0 -130
  667. package/coverage/prettify.css +0 -1
  668. package/coverage/prettify.js +0 -2
  669. package/coverage/setup/header/Button/Button.js.html +0 -169
  670. package/coverage/setup/header/Button/HeaderButton.module.css.html +0 -94
  671. package/coverage/setup/header/Button/index.html +0 -131
  672. package/coverage/setup/header/Button/props/defaultProps.js.html +0 -97
  673. package/coverage/setup/header/Button/props/index.html +0 -131
  674. package/coverage/setup/header/Button/props/propTypes.js.html +0 -109
  675. package/coverage/setup/header/Link/HeaderLink.module.css.html +0 -130
  676. package/coverage/setup/header/Link/Link.js.html +0 -193
  677. package/coverage/setup/header/Link/index.html +0 -131
  678. package/coverage/setup/header/Link/props/defaultProps.js.html +0 -97
  679. package/coverage/setup/header/Link/props/index.html +0 -131
  680. package/coverage/setup/header/Link/props/propTypes.js.html +0 -112
  681. package/coverage/setup/header/Search/Search.js.html +0 -280
  682. package/coverage/setup/header/Search/Search.module.css.html +0 -259
  683. package/coverage/setup/header/Search/index.html +0 -131
  684. package/coverage/setup/header/Search/props/defaultProps.js.html +0 -103
  685. package/coverage/setup/header/Search/props/index.html +0 -131
  686. package/coverage/setup/header/Search/props/propTypes.js.html +0 -124
  687. package/coverage/setup/header/Views/Views.js.html +0 -208
  688. package/coverage/setup/header/Views/Views.module.css.html +0 -169
  689. package/coverage/setup/header/Views/index.html +0 -131
  690. package/coverage/setup/header/Views/props/defaultProps.js.html +0 -103
  691. package/coverage/setup/header/Views/props/index.html +0 -131
  692. package/coverage/setup/header/Views/props/propTypes.js.html +0 -115
  693. package/coverage/setup/helptips/Description/Description.js.html +0 -148
  694. package/coverage/setup/helptips/Description/HelpTipsDescription.module.css.html +0 -103
  695. package/coverage/setup/helptips/Description/index.html +0 -131
  696. package/coverage/setup/helptips/Description/props/index.html +0 -116
  697. package/coverage/setup/helptips/Description/props/propTypes.js.html +0 -100
  698. package/coverage/setup/helptips/Link/HelpTipsLink.module.css.html +0 -103
  699. package/coverage/setup/helptips/Link/Link.js.html +0 -172
  700. package/coverage/setup/helptips/Link/index.html +0 -131
  701. package/coverage/setup/helptips/Link/props/index.html +0 -116
  702. package/coverage/setup/helptips/Link/props/propTypes.js.html +0 -109
  703. package/coverage/setup/helptips/ListGroup/ListGroup.js.html +0 -205
  704. package/coverage/setup/helptips/ListGroup/ListGroup.module.css.html +0 -136
  705. package/coverage/setup/helptips/ListGroup/index.html +0 -131
  706. package/coverage/setup/helptips/ListGroup/props/index.html +0 -116
  707. package/coverage/setup/helptips/ListGroup/props/propTypes.js.html +0 -103
  708. package/coverage/setup/helptips/Title/HelpTipsTitle.module.css.html +0 -100
  709. package/coverage/setup/helptips/Title/Title.js.html +0 -148
  710. package/coverage/setup/helptips/Title/index.html +0 -131
  711. package/coverage/setup/helptips/Title/props/index.html +0 -116
  712. package/coverage/setup/helptips/Title/props/propTypes.js.html +0 -100
  713. package/coverage/setup/table/Table/Table.js.html +0 -160
  714. package/coverage/setup/table/Table/index.html +0 -116
  715. package/coverage/setup/table/Table/props/defaultProps.js.html +0 -97
  716. package/coverage/setup/table/Table/props/index.html +0 -131
  717. package/coverage/setup/table/Table/props/propTypes.js.html +0 -106
  718. package/coverage/setup/table/TableBody/TableBody.js.html +0 -160
  719. package/coverage/setup/table/TableBody/index.html +0 -116
  720. package/coverage/setup/table/TableBody/props/defaultProps.js.html +0 -94
  721. package/coverage/setup/table/TableBody/props/index.html +0 -131
  722. package/coverage/setup/table/TableBody/props/propTypes.js.html +0 -109
  723. package/coverage/setup/table/TableData/SetupTableData.module.css.html +0 -193
  724. package/coverage/setup/table/TableData/TableData.js.html +0 -199
  725. package/coverage/setup/table/TableData/index.html +0 -131
  726. package/coverage/setup/table/TableData/props/defaultProps.js.html +0 -100
  727. package/coverage/setup/table/TableData/props/index.html +0 -131
  728. package/coverage/setup/table/TableData/props/propTypes.js.html +0 -121
  729. package/coverage/setup/table/TableHead/SetupTableHead.module.css.html +0 -109
  730. package/coverage/setup/table/TableHead/TableHead.js.html +0 -193
  731. package/coverage/setup/table/TableHead/index.html +0 -131
  732. package/coverage/setup/table/TableHead/props/defaultProps.js.html +0 -97
  733. package/coverage/setup/table/TableHead/props/index.html +0 -131
  734. package/coverage/setup/table/TableHead/props/propTypes.js.html +0 -112
  735. package/coverage/setup/table/TableRow/SetupTableRow.module.css.html +0 -115
  736. package/coverage/setup/table/TableRow/TableRow.js.html +0 -205
  737. package/coverage/setup/table/TableRow/index.html +0 -131
  738. package/coverage/setup/table/TableRow/props/defaultProps.js.html +0 -97
  739. package/coverage/setup/table/TableRow/props/index.html +0 -131
  740. package/coverage/setup/table/TableRow/props/propTypes.js.html +0 -121
  741. package/coverage/setup/table/Text/TableText.module.css.html +0 -196
  742. package/coverage/setup/table/Text/Text.js.html +0 -214
  743. package/coverage/setup/table/Text/index.html +0 -131
  744. package/coverage/setup/table/Text/props/defaultProps.js.html +0 -106
  745. package/coverage/setup/table/Text/props/index.html +0 -131
  746. package/coverage/setup/table/Text/props/propTypes.js.html +0 -127
  747. package/coverage/sort-arrow-sprite.png +0 -0
  748. package/coverage/sorter.js +0 -196
  749. package/coverage/svg/PlusIcon.js.html +0 -175
  750. package/coverage/svg/SnippetIcon.js.html +0 -196
  751. package/coverage/svg/TemplateIcon.js.html +0 -160
  752. package/coverage/svg/index.html +0 -146
  753. package/coverage/svg/props/defaultProps.js.html +0 -136
  754. package/coverage/svg/props/index.html +0 -131
  755. package/coverage/svg/props/propTypes.js.html +0 -142
  756. package/coverage/utils/ChannelIconMapping.js.html +0 -475
  757. package/coverage/utils/General.js.html +0 -208
  758. package/coverage/utils/editorUtils.js.html +0 -652
  759. package/coverage/utils/index.html +0 -146
  760. package/coverage/version2/AlertClose/AlertClose.js.html +0 -202
  761. package/coverage/version2/AlertClose/AlertClose.module.css.html +0 -211
  762. package/coverage/version2/AlertClose/index.html +0 -131
  763. package/coverage/version2/AlertClose/props/index.html +0 -116
  764. package/coverage/version2/AlertClose/props/propTypes.js.html +0 -112
  765. package/coverage/version2/GlobalNotification/GlobalNotification.js.html +0 -463
  766. package/coverage/version2/GlobalNotification/GlobalNotification.module.css.html +0 -466
  767. package/coverage/version2/GlobalNotification/index.html +0 -131
  768. package/coverage/version2/GlobalNotification/props/defaultProps.js.html +0 -103
  769. package/coverage/version2/GlobalNotification/props/index.html +0 -131
  770. package/coverage/version2/GlobalNotification/props/propTypes.js.html +0 -214
  771. package/coverage/version2/alertIcons/AlarmAlertIcon.js.html +0 -166
  772. package/coverage/version2/alertIcons/AlertIcons.js.html +0 -253
  773. package/coverage/version2/alertIcons/AlertIcons.module.css.html +0 -286
  774. package/coverage/version2/alertIcons/DangerAlertIcon.js.html +0 -166
  775. package/coverage/version2/alertIcons/ErrorAlertIcon.js.html +0 -169
  776. package/coverage/version2/alertIcons/InfoAlertIcon.js.html +0 -172
  777. package/coverage/version2/alertIcons/NotificationAlertIcon.js.html +0 -166
  778. package/coverage/version2/alertIcons/SuccessAlertIcon.js.html +0 -166
  779. package/coverage/version2/alertIcons/WarningAlertIcon.js.html +0 -163
  780. package/coverage/version2/alertIcons/index.html +0 -236
  781. package/coverage/version2/alertIcons/props/defaultProps.js.html +0 -187
  782. package/coverage/version2/alertIcons/props/index.html +0 -131
  783. package/coverage/version2/alertIcons/props/propTypes.js.html +0 -211
  784. package/coverage/version2/errorstate/Inconvenience/Inconvenience.js.html +0 -319
  785. package/coverage/version2/errorstate/Inconvenience/index.html +0 -116
  786. package/coverage/version2/errorstate/Inconvenience/props/defaultProps.js.html +0 -109
  787. package/coverage/version2/errorstate/Inconvenience/props/index.html +0 -131
  788. package/coverage/version2/errorstate/Inconvenience/props/propTypes.js.html +0 -136
  789. package/coverage/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js.html +0 -319
  790. package/coverage/version2/errorstate/OopsSomethingMiss/index.html +0 -116
  791. package/coverage/version2/errorstate/OopsSomethingMiss/props/defaultProps.js.html +0 -109
  792. package/coverage/version2/errorstate/OopsSomethingMiss/props/index.html +0 -131
  793. package/coverage/version2/errorstate/OopsSomethingMiss/props/propTypes.js.html +0 -136
  794. package/coverage/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js.html +0 -319
  795. package/coverage/version2/errorstate/UnableToProcessRequest/index.html +0 -116
  796. package/coverage/version2/errorstate/UnableToProcessRequest/props/defaultProps.js.html +0 -109
  797. package/coverage/version2/errorstate/UnableToProcessRequest/props/index.html +0 -131
  798. package/coverage/version2/errorstate/UnableToProcessRequest/props/propTypes.js.html +0 -136
  799. package/coverage/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js.html +0 -319
  800. package/coverage/version2/errorstate/UnauthorizedLogin/index.html +0 -116
  801. package/coverage/version2/errorstate/UnauthorizedLogin/props/defaultProps.js.html +0 -112
  802. package/coverage/version2/errorstate/UnauthorizedLogin/props/index.html +0 -131
  803. package/coverage/version2/errorstate/UnauthorizedLogin/props/propTypes.js.html +0 -139
  804. package/coverage/version2/errorstate/UrlNotFound/UrlNotFound.js.html +0 -319
  805. package/coverage/version2/errorstate/UrlNotFound/index.html +0 -116
  806. package/coverage/version2/errorstate/UrlNotFound/props/defaultProps.js.html +0 -109
  807. package/coverage/version2/errorstate/UrlNotFound/props/index.html +0 -131
  808. package/coverage/version2/errorstate/UrlNotFound/props/propTypes.js.html +0 -136
  809. package/coverage/version2/errorstate/V2_ErrorStates.module.css.html +0 -223
  810. package/coverage/version2/errorstate/WillBeRightBack/WillBeRightBack.js.html +0 -319
  811. package/coverage/version2/errorstate/WillBeRightBack/index.html +0 -116
  812. package/coverage/version2/errorstate/WillBeRightBack/props/defaultProps.js.html +0 -109
  813. package/coverage/version2/errorstate/WillBeRightBack/props/index.html +0 -131
  814. package/coverage/version2/errorstate/WillBeRightBack/props/propTypes.js.html +0 -136
  815. package/coverage/version2/errorstate/index.html +0 -116
  816. package/coverage/version2/lookup/AlertHeader/AlertHeader.js.html +0 -316
  817. package/coverage/version2/lookup/AlertHeader/css/AlertHeaderNew.module.css.html +0 -277
  818. package/coverage/version2/lookup/AlertHeader/css/cssJSLogic.js.html +0 -130
  819. package/coverage/version2/lookup/AlertHeader/css/index.html +0 -131
  820. package/coverage/version2/lookup/AlertHeader/index.html +0 -116
  821. package/coverage/version2/lookup/AlertHeader/props/defaultProps.js.html +0 -106
  822. package/coverage/version2/lookup/AlertHeader/props/index.html +0 -131
  823. package/coverage/version2/lookup/AlertHeader/props/propTypes.js.html +0 -166
  824. package/coverage/version2/lookup/AlertLookup/AlertLookup.js.html +0 -778
  825. package/coverage/version2/lookup/AlertLookup/AlertLookupNew.module.css.html +0 -202
  826. package/coverage/version2/lookup/AlertLookup/index.html +0 -131
  827. package/coverage/version2/lookup/AlertLookup/props/defaultProps.js.html +0 -124
  828. package/coverage/version2/lookup/AlertLookup/props/index.html +0 -131
  829. package/coverage/version2/lookup/AlertLookup/props/propTypes.js.html +0 -214
  830. package/coverage/version2/notification/DesktopNotification/DesktopNotification.js.html +0 -703
  831. package/coverage/version2/notification/DesktopNotification/DesktopNotification.module.css.html +0 -424
  832. package/coverage/version2/notification/DesktopNotification/index.html +0 -131
  833. package/coverage/version2/notification/DesktopNotification/props/defaultProps.js.html +0 -139
  834. package/coverage/version2/notification/DesktopNotification/props/index.html +0 -131
  835. package/coverage/version2/notification/DesktopNotification/props/propTypes.js.html +0 -217
  836. package/coverage/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js.html +0 -361
  837. package/coverage/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css.html +0 -370
  838. package/coverage/version2/notification/DesktopNotificationHeader/index.html +0 -131
  839. package/coverage/version2/notification/DesktopNotificationHeader/props/defaultProps.js.html +0 -109
  840. package/coverage/version2/notification/DesktopNotificationHeader/props/index.html +0 -131
  841. package/coverage/version2/notification/DesktopNotificationHeader/props/propTypes.js.html +0 -124
@@ -68,7 +68,7 @@
68
68
  <body>
69
69
  <div id="table-container"></div>
70
70
  <script>
71
- const jsonData = {"ActionButtonComponent":{"props":["openPopupOnly","defaultPosition","togglePopup","isLoading","onClick","size","dataId","dataSelectorId","isArrow","text","subText","arrowBoxSize","palette","onHover","position","className","iconName","iconSize","dataTitle","isDisabled","isPopupOpen","removeClose","children","dropBoxClass","isBoxPaddingNeed","getContainerRef","getTargetRef","removeChildrenTooltip","innerClassName","popupGroup"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ActionButton/ActionButton.js","InaccurateProps":[]},"AlphabeticList":{"props":["onSelect","selectedCharacter","align","type","i18nKeys","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/AlphabeticList/AlphabeticList.js","InaccurateProps":[]},"Attachment":{"props":["onClick","dataId","size","iconName","fileName","fileSize","downloadLink","palette","tooltip","fileInfo","i18nKeys","dataSelectorId","isDisabled"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Attachment/Attachment.js","InaccurateProps":[]},"AttachmentImage":{"props":["isImage","onLoad","src","onClick","alt","dataId","id","className","isCover"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/AttachmentViewer/AttachmentImage.js","InaccurateProps":[]},"AttachmentViewer":{"props":["previewObj","maintainZoom","hideAttachmentViewer","dataId","responsiveId","needDownload","i18nKeys","isActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/AttachmentViewer/AttachmentViewer.js","InaccurateProps":[]},"ChannelIcon":{"props":["name","action","iconSize","iconTitle","size","topicIcon","topicIconTitle","topicIconSize","topicIconColor","iconClass","dataId","className","palette","textPalette","customTextClass","iconColor","needTopicBorder","topicClass","renderIconOnly","iconName","title","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ChannelIcon/ChannelIcon.js","InaccurateProps":[]},"Drawer":{"innerComponent":{"Header":{"props":["title","onClose","children","className","paddingSize","closeTitle","iconName","iconSize","onIconClick","isIconBold","dataId","flexible","getChildren","iconTitle","isBoxIcon","getTitleChildren"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js","InaccurateProps":[]},"Content":{"props":["children","className","paddingSize","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js","InaccurateProps":[]},"Footer":{"props":["paddingLeftSize","paddingRightClass","children","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js","InaccurateProps":[]},"Drawer":{"props":["children","size","paddingSize","subDrawerActive","subDrawerChildren","onBodyClick","onClose","needFocusScope","customProps","a11y","needFreeze","palette","isActive","forwardRef","responsiveId","subDrawerSize","subDrawerClass","customClass","needAutoZindex","innerPortalName"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js","InaccurateProps":[]}}},"ExternalLink":{"props":["href","title","target","className","children","rel","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ExternalLink/ExternalLink.js","InaccurateProps":[]},"FlipCard":{"props":["noNeedFlip","onChange","id","action","name","initial","isChecked","size","channel","isPaidUser","isPortalUser","src","icon","iconSize","iconClass","ticListContainer","ticList","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","iconColor","tourId","isFilledCheckbox","channelTitle","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/FlipCard/FlipCard.js","InaccurateProps":[]},"FormAction":{"props":["size","children","paddingLeftSize","paddingRightClass","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/FormAction/FormAction.js","InaccurateProps":[]},"FreezeLayer":{"props":["zIndex","palette","isSvgMask","customClass","isActive","children","align","childAnimationName","onClick","animationName","runOnMount","forwardRef","needAutoZindex","customStyle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/FreezeLayer/FreezeLayer.js","InaccurateProps":[]},"IconButton":{"props":["onClick","isDisabled","onMouseOver","onMouseDown","palette","iconSize","iconName","className","iconClass","dataId","dataSelectorId","eleRef","isActive","tourId","children","hoverType","title","isBold","isNeedEffect","needButtonTag","a11y","dataIsHtml","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/IconButton/IconButton.js","InaccurateProps":[]},"Image":{"props":["alt","src","className","isCover","title","onClick","dataId","htmlId","eleRef","original"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Image/Image.js","InaccurateProps":[]},"ImportantNotes":{"props":["text","iconName","iconSize","children","iconClass","isCover","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ImportantNotes/ImportantNotes.js","InaccurateProps":[]},"Link":{"props":["onClick","hasReload","target","children","href","urlData","urlName","className","title","download","rel","dataId","customProps","ariaLabel","key"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Link/Link.js","InaccurateProps":[]},"MessageBanner":{"props":["type","message","onClose","href","onClick","urlText","palette","customClass","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/MessageBanner/MessageBanner.js","InaccurateProps":[]},"NewStar":{"props":["palette","customClass","position"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/NewStar/NewStar.js","InaccurateProps":[]},"PlusIcon":{"props":["dataId","iconName","iconClass","iconSize","size","onClick","title","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/PlusIcon/PlusIcon.js","InaccurateProps":[]},"Separator":{"props":["children","type","customSeparatorType","palette","wrap","shrink","aligndirection","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Separator/Separator.js","InaccurateProps":[]},"TagWithIcon":{"props":["text","iconName","iconSize","palette","iconClass","isBold","size","dataId","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/TagWithIcon/TagWithIcon.js","InaccurateProps":[]},"ToastMessage":{"props":["messageState","type","subject","info","submitText","cancelText","iconName","iconSize","submitType","isIconMid","needClose","iconPalette","isMore","message","isAnimate","getLeftContainer","getInnerBottomContainer","getBottomContainer","getSubmitContainer","onSubmit","onCancel","dataId","dataSelectorId","isClose","onClose","needAutoZindex","a11y","Element","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ToastMessage/ToastMessage.js","InaccurateProps":[]},"Upload":{"props":["isPreview","tooltip","dataId","dataSelectorId","progressValue","onClick","iconName","fileSize","imgSrc","isPreviewType","onRemove","size","getRef","palette"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Upload/Upload.js","InaccurateProps":[]},"AutoClose":{"props":["Element","isClose","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/actions/AutoClose.js","InaccurateProps":[]},"AlertHeader":{"props":["title","palette","needIcon","iconType","onClose","iconName","iconSize","closeTitle","children","breakChildren","dataId","iconClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/alert/AlertHeader/AlertHeader.js","InaccurateProps":[]},"AlertLookup":{"props":["isActive","palette","size","type","title","message","confirmationMessage","submitText","cancelText","onSubmitClick","onCancelClick","children","forwardRef","onClose","headerChildren","wrapHeader","sectionClassName","dataId","onLookupClick","customClass","needIcon","iconName","iconClass","iconSize","customProps","isHtmlContent","onEsc"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/alert/AlertLookup/AlertLookup.js","InaccurateProps":[]},"AvatarClose":{"props":["title","src","name","size","isClose","onClick","customProps","dataSelectorId","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarClose/AvatarClose.js","InaccurateProps":[]},"AvatarCollision":{"props":["title","src","name","size","onClick","needCreateChat","isLeft","isIdle","initial","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarCollision/AvatarCollision.js","InaccurateProps":[]},"AvatarIcon":{"props":["name","size","iconSize","iconClass","iconColor","onClick","palette","dataId","className","isIconBold","title","borderOnActive","borderOnHover","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarIcon/AvatarIcon.js","InaccurateProps":[]},"AvatarStatus":{"props":["src","name","size","onClick","title","state","dataId","initial","shape","needTitle","className","needBorder","palette","textPalette","customTextClass","statusTitle","customProps","dataSelectorId","needDefaultBorder"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarStatus/AvatarStatus.js","InaccurateProps":[]},"AvatarThread":{"props":["src","name","size","iconColor","iconName","iconSize","borderPalette","onClick","title","iconTitle","onIconClick","showOnHover","dataId","initial","needBorder","needBackground","palette","textPalette","customTextClass","needTitle","customProps","iconClass","getCustomThread","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarThread/AvatarThread.js","InaccurateProps":[]},"AvatarUser":{"props":["src","alternateSrc","name","size","onClick","onDelete","title","isPaid","isPortal","isLocked","dataId","dataSelectorId","needTitle","needDelete","initial","palette","textPalette","customTextClass","iconName","iconSize","iconClass","iconColor","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarUser/AvatarUser.js","InaccurateProps":[]},"AvatarWithTeam":{"props":["name","size","src","teamName","isTeam","needTitle","initial","title","palette","textPalette","customTextClass","teamClassName","borderOnActive","customProps","dataSelectorId","teamBorderActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarWithTeam/AvatarWithTeam.js","InaccurateProps":[]},"deprecated-FreezeLayer":{"props":["isActive","children","align","childAnimationName","palette","onClick","animationName","zIndex","runOnMount","forwardRef","isSvgMask","customClass","needAutoZindex"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/deprecated/FreezeLayer/FreezeLayer.js","InaccurateProps":[]},"SelectDropdown":{"props":["onClick","togglePopup","title","selectedText","isPopupOpen","isPopupReady","getTargetRef","getContainerRef","removeClose","suggestions","selectedId","isSearchRequired"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":true,"FilePath":"src/deprecated/SelectDropdown/SelectDropdown.js","InaccurateProps":[]},"ToggleDropDown_Component":{"props":["options","togglePopup","boxPosition","onSelectLabel","isPopupOpen","removeClose","onClick","preventPopupClose","isPopupReady","isSearch","idName","onDropDownOpen","onDropDownClose","from","keyName","isGroupDropDown","groupOptionsKey","groupNameKey","needSearchFetching","onSearch","isNextOptions","getNextOptions","value","boxSize","title","isArrow","placeHolderText","className","right","left","top","bottom","isPopupActive","needExternalPopupState","position","getTargetRef","getContainerRef","dataId","dataSelectorId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","iconName","iconSize","needTick","dataTitle","isDataLoaded","children","needResponsive","arrowIconPosition","isToggleStateNeeded","selectedId","isPadding","isNeedEffect","hoverType","palette","getFooter","customProps","needMultiLineText","isAbsolutePositioningNeeded","positionsOffset","targetOffset","isRestrictScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/dropdown/ToggleDropDown/ToggleDropDown.js","InaccurateProps":[]},"CommonEmptyState":{"props":["title","description","linkDescription","linkUrl","linkText","linkTarget","onUrlClick","getEmptyState","className","dataId","isFluid","children","size","palette","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/emptystate/CommonEmptyState/CommonEmptyState.js","InaccurateProps":[]},"EditionPage":{"props":["title","subtitle","information","dataId","footerText","onButtonClick","butttonText","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/emptystate/EditionPage/EditionPage.js","InaccurateProps":[]},"Inconvenience":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/Inconvenience/Inconvenience.js","InaccurateProps":[]},"LinkText":{"props":["text","href","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/LinkText/LinkText.js","InaccurateProps":[]},"NoRequestFound":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/NoRequestFound/NoRequestFound.js","InaccurateProps":[]},"PermissionPlay":{"props":["subtitle","title","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/PermissionPlay/PermissionPlay.js","InaccurateProps":[]},"RequestUrlNotFound":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/RequestUrlNotFound/RequestUrlNotFound.js","InaccurateProps":[]},"UnableToProcess":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/UnableToProcess/UnableToProcess.js","InaccurateProps":[]},"UnauthorizedLogin":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/UnauthorizedLogin/UnauthorizedLogin.js","InaccurateProps":[]},"WillBack":{"props":["dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/WillBack/WillBack.js","InaccurateProps":[]},"CheckBoxField":{"props":["id","onChange","getRef","checked","labelName","isMandatory","validationMessage","validationPalette","isReadOnly","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","getContainerRef","infoText","fieldSize","labelPalette","labelCustomClass","direction","lineClamp","isLocked","lockedInfoText","customProps","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/CheckBoxField/CheckBoxField.js","InaccurateProps":[]},"CurrencyField":{"props":["id","onChange","getRef","onFocus","onBlur","labelName","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","dataId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","dataSelectorId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","userCurrencyType","customProps","formatCurrency","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/CurrencyField/CurrencyField.js","InaccurateProps":[]},"DateField":{"props":["id","onChange","getRef","openPopupOnMount","isFocusOnLabelClick","labelName","isMandatory","isDateTime","validationMessage","validationPalette","textBoxSize","textBoxVariant","isReadOnly","value","errorType","isDisabled","title","popupGroup","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","fieldSize","datePattern","isLocked","lockedInfoText","lockedValueText","labelPalette","labelCustomClass","htmlId","timeZone","i18nKeys","iconOnHover","customProps","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/DateField/DateField.js","InaccurateProps":[]},"FieldContainer":{"props":["children","ePhiData","isLocked","lockedInfoText","infoText","dataId","renderProps","alignContainer","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/FieldContainer/FieldContainer.js","InaccurateProps":[]},"MultiSelectField":{"props":["id","onChange","onDropBoxOpen","onSearch","getNextOptions","getRef","labelName","isMandatory","options","selectedOptions","needSelectAll","selectAllText","isAnimate","emptyMessage","size","variant","textBoxSize","animationStyle","validationMessage","validationPalette","isReadOnly","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","placeHolder","fieldSize","valueField","textField","isNextOptions","isSearching","popupGroup","labelPalette","palette","lockedInfoText","isLocked","htmlId","children","customChildrenClass","onFocus","customProps","i18nKeys","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/MultiSelectField/MultiSelectField.js","InaccurateProps":[]},"PhoneField":{"props":["onChange","getRef","id","onFocus","onBlur","labelName","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","maxLength","isReadOnly","value","errorType","isDisabled","title","dataId","dataSelectorId","onKeyDown","placeHolder","infoText","isTelephony","providerName","ticketId","contactId","borderColor","fieldSize","labelPalette","labelCustomClass","i18nKeys","onCall","ePhiData","type","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/PhoneField/PhoneField.js","InaccurateProps":[]},"RadioField":{"props":["id","onChange","labelName","isMandatory","options","validationMessage","validationPalette","errorType","isDisabled","title","labelPalette","labelSize","size","selectedValue","isActive","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","isReadOnly","variant","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/RadioField/RadioField.js","InaccurateProps":[]},"SelectField":{"props":["id","onChange","selectedValue","getRef","labelName","isMandatory","options","needSearch","emptyMessage","animationStyle","textBoxSize","textBoxVariant","searchBoxSize","searchBoxPlaceHolder","validationMessage","validationPalette","isReadOnly","valueField","textField","excludeOptions","errorType","isDisabled","title","dataId","dataSelectorId","fieldClass","validationRuleMessage","validationRulePalette","onKeyDown","infoText","isLocked","lockedInfoText","borderColor","fieldSize","isNextOptions","getNextOptions","popupGroup","onSearch","labelPalette","labelCustomClass","htmlId","needLocalSearch","isDefaultSelectValue","placeHolder","children","onFocus","iconOnHover","customProps","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/SelectField/SelectField.js","InaccurateProps":[]},"TagsMultiSelect":{"props":["getTextInputRef","onScroll","name","noMoreData","searchList","isTagListLoading","tagsList","isPopupReady","selectSearchIndex","deleteTag","isReadOnly","className","handleKeyUp","handleChange","addTag","getContainerRef","getTargetRef","isPopupOpen","boxPosition","handleTogglePopup","listDisabled","chipNeedToShow","i18nKeys","dataId","needBorder","borderColor","getTextBoxChildren","htmlId","boxSize","onSelectTag","clickableTag","dataSelectorId","handleSelectAll","selectAllText","needSelectAll","customClass","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TagsMultiSelect/TagsMultiSelect.js","InaccurateProps":[]},"TagsMultiSelectField_Component":{"props":["searchValue","fieldProperties","styleProperties","actions","dataId","htmlId","isLoading","isListDisabled","isNewNeeded","isPopupOpen","isPopupReady","removeClose","position","togglePopup","noMoreData","numberOfDisplayedValues","getTargetRef","getContainerRef","i18nKeys","getTextBoxChildren","children","ePhiData","customProps","clickableTag","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TagsMultiSelectField/TagsMultiSelectField.js","InaccurateProps":[]},"TextBoxField":{"props":["id","onChange","getRef","labelName","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","onBlur","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","onFocus","ePhiData","children","customProps","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextBoxField/TextBoxField.js","InaccurateProps":[]},"TextEditor":{"props":["EDITORURL","value","editorMode","editorOptions","needEditorFocus","handleDropUpload","fontFamily","fontSize","initCallback","handleAlertMessage","needInlineAttachment","plainTextSwitchCallback","id","getRef","changeEditorContent","shouldUpdateContent","mode","onFocus","onChange","editorCallback","isCustomScroll","setInlineAttachmentInProgress","i18nKeys","blurCallback","onUpload","getCSRFCookieName","getCSRFCookie","isEditorDefaultOpen","toggleEdit","dataId","type","border","ImgLazyLoad","loadingComponent","isNightMode","isReadOnly","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextEditor/TextEditor.js","InaccurateProps":[]},"TextEditorField":{"props":["id","onChange","getRef","isFocusOnLabelClick","isDisabled","isReadOnly","children","labelName","isMandatory","value","validationMessage","validationPalette","onAttachmentUpload","needEditor","dataId","dataSelectorId","fieldSize","textBoxSize","textBoxVariant","labelPalette","labelCustomClass","infoText","isLocked","lockedInfoText","errorType","EDITORURL","editorMode","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","onFocus","isEditorDefaultOpen","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","needInlineAttachment","i18nKeys","className","ePhiData","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextEditorField/TextEditorField.js","InaccurateProps":[]},"TextEditorWrapper":{"props":["value","isEditorDefaultOpen","isReadOnly","isDisabled","id","onFocus","onChange","onAttachmentUpload","needEditor","dataId","getRef","textBoxSize","textBoxVariant","editorMode","editorSize","editorBorder","EDITORURL","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","i18nKeys","needInlineAttachment","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextEditorWrapper/TextEditorWrapper.js","InaccurateProps":[]},"TextareaField":{"props":["id","onChange","onBlur","getRef","labelName","isMandatory","textBoxSize","animated","textBoxVariant","isReadOnly","validationMessage","validationPalette","maxLength","value","errorType","isDisabled","title","placeHolder","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onFocus","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","customProps","renderLabelProps","renderRightPlaceholderNode","rightPlaceholderCustomClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextareaField/TextareaField.js","InaccurateProps":[]},"ValidationMessage":{"props":["palette","text","htmlFor","onClick","type","size","dataId","clipped","a11y","tooltip","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/ValidationMessage/ValidationMessage.js","InaccurateProps":[]},"Field":{"props":["width","children","rowBreak","column","className","containerClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/layout/Field/Field.js","InaccurateProps":[]},"Section":{"props":["title","dataId","containerClass","titleClass","className","column","formName","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/layout/Section/Section.js","InaccurateProps":[]},"SetupDetailLayout":{"innerComponent":{"SetupDetailLayout":{"props":["children","needHelpInfo","getHelpInfo","helpInfoTitle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupHeader":{"props":["title","needBack","onBackClick","openHelpInfo","needHelpInfo","needHelpInfoWrapper","getLeftPlaceHolder","getRightPlaceHolder","leftClassName","rightClassName","isCustomizedHeader","headerCustomStyle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupContent":{"props":["children","needPadding","className","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupFooter":{"props":["children","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]}}},"AvatarFlip":{"props":["id","action","name","isChecked","onChange","noNeedFlip","size","onClick","isPaidUser","isPortalUser","channel","src","icon","initial","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","tourId","iconSize","isFilledCheckbox","channelTitle","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/AvatarFlip/AvatarFlip.js","InaccurateProps":[]},"BluePrintStatus":{"props":["title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/BluePrintStatus/BluePrintStatus.js","InaccurateProps":[]},"Comment":{"props":["count","onClick","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Comment/Comment.js","InaccurateProps":[]},"DepartmentDropDown":{"props":["getDepartment","onSearch","onMoveDepartment","departmentName","departmentList","onSelectLabel","isEditable","dataId","isFetching","isPopupActive","getNextOptions","isNextOptions","needSearchFetching","searchStr","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/DepartmentDropDown/DepartmentDropDown.js","InaccurateProps":[]},"Dot":{"props":["className","spacingType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Dot/Dot.js","InaccurateProps":[]},"DotNew":{"props":["className","dataTitle","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/DotNew/DotNew.js","InaccurateProps":[]},"GridStencils":{"props":["lineBar","from","isThreeLayout","styles","order"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/GridStencils/GridStencils.js","InaccurateProps":[]},"AddNewIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/AddNewIcon.js","InaccurateProps":[]},"CompleteIcon":{"props":["onClick","dataId","dataTitle","iconClass","className","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/CompleteIcon.js","InaccurateProps":[]},"DeleteComponent":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/DeleteIcon.js","InaccurateProps":[]},"EditIcon":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/EditIcon.js","InaccurateProps":[]},"FloatingIcons":{"props":["children","iconClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/FloatingIcons.js","InaccurateProps":[]},"ReadUnreadIcon":{"props":["onClick","dataId","dataTitle","iconClassName","iconClass","className","isRead","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/ReadUnreadIcon.js","InaccurateProps":[]},"SmartIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/SmartIcon.js","InaccurateProps":[]},"ListStencils":{"props":["listType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/ListStencils/ListStencils.js","InaccurateProps":[]},"AccountName":{"props":["dataTitle","dataId","urlName","urlData","onClick","isLink","className","text","href","notAccessible","fontWeight","secondaryAccountHref","secondaryAccountClick","secondaryAccountText","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/AccountName.js","InaccurateProps":[]},"ContactName":{"props":["dataTitle","dataId","isPaidUser","urlName","urlData","onClick","sentimentType","isLink","className","text","href","notAccessible","fontWeight","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/ContactName.js","InaccurateProps":[]},"DepartmentText":{"props":["className","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/DepartmentText.js","InaccurateProps":[]},"Email":{"props":["text","urlData","urlName","className","title","href","isLink","target","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/Email.js","InaccurateProps":[]},"HappinessRating":{"props":["text","className","src"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/HappinessRating.js","InaccurateProps":[]},"PhoneNumber":{"props":["text","urlData","urlName","className","title","href","dataId","isLink","target","hasReload","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/PhoneNumber.js","InaccurateProps":[]},"PriorityText":{"props":["className","color","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/PriorityText.js","InaccurateProps":[]},"SecondaryText":{"props":["className","text","dataTitle","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/SecondaryText.js","InaccurateProps":[]},"StatusText":{"props":["className","color","text","dataTitle","fontWeight","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/StatusText.js","InaccurateProps":[]},"TicketId":{"props":["text","className","dataId","isLink","dataTitle","onClick","url","target","urlName","urlData","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/TicketId.js","InaccurateProps":[]},"Website":{"props":["text","className","title","href","dataId","isLink","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/Website.js","InaccurateProps":[]},"SecondryPanel":{"innerComponent":{"SecondryPanel":{"props":["children","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelUL":{"props":["children","className","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelLI":{"props":["children","className","isShrink","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelItem":{"props":["children","className","dotClass","isDot","flex","clipped","dotSpacingType","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]}}},"SentimentStatus":{"props":["type","dataTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SentimentStatus/SentimentStatus.js","InaccurateProps":[]},"Subject":{"props":["text","dataId","urlName","href","urlData","onClick","isLink","target","fontWeight","className","isDotted","children","customProps","whiteSpace"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Subject/Subject.js","InaccurateProps":[]},"TagNew":{"props":["className","text","animate","onClick","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/TagNew/TagNew.js","InaccurateProps":[]},"Thread":{"props":["count","className","iconTitle","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Thread/Thread.js","InaccurateProps":[]},"StatusDropdown_Component":{"props":["options","togglePopup","boxPosition","onSelectLabel","isPopupOpen","onTogglePopup","onClick","keyName","getNextOptions","value","removeClose","boxSize","idName","title","isSearch","isArrow","placeHolderText","className","right","left","top","bottom","isPopupReady","position","getTargetRef","getContainerRef","dataId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","needTick","dataTitle","isDataLoaded","children","targetAlign","needResponsive","arrowIconPosition","statusColor","needExternalPopupState","isPopupActive","needMultiLineText","isFetchingOptions","a11y"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/status/StatusDropdown/StatusDropdown.js","InaccurateProps":[]},"StatusListItem":{"props":["index","getRef","id","onClick","value","onMouseEnter","size","active","highlight","autoHover","palette","title","disableTitle","needTick","isLink","href","target","needBorder","isDisabled","bulletColor","a11y","needMultiLineText","customClass","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/status/StatusListItem/StatusListItem.js","InaccurateProps":[]},"EmptyPage":{"props":["type","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/EmptyPage/EmptyPage.js","InaccurateProps":[]},"Lookup":{"props":["isActive","onKeyDown","children","size","dataId","forwardRef","onClick","customClass","htmlId","a11y","childAnimationName","onClose","needFocusScope","customProps","isMinHeight","lookupClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/Lookup/Lookup.js","InaccurateProps":[]},"lookup-Section":{"props":["alignBox","className","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/Section/Section.js","InaccurateProps":[]},"Close":{"props":["onClose","dataId","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/Close/Close.js","InaccurateProps":[]},"MemoizedModuleHeader":{"props":["title","needSearch","onLookupClose","searchStr","onSearch","onSearchChange","searchPlaceHolder","needOnTypeSearch","getSearchBoxRef","miniDescription","dataId","closeTitle","onSearchKeyDown","palette","dragBoundaryLimit","children","childNearTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/ModuleHeader/ModuleHeader.js","InaccurateProps":[]},"Search":{"props":["onFocus","onBlur","getRef","options","onSelect","value","selectedId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/Search/Search.js","InaccurateProps":[]},"MemoizedTicketHeader":{"props":["needSearch","onLookupClose","searchStr","onSearchChange","searchPlaceHolder","title","selectedViewId","onSelectView","allViews","onSearch","needOnTypeSearch","getSearchBoxRef","needViewsList","i18nKeys","palette","dragBoundaryLimit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/TicketHeader/TicketHeader.js","InaccurateProps":[]},"Title":{"props":["text","palette","isBold"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/Title/Title.js","InaccurateProps":[]},"Button":{"props":["palette","text","onClick","id"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Button/Button.js","InaccurateProps":[]},"header-Link":{"props":["url","text","iconName","iconClass","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Link/Link.js","InaccurateProps":[]},"header-Search":{"props":["value","onFocus","onBlur","placeHolder","maxLength","onChange","onKeyPress","customClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Search/Search.js","InaccurateProps":[]},"Views":{"props":["isGrid","isList","gridTitle","listTitle","onListClick","onGridClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Views/Views.js","InaccurateProps":[]},"Description":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/Description/Description.js","InaccurateProps":[]},"helptips-Link":{"props":["text","url","onClick","isDangerous"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/Link/Link.js","InaccurateProps":[]},"ListGroup":{"props":["isOrder","data"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/ListGroup/ListGroup.js","InaccurateProps":[]},"helptips-Title":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/Title/Title.js","InaccurateProps":[]},"Table":{"props":["children","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/Table/Table.js","InaccurateProps":[]},"TableBody":{"props":["children","eleRef","onScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableBody/TableBody.js","InaccurateProps":[]},"TableData":{"props":["children","flexible","shrink","align","type","dataId","customClass","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableData/TableData.js","InaccurateProps":[]},"TableHead":{"props":["children","className","onMouseEnter","onMouseLeave","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableHead/TableHead.js","InaccurateProps":[]},"TableRow":{"props":["children","eleRef","eleStyle","className","dataId","onMouseEnter","onMouseLeave","onClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableRow/TableRow.js","InaccurateProps":[]},"Text":{"props":["text","url","onClick","type","palette","className","size","dataId","title","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/Text/Text.js","InaccurateProps":[]},"src-PlusIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/svg/PlusIcon.js","InaccurateProps":[]},"SnippetIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/svg/SnippetIcon.js","InaccurateProps":[]},"TemplateIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/svg/TemplateIcon.js","InaccurateProps":[]},"v1-ActionButtonComponent":{"props":["isLoading","onClick","size","dataId","dataSelectorId","isArrow","text","subText","arrowBoxSize","palette","onHover","position","className","iconName","iconSize","dataTitle","isDisabled","isPopupOpen","removeClose","children","dropBoxClass","isBoxPaddingNeed","getContainerRef","getTargetRef","removeChildrenTooltip","innerClassName","popupGroup","togglePopup","defaultPosition","openPopupOnly"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ActionButton/ActionButton.js","InaccurateProps":[]},"MemoizedAlphabeticList":{"props":["onSelect","selectedCharacter","align","type","i18nKeys","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/AlphabeticList/AlphabeticList.js","InaccurateProps":[]},"v1-Attachment":{"props":["onClick","dataId","size","iconName","fileName","fileSize","downloadLink","palette","tooltip","fileInfo","i18nKeys","dataSelectorId","isDisabled"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Attachment/Attachment.js","InaccurateProps":[]},"v1-AttachmentImage":{"props":["isImage","onLoad","src","onClick","alt","dataId","id","className","isCover"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/AttachmentViewer/AttachmentImage.js","InaccurateProps":[]},"v1-AttachmentViewer":{"props":["previewObj","maintainZoom","hideAttachmentViewer","dataId","responsiveId","needDownload","i18nKeys","isActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/AttachmentViewer/AttachmentViewer.js","InaccurateProps":[]},"v1-ChannelIcon":{"props":["name","action","iconSize","iconTitle","size","topicIcon","topicIconTitle","topicIconSize","topicIconColor","iconClass","dataId","className","palette","textPalette","customTextClass","iconColor","needTopicBorder","topicClass","renderIconOnly","iconName","title","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ChannelIcon/ChannelIcon.js","InaccurateProps":[]},"v1-Drawer":{"innerComponent":{"Header":{"props":["title","onClose","children","className","paddingSize","closeTitle","iconName","iconSize","onIconClick","isIconBold","dataId","flexible","getChildren","iconTitle","isBoxIcon","getTitleChildren"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js","InaccurateProps":[]},"Content":{"props":["children","className","paddingSize","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js","InaccurateProps":[]},"Footer":{"props":["paddingLeftSize","paddingRightClass","children","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js","InaccurateProps":[]},"Drawer":{"props":["children","size","paddingSize","subDrawerActive","subDrawerChildren","onBodyClick","onClose","needFocusScope","customProps","a11y","needFreeze","palette","isActive","forwardRef","responsiveId","subDrawerSize","subDrawerClass","customClass","needAutoZindex","innerPortalName"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js","InaccurateProps":[]}}},"v1-ExternalLink":{"props":["href","title","target","className","children","rel","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ExternalLink/ExternalLink.js","InaccurateProps":[]},"v1-FlipCard":{"props":["id","action","name","initial","isChecked","noNeedFlip","size","channel","isPaidUser","isPortalUser","src","icon","iconSize","iconClass","ticListContainer","ticList","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","iconColor","tourId","isFilledCheckbox","channelTitle","customProps","onChange"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/FlipCard/FlipCard.js","InaccurateProps":[]},"v1-FormAction":{"props":["size","children","paddingLeftSize","paddingRightClass","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/FormAction/FormAction.js","InaccurateProps":[]},"v1-FreezeLayer":{"props":["zIndex","palette","isSvgMask","customClass","isActive","children","align","childAnimationName","onClick","animationName","runOnMount","forwardRef","needAutoZindex","customStyle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/FreezeLayer/FreezeLayer.js","InaccurateProps":[]},"v1-IconButton":{"props":["palette","iconSize","iconName","className","iconClass","dataId","dataSelectorId","eleRef","isActive","tourId","isDisabled","children","hoverType","title","isBold","isNeedEffect","needButtonTag","a11y","dataIsHtml","customProps","onClick","onMouseOver","onMouseDown"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/IconButton/IconButton.js","InaccurateProps":[]},"v1-Image":{"props":["alt","src","className","isCover","title","onClick","dataId","htmlId","eleRef","original"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Image/Image.js","InaccurateProps":[]},"v1-ImportantNotes":{"props":["text","iconName","iconSize","children","iconClass","isCover","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ImportantNotes/ImportantNotes.js","InaccurateProps":[]},"v1-Link":{"props":["children","href","target","urlData","urlName","className","title","download","rel","dataId","customProps","ariaLabel","hasReload","onClick","key"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Link/Link.js","InaccurateProps":[]},"v1-MessageBanner":{"props":["type","message","onClose","href","onClick","urlText","palette","customClass","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/MessageBanner/MessageBanner.js","InaccurateProps":[]},"v1-NewStar":{"props":["palette","customClass","position"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/NewStar/NewStar.js","InaccurateProps":[]},"v1-PlusIcon":{"props":["dataId","iconName","iconClass","iconSize","size","onClick","title","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/PlusIcon/PlusIcon.js","InaccurateProps":[]},"v1-Separator":{"props":["children","type","customSeparatorType","palette","wrap","shrink","aligndirection","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Separator/Separator.js","InaccurateProps":[]},"v1-TagWithIcon":{"props":["text","iconName","iconSize","palette","iconClass","isBold","size","dataId","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/TagWithIcon/TagWithIcon.js","InaccurateProps":[]},"v1-ToastMessage":{"props":["messageState","type","subject","info","submitText","cancelText","iconName","iconSize","submitType","isIconMid","needClose","iconPalette","isMore","message","isAnimate","getLeftContainer","getInnerBottomContainer","getBottomContainer","getSubmitContainer","onSubmit","onCancel","dataId","dataSelectorId","isClose","onClose","needAutoZindex","a11y","Element","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ToastMessage/ToastMessage.js","InaccurateProps":[]},"v1-Upload":{"props":["isPreview","tooltip","dataId","dataSelectorId","progressValue","onClick","iconName","fileSize","imgSrc","isPreviewType","onRemove","size","getRef","palette"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Upload/Upload.js","InaccurateProps":[]},"v1-AutoClose":{"props":["Element","isClose","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/actions/AutoClose.js","InaccurateProps":[]},"MemoizedAlertClose":{"props":["onClose","dataId","dataTitle","type","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/AlertClose/AlertClose.js","InaccurateProps":[]},"alert-AlertHeader":{"props":["children","type","title","needIcon","onClose","closeTitle","breakChildren","dataId","htmlId","customStyle","dragBoundaryLimit","renderAlertIcon"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/AlertHeader/AlertHeader.js","InaccurateProps":[]},"alert-AlertLookup":{"props":["isActive","size","type","title","message","confirmationMessage","submitText","cancelText","onSubmitClick","onCancelClick","children","forwardRef","onClose","headerChildren","wrapHeader","dataId","onLookupClick","customClass","needIcon","a11y","customProps","align","childAnimationName","isHtmlContent","scroll","isDefaultFocus","onEsc","renderAlertIcon"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/AlertLookup/AlertLookup.js","InaccurateProps":[]},"AlarmAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/AlarmAlertIcon.js","InaccurateProps":[]},"AlertIcons":{"props":["type","variant","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/AlertIcons.js","InaccurateProps":[]},"DangerAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/DangerAlertIcon.js","InaccurateProps":[]},"ErrorAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/ErrorAlertIcon.js","InaccurateProps":[]},"InfoAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/InfoAlertIcon.js","InaccurateProps":[]},"NotificationAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/NotificationAlertIcon.js","InaccurateProps":[]},"SuccessAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/SuccessAlertIcon.js","InaccurateProps":[]},"WarningAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/WarningAlertIcon.js","InaccurateProps":[]},"avatar-AvatarClose":{"props":["title","src","name","size","isClose","onClick","customProps","dataSelectorId","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarClose/AvatarClose.js","InaccurateProps":[]},"avatar-AvatarCollision":{"props":["title","src","name","size","onClick","needCreateChat","isLeft","isIdle","initial","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarCollision/AvatarCollision.js","InaccurateProps":[]},"avatar-AvatarIcon":{"props":["name","size","iconSize","iconClass","iconColor","onClick","palette","dataId","className","isIconBold","title","borderOnActive","borderOnHover","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarIcon/AvatarIcon.js","InaccurateProps":[]},"avatar-AvatarStatus":{"props":["src","name","size","onClick","title","state","dataId","initial","shape","needTitle","className","needBorder","palette","textPalette","customTextClass","statusTitle","customProps","dataSelectorId","needDefaultBorder"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarStatus/AvatarStatus.js","InaccurateProps":[]},"avatar-AvatarThread":{"props":["src","name","size","iconColor","iconName","iconSize","borderPalette","onClick","title","iconTitle","onIconClick","showOnHover","dataId","initial","needBorder","needBackground","palette","textPalette","customTextClass","needTitle","customProps","iconClass","getCustomThread","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarThread/AvatarThread.js","InaccurateProps":[]},"avatar-AvatarUser":{"props":["src","alternateSrc","name","size","onClick","onDelete","title","isPaid","isPortal","isLocked","dataId","dataSelectorId","needTitle","needDelete","initial","palette","textPalette","customTextClass","iconName","iconSize","iconClass","iconColor","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarUser/AvatarUser.js","InaccurateProps":[]},"avatar-AvatarWithTeam":{"props":["name","size","src","teamName","isTeam","needTitle","initial","title","palette","textPalette","customTextClass","teamClassName","borderOnActive","customProps","dataSelectorId","teamBorderActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarWithTeam/AvatarWithTeam.js","InaccurateProps":[]},"dropdown-ToggleDropDown_Component":{"props":["options","togglePopup","boxPosition","onSelectLabel","isPopupOpen","removeClose","onClick","preventPopupClose","isPopupReady","isSearch","idName","onDropDownOpen","onDropDownClose","from","keyName","isGroupDropDown","groupOptionsKey","groupNameKey","needSearchFetching","onSearch","isNextOptions","getNextOptions","value","boxSize","title","isArrow","placeHolderText","className","right","left","top","bottom","isPopupActive","needExternalPopupState","position","getTargetRef","getContainerRef","dataId","dataSelectorId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","iconName","iconSize","needTick","dataTitle","isDataLoaded","children","needResponsive","arrowIconPosition","isToggleStateNeeded","selectedId","isPadding","isNeedEffect","hoverType","palette","getFooter","customProps","needMultiLineText","isAbsolutePositioningNeeded","positionsOffset","targetOffset","isRestrictScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/dropdown/ToggleDropDown/ToggleDropDown.js","InaccurateProps":[]},"emptystate-CommonEmptyState":{"props":["title","description","linkDescription","linkUrl","linkText","linkTarget","onUrlClick","getEmptyState","className","dataId","isFluid","children","size","palette","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/emptystate/CommonEmptyState/CommonEmptyState.js","InaccurateProps":[]},"emptystate-EditionPage":{"props":["title","subtitle","information","dataId","footerText","onButtonClick","butttonText","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/emptystate/EditionPage/EditionPage.js","InaccurateProps":[]},"errorstate-Inconvenience":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/Inconvenience/Inconvenience.js","InaccurateProps":[]},"OopsSomethingMiss":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/OopsSomethingMiss/OopsSomethingMiss.js","InaccurateProps":[]},"UnableToProcessRequest":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/UnableToProcessRequest/UnableToProcessRequest.js","InaccurateProps":[]},"errorstate-UnauthorizedLogin":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","buttonPalette","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js","InaccurateProps":[]},"UrlNotFound":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/UrlNotFound/UrlNotFound.js","InaccurateProps":[]},"WillBeRightBack":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/WillBeRightBack/WillBeRightBack.js","InaccurateProps":[]},"MemoizedCheckBoxField":{"props":["labelName","id","isMandatory","validationMessage","validationPalette","isReadOnly","checked","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","infoText","fieldSize","labelPalette","labelCustomClass","direction","lineClamp","isLocked","lockedInfoText","customProps","renderLabelProps","getRef","getContainerRef","onChange"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/CheckBoxField/CheckBoxField.js","InaccurateProps":[]},"MemoizedCurrencyField":{"props":["labelName","id","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","dataId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","dataSelectorId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","userCurrencyType","customProps","formatCurrency","renderLabelProps","onBlur","onFocus","getRef","onChange"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/CurrencyField/CurrencyField.js","InaccurateProps":[]},"MemoizedDateField":{"props":["labelName","isMandatory","isDateTime","validationMessage","validationPalette","textBoxSize","textBoxVariant","isReadOnly","value","errorType","isDisabled","title","popupGroup","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","fieldSize","datePattern","isLocked","lockedInfoText","lockedValueText","labelPalette","labelCustomClass","htmlId","timeZone","i18nKeys","iconOnHover","customProps","renderLabelProps","onChange","id","getRef","openPopupOnMount","isFocusOnLabelClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/DateField/DateField.js","InaccurateProps":[]},"MemoizedFieldContainer":{"props":["children","ePhiData","isLocked","lockedInfoText","infoText","dataId","renderProps","alignContainer","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/FieldContainer/FieldContainer.js","InaccurateProps":[]},"MemoizedMultiSelectField":{"props":["labelName","id","isMandatory","options","selectedOptions","needSelectAll","selectAllText","isAnimate","emptyMessage","size","variant","textBoxSize","animationStyle","validationMessage","validationPalette","isReadOnly","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","placeHolder","fieldSize","valueField","textField","isNextOptions","isSearching","popupGroup","labelPalette","palette","lockedInfoText","isLocked","htmlId","children","customChildrenClass","onFocus","customProps","i18nKeys","renderLabelProps","onChange","onDropBoxOpen","onSearch","getNextOptions","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/MultiSelectField/MultiSelectField.js","InaccurateProps":[]},"MemoizedPhoneField":{"props":["labelName","id","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","maxLength","isReadOnly","value","errorType","isDisabled","title","onBlur","dataId","dataSelectorId","onKeyDown","placeHolder","infoText","isTelephony","providerName","ticketId","contactId","borderColor","fieldSize","labelPalette","labelCustomClass","i18nKeys","onCall","ePhiData","type","onFocus","onChange","getRef","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/PhoneField/PhoneField.js","InaccurateProps":[]},"MemoizedRadioField":{"props":["labelName","id","isMandatory","options","validationMessage","validationPalette","errorType","isDisabled","title","labelPalette","labelSize","size","selectedValue","isActive","getRef","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","isReadOnly","isBoxStyle","variant","customProps","onChange"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/RadioField/RadioField.js","InaccurateProps":[]},"MemoizedSelectField":{"props":["labelName","isMandatory","options","selectedValue","needSearch","emptyMessage","animationStyle","textBoxSize","textBoxVariant","searchBoxSize","searchBoxPlaceHolder","validationMessage","validationPalette","isReadOnly","valueField","textField","excludeOptions","errorType","isDisabled","title","dataId","dataSelectorId","fieldClass","validationRuleMessage","validationRulePalette","onKeyDown","infoText","isLocked","lockedInfoText","borderColor","fieldSize","isNextOptions","getNextOptions","popupGroup","onSearch","labelPalette","labelCustomClass","htmlId","needLocalSearch","isDefaultSelectValue","placeHolder","children","onFocus","iconOnHover","customProps","renderLabelProps","id","onChange","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/SelectField/SelectField.js","InaccurateProps":[]},"fields-TagsMultiSelect":{"props":["getTextInputRef","onScroll","name","noMoreData","searchList","isTagListLoading","tagsList","isPopupReady","selectSearchIndex","deleteTag","isReadOnly","className","handleKeyUp","handleChange","addTag","getContainerRef","getTargetRef","isPopupOpen","boxPosition","handleTogglePopup","listDisabled","chipNeedToShow","i18nKeys","dataId","needBorder","borderColor","getTextBoxChildren","htmlId","boxSize","onSelectTag","clickableTag","dataSelectorId","handleSelectAll","selectAllText","needSelectAll","customClass","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js","InaccurateProps":[]},"fields-TagsMultiSelectField_Component":{"props":["searchValue","fieldProperties","styleProperties","actions","dataId","htmlId","isLoading","isListDisabled","isNewNeeded","isPopupOpen","isPopupReady","removeClose","position","togglePopup","noMoreData","numberOfDisplayedValues","getTargetRef","getContainerRef","i18nKeys","getTextBoxChildren","children","ePhiData","customProps","clickableTag","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js","InaccurateProps":[]},"fields-TextBoxField":{"props":["labelName","id","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","onBlur","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","onFocus","ePhiData","children","customProps","renderLabelProps","onChange","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextBoxField/TextBoxField.js","InaccurateProps":[]},"fields-TextEditor":{"props":["EDITORURL","value","editorMode","editorOptions","needEditorFocus","handleDropUpload","fontFamily","fontSize","initCallback","handleAlertMessage","needInlineAttachment","plainTextSwitchCallback","id","getRef","changeEditorContent","shouldUpdateContent","mode","onFocus","onChange","editorCallback","isCustomScroll","setInlineAttachmentInProgress","i18nKeys","blurCallback","onUpload","getCSRFCookieName","getCSRFCookie","isEditorDefaultOpen","toggleEdit","dataId","type","border","ImgLazyLoad","loadingComponent","isNightMode","isReadOnly","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextEditor/TextEditor.js","InaccurateProps":[]},"fields-TextEditorField":{"props":["labelName","id","isMandatory","value","validationMessage","validationPalette","isReadOnly","onAttachmentUpload","needEditor","dataId","dataSelectorId","isDisabled","fieldSize","textBoxSize","textBoxVariant","labelPalette","labelCustomClass","infoText","isLocked","lockedInfoText","errorType","EDITORURL","editorMode","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","onFocus","isEditorDefaultOpen","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","needInlineAttachment","i18nKeys","className","children","ePhiData","customProps","onChange","getRef","isFocusOnLabelClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextEditorField/TextEditorField.js","InaccurateProps":[]},"fields-TextEditorWrapper":{"props":["id","onChange","value","onAttachmentUpload","needEditor","dataId","isReadOnly","isDisabled","getRef","textBoxSize","textBoxVariant","editorMode","editorSize","editorBorder","EDITORURL","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","i18nKeys","isEditorDefaultOpen","needInlineAttachment","customProps","dataSelectorId","onFocus"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js","InaccurateProps":[]},"fields-TextareaField":{"props":["labelName","id","isMandatory","textBoxSize","animated","textBoxVariant","isReadOnly","validationMessage","validationPalette","maxLength","value","errorType","isDisabled","title","placeHolder","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onFocus","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","customProps","renderLabelProps","onChange","onBlur","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextareaField/TextareaField.js","InaccurateProps":[]},"fields-ValidationMessage":{"props":["palette","text","htmlFor","onClick","type","size","dataId","clipped","a11y","tooltip","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/ValidationMessage/ValidationMessage.js","InaccurateProps":[]},"layout-Field":{"props":["width","children","rowBreak","column","className","containerClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/layout/Field/Field.js","InaccurateProps":[]},"layout-Section":{"props":["title","dataId","containerClass","titleClass","className","column","formName","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/layout/Section/Section.js","InaccurateProps":[]},"layout-SetupDetailLayout":{"innerComponent":{"SetupDetailLayout":{"props":["children","needHelpInfo","getHelpInfo","helpInfoTitle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupHeader":{"props":["title","needBack","onBackClick","openHelpInfo","needHelpInfo","needHelpInfoWrapper","getLeftPlaceHolder","getRightPlaceHolder","leftClassName","rightClassName","isCustomizedHeader","headerCustomStyle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupContent":{"props":["children","needPadding","className","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupFooter":{"props":["children","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]}}},"list-AvatarFlip":{"props":["id","action","name","isChecked","onChange","noNeedFlip","size","onClick","isPaidUser","isPortalUser","channel","src","icon","initial","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","tourId","iconSize","isFilledCheckbox","channelTitle","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/AvatarFlip/AvatarFlip.js","InaccurateProps":[]},"list-BluePrintStatus":{"props":["title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/BluePrintStatus/BluePrintStatus.js","InaccurateProps":[]},"list-Comment":{"props":["count","onClick","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Comment/Comment.js","InaccurateProps":[]},"list-DepartmentDropDown":{"props":["departmentName","departmentList","onSelectLabel","isEditable","dataId","isFetching","isPopupActive","getNextOptions","isNextOptions","onSearch","needSearchFetching","searchStr","i18nKeys","onMoveDepartment","getDepartment"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/DepartmentDropDown/DepartmentDropDown.js","InaccurateProps":[]},"list-Dot":{"props":["className","spacingType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Dot/Dot.js","InaccurateProps":[]},"list-DotNew":{"props":["className","dataTitle","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/DotNew/DotNew.js","InaccurateProps":[]},"list-GridStencils":{"props":["lineBar","from","isThreeLayout","styles","order"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/GridStencils/GridStencils.js","InaccurateProps":[]},"list-AddNewIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/AddNewIcon.js","InaccurateProps":[]},"list-CompleteIcon":{"props":["onClick","dataId","dataTitle","iconClass","className","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/CompleteIcon.js","InaccurateProps":[]},"list-DeleteComponent":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/DeleteIcon.js","InaccurateProps":[]},"list-EditIcon":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/EditIcon.js","InaccurateProps":[]},"list-FloatingIcons":{"props":["children","iconClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/FloatingIcons.js","InaccurateProps":[]},"list-ReadUnreadIcon":{"props":["onClick","dataId","dataTitle","iconClassName","iconClass","className","isRead","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/ReadUnreadIcon.js","InaccurateProps":[]},"list-SmartIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/SmartIcon.js","InaccurateProps":[]},"list-ListStencils":{"props":["listType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/ListStencils/ListStencils.js","InaccurateProps":[]},"list-AccountName":{"props":["dataTitle","dataId","urlName","urlData","onClick","isLink","className","text","href","notAccessible","fontWeight","secondaryAccountHref","secondaryAccountClick","secondaryAccountText","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/AccountName.js","InaccurateProps":[]},"list-ContactName":{"props":["dataTitle","dataId","isPaidUser","urlName","urlData","onClick","sentimentType","isLink","className","text","href","notAccessible","fontWeight","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/ContactName.js","InaccurateProps":[]},"list-DepartmentText":{"props":["className","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/DepartmentText.js","InaccurateProps":[]},"list-Email":{"props":["text","urlData","urlName","className","title","href","isLink","target","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/Email.js","InaccurateProps":[]},"list-HappinessRating":{"props":["text","className","src"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/HappinessRating.js","InaccurateProps":[]},"list-PhoneNumber":{"props":["text","urlData","urlName","className","title","href","dataId","isLink","target","hasReload","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/PhoneNumber.js","InaccurateProps":[]},"list-PriorityText":{"props":["className","color","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/PriorityText.js","InaccurateProps":[]},"list-SecondaryText":{"props":["className","text","dataTitle","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/SecondaryText.js","InaccurateProps":[]},"list-StatusText":{"props":["className","color","text","dataTitle","fontWeight","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/StatusText.js","InaccurateProps":[]},"list-TicketId":{"props":["text","className","dataId","isLink","dataTitle","onClick","url","target","urlName","urlData","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/TicketId.js","InaccurateProps":[]},"list-Website":{"props":["text","className","title","href","dataId","isLink","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/Website.js","InaccurateProps":[]},"list-SecondryPanel":{"innerComponent":{"SecondryPanel":{"props":["children","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelUL":{"props":["children","className","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelLI":{"props":["children","className","isShrink","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelItem":{"props":["children","className","dotClass","isDot","flex","clipped","dotSpacingType","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]}}},"list-SentimentStatus":{"props":["type","dataTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SentimentStatus/SentimentStatus.js","InaccurateProps":[]},"list-Subject":{"props":["text","dataId","urlName","href","urlData","onClick","isLink","target","fontWeight","className","isDotted","children","customProps","whiteSpace"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Subject/Subject.js","InaccurateProps":[]},"list-TagNew":{"props":["className","text","animate","onClick","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/TagNew/TagNew.js","InaccurateProps":[]},"list-Thread":{"props":["count","className","iconTitle","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Thread/Thread.js","InaccurateProps":[]},"status-StatusDropdown_Component":{"props":["value","removeClose","boxSize","keyName","idName","title","isSearch","isArrow","placeHolderText","className","right","left","top","bottom","isPopupOpen","isPopupReady","position","getTargetRef","getContainerRef","dataId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","needTick","dataTitle","isDataLoaded","children","targetAlign","needResponsive","arrowIconPosition","statusColor","needExternalPopupState","isPopupActive","needMultiLineText","boxPosition","togglePopup","onTogglePopup","onClick","onSelectLabel","isFetchingOptions","getNextOptions","options","a11y"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/status/StatusDropdown/StatusDropdown.js","InaccurateProps":[]},"status-StatusListItem":{"props":["size","active","highlight","value","autoHover","palette","title","disableTitle","needTick","isLink","href","target","needBorder","isDisabled","bulletColor","a11y","needMultiLineText","index","getRef","id","onClick","onMouseEnter","customClass","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/status/StatusListItem/StatusListItem.js","InaccurateProps":[]},"lookup-EmptyPage":{"props":["type","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/EmptyPage/EmptyPage.js","InaccurateProps":[]},"lookup-Lookup":{"props":["isActive","children","size","dataId","forwardRef","onClick","customClass","htmlId","a11y","childAnimationName","onClose","needFocusScope","customProps","onKeyDown","isMinHeight","lookupClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/Lookup/Lookup.js","InaccurateProps":[]},"v1-lookup-Section":{"props":["alignBox","className","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/Section/Section.js","InaccurateProps":[]},"MemoizedClose":{"props":["onClose","dataId","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/Close/Close.js","InaccurateProps":[]},"header-MemoizedModuleHeader":{"props":["title","needSearch","onLookupClose","searchStr","onSearch","onSearchChange","searchPlaceHolder","needOnTypeSearch","getSearchBoxRef","miniDescription","dataId","closeTitle","onSearchKeyDown","palette","dragBoundaryLimit","children","childNearTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/ModuleHeader/ModuleHeader.js","InaccurateProps":[]},"lookup-header-Search":{"props":["options","onSelect","value","selectedId","onFocus","onBlur","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/Search/Search.js","InaccurateProps":[]},"header-MemoizedTicketHeader":{"props":["needSearch","onLookupClose","searchStr","onSearchChange","searchPlaceHolder","title","selectedViewId","onSelectView","allViews","onSearch","needOnTypeSearch","getSearchBoxRef","needViewsList","i18nKeys","palette","dragBoundaryLimit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/TicketHeader/TicketHeader.js","InaccurateProps":[]},"MemoizedTitle":{"props":["text","palette","isBold"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/Title/Title.js","InaccurateProps":[]},"DesktopNotificationHeader":{"props":["onClose","closeTitle","dataId","variant","type","needIcon","title","renderAlertIcon","needClose","responsiveId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js","InaccurateProps":[]},"header-Button":{"props":["palette","text","onClick","id"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Button/Button.js","InaccurateProps":[]},"setup-header-Link":{"props":["url","text","iconName","iconClass","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Link/Link.js","InaccurateProps":[]},"setup-header-Search":{"props":["placeHolder","maxLength","value","onChange","onKeyPress","onFocus","onBlur","customClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Search/Search.js","InaccurateProps":[]},"header-Views":{"props":["isGrid","isList","gridTitle","listTitle","onListClick","onGridClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Views/Views.js","InaccurateProps":[]},"helptips-Description":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/Description/Description.js","InaccurateProps":[]},"setup-helptips-Link":{"props":["text","url","onClick","isDangerous"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/Link/Link.js","InaccurateProps":[]},"helptips-ListGroup":{"props":["isOrder","data"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/ListGroup/ListGroup.js","InaccurateProps":[]},"setup-helptips-Title":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/Title/Title.js","InaccurateProps":[]},"table-Table":{"props":["children","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/Table/Table.js","InaccurateProps":[]},"table-TableBody":{"props":["children","eleRef","onScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableBody/TableBody.js","InaccurateProps":[]},"table-TableData":{"props":["children","flexible","shrink","align","type","dataId","customClass","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableData/TableData.js","InaccurateProps":[]},"table-TableHead":{"props":["children","className","onMouseEnter","onMouseLeave","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableHead/TableHead.js","InaccurateProps":[]},"table-TableRow":{"props":["children","eleRef","eleStyle","className","dataId","onMouseEnter","onMouseLeave","onClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableRow/TableRow.js","InaccurateProps":[]},"table-Text":{"props":["text","url","onClick","type","palette","className","size","dataId","title","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/Text/Text.js","InaccurateProps":[]},"src-v1-PlusIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/svg/PlusIcon.js","InaccurateProps":[]},"v1-SnippetIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/svg/SnippetIcon.js","InaccurateProps":[]},"v1-TemplateIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/svg/TemplateIcon.js","InaccurateProps":[]},"AlertClose":{"props":["onClose","dataId","dataTitle","type","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/AlertClose/AlertClose.js","InaccurateProps":[]},"version2-AlarmAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/AlarmAlertIcon.js","InaccurateProps":[]},"version2-AlertIcons":{"props":["type","variant","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/AlertIcons.js","InaccurateProps":[]},"version2-DangerAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/DangerAlertIcon.js","InaccurateProps":[]},"version2-ErrorAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/ErrorAlertIcon.js","InaccurateProps":[]},"version2-InfoAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/InfoAlertIcon.js","InaccurateProps":[]},"version2-NotificationAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/NotificationAlertIcon.js","InaccurateProps":[]},"version2-SuccessAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/SuccessAlertIcon.js","InaccurateProps":[]},"version2-WarningAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/WarningAlertIcon.js","InaccurateProps":[]},"version2-errorstate-Inconvenience":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/Inconvenience/Inconvenience.js","InaccurateProps":[]},"errorstate-OopsSomethingMiss":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js","InaccurateProps":[]},"errorstate-UnableToProcessRequest":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js","InaccurateProps":[]},"version2-errorstate-UnauthorizedLogin":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","buttonPalette","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js","InaccurateProps":[]},"errorstate-UrlNotFound":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/UrlNotFound/UrlNotFound.js","InaccurateProps":[]},"errorstate-WillBeRightBack":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/WillBeRightBack/WillBeRightBack.js","InaccurateProps":[]},"lookup-AlertHeader":{"props":["children","type","title","needIcon","onClose","closeTitle","breakChildren","dataId","htmlId","customStyle","dragBoundaryLimit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/lookup/AlertHeader/AlertHeader.js","InaccurateProps":[]},"lookup-AlertLookup":{"props":["isActive","size","type","title","message","confirmationMessage","submitText","cancelText","onSubmitClick","onCancelClick","children","forwardRef","onClose","headerChildren","wrapHeader","dataId","onLookupClick","customClass","needIcon","a11y","customProps","align","childAnimationName","isHtmlContent","scroll","isDefaultFocus","onEsc"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/lookup/AlertLookup/AlertLookup.js","InaccurateProps":[]},"notification-DesktopNotificationHeader":{"props":["onClose","closeTitle","dataId","variant","type","needIcon","title","needClose","responsiveId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js","InaccurateProps":[]}};
71
+ const jsonData = {"ActionButtonComponent":{"props":["openPopupOnly","defaultPosition","togglePopup","isLoading","onClick","size","dataId","dataSelectorId","isArrow","text","subText","arrowBoxSize","palette","onHover","position","className","iconName","iconSize","dataTitle","isDisabled","isPopupOpen","removeClose","children","dropBoxClass","isBoxPaddingNeed","getContainerRef","getTargetRef","removeChildrenTooltip","innerClassName","popupGroup","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ActionButton/ActionButton.js","InaccurateProps":[]},"AlphabeticList":{"props":["onSelect","selectedCharacter","align","type","i18nKeys","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/AlphabeticList/AlphabeticList.js","InaccurateProps":[]},"Attachment":{"props":["onClick","dataId","size","iconName","fileName","fileSize","downloadLink","palette","tooltip","fileInfo","i18nKeys","dataSelectorId","isDisabled"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Attachment/Attachment.js","InaccurateProps":[]},"AttachmentImage":{"props":["isImage","onLoad","src","onClick","alt","dataId","id","className","isCover"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/AttachmentViewer/AttachmentImage.js","InaccurateProps":[]},"AttachmentViewer":{"props":["previewObj","maintainZoom","hideAttachmentViewer","dataId","responsiveId","needDownload","i18nKeys","isActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/AttachmentViewer/AttachmentViewer.js","InaccurateProps":[]},"ChannelIcon":{"props":["name","action","iconSize","iconTitle","size","topicIcon","topicIconTitle","topicIconSize","topicIconColor","iconClass","dataId","className","palette","textPalette","customTextClass","iconColor","needTopicBorder","topicClass","renderIconOnly","iconName","title","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ChannelIcon/ChannelIcon.js","InaccurateProps":[]},"Drawer":{"innerComponent":{"Header":{"props":["title","onClose","children","className","paddingSize","closeTitle","iconName","iconSize","onIconClick","isIconBold","dataId","flexible","getChildren","iconTitle","isBoxIcon","getTitleChildren"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js","InaccurateProps":[]},"Content":{"props":["children","className","paddingSize","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js","InaccurateProps":[]},"Footer":{"props":["paddingLeftSize","paddingRightClass","children","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js","InaccurateProps":[]},"Drawer":{"props":["children","size","paddingSize","subDrawerActive","subDrawerChildren","onBodyClick","onClose","needFocusScope","customProps","a11y","needFreeze","palette","isActive","forwardRef","responsiveId","subDrawerSize","subDrawerClass","customClass","needAutoZindex","innerPortalName"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js","InaccurateProps":[]}}},"ExternalLink":{"props":["href","title","target","className","children","rel","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ExternalLink/ExternalLink.js","InaccurateProps":[]},"FlipCard":{"props":["noNeedFlip","onChange","id","action","name","initial","isChecked","size","channel","isPaidUser","isPortalUser","src","icon","iconSize","iconClass","ticListContainer","ticList","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","iconColor","tourId","isFilledCheckbox","channelTitle","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/FlipCard/FlipCard.js","InaccurateProps":[]},"FormAction":{"props":["size","children","paddingLeftSize","paddingRightClass","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/FormAction/FormAction.js","InaccurateProps":[]},"FreezeLayer":{"props":["zIndex","palette","isSvgMask","customClass","isActive","children","align","childAnimationName","onClick","animationName","runOnMount","forwardRef","needAutoZindex","customStyle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/FreezeLayer/FreezeLayer.js","InaccurateProps":[]},"IconButton":{"props":["onClick","isDisabled","onMouseOver","onMouseDown","palette","iconSize","iconName","className","iconClass","dataId","dataSelectorId","eleRef","isActive","tourId","children","hoverType","title","isBold","isNeedEffect","needButtonTag","a11y","dataIsHtml","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/IconButton/IconButton.js","InaccurateProps":[]},"Image":{"props":["alt","src","className","isCover","title","onClick","dataId","htmlId","eleRef","original"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Image/Image.js","InaccurateProps":[]},"ImportantNotes":{"props":["text","iconName","iconSize","children","iconClass","isCover","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ImportantNotes/ImportantNotes.js","InaccurateProps":[]},"Link":{"props":["onClick","hasReload","target","children","href","urlData","urlName","className","title","download","rel","dataId","customProps","ariaLabel","key"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Link/Link.js","InaccurateProps":[]},"MessageBanner":{"props":["type","message","onClose","href","onClick","urlText","palette","customClass","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/MessageBanner/MessageBanner.js","InaccurateProps":[]},"NewStar":{"props":["palette","customClass","position"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/NewStar/NewStar.js","InaccurateProps":[]},"PlusIcon":{"props":["dataId","iconName","iconClass","iconSize","size","onClick","title","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/PlusIcon/PlusIcon.js","InaccurateProps":[]},"Separator":{"props":["children","type","customSeparatorType","palette","wrap","shrink","aligndirection","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Separator/Separator.js","InaccurateProps":[]},"TagWithIcon":{"props":["text","iconName","iconSize","palette","iconClass","isBold","size","dataId","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/TagWithIcon/TagWithIcon.js","InaccurateProps":[]},"ToastMessage":{"props":["messageState","type","subject","info","submitText","cancelText","iconName","iconSize","submitType","isIconMid","needClose","iconPalette","isMore","message","isAnimate","getLeftContainer","getInnerBottomContainer","getBottomContainer","getSubmitContainer","onSubmit","onCancel","dataId","dataSelectorId","isClose","onClose","needAutoZindex","a11y","Element","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ToastMessage/ToastMessage.js","InaccurateProps":[]},"Upload":{"props":["isPreview","tooltip","dataId","dataSelectorId","progressValue","onClick","iconName","fileSize","imgSrc","isPreviewType","onRemove","size","getRef","palette"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Upload/Upload.js","InaccurateProps":[]},"AutoClose":{"props":["Element","isClose","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/actions/AutoClose.js","InaccurateProps":[]},"AlertHeader":{"props":["title","palette","needIcon","iconType","onClose","iconName","iconSize","closeTitle","children","breakChildren","dataId","iconClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/alert/AlertHeader/AlertHeader.js","InaccurateProps":[]},"AlertLookup":{"props":["isActive","palette","size","type","title","message","confirmationMessage","submitText","cancelText","onSubmitClick","onCancelClick","children","forwardRef","onClose","headerChildren","wrapHeader","sectionClassName","dataId","onLookupClick","customClass","needIcon","iconName","iconClass","iconSize","customProps","isHtmlContent","onEsc"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/alert/AlertLookup/AlertLookup.js","InaccurateProps":[]},"AvatarClose":{"props":["title","src","name","size","isClose","onClick","customProps","dataSelectorId","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarClose/AvatarClose.js","InaccurateProps":[]},"AvatarCollision":{"props":["title","src","name","size","onClick","needCreateChat","isLeft","isIdle","initial","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarCollision/AvatarCollision.js","InaccurateProps":[]},"AvatarIcon":{"props":["name","size","iconSize","iconClass","iconColor","onClick","palette","dataId","className","isIconBold","title","borderOnActive","borderOnHover","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarIcon/AvatarIcon.js","InaccurateProps":[]},"AvatarStatus":{"props":["src","name","size","onClick","title","state","dataId","initial","shape","needTitle","className","needBorder","palette","textPalette","customTextClass","statusTitle","customProps","dataSelectorId","needDefaultBorder"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarStatus/AvatarStatus.js","InaccurateProps":[]},"AvatarThread":{"props":["src","name","size","iconColor","iconName","iconSize","borderPalette","onClick","title","iconTitle","onIconClick","showOnHover","dataId","initial","needBorder","needBackground","palette","textPalette","customTextClass","needTitle","customProps","iconClass","getCustomThread","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarThread/AvatarThread.js","InaccurateProps":[]},"AvatarUser":{"props":["src","alternateSrc","name","size","onClick","onDelete","title","isPaid","isPortal","isLocked","dataId","dataSelectorId","needTitle","needDelete","initial","palette","textPalette","customTextClass","iconName","iconSize","iconClass","iconColor","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarUser/AvatarUser.js","InaccurateProps":[]},"AvatarWithTeam":{"props":["name","size","src","teamName","isTeam","needTitle","initial","title","palette","textPalette","customTextClass","teamClassName","borderOnActive","customProps","dataSelectorId","teamBorderActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarWithTeam/AvatarWithTeam.js","InaccurateProps":[]},"deprecated-FreezeLayer":{"props":["isActive","children","align","childAnimationName","palette","onClick","animationName","zIndex","runOnMount","forwardRef","isSvgMask","customClass","needAutoZindex"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/deprecated/FreezeLayer/FreezeLayer.js","InaccurateProps":[]},"SelectDropdown":{"props":["onClick","togglePopup","title","selectedText","isPopupOpen","isPopupReady","getTargetRef","getContainerRef","removeClose","suggestions","selectedId","isSearchRequired"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":true,"FilePath":"src/deprecated/SelectDropdown/SelectDropdown.js","InaccurateProps":[]},"ToggleDropDown_Component":{"props":["options","togglePopup","boxPosition","onSelectLabel","isPopupOpen","removeClose","onClick","preventPopupClose","isPopupReady","isSearch","idName","onDropDownOpen","onDropDownClose","from","keyName","isGroupDropDown","groupOptionsKey","groupNameKey","needSearchFetching","onSearch","isNextOptions","getNextOptions","value","boxSize","title","isArrow","placeHolderText","className","right","left","top","bottom","isPopupActive","needExternalPopupState","position","getTargetRef","getContainerRef","dataId","dataSelectorId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","iconName","iconSize","needTick","dataTitle","isDataLoaded","children","needResponsive","arrowIconPosition","isToggleStateNeeded","selectedId","isPadding","isNeedEffect","hoverType","palette","getFooter","customProps","needMultiLineText","isAbsolutePositioningNeeded","positionsOffset","targetOffset","isRestrictScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/dropdown/ToggleDropDown/ToggleDropDown.js","InaccurateProps":[]},"CommonEmptyState":{"props":["title","description","linkDescription","linkUrl","linkText","linkTarget","onUrlClick","getEmptyState","className","dataId","isFluid","children","size","palette","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/emptystate/CommonEmptyState/CommonEmptyState.js","InaccurateProps":[]},"EditionPage":{"props":["title","subtitle","information","dataId","footerText","onButtonClick","butttonText","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/emptystate/EditionPage/EditionPage.js","InaccurateProps":[]},"Inconvenience":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/Inconvenience/Inconvenience.js","InaccurateProps":[]},"LinkText":{"props":["text","href","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/LinkText/LinkText.js","InaccurateProps":[]},"NoRequestFound":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/NoRequestFound/NoRequestFound.js","InaccurateProps":[]},"PermissionPlay":{"props":["subtitle","title","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/PermissionPlay/PermissionPlay.js","InaccurateProps":[]},"RequestUrlNotFound":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/RequestUrlNotFound/RequestUrlNotFound.js","InaccurateProps":[]},"UnableToProcess":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/UnableToProcess/UnableToProcess.js","InaccurateProps":[]},"UnauthorizedLogin":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/UnauthorizedLogin/UnauthorizedLogin.js","InaccurateProps":[]},"WillBack":{"props":["dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/WillBack/WillBack.js","InaccurateProps":[]},"CheckBoxField":{"props":["id","onChange","getRef","checked","labelName","isMandatory","validationMessage","validationPalette","isReadOnly","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","getContainerRef","infoText","fieldSize","labelPalette","labelCustomClass","direction","lineClamp","isLocked","lockedInfoText","customProps","renderLabelProps","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/CheckBoxField/CheckBoxField.js","InaccurateProps":[]},"CurrencyField":{"props":["id","onChange","getRef","onFocus","onBlur","labelName","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","dataId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","dataSelectorId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","userCurrencyType","customProps","formatCurrency","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/CurrencyField/CurrencyField.js","InaccurateProps":[]},"DateField":{"props":["id","onChange","getRef","openPopupOnMount","isFocusOnLabelClick","labelName","isMandatory","isDateTime","validationMessage","validationPalette","textBoxSize","textBoxVariant","isReadOnly","value","errorType","isDisabled","title","popupGroup","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","fieldSize","datePattern","isLocked","lockedInfoText","lockedValueText","labelPalette","labelCustomClass","htmlId","timeZone","i18nKeys","iconOnHover","customProps","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/DateField/DateField.js","InaccurateProps":[]},"FieldContainer":{"props":["children","ePhiData","isLocked","lockedInfoText","infoText","dataId","renderProps","alignContainer","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/FieldContainer/FieldContainer.js","InaccurateProps":[]},"MultiSelectField":{"props":["id","onChange","onDropBoxOpen","onSearch","getNextOptions","getRef","labelName","isMandatory","options","selectedOptions","needSelectAll","selectAllText","isAnimate","emptyMessage","size","variant","textBoxSize","animationStyle","validationMessage","validationPalette","isReadOnly","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","placeHolder","fieldSize","valueField","textField","isNextOptions","isSearching","popupGroup","labelPalette","palette","lockedInfoText","isLocked","htmlId","children","customChildrenClass","onFocus","customProps","i18nKeys","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/MultiSelectField/MultiSelectField.js","InaccurateProps":[]},"PhoneField":{"props":["onChange","getRef","id","onFocus","onBlur","labelName","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","maxLength","isReadOnly","value","errorType","isDisabled","title","dataId","dataSelectorId","onKeyDown","placeHolder","infoText","isTelephony","providerName","ticketId","contactId","borderColor","fieldSize","labelPalette","labelCustomClass","i18nKeys","onCall","ePhiData","type","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/PhoneField/PhoneField.js","InaccurateProps":[]},"RadioField":{"props":["id","onChange","labelName","isMandatory","options","validationMessage","validationPalette","errorType","isDisabled","title","labelPalette","labelSize","size","selectedValue","isActive","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","isReadOnly","variant","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/RadioField/RadioField.js","InaccurateProps":[]},"SelectField":{"props":["id","onChange","selectedValue","getRef","labelName","isMandatory","options","needSearch","emptyMessage","animationStyle","textBoxSize","textBoxVariant","searchBoxSize","searchBoxPlaceHolder","validationMessage","validationPalette","isReadOnly","valueField","textField","excludeOptions","errorType","isDisabled","title","dataId","dataSelectorId","fieldClass","validationRuleMessage","validationRulePalette","onKeyDown","infoText","isLocked","lockedInfoText","borderColor","fieldSize","isNextOptions","getNextOptions","popupGroup","onSearch","labelPalette","labelCustomClass","htmlId","needLocalSearch","isDefaultSelectValue","placeHolder","children","onFocus","iconOnHover","customProps","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/SelectField/SelectField.js","InaccurateProps":[]},"TagsMultiSelect":{"props":["getTextInputRef","onScroll","name","noMoreData","searchList","isTagListLoading","tagsList","isPopupReady","selectSearchIndex","deleteTag","isReadOnly","className","handleKeyUp","handleChange","addTag","getContainerRef","getTargetRef","isPopupOpen","boxPosition","handleTogglePopup","listDisabled","chipNeedToShow","i18nKeys","dataId","needBorder","borderColor","getTextBoxChildren","htmlId","boxSize","onSelectTag","clickableTag","dataSelectorId","handleSelectAll","selectAllText","needSelectAll","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset","customClass","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TagsMultiSelect/TagsMultiSelect.js","InaccurateProps":[]},"TagsMultiSelectField_Component":{"props":["searchValue","fieldProperties","styleProperties","actions","dataId","htmlId","isLoading","isListDisabled","isNewNeeded","isPopupOpen","isPopupReady","removeClose","position","togglePopup","noMoreData","numberOfDisplayedValues","getTargetRef","getContainerRef","i18nKeys","getTextBoxChildren","children","ePhiData","customProps","clickableTag","dataSelectorId","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TagsMultiSelectField/TagsMultiSelectField.js","InaccurateProps":[]},"TextBoxField":{"props":["id","onChange","getRef","labelName","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","onBlur","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","onFocus","ePhiData","children","customProps","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextBoxField/TextBoxField.js","InaccurateProps":[]},"TextEditor":{"props":["EDITORURL","value","editorMode","editorOptions","needEditorFocus","handleDropUpload","fontFamily","fontSize","initCallback","handleAlertMessage","needInlineAttachment","plainTextSwitchCallback","id","getRef","changeEditorContent","shouldUpdateContent","mode","onFocus","onChange","editorCallback","isCustomScroll","setInlineAttachmentInProgress","i18nKeys","blurCallback","onUpload","getCSRFCookieName","getCSRFCookie","isEditorDefaultOpen","toggleEdit","dataId","type","border","ImgLazyLoad","loadingComponent","isNightMode","isReadOnly","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextEditor/TextEditor.js","InaccurateProps":[]},"TextEditorField":{"props":["id","onChange","getRef","isFocusOnLabelClick","isDisabled","isReadOnly","children","labelName","isMandatory","value","validationMessage","validationPalette","onAttachmentUpload","needEditor","dataId","dataSelectorId","fieldSize","textBoxSize","textBoxVariant","labelPalette","labelCustomClass","infoText","isLocked","lockedInfoText","errorType","EDITORURL","editorMode","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","onFocus","isEditorDefaultOpen","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","needInlineAttachment","i18nKeys","className","ePhiData","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextEditorField/TextEditorField.js","InaccurateProps":[]},"TextEditorWrapper":{"props":["value","isEditorDefaultOpen","isReadOnly","isDisabled","id","onFocus","onChange","onAttachmentUpload","needEditor","dataId","getRef","textBoxSize","textBoxVariant","editorMode","editorSize","editorBorder","EDITORURL","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","i18nKeys","needInlineAttachment","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextEditorWrapper/TextEditorWrapper.js","InaccurateProps":[]},"TextareaField":{"props":["id","onChange","onBlur","getRef","labelName","isMandatory","textBoxSize","animated","textBoxVariant","isReadOnly","validationMessage","validationPalette","maxLength","value","errorType","isDisabled","title","placeHolder","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onFocus","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","customProps","renderLabelProps","renderRightPlaceholderNode","rightPlaceholderCustomClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextareaField/TextareaField.js","InaccurateProps":[]},"ValidationMessage":{"props":["palette","text","htmlFor","onClick","type","size","dataId","clipped","a11y","tooltip","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/ValidationMessage/ValidationMessage.js","InaccurateProps":[]},"Field":{"props":["width","children","rowBreak","column","className","containerClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/layout/Field/Field.js","InaccurateProps":[]},"Section":{"props":["title","dataId","containerClass","titleClass","className","column","formName","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/layout/Section/Section.js","InaccurateProps":[]},"SetupDetailLayout":{"innerComponent":{"SetupDetailLayout":{"props":["children","needHelpInfo","getHelpInfo","helpInfoTitle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupHeader":{"props":["title","needBack","onBackClick","openHelpInfo","needHelpInfo","needHelpInfoWrapper","getLeftPlaceHolder","getRightPlaceHolder","leftClassName","rightClassName","isCustomizedHeader","headerCustomStyle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupContent":{"props":["children","needPadding","className","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupFooter":{"props":["children","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]}}},"AvatarFlip":{"props":["id","action","name","isChecked","onChange","noNeedFlip","size","onClick","isPaidUser","isPortalUser","channel","src","icon","initial","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","tourId","iconSize","isFilledCheckbox","channelTitle","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/AvatarFlip/AvatarFlip.js","InaccurateProps":[]},"BluePrintStatus":{"props":["title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/BluePrintStatus/BluePrintStatus.js","InaccurateProps":[]},"Comment":{"props":["count","onClick","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Comment/Comment.js","InaccurateProps":[]},"DepartmentDropDown":{"props":["getDepartment","onSearch","onMoveDepartment","departmentName","departmentList","onSelectLabel","isEditable","dataId","isFetching","isPopupActive","getNextOptions","isNextOptions","needSearchFetching","searchStr","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/DepartmentDropDown/DepartmentDropDown.js","InaccurateProps":[]},"Dot":{"props":["className","spacingType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Dot/Dot.js","InaccurateProps":[]},"DotNew":{"props":["className","dataTitle","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/DotNew/DotNew.js","InaccurateProps":[]},"GridStencils":{"props":["lineBar","from","isThreeLayout","styles","order"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/GridStencils/GridStencils.js","InaccurateProps":[]},"AddNewIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/AddNewIcon.js","InaccurateProps":[]},"CompleteIcon":{"props":["onClick","dataId","dataTitle","iconClass","className","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/CompleteIcon.js","InaccurateProps":[]},"DeleteComponent":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/DeleteIcon.js","InaccurateProps":[]},"EditIcon":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/EditIcon.js","InaccurateProps":[]},"FloatingIcons":{"props":["children","iconClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/FloatingIcons.js","InaccurateProps":[]},"ReadUnreadIcon":{"props":["onClick","dataId","dataTitle","iconClassName","iconClass","className","isRead","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/ReadUnreadIcon.js","InaccurateProps":[]},"SmartIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/SmartIcon.js","InaccurateProps":[]},"ListStencils":{"props":["listType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/ListStencils/ListStencils.js","InaccurateProps":[]},"AccountName":{"props":["dataTitle","dataId","urlName","urlData","onClick","isLink","className","text","href","notAccessible","fontWeight","secondaryAccountHref","secondaryAccountClick","secondaryAccountText","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/AccountName.js","InaccurateProps":[]},"ContactName":{"props":["dataTitle","dataId","isPaidUser","urlName","urlData","onClick","sentimentType","isLink","className","text","href","notAccessible","fontWeight","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/ContactName.js","InaccurateProps":[]},"DepartmentText":{"props":["className","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/DepartmentText.js","InaccurateProps":[]},"Email":{"props":["text","urlData","urlName","className","title","href","isLink","target","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/Email.js","InaccurateProps":[]},"HappinessRating":{"props":["text","className","src"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/HappinessRating.js","InaccurateProps":[]},"PhoneNumber":{"props":["text","urlData","urlName","className","title","href","dataId","isLink","target","hasReload","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/PhoneNumber.js","InaccurateProps":[]},"PriorityText":{"props":["className","color","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/PriorityText.js","InaccurateProps":[]},"SecondaryText":{"props":["className","text","dataTitle","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/SecondaryText.js","InaccurateProps":[]},"StatusText":{"props":["className","color","text","dataTitle","fontWeight","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/StatusText.js","InaccurateProps":[]},"TicketId":{"props":["text","className","dataId","isLink","dataTitle","onClick","url","target","urlName","urlData","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/TicketId.js","InaccurateProps":[]},"Website":{"props":["text","className","title","href","dataId","isLink","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/Website.js","InaccurateProps":[]},"SecondryPanel":{"innerComponent":{"SecondryPanel":{"props":["children","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelUL":{"props":["children","className","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelLI":{"props":["children","className","isShrink","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelItem":{"props":["children","className","dotClass","isDot","flex","clipped","dotSpacingType","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]}}},"SentimentStatus":{"props":["type","dataTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SentimentStatus/SentimentStatus.js","InaccurateProps":[]},"Subject":{"props":["text","dataId","urlName","href","urlData","onClick","isLink","target","fontWeight","className","isDotted","children","customProps","whiteSpace"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Subject/Subject.js","InaccurateProps":[]},"TagNew":{"props":["className","text","animate","onClick","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/TagNew/TagNew.js","InaccurateProps":[]},"Thread":{"props":["count","className","iconTitle","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Thread/Thread.js","InaccurateProps":[]},"StatusDropdown_Component":{"props":["options","togglePopup","boxPosition","onSelectLabel","isPopupOpen","onTogglePopup","onClick","keyName","getNextOptions","value","removeClose","boxSize","idName","title","isSearch","isArrow","placeHolderText","className","right","left","top","bottom","isPopupReady","position","getTargetRef","getContainerRef","dataId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","needTick","dataTitle","isDataLoaded","children","targetAlign","needResponsive","arrowIconPosition","statusColor","needExternalPopupState","isPopupActive","needMultiLineText","isFetchingOptions","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset","a11y"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/status/StatusDropdown/StatusDropdown.js","InaccurateProps":[]},"StatusListItem":{"props":["index","getRef","id","onClick","value","onMouseEnter","size","active","highlight","autoHover","palette","title","disableTitle","needTick","isLink","href","target","needBorder","isDisabled","bulletColor","a11y","needMultiLineText","customClass","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/status/StatusListItem/StatusListItem.js","InaccurateProps":[]},"EmptyPage":{"props":["type","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/EmptyPage/EmptyPage.js","InaccurateProps":[]},"Lookup":{"props":["isActive","onKeyDown","children","size","dataId","forwardRef","onClick","customClass","htmlId","a11y","childAnimationName","onClose","needFocusScope","customProps","isMinHeight","lookupClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/Lookup/Lookup.js","InaccurateProps":[]},"lookup-Section":{"props":["alignBox","className","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/Section/Section.js","InaccurateProps":[]},"Close":{"props":["onClose","dataId","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/Close/Close.js","InaccurateProps":[]},"MemoizedModuleHeader":{"props":["title","needSearch","onLookupClose","searchStr","onSearch","onSearchChange","searchPlaceHolder","needOnTypeSearch","getSearchBoxRef","miniDescription","dataId","closeTitle","onSearchKeyDown","palette","dragBoundaryLimit","children","childNearTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/ModuleHeader/ModuleHeader.js","InaccurateProps":[]},"Search":{"props":["onFocus","onBlur","getRef","options","onSelect","value","selectedId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/Search/Search.js","InaccurateProps":[]},"MemoizedTicketHeader":{"props":["needSearch","onLookupClose","searchStr","onSearchChange","searchPlaceHolder","title","selectedViewId","onSelectView","allViews","onSearch","needOnTypeSearch","getSearchBoxRef","needViewsList","i18nKeys","palette","dragBoundaryLimit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/TicketHeader/TicketHeader.js","InaccurateProps":[]},"Title":{"props":["text","palette","isBold"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/Title/Title.js","InaccurateProps":[]},"Button":{"props":["palette","text","onClick","id"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Button/Button.js","InaccurateProps":[]},"header-Link":{"props":["url","text","iconName","iconClass","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Link/Link.js","InaccurateProps":[]},"header-Search":{"props":["value","onFocus","onBlur","placeHolder","maxLength","onChange","onKeyPress","customClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Search/Search.js","InaccurateProps":[]},"Views":{"props":["isGrid","isList","gridTitle","listTitle","onListClick","onGridClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Views/Views.js","InaccurateProps":[]},"Description":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/Description/Description.js","InaccurateProps":[]},"helptips-Link":{"props":["text","url","onClick","isDangerous"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/Link/Link.js","InaccurateProps":[]},"ListGroup":{"props":["isOrder","data"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/ListGroup/ListGroup.js","InaccurateProps":[]},"helptips-Title":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/Title/Title.js","InaccurateProps":[]},"Table":{"props":["children","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/Table/Table.js","InaccurateProps":[]},"TableBody":{"props":["children","eleRef","onScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableBody/TableBody.js","InaccurateProps":[]},"TableData":{"props":["children","flexible","shrink","align","type","dataId","customClass","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableData/TableData.js","InaccurateProps":[]},"TableHead":{"props":["children","className","onMouseEnter","onMouseLeave","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableHead/TableHead.js","InaccurateProps":[]},"TableRow":{"props":["children","eleRef","eleStyle","className","dataId","onMouseEnter","onMouseLeave","onClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableRow/TableRow.js","InaccurateProps":[]},"Text":{"props":["text","url","onClick","type","palette","className","size","dataId","title","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/Text/Text.js","InaccurateProps":[]},"src-PlusIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/svg/PlusIcon.js","InaccurateProps":[]},"SnippetIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/svg/SnippetIcon.js","InaccurateProps":[]},"TemplateIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/svg/TemplateIcon.js","InaccurateProps":[]},"v1-ActionButtonComponent":{"props":["isLoading","onClick","size","dataId","dataSelectorId","isArrow","text","subText","arrowBoxSize","palette","onHover","position","className","iconName","iconSize","dataTitle","isDisabled","isPopupOpen","removeClose","children","dropBoxClass","isBoxPaddingNeed","getContainerRef","getTargetRef","removeChildrenTooltip","innerClassName","popupGroup","togglePopup","defaultPosition","openPopupOnly","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ActionButton/ActionButton.js","InaccurateProps":[]},"MemoizedAlphabeticList":{"props":["onSelect","selectedCharacter","align","type","i18nKeys","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/AlphabeticList/AlphabeticList.js","InaccurateProps":[]},"v1-Attachment":{"props":["onClick","dataId","size","iconName","fileName","fileSize","downloadLink","palette","tooltip","fileInfo","i18nKeys","dataSelectorId","isDisabled"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Attachment/Attachment.js","InaccurateProps":[]},"v1-AttachmentImage":{"props":["isImage","onLoad","src","onClick","alt","dataId","id","className","isCover"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/AttachmentViewer/AttachmentImage.js","InaccurateProps":[]},"v1-AttachmentViewer":{"props":["previewObj","maintainZoom","hideAttachmentViewer","dataId","responsiveId","needDownload","i18nKeys","isActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/AttachmentViewer/AttachmentViewer.js","InaccurateProps":[]},"v1-ChannelIcon":{"props":["name","action","iconSize","iconTitle","size","topicIcon","topicIconTitle","topicIconSize","topicIconColor","iconClass","dataId","className","palette","textPalette","customTextClass","iconColor","needTopicBorder","topicClass","renderIconOnly","iconName","title","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ChannelIcon/ChannelIcon.js","InaccurateProps":[]},"v1-Drawer":{"innerComponent":{"Header":{"props":["title","onClose","children","className","paddingSize","closeTitle","iconName","iconSize","onIconClick","isIconBold","dataId","flexible","getChildren","iconTitle","isBoxIcon","getTitleChildren"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js","InaccurateProps":[]},"Content":{"props":["children","className","paddingSize","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js","InaccurateProps":[]},"Footer":{"props":["paddingLeftSize","paddingRightClass","children","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js","InaccurateProps":[]},"Drawer":{"props":["children","size","paddingSize","subDrawerActive","subDrawerChildren","onBodyClick","onClose","needFocusScope","customProps","a11y","needFreeze","palette","isActive","forwardRef","responsiveId","subDrawerSize","subDrawerClass","customClass","needAutoZindex","innerPortalName"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js","InaccurateProps":[]}}},"v1-ExternalLink":{"props":["href","title","target","className","children","rel","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ExternalLink/ExternalLink.js","InaccurateProps":[]},"v1-FlipCard":{"props":["id","action","name","initial","isChecked","noNeedFlip","size","channel","isPaidUser","isPortalUser","src","icon","iconSize","iconClass","ticListContainer","ticList","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","iconColor","tourId","isFilledCheckbox","channelTitle","customProps","onChange"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/FlipCard/FlipCard.js","InaccurateProps":[]},"v1-FormAction":{"props":["size","children","paddingLeftSize","paddingRightClass","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/FormAction/FormAction.js","InaccurateProps":[]},"v1-FreezeLayer":{"props":["zIndex","palette","isSvgMask","customClass","isActive","children","align","childAnimationName","onClick","animationName","runOnMount","forwardRef","needAutoZindex","customStyle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/FreezeLayer/FreezeLayer.js","InaccurateProps":[]},"v1-IconButton":{"props":["palette","iconSize","iconName","className","iconClass","dataId","dataSelectorId","eleRef","isActive","tourId","isDisabled","children","hoverType","title","isBold","isNeedEffect","needButtonTag","a11y","dataIsHtml","customProps","onClick","onMouseOver","onMouseDown"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/IconButton/IconButton.js","InaccurateProps":[]},"v1-Image":{"props":["alt","src","className","isCover","title","onClick","dataId","htmlId","eleRef","original"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Image/Image.js","InaccurateProps":[]},"v1-ImportantNotes":{"props":["text","iconName","iconSize","children","iconClass","isCover","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ImportantNotes/ImportantNotes.js","InaccurateProps":[]},"v1-Link":{"props":["children","href","target","urlData","urlName","className","title","download","rel","dataId","customProps","ariaLabel","hasReload","onClick","key"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Link/Link.js","InaccurateProps":[]},"v1-MessageBanner":{"props":["type","message","onClose","href","onClick","urlText","palette","customClass","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/MessageBanner/MessageBanner.js","InaccurateProps":[]},"v1-NewStar":{"props":["palette","customClass","position"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/NewStar/NewStar.js","InaccurateProps":[]},"v1-PlusIcon":{"props":["dataId","iconName","iconClass","iconSize","size","onClick","title","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/PlusIcon/PlusIcon.js","InaccurateProps":[]},"v1-Separator":{"props":["children","type","customSeparatorType","palette","wrap","shrink","aligndirection","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Separator/Separator.js","InaccurateProps":[]},"v1-TagWithIcon":{"props":["text","iconName","iconSize","palette","iconClass","isBold","size","dataId","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/TagWithIcon/TagWithIcon.js","InaccurateProps":[]},"v1-ToastMessage":{"props":["messageState","type","subject","info","submitText","cancelText","iconName","iconSize","submitType","isIconMid","needClose","iconPalette","isMore","message","isAnimate","getLeftContainer","getInnerBottomContainer","getBottomContainer","getSubmitContainer","onSubmit","onCancel","dataId","dataSelectorId","isClose","onClose","needAutoZindex","a11y","Element","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ToastMessage/ToastMessage.js","InaccurateProps":[]},"v1-Upload":{"props":["isPreview","tooltip","dataId","dataSelectorId","progressValue","onClick","iconName","fileSize","imgSrc","isPreviewType","onRemove","size","getRef","palette"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Upload/Upload.js","InaccurateProps":[]},"v1-AutoClose":{"props":["Element","isClose","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/actions/AutoClose.js","InaccurateProps":[]},"MemoizedAlertClose":{"props":["onClose","dataId","dataTitle","type","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/AlertClose/AlertClose.js","InaccurateProps":[]},"alert-AlertHeader":{"props":["children","type","title","needIcon","onClose","closeTitle","breakChildren","dataId","htmlId","customStyle","dragBoundaryLimit","renderAlertIcon"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/AlertHeader/AlertHeader.js","InaccurateProps":[]},"alert-AlertLookup":{"props":["isActive","size","type","title","message","confirmationMessage","submitText","cancelText","onSubmitClick","onCancelClick","children","forwardRef","onClose","headerChildren","wrapHeader","dataId","onLookupClick","customClass","needIcon","a11y","customProps","align","childAnimationName","isHtmlContent","scroll","isDefaultFocus","onEsc","renderAlertIcon"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/AlertLookup/AlertLookup.js","InaccurateProps":[]},"AlarmAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/AlarmAlertIcon.js","InaccurateProps":[]},"AlertIcons":{"props":["type","variant","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/AlertIcons.js","InaccurateProps":[]},"DangerAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/DangerAlertIcon.js","InaccurateProps":[]},"ErrorAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/ErrorAlertIcon.js","InaccurateProps":[]},"InfoAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/InfoAlertIcon.js","InaccurateProps":[]},"NotificationAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/NotificationAlertIcon.js","InaccurateProps":[]},"SuccessAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/SuccessAlertIcon.js","InaccurateProps":[]},"WarningAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/WarningAlertIcon.js","InaccurateProps":[]},"avatar-AvatarClose":{"props":["title","src","name","size","isClose","onClick","customProps","dataSelectorId","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarClose/AvatarClose.js","InaccurateProps":[]},"avatar-AvatarCollision":{"props":["title","src","name","size","onClick","needCreateChat","isLeft","isIdle","initial","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarCollision/AvatarCollision.js","InaccurateProps":[]},"avatar-AvatarIcon":{"props":["name","size","iconSize","iconClass","iconColor","onClick","palette","dataId","className","isIconBold","title","borderOnActive","borderOnHover","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarIcon/AvatarIcon.js","InaccurateProps":[]},"avatar-AvatarStatus":{"props":["src","name","size","onClick","title","state","dataId","initial","shape","needTitle","className","needBorder","palette","textPalette","customTextClass","statusTitle","customProps","dataSelectorId","needDefaultBorder"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarStatus/AvatarStatus.js","InaccurateProps":[]},"avatar-AvatarThread":{"props":["src","name","size","iconColor","iconName","iconSize","borderPalette","onClick","title","iconTitle","onIconClick","showOnHover","dataId","initial","needBorder","needBackground","palette","textPalette","customTextClass","needTitle","customProps","iconClass","getCustomThread","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarThread/AvatarThread.js","InaccurateProps":[]},"avatar-AvatarUser":{"props":["src","alternateSrc","name","size","onClick","onDelete","title","isPaid","isPortal","isLocked","dataId","dataSelectorId","needTitle","needDelete","initial","palette","textPalette","customTextClass","iconName","iconSize","iconClass","iconColor","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarUser/AvatarUser.js","InaccurateProps":[]},"avatar-AvatarWithTeam":{"props":["name","size","src","teamName","isTeam","needTitle","initial","title","palette","textPalette","customTextClass","teamClassName","borderOnActive","customProps","dataSelectorId","teamBorderActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarWithTeam/AvatarWithTeam.js","InaccurateProps":[]},"dropdown-ToggleDropDown_Component":{"props":["options","togglePopup","boxPosition","onSelectLabel","isPopupOpen","removeClose","onClick","preventPopupClose","isPopupReady","isSearch","idName","onDropDownOpen","onDropDownClose","from","keyName","isGroupDropDown","groupOptionsKey","groupNameKey","needSearchFetching","onSearch","isNextOptions","getNextOptions","value","boxSize","title","isArrow","placeHolderText","className","right","left","top","bottom","isPopupActive","needExternalPopupState","position","getTargetRef","getContainerRef","dataId","dataSelectorId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","iconName","iconSize","needTick","dataTitle","isDataLoaded","children","needResponsive","arrowIconPosition","isToggleStateNeeded","selectedId","isPadding","isNeedEffect","hoverType","palette","getFooter","customProps","needMultiLineText","isAbsolutePositioningNeeded","positionsOffset","targetOffset","isRestrictScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/dropdown/ToggleDropDown/ToggleDropDown.js","InaccurateProps":[]},"emptystate-CommonEmptyState":{"props":["title","description","linkDescription","linkUrl","linkText","linkTarget","onUrlClick","getEmptyState","className","dataId","isFluid","children","size","palette","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/emptystate/CommonEmptyState/CommonEmptyState.js","InaccurateProps":[]},"emptystate-EditionPage":{"props":["title","subtitle","information","dataId","footerText","onButtonClick","butttonText","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/emptystate/EditionPage/EditionPage.js","InaccurateProps":[]},"errorstate-Inconvenience":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/Inconvenience/Inconvenience.js","InaccurateProps":[]},"OopsSomethingMiss":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/OopsSomethingMiss/OopsSomethingMiss.js","InaccurateProps":[]},"UnableToProcessRequest":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/UnableToProcessRequest/UnableToProcessRequest.js","InaccurateProps":[]},"errorstate-UnauthorizedLogin":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","buttonPalette","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js","InaccurateProps":[]},"UrlNotFound":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/UrlNotFound/UrlNotFound.js","InaccurateProps":[]},"WillBeRightBack":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/WillBeRightBack/WillBeRightBack.js","InaccurateProps":[]},"MemoizedCheckBoxField":{"props":["labelName","id","isMandatory","validationMessage","validationPalette","isReadOnly","checked","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","infoText","fieldSize","labelPalette","labelCustomClass","direction","lineClamp","isLocked","lockedInfoText","customProps","renderLabelProps","getRef","getContainerRef","onChange","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/CheckBoxField/CheckBoxField.js","InaccurateProps":[]},"MemoizedCurrencyField":{"props":["labelName","id","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","dataId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","dataSelectorId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","userCurrencyType","customProps","formatCurrency","renderLabelProps","onBlur","onFocus","getRef","onChange"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/CurrencyField/CurrencyField.js","InaccurateProps":[]},"MemoizedDateField":{"props":["labelName","isMandatory","isDateTime","validationMessage","validationPalette","textBoxSize","textBoxVariant","isReadOnly","value","errorType","isDisabled","title","popupGroup","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","fieldSize","datePattern","isLocked","lockedInfoText","lockedValueText","labelPalette","labelCustomClass","htmlId","timeZone","i18nKeys","iconOnHover","customProps","renderLabelProps","onChange","id","getRef","openPopupOnMount","isFocusOnLabelClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/DateField/DateField.js","InaccurateProps":[]},"MemoizedFieldContainer":{"props":["children","ePhiData","isLocked","lockedInfoText","infoText","dataId","renderProps","alignContainer","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/FieldContainer/FieldContainer.js","InaccurateProps":[]},"MemoizedMultiSelectField":{"props":["labelName","id","isMandatory","options","selectedOptions","needSelectAll","selectAllText","isAnimate","emptyMessage","size","variant","textBoxSize","animationStyle","validationMessage","validationPalette","isReadOnly","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","placeHolder","fieldSize","valueField","textField","isNextOptions","isSearching","popupGroup","labelPalette","palette","lockedInfoText","isLocked","htmlId","children","customChildrenClass","onFocus","customProps","i18nKeys","renderLabelProps","onChange","onDropBoxOpen","onSearch","getNextOptions","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/MultiSelectField/MultiSelectField.js","InaccurateProps":[]},"MemoizedPhoneField":{"props":["labelName","id","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","maxLength","isReadOnly","value","errorType","isDisabled","title","onBlur","dataId","dataSelectorId","onKeyDown","placeHolder","infoText","isTelephony","providerName","ticketId","contactId","borderColor","fieldSize","labelPalette","labelCustomClass","i18nKeys","onCall","ePhiData","type","onFocus","onChange","getRef","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/PhoneField/PhoneField.js","InaccurateProps":[]},"MemoizedRadioField":{"props":["labelName","id","isMandatory","options","validationMessage","validationPalette","errorType","isDisabled","title","labelPalette","labelSize","size","selectedValue","isActive","getRef","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","isReadOnly","isBoxStyle","variant","customProps","onChange"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/RadioField/RadioField.js","InaccurateProps":[]},"MemoizedSelectField":{"props":["labelName","isMandatory","options","selectedValue","needSearch","emptyMessage","animationStyle","textBoxSize","textBoxVariant","searchBoxSize","searchBoxPlaceHolder","validationMessage","validationPalette","isReadOnly","valueField","textField","excludeOptions","errorType","isDisabled","title","dataId","dataSelectorId","fieldClass","validationRuleMessage","validationRulePalette","onKeyDown","infoText","isLocked","lockedInfoText","borderColor","fieldSize","isNextOptions","getNextOptions","popupGroup","onSearch","labelPalette","labelCustomClass","htmlId","needLocalSearch","isDefaultSelectValue","placeHolder","children","onFocus","iconOnHover","customProps","renderLabelProps","id","onChange","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/SelectField/SelectField.js","InaccurateProps":[]},"fields-TagsMultiSelect":{"props":["getTextInputRef","onScroll","name","noMoreData","searchList","isTagListLoading","tagsList","isPopupReady","selectSearchIndex","deleteTag","isReadOnly","className","handleKeyUp","handleChange","addTag","getContainerRef","getTargetRef","isPopupOpen","boxPosition","handleTogglePopup","listDisabled","chipNeedToShow","i18nKeys","dataId","needBorder","borderColor","getTextBoxChildren","htmlId","boxSize","onSelectTag","clickableTag","dataSelectorId","handleSelectAll","selectAllText","needSelectAll","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset","customClass","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js","InaccurateProps":[]},"fields-TagsMultiSelectField_Component":{"props":["searchValue","fieldProperties","styleProperties","actions","dataId","htmlId","isLoading","isListDisabled","isNewNeeded","isPopupOpen","isPopupReady","removeClose","position","togglePopup","noMoreData","numberOfDisplayedValues","getTargetRef","getContainerRef","i18nKeys","getTextBoxChildren","children","ePhiData","customProps","clickableTag","dataSelectorId","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js","InaccurateProps":[]},"fields-TextBoxField":{"props":["labelName","id","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","onBlur","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","onFocus","ePhiData","children","customProps","renderLabelProps","onChange","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextBoxField/TextBoxField.js","InaccurateProps":[]},"fields-TextEditor":{"props":["EDITORURL","value","editorMode","editorOptions","needEditorFocus","handleDropUpload","fontFamily","fontSize","initCallback","handleAlertMessage","needInlineAttachment","plainTextSwitchCallback","id","getRef","changeEditorContent","shouldUpdateContent","mode","onFocus","onChange","editorCallback","isCustomScroll","setInlineAttachmentInProgress","i18nKeys","blurCallback","onUpload","getCSRFCookieName","getCSRFCookie","isEditorDefaultOpen","toggleEdit","dataId","type","border","ImgLazyLoad","loadingComponent","isNightMode","isReadOnly","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextEditor/TextEditor.js","InaccurateProps":[]},"fields-TextEditorField":{"props":["labelName","id","isMandatory","value","validationMessage","validationPalette","isReadOnly","onAttachmentUpload","needEditor","dataId","dataSelectorId","isDisabled","fieldSize","textBoxSize","textBoxVariant","labelPalette","labelCustomClass","infoText","isLocked","lockedInfoText","errorType","EDITORURL","editorMode","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","onFocus","isEditorDefaultOpen","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","needInlineAttachment","i18nKeys","className","children","ePhiData","customProps","onChange","getRef","isFocusOnLabelClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextEditorField/TextEditorField.js","InaccurateProps":[]},"fields-TextEditorWrapper":{"props":["id","onChange","value","onAttachmentUpload","needEditor","dataId","isReadOnly","isDisabled","getRef","textBoxSize","textBoxVariant","editorMode","editorSize","editorBorder","EDITORURL","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","i18nKeys","isEditorDefaultOpen","needInlineAttachment","customProps","dataSelectorId","onFocus"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js","InaccurateProps":[]},"fields-TextareaField":{"props":["labelName","id","isMandatory","textBoxSize","animated","textBoxVariant","isReadOnly","validationMessage","validationPalette","maxLength","value","errorType","isDisabled","title","placeHolder","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onFocus","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","customProps","renderLabelProps","onChange","onBlur","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextareaField/TextareaField.js","InaccurateProps":[]},"fields-ValidationMessage":{"props":["palette","text","htmlFor","onClick","type","size","dataId","clipped","a11y","tooltip","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/ValidationMessage/ValidationMessage.js","InaccurateProps":[]},"layout-Field":{"props":["width","children","rowBreak","column","className","containerClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/layout/Field/Field.js","InaccurateProps":[]},"layout-Section":{"props":["title","dataId","containerClass","titleClass","className","column","formName","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/layout/Section/Section.js","InaccurateProps":[]},"layout-SetupDetailLayout":{"innerComponent":{"SetupDetailLayout":{"props":["children","needHelpInfo","getHelpInfo","helpInfoTitle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupHeader":{"props":["title","needBack","onBackClick","openHelpInfo","needHelpInfo","needHelpInfoWrapper","getLeftPlaceHolder","getRightPlaceHolder","leftClassName","rightClassName","isCustomizedHeader","headerCustomStyle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupContent":{"props":["children","needPadding","className","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]},"SetupFooter":{"props":["children","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js","InaccurateProps":[]}}},"list-AvatarFlip":{"props":["id","action","name","isChecked","onChange","noNeedFlip","size","onClick","isPaidUser","isPortalUser","channel","src","icon","initial","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","tourId","iconSize","isFilledCheckbox","channelTitle","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/AvatarFlip/AvatarFlip.js","InaccurateProps":[]},"list-BluePrintStatus":{"props":["title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/BluePrintStatus/BluePrintStatus.js","InaccurateProps":[]},"list-Comment":{"props":["count","onClick","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Comment/Comment.js","InaccurateProps":[]},"list-DepartmentDropDown":{"props":["departmentName","departmentList","onSelectLabel","isEditable","dataId","isFetching","isPopupActive","getNextOptions","isNextOptions","onSearch","needSearchFetching","searchStr","i18nKeys","onMoveDepartment","getDepartment"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/DepartmentDropDown/DepartmentDropDown.js","InaccurateProps":[]},"list-Dot":{"props":["className","spacingType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Dot/Dot.js","InaccurateProps":[]},"list-DotNew":{"props":["className","dataTitle","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/DotNew/DotNew.js","InaccurateProps":[]},"list-GridStencils":{"props":["lineBar","from","isThreeLayout","styles","order"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/GridStencils/GridStencils.js","InaccurateProps":[]},"list-AddNewIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/AddNewIcon.js","InaccurateProps":[]},"list-CompleteIcon":{"props":["onClick","dataId","dataTitle","iconClass","className","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/CompleteIcon.js","InaccurateProps":[]},"list-DeleteComponent":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/DeleteIcon.js","InaccurateProps":[]},"list-EditIcon":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/EditIcon.js","InaccurateProps":[]},"list-FloatingIcons":{"props":["children","iconClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/FloatingIcons.js","InaccurateProps":[]},"list-ReadUnreadIcon":{"props":["onClick","dataId","dataTitle","iconClassName","iconClass","className","isRead","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/ReadUnreadIcon.js","InaccurateProps":[]},"list-SmartIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/SmartIcon.js","InaccurateProps":[]},"list-ListStencils":{"props":["listType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/ListStencils/ListStencils.js","InaccurateProps":[]},"list-AccountName":{"props":["dataTitle","dataId","urlName","urlData","onClick","isLink","className","text","href","notAccessible","fontWeight","secondaryAccountHref","secondaryAccountClick","secondaryAccountText","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/AccountName.js","InaccurateProps":[]},"list-ContactName":{"props":["dataTitle","dataId","isPaidUser","urlName","urlData","onClick","sentimentType","isLink","className","text","href","notAccessible","fontWeight","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/ContactName.js","InaccurateProps":[]},"list-DepartmentText":{"props":["className","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/DepartmentText.js","InaccurateProps":[]},"list-Email":{"props":["text","urlData","urlName","className","title","href","isLink","target","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/Email.js","InaccurateProps":[]},"list-HappinessRating":{"props":["text","className","src"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/HappinessRating.js","InaccurateProps":[]},"list-PhoneNumber":{"props":["text","urlData","urlName","className","title","href","dataId","isLink","target","hasReload","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/PhoneNumber.js","InaccurateProps":[]},"list-PriorityText":{"props":["className","color","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/PriorityText.js","InaccurateProps":[]},"list-SecondaryText":{"props":["className","text","dataTitle","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/SecondaryText.js","InaccurateProps":[]},"list-StatusText":{"props":["className","color","text","dataTitle","fontWeight","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/StatusText.js","InaccurateProps":[]},"list-TicketId":{"props":["text","className","dataId","isLink","dataTitle","onClick","url","target","urlName","urlData","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/TicketId.js","InaccurateProps":[]},"list-Website":{"props":["text","className","title","href","dataId","isLink","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/Website.js","InaccurateProps":[]},"list-SecondryPanel":{"innerComponent":{"SecondryPanel":{"props":["children","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelUL":{"props":["children","className","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelLI":{"props":["children","className","isShrink","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]},"SecondryPanelItem":{"props":["children","className","dotClass","isDot","flex","clipped","dotSpacingType","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js","InaccurateProps":[]}}},"list-SentimentStatus":{"props":["type","dataTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SentimentStatus/SentimentStatus.js","InaccurateProps":[]},"list-Subject":{"props":["text","dataId","urlName","href","urlData","onClick","isLink","target","fontWeight","className","isDotted","children","customProps","whiteSpace"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Subject/Subject.js","InaccurateProps":[]},"list-TagNew":{"props":["className","text","animate","onClick","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/TagNew/TagNew.js","InaccurateProps":[]},"list-Thread":{"props":["count","className","iconTitle","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Thread/Thread.js","InaccurateProps":[]},"status-StatusDropdown_Component":{"props":["value","removeClose","boxSize","keyName","idName","title","isSearch","isArrow","placeHolderText","className","right","left","top","bottom","isPopupOpen","isPopupReady","position","getTargetRef","getContainerRef","dataId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","needTick","dataTitle","isDataLoaded","children","targetAlign","needResponsive","arrowIconPosition","statusColor","needExternalPopupState","isPopupActive","needMultiLineText","boxPosition","togglePopup","onTogglePopup","onClick","onSelectLabel","isFetchingOptions","getNextOptions","options","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset","a11y"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/status/StatusDropdown/StatusDropdown.js","InaccurateProps":[]},"status-StatusListItem":{"props":["size","active","highlight","value","autoHover","palette","title","disableTitle","needTick","isLink","href","target","needBorder","isDisabled","bulletColor","a11y","needMultiLineText","index","getRef","id","onClick","onMouseEnter","customClass","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/status/StatusListItem/StatusListItem.js","InaccurateProps":[]},"lookup-EmptyPage":{"props":["type","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/EmptyPage/EmptyPage.js","InaccurateProps":[]},"lookup-Lookup":{"props":["isActive","children","size","dataId","forwardRef","onClick","customClass","htmlId","a11y","childAnimationName","onClose","needFocusScope","customProps","onKeyDown","isMinHeight","lookupClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/Lookup/Lookup.js","InaccurateProps":[]},"v1-lookup-Section":{"props":["alignBox","className","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/Section/Section.js","InaccurateProps":[]},"MemoizedClose":{"props":["onClose","dataId","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/Close/Close.js","InaccurateProps":[]},"header-MemoizedModuleHeader":{"props":["title","needSearch","onLookupClose","searchStr","onSearch","onSearchChange","searchPlaceHolder","needOnTypeSearch","getSearchBoxRef","miniDescription","dataId","closeTitle","onSearchKeyDown","palette","dragBoundaryLimit","children","childNearTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/ModuleHeader/ModuleHeader.js","InaccurateProps":[]},"lookup-header-Search":{"props":["options","onSelect","value","selectedId","onFocus","onBlur","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/Search/Search.js","InaccurateProps":[]},"header-MemoizedTicketHeader":{"props":["needSearch","onLookupClose","searchStr","onSearchChange","searchPlaceHolder","title","selectedViewId","onSelectView","allViews","onSearch","needOnTypeSearch","getSearchBoxRef","needViewsList","i18nKeys","palette","dragBoundaryLimit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/TicketHeader/TicketHeader.js","InaccurateProps":[]},"MemoizedTitle":{"props":["text","palette","isBold"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/Title/Title.js","InaccurateProps":[]},"DesktopNotificationHeader":{"props":["onClose","closeTitle","dataId","variant","type","needIcon","title","renderAlertIcon","needClose","responsiveId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js","InaccurateProps":[]},"header-Button":{"props":["palette","text","onClick","id"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Button/Button.js","InaccurateProps":[]},"setup-header-Link":{"props":["url","text","iconName","iconClass","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Link/Link.js","InaccurateProps":[]},"setup-header-Search":{"props":["placeHolder","maxLength","value","onChange","onKeyPress","onFocus","onBlur","customClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Search/Search.js","InaccurateProps":[]},"header-Views":{"props":["isGrid","isList","gridTitle","listTitle","onListClick","onGridClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Views/Views.js","InaccurateProps":[]},"helptips-Description":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/Description/Description.js","InaccurateProps":[]},"setup-helptips-Link":{"props":["text","url","onClick","isDangerous"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/Link/Link.js","InaccurateProps":[]},"helptips-ListGroup":{"props":["isOrder","data"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/ListGroup/ListGroup.js","InaccurateProps":[]},"setup-helptips-Title":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/Title/Title.js","InaccurateProps":[]},"table-Table":{"props":["children","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/Table/Table.js","InaccurateProps":[]},"table-TableBody":{"props":["children","eleRef","onScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableBody/TableBody.js","InaccurateProps":[]},"table-TableData":{"props":["children","flexible","shrink","align","type","dataId","customClass","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableData/TableData.js","InaccurateProps":[]},"table-TableHead":{"props":["children","className","onMouseEnter","onMouseLeave","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableHead/TableHead.js","InaccurateProps":[]},"table-TableRow":{"props":["children","eleRef","eleStyle","className","dataId","onMouseEnter","onMouseLeave","onClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableRow/TableRow.js","InaccurateProps":[]},"table-Text":{"props":["text","url","onClick","type","palette","className","size","dataId","title","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/Text/Text.js","InaccurateProps":[]},"src-v1-PlusIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/svg/PlusIcon.js","InaccurateProps":[]},"v1-SnippetIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/svg/SnippetIcon.js","InaccurateProps":[]},"v1-TemplateIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/svg/TemplateIcon.js","InaccurateProps":[]},"AlertClose":{"props":["onClose","dataId","dataTitle","type","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/AlertClose/AlertClose.js","InaccurateProps":[]},"version2-AlarmAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/AlarmAlertIcon.js","InaccurateProps":[]},"version2-AlertIcons":{"props":["type","variant","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/AlertIcons.js","InaccurateProps":[]},"version2-DangerAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/DangerAlertIcon.js","InaccurateProps":[]},"version2-ErrorAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/ErrorAlertIcon.js","InaccurateProps":[]},"version2-InfoAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/InfoAlertIcon.js","InaccurateProps":[]},"version2-NotificationAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/NotificationAlertIcon.js","InaccurateProps":[]},"version2-SuccessAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/SuccessAlertIcon.js","InaccurateProps":[]},"version2-WarningAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/WarningAlertIcon.js","InaccurateProps":[]},"version2-errorstate-Inconvenience":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/Inconvenience/Inconvenience.js","InaccurateProps":[]},"errorstate-OopsSomethingMiss":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js","InaccurateProps":[]},"errorstate-UnableToProcessRequest":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js","InaccurateProps":[]},"version2-errorstate-UnauthorizedLogin":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","buttonPalette","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js","InaccurateProps":[]},"errorstate-UrlNotFound":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/UrlNotFound/UrlNotFound.js","InaccurateProps":[]},"errorstate-WillBeRightBack":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/WillBeRightBack/WillBeRightBack.js","InaccurateProps":[]},"lookup-AlertHeader":{"props":["children","type","title","needIcon","onClose","closeTitle","breakChildren","dataId","htmlId","customStyle","dragBoundaryLimit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/lookup/AlertHeader/AlertHeader.js","InaccurateProps":[]},"lookup-AlertLookup":{"props":["isActive","size","type","title","message","confirmationMessage","submitText","cancelText","onSubmitClick","onCancelClick","children","forwardRef","onClose","headerChildren","wrapHeader","dataId","onLookupClick","customClass","needIcon","a11y","customProps","align","childAnimationName","isHtmlContent","scroll","isDefaultFocus","onEsc"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/lookup/AlertLookup/AlertLookup.js","InaccurateProps":[]},"notification-DesktopNotificationHeader":{"props":["onClose","closeTitle","dataId","variant","type","needIcon","title","needClose","responsiveId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js","InaccurateProps":[]}};
72
72
  const tableContainer = document.getElementById( 'table-container' );
73
73
  const table = document.createElement( 'table' );
74
74
  const thead = document.createElement( 'thead' );