@elastic/eui 99.2.0-borealis.0 → 99.3.0-borealis.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 (267) hide show
  1. package/dist/eui_theme_borealis_light.json +2 -2
  2. package/es/components/accordion/accordion.js +2 -1
  3. package/es/components/accordion/accordion_children/accordion_children.js +20 -7
  4. package/es/components/accordion/accordion_children/accordion_children.styles.js +5 -0
  5. package/es/components/basic_table/basic_table.js +135 -2
  6. package/es/components/basic_table/in_memory_table.js +131 -1
  7. package/es/components/bottom_bar/bottom_bar.styles.js +1 -1
  8. package/es/components/button/button_icon/button_icon.styles.js +1 -1
  9. package/es/components/call_out/call_out.js +1 -1
  10. package/es/components/call_out/call_out.styles.js +5 -4
  11. package/es/components/code/code.styles.js +1 -1
  12. package/es/components/code/code_syntax.styles.js +1 -0
  13. package/es/components/code/utils.js +5 -2
  14. package/es/components/datagrid/data_grid.stories.utils.js +0 -1090
  15. package/es/components/date_picker/date_picker.styles.js +1 -1
  16. package/es/components/date_picker/date_picker_range.styles.js +1 -1
  17. package/es/components/date_picker/react_date_picker.styles.js +1 -1
  18. package/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +3 -0
  19. package/es/components/date_picker/super_date_picker/super_date_picker.styles.js +1 -1
  20. package/es/components/expression/expression.styles.js +13 -13
  21. package/es/components/flyout/_flyout_close_button.styles.js +1 -1
  22. package/es/components/flyout/flyout.styles.js +1 -1
  23. package/es/components/header/header.styles.js +1 -1
  24. package/es/components/image/image.styles.js +1 -1
  25. package/es/components/image/image_button.styles.js +1 -1
  26. package/es/components/inline_edit/inline_edit_form.js +4 -4
  27. package/es/components/inline_edit/inline_edit_text.js +4 -4
  28. package/es/components/inline_edit/inline_edit_title.js +4 -4
  29. package/es/components/key_pad_menu/key_pad_menu_item.styles.js +9 -6
  30. package/es/components/link/link.styles.js +6 -6
  31. package/es/components/modal/modal.styles.js +1 -1
  32. package/es/components/page_template/inner/page_inner.styles.js +1 -1
  33. package/es/components/pagination/pagination.styles.js +2 -2
  34. package/es/components/panel/panel.styles.js +1 -1
  35. package/es/components/popover/popover_panel/_popover_panel.styles.js +1 -1
  36. package/es/components/resizable_container/resizable_collapse_button.styles.js +1 -1
  37. package/es/components/selectable/selectable_list/selectable_list_item.styles.js +1 -1
  38. package/es/components/side_nav/side_nav_item.styles.js +5 -5
  39. package/es/components/stat/stat.styles.js +5 -5
  40. package/es/components/table/table_cells_shared.styles.js +2 -2
  41. package/es/components/table/table_header_cell.js +76 -4
  42. package/es/components/table/table_row.styles.js +1 -1
  43. package/es/components/tabs/tab.styles.js +2 -2
  44. package/es/components/text_diff/text_diff.styles.js +1 -1
  45. package/es/components/toast/toast.styles.js +1 -1
  46. package/es/components/tool_tip/tool_tip.styles.js +1 -1
  47. package/es/global_styling/mixins/_shadow.js +31 -0
  48. package/es/global_styling/mixins/index.js +2 -1
  49. package/es/global_styling/reset/global_styles.js +1 -1
  50. package/es/themes/amsterdam/global_styling/functions/shadows.js +1 -10
  51. package/es/themes/amsterdam/global_styling/mixins/shadow.js +1 -146
  52. package/es/themes/amsterdam/global_styling/variables/_breakpoint.js +1 -7
  53. package/es/themes/amsterdam/global_styling/variables/_components.js +267 -262
  54. package/eui.d.ts +17078 -17082
  55. package/i18ntokens.json +36 -36
  56. package/lib/components/accordion/accordion.js +2 -1
  57. package/lib/components/accordion/accordion_children/accordion_children.js +19 -6
  58. package/lib/components/accordion/accordion_children/accordion_children.styles.js +5 -0
  59. package/lib/components/basic_table/basic_table.js +135 -2
  60. package/lib/components/basic_table/in_memory_table.js +131 -1
  61. package/lib/components/bottom_bar/bottom_bar.styles.js +2 -2
  62. package/lib/components/button/button_icon/button_icon.styles.js +1 -1
  63. package/lib/components/call_out/call_out.js +1 -1
  64. package/lib/components/call_out/call_out.styles.js +5 -4
  65. package/lib/components/code/code.styles.js +1 -1
  66. package/lib/components/code/code_syntax.styles.js +1 -0
  67. package/lib/components/code/utils.js +6 -1
  68. package/lib/components/datagrid/data_grid.stories.utils.js +1 -1092
  69. package/lib/components/date_picker/date_picker.styles.js +2 -2
  70. package/lib/components/date_picker/date_picker_range.styles.js +2 -2
  71. package/lib/components/date_picker/react_date_picker.styles.js +2 -2
  72. package/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +3 -0
  73. package/lib/components/date_picker/super_date_picker/super_date_picker.styles.js +1 -1
  74. package/lib/components/expression/expression.styles.js +13 -13
  75. package/lib/components/flyout/_flyout_close_button.styles.js +2 -2
  76. package/lib/components/flyout/flyout.styles.js +2 -2
  77. package/lib/components/header/header.styles.js +2 -2
  78. package/lib/components/image/image.styles.js +2 -2
  79. package/lib/components/image/image_button.styles.js +3 -3
  80. package/lib/components/inline_edit/inline_edit_form.js +4 -4
  81. package/lib/components/inline_edit/inline_edit_text.js +4 -4
  82. package/lib/components/inline_edit/inline_edit_title.js +4 -4
  83. package/lib/components/key_pad_menu/key_pad_menu_item.styles.js +9 -6
  84. package/lib/components/link/link.styles.js +6 -6
  85. package/lib/components/modal/modal.styles.js +3 -3
  86. package/lib/components/page_template/inner/page_inner.styles.js +2 -2
  87. package/lib/components/pagination/pagination.styles.js +2 -2
  88. package/lib/components/panel/panel.styles.js +3 -3
  89. package/lib/components/popover/popover_panel/_popover_panel.styles.js +4 -4
  90. package/lib/components/resizable_container/resizable_collapse_button.styles.js +2 -2
  91. package/lib/components/selectable/selectable_list/selectable_list_item.styles.js +1 -1
  92. package/lib/components/side_nav/side_nav_item.styles.js +5 -5
  93. package/lib/components/stat/stat.styles.js +5 -5
  94. package/lib/components/table/table_cells_shared.styles.js +2 -2
  95. package/lib/components/table/table_header_cell.js +79 -8
  96. package/lib/components/table/table_row.styles.js +2 -2
  97. package/lib/components/tabs/tab.styles.js +2 -2
  98. package/lib/components/text_diff/text_diff.styles.js +1 -1
  99. package/lib/components/toast/toast.styles.js +2 -2
  100. package/lib/components/tool_tip/tool_tip.styles.js +2 -2
  101. package/lib/global_styling/mixins/_shadow.js +84 -0
  102. package/lib/global_styling/mixins/index.js +11 -0
  103. package/lib/global_styling/reset/global_styles.js +1 -1
  104. package/lib/themes/amsterdam/global_styling/functions/shadows.js +7 -19
  105. package/lib/themes/amsterdam/global_styling/mixins/shadow.js +10 -154
  106. package/lib/themes/amsterdam/global_styling/variables/_breakpoint.js +7 -16
  107. package/lib/themes/amsterdam/global_styling/variables/_components.js +267 -262
  108. package/optimize/es/components/accordion/accordion.js +2 -1
  109. package/optimize/es/components/accordion/accordion_children/accordion_children.js +20 -7
  110. package/optimize/es/components/accordion/accordion_children/accordion_children.styles.js +5 -0
  111. package/optimize/es/components/basic_table/basic_table.js +4 -1
  112. package/optimize/es/components/bottom_bar/bottom_bar.styles.js +1 -1
  113. package/optimize/es/components/button/button_icon/button_icon.styles.js +1 -1
  114. package/optimize/es/components/call_out/call_out.js +1 -1
  115. package/optimize/es/components/call_out/call_out.styles.js +5 -4
  116. package/optimize/es/components/code/code.styles.js +1 -1
  117. package/optimize/es/components/code/code_syntax.styles.js +1 -0
  118. package/optimize/es/components/code/utils.js +5 -2
  119. package/optimize/es/components/datagrid/data_grid.stories.utils.js +0 -18
  120. package/optimize/es/components/date_picker/date_picker.styles.js +1 -1
  121. package/optimize/es/components/date_picker/date_picker_range.styles.js +1 -1
  122. package/optimize/es/components/date_picker/react_date_picker.styles.js +1 -1
  123. package/optimize/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +3 -0
  124. package/optimize/es/components/date_picker/super_date_picker/super_date_picker.styles.js +1 -1
  125. package/optimize/es/components/expression/expression.styles.js +13 -13
  126. package/optimize/es/components/flyout/_flyout_close_button.styles.js +1 -1
  127. package/optimize/es/components/flyout/flyout.styles.js +1 -1
  128. package/optimize/es/components/header/header.styles.js +1 -1
  129. package/optimize/es/components/image/image.styles.js +1 -1
  130. package/optimize/es/components/image/image_button.styles.js +1 -1
  131. package/optimize/es/components/key_pad_menu/key_pad_menu_item.styles.js +9 -6
  132. package/optimize/es/components/link/link.styles.js +6 -6
  133. package/optimize/es/components/modal/modal.styles.js +1 -1
  134. package/optimize/es/components/page_template/inner/page_inner.styles.js +1 -1
  135. package/optimize/es/components/pagination/pagination.styles.js +2 -2
  136. package/optimize/es/components/panel/panel.styles.js +1 -1
  137. package/optimize/es/components/popover/popover_panel/_popover_panel.styles.js +1 -1
  138. package/optimize/es/components/resizable_container/resizable_collapse_button.styles.js +1 -1
  139. package/optimize/es/components/selectable/selectable_list/selectable_list_item.styles.js +1 -1
  140. package/optimize/es/components/side_nav/side_nav_item.styles.js +5 -5
  141. package/optimize/es/components/stat/stat.styles.js +5 -5
  142. package/optimize/es/components/table/table_cells_shared.styles.js +2 -2
  143. package/optimize/es/components/table/table_header_cell.js +14 -3
  144. package/optimize/es/components/table/table_row.styles.js +1 -1
  145. package/optimize/es/components/tabs/tab.styles.js +2 -2
  146. package/optimize/es/components/text_diff/text_diff.styles.js +1 -1
  147. package/optimize/es/components/toast/toast.styles.js +1 -1
  148. package/optimize/es/components/tool_tip/tool_tip.styles.js +1 -1
  149. package/optimize/es/global_styling/mixins/_shadow.js +31 -0
  150. package/optimize/es/global_styling/mixins/index.js +2 -1
  151. package/optimize/es/global_styling/reset/global_styles.js +1 -1
  152. package/optimize/es/themes/amsterdam/global_styling/functions/shadows.js +1 -10
  153. package/optimize/es/themes/amsterdam/global_styling/mixins/shadow.js +1 -146
  154. package/optimize/es/themes/amsterdam/global_styling/variables/_breakpoint.js +1 -7
  155. package/optimize/es/themes/amsterdam/global_styling/variables/_components.js +267 -262
  156. package/optimize/lib/components/accordion/accordion.js +2 -1
  157. package/optimize/lib/components/accordion/accordion_children/accordion_children.js +19 -6
  158. package/optimize/lib/components/accordion/accordion_children/accordion_children.styles.js +5 -0
  159. package/optimize/lib/components/basic_table/basic_table.js +4 -1
  160. package/optimize/lib/components/bottom_bar/bottom_bar.styles.js +2 -2
  161. package/optimize/lib/components/button/button_icon/button_icon.styles.js +1 -1
  162. package/optimize/lib/components/call_out/call_out.js +1 -1
  163. package/optimize/lib/components/call_out/call_out.styles.js +5 -4
  164. package/optimize/lib/components/code/code.styles.js +1 -1
  165. package/optimize/lib/components/code/code_syntax.styles.js +1 -0
  166. package/optimize/lib/components/code/utils.js +6 -1
  167. package/optimize/lib/components/datagrid/data_grid.stories.utils.js +1 -19
  168. package/optimize/lib/components/date_picker/date_picker.styles.js +2 -2
  169. package/optimize/lib/components/date_picker/date_picker_range.styles.js +2 -2
  170. package/optimize/lib/components/date_picker/react_date_picker.styles.js +2 -2
  171. package/optimize/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +3 -0
  172. package/optimize/lib/components/date_picker/super_date_picker/super_date_picker.styles.js +1 -1
  173. package/optimize/lib/components/expression/expression.styles.js +13 -13
  174. package/optimize/lib/components/flyout/_flyout_close_button.styles.js +2 -2
  175. package/optimize/lib/components/flyout/flyout.styles.js +2 -2
  176. package/optimize/lib/components/header/header.styles.js +2 -2
  177. package/optimize/lib/components/image/image.styles.js +2 -2
  178. package/optimize/lib/components/image/image_button.styles.js +3 -3
  179. package/optimize/lib/components/key_pad_menu/key_pad_menu_item.styles.js +9 -6
  180. package/optimize/lib/components/link/link.styles.js +6 -6
  181. package/optimize/lib/components/modal/modal.styles.js +3 -3
  182. package/optimize/lib/components/page_template/inner/page_inner.styles.js +2 -2
  183. package/optimize/lib/components/pagination/pagination.styles.js +2 -2
  184. package/optimize/lib/components/panel/panel.styles.js +3 -3
  185. package/optimize/lib/components/popover/popover_panel/_popover_panel.styles.js +4 -4
  186. package/optimize/lib/components/resizable_container/resizable_collapse_button.styles.js +2 -2
  187. package/optimize/lib/components/selectable/selectable_list/selectable_list_item.styles.js +1 -1
  188. package/optimize/lib/components/side_nav/side_nav_item.styles.js +5 -5
  189. package/optimize/lib/components/stat/stat.styles.js +5 -5
  190. package/optimize/lib/components/table/table_cells_shared.styles.js +2 -2
  191. package/optimize/lib/components/table/table_header_cell.js +14 -3
  192. package/optimize/lib/components/table/table_row.styles.js +2 -2
  193. package/optimize/lib/components/tabs/tab.styles.js +2 -2
  194. package/optimize/lib/components/text_diff/text_diff.styles.js +1 -1
  195. package/optimize/lib/components/toast/toast.styles.js +2 -2
  196. package/optimize/lib/components/tool_tip/tool_tip.styles.js +2 -2
  197. package/optimize/lib/global_styling/mixins/_shadow.js +84 -0
  198. package/optimize/lib/global_styling/mixins/index.js +11 -0
  199. package/optimize/lib/global_styling/reset/global_styles.js +1 -1
  200. package/optimize/lib/themes/amsterdam/global_styling/functions/shadows.js +7 -19
  201. package/optimize/lib/themes/amsterdam/global_styling/mixins/shadow.js +10 -154
  202. package/optimize/lib/themes/amsterdam/global_styling/variables/_breakpoint.js +7 -16
  203. package/optimize/lib/themes/amsterdam/global_styling/variables/_components.js +267 -262
  204. package/package.json +5 -4
  205. package/src/global_styling/functions/_colors.scss +3 -3
  206. package/src/global_styling/mixins/_shadow.scss +1 -1
  207. package/src/global_styling/mixins/_typography.scss +2 -2
  208. package/src/global_styling/variables/_index.scss +0 -1
  209. package/test-env/components/accordion/accordion.js +2 -1
  210. package/test-env/components/accordion/accordion_children/accordion_children.js +19 -6
  211. package/test-env/components/accordion/accordion_children/accordion_children.styles.js +5 -0
  212. package/test-env/components/basic_table/basic_table.js +135 -2
  213. package/test-env/components/basic_table/in_memory_table.js +131 -1
  214. package/test-env/components/bottom_bar/bottom_bar.styles.js +2 -2
  215. package/test-env/components/button/button_icon/button_icon.styles.js +1 -1
  216. package/test-env/components/call_out/call_out.js +1 -1
  217. package/test-env/components/call_out/call_out.styles.js +5 -4
  218. package/test-env/components/code/code.styles.js +1 -1
  219. package/test-env/components/code/code_syntax.styles.js +1 -0
  220. package/test-env/components/code/utils.js +6 -1
  221. package/test-env/components/datagrid/data_grid.stories.utils.js +1 -1091
  222. package/test-env/components/date_picker/date_picker.styles.js +2 -2
  223. package/test-env/components/date_picker/date_picker_range.styles.js +2 -2
  224. package/test-env/components/date_picker/react_date_picker.styles.js +2 -2
  225. package/test-env/components/date_picker/super_date_picker/date_popover/absolute_tab.js +3 -0
  226. package/test-env/components/date_picker/super_date_picker/super_date_picker.styles.js +1 -1
  227. package/test-env/components/expression/expression.styles.js +13 -13
  228. package/test-env/components/flyout/_flyout_close_button.styles.js +2 -2
  229. package/test-env/components/flyout/flyout.styles.js +2 -2
  230. package/test-env/components/header/header.styles.js +2 -2
  231. package/test-env/components/image/image.styles.js +2 -2
  232. package/test-env/components/image/image_button.styles.js +3 -3
  233. package/test-env/components/inline_edit/inline_edit_form.js +4 -4
  234. package/test-env/components/inline_edit/inline_edit_text.js +4 -4
  235. package/test-env/components/inline_edit/inline_edit_title.js +4 -4
  236. package/test-env/components/key_pad_menu/key_pad_menu_item.styles.js +9 -6
  237. package/test-env/components/link/link.styles.js +6 -6
  238. package/test-env/components/modal/modal.styles.js +3 -3
  239. package/test-env/components/page_template/inner/page_inner.styles.js +2 -2
  240. package/test-env/components/pagination/pagination.styles.js +2 -2
  241. package/test-env/components/panel/panel.styles.js +3 -3
  242. package/test-env/components/popover/popover_panel/_popover_panel.styles.js +4 -4
  243. package/test-env/components/resizable_container/resizable_collapse_button.styles.js +2 -2
  244. package/test-env/components/selectable/selectable_list/selectable_list_item.styles.js +1 -1
  245. package/test-env/components/side_nav/side_nav_item.styles.js +5 -5
  246. package/test-env/components/stat/stat.styles.js +5 -5
  247. package/test-env/components/table/table_cells_shared.styles.js +2 -2
  248. package/test-env/components/table/table_header_cell.js +76 -4
  249. package/test-env/components/table/table_row.styles.js +2 -2
  250. package/test-env/components/tabs/tab.styles.js +2 -2
  251. package/test-env/components/text_diff/text_diff.styles.js +1 -1
  252. package/test-env/components/toast/toast.styles.js +2 -2
  253. package/test-env/components/tool_tip/tool_tip.styles.js +2 -2
  254. package/test-env/global_styling/mixins/_shadow.js +84 -0
  255. package/test-env/global_styling/mixins/index.js +11 -0
  256. package/test-env/global_styling/reset/global_styles.js +1 -1
  257. package/test-env/services/breakpoint/current_breakpoint_hook.js +3 -3
  258. package/test-env/themes/amsterdam/global_styling/functions/shadows.js +7 -19
  259. package/test-env/themes/amsterdam/global_styling/mixins/shadow.js +10 -154
  260. package/test-env/themes/amsterdam/global_styling/variables/_breakpoint.js +7 -16
  261. package/test-env/themes/amsterdam/global_styling/variables/_components.js +267 -262
  262. package/es/global_styling/variables/_colors_vis.js +0 -9
  263. package/lib/global_styling/variables/_colors_vis.js +0 -12
  264. package/optimize/es/global_styling/variables/_colors_vis.js +0 -9
  265. package/optimize/lib/global_styling/variables/_colors_vis.js +0 -12
  266. package/src/global_styling/variables/_colors_vis.scss +0 -3
  267. package/test-env/global_styling/variables/_colors_vis.js +0 -12
@@ -123,327 +123,332 @@ var component_colors = {
123
123
  lightestShade = _ref36[0];
124
124
  return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis0)(lightestShade);
125
125
  }, ['colors.lightestShade']),
126
- codeKeywordColor: (0, _utils.computed)(function (_ref37) {
126
+ codeInlineCodeKeywordColor: (0, _utils.computed)(function (_ref37) {
127
127
  var _ref38 = _slicedToArray(_ref37, 1),
128
128
  lightestShade = _ref38[0];
129
- return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis3)(lightestShade);
129
+ return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis6)(lightestShade);
130
130
  }, ['colors.lightestShade']),
131
- codeFunctionTitleColor: 'inherit',
132
- codeTypeColor: (0, _utils.computed)(function (_ref39) {
131
+ codeKeywordColor: (0, _utils.computed)(function (_ref39) {
133
132
  var _ref40 = _slicedToArray(_ref39, 1),
134
133
  lightestShade = _ref40[0];
135
- return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis1)(lightestShade);
134
+ return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis3)(lightestShade);
136
135
  }, ['colors.lightestShade']),
137
- codeAttributeColor: 'inherit',
138
- codeSymbolColor: (0, _utils.computed)(function (_ref41) {
136
+ codeFunctionTitleColor: 'inherit',
137
+ codeTypeColor: (0, _utils.computed)(function (_ref41) {
139
138
  var _ref42 = _slicedToArray(_ref41, 1),
140
139
  lightestShade = _ref42[0];
140
+ return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis1)(lightestShade);
141
+ }, ['colors.lightestShade']),
142
+ codeAttributeColor: 'inherit',
143
+ codeSymbolColor: (0, _utils.computed)(function (_ref43) {
144
+ var _ref44 = _slicedToArray(_ref43, 1),
145
+ lightestShade = _ref44[0];
141
146
  return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis9)(lightestShade);
142
147
  }, ['colors.lightestShade']),
143
148
  codeParamsColor: 'inherit',
144
- codeMetaColor: (0, _utils.computed)(function (_ref43) {
145
- var _ref44 = _slicedToArray(_ref43, 2),
146
- lightestShade = _ref44[0],
147
- subduedText = _ref44[1];
149
+ codeMetaColor: (0, _utils.computed)(function (_ref45) {
150
+ var _ref46 = _slicedToArray(_ref45, 2),
151
+ lightestShade = _ref46[0],
152
+ subduedText = _ref46[1];
148
153
  return (0, _contrast.makeHighContrastColor)(subduedText)(lightestShade);
149
154
  }, ['colors.lightestShade', 'colors.subduedText']),
150
- codeTitleColor: (0, _utils.computed)(function (_ref45) {
151
- var _ref46 = _slicedToArray(_ref45, 1),
152
- lightestShade = _ref46[0];
153
- return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis7)(lightestShade);
154
- }, ['colors.lightestShade']),
155
- codeSectionColor: (0, _utils.computed)(function (_ref47) {
155
+ codeTitleColor: (0, _utils.computed)(function (_ref47) {
156
156
  var _ref48 = _slicedToArray(_ref47, 1),
157
157
  lightestShade = _ref48[0];
158
- return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis9)(lightestShade);
158
+ return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis7)(lightestShade);
159
159
  }, ['colors.lightestShade']),
160
- codeAdditionColor: (0, _utils.computed)(function (_ref49) {
160
+ codeSectionColor: (0, _utils.computed)(function (_ref49) {
161
161
  var _ref50 = _slicedToArray(_ref49, 1),
162
162
  lightestShade = _ref50[0];
163
+ return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis9)(lightestShade);
164
+ }, ['colors.lightestShade']),
165
+ codeAdditionColor: (0, _utils.computed)(function (_ref51) {
166
+ var _ref52 = _slicedToArray(_ref51, 1),
167
+ lightestShade = _ref52[0];
163
168
  return (0, _contrast.makeHighContrastColor)(_colors_vis.colorVis.euiColorVis0)(lightestShade);
164
169
  }, ['colors.lightestShade']),
165
- codeDeletionColor: (0, _utils.computed)(function (_ref51) {
166
- var _ref52 = _slicedToArray(_ref51, 2),
167
- lightestShade = _ref52[0],
168
- danger = _ref52[1];
170
+ codeDeletionColor: (0, _utils.computed)(function (_ref53) {
171
+ var _ref54 = _slicedToArray(_ref53, 2),
172
+ lightestShade = _ref54[0],
173
+ danger = _ref54[1];
169
174
  return (0, _contrast.makeHighContrastColor)(danger)(lightestShade);
170
175
  }, ['colors.lightestShade', 'colors.danger']),
171
176
  codeSelectorClassColor: 'inherit',
172
177
  codeSelectorIdColor: 'inherit',
173
- collapsibleNavGroupBackground: (0, _utils.computed)(function (_ref53) {
174
- var _ref54 = _slicedToArray(_ref53, 1),
175
- body = _ref54[0];
178
+ collapsibleNavGroupBackground: (0, _utils.computed)(function (_ref55) {
179
+ var _ref56 = _slicedToArray(_ref55, 1),
180
+ body = _ref56[0];
176
181
  return body;
177
182
  }, ['colors.body']),
178
- collapsibleNavGroupBackgroundDark: (0, _utils.computed)(function (_ref55) {
179
- var _ref56 = _slicedToArray(_ref55, 1),
180
- darkestShade = _ref56[0];
183
+ collapsibleNavGroupBackgroundDark: (0, _utils.computed)(function (_ref57) {
184
+ var _ref58 = _slicedToArray(_ref57, 1),
185
+ darkestShade = _ref58[0];
181
186
  return (0, _manipulation.shade)(darkestShade, 0.2);
182
187
  }, ['colors.darkestShade']),
183
- dataGridBorderColor: (0, _utils.computed)(function (_ref57) {
184
- var _ref58 = _slicedToArray(_ref57, 1),
185
- color = _ref58[0];
186
- return color;
187
- }, ['border.color']),
188
- dataGridVerticalLineBorderColor: (0, _utils.computed)(function (_ref59) {
188
+ dataGridBorderColor: (0, _utils.computed)(function (_ref59) {
189
189
  var _ref60 = _slicedToArray(_ref59, 1),
190
190
  color = _ref60[0];
191
- return (0, _manipulation.tint)(color, 0.3);
191
+ return color;
192
192
  }, ['border.color']),
193
- dataGridRowBackgroundStriped: (0, _utils.computed)(function (_ref61) {
193
+ dataGridVerticalLineBorderColor: (0, _utils.computed)(function (_ref61) {
194
194
  var _ref62 = _slicedToArray(_ref61, 1),
195
- lightestShade = _ref62[0];
195
+ color = _ref62[0];
196
+ return (0, _manipulation.tint)(color, 0.3);
197
+ }, ['border.color']),
198
+ dataGridRowBackgroundStriped: (0, _utils.computed)(function (_ref63) {
199
+ var _ref64 = _slicedToArray(_ref63, 1),
200
+ lightestShade = _ref64[0];
196
201
  return lightestShade;
197
202
  }, ['colors.lightestShade']),
198
- dataGridRowBackgroundHover: (0, _utils.computed)(function (_ref63) {
199
- var _ref64 = _slicedToArray(_ref63, 1),
200
- highlight = _ref64[0];
201
- return highlight;
202
- }, ['colors.highlight']),
203
- dataGridRowBackgroundSelect: (0, _utils.computed)(function (_ref65) {
203
+ dataGridRowBackgroundHover: (0, _utils.computed)(function (_ref65) {
204
204
  var _ref66 = _slicedToArray(_ref65, 1),
205
205
  highlight = _ref66[0];
206
206
  return highlight;
207
207
  }, ['colors.highlight']),
208
- dragDropDraggingBackground: (0, _utils.computed)(function (_ref67) {
208
+ dataGridRowBackgroundSelect: (0, _utils.computed)(function (_ref67) {
209
209
  var _ref68 = _slicedToArray(_ref67, 1),
210
- success = _ref68[0];
211
- return (0, _manipulation.transparentize)(success, 0.1);
212
- }, ['colors.success']),
213
- dragDropDraggingOverBackground: (0, _utils.computed)(function (_ref69) {
210
+ highlight = _ref68[0];
211
+ return highlight;
212
+ }, ['colors.highlight']),
213
+ dragDropDraggingBackground: (0, _utils.computed)(function (_ref69) {
214
214
  var _ref70 = _slicedToArray(_ref69, 1),
215
215
  success = _ref70[0];
216
- return (0, _manipulation.transparentize)(success, 0.25);
216
+ return (0, _manipulation.transparentize)(success, 0.1);
217
217
  }, ['colors.success']),
218
- filterSelectItemBackgroundFocusDisabled: (0, _utils.computed)(function (_ref71) {
218
+ dragDropDraggingOverBackground: (0, _utils.computed)(function (_ref71) {
219
219
  var _ref72 = _slicedToArray(_ref71, 1),
220
- disabled = _ref72[0];
220
+ success = _ref72[0];
221
+ return (0, _manipulation.transparentize)(success, 0.25);
222
+ }, ['colors.success']),
223
+ filterSelectItemBackgroundFocusDisabled: (0, _utils.computed)(function (_ref73) {
224
+ var _ref74 = _slicedToArray(_ref73, 1),
225
+ disabled = _ref74[0];
221
226
  return (0, _manipulation.transparentize)(disabled, 0.1);
222
227
  }, ['colors.disabled']),
223
- flyoutFooterBackground: (0, _utils.computed)(function (_ref73) {
224
- var _ref74 = _slicedToArray(_ref73, 1),
225
- lightestShade = _ref74[0];
228
+ flyoutFooterBackground: (0, _utils.computed)(function (_ref75) {
229
+ var _ref76 = _slicedToArray(_ref75, 1),
230
+ lightestShade = _ref76[0];
226
231
  return lightestShade;
227
232
  }, ['colors.lightestShade']),
228
- flyoutCloseButtonInsideBackground: (0, _utils.computed)(function (_ref75) {
229
- var _ref76 = _slicedToArray(_ref75, 1),
230
- emptyShade = _ref76[0];
231
- return (0, _manipulation.transparentize)(emptyShade, 0.9);
232
- }, ['colors.emptyShade']),
233
- headerBackground: (0, _utils.computed)(function (_ref77) {
233
+ flyoutCloseButtonInsideBackground: (0, _utils.computed)(function (_ref77) {
234
234
  var _ref78 = _slicedToArray(_ref77, 1),
235
235
  emptyShade = _ref78[0];
236
- return emptyShade;
236
+ return (0, _manipulation.transparentize)(emptyShade, 0.9);
237
237
  }, ['colors.emptyShade']),
238
- headerDarkBackground: (0, _utils.computed)(function (_ref79) {
238
+ headerBackground: (0, _utils.computed)(function (_ref79) {
239
239
  var _ref80 = _slicedToArray(_ref79, 1),
240
- darkestShade = _ref80[0];
240
+ emptyShade = _ref80[0];
241
+ return emptyShade;
242
+ }, ['colors.emptyShade']),
243
+ headerDarkBackground: (0, _utils.computed)(function (_ref81) {
244
+ var _ref82 = _slicedToArray(_ref81, 1),
245
+ darkestShade = _ref82[0];
241
246
  return (0, _manipulation.shade)(darkestShade, 0.28);
242
247
  }, ['colors.darkestShade']),
243
- headerDarkSearchBorderColor: (0, _utils.computed)(function (_ref81) {
244
- var _ref82 = _slicedToArray(_ref81, 1),
245
- ghost = _ref82[0];
248
+ headerDarkSearchBorderColor: (0, _utils.computed)(function (_ref83) {
249
+ var _ref84 = _slicedToArray(_ref83, 1),
250
+ ghost = _ref84[0];
246
251
  return (0, _manipulation.transparentize)(ghost, 0.3);
247
252
  }, ['colors.ghost']),
248
- headerDarkSectionItemBackgroundFocus: (0, _utils.computed)(function (_ref83) {
249
- var _ref84 = _slicedToArray(_ref83, 1),
250
- primary = _ref84[0];
253
+ headerDarkSectionItemBackgroundFocus: (0, _utils.computed)(function (_ref85) {
254
+ var _ref86 = _slicedToArray(_ref85, 1),
255
+ primary = _ref86[0];
251
256
  return (0, _manipulation.shade)(primary, 0.5);
252
257
  }, ['colors.primary']),
253
- keyPadMenuItemBackgroundDisabledSelect: (0, _utils.computed)(function (_ref85) {
254
- var _ref86 = _slicedToArray(_ref85, 1),
255
- disabled = _ref86[0];
258
+ keyPadMenuItemBackgroundDisabledSelect: (0, _utils.computed)(function (_ref87) {
259
+ var _ref88 = _slicedToArray(_ref87, 1),
260
+ disabled = _ref88[0];
256
261
  return (0, _manipulation.transparentize)(disabled, 0.1);
257
262
  }, ['colors.disabled']),
258
- listGroupItemBackgroundPrimaryActive: (0, _utils.computed)(function (_ref87) {
259
- var _ref88 = _slicedToArray(_ref87, 1),
260
- lightShade = _ref88[0];
263
+ listGroupItemBackgroundPrimaryActive: (0, _utils.computed)(function (_ref89) {
264
+ var _ref90 = _slicedToArray(_ref89, 1),
265
+ lightShade = _ref90[0];
261
266
  return (0, _manipulation.transparentize)(lightShade, 0.2);
262
267
  }, ['colors.lightShade']),
263
- listGroupItemBackgroundSubduedActive: (0, _utils.computed)(function (_ref89) {
264
- var _ref90 = _slicedToArray(_ref89, 1),
265
- primary = _ref90[0];
268
+ listGroupItemBackgroundSubduedActive: (0, _utils.computed)(function (_ref91) {
269
+ var _ref92 = _slicedToArray(_ref91, 1),
270
+ primary = _ref92[0];
266
271
  return (0, _manipulation.transparentize)(primary, 0.1);
267
272
  }, ['colors.primary']),
268
- listGroupItemBackgroundHover: (0, _utils.computed)(function (_ref91) {
269
- var _ref92 = _slicedToArray(_ref91, 1),
270
- lightShade = _ref92[0];
273
+ listGroupItemBackgroundHover: (0, _utils.computed)(function (_ref93) {
274
+ var _ref94 = _slicedToArray(_ref93, 1),
275
+ lightShade = _ref94[0];
271
276
  return (0, _manipulation.transparentize)(lightShade, 0.2);
272
277
  }, ['colors.lightShade']),
273
- listGroupItemBackgroundPrimaryHover: (0, _utils.computed)(function (_ref93) {
274
- var _ref94 = _slicedToArray(_ref93, 1),
275
- primary = _ref94[0];
278
+ listGroupItemBackgroundPrimaryHover: (0, _utils.computed)(function (_ref95) {
279
+ var _ref96 = _slicedToArray(_ref95, 1),
280
+ primary = _ref96[0];
276
281
  return (0, _manipulation.transparentize)(primary, 0.1);
277
282
  }, ['colors.primary']),
278
- loadingSpinnerBorder: (0, _utils.computed)(function (_ref95) {
279
- var _ref96 = _slicedToArray(_ref95, 1),
280
- lightShade = _ref96[0];
283
+ loadingSpinnerBorder: (0, _utils.computed)(function (_ref97) {
284
+ var _ref98 = _slicedToArray(_ref97, 1),
285
+ lightShade = _ref98[0];
281
286
  return lightShade;
282
287
  }, ['colors.lightShade']),
283
- loadingSpinnerHighlight: (0, _utils.computed)(function (_ref97) {
284
- var _ref98 = _slicedToArray(_ref97, 1),
285
- primary = _ref98[0];
288
+ loadingSpinnerHighlight: (0, _utils.computed)(function (_ref99) {
289
+ var _ref100 = _slicedToArray(_ref99, 1),
290
+ primary = _ref100[0];
286
291
  return primary;
287
292
  }, ['colors.primary']),
288
- loadingChartMonoBackground0: (0, _utils.computed)(function (_ref99) {
289
- var _ref100 = _slicedToArray(_ref99, 1),
290
- lightShade = _ref100[0];
291
- return lightShade;
292
- }, ['colors.lightShade']),
293
- loadingChartMonoBackground1: (0, _utils.computed)(function (_ref101) {
293
+ loadingChartMonoBackground0: (0, _utils.computed)(function (_ref101) {
294
294
  var _ref102 = _slicedToArray(_ref101, 1),
295
295
  lightShade = _ref102[0];
296
- return (0, _manipulation.shade)(lightShade, 0.04);
296
+ return lightShade;
297
297
  }, ['colors.lightShade']),
298
- loadingChartMonoBackground2: (0, _utils.computed)(function (_ref103) {
298
+ loadingChartMonoBackground1: (0, _utils.computed)(function (_ref103) {
299
299
  var _ref104 = _slicedToArray(_ref103, 1),
300
300
  lightShade = _ref104[0];
301
- return (0, _manipulation.shade)(lightShade, 0.08);
301
+ return (0, _manipulation.shade)(lightShade, 0.04);
302
302
  }, ['colors.lightShade']),
303
- loadingChartMonoBackground3: (0, _utils.computed)(function (_ref105) {
303
+ loadingChartMonoBackground2: (0, _utils.computed)(function (_ref105) {
304
304
  var _ref106 = _slicedToArray(_ref105, 1),
305
305
  lightShade = _ref106[0];
306
- return (0, _manipulation.shade)(lightShade, 0.12);
306
+ return (0, _manipulation.shade)(lightShade, 0.08);
307
307
  }, ['colors.lightShade']),
308
- markBackground: (0, _utils.computed)(function (_ref107) {
308
+ loadingChartMonoBackground3: (0, _utils.computed)(function (_ref107) {
309
309
  var _ref108 = _slicedToArray(_ref107, 1),
310
- primary = _ref108[0];
310
+ lightShade = _ref108[0];
311
+ return (0, _manipulation.shade)(lightShade, 0.12);
312
+ }, ['colors.lightShade']),
313
+ markBackground: (0, _utils.computed)(function (_ref109) {
314
+ var _ref110 = _slicedToArray(_ref109, 1),
315
+ primary = _ref110[0];
311
316
  return (0, _manipulation.transparentize)(primary, 0.1);
312
317
  }, ['colors.primary']),
313
- markdownFormatTableBorderColor: (0, _utils.computed)(function (_ref109) {
314
- var _ref110 = _slicedToArray(_ref109, 1),
315
- fullShade = _ref110[0];
318
+ markdownFormatTableBorderColor: (0, _utils.computed)(function (_ref111) {
319
+ var _ref112 = _slicedToArray(_ref111, 1),
320
+ fullShade = _ref112[0];
316
321
  return (0, _manipulation.transparentize)(fullShade, 0.15);
317
322
  }, ['colors.fullShade']),
318
- popoverPanelBackground: (0, _utils.computed)(function (_ref111) {
319
- var _ref112 = _slicedToArray(_ref111, 1),
320
- emptyShade = _ref112[0];
323
+ popoverPanelBackground: (0, _utils.computed)(function (_ref113) {
324
+ var _ref114 = _slicedToArray(_ref113, 1),
325
+ emptyShade = _ref114[0];
321
326
  return emptyShade;
322
327
  }, ['colors.emptyShade']),
323
- popoverFooterBorderColor: (0, _utils.computed)(function (_ref113) {
324
- var _ref114 = _slicedToArray(_ref113, 1),
325
- color = _ref114[0];
328
+ popoverFooterBorderColor: (0, _utils.computed)(function (_ref115) {
329
+ var _ref116 = _slicedToArray(_ref115, 1),
330
+ color = _ref116[0];
326
331
  return color;
327
332
  }, ['border.color']),
328
- scrollbarTrackColor: (0, _utils.computed)(function (_ref115) {
329
- var _ref116 = _slicedToArray(_ref115, 1),
330
- body = _ref116[0];
333
+ scrollbarTrackColor: (0, _utils.computed)(function (_ref117) {
334
+ var _ref118 = _slicedToArray(_ref117, 1),
335
+ body = _ref118[0];
331
336
  return (0, _manipulation.shade)(body, 0.03);
332
337
  }, ['colors.body']),
333
- sideNavItemEmphasizedBackground: (0, _utils.computed)(function (_ref117) {
334
- var _ref118 = _slicedToArray(_ref117, 1),
335
- lightShade = _ref118[0];
338
+ sideNavItemEmphasizedBackground: (0, _utils.computed)(function (_ref119) {
339
+ var _ref120 = _slicedToArray(_ref119, 1),
340
+ lightShade = _ref120[0];
336
341
  return (0, _manipulation.transparentize)(lightShade, 0.3);
337
342
  }, ['colors.lightShade']),
338
- selectableListItemBorderColor: (0, _utils.computed)(function (_ref119) {
339
- var _ref120 = _slicedToArray(_ref119, 1),
340
- color = _ref120[0];
343
+ selectableListItemBorderColor: (0, _utils.computed)(function (_ref121) {
344
+ var _ref122 = _slicedToArray(_ref121, 1),
345
+ color = _ref122[0];
341
346
  return (0, _manipulation.transparentize)(color, 0.4);
342
347
  }, ['border.color']),
343
- superDatePickerBackgroundSuccees: (0, _utils.computed)(function (_ref121) {
344
- var _ref122 = _slicedToArray(_ref121, 1),
345
- success = _ref122[0];
348
+ superDatePickerBackgroundSuccees: (0, _utils.computed)(function (_ref123) {
349
+ var _ref124 = _slicedToArray(_ref123, 1),
350
+ success = _ref124[0];
346
351
  return (0, _manipulation.tint)(success, 0.9);
347
352
  }, ['colors.success']),
348
- switchBackgroundOn: (0, _utils.computed)(function (_ref123) {
349
- var _ref124 = _slicedToArray(_ref123, 1),
350
- primary = _ref124[0];
353
+ switchBackgroundOn: (0, _utils.computed)(function (_ref125) {
354
+ var _ref126 = _slicedToArray(_ref125, 1),
355
+ primary = _ref126[0];
351
356
  return primary;
352
357
  }, ['colors.primary']),
353
- switchBackgroundOff: (0, _utils.computed)(function (_ref125) {
354
- var _ref126 = _slicedToArray(_ref125, 1),
355
- lightestShade = _ref126[0];
358
+ switchBackgroundOff: (0, _utils.computed)(function (_ref127) {
359
+ var _ref128 = _slicedToArray(_ref127, 1),
360
+ lightestShade = _ref128[0];
356
361
  return (0, _manipulation.shade)(lightestShade, 0.4);
357
362
  }, ['colors.lightestShade']),
358
- switchUncompressedBackgroundDisabled: (0, _utils.computed)(function (_ref127) {
359
- var _ref128 = _slicedToArray(_ref127, 1),
360
- lightShade = _ref128[0];
361
- return (0, _manipulation.tint)(lightShade, 0.5);
362
- }, ['colors.lightShade']),
363
- switchCompressedBackgroundDisabled: (0, _utils.computed)(function (_ref129) {
363
+ switchUncompressedBackgroundDisabled: (0, _utils.computed)(function (_ref129) {
364
364
  var _ref130 = _slicedToArray(_ref129, 1),
365
365
  lightShade = _ref130[0];
366
- return (0, _manipulation.tint)(lightShade, 0.25);
366
+ return (0, _manipulation.tint)(lightShade, 0.5);
367
367
  }, ['colors.lightShade']),
368
- switchMiniBackgroundDisabled: (0, _utils.computed)(function (_ref131) {
368
+ switchCompressedBackgroundDisabled: (0, _utils.computed)(function (_ref131) {
369
369
  var _ref132 = _slicedToArray(_ref131, 1),
370
370
  lightShade = _ref132[0];
371
+ return (0, _manipulation.tint)(lightShade, 0.25);
372
+ }, ['colors.lightShade']),
373
+ switchMiniBackgroundDisabled: (0, _utils.computed)(function (_ref133) {
374
+ var _ref134 = _slicedToArray(_ref133, 1),
375
+ lightShade = _ref134[0];
371
376
  return (0, _manipulation.tint)(lightShade, 0);
372
377
  }, ['colors.lightShade']),
373
378
  switchThumbBackgroundDisabled: 'transparent',
374
- switchThumbBorderOn: (0, _utils.computed)(function (_ref133) {
375
- var _ref134 = _slicedToArray(_ref133, 1),
376
- lightestShade = _ref134[0];
377
- return (0, _manipulation.shade)(lightestShade, 0.4);
378
- }, ['colors.lightestShade']),
379
- switchThumbBorderOff: (0, _utils.computed)(function (_ref135) {
379
+ switchThumbBorderOn: (0, _utils.computed)(function (_ref135) {
380
380
  var _ref136 = _slicedToArray(_ref135, 1),
381
381
  lightestShade = _ref136[0];
382
382
  return (0, _manipulation.shade)(lightestShade, 0.4);
383
383
  }, ['colors.lightestShade']),
384
- switchIconDisabled: (0, _utils.computed)(function (_ref137) {
384
+ switchThumbBorderOff: (0, _utils.computed)(function (_ref137) {
385
385
  var _ref138 = _slicedToArray(_ref137, 1),
386
386
  lightestShade = _ref138[0];
387
387
  return (0, _manipulation.shade)(lightestShade, 0.4);
388
388
  }, ['colors.lightestShade']),
389
- tableRowBackgroundHover: (0, _utils.computed)(function (_ref139) {
389
+ switchIconDisabled: (0, _utils.computed)(function (_ref139) {
390
390
  var _ref140 = _slicedToArray(_ref139, 1),
391
391
  lightestShade = _ref140[0];
392
- return (0, _manipulation.tint)(lightestShade, 0.5);
392
+ return (0, _manipulation.shade)(lightestShade, 0.4);
393
393
  }, ['colors.lightestShade']),
394
- tableRowBackgroundSelected: (0, _utils.computed)(function (_ref141) {
394
+ tableRowBackgroundHover: (0, _utils.computed)(function (_ref141) {
395
395
  var _ref142 = _slicedToArray(_ref141, 1),
396
- primary = _ref142[0];
397
- return (0, _manipulation.tint)(primary, 0.96);
398
- }, ['colors.primary']),
399
- tableRowBackgroundSelectedHover: (0, _utils.computed)(function (_ref143) {
396
+ lightestShade = _ref142[0];
397
+ return (0, _manipulation.tint)(lightestShade, 0.5);
398
+ }, ['colors.lightestShade']),
399
+ tableRowBackgroundSelected: (0, _utils.computed)(function (_ref143) {
400
400
  var _ref144 = _slicedToArray(_ref143, 1),
401
401
  primary = _ref144[0];
402
- return (0, _manipulation.tint)(primary, 0.9);
402
+ return (0, _manipulation.tint)(primary, 0.96);
403
403
  }, ['colors.primary']),
404
- tableRowInteractiveBackgroundHover: (0, _utils.computed)(function (_ref145) {
404
+ tableRowBackgroundSelectedHover: (0, _utils.computed)(function (_ref145) {
405
405
  var _ref146 = _slicedToArray(_ref145, 1),
406
406
  primary = _ref146[0];
407
- return (0, _manipulation.transparentize)(primary, 0.05);
407
+ return (0, _manipulation.tint)(primary, 0.9);
408
408
  }, ['colors.primary']),
409
- tableRowInteractiveBackgroundFocus: (0, _utils.computed)(function (_ref147) {
409
+ tableRowInteractiveBackgroundHover: (0, _utils.computed)(function (_ref147) {
410
410
  var _ref148 = _slicedToArray(_ref147, 1),
411
411
  primary = _ref148[0];
412
+ return (0, _manipulation.transparentize)(primary, 0.05);
413
+ }, ['colors.primary']),
414
+ tableRowInteractiveBackgroundFocus: (0, _utils.computed)(function (_ref149) {
415
+ var _ref150 = _slicedToArray(_ref149, 1),
416
+ primary = _ref150[0];
412
417
  return (0, _manipulation.transparentize)(primary, 0.1);
413
418
  }, ['colors.primary']),
414
- tableCellSortableIconColor: (0, _utils.computed)(function (_ref149) {
415
- var _ref150 = _slicedToArray(_ref149, 2),
416
- emptyShade = _ref150[0],
417
- subduedText = _ref150[1];
419
+ tableCellSortableIconColor: (0, _utils.computed)(function (_ref151) {
420
+ var _ref152 = _slicedToArray(_ref151, 2),
421
+ emptyShade = _ref152[0],
422
+ subduedText = _ref152[1];
418
423
  var color = (0, _manipulation.tint)(subduedText, 0.9);
419
424
  return (0, _contrast.makeHighContrastColor)(
420
425
  // Tint it arbitrarily high, the contrast util will take care of lowering back down to WCAG
421
426
  color, 3 // 3:1 ratio from https://www.w3.org/WAI/WCAG22/Understanding/non-text-contrast.html
422
427
  )(emptyShade);
423
428
  }, ['colors.emptyShade', 'colors.subduedText']),
424
- tooltipBackground: (0, _utils.computed)(function (_ref151) {
425
- var _ref152 = _slicedToArray(_ref151, 1),
426
- fullShade = _ref152[0];
427
- return (0, _manipulation.tint)(fullShade, 0.25);
428
- }, ['colors.fullShade']),
429
- tooltipBorder: (0, _utils.computed)(function (_ref153) {
429
+ tooltipBackground: (0, _utils.computed)(function (_ref153) {
430
430
  var _ref154 = _slicedToArray(_ref153, 1),
431
431
  fullShade = _ref154[0];
432
- return (0, _manipulation.tint)(fullShade, 0.35);
432
+ return (0, _manipulation.tint)(fullShade, 0.25);
433
433
  }, ['colors.fullShade']),
434
- tooltipBorderFloating: (0, _utils.computed)(function (_ref155) {
434
+ tooltipBorder: (0, _utils.computed)(function (_ref155) {
435
435
  var _ref156 = _slicedToArray(_ref155, 1),
436
- borderBaseFloating = _ref156[0];
436
+ fullShade = _ref156[0];
437
+ return (0, _manipulation.tint)(fullShade, 0.35);
438
+ }, ['colors.fullShade']),
439
+ tooltipBorderFloating: (0, _utils.computed)(function (_ref157) {
440
+ var _ref158 = _slicedToArray(_ref157, 1),
441
+ borderBaseFloating = _ref158[0];
437
442
  return borderBaseFloating;
438
443
  }, ['colors.borderBaseFloating']),
439
- tourFooterBackground: (0, _utils.computed)(function (_ref157) {
440
- var _ref158 = _slicedToArray(_ref157, 1),
441
- lightestShade = _ref158[0];
444
+ tourFooterBackground: (0, _utils.computed)(function (_ref159) {
445
+ var _ref160 = _slicedToArray(_ref159, 1),
446
+ lightestShade = _ref160[0];
442
447
  return (0, _manipulation.tint)(lightestShade, 0.5);
443
448
  }, ['colors.lightestShade']),
444
- treeViewItemBackgroundHover: (0, _utils.computed)(function (_ref159) {
445
- var _ref160 = _slicedToArray(_ref159, 1),
446
- text = _ref160[0];
449
+ treeViewItemBackgroundHover: (0, _utils.computed)(function (_ref161) {
450
+ var _ref162 = _slicedToArray(_ref161, 1),
451
+ text = _ref162[0];
447
452
  return (0, _manipulation.transparentize)(text, 0.1);
448
453
  }, ['colors.text'])
449
454
  };
@@ -452,166 +457,166 @@ var components = exports.components = {
452
457
  forms: _forms.forms,
453
458
  LIGHT: component_colors,
454
459
  DARK: _objectSpread(_objectSpread({}, component_colors), {}, {
455
- badgeBorderColorHollow: (0, _utils.computed)(function (_ref161) {
456
- var _ref162 = _slicedToArray(_ref161, 1),
457
- color = _ref162[0];
460
+ badgeBorderColorHollow: (0, _utils.computed)(function (_ref163) {
461
+ var _ref164 = _slicedToArray(_ref163, 1),
462
+ color = _ref164[0];
458
463
  return (0, _manipulation.tint)(color, 0.15);
459
464
  }, ['border.color']),
460
- breadcrumbsApplicationBackground: (0, _utils.computed)(function (_ref163) {
461
- var _ref164 = _slicedToArray(_ref163, 1),
462
- darkestShade = _ref164[0];
463
- return (0, _manipulation.shade)(darkestShade, 0.7);
464
- }, ['colors.darkestShade']),
465
- breadcrumbsApplicationColor: (0, _utils.computed)(function (_ref165) {
465
+ breadcrumbsApplicationBackground: (0, _utils.computed)(function (_ref165) {
466
466
  var _ref166 = _slicedToArray(_ref165, 1),
467
467
  darkestShade = _ref166[0];
468
- return (0, _manipulation.shade)(darkestShade, 0.2);
468
+ return (0, _manipulation.shade)(darkestShade, 0.7);
469
469
  }, ['colors.darkestShade']),
470
- collapsibleNavGroupBackground: (0, _utils.computed)(function (_ref167) {
470
+ breadcrumbsApplicationColor: (0, _utils.computed)(function (_ref167) {
471
471
  var _ref168 = _slicedToArray(_ref167, 1),
472
- lightestShade = _ref168[0];
473
- return (0, _manipulation.shade)(lightestShade, 0.5);
474
- }, ['colors.lightestShade']),
475
- collapsibleNavGroupBackgroundDark: (0, _utils.computed)(function (_ref169) {
472
+ darkestShade = _ref168[0];
473
+ return (0, _manipulation.shade)(darkestShade, 0.2);
474
+ }, ['colors.darkestShade']),
475
+ collapsibleNavGroupBackground: (0, _utils.computed)(function (_ref169) {
476
476
  var _ref170 = _slicedToArray(_ref169, 1),
477
477
  lightestShade = _ref170[0];
478
478
  return (0, _manipulation.shade)(lightestShade, 0.5);
479
479
  }, ['colors.lightestShade']),
480
- dataGridVerticalLineBorderColor: (0, _utils.computed)(function (_ref171) {
480
+ collapsibleNavGroupBackgroundDark: (0, _utils.computed)(function (_ref171) {
481
481
  var _ref172 = _slicedToArray(_ref171, 1),
482
- color = _ref172[0];
482
+ lightestShade = _ref172[0];
483
+ return (0, _manipulation.shade)(lightestShade, 0.5);
484
+ }, ['colors.lightestShade']),
485
+ dataGridVerticalLineBorderColor: (0, _utils.computed)(function (_ref173) {
486
+ var _ref174 = _slicedToArray(_ref173, 1),
487
+ color = _ref174[0];
483
488
  return (0, _manipulation.shade)(color, 0.3);
484
489
  }, ['border.color']),
485
- headerDarkBackground: (0, _utils.computed)(function (_ref173) {
486
- var _ref174 = _slicedToArray(_ref173, 1),
487
- lightestShade = _ref174[0];
490
+ headerDarkBackground: (0, _utils.computed)(function (_ref175) {
491
+ var _ref176 = _slicedToArray(_ref175, 1),
492
+ lightestShade = _ref176[0];
488
493
  return (0, _manipulation.shade)(lightestShade, 0.5);
489
494
  }, ['colors.lightestShade']),
490
- keyPadMenuItemBackgroundDisabledSelect: (0, _utils.computed)(function (_ref175) {
491
- var _ref176 = _slicedToArray(_ref175, 1),
492
- disabled = _ref176[0];
495
+ keyPadMenuItemBackgroundDisabledSelect: (0, _utils.computed)(function (_ref177) {
496
+ var _ref178 = _slicedToArray(_ref177, 1),
497
+ disabled = _ref178[0];
493
498
  return (0, _manipulation.transparentize)(disabled, 0.2);
494
499
  }, ['colors.disabled']),
495
- listGroupItemBackgroundSubduedActive: (0, _utils.computed)(function (_ref177) {
496
- var _ref178 = _slicedToArray(_ref177, 1),
497
- lightShade = _ref178[0];
498
- return (0, _manipulation.transparentize)(lightShade, 0.4);
499
- }, ['colors.lightShade']),
500
- loadingChartMonoBackground0: (0, _utils.computed)(function (_ref179) {
500
+ listGroupItemBackgroundSubduedActive: (0, _utils.computed)(function (_ref179) {
501
501
  var _ref180 = _slicedToArray(_ref179, 1),
502
502
  lightShade = _ref180[0];
503
- return lightShade;
503
+ return (0, _manipulation.transparentize)(lightShade, 0.4);
504
504
  }, ['colors.lightShade']),
505
- loadingChartMonoBackground1: (0, _utils.computed)(function (_ref181) {
505
+ loadingChartMonoBackground0: (0, _utils.computed)(function (_ref181) {
506
506
  var _ref182 = _slicedToArray(_ref181, 1),
507
507
  lightShade = _ref182[0];
508
- return (0, _manipulation.tint)(lightShade, 0.04);
508
+ return lightShade;
509
509
  }, ['colors.lightShade']),
510
- loadingChartMonoBackground2: (0, _utils.computed)(function (_ref183) {
510
+ loadingChartMonoBackground1: (0, _utils.computed)(function (_ref183) {
511
511
  var _ref184 = _slicedToArray(_ref183, 1),
512
512
  lightShade = _ref184[0];
513
- return (0, _manipulation.tint)(lightShade, 0.08);
513
+ return (0, _manipulation.tint)(lightShade, 0.04);
514
514
  }, ['colors.lightShade']),
515
- loadingChartMonoBackground3: (0, _utils.computed)(function (_ref185) {
515
+ loadingChartMonoBackground2: (0, _utils.computed)(function (_ref185) {
516
516
  var _ref186 = _slicedToArray(_ref185, 1),
517
517
  lightShade = _ref186[0];
518
- return (0, _manipulation.tint)(lightShade, 0.12);
518
+ return (0, _manipulation.tint)(lightShade, 0.08);
519
519
  }, ['colors.lightShade']),
520
- markBackground: (0, _utils.computed)(function (_ref187) {
520
+ loadingChartMonoBackground3: (0, _utils.computed)(function (_ref187) {
521
521
  var _ref188 = _slicedToArray(_ref187, 1),
522
- primary = _ref188[0];
522
+ lightShade = _ref188[0];
523
+ return (0, _manipulation.tint)(lightShade, 0.12);
524
+ }, ['colors.lightShade']),
525
+ markBackground: (0, _utils.computed)(function (_ref189) {
526
+ var _ref190 = _slicedToArray(_ref189, 1),
527
+ primary = _ref190[0];
523
528
  return (0, _manipulation.transparentize)(primary, 0.3);
524
529
  }, ['colors.primary']),
525
- popoverPanelBackground: (0, _utils.computed)(function (_ref189) {
526
- var _ref190 = _slicedToArray(_ref189, 1),
527
- emptyShade = _ref190[0];
530
+ popoverPanelBackground: (0, _utils.computed)(function (_ref191) {
531
+ var _ref192 = _slicedToArray(_ref191, 1),
532
+ emptyShade = _ref192[0];
528
533
  return (0, _manipulation.tint)(emptyShade, 0.025);
529
534
  }, ['colors.emptyShade']),
530
- scrollbarTrackColor: (0, _utils.computed)(function (_ref191) {
531
- var _ref192 = _slicedToArray(_ref191, 1),
532
- body = _ref192[0];
535
+ scrollbarTrackColor: (0, _utils.computed)(function (_ref193) {
536
+ var _ref194 = _slicedToArray(_ref193, 1),
537
+ body = _ref194[0];
533
538
  return (0, _manipulation.tint)(body, 0.07);
534
539
  }, ['colors.body']),
535
- superDatePickerBackgroundSuccees: (0, _utils.computed)(function (_ref193) {
536
- var _ref194 = _slicedToArray(_ref193, 1),
537
- success = _ref194[0];
540
+ superDatePickerBackgroundSuccees: (0, _utils.computed)(function (_ref195) {
541
+ var _ref196 = _slicedToArray(_ref195, 1),
542
+ success = _ref196[0];
538
543
  return (0, _manipulation.shade)(success, 0.7);
539
544
  }, ['colors.success']),
540
- switchBackgroundOff: (0, _utils.computed)(function (_ref195) {
541
- var _ref196 = _slicedToArray(_ref195, 1),
542
- lightestShade = _ref196[0];
545
+ switchBackgroundOff: (0, _utils.computed)(function (_ref197) {
546
+ var _ref198 = _slicedToArray(_ref197, 1),
547
+ lightestShade = _ref198[0];
543
548
  return (0, _manipulation.tint)(lightestShade, 0.31);
544
549
  }, ['colors.lightestShade']),
545
- switchUncompressedBackgroundDisabled: (0, _utils.computed)(function (_ref197) {
546
- var _ref198 = _slicedToArray(_ref197, 1),
547
- lightShade = _ref198[0];
548
- return lightShade;
549
- }, ['colors.lightShade']),
550
- switchCompressedBackgroundDisabled: (0, _utils.computed)(function (_ref199) {
550
+ switchUncompressedBackgroundDisabled: (0, _utils.computed)(function (_ref199) {
551
551
  var _ref200 = _slicedToArray(_ref199, 1),
552
552
  lightShade = _ref200[0];
553
553
  return lightShade;
554
554
  }, ['colors.lightShade']),
555
- switchMiniBackgroundDisabled: (0, _utils.computed)(function (_ref201) {
555
+ switchCompressedBackgroundDisabled: (0, _utils.computed)(function (_ref201) {
556
556
  var _ref202 = _slicedToArray(_ref201, 1),
557
557
  lightShade = _ref202[0];
558
558
  return lightShade;
559
559
  }, ['colors.lightShade']),
560
- switchThumbBorderOn: (0, _utils.computed)(function (_ref203) {
560
+ switchMiniBackgroundDisabled: (0, _utils.computed)(function (_ref203) {
561
561
  var _ref204 = _slicedToArray(_ref203, 1),
562
- lightestShade = _ref204[0];
563
- return (0, _manipulation.tint)(lightestShade, 0.31);
564
- }, ['colors.lightestShade']),
565
- switchThumbBorderOff: (0, _utils.computed)(function (_ref205) {
562
+ lightShade = _ref204[0];
563
+ return lightShade;
564
+ }, ['colors.lightShade']),
565
+ switchThumbBorderOn: (0, _utils.computed)(function (_ref205) {
566
566
  var _ref206 = _slicedToArray(_ref205, 1),
567
567
  lightestShade = _ref206[0];
568
568
  return (0, _manipulation.tint)(lightestShade, 0.31);
569
569
  }, ['colors.lightestShade']),
570
- switchIconDisabled: (0, _utils.computed)(function (_ref207) {
570
+ switchThumbBorderOff: (0, _utils.computed)(function (_ref207) {
571
571
  var _ref208 = _slicedToArray(_ref207, 1),
572
572
  lightestShade = _ref208[0];
573
573
  return (0, _manipulation.tint)(lightestShade, 0.31);
574
574
  }, ['colors.lightestShade']),
575
- tableRowBackgroundHover: (0, _utils.computed)(function (_ref209) {
575
+ switchIconDisabled: (0, _utils.computed)(function (_ref209) {
576
576
  var _ref210 = _slicedToArray(_ref209, 1),
577
577
  lightestShade = _ref210[0];
578
- return lightestShade;
578
+ return (0, _manipulation.tint)(lightestShade, 0.31);
579
579
  }, ['colors.lightestShade']),
580
- tableRowBackgroundSelected: (0, _utils.computed)(function (_ref211) {
580
+ tableRowBackgroundHover: (0, _utils.computed)(function (_ref211) {
581
581
  var _ref212 = _slicedToArray(_ref211, 1),
582
- primary = _ref212[0];
583
- return (0, _manipulation.shade)(primary, 0.7);
584
- }, ['colors.primary']),
585
- tableRowBackgroundSelectedHover: (0, _utils.computed)(function (_ref213) {
582
+ lightestShade = _ref212[0];
583
+ return lightestShade;
584
+ }, ['colors.lightestShade']),
585
+ tableRowBackgroundSelected: (0, _utils.computed)(function (_ref213) {
586
586
  var _ref214 = _slicedToArray(_ref213, 1),
587
587
  primary = _ref214[0];
588
+ return (0, _manipulation.shade)(primary, 0.7);
589
+ }, ['colors.primary']),
590
+ tableRowBackgroundSelectedHover: (0, _utils.computed)(function (_ref215) {
591
+ var _ref216 = _slicedToArray(_ref215, 1),
592
+ primary = _ref216[0];
588
593
  return (0, _manipulation.shade)(primary, 0.75);
589
594
  }, ['colors.primary']),
590
- tableCellSortableIconColor: (0, _utils.computed)(function (_ref215) {
591
- var _ref216 = _slicedToArray(_ref215, 2),
592
- emptyShade = _ref216[0],
593
- subduedText = _ref216[1];
595
+ tableCellSortableIconColor: (0, _utils.computed)(function (_ref217) {
596
+ var _ref218 = _slicedToArray(_ref217, 2),
597
+ emptyShade = _ref218[0],
598
+ subduedText = _ref218[1];
594
599
  var color = (0, _manipulation.shade)(subduedText, 0.9);
595
600
  return (0, _contrast.makeHighContrastColor)(color, 3)(emptyShade);
596
601
  }, ['colors.emptyShade', 'colors.subduedText']),
597
- tooltipBackground: (0, _utils.computed)(function (_ref217) {
598
- var _ref218 = _slicedToArray(_ref217, 1),
599
- emptyShade = _ref218[0];
602
+ tooltipBackground: (0, _utils.computed)(function (_ref219) {
603
+ var _ref220 = _slicedToArray(_ref219, 1),
604
+ emptyShade = _ref220[0];
600
605
  return (0, _manipulation.shade)(emptyShade, 1);
601
606
  }, ['colors.emptyShade']),
602
- tooltipBorder: (0, _utils.computed)(function (_ref219) {
603
- var _ref220 = _slicedToArray(_ref219, 1),
604
- fullShade = _ref220[0];
607
+ tooltipBorder: (0, _utils.computed)(function (_ref221) {
608
+ var _ref222 = _slicedToArray(_ref221, 1),
609
+ fullShade = _ref222[0];
605
610
  return (0, _manipulation.shade)(fullShade, 0.8);
606
611
  }, ['colors.fullShade']),
607
- tourFooterBackground: (0, _utils.computed)(function (_ref221) {
608
- var _ref222 = _slicedToArray(_ref221, 1),
609
- lightestShade = _ref222[0];
612
+ tourFooterBackground: (0, _utils.computed)(function (_ref223) {
613
+ var _ref224 = _slicedToArray(_ref223, 1),
614
+ lightestShade = _ref224[0];
610
615
  return (0, _manipulation.shade)(lightestShade, 0.45);
611
616
  }, ['colors.lightestShade']),
612
- treeViewItemBackgroundHover: (0, _utils.computed)(function (_ref223) {
613
- var _ref224 = _slicedToArray(_ref223, 1),
614
- text = _ref224[0];
617
+ treeViewItemBackgroundHover: (0, _utils.computed)(function (_ref225) {
618
+ var _ref226 = _slicedToArray(_ref225, 1),
619
+ text = _ref226[0];
615
620
  return (0, _manipulation.transparentize)(text, 0.2);
616
621
  }, ['colors.text'])
617
622
  })