@elastic/eui 102.0.0 → 102.1.0-snapshot.1746441787383

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 (258) hide show
  1. package/dist/eui_theme_borealis_dark.json +1 -1
  2. package/es/components/accessibility/skip_link/skip_link.js +7 -0
  3. package/es/components/badge/color_utils.js +1 -3
  4. package/es/components/badge/notification_badge/badge_notification.styles.js +6 -1
  5. package/es/components/breadcrumbs/_breadcrumb_content.styles.js +6 -3
  6. package/es/components/button/button.js +7 -0
  7. package/es/components/button/button_display/_button_display.js +1 -1
  8. package/es/components/button/button_display/_button_display.styles.js +11 -2
  9. package/es/components/button/button_display/_button_display_content.styles.js +6 -3
  10. package/es/components/button/button_empty/button_empty.js +7 -0
  11. package/es/components/button/button_empty/button_empty.styles.js +9 -12
  12. package/es/components/button/button_group/button_group.js +5 -0
  13. package/es/components/button/button_group/button_group.styles.js +5 -3
  14. package/es/components/button/button_group/button_group_button.js +19 -9
  15. package/es/components/button/button_group/button_group_button.styles.js +43 -19
  16. package/es/components/button/button_icon/button_icon.js +11 -2
  17. package/es/components/card/card.js +7 -0
  18. package/es/components/card/card_select/card_select.js +7 -0
  19. package/es/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +7 -0
  20. package/es/components/color_picker/color_picker.js +13 -8
  21. package/es/components/color_picker/hue.js +27 -6
  22. package/es/components/color_picker/hue.styles.js +3 -2
  23. package/es/components/color_picker/saturation.js +16 -11
  24. package/es/components/color_picker/saturation.styles.js +2 -1
  25. package/es/components/datagrid/body/cell/data_grid_cell.js +7 -0
  26. package/es/components/datagrid/body/cell/data_grid_cell_actions.js +2 -2
  27. package/es/components/datagrid/body/cell/data_grid_cell_actions.styles.js +1 -1
  28. package/es/components/datagrid/body/data_grid_body.js +7 -0
  29. package/es/components/datagrid/body/data_grid_body_custom.js +7 -0
  30. package/es/components/datagrid/body/data_grid_body_virtualized.js +7 -0
  31. package/es/components/datagrid/body/header/data_grid_header_cell.js +7 -0
  32. package/es/components/datagrid/controls/column_sorting.js +7 -0
  33. package/es/components/datagrid/controls/data_grid_toolbar_control.js +18 -1
  34. package/es/components/datagrid/utils/in_memory.js +7 -0
  35. package/es/components/date_picker/auto_refresh/auto_refresh.js +7 -0
  36. package/es/components/filter_group/filter_button.js +98 -24
  37. package/es/components/filter_group/filter_button.styles.js +51 -15
  38. package/es/components/filter_group/filter_group.styles.js +18 -6
  39. package/es/components/header/header_links/header_link.js +7 -0
  40. package/es/components/header/header_section/header_section_item_button.js +7 -0
  41. package/es/components/list_group/list_group.js +7 -0
  42. package/es/components/list_group/list_group_item.js +7 -0
  43. package/es/components/list_group/list_group_item_extra_action.js +7 -0
  44. package/es/components/list_group/pinnable_list_group/pinnable_list_group.js +7 -0
  45. package/es/components/pagination/pagination_button.js +7 -0
  46. package/es/components/search_bar/filters/field_value_selection_filter.js +1 -0
  47. package/es/components/search_bar/filters/field_value_toggle_filter.js +3 -1
  48. package/es/components/search_bar/filters/field_value_toggle_group_filter.js +3 -1
  49. package/es/components/search_bar/filters/is_filter.js +3 -1
  50. package/es/components/search_bar/search_bar.a11y.js +3 -3
  51. package/es/components/table/table_header_cell.js +30 -12
  52. package/es/components/tool_tip/tool_tip.js +4 -1
  53. package/es/global_styling/mixins/_button.js +108 -31
  54. package/es/global_styling/mixins/_color.js +9 -2
  55. package/es/services/theme/index.js +2 -1
  56. package/es/services/theme/provider.js +28 -2
  57. package/es/services/theme/theme_variant.js +22 -0
  58. package/es/test/index.d.ts +2 -1
  59. package/es/themes/amsterdam/global_styling/variables/_buttons.js +348 -147
  60. package/es/themes/amsterdam/global_styling/variables/_components.js +229 -224
  61. package/es/themes/amsterdam/theme.js +2 -1
  62. package/eui.d.ts +919 -701
  63. package/lib/components/accessibility/skip_link/skip_link.js +7 -0
  64. package/lib/components/badge/color_utils.js +1 -3
  65. package/lib/components/badge/notification_badge/badge_notification.styles.js +6 -1
  66. package/lib/components/breadcrumbs/_breadcrumb_content.styles.js +5 -2
  67. package/lib/components/button/button.js +7 -0
  68. package/lib/components/button/button_display/_button_display.js +1 -1
  69. package/lib/components/button/button_display/_button_display.styles.js +11 -2
  70. package/lib/components/button/button_display/_button_display_content.styles.js +6 -3
  71. package/lib/components/button/button_empty/button_empty.js +7 -0
  72. package/lib/components/button/button_empty/button_empty.styles.js +10 -11
  73. package/lib/components/button/button_group/button_group.js +5 -0
  74. package/lib/components/button/button_group/button_group.styles.js +5 -3
  75. package/lib/components/button/button_group/button_group_button.js +18 -8
  76. package/lib/components/button/button_group/button_group_button.styles.js +41 -17
  77. package/lib/components/button/button_icon/button_icon.js +10 -1
  78. package/lib/components/card/card.js +7 -0
  79. package/lib/components/card/card_select/card_select.js +7 -0
  80. package/lib/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +7 -0
  81. package/lib/components/color_picker/color_picker.js +13 -8
  82. package/lib/components/color_picker/hue.js +26 -5
  83. package/lib/components/color_picker/hue.styles.js +3 -2
  84. package/lib/components/color_picker/saturation.js +16 -11
  85. package/lib/components/color_picker/saturation.styles.js +2 -1
  86. package/lib/components/datagrid/body/cell/data_grid_cell.js +7 -0
  87. package/lib/components/datagrid/body/cell/data_grid_cell_actions.js +2 -2
  88. package/lib/components/datagrid/body/cell/data_grid_cell_actions.styles.js +1 -1
  89. package/lib/components/datagrid/body/data_grid_body.js +7 -0
  90. package/lib/components/datagrid/body/data_grid_body_custom.js +7 -0
  91. package/lib/components/datagrid/body/data_grid_body_virtualized.js +7 -0
  92. package/lib/components/datagrid/body/header/data_grid_header_cell.js +7 -0
  93. package/lib/components/datagrid/controls/column_sorting.js +7 -0
  94. package/lib/components/datagrid/controls/data_grid_toolbar_control.js +18 -1
  95. package/lib/components/datagrid/utils/in_memory.js +7 -0
  96. package/lib/components/date_picker/auto_refresh/auto_refresh.js +7 -0
  97. package/lib/components/filter_group/filter_button.js +96 -22
  98. package/lib/components/filter_group/filter_button.styles.js +51 -15
  99. package/lib/components/filter_group/filter_group.styles.js +18 -6
  100. package/lib/components/header/header_links/header_link.js +7 -0
  101. package/lib/components/header/header_section/header_section_item_button.js +7 -0
  102. package/lib/components/list_group/list_group.js +7 -0
  103. package/lib/components/list_group/list_group_item.js +7 -0
  104. package/lib/components/list_group/list_group_item_extra_action.js +7 -0
  105. package/lib/components/list_group/pinnable_list_group/pinnable_list_group.js +7 -0
  106. package/lib/components/pagination/pagination_button.js +7 -0
  107. package/lib/components/search_bar/filters/field_value_selection_filter.js +1 -0
  108. package/lib/components/search_bar/filters/field_value_toggle_filter.js +3 -1
  109. package/lib/components/search_bar/filters/field_value_toggle_group_filter.js +3 -1
  110. package/lib/components/search_bar/filters/is_filter.js +3 -1
  111. package/lib/components/search_bar/search_bar.a11y.js +3 -3
  112. package/lib/components/table/table_header_cell.js +28 -10
  113. package/lib/components/tool_tip/tool_tip.js +4 -1
  114. package/lib/global_styling/mixins/_button.js +106 -30
  115. package/lib/global_styling/mixins/_color.js +11 -4
  116. package/lib/services/theme/index.js +41 -1
  117. package/lib/services/theme/provider.js +28 -2
  118. package/lib/services/theme/theme_variant.js +28 -0
  119. package/lib/test/index.d.ts +2 -1
  120. package/lib/themes/amsterdam/global_styling/variables/_buttons.js +348 -147
  121. package/lib/themes/amsterdam/global_styling/variables/_components.js +229 -224
  122. package/lib/themes/amsterdam/theme.js +2 -1
  123. package/optimize/es/components/badge/color_utils.js +1 -3
  124. package/optimize/es/components/badge/notification_badge/badge_notification.styles.js +6 -1
  125. package/optimize/es/components/breadcrumbs/_breadcrumb_content.styles.js +6 -3
  126. package/optimize/es/components/button/button_display/_button_display.js +1 -1
  127. package/optimize/es/components/button/button_display/_button_display.styles.js +11 -2
  128. package/optimize/es/components/button/button_display/_button_display_content.styles.js +6 -3
  129. package/optimize/es/components/button/button_empty/button_empty.styles.js +9 -12
  130. package/optimize/es/components/button/button_group/button_group.styles.js +5 -3
  131. package/optimize/es/components/button/button_group/button_group_button.js +12 -8
  132. package/optimize/es/components/button/button_group/button_group_button.styles.js +43 -19
  133. package/optimize/es/components/button/button_icon/button_icon.js +4 -2
  134. package/optimize/es/components/color_picker/color_picker.js +13 -8
  135. package/optimize/es/components/color_picker/hue.js +22 -6
  136. package/optimize/es/components/color_picker/hue.styles.js +3 -2
  137. package/optimize/es/components/color_picker/saturation.js +16 -11
  138. package/optimize/es/components/color_picker/saturation.styles.js +2 -1
  139. package/optimize/es/components/datagrid/body/cell/data_grid_cell_actions.js +2 -2
  140. package/optimize/es/components/datagrid/body/cell/data_grid_cell_actions.styles.js +1 -1
  141. package/optimize/es/components/datagrid/controls/data_grid_toolbar_control.js +11 -1
  142. package/optimize/es/components/filter_group/filter_button.js +78 -21
  143. package/optimize/es/components/filter_group/filter_button.styles.js +51 -15
  144. package/optimize/es/components/filter_group/filter_group.styles.js +18 -6
  145. package/optimize/es/components/search_bar/filters/field_value_selection_filter.js +1 -0
  146. package/optimize/es/components/search_bar/filters/field_value_toggle_filter.js +3 -1
  147. package/optimize/es/components/search_bar/filters/field_value_toggle_group_filter.js +3 -1
  148. package/optimize/es/components/search_bar/filters/is_filter.js +3 -1
  149. package/optimize/es/components/search_bar/search_bar.a11y.js +3 -3
  150. package/optimize/es/components/table/table_header_cell.js +26 -11
  151. package/optimize/es/components/tool_tip/tool_tip.js +4 -1
  152. package/optimize/es/global_styling/mixins/_button.js +103 -31
  153. package/optimize/es/global_styling/mixins/_color.js +4 -2
  154. package/optimize/es/services/theme/index.js +2 -1
  155. package/optimize/es/services/theme/provider.js +28 -2
  156. package/optimize/es/services/theme/theme_variant.js +22 -0
  157. package/optimize/es/test/index.d.ts +2 -1
  158. package/optimize/es/themes/amsterdam/global_styling/variables/_buttons.js +348 -147
  159. package/optimize/es/themes/amsterdam/global_styling/variables/_components.js +229 -224
  160. package/optimize/es/themes/amsterdam/theme.js +2 -1
  161. package/optimize/lib/components/badge/color_utils.js +1 -3
  162. package/optimize/lib/components/badge/notification_badge/badge_notification.styles.js +6 -1
  163. package/optimize/lib/components/breadcrumbs/_breadcrumb_content.styles.js +5 -2
  164. package/optimize/lib/components/button/button_display/_button_display.js +1 -1
  165. package/optimize/lib/components/button/button_display/_button_display.styles.js +11 -2
  166. package/optimize/lib/components/button/button_display/_button_display_content.styles.js +6 -3
  167. package/optimize/lib/components/button/button_empty/button_empty.styles.js +10 -11
  168. package/optimize/lib/components/button/button_group/button_group.styles.js +5 -3
  169. package/optimize/lib/components/button/button_group/button_group_button.js +11 -7
  170. package/optimize/lib/components/button/button_group/button_group_button.styles.js +41 -17
  171. package/optimize/lib/components/button/button_icon/button_icon.js +3 -1
  172. package/optimize/lib/components/color_picker/color_picker.js +13 -8
  173. package/optimize/lib/components/color_picker/hue.js +21 -5
  174. package/optimize/lib/components/color_picker/hue.styles.js +3 -2
  175. package/optimize/lib/components/color_picker/saturation.js +16 -11
  176. package/optimize/lib/components/color_picker/saturation.styles.js +2 -1
  177. package/optimize/lib/components/datagrid/body/cell/data_grid_cell_actions.js +2 -2
  178. package/optimize/lib/components/datagrid/body/cell/data_grid_cell_actions.styles.js +1 -1
  179. package/optimize/lib/components/datagrid/controls/data_grid_toolbar_control.js +11 -1
  180. package/optimize/lib/components/filter_group/filter_button.js +76 -19
  181. package/optimize/lib/components/filter_group/filter_button.styles.js +51 -15
  182. package/optimize/lib/components/filter_group/filter_group.styles.js +18 -6
  183. package/optimize/lib/components/search_bar/filters/field_value_selection_filter.js +1 -0
  184. package/optimize/lib/components/search_bar/filters/field_value_toggle_filter.js +3 -1
  185. package/optimize/lib/components/search_bar/filters/field_value_toggle_group_filter.js +3 -1
  186. package/optimize/lib/components/search_bar/filters/is_filter.js +3 -1
  187. package/optimize/lib/components/search_bar/search_bar.a11y.js +3 -3
  188. package/optimize/lib/components/table/table_header_cell.js +25 -11
  189. package/optimize/lib/components/tool_tip/tool_tip.js +4 -1
  190. package/optimize/lib/global_styling/mixins/_button.js +101 -30
  191. package/optimize/lib/global_styling/mixins/_color.js +4 -2
  192. package/optimize/lib/services/theme/index.js +41 -1
  193. package/optimize/lib/services/theme/provider.js +28 -2
  194. package/optimize/lib/services/theme/theme_variant.js +28 -0
  195. package/optimize/lib/test/index.d.ts +2 -1
  196. package/optimize/lib/themes/amsterdam/global_styling/variables/_buttons.js +348 -147
  197. package/optimize/lib/themes/amsterdam/global_styling/variables/_components.js +229 -224
  198. package/optimize/lib/themes/amsterdam/theme.js +2 -1
  199. package/package.json +7 -6
  200. package/test-env/components/accessibility/skip_link/skip_link.js +7 -0
  201. package/test-env/components/badge/color_utils.js +1 -3
  202. package/test-env/components/badge/notification_badge/badge_notification.styles.js +6 -1
  203. package/test-env/components/breadcrumbs/_breadcrumb_content.styles.js +5 -2
  204. package/test-env/components/button/button.js +7 -0
  205. package/test-env/components/button/button_display/_button_display.js +1 -1
  206. package/test-env/components/button/button_display/_button_display.styles.js +11 -2
  207. package/test-env/components/button/button_display/_button_display_content.styles.js +6 -3
  208. package/test-env/components/button/button_empty/button_empty.js +7 -0
  209. package/test-env/components/button/button_empty/button_empty.styles.js +10 -11
  210. package/test-env/components/button/button_group/button_group.js +5 -0
  211. package/test-env/components/button/button_group/button_group.styles.js +5 -3
  212. package/test-env/components/button/button_group/button_group_button.js +18 -8
  213. package/test-env/components/button/button_group/button_group_button.styles.js +41 -17
  214. package/test-env/components/button/button_icon/button_icon.js +10 -1
  215. package/test-env/components/card/card.js +7 -0
  216. package/test-env/components/card/card_select/card_select.js +7 -0
  217. package/test-env/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +7 -0
  218. package/test-env/components/color_picker/color_picker.js +13 -8
  219. package/test-env/components/color_picker/hue.js +21 -5
  220. package/test-env/components/color_picker/hue.styles.js +3 -2
  221. package/test-env/components/color_picker/saturation.js +16 -11
  222. package/test-env/components/color_picker/saturation.styles.js +2 -1
  223. package/test-env/components/datagrid/body/cell/data_grid_cell.js +7 -0
  224. package/test-env/components/datagrid/body/cell/data_grid_cell_actions.js +2 -2
  225. package/test-env/components/datagrid/body/cell/data_grid_cell_actions.styles.js +1 -1
  226. package/test-env/components/datagrid/body/data_grid_body.js +7 -0
  227. package/test-env/components/datagrid/body/data_grid_body_custom.js +7 -0
  228. package/test-env/components/datagrid/body/data_grid_body_virtualized.js +7 -0
  229. package/test-env/components/datagrid/body/header/data_grid_header_cell.js +7 -0
  230. package/test-env/components/datagrid/controls/column_sorting.js +7 -0
  231. package/test-env/components/datagrid/controls/data_grid_toolbar_control.js +18 -1
  232. package/test-env/components/datagrid/utils/in_memory.js +7 -0
  233. package/test-env/components/date_picker/auto_refresh/auto_refresh.js +7 -0
  234. package/test-env/components/filter_group/filter_button.js +96 -22
  235. package/test-env/components/filter_group/filter_button.styles.js +51 -15
  236. package/test-env/components/filter_group/filter_group.styles.js +18 -6
  237. package/test-env/components/header/header_links/header_link.js +7 -0
  238. package/test-env/components/header/header_section/header_section_item_button.js +7 -0
  239. package/test-env/components/list_group/list_group.js +7 -0
  240. package/test-env/components/list_group/list_group_item.js +7 -0
  241. package/test-env/components/list_group/list_group_item_extra_action.js +7 -0
  242. package/test-env/components/list_group/pinnable_list_group/pinnable_list_group.js +7 -0
  243. package/test-env/components/pagination/pagination_button.js +7 -0
  244. package/test-env/components/search_bar/filters/field_value_selection_filter.js +1 -0
  245. package/test-env/components/search_bar/filters/field_value_toggle_filter.js +3 -1
  246. package/test-env/components/search_bar/filters/field_value_toggle_group_filter.js +3 -1
  247. package/test-env/components/search_bar/filters/is_filter.js +3 -1
  248. package/test-env/components/search_bar/search_bar.a11y.js +3 -3
  249. package/test-env/components/table/table_header_cell.js +26 -12
  250. package/test-env/components/tool_tip/tool_tip.js +4 -1
  251. package/test-env/global_styling/mixins/_button.js +101 -30
  252. package/test-env/global_styling/mixins/_color.js +4 -2
  253. package/test-env/services/theme/index.js +41 -1
  254. package/test-env/services/theme/provider.js +28 -2
  255. package/test-env/services/theme/theme_variant.js +28 -0
  256. package/test-env/themes/amsterdam/global_styling/variables/_buttons.js +348 -147
  257. package/test-env/themes/amsterdam/global_styling/variables/_components.js +229 -224
  258. package/test-env/themes/amsterdam/theme.js +2 -1
@@ -225,250 +225,255 @@ var component_colors = {
225
225
  success = _ref74[0];
226
226
  return (0, _manipulation.transparentize)(success, 0.25);
227
227
  }, ['colors.success']),
228
- filterSelectItemBackgroundFocusDisabled: (0, _utils.computed)(function (_ref75) {
228
+ filterButtonBadgeBackgroundHover: (0, _utils.computed)(function (_ref75) {
229
229
  var _ref76 = _slicedToArray(_ref75, 1),
230
- disabled = _ref76[0];
230
+ lightShade = _ref76[0];
231
+ return (0, _manipulation.tint)(lightShade, 0.3);
232
+ }, ['colors.lightShade']),
233
+ filterSelectItemBackgroundFocusDisabled: (0, _utils.computed)(function (_ref77) {
234
+ var _ref78 = _slicedToArray(_ref77, 1),
235
+ disabled = _ref78[0];
231
236
  return (0, _manipulation.transparentize)(disabled, 0.1);
232
237
  }, ['colors.disabled']),
233
- flyoutFooterBackground: (0, _utils.computed)(function (_ref77) {
234
- var _ref78 = _slicedToArray(_ref77, 1),
235
- lightestShade = _ref78[0];
238
+ flyoutFooterBackground: (0, _utils.computed)(function (_ref79) {
239
+ var _ref80 = _slicedToArray(_ref79, 1),
240
+ lightestShade = _ref80[0];
236
241
  return lightestShade;
237
242
  }, ['colors.lightestShade']),
238
- flyoutCloseButtonInsideBackground: (0, _utils.computed)(function (_ref79) {
239
- var _ref80 = _slicedToArray(_ref79, 1),
240
- emptyShade = _ref80[0];
241
- return (0, _manipulation.transparentize)(emptyShade, 0.9);
242
- }, ['colors.emptyShade']),
243
- headerBackground: (0, _utils.computed)(function (_ref81) {
243
+ flyoutCloseButtonInsideBackground: (0, _utils.computed)(function (_ref81) {
244
244
  var _ref82 = _slicedToArray(_ref81, 1),
245
245
  emptyShade = _ref82[0];
246
- return emptyShade;
246
+ return (0, _manipulation.transparentize)(emptyShade, 0.9);
247
247
  }, ['colors.emptyShade']),
248
- headerDarkBackground: (0, _utils.computed)(function (_ref83) {
248
+ headerBackground: (0, _utils.computed)(function (_ref83) {
249
249
  var _ref84 = _slicedToArray(_ref83, 1),
250
- darkestShade = _ref84[0];
250
+ emptyShade = _ref84[0];
251
+ return emptyShade;
252
+ }, ['colors.emptyShade']),
253
+ headerDarkBackground: (0, _utils.computed)(function (_ref85) {
254
+ var _ref86 = _slicedToArray(_ref85, 1),
255
+ darkestShade = _ref86[0];
251
256
  return (0, _manipulation.shade)(darkestShade, 0.28);
252
257
  }, ['colors.darkestShade']),
253
- headerDarkSearchBorderColor: (0, _utils.computed)(function (_ref85) {
254
- var _ref86 = _slicedToArray(_ref85, 1),
255
- ghost = _ref86[0];
258
+ headerDarkSearchBorderColor: (0, _utils.computed)(function (_ref87) {
259
+ var _ref88 = _slicedToArray(_ref87, 1),
260
+ ghost = _ref88[0];
256
261
  return (0, _manipulation.transparentize)(ghost, 0.3);
257
262
  }, ['colors.ghost']),
258
- headerDarkSectionItemBackgroundFocus: (0, _utils.computed)(function (_ref87) {
259
- var _ref88 = _slicedToArray(_ref87, 1),
260
- primary = _ref88[0];
263
+ headerDarkSectionItemBackgroundFocus: (0, _utils.computed)(function (_ref89) {
264
+ var _ref90 = _slicedToArray(_ref89, 1),
265
+ primary = _ref90[0];
261
266
  return (0, _manipulation.shade)(primary, 0.5);
262
267
  }, ['colors.primary']),
263
- keyPadMenuItemBackgroundDisabledSelect: (0, _utils.computed)(function (_ref89) {
264
- var _ref90 = _slicedToArray(_ref89, 1),
265
- disabled = _ref90[0];
268
+ keyPadMenuItemBackgroundDisabledSelect: (0, _utils.computed)(function (_ref91) {
269
+ var _ref92 = _slicedToArray(_ref91, 1),
270
+ disabled = _ref92[0];
266
271
  return (0, _manipulation.transparentize)(disabled, 0.1);
267
272
  }, ['colors.disabled']),
268
- listGroupItemBackgroundPrimaryActive: (0, _utils.computed)(function (_ref91) {
269
- var _ref92 = _slicedToArray(_ref91, 1),
270
- lightShade = _ref92[0];
273
+ listGroupItemBackgroundPrimaryActive: (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
- listGroupItemBackgroundSubduedActive: (0, _utils.computed)(function (_ref93) {
274
- var _ref94 = _slicedToArray(_ref93, 1),
275
- primary = _ref94[0];
278
+ listGroupItemBackgroundSubduedActive: (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
- listGroupItemBackgroundHover: (0, _utils.computed)(function (_ref95) {
279
- var _ref96 = _slicedToArray(_ref95, 1),
280
- lightShade = _ref96[0];
283
+ listGroupItemBackgroundHover: (0, _utils.computed)(function (_ref97) {
284
+ var _ref98 = _slicedToArray(_ref97, 1),
285
+ lightShade = _ref98[0];
281
286
  return (0, _manipulation.transparentize)(lightShade, 0.2);
282
287
  }, ['colors.lightShade']),
283
- listGroupItemBackgroundPrimaryHover: (0, _utils.computed)(function (_ref97) {
284
- var _ref98 = _slicedToArray(_ref97, 1),
285
- primary = _ref98[0];
288
+ listGroupItemBackgroundPrimaryHover: (0, _utils.computed)(function (_ref99) {
289
+ var _ref100 = _slicedToArray(_ref99, 1),
290
+ primary = _ref100[0];
286
291
  return (0, _manipulation.transparentize)(primary, 0.1);
287
292
  }, ['colors.primary']),
288
- loadingSpinnerBorder: (0, _utils.computed)(function (_ref99) {
289
- var _ref100 = _slicedToArray(_ref99, 1),
290
- lightShade = _ref100[0];
293
+ loadingSpinnerBorder: (0, _utils.computed)(function (_ref101) {
294
+ var _ref102 = _slicedToArray(_ref101, 1),
295
+ lightShade = _ref102[0];
291
296
  return lightShade;
292
297
  }, ['colors.lightShade']),
293
- loadingSpinnerHighlight: (0, _utils.computed)(function (_ref101) {
294
- var _ref102 = _slicedToArray(_ref101, 1),
295
- primary = _ref102[0];
298
+ loadingSpinnerHighlight: (0, _utils.computed)(function (_ref103) {
299
+ var _ref104 = _slicedToArray(_ref103, 1),
300
+ primary = _ref104[0];
296
301
  return primary;
297
302
  }, ['colors.primary']),
298
- loadingChartMonoBackground0: (0, _utils.computed)(function (_ref103) {
299
- var _ref104 = _slicedToArray(_ref103, 1),
300
- lightShade = _ref104[0];
301
- return lightShade;
302
- }, ['colors.lightShade']),
303
- loadingChartMonoBackground1: (0, _utils.computed)(function (_ref105) {
303
+ loadingChartMonoBackground0: (0, _utils.computed)(function (_ref105) {
304
304
  var _ref106 = _slicedToArray(_ref105, 1),
305
305
  lightShade = _ref106[0];
306
- return (0, _manipulation.shade)(lightShade, 0.04);
306
+ return lightShade;
307
307
  }, ['colors.lightShade']),
308
- loadingChartMonoBackground2: (0, _utils.computed)(function (_ref107) {
308
+ loadingChartMonoBackground1: (0, _utils.computed)(function (_ref107) {
309
309
  var _ref108 = _slicedToArray(_ref107, 1),
310
310
  lightShade = _ref108[0];
311
- return (0, _manipulation.shade)(lightShade, 0.08);
311
+ return (0, _manipulation.shade)(lightShade, 0.04);
312
312
  }, ['colors.lightShade']),
313
- loadingChartMonoBackground3: (0, _utils.computed)(function (_ref109) {
313
+ loadingChartMonoBackground2: (0, _utils.computed)(function (_ref109) {
314
314
  var _ref110 = _slicedToArray(_ref109, 1),
315
315
  lightShade = _ref110[0];
316
- return (0, _manipulation.shade)(lightShade, 0.12);
316
+ return (0, _manipulation.shade)(lightShade, 0.08);
317
317
  }, ['colors.lightShade']),
318
- markBackground: (0, _utils.computed)(function (_ref111) {
318
+ loadingChartMonoBackground3: (0, _utils.computed)(function (_ref111) {
319
319
  var _ref112 = _slicedToArray(_ref111, 1),
320
- primary = _ref112[0];
320
+ lightShade = _ref112[0];
321
+ return (0, _manipulation.shade)(lightShade, 0.12);
322
+ }, ['colors.lightShade']),
323
+ markBackground: (0, _utils.computed)(function (_ref113) {
324
+ var _ref114 = _slicedToArray(_ref113, 1),
325
+ primary = _ref114[0];
321
326
  return (0, _manipulation.transparentize)(primary, 0.1);
322
327
  }, ['colors.primary']),
323
- markdownFormatTableBorderColor: (0, _utils.computed)(function (_ref113) {
324
- var _ref114 = _slicedToArray(_ref113, 1),
325
- fullShade = _ref114[0];
328
+ markdownFormatTableBorderColor: (0, _utils.computed)(function (_ref115) {
329
+ var _ref116 = _slicedToArray(_ref115, 1),
330
+ fullShade = _ref116[0];
326
331
  return (0, _manipulation.transparentize)(fullShade, 0.15);
327
332
  }, ['colors.fullShade']),
328
- overlayMaskBackground: (0, _utils.computed)(function (_ref115) {
329
- var _ref116 = _slicedToArray(_ref115, 1),
330
- backgroundBaseInteractiveOverlay = _ref116[0];
333
+ overlayMaskBackground: (0, _utils.computed)(function (_ref117) {
334
+ var _ref118 = _slicedToArray(_ref117, 1),
335
+ backgroundBaseInteractiveOverlay = _ref118[0];
331
336
  return backgroundBaseInteractiveOverlay;
332
337
  }, ['colors.backgroundBaseInteractiveOverlay']),
333
- overlayMaskBackgroundHighContrast: (0, _utils.computed)(function (_ref117) {
334
- var _ref118 = _slicedToArray(_ref117, 1),
335
- ink = _ref118[0];
338
+ overlayMaskBackgroundHighContrast: (0, _utils.computed)(function (_ref119) {
339
+ var _ref120 = _slicedToArray(_ref119, 1),
340
+ ink = _ref120[0];
336
341
  return (0, _manipulation.transparentize)(ink, 0.85);
337
342
  }, ['colors.ink']),
338
- popoverPanelBackground: (0, _utils.computed)(function (_ref119) {
339
- var _ref120 = _slicedToArray(_ref119, 1),
340
- emptyShade = _ref120[0];
343
+ popoverPanelBackground: (0, _utils.computed)(function (_ref121) {
344
+ var _ref122 = _slicedToArray(_ref121, 1),
345
+ emptyShade = _ref122[0];
341
346
  return emptyShade;
342
347
  }, ['colors.emptyShade']),
343
- popoverFooterBorderColor: (0, _utils.computed)(function (_ref121) {
344
- var _ref122 = _slicedToArray(_ref121, 1),
345
- color = _ref122[0];
348
+ popoverFooterBorderColor: (0, _utils.computed)(function (_ref123) {
349
+ var _ref124 = _slicedToArray(_ref123, 1),
350
+ color = _ref124[0];
346
351
  return color;
347
352
  }, ['border.color']),
348
- scrollbarTrackColor: (0, _utils.computed)(function (_ref123) {
349
- var _ref124 = _slicedToArray(_ref123, 1),
350
- body = _ref124[0];
353
+ scrollbarTrackColor: (0, _utils.computed)(function (_ref125) {
354
+ var _ref126 = _slicedToArray(_ref125, 1),
355
+ body = _ref126[0];
351
356
  return (0, _manipulation.shade)(body, 0.03);
352
357
  }, ['colors.body']),
353
- sideNavItemEmphasizedBackground: (0, _utils.computed)(function (_ref125) {
354
- var _ref126 = _slicedToArray(_ref125, 1),
355
- lightShade = _ref126[0];
358
+ sideNavItemEmphasizedBackground: (0, _utils.computed)(function (_ref127) {
359
+ var _ref128 = _slicedToArray(_ref127, 1),
360
+ lightShade = _ref128[0];
356
361
  return (0, _manipulation.transparentize)(lightShade, 0.3);
357
362
  }, ['colors.lightShade']),
358
- selectableListItemBorderColor: (0, _utils.computed)(function (_ref127) {
359
- var _ref128 = _slicedToArray(_ref127, 1),
360
- color = _ref128[0];
363
+ selectableListItemBorderColor: (0, _utils.computed)(function (_ref129) {
364
+ var _ref130 = _slicedToArray(_ref129, 1),
365
+ color = _ref130[0];
361
366
  return (0, _manipulation.transparentize)(color, 0.4);
362
367
  }, ['border.color']),
363
- skeletonBackgroundSkeletonMiddleHighContrast: (0, _utils.computed)(function (_ref129) {
364
- var _ref130 = _slicedToArray(_ref129, 1),
365
- emptyShade = _ref130[0];
368
+ skeletonBackgroundSkeletonMiddleHighContrast: (0, _utils.computed)(function (_ref131) {
369
+ var _ref132 = _slicedToArray(_ref131, 1),
370
+ emptyShade = _ref132[0];
366
371
  return emptyShade;
367
372
  }, ['colors.emptyShade']),
368
- superDatePickerBackgroundSuccees: (0, _utils.computed)(function (_ref131) {
369
- var _ref132 = _slicedToArray(_ref131, 1),
370
- success = _ref132[0];
373
+ superDatePickerBackgroundSuccees: (0, _utils.computed)(function (_ref133) {
374
+ var _ref134 = _slicedToArray(_ref133, 1),
375
+ success = _ref134[0];
371
376
  return (0, _manipulation.tint)(success, 0.9);
372
377
  }, ['colors.success']),
373
- switchBackgroundOn: (0, _utils.computed)(function (_ref133) {
374
- var _ref134 = _slicedToArray(_ref133, 1),
375
- primary = _ref134[0];
378
+ switchBackgroundOn: (0, _utils.computed)(function (_ref135) {
379
+ var _ref136 = _slicedToArray(_ref135, 1),
380
+ primary = _ref136[0];
376
381
  return primary;
377
382
  }, ['colors.primary']),
378
- switchBackgroundOff: (0, _utils.computed)(function (_ref135) {
379
- var _ref136 = _slicedToArray(_ref135, 1),
380
- lightestShade = _ref136[0];
383
+ switchBackgroundOff: (0, _utils.computed)(function (_ref137) {
384
+ var _ref138 = _slicedToArray(_ref137, 1),
385
+ lightestShade = _ref138[0];
381
386
  return (0, _manipulation.shade)(lightestShade, 0.4);
382
387
  }, ['colors.lightestShade']),
383
- switchUncompressedBackgroundDisabled: (0, _utils.computed)(function (_ref137) {
384
- var _ref138 = _slicedToArray(_ref137, 1),
385
- lightShade = _ref138[0];
386
- return (0, _manipulation.tint)(lightShade, 0.5);
387
- }, ['colors.lightShade']),
388
- switchCompressedBackgroundDisabled: (0, _utils.computed)(function (_ref139) {
388
+ switchUncompressedBackgroundDisabled: (0, _utils.computed)(function (_ref139) {
389
389
  var _ref140 = _slicedToArray(_ref139, 1),
390
390
  lightShade = _ref140[0];
391
- return (0, _manipulation.tint)(lightShade, 0.25);
391
+ return (0, _manipulation.tint)(lightShade, 0.5);
392
392
  }, ['colors.lightShade']),
393
- switchMiniBackgroundDisabled: (0, _utils.computed)(function (_ref141) {
393
+ switchCompressedBackgroundDisabled: (0, _utils.computed)(function (_ref141) {
394
394
  var _ref142 = _slicedToArray(_ref141, 1),
395
395
  lightShade = _ref142[0];
396
+ return (0, _manipulation.tint)(lightShade, 0.25);
397
+ }, ['colors.lightShade']),
398
+ switchMiniBackgroundDisabled: (0, _utils.computed)(function (_ref143) {
399
+ var _ref144 = _slicedToArray(_ref143, 1),
400
+ lightShade = _ref144[0];
396
401
  return (0, _manipulation.tint)(lightShade, 0);
397
402
  }, ['colors.lightShade']),
398
403
  switchThumbBackgroundDisabled: 'transparent',
399
- switchThumbBorderOn: (0, _utils.computed)(function (_ref143) {
400
- var _ref144 = _slicedToArray(_ref143, 1),
401
- lightestShade = _ref144[0];
402
- return (0, _manipulation.shade)(lightestShade, 0.4);
403
- }, ['colors.lightestShade']),
404
- switchThumbBorderOff: (0, _utils.computed)(function (_ref145) {
404
+ switchThumbBorderOn: (0, _utils.computed)(function (_ref145) {
405
405
  var _ref146 = _slicedToArray(_ref145, 1),
406
406
  lightestShade = _ref146[0];
407
407
  return (0, _manipulation.shade)(lightestShade, 0.4);
408
408
  }, ['colors.lightestShade']),
409
- switchIconDisabled: (0, _utils.computed)(function (_ref147) {
409
+ switchThumbBorderOff: (0, _utils.computed)(function (_ref147) {
410
410
  var _ref148 = _slicedToArray(_ref147, 1),
411
411
  lightestShade = _ref148[0];
412
412
  return (0, _manipulation.shade)(lightestShade, 0.4);
413
413
  }, ['colors.lightestShade']),
414
- tableRowBackgroundHover: (0, _utils.computed)(function (_ref149) {
414
+ switchIconDisabled: (0, _utils.computed)(function (_ref149) {
415
415
  var _ref150 = _slicedToArray(_ref149, 1),
416
416
  lightestShade = _ref150[0];
417
- return (0, _manipulation.tint)(lightestShade, 0.5);
417
+ return (0, _manipulation.shade)(lightestShade, 0.4);
418
418
  }, ['colors.lightestShade']),
419
- tableRowBackgroundSelected: (0, _utils.computed)(function (_ref151) {
419
+ tableRowBackgroundHover: (0, _utils.computed)(function (_ref151) {
420
420
  var _ref152 = _slicedToArray(_ref151, 1),
421
- primary = _ref152[0];
422
- return (0, _manipulation.tint)(primary, 0.96);
423
- }, ['colors.primary']),
424
- tableRowBackgroundSelectedHover: (0, _utils.computed)(function (_ref153) {
421
+ lightestShade = _ref152[0];
422
+ return (0, _manipulation.tint)(lightestShade, 0.5);
423
+ }, ['colors.lightestShade']),
424
+ tableRowBackgroundSelected: (0, _utils.computed)(function (_ref153) {
425
425
  var _ref154 = _slicedToArray(_ref153, 1),
426
426
  primary = _ref154[0];
427
- return (0, _manipulation.tint)(primary, 0.9);
427
+ return (0, _manipulation.tint)(primary, 0.96);
428
428
  }, ['colors.primary']),
429
- tableRowInteractiveBackgroundHover: (0, _utils.computed)(function (_ref155) {
429
+ tableRowBackgroundSelectedHover: (0, _utils.computed)(function (_ref155) {
430
430
  var _ref156 = _slicedToArray(_ref155, 1),
431
431
  primary = _ref156[0];
432
- return (0, _manipulation.transparentize)(primary, 0.05);
432
+ return (0, _manipulation.tint)(primary, 0.9);
433
433
  }, ['colors.primary']),
434
- tableRowInteractiveBackgroundFocus: (0, _utils.computed)(function (_ref157) {
434
+ tableRowInteractiveBackgroundHover: (0, _utils.computed)(function (_ref157) {
435
435
  var _ref158 = _slicedToArray(_ref157, 1),
436
436
  primary = _ref158[0];
437
+ return (0, _manipulation.transparentize)(primary, 0.05);
438
+ }, ['colors.primary']),
439
+ tableRowInteractiveBackgroundFocus: (0, _utils.computed)(function (_ref159) {
440
+ var _ref160 = _slicedToArray(_ref159, 1),
441
+ primary = _ref160[0];
437
442
  return (0, _manipulation.transparentize)(primary, 0.1);
438
443
  }, ['colors.primary']),
439
- tableCellSortableIconColor: (0, _utils.computed)(function (_ref159) {
440
- var _ref160 = _slicedToArray(_ref159, 2),
441
- emptyShade = _ref160[0],
442
- subduedText = _ref160[1];
444
+ tableCellSortableIconColor: (0, _utils.computed)(function (_ref161) {
445
+ var _ref162 = _slicedToArray(_ref161, 2),
446
+ emptyShade = _ref162[0],
447
+ subduedText = _ref162[1];
443
448
  var color = (0, _manipulation.tint)(subduedText, 0.9);
444
449
  return (0, _contrast.makeHighContrastColor)(
445
450
  // Tint it arbitrarily high, the contrast util will take care of lowering back down to WCAG
446
451
  color, 3 // 3:1 ratio from https://www.w3.org/WAI/WCAG22/Understanding/non-text-contrast.html
447
452
  )(emptyShade);
448
453
  }, ['colors.emptyShade', 'colors.subduedText']),
449
- tooltipBackground: (0, _utils.computed)(function (_ref161) {
450
- var _ref162 = _slicedToArray(_ref161, 1),
451
- fullShade = _ref162[0];
452
- return (0, _manipulation.tint)(fullShade, 0.25);
453
- }, ['colors.fullShade']),
454
- tooltipBorder: (0, _utils.computed)(function (_ref163) {
454
+ tooltipBackground: (0, _utils.computed)(function (_ref163) {
455
455
  var _ref164 = _slicedToArray(_ref163, 1),
456
456
  fullShade = _ref164[0];
457
- return (0, _manipulation.tint)(fullShade, 0.35);
457
+ return (0, _manipulation.tint)(fullShade, 0.25);
458
458
  }, ['colors.fullShade']),
459
- tooltipBorderFloating: (0, _utils.computed)(function (_ref165) {
459
+ tooltipBorder: (0, _utils.computed)(function (_ref165) {
460
460
  var _ref166 = _slicedToArray(_ref165, 1),
461
- borderBaseFloating = _ref166[0];
461
+ fullShade = _ref166[0];
462
+ return (0, _manipulation.tint)(fullShade, 0.35);
463
+ }, ['colors.fullShade']),
464
+ tooltipBorderFloating: (0, _utils.computed)(function (_ref167) {
465
+ var _ref168 = _slicedToArray(_ref167, 1),
466
+ borderBaseFloating = _ref168[0];
462
467
  return borderBaseFloating;
463
468
  }, ['colors.borderBaseFloating']),
464
- tourFooterBackground: (0, _utils.computed)(function (_ref167) {
465
- var _ref168 = _slicedToArray(_ref167, 1),
466
- lightestShade = _ref168[0];
469
+ tourFooterBackground: (0, _utils.computed)(function (_ref169) {
470
+ var _ref170 = _slicedToArray(_ref169, 1),
471
+ lightestShade = _ref170[0];
467
472
  return (0, _manipulation.tint)(lightestShade, 0.5);
468
473
  }, ['colors.lightestShade']),
469
- treeViewItemBackgroundHover: (0, _utils.computed)(function (_ref169) {
470
- var _ref170 = _slicedToArray(_ref169, 1),
471
- text = _ref170[0];
474
+ treeViewItemBackgroundHover: (0, _utils.computed)(function (_ref171) {
475
+ var _ref172 = _slicedToArray(_ref171, 1),
476
+ text = _ref172[0];
472
477
  return (0, _manipulation.transparentize)(text, 0.1);
473
478
  }, ['colors.text'])
474
479
  };
@@ -477,171 +482,171 @@ var components = exports.components = {
477
482
  forms: _forms.forms,
478
483
  LIGHT: component_colors,
479
484
  DARK: _objectSpread(_objectSpread({}, component_colors), {}, {
480
- badgeBorderColorHollow: (0, _utils.computed)(function (_ref171) {
481
- var _ref172 = _slicedToArray(_ref171, 1),
482
- color = _ref172[0];
485
+ badgeBorderColorHollow: (0, _utils.computed)(function (_ref173) {
486
+ var _ref174 = _slicedToArray(_ref173, 1),
487
+ color = _ref174[0];
483
488
  return (0, _manipulation.tint)(color, 0.15);
484
489
  }, ['border.color']),
485
- breadcrumbsApplicationBackground: (0, _utils.computed)(function (_ref173) {
486
- var _ref174 = _slicedToArray(_ref173, 1),
487
- darkestShade = _ref174[0];
488
- return (0, _manipulation.shade)(darkestShade, 0.7);
489
- }, ['colors.darkestShade']),
490
- breadcrumbsApplicationColor: (0, _utils.computed)(function (_ref175) {
490
+ breadcrumbsApplicationBackground: (0, _utils.computed)(function (_ref175) {
491
491
  var _ref176 = _slicedToArray(_ref175, 1),
492
492
  darkestShade = _ref176[0];
493
- return (0, _manipulation.shade)(darkestShade, 0.2);
493
+ return (0, _manipulation.shade)(darkestShade, 0.7);
494
494
  }, ['colors.darkestShade']),
495
- collapsibleNavGroupBackground: (0, _utils.computed)(function (_ref177) {
495
+ breadcrumbsApplicationColor: (0, _utils.computed)(function (_ref177) {
496
496
  var _ref178 = _slicedToArray(_ref177, 1),
497
- lightestShade = _ref178[0];
498
- return (0, _manipulation.shade)(lightestShade, 0.5);
499
- }, ['colors.lightestShade']),
500
- collapsibleNavGroupBackgroundDark: (0, _utils.computed)(function (_ref179) {
497
+ darkestShade = _ref178[0];
498
+ return (0, _manipulation.shade)(darkestShade, 0.2);
499
+ }, ['colors.darkestShade']),
500
+ collapsibleNavGroupBackground: (0, _utils.computed)(function (_ref179) {
501
501
  var _ref180 = _slicedToArray(_ref179, 1),
502
502
  lightestShade = _ref180[0];
503
503
  return (0, _manipulation.shade)(lightestShade, 0.5);
504
504
  }, ['colors.lightestShade']),
505
- dataGridVerticalLineBorderColor: (0, _utils.computed)(function (_ref181) {
505
+ collapsibleNavGroupBackgroundDark: (0, _utils.computed)(function (_ref181) {
506
506
  var _ref182 = _slicedToArray(_ref181, 1),
507
- color = _ref182[0];
507
+ lightestShade = _ref182[0];
508
+ return (0, _manipulation.shade)(lightestShade, 0.5);
509
+ }, ['colors.lightestShade']),
510
+ dataGridVerticalLineBorderColor: (0, _utils.computed)(function (_ref183) {
511
+ var _ref184 = _slicedToArray(_ref183, 1),
512
+ color = _ref184[0];
508
513
  return (0, _manipulation.shade)(color, 0.3);
509
514
  }, ['border.color']),
510
- headerDarkBackground: (0, _utils.computed)(function (_ref183) {
511
- var _ref184 = _slicedToArray(_ref183, 1),
512
- lightestShade = _ref184[0];
515
+ headerDarkBackground: (0, _utils.computed)(function (_ref185) {
516
+ var _ref186 = _slicedToArray(_ref185, 1),
517
+ lightestShade = _ref186[0];
513
518
  return (0, _manipulation.shade)(lightestShade, 0.5);
514
519
  }, ['colors.lightestShade']),
515
- keyPadMenuItemBackgroundDisabledSelect: (0, _utils.computed)(function (_ref185) {
516
- var _ref186 = _slicedToArray(_ref185, 1),
517
- disabled = _ref186[0];
520
+ keyPadMenuItemBackgroundDisabledSelect: (0, _utils.computed)(function (_ref187) {
521
+ var _ref188 = _slicedToArray(_ref187, 1),
522
+ disabled = _ref188[0];
518
523
  return (0, _manipulation.transparentize)(disabled, 0.2);
519
524
  }, ['colors.disabled']),
520
- listGroupItemBackgroundSubduedActive: (0, _utils.computed)(function (_ref187) {
521
- var _ref188 = _slicedToArray(_ref187, 1),
522
- lightShade = _ref188[0];
523
- return (0, _manipulation.transparentize)(lightShade, 0.4);
524
- }, ['colors.lightShade']),
525
- loadingChartMonoBackground0: (0, _utils.computed)(function (_ref189) {
525
+ listGroupItemBackgroundSubduedActive: (0, _utils.computed)(function (_ref189) {
526
526
  var _ref190 = _slicedToArray(_ref189, 1),
527
527
  lightShade = _ref190[0];
528
- return lightShade;
528
+ return (0, _manipulation.transparentize)(lightShade, 0.4);
529
529
  }, ['colors.lightShade']),
530
- loadingChartMonoBackground1: (0, _utils.computed)(function (_ref191) {
530
+ loadingChartMonoBackground0: (0, _utils.computed)(function (_ref191) {
531
531
  var _ref192 = _slicedToArray(_ref191, 1),
532
532
  lightShade = _ref192[0];
533
- return (0, _manipulation.tint)(lightShade, 0.04);
533
+ return lightShade;
534
534
  }, ['colors.lightShade']),
535
- loadingChartMonoBackground2: (0, _utils.computed)(function (_ref193) {
535
+ loadingChartMonoBackground1: (0, _utils.computed)(function (_ref193) {
536
536
  var _ref194 = _slicedToArray(_ref193, 1),
537
537
  lightShade = _ref194[0];
538
- return (0, _manipulation.tint)(lightShade, 0.08);
538
+ return (0, _manipulation.tint)(lightShade, 0.04);
539
539
  }, ['colors.lightShade']),
540
- loadingChartMonoBackground3: (0, _utils.computed)(function (_ref195) {
540
+ loadingChartMonoBackground2: (0, _utils.computed)(function (_ref195) {
541
541
  var _ref196 = _slicedToArray(_ref195, 1),
542
542
  lightShade = _ref196[0];
543
- return (0, _manipulation.tint)(lightShade, 0.12);
543
+ return (0, _manipulation.tint)(lightShade, 0.08);
544
544
  }, ['colors.lightShade']),
545
- markBackground: (0, _utils.computed)(function (_ref197) {
545
+ loadingChartMonoBackground3: (0, _utils.computed)(function (_ref197) {
546
546
  var _ref198 = _slicedToArray(_ref197, 1),
547
- primary = _ref198[0];
547
+ lightShade = _ref198[0];
548
+ return (0, _manipulation.tint)(lightShade, 0.12);
549
+ }, ['colors.lightShade']),
550
+ markBackground: (0, _utils.computed)(function (_ref199) {
551
+ var _ref200 = _slicedToArray(_ref199, 1),
552
+ primary = _ref200[0];
548
553
  return (0, _manipulation.transparentize)(primary, 0.3);
549
554
  }, ['colors.primary']),
550
- popoverPanelBackground: (0, _utils.computed)(function (_ref199) {
551
- var _ref200 = _slicedToArray(_ref199, 1),
552
- emptyShade = _ref200[0];
555
+ popoverPanelBackground: (0, _utils.computed)(function (_ref201) {
556
+ var _ref202 = _slicedToArray(_ref201, 1),
557
+ emptyShade = _ref202[0];
553
558
  return (0, _manipulation.tint)(emptyShade, 0.025);
554
559
  }, ['colors.emptyShade']),
555
- scrollbarTrackColor: (0, _utils.computed)(function (_ref201) {
556
- var _ref202 = _slicedToArray(_ref201, 1),
557
- body = _ref202[0];
560
+ scrollbarTrackColor: (0, _utils.computed)(function (_ref203) {
561
+ var _ref204 = _slicedToArray(_ref203, 1),
562
+ body = _ref204[0];
558
563
  return (0, _manipulation.tint)(body, 0.07);
559
564
  }, ['colors.body']),
560
- skeletonBackgroundSkeletonMiddleHighContrast: (0, _utils.computed)(function (_ref203) {
561
- var _ref204 = _slicedToArray(_ref203, 1),
562
- lightShade = _ref204[0];
565
+ skeletonBackgroundSkeletonMiddleHighContrast: (0, _utils.computed)(function (_ref205) {
566
+ var _ref206 = _slicedToArray(_ref205, 1),
567
+ lightShade = _ref206[0];
563
568
  return (0, _manipulation.tint)(lightShade, 0.12);
564
569
  }, ['colors.lightShade']),
565
- superDatePickerBackgroundSuccees: (0, _utils.computed)(function (_ref205) {
566
- var _ref206 = _slicedToArray(_ref205, 1),
567
- success = _ref206[0];
570
+ superDatePickerBackgroundSuccees: (0, _utils.computed)(function (_ref207) {
571
+ var _ref208 = _slicedToArray(_ref207, 1),
572
+ success = _ref208[0];
568
573
  return (0, _manipulation.shade)(success, 0.7);
569
574
  }, ['colors.success']),
570
- switchBackgroundOff: (0, _utils.computed)(function (_ref207) {
571
- var _ref208 = _slicedToArray(_ref207, 1),
572
- lightestShade = _ref208[0];
575
+ switchBackgroundOff: (0, _utils.computed)(function (_ref209) {
576
+ var _ref210 = _slicedToArray(_ref209, 1),
577
+ lightestShade = _ref210[0];
573
578
  return (0, _manipulation.tint)(lightestShade, 0.31);
574
579
  }, ['colors.lightestShade']),
575
- switchUncompressedBackgroundDisabled: (0, _utils.computed)(function (_ref209) {
576
- var _ref210 = _slicedToArray(_ref209, 1),
577
- lightShade = _ref210[0];
578
- return lightShade;
579
- }, ['colors.lightShade']),
580
- switchCompressedBackgroundDisabled: (0, _utils.computed)(function (_ref211) {
580
+ switchUncompressedBackgroundDisabled: (0, _utils.computed)(function (_ref211) {
581
581
  var _ref212 = _slicedToArray(_ref211, 1),
582
582
  lightShade = _ref212[0];
583
583
  return lightShade;
584
584
  }, ['colors.lightShade']),
585
- switchMiniBackgroundDisabled: (0, _utils.computed)(function (_ref213) {
585
+ switchCompressedBackgroundDisabled: (0, _utils.computed)(function (_ref213) {
586
586
  var _ref214 = _slicedToArray(_ref213, 1),
587
587
  lightShade = _ref214[0];
588
588
  return lightShade;
589
589
  }, ['colors.lightShade']),
590
- switchThumbBorderOn: (0, _utils.computed)(function (_ref215) {
590
+ switchMiniBackgroundDisabled: (0, _utils.computed)(function (_ref215) {
591
591
  var _ref216 = _slicedToArray(_ref215, 1),
592
- lightestShade = _ref216[0];
593
- return (0, _manipulation.tint)(lightestShade, 0.31);
594
- }, ['colors.lightestShade']),
595
- switchThumbBorderOff: (0, _utils.computed)(function (_ref217) {
592
+ lightShade = _ref216[0];
593
+ return lightShade;
594
+ }, ['colors.lightShade']),
595
+ switchThumbBorderOn: (0, _utils.computed)(function (_ref217) {
596
596
  var _ref218 = _slicedToArray(_ref217, 1),
597
597
  lightestShade = _ref218[0];
598
598
  return (0, _manipulation.tint)(lightestShade, 0.31);
599
599
  }, ['colors.lightestShade']),
600
- switchIconDisabled: (0, _utils.computed)(function (_ref219) {
600
+ switchThumbBorderOff: (0, _utils.computed)(function (_ref219) {
601
601
  var _ref220 = _slicedToArray(_ref219, 1),
602
602
  lightestShade = _ref220[0];
603
603
  return (0, _manipulation.tint)(lightestShade, 0.31);
604
604
  }, ['colors.lightestShade']),
605
- tableRowBackgroundHover: (0, _utils.computed)(function (_ref221) {
605
+ switchIconDisabled: (0, _utils.computed)(function (_ref221) {
606
606
  var _ref222 = _slicedToArray(_ref221, 1),
607
607
  lightestShade = _ref222[0];
608
- return lightestShade;
608
+ return (0, _manipulation.tint)(lightestShade, 0.31);
609
609
  }, ['colors.lightestShade']),
610
- tableRowBackgroundSelected: (0, _utils.computed)(function (_ref223) {
610
+ tableRowBackgroundHover: (0, _utils.computed)(function (_ref223) {
611
611
  var _ref224 = _slicedToArray(_ref223, 1),
612
- primary = _ref224[0];
613
- return (0, _manipulation.shade)(primary, 0.7);
614
- }, ['colors.primary']),
615
- tableRowBackgroundSelectedHover: (0, _utils.computed)(function (_ref225) {
612
+ lightestShade = _ref224[0];
613
+ return lightestShade;
614
+ }, ['colors.lightestShade']),
615
+ tableRowBackgroundSelected: (0, _utils.computed)(function (_ref225) {
616
616
  var _ref226 = _slicedToArray(_ref225, 1),
617
617
  primary = _ref226[0];
618
+ return (0, _manipulation.shade)(primary, 0.7);
619
+ }, ['colors.primary']),
620
+ tableRowBackgroundSelectedHover: (0, _utils.computed)(function (_ref227) {
621
+ var _ref228 = _slicedToArray(_ref227, 1),
622
+ primary = _ref228[0];
618
623
  return (0, _manipulation.shade)(primary, 0.75);
619
624
  }, ['colors.primary']),
620
- tableCellSortableIconColor: (0, _utils.computed)(function (_ref227) {
621
- var _ref228 = _slicedToArray(_ref227, 2),
622
- emptyShade = _ref228[0],
623
- subduedText = _ref228[1];
625
+ tableCellSortableIconColor: (0, _utils.computed)(function (_ref229) {
626
+ var _ref230 = _slicedToArray(_ref229, 2),
627
+ emptyShade = _ref230[0],
628
+ subduedText = _ref230[1];
624
629
  var color = (0, _manipulation.shade)(subduedText, 0.9);
625
630
  return (0, _contrast.makeHighContrastColor)(color, 3)(emptyShade);
626
631
  }, ['colors.emptyShade', 'colors.subduedText']),
627
- tooltipBackground: (0, _utils.computed)(function (_ref229) {
628
- var _ref230 = _slicedToArray(_ref229, 1),
629
- emptyShade = _ref230[0];
632
+ tooltipBackground: (0, _utils.computed)(function (_ref231) {
633
+ var _ref232 = _slicedToArray(_ref231, 1),
634
+ emptyShade = _ref232[0];
630
635
  return (0, _manipulation.shade)(emptyShade, 1);
631
636
  }, ['colors.emptyShade']),
632
- tooltipBorder: (0, _utils.computed)(function (_ref231) {
633
- var _ref232 = _slicedToArray(_ref231, 1),
634
- fullShade = _ref232[0];
637
+ tooltipBorder: (0, _utils.computed)(function (_ref233) {
638
+ var _ref234 = _slicedToArray(_ref233, 1),
639
+ fullShade = _ref234[0];
635
640
  return (0, _manipulation.shade)(fullShade, 0.8);
636
641
  }, ['colors.fullShade']),
637
- tourFooterBackground: (0, _utils.computed)(function (_ref233) {
638
- var _ref234 = _slicedToArray(_ref233, 1),
639
- lightestShade = _ref234[0];
642
+ tourFooterBackground: (0, _utils.computed)(function (_ref235) {
643
+ var _ref236 = _slicedToArray(_ref235, 1),
644
+ lightestShade = _ref236[0];
640
645
  return (0, _manipulation.shade)(lightestShade, 0.45);
641
646
  }, ['colors.lightestShade']),
642
- treeViewItemBackgroundHover: (0, _utils.computed)(function (_ref235) {
643
- var _ref236 = _slicedToArray(_ref235, 1),
644
- text = _ref236[0];
647
+ treeViewItemBackgroundHover: (0, _utils.computed)(function (_ref237) {
648
+ var _ref238 = _slicedToArray(_ref237, 1),
649
+ text = _ref238[0];
645
650
  return (0, _manipulation.transparentize)(text, 0.2);
646
651
  }, ['colors.text'])
647
652
  })