@elastic/eui 62.0.3 → 63.0.0

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 (500) hide show
  1. package/dist/eui_charts_theme.js +330 -330
  2. package/dist/eui_charts_theme.js.map +1 -1
  3. package/dist/eui_theme_dark.css +4 -1053
  4. package/dist/eui_theme_dark.json +0 -57
  5. package/dist/eui_theme_dark.json.d.ts +0 -57
  6. package/dist/eui_theme_dark.min.css +1 -1
  7. package/dist/eui_theme_light.css +4 -1053
  8. package/dist/eui_theme_light.json +0 -57
  9. package/dist/eui_theme_light.json.d.ts +0 -57
  10. package/dist/eui_theme_light.min.css +1 -1
  11. package/es/components/bottom_bar/bottom_bar.js +20 -3
  12. package/es/components/breadcrumbs/breadcrumb.js +199 -0
  13. package/es/components/breadcrumbs/breadcrumb.styles.js +61 -0
  14. package/es/components/breadcrumbs/breadcrumbs.js +115 -187
  15. package/es/components/breadcrumbs/breadcrumbs.styles.js +30 -0
  16. package/es/components/code/code_block.js +119 -107
  17. package/es/components/collapsible_nav/collapsible_nav.js +2 -2
  18. package/es/components/control_bar/control_bar.js +13 -0
  19. package/es/components/datagrid/body/data_grid_body.js +12 -2
  20. package/es/components/datagrid/body/data_grid_cell.js +31 -3
  21. package/es/components/datagrid/body/header/data_grid_header_row.js +1 -1
  22. package/es/components/datagrid/controls/column_sorting_draggable.js +1 -1
  23. package/es/components/datagrid/data_grid.js +10 -2
  24. package/es/components/datagrid/utils/row_heights.js +33 -4
  25. package/es/components/date_picker/super_date_picker/super_date_picker.js +2 -2
  26. package/es/components/date_picker/super_date_picker/super_update_button.js +1 -1
  27. package/es/components/description_list/description_list.js +22 -26
  28. package/es/components/description_list/description_list.styles.js +25 -0
  29. package/es/components/description_list/description_list_context.js +14 -0
  30. package/es/components/description_list/description_list_description.js +43 -2
  31. package/es/components/description_list/description_list_description.styles.js +47 -0
  32. package/es/components/description_list/description_list_title.js +43 -2
  33. package/es/components/description_list/description_list_title.styles.js +37 -0
  34. package/es/components/description_list/description_list_types.js +10 -0
  35. package/es/components/header/header.js +3 -27
  36. package/es/components/header/header_breadcrumbs/header_breadcrumbs.js +22 -2
  37. package/es/components/header/header_breadcrumbs/header_breadcrumbs.styles.js +15 -0
  38. package/es/components/header/header_links/header_links.js +11 -10
  39. package/es/components/icon/assets/tokenStruct.js +1 -1
  40. package/es/components/index.js +1 -0
  41. package/es/components/page/_bottom_border.js +1 -0
  42. package/es/components/page/_restrict_width.js +34 -7
  43. package/es/components/page/index.js +5 -3
  44. package/es/components/page/page.js +19 -30
  45. package/es/components/page/page.styles.js +43 -0
  46. package/es/components/page/page_body/page_body.js +18 -26
  47. package/es/components/page/page_body/page_body.styles.js +16 -0
  48. package/es/components/page/page_content/index.js +4 -4
  49. package/es/components/page/page_content/page_content.js +7 -2
  50. package/es/components/page/page_content/page_content_body.js +12 -7
  51. package/es/components/page/page_content/page_content_header.js +7 -2
  52. package/es/components/page/page_content/page_content_header_section.js +7 -2
  53. package/es/components/page/page_header/page_header.js +29 -171
  54. package/es/components/page/page_header/page_header.styles.js +16 -0
  55. package/es/components/page/page_header/page_header_content.js +85 -16
  56. package/es/components/page/page_header/page_header_content.styles.js +84 -0
  57. package/es/components/page/page_section/index.js +8 -0
  58. package/es/components/page/page_section/page_section.js +102 -0
  59. package/es/components/page/page_section/page_section.styles.js +43 -0
  60. package/es/components/page/page_side_bar/index.js +1 -1
  61. package/es/components/page/page_side_bar/page_side_bar.js +8 -3
  62. package/es/components/page/page_sidebar/index.js +8 -0
  63. package/es/components/page/page_sidebar/page_sidebar.js +110 -0
  64. package/es/components/page/page_sidebar/page_sidebar.styles.js +29 -0
  65. package/es/components/page/page_template.js +54 -153
  66. package/es/components/page_template/bottom_bar/page_bottom_bar.js +102 -0
  67. package/es/components/page_template/empty_prompt/page_empty_prompt.js +107 -0
  68. package/es/components/page_template/index.js +8 -0
  69. package/es/components/page_template/inner/index.js +8 -0
  70. package/es/components/page_template/inner/page_inner.js +51 -0
  71. package/es/components/page_template/inner/page_inner.styles.js +22 -0
  72. package/es/components/page_template/outer/index.js +8 -0
  73. package/es/components/page_template/outer/page_outer.js +59 -0
  74. package/es/components/page_template/outer/page_outer.styles.js +49 -0
  75. package/es/components/page_template/page_template.js +376 -0
  76. package/es/components/pagination/pagination.js +1 -1
  77. package/es/components/panel/split_panel/split_panel.js +2 -2
  78. package/es/components/provider/provider.js +2 -2
  79. package/es/components/responsive/hide_for.js +6 -38
  80. package/es/components/responsive/show_for.js +6 -38
  81. package/es/components/selectable/selectable_templates/selectable_template_sitewide.js +17 -36
  82. package/es/components/side_nav/side_nav.js +1 -1
  83. package/es/components/table/table_row_cell.js +1 -2
  84. package/es/components/toast/global_toast_list.js +208 -241
  85. package/es/components/toast/global_toast_list.styles.js +38 -0
  86. package/es/components/toast/global_toast_list_item.js +12 -7
  87. package/es/components/toast/toast.js +25 -25
  88. package/es/components/toast/toast.styles.js +55 -0
  89. package/es/components/token/index.js +2 -1
  90. package/es/components/token/token.js +48 -112
  91. package/es/components/token/token.styles.js +93 -0
  92. package/es/components/token/token_map.js +6 -9
  93. package/es/components/token/token_types.js +11 -0
  94. package/es/global_styling/functions/logicals.js +1 -1
  95. package/es/global_styling/mixins/_helpers.js +27 -9
  96. package/es/global_styling/reset/global_styles.js +1 -1
  97. package/es/services/{breakpoint.js → breakpoint/breakpoint.js} +4 -9
  98. package/es/services/{hooks/useIsWithinBreakpoints.js → breakpoint/currentEuiBreakpoint.js} +36 -28
  99. package/es/services/breakpoint/index.js +10 -0
  100. package/es/services/breakpoint/useIsWithinBreakpoints.js +24 -0
  101. package/es/services/hooks/index.js +0 -1
  102. package/es/services/index.js +1 -1
  103. package/es/test/rtl/component_helpers.js +60 -1
  104. package/eui.d.ts +2100 -1504
  105. package/i18ntokens.json +36 -36
  106. package/lib/components/bottom_bar/bottom_bar.js +20 -3
  107. package/lib/components/breadcrumbs/breadcrumb.js +225 -0
  108. package/lib/components/breadcrumbs/breadcrumb.styles.js +68 -0
  109. package/lib/components/breadcrumbs/breadcrumbs.js +125 -188
  110. package/lib/components/breadcrumbs/breadcrumbs.styles.js +33 -0
  111. package/lib/components/code/code_block.js +118 -106
  112. package/lib/components/collapsible_nav/collapsible_nav.js +2 -2
  113. package/lib/components/control_bar/control_bar.js +13 -0
  114. package/lib/components/datagrid/body/data_grid_body.js +12 -2
  115. package/lib/components/datagrid/body/data_grid_cell.js +31 -3
  116. package/lib/components/datagrid/body/header/data_grid_header_row.js +1 -1
  117. package/lib/components/datagrid/controls/column_sorting_draggable.js +1 -1
  118. package/lib/components/datagrid/data_grid.js +10 -2
  119. package/lib/components/datagrid/utils/row_heights.js +33 -4
  120. package/lib/components/date_picker/super_date_picker/super_date_picker.js +2 -2
  121. package/lib/components/date_picker/super_date_picker/super_update_button.js +1 -1
  122. package/lib/components/description_list/description_list.js +25 -31
  123. package/lib/components/description_list/description_list.styles.js +36 -0
  124. package/lib/components/description_list/description_list_context.js +24 -0
  125. package/lib/components/description_list/description_list_description.js +52 -2
  126. package/lib/components/description_list/description_list_description.styles.js +51 -0
  127. package/lib/components/description_list/description_list_title.js +52 -2
  128. package/lib/components/description_list/description_list_title.styles.js +50 -0
  129. package/lib/components/description_list/description_list_types.js +20 -0
  130. package/lib/components/header/header.js +3 -27
  131. package/lib/components/header/header_breadcrumbs/header_breadcrumbs.js +24 -2
  132. package/lib/components/header/header_breadcrumbs/header_breadcrumbs.styles.js +26 -0
  133. package/lib/components/header/header_links/header_links.js +10 -9
  134. package/lib/components/icon/assets/tokenStruct.js +1 -1
  135. package/lib/components/icon/svgs/tokens/tokenStruct.svg +1 -1
  136. package/lib/components/index.js +13 -0
  137. package/lib/components/page/_bottom_border.js +5 -0
  138. package/lib/components/page/_restrict_width.js +38 -7
  139. package/lib/components/page/index.js +28 -12
  140. package/lib/components/page/page.js +22 -34
  141. package/lib/components/page/page.styles.js +46 -0
  142. package/lib/components/page/page_body/page_body.js +20 -29
  143. package/lib/components/page/page_body/page_body.styles.js +27 -0
  144. package/lib/components/page/page_content/index.js +8 -8
  145. package/lib/components/page/page_content/page_content.js +8 -4
  146. package/lib/components/page/page_content/page_content_body.js +13 -9
  147. package/lib/components/page/page_content/page_content_header.js +8 -4
  148. package/lib/components/page/page_content/page_content_header_section.js +8 -4
  149. package/lib/components/page/page_header/page_header.js +31 -174
  150. package/lib/components/page/page_header/page_header.styles.js +27 -0
  151. package/lib/components/page/page_header/page_header_content.js +111 -18
  152. package/lib/components/page/page_header/page_header_content.styles.js +87 -0
  153. package/lib/components/page/page_section/index.js +13 -0
  154. package/lib/components/page/page_section/page_section.js +113 -0
  155. package/lib/components/page/page_section/page_section.styles.js +51 -0
  156. package/lib/components/page/page_side_bar/index.js +2 -2
  157. package/lib/components/page/page_side_bar/page_side_bar.js +9 -5
  158. package/lib/components/page/page_sidebar/index.js +13 -0
  159. package/lib/components/page/page_sidebar/page_sidebar.js +124 -0
  160. package/lib/components/page/page_sidebar/page_sidebar.styles.js +32 -0
  161. package/lib/components/page/page_template.js +76 -176
  162. package/lib/components/page_template/bottom_bar/page_bottom_bar.js +114 -0
  163. package/lib/components/page_template/empty_prompt/page_empty_prompt.js +116 -0
  164. package/lib/components/page_template/index.js +13 -0
  165. package/lib/components/page_template/inner/index.js +13 -0
  166. package/lib/components/page_template/inner/page_inner.js +60 -0
  167. package/lib/components/page_template/inner/page_inner.styles.js +35 -0
  168. package/lib/components/page_template/outer/index.js +13 -0
  169. package/lib/components/page_template/outer/page_outer.js +68 -0
  170. package/lib/components/page_template/outer/page_outer.styles.js +51 -0
  171. package/lib/components/page_template/page_template.js +399 -0
  172. package/lib/components/pagination/pagination.js +1 -1
  173. package/lib/components/panel/split_panel/split_panel.js +3 -3
  174. package/lib/components/provider/provider.js +1 -1
  175. package/lib/components/responsive/hide_for.js +12 -44
  176. package/lib/components/responsive/show_for.js +12 -44
  177. package/lib/components/selectable/selectable_templates/selectable_template_sitewide.js +15 -35
  178. package/lib/components/side_nav/side_nav.js +1 -1
  179. package/lib/components/table/table_row_cell.js +1 -3
  180. package/lib/components/toast/global_toast_list.js +209 -238
  181. package/lib/components/toast/global_toast_list.styles.js +45 -0
  182. package/lib/components/toast/global_toast_list_item.js +14 -7
  183. package/lib/components/toast/toast.js +27 -25
  184. package/lib/components/toast/toast.styles.js +66 -0
  185. package/lib/components/token/index.js +5 -3
  186. package/lib/components/token/token.js +50 -120
  187. package/lib/components/token/token.styles.js +101 -0
  188. package/lib/components/token/token_map.js +6 -9
  189. package/lib/components/token/token_types.js +22 -0
  190. package/lib/global_styling/functions/logicals.js +1 -1
  191. package/lib/global_styling/mixins/_helpers.js +27 -9
  192. package/lib/global_styling/reset/global_styles.js +1 -1
  193. package/{test-env/services → lib/services/breakpoint}/breakpoint.js +5 -9
  194. package/lib/services/breakpoint/currentEuiBreakpoint.js +80 -0
  195. package/lib/services/breakpoint/index.js +44 -0
  196. package/lib/services/breakpoint/useIsWithinBreakpoints.js +34 -0
  197. package/lib/services/hooks/index.js +0 -13
  198. package/lib/services/index.js +28 -0
  199. package/lib/test/rtl/component_helpers.js +69 -3
  200. package/optimize/es/components/bottom_bar/bottom_bar.js +1 -1
  201. package/optimize/es/components/breadcrumbs/breadcrumb.js +136 -0
  202. package/optimize/es/components/breadcrumbs/breadcrumb.styles.js +61 -0
  203. package/optimize/es/components/breadcrumbs/breadcrumbs.js +92 -165
  204. package/optimize/es/components/breadcrumbs/breadcrumbs.styles.js +30 -0
  205. package/optimize/es/components/code/code_block.js +106 -107
  206. package/optimize/es/components/datagrid/body/data_grid_body.js +2 -0
  207. package/optimize/es/components/datagrid/body/data_grid_cell.js +13 -1
  208. package/optimize/es/components/datagrid/utils/row_heights.js +33 -4
  209. package/optimize/es/components/description_list/description_list.js +20 -24
  210. package/optimize/es/components/description_list/description_list.styles.js +25 -0
  211. package/optimize/es/components/description_list/description_list_context.js +14 -0
  212. package/optimize/es/components/description_list/description_list_description.js +32 -2
  213. package/optimize/es/components/description_list/description_list_description.styles.js +47 -0
  214. package/optimize/es/components/description_list/description_list_title.js +32 -2
  215. package/optimize/es/components/description_list/description_list_title.styles.js +37 -0
  216. package/optimize/es/components/description_list/description_list_types.js +10 -0
  217. package/optimize/es/components/header/header.js +2 -0
  218. package/optimize/es/components/header/header_breadcrumbs/header_breadcrumbs.js +8 -1
  219. package/optimize/es/components/header/header_breadcrumbs/header_breadcrumbs.styles.js +15 -0
  220. package/optimize/es/components/header/header_links/header_links.js +10 -9
  221. package/optimize/es/components/icon/assets/tokenStruct.js +1 -1
  222. package/optimize/es/components/index.js +1 -0
  223. package/optimize/es/components/page/_bottom_border.js +1 -0
  224. package/optimize/es/components/page/_restrict_width.js +34 -7
  225. package/optimize/es/components/page/index.js +5 -3
  226. package/optimize/es/components/page/page.js +18 -28
  227. package/optimize/es/components/page/page.styles.js +43 -0
  228. package/optimize/es/components/page/page_body/page_body.js +18 -25
  229. package/optimize/es/components/page/page_body/page_body.styles.js +16 -0
  230. package/optimize/es/components/page/page_content/index.js +4 -4
  231. package/optimize/es/components/page/page_content/page_content.js +6 -1
  232. package/optimize/es/components/page/page_content/page_content_body.js +10 -5
  233. package/optimize/es/components/page/page_content/page_content_header.js +6 -1
  234. package/optimize/es/components/page/page_content/page_content_header_section.js +6 -1
  235. package/optimize/es/components/page/page_header/page_header.js +20 -32
  236. package/optimize/es/components/page/page_header/page_header.styles.js +16 -0
  237. package/optimize/es/components/page/page_header/page_header_content.js +62 -14
  238. package/optimize/es/components/page/page_header/page_header_content.styles.js +84 -0
  239. package/optimize/es/components/page/page_section/index.js +8 -0
  240. package/optimize/es/components/page/page_section/page_section.js +51 -0
  241. package/optimize/es/components/page/page_section/page_section.styles.js +43 -0
  242. package/optimize/es/components/page/page_side_bar/index.js +1 -1
  243. package/optimize/es/components/page/page_side_bar/page_side_bar.js +6 -1
  244. package/optimize/es/components/page/page_sidebar/index.js +8 -0
  245. package/optimize/es/components/page/page_sidebar/page_sidebar.js +60 -0
  246. package/optimize/es/components/page/page_sidebar/page_sidebar.styles.js +29 -0
  247. package/optimize/es/components/page/page_template.js +29 -9
  248. package/optimize/es/components/page_template/bottom_bar/page_bottom_bar.js +70 -0
  249. package/optimize/es/components/page_template/empty_prompt/page_empty_prompt.js +61 -0
  250. package/optimize/es/components/page_template/index.js +8 -0
  251. package/optimize/es/components/page_template/inner/index.js +8 -0
  252. package/optimize/es/components/page_template/inner/page_inner.js +47 -0
  253. package/optimize/es/components/page_template/inner/page_inner.styles.js +22 -0
  254. package/optimize/es/components/page_template/outer/index.js +8 -0
  255. package/optimize/es/components/page_template/outer/page_outer.js +33 -0
  256. package/optimize/es/components/page_template/outer/page_outer.styles.js +49 -0
  257. package/optimize/es/components/page_template/page_template.js +202 -0
  258. package/optimize/es/components/panel/split_panel/split_panel.js +1 -1
  259. package/optimize/es/components/provider/provider.js +2 -2
  260. package/optimize/es/components/responsive/hide_for.js +5 -27
  261. package/optimize/es/components/responsive/show_for.js +5 -27
  262. package/optimize/es/components/selectable/selectable_templates/selectable_template_sitewide.js +16 -35
  263. package/optimize/es/components/table/table_row_cell.js +1 -2
  264. package/optimize/es/components/toast/global_toast_list.js +199 -230
  265. package/optimize/es/components/toast/global_toast_list.styles.js +38 -0
  266. package/optimize/es/components/toast/global_toast_list_item.js +11 -6
  267. package/optimize/es/components/toast/toast.js +24 -24
  268. package/optimize/es/components/toast/toast.styles.js +55 -0
  269. package/optimize/es/components/token/index.js +2 -1
  270. package/optimize/es/components/token/token.js +46 -69
  271. package/optimize/es/components/token/token.styles.js +83 -0
  272. package/optimize/es/components/token/token_map.js +6 -9
  273. package/optimize/es/components/token/token_types.js +11 -0
  274. package/optimize/es/global_styling/functions/logicals.js +1 -1
  275. package/optimize/es/global_styling/mixins/_helpers.js +27 -9
  276. package/optimize/es/global_styling/reset/global_styles.js +1 -1
  277. package/optimize/es/services/{breakpoint.js → breakpoint/breakpoint.js} +4 -9
  278. package/optimize/es/services/breakpoint/currentEuiBreakpoint.js +53 -0
  279. package/optimize/es/services/breakpoint/index.js +10 -0
  280. package/optimize/es/services/breakpoint/useIsWithinBreakpoints.js +24 -0
  281. package/optimize/es/services/hooks/index.js +0 -1
  282. package/optimize/es/services/index.js +1 -1
  283. package/optimize/es/test/rtl/component_helpers.js +60 -1
  284. package/optimize/lib/components/bottom_bar/bottom_bar.js +1 -1
  285. package/optimize/lib/components/breadcrumbs/breadcrumb.js +162 -0
  286. package/optimize/lib/components/breadcrumbs/breadcrumb.styles.js +68 -0
  287. package/optimize/lib/components/breadcrumbs/breadcrumbs.js +99 -164
  288. package/optimize/lib/components/breadcrumbs/breadcrumbs.styles.js +33 -0
  289. package/optimize/lib/components/code/code_block.js +105 -106
  290. package/optimize/lib/components/datagrid/body/data_grid_body.js +2 -0
  291. package/optimize/lib/components/datagrid/body/data_grid_cell.js +13 -1
  292. package/optimize/lib/components/datagrid/utils/row_heights.js +33 -4
  293. package/optimize/lib/components/description_list/description_list.js +23 -28
  294. package/optimize/lib/components/description_list/description_list.styles.js +36 -0
  295. package/optimize/lib/components/description_list/description_list_context.js +24 -0
  296. package/optimize/lib/components/description_list/description_list_description.js +43 -2
  297. package/optimize/lib/components/description_list/description_list_description.styles.js +51 -0
  298. package/optimize/lib/components/description_list/description_list_title.js +43 -2
  299. package/optimize/lib/components/description_list/description_list_title.styles.js +50 -0
  300. package/optimize/lib/components/description_list/description_list_types.js +20 -0
  301. package/optimize/lib/components/header/header.js +2 -0
  302. package/optimize/lib/components/header/header_breadcrumbs/header_breadcrumbs.js +10 -1
  303. package/optimize/lib/components/header/header_breadcrumbs/header_breadcrumbs.styles.js +26 -0
  304. package/optimize/lib/components/header/header_links/header_links.js +9 -8
  305. package/optimize/lib/components/icon/assets/tokenStruct.js +1 -1
  306. package/optimize/lib/components/icon/svgs/tokens/tokenStruct.svg +1 -1
  307. package/optimize/lib/components/index.js +13 -0
  308. package/optimize/lib/components/page/_bottom_border.js +5 -0
  309. package/optimize/lib/components/page/_restrict_width.js +38 -7
  310. package/optimize/lib/components/page/index.js +28 -12
  311. package/optimize/lib/components/page/page.js +21 -33
  312. package/optimize/lib/components/page/page.styles.js +46 -0
  313. package/optimize/lib/components/page/page_body/page_body.js +20 -29
  314. package/optimize/lib/components/page/page_body/page_body.styles.js +27 -0
  315. package/optimize/lib/components/page/page_content/index.js +8 -8
  316. package/optimize/lib/components/page/page_content/page_content.js +7 -3
  317. package/optimize/lib/components/page/page_content/page_content_body.js +11 -7
  318. package/optimize/lib/components/page/page_content/page_content_header.js +7 -3
  319. package/optimize/lib/components/page/page_content/page_content_header_section.js +7 -3
  320. package/optimize/lib/components/page/page_header/page_header.js +22 -36
  321. package/optimize/lib/components/page/page_header/page_header.styles.js +27 -0
  322. package/optimize/lib/components/page/page_header/page_header_content.js +68 -15
  323. package/optimize/lib/components/page/page_header/page_header_content.styles.js +87 -0
  324. package/optimize/lib/components/page/page_section/index.js +13 -0
  325. package/optimize/lib/components/page/page_section/page_section.js +62 -0
  326. package/optimize/lib/components/page/page_section/page_section.styles.js +51 -0
  327. package/optimize/lib/components/page/page_side_bar/index.js +2 -2
  328. package/optimize/lib/components/page/page_side_bar/page_side_bar.js +7 -3
  329. package/optimize/lib/components/page/page_sidebar/index.js +13 -0
  330. package/optimize/lib/components/page/page_sidebar/page_sidebar.js +79 -0
  331. package/optimize/lib/components/page/page_sidebar/page_sidebar.styles.js +32 -0
  332. package/optimize/lib/components/page/page_template.js +51 -33
  333. package/optimize/lib/components/page_template/bottom_bar/page_bottom_bar.js +85 -0
  334. package/optimize/lib/components/page_template/empty_prompt/page_empty_prompt.js +71 -0
  335. package/optimize/lib/components/page_template/index.js +13 -0
  336. package/optimize/lib/components/page_template/inner/index.js +13 -0
  337. package/optimize/lib/components/page_template/inner/page_inner.js +57 -0
  338. package/optimize/lib/components/page_template/inner/page_inner.styles.js +35 -0
  339. package/optimize/lib/components/page_template/outer/index.js +13 -0
  340. package/optimize/lib/components/page_template/outer/page_outer.js +42 -0
  341. package/optimize/lib/components/page_template/outer/page_outer.styles.js +51 -0
  342. package/optimize/lib/components/page_template/page_template.js +228 -0
  343. package/optimize/lib/components/panel/split_panel/split_panel.js +2 -2
  344. package/optimize/lib/components/provider/provider.js +1 -1
  345. package/optimize/lib/components/responsive/hide_for.js +4 -33
  346. package/optimize/lib/components/responsive/show_for.js +4 -33
  347. package/optimize/lib/components/selectable/selectable_templates/selectable_template_sitewide.js +14 -34
  348. package/optimize/lib/components/table/table_row_cell.js +1 -3
  349. package/optimize/lib/components/toast/global_toast_list.js +206 -220
  350. package/optimize/lib/components/toast/global_toast_list.styles.js +47 -0
  351. package/optimize/lib/components/toast/global_toast_list_item.js +14 -7
  352. package/optimize/lib/components/toast/toast.js +26 -24
  353. package/optimize/lib/components/toast/toast.styles.js +66 -0
  354. package/optimize/lib/components/token/index.js +5 -3
  355. package/optimize/lib/components/token/token.js +50 -76
  356. package/optimize/lib/components/token/token.styles.js +91 -0
  357. package/optimize/lib/components/token/token_map.js +6 -9
  358. package/optimize/lib/components/token/token_types.js +22 -0
  359. package/optimize/lib/global_styling/functions/logicals.js +1 -1
  360. package/optimize/lib/global_styling/mixins/_helpers.js +27 -9
  361. package/optimize/lib/global_styling/reset/global_styles.js +1 -1
  362. package/optimize/lib/services/{breakpoint.js → breakpoint/breakpoint.js} +5 -9
  363. package/optimize/lib/services/breakpoint/currentEuiBreakpoint.js +81 -0
  364. package/optimize/lib/services/breakpoint/index.js +44 -0
  365. package/optimize/lib/services/breakpoint/useIsWithinBreakpoints.js +34 -0
  366. package/optimize/lib/services/hooks/index.js +0 -13
  367. package/optimize/lib/services/index.js +28 -0
  368. package/optimize/lib/test/rtl/component_helpers.js +69 -3
  369. package/package.json +2 -2
  370. package/src/components/control_bar/_control_bar.scss +1 -1
  371. package/src/components/header/_index.scss +0 -1
  372. package/src/components/index.scss +0 -5
  373. package/src/components/page/_index.scss +0 -5
  374. package/src/components/page/page_content/_page_content_body.scss +10 -1
  375. package/src/components/tabs/_tabs.scss +2 -0
  376. package/src/themes/amsterdam/overrides/_breadcrumbs.scss +0 -12
  377. package/src/themes/amsterdam/overrides/_index.scss +0 -4
  378. package/test-env/components/bottom_bar/bottom_bar.js +20 -3
  379. package/test-env/components/breadcrumbs/breadcrumb.js +211 -0
  380. package/test-env/components/breadcrumbs/breadcrumb.styles.js +68 -0
  381. package/test-env/components/breadcrumbs/breadcrumbs.js +122 -174
  382. package/test-env/components/breadcrumbs/breadcrumbs.styles.js +33 -0
  383. package/test-env/components/collapsible_nav/collapsible_nav.js +2 -2
  384. package/test-env/components/control_bar/control_bar.js +13 -0
  385. package/test-env/components/datagrid/body/data_grid_body.js +12 -2
  386. package/test-env/components/datagrid/body/data_grid_cell.js +31 -3
  387. package/test-env/components/datagrid/body/header/data_grid_header_row.js +1 -1
  388. package/test-env/components/datagrid/controls/column_sorting_draggable.js +1 -1
  389. package/test-env/components/datagrid/data_grid.js +10 -2
  390. package/test-env/components/datagrid/utils/row_heights.js +33 -4
  391. package/test-env/components/date_picker/super_date_picker/super_date_picker.js +2 -2
  392. package/test-env/components/date_picker/super_date_picker/super_update_button.js +1 -1
  393. package/test-env/components/description_list/description_list.js +25 -30
  394. package/test-env/components/description_list/description_list.styles.js +36 -0
  395. package/test-env/components/description_list/description_list_context.js +24 -0
  396. package/test-env/components/description_list/description_list_description.js +43 -2
  397. package/test-env/components/description_list/description_list_description.styles.js +51 -0
  398. package/test-env/components/description_list/description_list_title.js +43 -2
  399. package/test-env/components/description_list/description_list_title.styles.js +50 -0
  400. package/test-env/components/description_list/description_list_types.js +20 -0
  401. package/test-env/components/header/header.js +3 -27
  402. package/test-env/components/header/header_breadcrumbs/header_breadcrumbs.js +24 -2
  403. package/test-env/components/header/header_breadcrumbs/header_breadcrumbs.styles.js +26 -0
  404. package/test-env/components/header/header_links/header_links.js +10 -9
  405. package/test-env/components/icon/assets/tokenStruct.js +1 -1
  406. package/test-env/components/index.js +13 -0
  407. package/test-env/components/observer/resize_observer/resize_observer.js +43 -126
  408. package/test-env/components/page/_bottom_border.js +5 -0
  409. package/test-env/components/page/_restrict_width.js +38 -7
  410. package/test-env/components/page/index.js +28 -12
  411. package/test-env/components/page/page.js +22 -34
  412. package/test-env/components/page/page.styles.js +46 -0
  413. package/test-env/components/page/page_body/page_body.js +20 -29
  414. package/test-env/components/page/page_body/page_body.styles.js +27 -0
  415. package/test-env/components/page/page_content/index.js +8 -8
  416. package/test-env/components/page/page_content/page_content.js +8 -4
  417. package/test-env/components/page/page_content/page_content_body.js +13 -9
  418. package/test-env/components/page/page_content/page_content_header.js +8 -4
  419. package/test-env/components/page/page_content/page_content_header_section.js +8 -4
  420. package/test-env/components/page/page_header/page_header.js +31 -174
  421. package/test-env/components/page/page_header/page_header.styles.js +27 -0
  422. package/test-env/components/page/page_header/page_header_content.js +112 -18
  423. package/test-env/components/page/page_header/page_header_content.styles.js +87 -0
  424. package/test-env/components/page/page_section/index.js +13 -0
  425. package/test-env/components/page/page_section/page_section.js +110 -0
  426. package/test-env/components/page/page_section/page_section.styles.js +51 -0
  427. package/test-env/components/page/page_side_bar/index.js +2 -2
  428. package/test-env/components/page/page_side_bar/page_side_bar.js +9 -5
  429. package/test-env/components/page/page_sidebar/index.js +13 -0
  430. package/test-env/components/page/page_sidebar/page_sidebar.js +113 -0
  431. package/test-env/components/page/page_sidebar/page_sidebar.styles.js +32 -0
  432. package/test-env/components/page/page_template.js +76 -177
  433. package/test-env/components/page_template/bottom_bar/page_bottom_bar.js +102 -0
  434. package/test-env/components/page_template/empty_prompt/page_empty_prompt.js +114 -0
  435. package/test-env/components/page_template/index.js +13 -0
  436. package/test-env/components/page_template/inner/index.js +13 -0
  437. package/test-env/components/page_template/inner/page_inner.js +57 -0
  438. package/test-env/components/page_template/inner/page_inner.styles.js +35 -0
  439. package/test-env/components/page_template/outer/index.js +13 -0
  440. package/test-env/components/page_template/outer/page_outer.js +65 -0
  441. package/test-env/components/page_template/outer/page_outer.styles.js +51 -0
  442. package/test-env/components/page_template/page_template.js +387 -0
  443. package/test-env/components/pagination/pagination.js +1 -1
  444. package/test-env/components/panel/split_panel/split_panel.js +3 -3
  445. package/test-env/components/provider/provider.js +1 -1
  446. package/test-env/components/responsive/hide_for.js +5 -34
  447. package/test-env/components/responsive/show_for.js +5 -34
  448. package/test-env/components/selectable/selectable_templates/selectable_template_sitewide.js +15 -35
  449. package/test-env/components/side_nav/side_nav.js +1 -1
  450. package/test-env/components/table/table_row_cell.js +1 -3
  451. package/test-env/components/toast/global_toast_list.js +206 -220
  452. package/test-env/components/toast/global_toast_list.styles.js +47 -0
  453. package/test-env/components/toast/global_toast_list_item.js +14 -7
  454. package/test-env/components/toast/toast.js +27 -25
  455. package/test-env/components/toast/toast.styles.js +66 -0
  456. package/test-env/components/token/index.js +5 -3
  457. package/test-env/components/token/token.js +51 -120
  458. package/test-env/components/token/token.styles.js +91 -0
  459. package/test-env/components/token/token_map.js +6 -9
  460. package/test-env/components/token/token_types.js +22 -0
  461. package/test-env/global_styling/functions/logicals.js +1 -1
  462. package/test-env/global_styling/mixins/_helpers.js +27 -9
  463. package/test-env/global_styling/reset/global_styles.js +1 -1
  464. package/{lib/services → test-env/services/breakpoint}/breakpoint.js +5 -9
  465. package/test-env/services/breakpoint/currentEuiBreakpoint.js +37 -0
  466. package/test-env/services/breakpoint/index.js +44 -0
  467. package/test-env/services/breakpoint/useIsWithinBreakpoints.js +34 -0
  468. package/test-env/services/hooks/index.js +0 -13
  469. package/test-env/services/index.js +28 -0
  470. package/test-env/test/rtl/component_helpers.js +69 -3
  471. package/lib/services/hooks/useIsWithinBreakpoints.js +0 -57
  472. package/optimize/es/services/hooks/useIsWithinBreakpoints.js +0 -46
  473. package/optimize/lib/services/hooks/useIsWithinBreakpoints.js +0 -57
  474. package/src/components/breadcrumbs/_breadcrumbs.scss +0 -79
  475. package/src/components/breadcrumbs/_index.scss +0 -2
  476. package/src/components/breadcrumbs/_variables.scss +0 -2
  477. package/src/components/description_list/_description_list.scss +0 -211
  478. package/src/components/description_list/_index.scss +0 -1
  479. package/src/components/header/header_breadcrumbs/_header_breadcrumbs.scss +0 -8
  480. package/src/components/header/header_breadcrumbs/_index.scss +0 -1
  481. package/src/components/page/_mixins.scss +0 -12
  482. package/src/components/page/_page.scss +0 -41
  483. package/src/components/page/page_body/_index.scss +0 -1
  484. package/src/components/page/page_body/_page_body.scss +0 -45
  485. package/src/components/page/page_header/_index.scss +0 -3
  486. package/src/components/page/page_header/_page_header.scss +0 -78
  487. package/src/components/page/page_header/_page_header_content.scss +0 -15
  488. package/src/components/page/page_header/_page_header_section.scss +0 -26
  489. package/src/components/portal/_index.scss +0 -1
  490. package/src/components/portal/_portal.scss +0 -6
  491. package/src/components/toast/_global_toast_list.scss +0 -90
  492. package/src/components/toast/_index.scss +0 -4
  493. package/src/components/toast/_toast.scss +0 -103
  494. package/src/components/token/_index.scss +0 -2
  495. package/src/components/token/_token.scss +0 -85
  496. package/src/components/token/_variables.scss +0 -13
  497. package/src/themes/amsterdam/overrides/_header_breadcrumbs.scss +0 -71
  498. package/src/themes/amsterdam/overrides/_toast.scss +0 -21
  499. package/src/themes/amsterdam/overrides/_token.scss +0 -4
  500. package/test-env/services/hooks/useIsWithinBreakpoints.js +0 -57
@@ -87,9 +87,9 @@
87
87
  /******/ ({
88
88
 
89
89
  /***/ "../../../node_modules/chroma-js/chroma.js":
90
- /*!***********************************************************************!*\
91
- !*** /Users/constance/Documents/eui/node_modules/chroma-js/chroma.js ***!
92
- \***********************************************************************/
90
+ /*!**************************************************************************!*\
91
+ !*** /Users/chandlerprall/projects/eui/node_modules/chroma-js/chroma.js ***!
92
+ \**************************************************************************/
93
93
  /*! no static exports found */
94
94
  /***/ (function(module, exports, __webpack_require__) {
95
95
 
@@ -3322,9 +3322,9 @@
3322
3322
  /***/ }),
3323
3323
 
3324
3324
  /***/ "../../../node_modules/core-js/internals/a-function.js":
3325
- /*!***********************************************************************************!*\
3326
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/a-function.js ***!
3327
- \***********************************************************************************/
3325
+ /*!**************************************************************************************!*\
3326
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/a-function.js ***!
3327
+ \**************************************************************************************/
3328
3328
  /*! no static exports found */
3329
3329
  /***/ (function(module, exports) {
3330
3330
 
@@ -3338,9 +3338,9 @@ module.exports = function (it) {
3338
3338
  /***/ }),
3339
3339
 
3340
3340
  /***/ "../../../node_modules/core-js/internals/a-possible-prototype.js":
3341
- /*!*********************************************************************************************!*\
3342
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/a-possible-prototype.js ***!
3343
- \*********************************************************************************************/
3341
+ /*!************************************************************************************************!*\
3342
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/a-possible-prototype.js ***!
3343
+ \************************************************************************************************/
3344
3344
  /*! no static exports found */
3345
3345
  /***/ (function(module, exports, __webpack_require__) {
3346
3346
 
@@ -3356,9 +3356,9 @@ module.exports = function (it) {
3356
3356
  /***/ }),
3357
3357
 
3358
3358
  /***/ "../../../node_modules/core-js/internals/add-to-unscopables.js":
3359
- /*!*******************************************************************************************!*\
3360
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/add-to-unscopables.js ***!
3361
- \*******************************************************************************************/
3359
+ /*!**********************************************************************************************!*\
3360
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/add-to-unscopables.js ***!
3361
+ \**********************************************************************************************/
3362
3362
  /*! no static exports found */
3363
3363
  /***/ (function(module, exports, __webpack_require__) {
3364
3364
 
@@ -3387,9 +3387,9 @@ module.exports = function (key) {
3387
3387
  /***/ }),
3388
3388
 
3389
3389
  /***/ "../../../node_modules/core-js/internals/an-object.js":
3390
- /*!**********************************************************************************!*\
3391
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/an-object.js ***!
3392
- \**********************************************************************************/
3390
+ /*!*************************************************************************************!*\
3391
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/an-object.js ***!
3392
+ \*************************************************************************************/
3393
3393
  /*! no static exports found */
3394
3394
  /***/ (function(module, exports, __webpack_require__) {
3395
3395
 
@@ -3405,9 +3405,9 @@ module.exports = function (it) {
3405
3405
  /***/ }),
3406
3406
 
3407
3407
  /***/ "../../../node_modules/core-js/internals/array-from.js":
3408
- /*!***********************************************************************************!*\
3409
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/array-from.js ***!
3410
- \***********************************************************************************/
3408
+ /*!**************************************************************************************!*\
3409
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/array-from.js ***!
3410
+ \**************************************************************************************/
3411
3411
  /*! no static exports found */
3412
3412
  /***/ (function(module, exports, __webpack_require__) {
3413
3413
 
@@ -3458,9 +3458,9 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
3458
3458
  /***/ }),
3459
3459
 
3460
3460
  /***/ "../../../node_modules/core-js/internals/array-includes.js":
3461
- /*!***************************************************************************************!*\
3462
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/array-includes.js ***!
3463
- \***************************************************************************************/
3461
+ /*!******************************************************************************************!*\
3462
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/array-includes.js ***!
3463
+ \******************************************************************************************/
3464
3464
  /*! no static exports found */
3465
3465
  /***/ (function(module, exports, __webpack_require__) {
3466
3466
 
@@ -3501,9 +3501,9 @@ module.exports = {
3501
3501
  /***/ }),
3502
3502
 
3503
3503
  /***/ "../../../node_modules/core-js/internals/array-iteration.js":
3504
- /*!****************************************************************************************!*\
3505
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/array-iteration.js ***!
3506
- \****************************************************************************************/
3504
+ /*!*******************************************************************************************!*\
3505
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/array-iteration.js ***!
3506
+ \*******************************************************************************************/
3507
3507
  /*! no static exports found */
3508
3508
  /***/ (function(module, exports, __webpack_require__) {
3509
3509
 
@@ -3577,9 +3577,9 @@ module.exports = {
3577
3577
  /***/ }),
3578
3578
 
3579
3579
  /***/ "../../../node_modules/core-js/internals/array-method-has-species-support.js":
3580
- /*!*********************************************************************************************************!*\
3581
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/array-method-has-species-support.js ***!
3582
- \*********************************************************************************************************/
3580
+ /*!************************************************************************************************************!*\
3581
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/array-method-has-species-support.js ***!
3582
+ \************************************************************************************************************/
3583
3583
  /*! no static exports found */
3584
3584
  /***/ (function(module, exports, __webpack_require__) {
3585
3585
 
@@ -3607,9 +3607,9 @@ module.exports = function (METHOD_NAME) {
3607
3607
  /***/ }),
3608
3608
 
3609
3609
  /***/ "../../../node_modules/core-js/internals/array-method-is-strict.js":
3610
- /*!***********************************************************************************************!*\
3611
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/array-method-is-strict.js ***!
3612
- \***********************************************************************************************/
3610
+ /*!**************************************************************************************************!*\
3611
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/array-method-is-strict.js ***!
3612
+ \**************************************************************************************************/
3613
3613
  /*! no static exports found */
3614
3614
  /***/ (function(module, exports, __webpack_require__) {
3615
3615
 
@@ -3629,9 +3629,9 @@ module.exports = function (METHOD_NAME, argument) {
3629
3629
  /***/ }),
3630
3630
 
3631
3631
  /***/ "../../../node_modules/core-js/internals/array-method-uses-to-length.js":
3632
- /*!****************************************************************************************************!*\
3633
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/array-method-uses-to-length.js ***!
3634
- \****************************************************************************************************/
3632
+ /*!*******************************************************************************************************!*\
3633
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/array-method-uses-to-length.js ***!
3634
+ \*******************************************************************************************************/
3635
3635
  /*! no static exports found */
3636
3636
  /***/ (function(module, exports, __webpack_require__) {
3637
3637
 
@@ -3667,9 +3667,9 @@ module.exports = function (METHOD_NAME, options) {
3667
3667
  /***/ }),
3668
3668
 
3669
3669
  /***/ "../../../node_modules/core-js/internals/array-species-create.js":
3670
- /*!*********************************************************************************************!*\
3671
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/array-species-create.js ***!
3672
- \*********************************************************************************************/
3670
+ /*!************************************************************************************************!*\
3671
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/array-species-create.js ***!
3672
+ \************************************************************************************************/
3673
3673
  /*! no static exports found */
3674
3674
  /***/ (function(module, exports, __webpack_require__) {
3675
3675
 
@@ -3698,9 +3698,9 @@ module.exports = function (originalArray, length) {
3698
3698
  /***/ }),
3699
3699
 
3700
3700
  /***/ "../../../node_modules/core-js/internals/call-with-safe-iteration-closing.js":
3701
- /*!*********************************************************************************************************!*\
3702
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/call-with-safe-iteration-closing.js ***!
3703
- \*********************************************************************************************************/
3701
+ /*!************************************************************************************************************!*\
3702
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/call-with-safe-iteration-closing.js ***!
3703
+ \************************************************************************************************************/
3704
3704
  /*! no static exports found */
3705
3705
  /***/ (function(module, exports, __webpack_require__) {
3706
3706
 
@@ -3722,9 +3722,9 @@ module.exports = function (iterator, fn, value, ENTRIES) {
3722
3722
  /***/ }),
3723
3723
 
3724
3724
  /***/ "../../../node_modules/core-js/internals/check-correctness-of-iteration.js":
3725
- /*!*******************************************************************************************************!*\
3726
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/check-correctness-of-iteration.js ***!
3727
- \*******************************************************************************************************/
3725
+ /*!**********************************************************************************************************!*\
3726
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/check-correctness-of-iteration.js ***!
3727
+ \**********************************************************************************************************/
3728
3728
  /*! no static exports found */
3729
3729
  /***/ (function(module, exports, __webpack_require__) {
3730
3730
 
@@ -3771,9 +3771,9 @@ module.exports = function (exec, SKIP_CLOSING) {
3771
3771
  /***/ }),
3772
3772
 
3773
3773
  /***/ "../../../node_modules/core-js/internals/classof-raw.js":
3774
- /*!************************************************************************************!*\
3775
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/classof-raw.js ***!
3776
- \************************************************************************************/
3774
+ /*!***************************************************************************************!*\
3775
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/classof-raw.js ***!
3776
+ \***************************************************************************************/
3777
3777
  /*! no static exports found */
3778
3778
  /***/ (function(module, exports) {
3779
3779
 
@@ -3787,9 +3787,9 @@ module.exports = function (it) {
3787
3787
  /***/ }),
3788
3788
 
3789
3789
  /***/ "../../../node_modules/core-js/internals/classof.js":
3790
- /*!********************************************************************************!*\
3791
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/classof.js ***!
3792
- \********************************************************************************/
3790
+ /*!***********************************************************************************!*\
3791
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/classof.js ***!
3792
+ \***********************************************************************************/
3793
3793
  /*! no static exports found */
3794
3794
  /***/ (function(module, exports, __webpack_require__) {
3795
3795
 
@@ -3824,9 +3824,9 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
3824
3824
  /***/ }),
3825
3825
 
3826
3826
  /***/ "../../../node_modules/core-js/internals/copy-constructor-properties.js":
3827
- /*!****************************************************************************************************!*\
3828
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/copy-constructor-properties.js ***!
3829
- \****************************************************************************************************/
3827
+ /*!*******************************************************************************************************!*\
3828
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/copy-constructor-properties.js ***!
3829
+ \*******************************************************************************************************/
3830
3830
  /*! no static exports found */
3831
3831
  /***/ (function(module, exports, __webpack_require__) {
3832
3832
 
@@ -3849,9 +3849,9 @@ module.exports = function (target, source) {
3849
3849
  /***/ }),
3850
3850
 
3851
3851
  /***/ "../../../node_modules/core-js/internals/correct-prototype-getter.js":
3852
- /*!*************************************************************************************************!*\
3853
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/correct-prototype-getter.js ***!
3854
- \*************************************************************************************************/
3852
+ /*!****************************************************************************************************!*\
3853
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/correct-prototype-getter.js ***!
3854
+ \****************************************************************************************************/
3855
3855
  /*! no static exports found */
3856
3856
  /***/ (function(module, exports, __webpack_require__) {
3857
3857
 
@@ -3867,9 +3867,9 @@ module.exports = !fails(function () {
3867
3867
  /***/ }),
3868
3868
 
3869
3869
  /***/ "../../../node_modules/core-js/internals/create-iterator-constructor.js":
3870
- /*!****************************************************************************************************!*\
3871
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/create-iterator-constructor.js ***!
3872
- \****************************************************************************************************/
3870
+ /*!*******************************************************************************************************!*\
3871
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/create-iterator-constructor.js ***!
3872
+ \*******************************************************************************************************/
3873
3873
  /*! no static exports found */
3874
3874
  /***/ (function(module, exports, __webpack_require__) {
3875
3875
 
@@ -3895,9 +3895,9 @@ module.exports = function (IteratorConstructor, NAME, next) {
3895
3895
  /***/ }),
3896
3896
 
3897
3897
  /***/ "../../../node_modules/core-js/internals/create-non-enumerable-property.js":
3898
- /*!*******************************************************************************************************!*\
3899
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/create-non-enumerable-property.js ***!
3900
- \*******************************************************************************************************/
3898
+ /*!**********************************************************************************************************!*\
3899
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/create-non-enumerable-property.js ***!
3900
+ \**********************************************************************************************************/
3901
3901
  /*! no static exports found */
3902
3902
  /***/ (function(module, exports, __webpack_require__) {
3903
3903
 
@@ -3916,9 +3916,9 @@ module.exports = DESCRIPTORS ? function (object, key, value) {
3916
3916
  /***/ }),
3917
3917
 
3918
3918
  /***/ "../../../node_modules/core-js/internals/create-property-descriptor.js":
3919
- /*!***************************************************************************************************!*\
3920
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/create-property-descriptor.js ***!
3921
- \***************************************************************************************************/
3919
+ /*!******************************************************************************************************!*\
3920
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/create-property-descriptor.js ***!
3921
+ \******************************************************************************************************/
3922
3922
  /*! no static exports found */
3923
3923
  /***/ (function(module, exports) {
3924
3924
 
@@ -3935,9 +3935,9 @@ module.exports = function (bitmap, value) {
3935
3935
  /***/ }),
3936
3936
 
3937
3937
  /***/ "../../../node_modules/core-js/internals/create-property.js":
3938
- /*!****************************************************************************************!*\
3939
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/create-property.js ***!
3940
- \****************************************************************************************/
3938
+ /*!*******************************************************************************************!*\
3939
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/create-property.js ***!
3940
+ \*******************************************************************************************/
3941
3941
  /*! no static exports found */
3942
3942
  /***/ (function(module, exports, __webpack_require__) {
3943
3943
 
@@ -3957,9 +3957,9 @@ module.exports = function (object, key, value) {
3957
3957
  /***/ }),
3958
3958
 
3959
3959
  /***/ "../../../node_modules/core-js/internals/define-iterator.js":
3960
- /*!****************************************************************************************!*\
3961
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/define-iterator.js ***!
3962
- \****************************************************************************************/
3960
+ /*!*******************************************************************************************!*\
3961
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/define-iterator.js ***!
3962
+ \*******************************************************************************************/
3963
3963
  /*! no static exports found */
3964
3964
  /***/ (function(module, exports, __webpack_require__) {
3965
3965
 
@@ -4059,9 +4059,9 @@ module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, I
4059
4059
  /***/ }),
4060
4060
 
4061
4061
  /***/ "../../../node_modules/core-js/internals/define-well-known-symbol.js":
4062
- /*!*************************************************************************************************!*\
4063
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/define-well-known-symbol.js ***!
4064
- \*************************************************************************************************/
4062
+ /*!****************************************************************************************************!*\
4063
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/define-well-known-symbol.js ***!
4064
+ \****************************************************************************************************/
4065
4065
  /*! no static exports found */
4066
4066
  /***/ (function(module, exports, __webpack_require__) {
4067
4067
 
@@ -4081,9 +4081,9 @@ module.exports = function (NAME) {
4081
4081
  /***/ }),
4082
4082
 
4083
4083
  /***/ "../../../node_modules/core-js/internals/descriptors.js":
4084
- /*!************************************************************************************!*\
4085
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/descriptors.js ***!
4086
- \************************************************************************************/
4084
+ /*!***************************************************************************************!*\
4085
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/descriptors.js ***!
4086
+ \***************************************************************************************/
4087
4087
  /*! no static exports found */
4088
4088
  /***/ (function(module, exports, __webpack_require__) {
4089
4089
 
@@ -4098,9 +4098,9 @@ module.exports = !fails(function () {
4098
4098
  /***/ }),
4099
4099
 
4100
4100
  /***/ "../../../node_modules/core-js/internals/document-create-element.js":
4101
- /*!************************************************************************************************!*\
4102
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/document-create-element.js ***!
4103
- \************************************************************************************************/
4101
+ /*!***************************************************************************************************!*\
4102
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/document-create-element.js ***!
4103
+ \***************************************************************************************************/
4104
4104
  /*! no static exports found */
4105
4105
  /***/ (function(module, exports, __webpack_require__) {
4106
4106
 
@@ -4119,9 +4119,9 @@ module.exports = function (it) {
4119
4119
  /***/ }),
4120
4120
 
4121
4121
  /***/ "../../../node_modules/core-js/internals/dom-iterables.js":
4122
- /*!**************************************************************************************!*\
4123
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/dom-iterables.js ***!
4124
- \**************************************************************************************/
4122
+ /*!*****************************************************************************************!*\
4123
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/dom-iterables.js ***!
4124
+ \*****************************************************************************************/
4125
4125
  /*! no static exports found */
4126
4126
  /***/ (function(module, exports) {
4127
4127
 
@@ -4165,9 +4165,9 @@ module.exports = {
4165
4165
  /***/ }),
4166
4166
 
4167
4167
  /***/ "../../../node_modules/core-js/internals/engine-user-agent.js":
4168
- /*!******************************************************************************************!*\
4169
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/engine-user-agent.js ***!
4170
- \******************************************************************************************/
4168
+ /*!*********************************************************************************************!*\
4169
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/engine-user-agent.js ***!
4170
+ \*********************************************************************************************/
4171
4171
  /*! no static exports found */
4172
4172
  /***/ (function(module, exports, __webpack_require__) {
4173
4173
 
@@ -4179,9 +4179,9 @@ module.exports = getBuiltIn('navigator', 'userAgent') || '';
4179
4179
  /***/ }),
4180
4180
 
4181
4181
  /***/ "../../../node_modules/core-js/internals/engine-v8-version.js":
4182
- /*!******************************************************************************************!*\
4183
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/engine-v8-version.js ***!
4184
- \******************************************************************************************/
4182
+ /*!*********************************************************************************************!*\
4183
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/engine-v8-version.js ***!
4184
+ \*********************************************************************************************/
4185
4185
  /*! no static exports found */
4186
4186
  /***/ (function(module, exports, __webpack_require__) {
4187
4187
 
@@ -4210,9 +4210,9 @@ module.exports = version && +version;
4210
4210
  /***/ }),
4211
4211
 
4212
4212
  /***/ "../../../node_modules/core-js/internals/enum-bug-keys.js":
4213
- /*!**************************************************************************************!*\
4214
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/enum-bug-keys.js ***!
4215
- \**************************************************************************************/
4213
+ /*!*****************************************************************************************!*\
4214
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/enum-bug-keys.js ***!
4215
+ \*****************************************************************************************/
4216
4216
  /*! no static exports found */
4217
4217
  /***/ (function(module, exports) {
4218
4218
 
@@ -4231,9 +4231,9 @@ module.exports = [
4231
4231
  /***/ }),
4232
4232
 
4233
4233
  /***/ "../../../node_modules/core-js/internals/export.js":
4234
- /*!*******************************************************************************!*\
4235
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/export.js ***!
4236
- \*******************************************************************************/
4234
+ /*!**********************************************************************************!*\
4235
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/export.js ***!
4236
+ \**********************************************************************************/
4237
4237
  /*! no static exports found */
4238
4238
  /***/ (function(module, exports, __webpack_require__) {
4239
4239
 
@@ -4296,9 +4296,9 @@ module.exports = function (options, source) {
4296
4296
  /***/ }),
4297
4297
 
4298
4298
  /***/ "../../../node_modules/core-js/internals/fails.js":
4299
- /*!******************************************************************************!*\
4300
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/fails.js ***!
4301
- \******************************************************************************/
4299
+ /*!*********************************************************************************!*\
4300
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/fails.js ***!
4301
+ \*********************************************************************************/
4302
4302
  /*! no static exports found */
4303
4303
  /***/ (function(module, exports) {
4304
4304
 
@@ -4314,9 +4314,9 @@ module.exports = function (exec) {
4314
4314
  /***/ }),
4315
4315
 
4316
4316
  /***/ "../../../node_modules/core-js/internals/function-bind-context.js":
4317
- /*!**********************************************************************************************!*\
4318
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/function-bind-context.js ***!
4319
- \**********************************************************************************************/
4317
+ /*!*************************************************************************************************!*\
4318
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/function-bind-context.js ***!
4319
+ \*************************************************************************************************/
4320
4320
  /*! no static exports found */
4321
4321
  /***/ (function(module, exports, __webpack_require__) {
4322
4322
 
@@ -4349,9 +4349,9 @@ module.exports = function (fn, that, length) {
4349
4349
  /***/ }),
4350
4350
 
4351
4351
  /***/ "../../../node_modules/core-js/internals/get-built-in.js":
4352
- /*!*************************************************************************************!*\
4353
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/get-built-in.js ***!
4354
- \*************************************************************************************/
4352
+ /*!****************************************************************************************!*\
4353
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/get-built-in.js ***!
4354
+ \****************************************************************************************/
4355
4355
  /*! no static exports found */
4356
4356
  /***/ (function(module, exports, __webpack_require__) {
4357
4357
 
@@ -4371,9 +4371,9 @@ module.exports = function (namespace, method) {
4371
4371
  /***/ }),
4372
4372
 
4373
4373
  /***/ "../../../node_modules/core-js/internals/get-iterator-method.js":
4374
- /*!********************************************************************************************!*\
4375
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/get-iterator-method.js ***!
4376
- \********************************************************************************************/
4374
+ /*!***********************************************************************************************!*\
4375
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/get-iterator-method.js ***!
4376
+ \***********************************************************************************************/
4377
4377
  /*! no static exports found */
4378
4378
  /***/ (function(module, exports, __webpack_require__) {
4379
4379
 
@@ -4393,9 +4393,9 @@ module.exports = function (it) {
4393
4393
  /***/ }),
4394
4394
 
4395
4395
  /***/ "../../../node_modules/core-js/internals/global.js":
4396
- /*!*******************************************************************************!*\
4397
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/global.js ***!
4398
- \*******************************************************************************/
4396
+ /*!**********************************************************************************!*\
4397
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/global.js ***!
4398
+ \**********************************************************************************/
4399
4399
  /*! no static exports found */
4400
4400
  /***/ (function(module, exports, __webpack_require__) {
4401
4401
 
@@ -4418,9 +4418,9 @@ module.exports =
4418
4418
  /***/ }),
4419
4419
 
4420
4420
  /***/ "../../../node_modules/core-js/internals/has.js":
4421
- /*!****************************************************************************!*\
4422
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/has.js ***!
4423
- \****************************************************************************/
4421
+ /*!*******************************************************************************!*\
4422
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/has.js ***!
4423
+ \*******************************************************************************/
4424
4424
  /*! no static exports found */
4425
4425
  /***/ (function(module, exports) {
4426
4426
 
@@ -4434,9 +4434,9 @@ module.exports = function (it, key) {
4434
4434
  /***/ }),
4435
4435
 
4436
4436
  /***/ "../../../node_modules/core-js/internals/hidden-keys.js":
4437
- /*!************************************************************************************!*\
4438
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/hidden-keys.js ***!
4439
- \************************************************************************************/
4437
+ /*!***************************************************************************************!*\
4438
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/hidden-keys.js ***!
4439
+ \***************************************************************************************/
4440
4440
  /*! no static exports found */
4441
4441
  /***/ (function(module, exports) {
4442
4442
 
@@ -4446,9 +4446,9 @@ module.exports = {};
4446
4446
  /***/ }),
4447
4447
 
4448
4448
  /***/ "../../../node_modules/core-js/internals/html.js":
4449
- /*!*****************************************************************************!*\
4450
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/html.js ***!
4451
- \*****************************************************************************/
4449
+ /*!********************************************************************************!*\
4450
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/html.js ***!
4451
+ \********************************************************************************/
4452
4452
  /*! no static exports found */
4453
4453
  /***/ (function(module, exports, __webpack_require__) {
4454
4454
 
@@ -4460,9 +4460,9 @@ module.exports = getBuiltIn('document', 'documentElement');
4460
4460
  /***/ }),
4461
4461
 
4462
4462
  /***/ "../../../node_modules/core-js/internals/ie8-dom-define.js":
4463
- /*!***************************************************************************************!*\
4464
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/ie8-dom-define.js ***!
4465
- \***************************************************************************************/
4463
+ /*!******************************************************************************************!*\
4464
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/ie8-dom-define.js ***!
4465
+ \******************************************************************************************/
4466
4466
  /*! no static exports found */
4467
4467
  /***/ (function(module, exports, __webpack_require__) {
4468
4468
 
@@ -4481,9 +4481,9 @@ module.exports = !DESCRIPTORS && !fails(function () {
4481
4481
  /***/ }),
4482
4482
 
4483
4483
  /***/ "../../../node_modules/core-js/internals/indexed-object.js":
4484
- /*!***************************************************************************************!*\
4485
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/indexed-object.js ***!
4486
- \***************************************************************************************/
4484
+ /*!******************************************************************************************!*\
4485
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/indexed-object.js ***!
4486
+ \******************************************************************************************/
4487
4487
  /*! no static exports found */
4488
4488
  /***/ (function(module, exports, __webpack_require__) {
4489
4489
 
@@ -4505,9 +4505,9 @@ module.exports = fails(function () {
4505
4505
  /***/ }),
4506
4506
 
4507
4507
  /***/ "../../../node_modules/core-js/internals/inspect-source.js":
4508
- /*!***************************************************************************************!*\
4509
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/inspect-source.js ***!
4510
- \***************************************************************************************/
4508
+ /*!******************************************************************************************!*\
4509
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/inspect-source.js ***!
4510
+ \******************************************************************************************/
4511
4511
  /*! no static exports found */
4512
4512
  /***/ (function(module, exports, __webpack_require__) {
4513
4513
 
@@ -4528,9 +4528,9 @@ module.exports = store.inspectSource;
4528
4528
  /***/ }),
4529
4529
 
4530
4530
  /***/ "../../../node_modules/core-js/internals/internal-state.js":
4531
- /*!***************************************************************************************!*\
4532
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/internal-state.js ***!
4533
- \***************************************************************************************/
4531
+ /*!******************************************************************************************!*\
4532
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/internal-state.js ***!
4533
+ \******************************************************************************************/
4534
4534
  /*! no static exports found */
4535
4535
  /***/ (function(module, exports, __webpack_require__) {
4536
4536
 
@@ -4600,9 +4600,9 @@ module.exports = {
4600
4600
  /***/ }),
4601
4601
 
4602
4602
  /***/ "../../../node_modules/core-js/internals/is-array-iterator-method.js":
4603
- /*!*************************************************************************************************!*\
4604
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/is-array-iterator-method.js ***!
4605
- \*************************************************************************************************/
4603
+ /*!****************************************************************************************************!*\
4604
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/is-array-iterator-method.js ***!
4605
+ \****************************************************************************************************/
4606
4606
  /*! no static exports found */
4607
4607
  /***/ (function(module, exports, __webpack_require__) {
4608
4608
 
@@ -4621,9 +4621,9 @@ module.exports = function (it) {
4621
4621
  /***/ }),
4622
4622
 
4623
4623
  /***/ "../../../node_modules/core-js/internals/is-array.js":
4624
- /*!*********************************************************************************!*\
4625
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/is-array.js ***!
4626
- \*********************************************************************************/
4624
+ /*!************************************************************************************!*\
4625
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/is-array.js ***!
4626
+ \************************************************************************************/
4627
4627
  /*! no static exports found */
4628
4628
  /***/ (function(module, exports, __webpack_require__) {
4629
4629
 
@@ -4639,9 +4639,9 @@ module.exports = Array.isArray || function isArray(arg) {
4639
4639
  /***/ }),
4640
4640
 
4641
4641
  /***/ "../../../node_modules/core-js/internals/is-forced.js":
4642
- /*!**********************************************************************************!*\
4643
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/is-forced.js ***!
4644
- \**********************************************************************************/
4642
+ /*!*************************************************************************************!*\
4643
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/is-forced.js ***!
4644
+ \*************************************************************************************/
4645
4645
  /*! no static exports found */
4646
4646
  /***/ (function(module, exports, __webpack_require__) {
4647
4647
 
@@ -4671,9 +4671,9 @@ module.exports = isForced;
4671
4671
  /***/ }),
4672
4672
 
4673
4673
  /***/ "../../../node_modules/core-js/internals/is-object.js":
4674
- /*!**********************************************************************************!*\
4675
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/is-object.js ***!
4676
- \**********************************************************************************/
4674
+ /*!*************************************************************************************!*\
4675
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/is-object.js ***!
4676
+ \*************************************************************************************/
4677
4677
  /*! no static exports found */
4678
4678
  /***/ (function(module, exports) {
4679
4679
 
@@ -4685,9 +4685,9 @@ module.exports = function (it) {
4685
4685
  /***/ }),
4686
4686
 
4687
4687
  /***/ "../../../node_modules/core-js/internals/is-pure.js":
4688
- /*!********************************************************************************!*\
4689
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/is-pure.js ***!
4690
- \********************************************************************************/
4688
+ /*!***********************************************************************************!*\
4689
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/is-pure.js ***!
4690
+ \***********************************************************************************/
4691
4691
  /*! no static exports found */
4692
4692
  /***/ (function(module, exports) {
4693
4693
 
@@ -4697,9 +4697,9 @@ module.exports = false;
4697
4697
  /***/ }),
4698
4698
 
4699
4699
  /***/ "../../../node_modules/core-js/internals/iterators-core.js":
4700
- /*!***************************************************************************************!*\
4701
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/iterators-core.js ***!
4702
- \***************************************************************************************/
4700
+ /*!******************************************************************************************!*\
4701
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/iterators-core.js ***!
4702
+ \******************************************************************************************/
4703
4703
  /*! no static exports found */
4704
4704
  /***/ (function(module, exports, __webpack_require__) {
4705
4705
 
@@ -4746,9 +4746,9 @@ module.exports = {
4746
4746
  /***/ }),
4747
4747
 
4748
4748
  /***/ "../../../node_modules/core-js/internals/iterators.js":
4749
- /*!**********************************************************************************!*\
4750
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/iterators.js ***!
4751
- \**********************************************************************************/
4749
+ /*!*************************************************************************************!*\
4750
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/iterators.js ***!
4751
+ \*************************************************************************************/
4752
4752
  /*! no static exports found */
4753
4753
  /***/ (function(module, exports) {
4754
4754
 
@@ -4758,9 +4758,9 @@ module.exports = {};
4758
4758
  /***/ }),
4759
4759
 
4760
4760
  /***/ "../../../node_modules/core-js/internals/native-symbol.js":
4761
- /*!**************************************************************************************!*\
4762
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/native-symbol.js ***!
4763
- \**************************************************************************************/
4761
+ /*!*****************************************************************************************!*\
4762
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/native-symbol.js ***!
4763
+ \*****************************************************************************************/
4764
4764
  /*! no static exports found */
4765
4765
  /***/ (function(module, exports, __webpack_require__) {
4766
4766
 
@@ -4776,9 +4776,9 @@ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
4776
4776
  /***/ }),
4777
4777
 
4778
4778
  /***/ "../../../node_modules/core-js/internals/native-weak-map.js":
4779
- /*!****************************************************************************************!*\
4780
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/native-weak-map.js ***!
4781
- \****************************************************************************************/
4779
+ /*!*******************************************************************************************!*\
4780
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/native-weak-map.js ***!
4781
+ \*******************************************************************************************/
4782
4782
  /*! no static exports found */
4783
4783
  /***/ (function(module, exports, __webpack_require__) {
4784
4784
 
@@ -4793,9 +4793,9 @@ module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSour
4793
4793
  /***/ }),
4794
4794
 
4795
4795
  /***/ "../../../node_modules/core-js/internals/object-create.js":
4796
- /*!**************************************************************************************!*\
4797
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-create.js ***!
4798
- \**************************************************************************************/
4796
+ /*!*****************************************************************************************!*\
4797
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-create.js ***!
4798
+ \*****************************************************************************************/
4799
4799
  /*! no static exports found */
4800
4800
  /***/ (function(module, exports, __webpack_require__) {
4801
4801
 
@@ -4882,9 +4882,9 @@ module.exports = Object.create || function create(O, Properties) {
4882
4882
  /***/ }),
4883
4883
 
4884
4884
  /***/ "../../../node_modules/core-js/internals/object-define-properties.js":
4885
- /*!*************************************************************************************************!*\
4886
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-define-properties.js ***!
4887
- \*************************************************************************************************/
4885
+ /*!****************************************************************************************************!*\
4886
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-define-properties.js ***!
4887
+ \****************************************************************************************************/
4888
4888
  /*! no static exports found */
4889
4889
  /***/ (function(module, exports, __webpack_require__) {
4890
4890
 
@@ -4909,9 +4909,9 @@ module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperti
4909
4909
  /***/ }),
4910
4910
 
4911
4911
  /***/ "../../../node_modules/core-js/internals/object-define-property.js":
4912
- /*!***********************************************************************************************!*\
4913
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-define-property.js ***!
4914
- \***********************************************************************************************/
4912
+ /*!**************************************************************************************************!*\
4913
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-define-property.js ***!
4914
+ \**************************************************************************************************/
4915
4915
  /*! no static exports found */
4916
4916
  /***/ (function(module, exports, __webpack_require__) {
4917
4917
 
@@ -4940,9 +4940,9 @@ exports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, A
4940
4940
  /***/ }),
4941
4941
 
4942
4942
  /***/ "../../../node_modules/core-js/internals/object-get-own-property-descriptor.js":
4943
- /*!***********************************************************************************************************!*\
4944
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
4945
- \***********************************************************************************************************/
4943
+ /*!**************************************************************************************************************!*\
4944
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
4945
+ \**************************************************************************************************************/
4946
4946
  /*! no static exports found */
4947
4947
  /***/ (function(module, exports, __webpack_require__) {
4948
4948
 
@@ -4971,9 +4971,9 @@ exports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnProper
4971
4971
  /***/ }),
4972
4972
 
4973
4973
  /***/ "../../../node_modules/core-js/internals/object-get-own-property-names-external.js":
4974
- /*!***************************************************************************************************************!*\
4975
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-get-own-property-names-external.js ***!
4976
- \***************************************************************************************************************/
4974
+ /*!******************************************************************************************************************!*\
4975
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-get-own-property-names-external.js ***!
4976
+ \******************************************************************************************************************/
4977
4977
  /*! no static exports found */
4978
4978
  /***/ (function(module, exports, __webpack_require__) {
4979
4979
 
@@ -5004,9 +5004,9 @@ module.exports.f = function getOwnPropertyNames(it) {
5004
5004
  /***/ }),
5005
5005
 
5006
5006
  /***/ "../../../node_modules/core-js/internals/object-get-own-property-names.js":
5007
- /*!******************************************************************************************************!*\
5008
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-get-own-property-names.js ***!
5009
- \******************************************************************************************************/
5007
+ /*!*********************************************************************************************************!*\
5008
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-get-own-property-names.js ***!
5009
+ \*********************************************************************************************************/
5010
5010
  /*! no static exports found */
5011
5011
  /***/ (function(module, exports, __webpack_require__) {
5012
5012
 
@@ -5025,9 +5025,9 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
5025
5025
  /***/ }),
5026
5026
 
5027
5027
  /***/ "../../../node_modules/core-js/internals/object-get-own-property-symbols.js":
5028
- /*!********************************************************************************************************!*\
5029
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-get-own-property-symbols.js ***!
5030
- \********************************************************************************************************/
5028
+ /*!***********************************************************************************************************!*\
5029
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-get-own-property-symbols.js ***!
5030
+ \***********************************************************************************************************/
5031
5031
  /*! no static exports found */
5032
5032
  /***/ (function(module, exports) {
5033
5033
 
@@ -5037,9 +5037,9 @@ exports.f = Object.getOwnPropertySymbols;
5037
5037
  /***/ }),
5038
5038
 
5039
5039
  /***/ "../../../node_modules/core-js/internals/object-get-prototype-of.js":
5040
- /*!************************************************************************************************!*\
5041
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-get-prototype-of.js ***!
5042
- \************************************************************************************************/
5040
+ /*!***************************************************************************************************!*\
5041
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-get-prototype-of.js ***!
5042
+ \***************************************************************************************************/
5043
5043
  /*! no static exports found */
5044
5044
  /***/ (function(module, exports, __webpack_require__) {
5045
5045
 
@@ -5065,9 +5065,9 @@ module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O)
5065
5065
  /***/ }),
5066
5066
 
5067
5067
  /***/ "../../../node_modules/core-js/internals/object-keys-internal.js":
5068
- /*!*********************************************************************************************!*\
5069
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-keys-internal.js ***!
5070
- \*********************************************************************************************/
5068
+ /*!************************************************************************************************!*\
5069
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-keys-internal.js ***!
5070
+ \************************************************************************************************/
5071
5071
  /*! no static exports found */
5072
5072
  /***/ (function(module, exports, __webpack_require__) {
5073
5073
 
@@ -5093,9 +5093,9 @@ module.exports = function (object, names) {
5093
5093
  /***/ }),
5094
5094
 
5095
5095
  /***/ "../../../node_modules/core-js/internals/object-keys.js":
5096
- /*!************************************************************************************!*\
5097
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-keys.js ***!
5098
- \************************************************************************************/
5096
+ /*!***************************************************************************************!*\
5097
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-keys.js ***!
5098
+ \***************************************************************************************/
5099
5099
  /*! no static exports found */
5100
5100
  /***/ (function(module, exports, __webpack_require__) {
5101
5101
 
@@ -5112,9 +5112,9 @@ module.exports = Object.keys || function keys(O) {
5112
5112
  /***/ }),
5113
5113
 
5114
5114
  /***/ "../../../node_modules/core-js/internals/object-property-is-enumerable.js":
5115
- /*!******************************************************************************************************!*\
5116
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-property-is-enumerable.js ***!
5117
- \******************************************************************************************************/
5115
+ /*!*********************************************************************************************************!*\
5116
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-property-is-enumerable.js ***!
5117
+ \*********************************************************************************************************/
5118
5118
  /*! no static exports found */
5119
5119
  /***/ (function(module, exports, __webpack_require__) {
5120
5120
 
@@ -5137,9 +5137,9 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
5137
5137
  /***/ }),
5138
5138
 
5139
5139
  /***/ "../../../node_modules/core-js/internals/object-set-prototype-of.js":
5140
- /*!************************************************************************************************!*\
5141
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-set-prototype-of.js ***!
5142
- \************************************************************************************************/
5140
+ /*!***************************************************************************************************!*\
5141
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-set-prototype-of.js ***!
5142
+ \***************************************************************************************************/
5143
5143
  /*! no static exports found */
5144
5144
  /***/ (function(module, exports, __webpack_require__) {
5145
5145
 
@@ -5172,9 +5172,9 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
5172
5172
  /***/ }),
5173
5173
 
5174
5174
  /***/ "../../../node_modules/core-js/internals/object-to-string.js":
5175
- /*!*****************************************************************************************!*\
5176
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/object-to-string.js ***!
5177
- \*****************************************************************************************/
5175
+ /*!********************************************************************************************!*\
5176
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/object-to-string.js ***!
5177
+ \********************************************************************************************/
5178
5178
  /*! no static exports found */
5179
5179
  /***/ (function(module, exports, __webpack_require__) {
5180
5180
 
@@ -5193,9 +5193,9 @@ module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
5193
5193
  /***/ }),
5194
5194
 
5195
5195
  /***/ "../../../node_modules/core-js/internals/own-keys.js":
5196
- /*!*********************************************************************************!*\
5197
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/own-keys.js ***!
5198
- \*********************************************************************************/
5196
+ /*!************************************************************************************!*\
5197
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/own-keys.js ***!
5198
+ \************************************************************************************/
5199
5199
  /*! no static exports found */
5200
5200
  /***/ (function(module, exports, __webpack_require__) {
5201
5201
 
@@ -5215,9 +5215,9 @@ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
5215
5215
  /***/ }),
5216
5216
 
5217
5217
  /***/ "../../../node_modules/core-js/internals/path.js":
5218
- /*!*****************************************************************************!*\
5219
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/path.js ***!
5220
- \*****************************************************************************/
5218
+ /*!********************************************************************************!*\
5219
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/path.js ***!
5220
+ \********************************************************************************/
5221
5221
  /*! no static exports found */
5222
5222
  /***/ (function(module, exports, __webpack_require__) {
5223
5223
 
@@ -5229,9 +5229,9 @@ module.exports = global;
5229
5229
  /***/ }),
5230
5230
 
5231
5231
  /***/ "../../../node_modules/core-js/internals/redefine.js":
5232
- /*!*********************************************************************************!*\
5233
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/redefine.js ***!
5234
- \*********************************************************************************/
5232
+ /*!************************************************************************************!*\
5233
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/redefine.js ***!
5234
+ \************************************************************************************/
5235
5235
  /*! no static exports found */
5236
5236
  /***/ (function(module, exports, __webpack_require__) {
5237
5237
 
@@ -5274,9 +5274,9 @@ var TEMPLATE = String(String).split('String');
5274
5274
  /***/ }),
5275
5275
 
5276
5276
  /***/ "../../../node_modules/core-js/internals/regexp-exec.js":
5277
- /*!************************************************************************************!*\
5278
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/regexp-exec.js ***!
5279
- \************************************************************************************/
5277
+ /*!***************************************************************************************!*\
5278
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/regexp-exec.js ***!
5279
+ \***************************************************************************************/
5280
5280
  /*! no static exports found */
5281
5281
  /***/ (function(module, exports, __webpack_require__) {
5282
5282
 
@@ -5373,9 +5373,9 @@ module.exports = patchedExec;
5373
5373
  /***/ }),
5374
5374
 
5375
5375
  /***/ "../../../node_modules/core-js/internals/regexp-flags.js":
5376
- /*!*************************************************************************************!*\
5377
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/regexp-flags.js ***!
5378
- \*************************************************************************************/
5376
+ /*!****************************************************************************************!*\
5377
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/regexp-flags.js ***!
5378
+ \****************************************************************************************/
5379
5379
  /*! no static exports found */
5380
5380
  /***/ (function(module, exports, __webpack_require__) {
5381
5381
 
@@ -5401,9 +5401,9 @@ module.exports = function () {
5401
5401
  /***/ }),
5402
5402
 
5403
5403
  /***/ "../../../node_modules/core-js/internals/regexp-sticky-helpers.js":
5404
- /*!**********************************************************************************************!*\
5405
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/regexp-sticky-helpers.js ***!
5406
- \**********************************************************************************************/
5404
+ /*!*************************************************************************************************!*\
5405
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/regexp-sticky-helpers.js ***!
5406
+ \*************************************************************************************************/
5407
5407
  /*! no static exports found */
5408
5408
  /***/ (function(module, exports, __webpack_require__) {
5409
5409
 
@@ -5436,9 +5436,9 @@ exports.BROKEN_CARET = fails(function () {
5436
5436
  /***/ }),
5437
5437
 
5438
5438
  /***/ "../../../node_modules/core-js/internals/require-object-coercible.js":
5439
- /*!*************************************************************************************************!*\
5440
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/require-object-coercible.js ***!
5441
- \*************************************************************************************************/
5439
+ /*!****************************************************************************************************!*\
5440
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/require-object-coercible.js ***!
5441
+ \****************************************************************************************************/
5442
5442
  /*! no static exports found */
5443
5443
  /***/ (function(module, exports) {
5444
5444
 
@@ -5453,9 +5453,9 @@ module.exports = function (it) {
5453
5453
  /***/ }),
5454
5454
 
5455
5455
  /***/ "../../../node_modules/core-js/internals/set-global.js":
5456
- /*!***********************************************************************************!*\
5457
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/set-global.js ***!
5458
- \***********************************************************************************/
5456
+ /*!**************************************************************************************!*\
5457
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/set-global.js ***!
5458
+ \**************************************************************************************/
5459
5459
  /*! no static exports found */
5460
5460
  /***/ (function(module, exports, __webpack_require__) {
5461
5461
 
@@ -5474,9 +5474,9 @@ module.exports = function (key, value) {
5474
5474
  /***/ }),
5475
5475
 
5476
5476
  /***/ "../../../node_modules/core-js/internals/set-to-string-tag.js":
5477
- /*!******************************************************************************************!*\
5478
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/set-to-string-tag.js ***!
5479
- \******************************************************************************************/
5477
+ /*!*********************************************************************************************!*\
5478
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/set-to-string-tag.js ***!
5479
+ \*********************************************************************************************/
5480
5480
  /*! no static exports found */
5481
5481
  /***/ (function(module, exports, __webpack_require__) {
5482
5482
 
@@ -5496,9 +5496,9 @@ module.exports = function (it, TAG, STATIC) {
5496
5496
  /***/ }),
5497
5497
 
5498
5498
  /***/ "../../../node_modules/core-js/internals/shared-key.js":
5499
- /*!***********************************************************************************!*\
5500
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/shared-key.js ***!
5501
- \***********************************************************************************/
5499
+ /*!**************************************************************************************!*\
5500
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/shared-key.js ***!
5501
+ \**************************************************************************************/
5502
5502
  /*! no static exports found */
5503
5503
  /***/ (function(module, exports, __webpack_require__) {
5504
5504
 
@@ -5515,9 +5515,9 @@ module.exports = function (key) {
5515
5515
  /***/ }),
5516
5516
 
5517
5517
  /***/ "../../../node_modules/core-js/internals/shared-store.js":
5518
- /*!*************************************************************************************!*\
5519
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/shared-store.js ***!
5520
- \*************************************************************************************/
5518
+ /*!****************************************************************************************!*\
5519
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/shared-store.js ***!
5520
+ \****************************************************************************************/
5521
5521
  /*! no static exports found */
5522
5522
  /***/ (function(module, exports, __webpack_require__) {
5523
5523
 
@@ -5533,9 +5533,9 @@ module.exports = store;
5533
5533
  /***/ }),
5534
5534
 
5535
5535
  /***/ "../../../node_modules/core-js/internals/shared.js":
5536
- /*!*******************************************************************************!*\
5537
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/shared.js ***!
5538
- \*******************************************************************************/
5536
+ /*!**********************************************************************************!*\
5537
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/shared.js ***!
5538
+ \**********************************************************************************/
5539
5539
  /*! no static exports found */
5540
5540
  /***/ (function(module, exports, __webpack_require__) {
5541
5541
 
@@ -5554,9 +5554,9 @@ var store = __webpack_require__(/*! ../internals/shared-store */ "../../../node_
5554
5554
  /***/ }),
5555
5555
 
5556
5556
  /***/ "../../../node_modules/core-js/internals/string-multibyte.js":
5557
- /*!*****************************************************************************************!*\
5558
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/string-multibyte.js ***!
5559
- \*****************************************************************************************/
5557
+ /*!********************************************************************************************!*\
5558
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/string-multibyte.js ***!
5559
+ \********************************************************************************************/
5560
5560
  /*! no static exports found */
5561
5561
  /***/ (function(module, exports, __webpack_require__) {
5562
5562
 
@@ -5592,9 +5592,9 @@ module.exports = {
5592
5592
  /***/ }),
5593
5593
 
5594
5594
  /***/ "../../../node_modules/core-js/internals/to-absolute-index.js":
5595
- /*!******************************************************************************************!*\
5596
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/to-absolute-index.js ***!
5597
- \******************************************************************************************/
5595
+ /*!*********************************************************************************************!*\
5596
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/to-absolute-index.js ***!
5597
+ \*********************************************************************************************/
5598
5598
  /*! no static exports found */
5599
5599
  /***/ (function(module, exports, __webpack_require__) {
5600
5600
 
@@ -5615,9 +5615,9 @@ module.exports = function (index, length) {
5615
5615
  /***/ }),
5616
5616
 
5617
5617
  /***/ "../../../node_modules/core-js/internals/to-indexed-object.js":
5618
- /*!******************************************************************************************!*\
5619
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/to-indexed-object.js ***!
5620
- \******************************************************************************************/
5618
+ /*!*********************************************************************************************!*\
5619
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/to-indexed-object.js ***!
5620
+ \*********************************************************************************************/
5621
5621
  /*! no static exports found */
5622
5622
  /***/ (function(module, exports, __webpack_require__) {
5623
5623
 
@@ -5633,9 +5633,9 @@ module.exports = function (it) {
5633
5633
  /***/ }),
5634
5634
 
5635
5635
  /***/ "../../../node_modules/core-js/internals/to-integer.js":
5636
- /*!***********************************************************************************!*\
5637
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/to-integer.js ***!
5638
- \***********************************************************************************/
5636
+ /*!**************************************************************************************!*\
5637
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/to-integer.js ***!
5638
+ \**************************************************************************************/
5639
5639
  /*! no static exports found */
5640
5640
  /***/ (function(module, exports) {
5641
5641
 
@@ -5652,9 +5652,9 @@ module.exports = function (argument) {
5652
5652
  /***/ }),
5653
5653
 
5654
5654
  /***/ "../../../node_modules/core-js/internals/to-length.js":
5655
- /*!**********************************************************************************!*\
5656
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/to-length.js ***!
5657
- \**********************************************************************************/
5655
+ /*!*************************************************************************************!*\
5656
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/to-length.js ***!
5657
+ \*************************************************************************************/
5658
5658
  /*! no static exports found */
5659
5659
  /***/ (function(module, exports, __webpack_require__) {
5660
5660
 
@@ -5672,9 +5672,9 @@ module.exports = function (argument) {
5672
5672
  /***/ }),
5673
5673
 
5674
5674
  /***/ "../../../node_modules/core-js/internals/to-object.js":
5675
- /*!**********************************************************************************!*\
5676
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/to-object.js ***!
5677
- \**********************************************************************************/
5675
+ /*!*************************************************************************************!*\
5676
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/to-object.js ***!
5677
+ \*************************************************************************************/
5678
5678
  /*! no static exports found */
5679
5679
  /***/ (function(module, exports, __webpack_require__) {
5680
5680
 
@@ -5690,9 +5690,9 @@ module.exports = function (argument) {
5690
5690
  /***/ }),
5691
5691
 
5692
5692
  /***/ "../../../node_modules/core-js/internals/to-primitive.js":
5693
- /*!*************************************************************************************!*\
5694
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/to-primitive.js ***!
5695
- \*************************************************************************************/
5693
+ /*!****************************************************************************************!*\
5694
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/to-primitive.js ***!
5695
+ \****************************************************************************************/
5696
5696
  /*! no static exports found */
5697
5697
  /***/ (function(module, exports, __webpack_require__) {
5698
5698
 
@@ -5715,9 +5715,9 @@ module.exports = function (input, PREFERRED_STRING) {
5715
5715
  /***/ }),
5716
5716
 
5717
5717
  /***/ "../../../node_modules/core-js/internals/to-string-tag-support.js":
5718
- /*!**********************************************************************************************!*\
5719
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/to-string-tag-support.js ***!
5720
- \**********************************************************************************************/
5718
+ /*!*************************************************************************************************!*\
5719
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/to-string-tag-support.js ***!
5720
+ \*************************************************************************************************/
5721
5721
  /*! no static exports found */
5722
5722
  /***/ (function(module, exports, __webpack_require__) {
5723
5723
 
@@ -5734,9 +5734,9 @@ module.exports = String(test) === '[object z]';
5734
5734
  /***/ }),
5735
5735
 
5736
5736
  /***/ "../../../node_modules/core-js/internals/uid.js":
5737
- /*!****************************************************************************!*\
5738
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/uid.js ***!
5739
- \****************************************************************************/
5737
+ /*!*******************************************************************************!*\
5738
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/uid.js ***!
5739
+ \*******************************************************************************/
5740
5740
  /*! no static exports found */
5741
5741
  /***/ (function(module, exports) {
5742
5742
 
@@ -5751,9 +5751,9 @@ module.exports = function (key) {
5751
5751
  /***/ }),
5752
5752
 
5753
5753
  /***/ "../../../node_modules/core-js/internals/use-symbol-as-uid.js":
5754
- /*!******************************************************************************************!*\
5755
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/use-symbol-as-uid.js ***!
5756
- \******************************************************************************************/
5754
+ /*!*********************************************************************************************!*\
5755
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/use-symbol-as-uid.js ***!
5756
+ \*********************************************************************************************/
5757
5757
  /*! no static exports found */
5758
5758
  /***/ (function(module, exports, __webpack_require__) {
5759
5759
 
@@ -5769,9 +5769,9 @@ module.exports = NATIVE_SYMBOL
5769
5769
  /***/ }),
5770
5770
 
5771
5771
  /***/ "../../../node_modules/core-js/internals/well-known-symbol-wrapped.js":
5772
- /*!**************************************************************************************************!*\
5773
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/well-known-symbol-wrapped.js ***!
5774
- \**************************************************************************************************/
5772
+ /*!*****************************************************************************************************!*\
5773
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/well-known-symbol-wrapped.js ***!
5774
+ \*****************************************************************************************************/
5775
5775
  /*! no static exports found */
5776
5776
  /***/ (function(module, exports, __webpack_require__) {
5777
5777
 
@@ -5783,9 +5783,9 @@ exports.f = wellKnownSymbol;
5783
5783
  /***/ }),
5784
5784
 
5785
5785
  /***/ "../../../node_modules/core-js/internals/well-known-symbol.js":
5786
- /*!******************************************************************************************!*\
5787
- !*** /Users/constance/Documents/eui/node_modules/core-js/internals/well-known-symbol.js ***!
5788
- \******************************************************************************************/
5786
+ /*!*********************************************************************************************!*\
5787
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/internals/well-known-symbol.js ***!
5788
+ \*********************************************************************************************/
5789
5789
  /*! no static exports found */
5790
5790
  /***/ (function(module, exports, __webpack_require__) {
5791
5791
 
@@ -5811,9 +5811,9 @@ module.exports = function (name) {
5811
5811
  /***/ }),
5812
5812
 
5813
5813
  /***/ "../../../node_modules/core-js/modules/es.array.concat.js":
5814
- /*!**************************************************************************************!*\
5815
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.array.concat.js ***!
5816
- \**************************************************************************************/
5814
+ /*!*****************************************************************************************!*\
5815
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.array.concat.js ***!
5816
+ \*****************************************************************************************/
5817
5817
  /*! no static exports found */
5818
5818
  /***/ (function(module, exports, __webpack_require__) {
5819
5819
 
@@ -5883,9 +5883,9 @@ $({ target: 'Array', proto: true, forced: FORCED }, {
5883
5883
  /***/ }),
5884
5884
 
5885
5885
  /***/ "../../../node_modules/core-js/modules/es.array.filter.js":
5886
- /*!**************************************************************************************!*\
5887
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.array.filter.js ***!
5888
- \**************************************************************************************/
5886
+ /*!*****************************************************************************************!*\
5887
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.array.filter.js ***!
5888
+ \*****************************************************************************************/
5889
5889
  /*! no static exports found */
5890
5890
  /***/ (function(module, exports, __webpack_require__) {
5891
5891
 
@@ -5913,9 +5913,9 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGT
5913
5913
  /***/ }),
5914
5914
 
5915
5915
  /***/ "../../../node_modules/core-js/modules/es.array.from.js":
5916
- /*!************************************************************************************!*\
5917
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.array.from.js ***!
5918
- \************************************************************************************/
5916
+ /*!***************************************************************************************!*\
5917
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.array.from.js ***!
5918
+ \***************************************************************************************/
5919
5919
  /*! no static exports found */
5920
5920
  /***/ (function(module, exports, __webpack_require__) {
5921
5921
 
@@ -5937,9 +5937,9 @@ $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
5937
5937
  /***/ }),
5938
5938
 
5939
5939
  /***/ "../../../node_modules/core-js/modules/es.array.iterator.js":
5940
- /*!****************************************************************************************!*\
5941
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.array.iterator.js ***!
5942
- \****************************************************************************************/
5940
+ /*!*******************************************************************************************!*\
5941
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.array.iterator.js ***!
5942
+ \*******************************************************************************************/
5943
5943
  /*! no static exports found */
5944
5944
  /***/ (function(module, exports, __webpack_require__) {
5945
5945
 
@@ -6002,9 +6002,9 @@ addToUnscopables('entries');
6002
6002
  /***/ }),
6003
6003
 
6004
6004
  /***/ "../../../node_modules/core-js/modules/es.array.map.js":
6005
- /*!***********************************************************************************!*\
6006
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.array.map.js ***!
6007
- \***********************************************************************************/
6005
+ /*!**************************************************************************************!*\
6006
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.array.map.js ***!
6007
+ \**************************************************************************************/
6008
6008
  /*! no static exports found */
6009
6009
  /***/ (function(module, exports, __webpack_require__) {
6010
6010
 
@@ -6032,9 +6032,9 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGT
6032
6032
  /***/ }),
6033
6033
 
6034
6034
  /***/ "../../../node_modules/core-js/modules/es.array.reverse.js":
6035
- /*!***************************************************************************************!*\
6036
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.array.reverse.js ***!
6037
- \***************************************************************************************/
6035
+ /*!******************************************************************************************!*\
6036
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.array.reverse.js ***!
6037
+ \******************************************************************************************/
6038
6038
  /*! no static exports found */
6039
6039
  /***/ (function(module, exports, __webpack_require__) {
6040
6040
 
@@ -6062,9 +6062,9 @@ $({ target: 'Array', proto: true, forced: String(test) === String(test.reverse()
6062
6062
  /***/ }),
6063
6063
 
6064
6064
  /***/ "../../../node_modules/core-js/modules/es.array.slice.js":
6065
- /*!*************************************************************************************!*\
6066
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.array.slice.js ***!
6067
- \*************************************************************************************/
6065
+ /*!****************************************************************************************!*\
6066
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.array.slice.js ***!
6067
+ \****************************************************************************************/
6068
6068
  /*! no static exports found */
6069
6069
  /***/ (function(module, exports, __webpack_require__) {
6070
6070
 
@@ -6123,9 +6123,9 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGT
6123
6123
  /***/ }),
6124
6124
 
6125
6125
  /***/ "../../../node_modules/core-js/modules/es.array.sort.js":
6126
- /*!************************************************************************************!*\
6127
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.array.sort.js ***!
6128
- \************************************************************************************/
6126
+ /*!***************************************************************************************!*\
6127
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.array.sort.js ***!
6128
+ \***************************************************************************************/
6129
6129
  /*! no static exports found */
6130
6130
  /***/ (function(module, exports, __webpack_require__) {
6131
6131
 
@@ -6167,9 +6167,9 @@ $({ target: 'Array', proto: true, forced: FORCED }, {
6167
6167
  /***/ }),
6168
6168
 
6169
6169
  /***/ "../../../node_modules/core-js/modules/es.object.to-string.js":
6170
- /*!******************************************************************************************!*\
6171
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.object.to-string.js ***!
6172
- \******************************************************************************************/
6170
+ /*!*********************************************************************************************!*\
6171
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.object.to-string.js ***!
6172
+ \*********************************************************************************************/
6173
6173
  /*! no static exports found */
6174
6174
  /***/ (function(module, exports, __webpack_require__) {
6175
6175
 
@@ -6187,9 +6187,9 @@ if (!TO_STRING_TAG_SUPPORT) {
6187
6187
  /***/ }),
6188
6188
 
6189
6189
  /***/ "../../../node_modules/core-js/modules/es.regexp.exec.js":
6190
- /*!*************************************************************************************!*\
6191
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.regexp.exec.js ***!
6192
- \*************************************************************************************/
6190
+ /*!****************************************************************************************!*\
6191
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.regexp.exec.js ***!
6192
+ \****************************************************************************************/
6193
6193
  /*! no static exports found */
6194
6194
  /***/ (function(module, exports, __webpack_require__) {
6195
6195
 
@@ -6206,9 +6206,9 @@ $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
6206
6206
  /***/ }),
6207
6207
 
6208
6208
  /***/ "../../../node_modules/core-js/modules/es.regexp.test.js":
6209
- /*!*************************************************************************************!*\
6210
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.regexp.test.js ***!
6211
- \*************************************************************************************/
6209
+ /*!****************************************************************************************!*\
6210
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.regexp.test.js ***!
6211
+ \****************************************************************************************/
6212
6212
  /*! no static exports found */
6213
6213
  /***/ (function(module, exports, __webpack_require__) {
6214
6214
 
@@ -6248,9 +6248,9 @@ $({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
6248
6248
  /***/ }),
6249
6249
 
6250
6250
  /***/ "../../../node_modules/core-js/modules/es.string.iterator.js":
6251
- /*!*****************************************************************************************!*\
6252
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.string.iterator.js ***!
6253
- \*****************************************************************************************/
6251
+ /*!********************************************************************************************!*\
6252
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.string.iterator.js ***!
6253
+ \********************************************************************************************/
6254
6254
  /*! no static exports found */
6255
6255
  /***/ (function(module, exports, __webpack_require__) {
6256
6256
 
@@ -6289,9 +6289,9 @@ defineIterator(String, 'String', function (iterated) {
6289
6289
  /***/ }),
6290
6290
 
6291
6291
  /***/ "../../../node_modules/core-js/modules/es.symbol.description.js":
6292
- /*!********************************************************************************************!*\
6293
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.symbol.description.js ***!
6294
- \********************************************************************************************/
6292
+ /*!***********************************************************************************************!*\
6293
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.symbol.description.js ***!
6294
+ \***********************************************************************************************/
6295
6295
  /*! no static exports found */
6296
6296
  /***/ (function(module, exports, __webpack_require__) {
6297
6297
 
@@ -6351,9 +6351,9 @@ if (DESCRIPTORS && typeof NativeSymbol == 'function' && (!('description' in Nati
6351
6351
  /***/ }),
6352
6352
 
6353
6353
  /***/ "../../../node_modules/core-js/modules/es.symbol.iterator.js":
6354
- /*!*****************************************************************************************!*\
6355
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.symbol.iterator.js ***!
6356
- \*****************************************************************************************/
6354
+ /*!********************************************************************************************!*\
6355
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.symbol.iterator.js ***!
6356
+ \********************************************************************************************/
6357
6357
  /*! no static exports found */
6358
6358
  /***/ (function(module, exports, __webpack_require__) {
6359
6359
 
@@ -6367,9 +6367,9 @@ defineWellKnownSymbol('iterator');
6367
6367
  /***/ }),
6368
6368
 
6369
6369
  /***/ "../../../node_modules/core-js/modules/es.symbol.js":
6370
- /*!********************************************************************************!*\
6371
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/es.symbol.js ***!
6372
- \********************************************************************************/
6370
+ /*!***********************************************************************************!*\
6371
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/es.symbol.js ***!
6372
+ \***********************************************************************************/
6373
6373
  /*! no static exports found */
6374
6374
  /***/ (function(module, exports, __webpack_require__) {
6375
6375
 
@@ -6690,9 +6690,9 @@ hiddenKeys[HIDDEN] = true;
6690
6690
  /***/ }),
6691
6691
 
6692
6692
  /***/ "../../../node_modules/core-js/modules/web.dom-collections.iterator.js":
6693
- /*!***************************************************************************************************!*\
6694
- !*** /Users/constance/Documents/eui/node_modules/core-js/modules/web.dom-collections.iterator.js ***!
6695
- \***************************************************************************************************/
6693
+ /*!******************************************************************************************************!*\
6694
+ !*** /Users/chandlerprall/projects/eui/node_modules/core-js/modules/web.dom-collections.iterator.js ***!
6695
+ \******************************************************************************************************/
6696
6696
  /*! no static exports found */
6697
6697
  /***/ (function(module, exports, __webpack_require__) {
6698
6698
 
@@ -6734,9 +6734,9 @@ for (var COLLECTION_NAME in DOMIterables) {
6734
6734
  /***/ }),
6735
6735
 
6736
6736
  /***/ "../../../node_modules/sass-vars-to-js-loader/index.js!../amsterdam/_colors_dark.scss":
6737
- /*!*********************************************************************************************************!*\
6738
- !*** /Users/constance/Documents/eui/node_modules/sass-vars-to-js-loader!../amsterdam/_colors_dark.scss ***!
6739
- \*********************************************************************************************************/
6737
+ /*!************************************************************************************************************!*\
6738
+ !*** /Users/chandlerprall/projects/eui/node_modules/sass-vars-to-js-loader!../amsterdam/_colors_dark.scss ***!
6739
+ \************************************************************************************************************/
6740
6740
  /*! exports provided: euiColorGhost, euiColorInk, euiColorPrimary, euiColorAccent, euiColorSuccess, euiColorWarning, euiColorDanger, euiColorEmptyShade, euiColorLightestShade, euiColorLightShade, euiColorMediumShade, euiColorDarkShade, euiColorDarkestShade, euiColorFullShade, euiPageBackgroundColor, euiColorHighlight, euiTextColor, euiTitleColor, euiTextSubduedColor, euiColorDisabled, euiColorPrimaryText, euiColorSuccessText, euiColorAccentText, euiColorWarningText, euiColorDangerText, euiColorDisabledText, euiLinkColor, euiColorChartLines, euiColorChartBand, default */
6741
6741
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
6742
6742
 
@@ -6806,9 +6806,9 @@ var euiColorChartBand = {"r":42,"g":43,"b":51,"a":1,"rgba":"rgba(42, 43, 51, 1)"
6806
6806
  /***/ }),
6807
6807
 
6808
6808
  /***/ "../../../node_modules/sass-vars-to-js-loader/index.js!../amsterdam/_colors_light.scss":
6809
- /*!**********************************************************************************************************!*\
6810
- !*** /Users/constance/Documents/eui/node_modules/sass-vars-to-js-loader!../amsterdam/_colors_light.scss ***!
6811
- \**********************************************************************************************************/
6809
+ /*!*************************************************************************************************************!*\
6810
+ !*** /Users/chandlerprall/projects/eui/node_modules/sass-vars-to-js-loader!../amsterdam/_colors_light.scss ***!
6811
+ \*************************************************************************************************************/
6812
6812
  /*! exports provided: euiColorGhost, euiColorInk, euiColorPrimary, euiColorAccent, euiColorSuccess, euiColorWarning, euiColorDanger, euiColorEmptyShade, euiColorLightestShade, euiColorLightShade, euiColorMediumShade, euiColorDarkShade, euiColorDarkestShade, euiColorFullShade, euiPageBackgroundColor, euiColorHighlight, euiTextColor, euiTitleColor, euiTextSubduedColor, euiColorDisabled, euiColorPrimaryText, euiColorSuccessText, euiColorAccentText, euiColorWarningText, euiColorDangerText, euiColorDisabledText, euiLinkColor, euiColorChartLines, euiColorChartBand, default */
6813
6813
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
6814
6814
 
@@ -6909,9 +6909,9 @@ module.exports = g;
6909
6909
  /***/ }),
6910
6910
 
6911
6911
  /***/ "../../services/color/color_palette.ts":
6912
- /*!**************************************************************************!*\
6913
- !*** /Users/constance/Documents/eui/src/services/color/color_palette.ts ***!
6914
- \**************************************************************************/
6912
+ /*!*****************************************************************************!*\
6913
+ !*** /Users/chandlerprall/projects/eui/src/services/color/color_palette.ts ***!
6914
+ \*****************************************************************************/
6915
6915
  /*! no static exports found */
6916
6916
  /***/ (function(module, exports, __webpack_require__) {
6917
6917
 
@@ -7015,9 +7015,9 @@ colors) {
7015
7015
  /***/ }),
7016
7016
 
7017
7017
  /***/ "../../services/color/eui_palettes.ts":
7018
- /*!*************************************************************************!*\
7019
- !*** /Users/constance/Documents/eui/src/services/color/eui_palettes.ts ***!
7020
- \*************************************************************************/
7018
+ /*!****************************************************************************!*\
7019
+ !*** /Users/chandlerprall/projects/eui/src/services/color/eui_palettes.ts ***!
7020
+ \****************************************************************************/
7021
7021
  /*! no static exports found */
7022
7022
  /***/ (function(module, exports, __webpack_require__) {
7023
7023
 
@@ -7301,9 +7301,9 @@ exports.euiPaletteGray = euiPaletteGray;
7301
7301
  /***/ }),
7302
7302
 
7303
7303
  /***/ "../../services/color/visualization_colors.ts":
7304
- /*!*********************************************************************************!*\
7305
- !*** /Users/constance/Documents/eui/src/services/color/visualization_colors.ts ***!
7306
- \*********************************************************************************/
7304
+ /*!************************************************************************************!*\
7305
+ !*** /Users/chandlerprall/projects/eui/src/services/color/visualization_colors.ts ***!
7306
+ \************************************************************************************/
7307
7307
  /*! no static exports found */
7308
7308
  /***/ (function(module, exports, __webpack_require__) {
7309
7309