@dscout/particle 0.46.2 → 1.0.0-alpha.2

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 (401) hide show
  1. package/CHANGELOG.md +125 -11
  2. package/lib/components/advanced_options.js +92 -3
  3. package/lib/components/attribute_input.js +215 -0
  4. package/lib/components/attribute_selector.js +106 -22
  5. package/lib/components/avatar.js +98 -7
  6. package/lib/components/blitz.js +118 -8
  7. package/lib/components/button.js +261 -2
  8. package/lib/components/button_control.js +108 -2
  9. package/lib/components/button_icon.js +192 -0
  10. package/lib/components/button_mode.js +174 -2
  11. package/lib/components/button_plain.js +187 -0
  12. package/lib/components/card.js +237 -4
  13. package/lib/components/card_body.js +58 -1
  14. package/lib/components/card_footer.js +76 -2
  15. package/lib/components/cards.js +58 -1
  16. package/lib/components/checkbox_input.js +141 -6
  17. package/lib/components/chip.js +184 -0
  18. package/lib/components/collapsible.js +45 -10
  19. package/lib/components/collapsible_content.js +92 -9
  20. package/lib/components/collapsing_menu.js +102 -4
  21. package/lib/components/column.js +72 -1
  22. package/lib/components/common_button.js +172 -0
  23. package/lib/components/common_input.js +221 -18
  24. package/lib/components/common_menu_item.js +160 -9
  25. package/lib/components/container.js +65 -1
  26. package/lib/components/container_header.js +81 -1
  27. package/lib/components/container_inner.js +50 -1
  28. package/lib/components/controls.js +57 -0
  29. package/lib/components/drag_and_drop.js +173 -10
  30. package/lib/components/dropdown.js +228 -13
  31. package/lib/components/dropdown_input_toggle.js +127 -9
  32. package/lib/components/editing_container.js +157 -14
  33. package/lib/components/email_input.js +207 -0
  34. package/lib/components/file_input.js +125 -3
  35. package/lib/components/flex.js +216 -28
  36. package/lib/components/focus_intent.js +84 -10
  37. package/lib/components/focus_trap.js +103 -2
  38. package/lib/components/footnote.js +60 -1
  39. package/lib/components/formatted_text.js +61 -0
  40. package/lib/components/heading.js +219 -3
  41. package/lib/components/input_addon.js +115 -0
  42. package/lib/components/input_group.js +81 -0
  43. package/lib/components/input_group_item.js +132 -0
  44. package/lib/components/list.js +92 -3
  45. package/lib/components/list_inline.js +91 -3
  46. package/lib/components/media_query.js +52 -5
  47. package/lib/components/menu.js +91 -2
  48. package/lib/components/menu_item.js +116 -1
  49. package/lib/components/menu_item_li.js +152 -11
  50. package/lib/components/menu_link.js +162 -1
  51. package/lib/components/menu_list.js +79 -4
  52. package/lib/components/menu_section.js +66 -2
  53. package/lib/components/menu_title.js +58 -1
  54. package/lib/components/modal.js +223 -22
  55. package/lib/components/modifier.js +241 -14
  56. package/lib/components/number_input.js +215 -0
  57. package/lib/components/password_input.js +207 -0
  58. package/lib/components/pill.js +96 -1
  59. package/lib/components/radio_input.js +133 -5
  60. package/lib/components/range_input.js +128 -5
  61. package/lib/components/row.js +86 -1
  62. package/lib/components/search_input.js +175 -0
  63. package/lib/components/segmented_controls.js +58 -1
  64. package/lib/components/select_input.js +173 -15
  65. package/lib/components/separator.js +137 -6
  66. package/lib/components/speech_bubble.js +126 -8
  67. package/lib/components/swappable_content.js +99 -9
  68. package/lib/components/tags_input.js +199 -15
  69. package/lib/components/text_input.js +207 -0
  70. package/lib/components/textarea.js +187 -11
  71. package/lib/components/theme_provider.js +172 -0
  72. package/lib/components/thumbnail.js +94 -8
  73. package/lib/components/togglable_fieldset.js +110 -14
  74. package/lib/components/toggle.js +93 -1
  75. package/lib/components/tooltip.js +144 -4
  76. package/lib/components/tooltip_container.js +144 -5
  77. package/lib/components/with_addons.js +121 -0
  78. package/lib/icons/alert.js +6 -0
  79. package/lib/icons/amazing_emoticon.js +6 -0
  80. package/lib/icons/analysis.js +6 -0
  81. package/lib/icons/approve_payment.js +6 -0
  82. package/lib/icons/archive.js +6 -0
  83. package/lib/icons/arrow_up.js +6 -0
  84. package/lib/icons/autotag.js +88 -0
  85. package/lib/icons/bell.js +6 -0
  86. package/lib/icons/bookmark.js +26 -2
  87. package/lib/icons/camera.js +6 -0
  88. package/lib/icons/checkbox_check.js +44 -2
  89. package/lib/icons/checkbox_indeterminate.js +44 -2
  90. package/lib/icons/checkmark.js +6 -0
  91. package/lib/icons/{speaker_on.js → checkpoint.js} +14 -13
  92. package/lib/icons/chevron.js +6 -0
  93. package/lib/icons/choice.js +6 -0
  94. package/lib/icons/circle.js +6 -0
  95. package/lib/icons/circle_checkmark.js +88 -0
  96. package/lib/icons/circle_chevron.js +6 -0
  97. package/lib/icons/circle_clone.js +6 -0
  98. package/lib/icons/circle_i.js +6 -0
  99. package/lib/icons/circle_minus.js +6 -0
  100. package/lib/icons/circle_plus.js +6 -0
  101. package/lib/icons/circle_question.js +6 -0
  102. package/lib/icons/circle_x.js +6 -0
  103. package/lib/icons/clip.js +122 -34
  104. package/lib/icons/clock.js +93 -1
  105. package/lib/icons/clone.js +6 -0
  106. package/lib/icons/column.js +81 -0
  107. package/lib/icons/common_svg.js +172 -19
  108. package/lib/icons/download.js +6 -0
  109. package/lib/icons/drag_dots.js +6 -0
  110. package/lib/icons/dscout.js +6 -0
  111. package/lib/icons/edit.js +6 -0
  112. package/lib/icons/email.js +6 -0
  113. package/lib/icons/export.js +6 -0
  114. package/lib/icons/express_mission.js +11 -1
  115. package/lib/icons/express_mission_card.js +6 -0
  116. package/lib/icons/external_link.js +6 -0
  117. package/lib/icons/eye.js +95 -0
  118. package/lib/icons/file_type_text.js +6 -0
  119. package/lib/icons/filter.js +6 -0
  120. package/lib/icons/fit.js +6 -0
  121. package/lib/icons/folder.js +88 -0
  122. package/lib/icons/good_emoticon.js +6 -0
  123. package/lib/icons/grid.js +6 -0
  124. package/lib/icons/grip.js +6 -0
  125. package/lib/icons/heart.js +95 -0
  126. package/lib/icons/highlighter.js +6 -0
  127. package/lib/icons/icon_with_count.js +82 -5
  128. package/lib/icons/image_file.js +6 -0
  129. package/lib/icons/key.js +6 -0
  130. package/lib/icons/knockout.js +6 -0
  131. package/lib/icons/link.js +6 -0
  132. package/lib/icons/live_mission.js +11 -1
  133. package/lib/icons/live_mission_card.js +6 -0
  134. package/lib/icons/live_notes.js +88 -0
  135. package/lib/icons/location.js +88 -0
  136. package/lib/icons/lock.js +88 -0
  137. package/lib/icons/map.js +6 -0
  138. package/lib/icons/media.js +6 -0
  139. package/lib/icons/media_upload.js +6 -0
  140. package/lib/icons/mic.js +95 -0
  141. package/lib/icons/minus.js +6 -0
  142. package/lib/icons/mission.js +11 -1
  143. package/lib/icons/mission_card.js +6 -0
  144. package/lib/icons/mobile.js +88 -0
  145. package/lib/icons/more.js +6 -0
  146. package/lib/icons/note.js +88 -0
  147. package/lib/icons/number.js +6 -0
  148. package/lib/icons/observer.js +6 -0
  149. package/lib/icons/open_ended.js +6 -0
  150. package/lib/icons/payment.js +6 -0
  151. package/lib/icons/pen.js +6 -0
  152. package/lib/icons/pin.js +88 -0
  153. package/lib/icons/play.js +6 -0
  154. package/lib/icons/plus.js +6 -0
  155. package/lib/icons/poor_emoticon.js +6 -0
  156. package/lib/icons/power.js +6 -0
  157. package/lib/icons/profile.js +6 -0
  158. package/lib/icons/prop_types.js +9 -6
  159. package/lib/icons/quotation_mark.js +6 -0
  160. package/lib/icons/radio_circle.js +87 -0
  161. package/lib/icons/randomize.js +6 -0
  162. package/lib/icons/remote.js +6 -0
  163. package/lib/icons/responses.js +6 -0
  164. package/lib/icons/rocket.js +6 -0
  165. package/lib/icons/round_arrow_down_left.js +6 -0
  166. package/lib/icons/round_arrow_right.js +6 -0
  167. package/lib/icons/row.js +81 -0
  168. package/lib/icons/scale.js +6 -0
  169. package/lib/icons/screen.js +95 -0
  170. package/lib/icons/screen_share.js +6 -0
  171. package/lib/icons/screener.js +11 -1
  172. package/lib/icons/screener_card.js +6 -0
  173. package/lib/icons/screener_small.js +6 -0
  174. package/lib/icons/send_payment.js +6 -0
  175. package/lib/icons/settings.js +6 -0
  176. package/lib/icons/settings_alt.js +6 -0
  177. package/lib/icons/share.js +6 -0
  178. package/lib/icons/sidebar.js +6 -0
  179. package/lib/icons/skip_end.js +6 -0
  180. package/lib/icons/sort_asc.js +6 -0
  181. package/lib/icons/sort_desc.js +6 -0
  182. package/lib/icons/speech_bubble.js +95 -0
  183. package/lib/icons/spinner.js +88 -0
  184. package/lib/icons/spinner_progress.js +6 -0
  185. package/lib/icons/spreadsheet_file.js +6 -0
  186. package/lib/icons/stacked_missions.js +6 -0
  187. package/lib/icons/star.js +95 -0
  188. package/lib/icons/stim.js +88 -0
  189. package/lib/icons/summary.js +6 -0
  190. package/lib/icons/tag.js +95 -0
  191. package/lib/icons/tag_group.js +81 -0
  192. package/lib/icons/team.js +6 -0
  193. package/lib/icons/thumbs_down.js +6 -0
  194. package/lib/icons/thumbs_up.js +6 -0
  195. package/lib/icons/translate.js +6 -0
  196. package/lib/icons/trash.js +6 -0
  197. package/lib/icons/triangle_inverted.js +90 -0
  198. package/lib/icons/type_video.js +6 -0
  199. package/lib/icons/upload.js +6 -0
  200. package/lib/icons/video_fast_forward.js +85 -0
  201. package/lib/icons/video_next.js +85 -0
  202. package/lib/icons/video_pause.js +85 -0
  203. package/lib/icons/video_play.js +85 -0
  204. package/lib/icons/video_skip.js +85 -0
  205. package/lib/icons/videocamera.js +95 -0
  206. package/lib/icons/wand.js +6 -0
  207. package/lib/icons/wifi.js +6 -0
  208. package/lib/icons/x.js +6 -0
  209. package/lib/index.js +64 -68
  210. package/lib/stylesheets/particle.css +3710 -4065
  211. package/lib/stylesheets/particle.min.css +1 -2
  212. package/lib/stylesheets/particle.min.css.gz +0 -0
  213. package/lib/utils/class_names.js +8 -4
  214. package/lib/utils/dom.js +8 -4
  215. package/lib/utils/props.js +26 -2
  216. package/lib/utils/strings.js +6 -0
  217. package/lib/utils/types.js +1 -1
  218. package/package.json +10 -6
  219. package/styles/_base.scss +57 -9
  220. package/styles/_mixins.scss +10 -290
  221. package/styles/_reset.scss +12 -21
  222. package/styles/_theme_builder.scss +356 -0
  223. package/styles/_variables.scss +67 -36
  224. package/styles/components/_focus-intent.scss +3 -3
  225. package/styles/components/_icons.scss +0 -7
  226. package/styles/components/_links.scss +0 -36
  227. package/styles/components/attribute_selector/_base.scss +60 -0
  228. package/styles/components/attribute_selector/themes/_bandit.scss +18 -0
  229. package/styles/components/attribute_selector/themes/_researcher.scss +6 -0
  230. package/styles/components/attribute_selector/themes/_theme_builder.scss +33 -0
  231. package/styles/components/{_avatar.scss → avatar/_base.scss} +8 -10
  232. package/styles/components/avatar/themes/_bandit.scss +5 -0
  233. package/styles/components/avatar/themes/_researcher.scss +5 -0
  234. package/styles/components/avatar/themes/_theme_builder.scss +7 -0
  235. package/styles/components/{_blitz.scss → blitz/_base.scss} +14 -10
  236. package/styles/components/blitz/themes/_bandit.scss +5 -0
  237. package/styles/components/blitz/themes/_researcher.scss +6 -0
  238. package/styles/components/blitz/themes/_theme_builder.scss +1 -0
  239. package/styles/components/buttons/_base.scss +510 -0
  240. package/styles/components/buttons/themes/_bandit.scss +25 -0
  241. package/styles/components/buttons/themes/_researcher.scss +6 -0
  242. package/styles/components/buttons/themes/_theme_builder.scss +89 -0
  243. package/styles/components/card/_base.scss +88 -0
  244. package/styles/components/card/themes/_bandit.scss +5 -0
  245. package/styles/components/card/themes/_researcher.scss +5 -0
  246. package/styles/components/card/themes/_theme_builder.scss +25 -0
  247. package/styles/components/chip/_base.scss +38 -0
  248. package/styles/components/chip/themes/_bandit.scss +12 -0
  249. package/styles/components/chip/themes/_researcher.scss +5 -0
  250. package/styles/components/chip/themes/_theme_builder.scss +19 -0
  251. package/styles/components/collapsible/_base.scss +33 -0
  252. package/styles/components/collapsible/themes/_bandit.scss +5 -0
  253. package/styles/components/collapsible/themes/_researcher.scss +5 -0
  254. package/styles/components/collapsible/themes/_theme_builder.scss +1 -0
  255. package/styles/components/container/_base.scss +49 -0
  256. package/styles/components/container/themes/_bandit.scss +6 -0
  257. package/styles/components/container/themes/_researcher.scss +6 -0
  258. package/styles/components/container/themes/_theme_builder.scss +15 -0
  259. package/styles/components/drag_and_drop/_base.scss +46 -0
  260. package/styles/components/drag_and_drop/themes/_bandit.scss +7 -0
  261. package/styles/components/drag_and_drop/themes/_researcher.scss +6 -0
  262. package/styles/components/drag_and_drop/themes/_theme_builder.scss +21 -0
  263. package/styles/components/dropdown/_base.scss +62 -0
  264. package/styles/components/dropdown/themes/_bandit.scss +7 -0
  265. package/styles/components/dropdown/themes/_researcher.scss +6 -0
  266. package/styles/components/dropdown/themes/_theme_builder.scss +5 -0
  267. package/styles/components/footnote/_base.scss +11 -0
  268. package/styles/components/footnote/themes/_bandit.scss +5 -0
  269. package/styles/components/footnote/themes/_researcher.scss +5 -0
  270. package/styles/components/footnote/themes/_theme_builder.scss +1 -0
  271. package/styles/components/grid/_base.scss +41 -0
  272. package/styles/components/grid/themes/_bandit.scss +5 -0
  273. package/styles/components/grid/themes/_researcher.scss +5 -0
  274. package/styles/components/grid/themes/_theme_builder.scss +1 -0
  275. package/styles/components/input_group/_base.scss +74 -0
  276. package/styles/components/input_group/themes/_bandit.scss +7 -0
  277. package/styles/components/input_group/themes/_researcher.scss +6 -0
  278. package/styles/components/input_group/themes/_theme_builder.scss +5 -0
  279. package/styles/components/inputs/_base.scss +84 -0
  280. package/styles/components/inputs/themes/_bandit.scss +30 -0
  281. package/styles/components/inputs/themes/_researcher.scss +6 -0
  282. package/styles/components/inputs/themes/_theme_builder.scss +62 -0
  283. package/styles/components/{_list.scss → list/_base.scss} +39 -47
  284. package/styles/components/list/themes/_bandit.scss +5 -0
  285. package/styles/components/list/themes/_researcher.scss +6 -0
  286. package/styles/components/list/themes/_theme_builder.scss +1 -0
  287. package/styles/components/menu/_base.scss +184 -0
  288. package/styles/components/menu/themes/_bandit.scss +6 -0
  289. package/styles/components/menu/themes/_researcher.scss +6 -0
  290. package/styles/components/menu/themes/_theme_builder.scss +13 -0
  291. package/styles/components/modal/base.scss +69 -0
  292. package/styles/components/modal/themes/_bandit.scss +5 -0
  293. package/styles/components/modal/themes/_researcher.scss +6 -0
  294. package/styles/components/modal/themes/_theme_builder.scss +9 -0
  295. package/styles/components/pill/_base.scss +42 -0
  296. package/styles/components/pill/themes/_bandit.scss +6 -0
  297. package/styles/components/pill/themes/_researcher.scss +6 -0
  298. package/styles/components/pill/themes/_theme_builder.scss +11 -0
  299. package/styles/components/range/_base.scss +85 -0
  300. package/styles/components/range/themes/_bandit.scss +15 -0
  301. package/styles/components/range/themes/_researcher.scss +6 -0
  302. package/styles/components/range/themes/_theme_builder.scss +35 -0
  303. package/styles/components/segmented_controls/_base.scss +71 -0
  304. package/styles/components/segmented_controls/themes/_bandit.scss +6 -0
  305. package/styles/components/segmented_controls/themes/_researcher.scss +6 -0
  306. package/styles/components/segmented_controls/themes/_theme_builder.scss +1 -0
  307. package/styles/components/selectors/_base.scss +153 -0
  308. package/styles/components/selectors/themes/_bandit.scss +49 -0
  309. package/styles/components/selectors/themes/_researcher.scss +6 -0
  310. package/styles/components/selectors/themes/_theme_builder.scss +93 -0
  311. package/styles/components/separator/_base.scss +11 -0
  312. package/styles/components/separator/themes/_bandit.scss +5 -0
  313. package/styles/components/separator/themes/_researcher.scss +6 -0
  314. package/styles/components/separator/themes/_theme_builder.scss +1 -0
  315. package/styles/components/speech_bubble/_base.scss +34 -0
  316. package/styles/components/speech_bubble/themes/_bandit.scss +5 -0
  317. package/styles/components/speech_bubble/themes/_researcher.scss +6 -0
  318. package/styles/components/speech_bubble/themes/_theme_builder.scss +1 -0
  319. package/styles/components/swappable/_base.scss +41 -0
  320. package/styles/components/swappable/themes/_bandit.scss +5 -0
  321. package/styles/components/swappable/themes/_researcher.scss +6 -0
  322. package/styles/components/swappable/themes/_theme_builder.scss +1 -0
  323. package/styles/components/tags/_base.scss +27 -0
  324. package/styles/components/tags/themes/_bandit.scss +5 -0
  325. package/styles/components/tags/themes/_researcher.scss +6 -0
  326. package/styles/components/tags/themes/_theme_builder.scss +1 -0
  327. package/styles/components/thumbnail/_base.scss +32 -0
  328. package/styles/components/thumbnail/themes/_bandit.scss +5 -0
  329. package/styles/components/thumbnail/themes/_researcher.scss +5 -0
  330. package/styles/components/thumbnail/themes/_theme_builder.scss +5 -0
  331. package/styles/components/toggle/_base.scss +83 -0
  332. package/styles/components/toggle/themes/_bandit.scss +26 -0
  333. package/styles/components/toggle/themes/_researcher.scss +6 -0
  334. package/styles/components/toggle/themes/_theme_builder.scss +51 -0
  335. package/styles/components/tooltip/_base.scss +127 -0
  336. package/styles/components/tooltip/themes/_bandit.scss +5 -0
  337. package/styles/components/tooltip/themes/_researcher.scss +6 -0
  338. package/styles/components/tooltip/themes/_theme_builder.scss +1 -0
  339. package/styles/css_variables/_bandit.scss +45 -0
  340. package/styles/css_variables/_researcher.scss +5 -0
  341. package/styles/particle.scss +48 -36
  342. package/styles/themes/_bandit.scss +9 -0
  343. package/styles/themes/_researcher.scss +9 -0
  344. package/styles/utilities/_alignment.scss +199 -0
  345. package/styles/utilities/_borders.scss +50 -0
  346. package/styles/utilities/_colors.scss +606 -0
  347. package/styles/utilities/_dimensions.scss +265 -0
  348. package/styles/utilities/_display.scss +71 -0
  349. package/styles/utilities/_overflow.scss +74 -0
  350. package/styles/utilities/_position.scss +107 -0
  351. package/styles/utilities/_radii.scss +70 -0
  352. package/styles/utilities/_resizing.scss +42 -0
  353. package/styles/utilities/_shadows.scss +74 -0
  354. package/styles/utilities/_spacing.scss +579 -0
  355. package/styles/utilities/_typography.scss +409 -0
  356. package/styles/utilities/_visibility.scss +36 -0
  357. package/styles/utilities/_z_index.scss +24 -0
  358. package/lib/components/bug.js +0 -61
  359. package/lib/components/button_group.js +0 -55
  360. package/lib/components/button_link.js +0 -70
  361. package/lib/components/button_primary.js +0 -112
  362. package/lib/components/button_secondary.js +0 -93
  363. package/lib/components/fieldset.js +0 -59
  364. package/lib/components/scene.js +0 -68
  365. package/lib/components/validation_message.js +0 -49
  366. package/lib/components/with_affix.js +0 -114
  367. package/lib/icons/checkpoint/_checkpoint_filled.js +0 -32
  368. package/lib/icons/checkpoint/_checkpoint_unfilled.js +0 -29
  369. package/lib/icons/checkpoint/checkpoint.js +0 -57
  370. package/lib/utils/colors.js +0 -32
  371. package/styles/_borders.scss +0 -204
  372. package/styles/_colors.scss +0 -847
  373. package/styles/_helpers.scss +0 -660
  374. package/styles/_spacing.scss +0 -753
  375. package/styles/_typography.scss +0 -340
  376. package/styles/components/_affix.scss +0 -74
  377. package/styles/components/_attribute-selector.scss +0 -38
  378. package/styles/components/_bug.scss +0 -285
  379. package/styles/components/_buttons.scss +0 -1366
  380. package/styles/components/_card.scss +0 -113
  381. package/styles/components/_collapsible.scss +0 -30
  382. package/styles/components/_container.scss +0 -62
  383. package/styles/components/_drag_and_drop.scss +0 -42
  384. package/styles/components/_dropdown-input.scss +0 -45
  385. package/styles/components/_dropdown.scss +0 -31
  386. package/styles/components/_file-input.scss +0 -11
  387. package/styles/components/_flex.scss +0 -130
  388. package/styles/components/_footnote.scss +0 -15
  389. package/styles/components/_forms.scss +0 -474
  390. package/styles/components/_grid.scss +0 -90
  391. package/styles/components/_menu.scss +0 -183
  392. package/styles/components/_modal.scss +0 -74
  393. package/styles/components/_pill.scss +0 -101
  394. package/styles/components/_preview.scss +0 -30
  395. package/styles/components/_scene.scss +0 -46
  396. package/styles/components/_segmented-controls.scss +0 -51
  397. package/styles/components/_separator.scss +0 -48
  398. package/styles/components/_speech-bubble.scss +0 -29
  399. package/styles/components/_swappable.scss +0 -38
  400. package/styles/components/_tags.scss +0 -20
  401. package/styles/components/_tooltip.scss +0 -135
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
 
3
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
4
+
3
5
  Object.defineProperty(exports, "__esModule", {
4
6
  value: true
5
7
  });
@@ -12,21 +14,25 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
12
14
 
13
15
  var _class_names = _interopRequireDefault(require("../utils/class_names"));
14
16
 
15
- var _colors = require("../utils/colors");
16
-
17
17
  var _prop_types = require("./prop_types");
18
18
 
19
19
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20
20
 
21
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
21
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
22
+
23
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
22
24
 
23
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
25
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
24
26
 
25
- function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
27
+ function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
26
28
 
27
- function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
29
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
28
30
 
29
- function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
31
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
32
+
33
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
34
+
35
+ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
30
36
 
31
37
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
32
38
 
@@ -36,15 +42,19 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
36
42
 
37
43
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
38
44
 
45
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
46
+
47
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
48
+
49
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
50
+
39
51
  function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
40
52
 
41
53
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
42
54
 
43
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
55
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
44
56
 
45
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
46
-
47
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
57
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
48
58
 
49
59
  var propTypes = {
50
60
  _modifierClass: _propTypes.default.string,
@@ -91,15 +101,15 @@ function validateModifierClass(_modifierClass) {
91
101
  }
92
102
  }
93
103
 
94
- var CommonSVG =
95
- /*#__PURE__*/
96
- function (_Component) {
104
+ var CommonSVG = /*#__PURE__*/function (_Component) {
97
105
  _inherits(CommonSVG, _Component);
98
106
 
107
+ var _super = _createSuper(CommonSVG);
108
+
99
109
  function CommonSVG() {
100
110
  _classCallCheck(this, CommonSVG);
101
111
 
102
- return _possibleConstructorReturn(this, _getPrototypeOf(CommonSVG).apply(this, arguments));
112
+ return _super.apply(this, arguments);
103
113
  }
104
114
 
105
115
  _createClass(CommonSVG, [{
@@ -141,6 +151,8 @@ function (_Component) {
141
151
  }, {
142
152
  key: "render",
143
153
  value: function render() {
154
+ var _classNames;
155
+
144
156
  var _this$props = this.props,
145
157
  _modifierClass = _this$props._modifierClass,
146
158
  ariaDescribedby = _this$props['aria-describedby'],
@@ -156,10 +168,7 @@ function (_Component) {
156
168
  tightViewBox = _this$props.tightViewBox,
157
169
  title = _this$props.title,
158
170
  viewBox = _this$props.viewBox;
159
- var className = (0, _class_names.default)('icon', (0, _colors.iconSafeColor)(color), sizeClassName(size), _modifierClass, {
160
- 'icon--tight': tight,
161
- 'icon--spinning': spinning
162
- });
171
+ var className = (0, _class_names.default)('icon', sizeClassName(size), _modifierClass, (_classNames = {}, _defineProperty(_classNames, "color--".concat(color), color), _defineProperty(_classNames, 'icon--tight', tight), _defineProperty(_classNames, 'icon--spinning', spinning), _classNames));
163
172
  return _react.default.createElement("svg", {
164
173
  "aria-describedby": ariaDescribedby,
165
174
  "aria-hidden": ariaHidden,
@@ -181,5 +190,149 @@ function (_Component) {
181
190
 
182
191
  CommonSVG.defaultProps = defaultProps;
183
192
  CommonSVG.propTypes = propTypes;
193
+ CommonSVG.__docgenInfo = {
194
+ "description": "",
195
+ "methods": [{
196
+ "name": "getCenterPoint",
197
+ "docblock": null,
198
+ "modifiers": [],
199
+ "params": [],
200
+ "returns": null
201
+ }, {
202
+ "name": "getTransform",
203
+ "docblock": null,
204
+ "modifiers": [],
205
+ "params": [],
206
+ "returns": null
207
+ }],
208
+ "displayName": "CommonSVG",
209
+ "props": {
210
+ "size": {
211
+ "defaultValue": {
212
+ "value": "'S'",
213
+ "computed": false
214
+ },
215
+ "type": {
216
+ "name": "enum",
217
+ "computed": true,
218
+ "value": "SIZES"
219
+ },
220
+ "required": false,
221
+ "description": ""
222
+ },
223
+ "spinning": {
224
+ "defaultValue": {
225
+ "value": "false",
226
+ "computed": false
227
+ },
228
+ "type": {
229
+ "name": "bool"
230
+ },
231
+ "required": false,
232
+ "description": ""
233
+ },
234
+ "title": {
235
+ "defaultValue": {
236
+ "value": "''",
237
+ "computed": false
238
+ },
239
+ "type": {
240
+ "name": "string"
241
+ },
242
+ "required": false,
243
+ "description": ""
244
+ },
245
+ "viewBox": {
246
+ "defaultValue": {
247
+ "value": "'0 0 25 25'",
248
+ "computed": false
249
+ },
250
+ "type": {
251
+ "name": "string"
252
+ },
253
+ "required": false,
254
+ "description": ""
255
+ },
256
+ "_modifierClass": {
257
+ "type": {
258
+ "name": "string"
259
+ },
260
+ "required": false,
261
+ "description": ""
262
+ },
263
+ "aria-describedby": {
264
+ "type": {
265
+ "name": "string"
266
+ },
267
+ "required": false,
268
+ "description": ""
269
+ },
270
+ "aria-hidden": {
271
+ "type": {
272
+ "name": "bool"
273
+ },
274
+ "required": false,
275
+ "description": ""
276
+ },
277
+ "aria-label": {
278
+ "type": {
279
+ "name": "string"
280
+ },
281
+ "required": false,
282
+ "description": ""
283
+ },
284
+ "aria-labelledby": {
285
+ "type": {
286
+ "name": "string"
287
+ },
288
+ "required": false,
289
+ "description": ""
290
+ },
291
+ "children": {
292
+ "type": {
293
+ "name": "node"
294
+ },
295
+ "required": true,
296
+ "description": ""
297
+ },
298
+ "color": {
299
+ "type": {
300
+ "name": "enum",
301
+ "computed": true,
302
+ "value": "COLORS"
303
+ },
304
+ "required": false,
305
+ "description": ""
306
+ },
307
+ "id": {
308
+ "type": {
309
+ "name": "string"
310
+ },
311
+ "required": false,
312
+ "description": ""
313
+ },
314
+ "rotation": {
315
+ "type": {
316
+ "name": "number"
317
+ },
318
+ "required": false,
319
+ "description": ""
320
+ },
321
+ "tight": {
322
+ "type": {
323
+ "name": "bool"
324
+ },
325
+ "required": false,
326
+ "description": ""
327
+ },
328
+ "tightViewBox": {
329
+ "type": {
330
+ "name": "string"
331
+ },
332
+ "required": false,
333
+ "description": ""
334
+ }
335
+ }
336
+ };
184
337
  var _default = CommonSVG;
185
338
  exports.default = _default;
@@ -59,5 +59,11 @@ function IconDownload(_ref) {
59
59
  }
60
60
 
61
61
  IconDownload.propTypes = _prop_types.default;
62
+ IconDownload.__docgenInfo = {
63
+ "description": "",
64
+ "methods": [],
65
+ "displayName": "IconDownload",
66
+ "composes": ["./prop_types"]
67
+ };
62
68
  var _default = IconDownload;
63
69
  exports.default = _default;
@@ -58,5 +58,11 @@ function DragDots(_ref) {
58
58
  }
59
59
 
60
60
  DragDots.propTypes = _prop_types.default;
61
+ DragDots.__docgenInfo = {
62
+ "description": "",
63
+ "methods": [],
64
+ "displayName": "DragDots",
65
+ "composes": ["./prop_types"]
66
+ };
61
67
  var _default = DragDots;
62
68
  exports.default = _default;
@@ -45,5 +45,11 @@ function Dscout(_ref) {
45
45
  }
46
46
 
47
47
  Dscout.propTypes = _prop_types.default;
48
+ Dscout.__docgenInfo = {
49
+ "description": "",
50
+ "methods": [],
51
+ "displayName": "Dscout",
52
+ "composes": ["./prop_types"]
53
+ };
48
54
  var _default = Dscout;
49
55
  exports.default = _default;
package/lib/icons/edit.js CHANGED
@@ -53,5 +53,11 @@ function Edit(_ref) {
53
53
  }
54
54
 
55
55
  Edit.propTypes = _prop_types.default;
56
+ Edit.__docgenInfo = {
57
+ "description": "",
58
+ "methods": [],
59
+ "displayName": "Edit",
60
+ "composes": ["./prop_types"]
61
+ };
56
62
  var _default = Edit;
57
63
  exports.default = _default;
@@ -51,5 +51,11 @@ function Email(_ref) {
51
51
  }
52
52
 
53
53
  Email.propTypes = _prop_types.default;
54
+ Email.__docgenInfo = {
55
+ "description": "",
56
+ "methods": [],
57
+ "displayName": "Email",
58
+ "composes": ["./prop_types"]
59
+ };
54
60
  var _default = Email;
55
61
  exports.default = _default;
@@ -59,5 +59,11 @@ function IconExport(_ref) {
59
59
  }
60
60
 
61
61
  IconExport.propTypes = _prop_types.default;
62
+ IconExport.__docgenInfo = {
63
+ "description": "",
64
+ "methods": [],
65
+ "displayName": "IconExport",
66
+ "composes": ["./prop_types"]
67
+ };
62
68
  var _default = IconExport;
63
69
  exports.default = _default;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
 
3
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
4
+
3
5
  Object.defineProperty(exports, "__esModule", {
4
6
  value: true
5
7
  });
@@ -13,7 +15,9 @@ var _common_svg = _interopRequireDefault(require("./common_svg"));
13
15
 
14
16
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
17
 
16
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
18
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
19
+
20
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
17
21
 
18
22
  function renderContent(small) {
19
23
  if (small) return _react.default.createElement(_react.Fragment, null, _react.default.createElement("path", {
@@ -118,5 +122,11 @@ function ExpressMission(_ref) {
118
122
  }
119
123
 
120
124
  ExpressMission.propTypes = _prop_types.default;
125
+ ExpressMission.__docgenInfo = {
126
+ "description": "",
127
+ "methods": [],
128
+ "displayName": "ExpressMission",
129
+ "composes": ["./prop_types"]
130
+ };
121
131
  var _default = ExpressMission;
122
132
  exports.default = _default;
@@ -68,5 +68,11 @@ function ExpressMissionCard(_ref) {
68
68
  }
69
69
 
70
70
  ExpressMissionCard.propTypes = _prop_types.default;
71
+ ExpressMissionCard.__docgenInfo = {
72
+ "description": "",
73
+ "methods": [],
74
+ "displayName": "ExpressMissionCard",
75
+ "composes": ["./prop_types"]
76
+ };
71
77
  var _default = ExpressMissionCard;
72
78
  exports.default = _default;
@@ -54,5 +54,11 @@ function ExternalLink(_ref) {
54
54
  }
55
55
 
56
56
  ExternalLink.propTypes = _prop_types.default;
57
+ ExternalLink.__docgenInfo = {
58
+ "description": "",
59
+ "methods": [],
60
+ "displayName": "ExternalLink",
61
+ "composes": ["./prop_types"]
62
+ };
57
63
  var _default = ExternalLink;
58
64
  exports.default = _default;
package/lib/icons/eye.js CHANGED
@@ -201,5 +201,100 @@ function Eye(_ref) {
201
201
  }
202
202
 
203
203
  Eye.propTypes = propTypes;
204
+ Eye.__docgenInfo = {
205
+ "description": "",
206
+ "methods": [],
207
+ "displayName": "Eye",
208
+ "props": {
209
+ "_modifierClass": {
210
+ "type": {
211
+ "name": "string"
212
+ },
213
+ "required": false,
214
+ "description": ""
215
+ },
216
+ "aria-describedby": {
217
+ "type": {
218
+ "name": "string"
219
+ },
220
+ "required": false,
221
+ "description": ""
222
+ },
223
+ "aria-hidden": {
224
+ "type": {
225
+ "name": "bool"
226
+ },
227
+ "required": false,
228
+ "description": ""
229
+ },
230
+ "aria-label": {
231
+ "type": {
232
+ "name": "string"
233
+ },
234
+ "required": false,
235
+ "description": ""
236
+ },
237
+ "aria-labelledby": {
238
+ "type": {
239
+ "name": "string"
240
+ },
241
+ "required": false,
242
+ "description": ""
243
+ },
244
+ "color": {
245
+ "type": {
246
+ "name": "enum",
247
+ "computed": true,
248
+ "value": "COLORS"
249
+ },
250
+ "required": false,
251
+ "description": ""
252
+ },
253
+ "id": {
254
+ "type": {
255
+ "name": "string"
256
+ },
257
+ "required": false,
258
+ "description": ""
259
+ },
260
+ "size": {
261
+ "type": {
262
+ "name": "enum",
263
+ "computed": true,
264
+ "value": "SIZES"
265
+ },
266
+ "required": false,
267
+ "description": ""
268
+ },
269
+ "small": {
270
+ "type": {
271
+ "name": "bool"
272
+ },
273
+ "required": false,
274
+ "description": ""
275
+ },
276
+ "strike": {
277
+ "type": {
278
+ "name": "bool"
279
+ },
280
+ "required": false,
281
+ "description": ""
282
+ },
283
+ "tight": {
284
+ "type": {
285
+ "name": "bool"
286
+ },
287
+ "required": false,
288
+ "description": ""
289
+ },
290
+ "title": {
291
+ "type": {
292
+ "name": "string"
293
+ },
294
+ "required": false,
295
+ "description": ""
296
+ }
297
+ }
298
+ };
204
299
  var _default = Eye;
205
300
  exports.default = _default;
@@ -70,5 +70,11 @@ function FileTypeText(_ref) {
70
70
  }
71
71
 
72
72
  FileTypeText.propTypes = _prop_types.default;
73
+ FileTypeText.__docgenInfo = {
74
+ "description": "",
75
+ "methods": [],
76
+ "displayName": "FileTypeText",
77
+ "composes": ["./prop_types"]
78
+ };
73
79
  var _default = FileTypeText;
74
80
  exports.default = _default;
@@ -55,5 +55,11 @@ function Filter(_ref) {
55
55
  }
56
56
 
57
57
  Filter.propTypes = _prop_types.default;
58
+ Filter.__docgenInfo = {
59
+ "description": "",
60
+ "methods": [],
61
+ "displayName": "Filter",
62
+ "composes": ["./prop_types"]
63
+ };
58
64
  var _default = Filter;
59
65
  exports.default = _default;
package/lib/icons/fit.js CHANGED
@@ -51,5 +51,11 @@ function Fit(_ref) {
51
51
  }
52
52
 
53
53
  Fit.propTypes = _prop_types.default;
54
+ Fit.__docgenInfo = {
55
+ "description": "",
56
+ "methods": [],
57
+ "displayName": "Fit",
58
+ "composes": ["./prop_types"]
59
+ };
54
60
  var _default = Fit;
55
61
  exports.default = _default;
@@ -100,5 +100,93 @@ function Folder(_ref) {
100
100
  }
101
101
 
102
102
  Folder.propTypes = propTypes;
103
+ Folder.__docgenInfo = {
104
+ "description": "",
105
+ "methods": [],
106
+ "displayName": "Folder",
107
+ "props": {
108
+ "_modifierClass": {
109
+ "type": {
110
+ "name": "string"
111
+ },
112
+ "required": false,
113
+ "description": ""
114
+ },
115
+ "aria-describedby": {
116
+ "type": {
117
+ "name": "string"
118
+ },
119
+ "required": false,
120
+ "description": ""
121
+ },
122
+ "aria-hidden": {
123
+ "type": {
124
+ "name": "bool"
125
+ },
126
+ "required": false,
127
+ "description": ""
128
+ },
129
+ "aria-label": {
130
+ "type": {
131
+ "name": "string"
132
+ },
133
+ "required": false,
134
+ "description": ""
135
+ },
136
+ "aria-labelledby": {
137
+ "type": {
138
+ "name": "string"
139
+ },
140
+ "required": false,
141
+ "description": ""
142
+ },
143
+ "color": {
144
+ "type": {
145
+ "name": "enum",
146
+ "computed": true,
147
+ "value": "COLORS"
148
+ },
149
+ "required": false,
150
+ "description": ""
151
+ },
152
+ "id": {
153
+ "type": {
154
+ "name": "string"
155
+ },
156
+ "required": false,
157
+ "description": ""
158
+ },
159
+ "size": {
160
+ "type": {
161
+ "name": "enum",
162
+ "computed": true,
163
+ "value": "SIZES"
164
+ },
165
+ "required": false,
166
+ "description": ""
167
+ },
168
+ "small": {
169
+ "type": {
170
+ "name": "bool"
171
+ },
172
+ "required": false,
173
+ "description": ""
174
+ },
175
+ "tight": {
176
+ "type": {
177
+ "name": "bool"
178
+ },
179
+ "required": false,
180
+ "description": ""
181
+ },
182
+ "title": {
183
+ "type": {
184
+ "name": "string"
185
+ },
186
+ "required": false,
187
+ "description": ""
188
+ }
189
+ }
190
+ };
103
191
  var _default = Folder;
104
192
  exports.default = _default;
@@ -44,5 +44,11 @@ function GoodEmoticon(_ref) {
44
44
  }
45
45
 
46
46
  GoodEmoticon.propTypes = _prop_types.default;
47
+ GoodEmoticon.__docgenInfo = {
48
+ "description": "",
49
+ "methods": [],
50
+ "displayName": "GoodEmoticon",
51
+ "composes": ["./prop_types"]
52
+ };
47
53
  var _default = GoodEmoticon;
48
54
  exports.default = _default;
package/lib/icons/grid.js CHANGED
@@ -47,5 +47,11 @@ function Grid(_ref) {
47
47
  }
48
48
 
49
49
  Grid.propTypes = _prop_types.default;
50
+ Grid.__docgenInfo = {
51
+ "description": "",
52
+ "methods": [],
53
+ "displayName": "Grid",
54
+ "composes": ["./prop_types"]
55
+ };
50
56
  var _default = Grid;
51
57
  exports.default = _default;
package/lib/icons/grip.js CHANGED
@@ -44,5 +44,11 @@ function Grip(_ref) {
44
44
  }
45
45
 
46
46
  Grip.propTypes = _prop_types.default;
47
+ Grip.__docgenInfo = {
48
+ "description": "",
49
+ "methods": [],
50
+ "displayName": "Grip",
51
+ "composes": ["./prop_types"]
52
+ };
47
53
  var _default = Grip;
48
54
  exports.default = _default;