diff --git a/package.json b/package.json index 9086485e934e0..50496e87bbc53 100644 --- a/package.json +++ b/package.json @@ -117,8 +117,8 @@ "@elastic/ecs": "^8.11.5", "@elastic/elasticsearch": "^8.17.0", "@elastic/ems-client": "8.6.3", - "@elastic/eui": "99.1.0-borealis.0", - "@elastic/eui-theme-borealis": "0.0.9", + "@elastic/eui": "99.2.0-borealis.0", + "@elastic/eui-theme-borealis": "0.0.10", "@elastic/filesaver": "1.1.2", "@elastic/node-crypto": "^1.2.3", "@elastic/numeral": "^2.5.1", diff --git a/src/dev/license_checker/config.ts b/src/dev/license_checker/config.ts index cfe33e30e8705..d648755d6ee4c 100644 --- a/src/dev/license_checker/config.ts +++ b/src/dev/license_checker/config.ts @@ -87,8 +87,8 @@ export const LICENSE_OVERRIDES = { 'jsts@1.6.2': ['Eclipse Distribution License - v 1.0'], // cf. https://github.com/bjornharrtell/jsts '@mapbox/jsonlint-lines-primitives@2.0.2': ['MIT'], // license in readme https://github.com/tmcw/jsonlint '@elastic/ems-client@8.6.3': ['Elastic License 2.0'], - '@elastic/eui@99.1.0-borealis.0': ['Elastic License 2.0 OR AGPL-3.0-only OR SSPL-1.0'], - '@elastic/eui-theme-borealis@0.0.9': ['Elastic License 2.0 OR AGPL-3.0-only OR SSPL-1.0'], + '@elastic/eui@99.2.0-borealis.0': ['Elastic License 2.0 OR AGPL-3.0-only OR SSPL-1.0'], + '@elastic/eui-theme-borealis@0.0.10': ['Elastic License 2.0 OR AGPL-3.0-only OR SSPL-1.0'], 'language-subtag-registry@0.3.21': ['CC-BY-4.0'], // retired ODC‑By license https://github.com/mattcg/language-subtag-registry 'buffers@0.1.1': ['MIT'], // license in importing module https://www.npmjs.com/package/binary '@bufbuild/protobuf@1.2.1': ['Apache-2.0'], // license (Apache-2.0 AND BSD-3-Clause) diff --git a/src/platform/packages/private/kbn-unsaved-changes-badge/src/components/unsaved_changes_badge/__snapshots__/unsaved_changes_badge.test.tsx.snap b/src/platform/packages/private/kbn-unsaved-changes-badge/src/components/unsaved_changes_badge/__snapshots__/unsaved_changes_badge.test.tsx.snap index 9103b94e19379..3c840fdd7afc9 100644 --- a/src/platform/packages/private/kbn-unsaved-changes-badge/src/components/unsaved_changes_badge/__snapshots__/unsaved_changes_badge.test.tsx.snap +++ b/src/platform/packages/private/kbn-unsaved-changes-badge/src/components/unsaved_changes_badge/__snapshots__/unsaved_changes_badge.test.tsx.snap @@ -10,7 +10,7 @@ exports[` should show all menu items 1`] = ` aria-label="View available actions" class="euiBadge emotion-euiBadge-clickable" data-test-subj="unsavedChangesBadge" - style="--euiBadgeBackgroundColor: #F6E58D; --euiBadgeTextColor: #000000;" + style="--euiBadgeBackgroundColor: #F6E58D; --euiBadgeTextColor: #07101F;" title="test" > { } as RenderCellValuePropsWithInTableSearch) ).toMatchInlineSnapshot(` { expect(badge).toBeInTheDocument(); expect(badge).toHaveTextContent('info'); expect(getComputedStyle(badge).getPropertyValue('--euiBadgeBackgroundColor')).toEqual( - '#90b0d1' + '#90bdff' ); }); diff --git a/src/platform/packages/shared/kbn-discover-utils/src/data_types/logs/utils/get_log_level_color.test.ts b/src/platform/packages/shared/kbn-discover-utils/src/data_types/logs/utils/get_log_level_color.test.ts index fcbf7848603a9..fbd18ea82bf58 100644 --- a/src/platform/packages/shared/kbn-discover-utils/src/data_types/logs/utils/get_log_level_color.test.ts +++ b/src/platform/packages/shared/kbn-discover-utils/src/data_types/logs/utils/get_log_level_color.test.ts @@ -20,28 +20,28 @@ const euiTheme = { describe('getLogLevelColor', () => { test('should work correctly', () => { expect(getLogLevelColor(LogLevelCoalescedValue.debug, euiTheme as EuiThemeComputed)).toBe( - '#becfe3' + '#bdd7ff' ); expect(getLogLevelColor(LogLevelCoalescedValue.info, euiTheme as EuiThemeComputed)).toBe( - '#90b0d1' + '#90bdff' ); expect(getLogLevelColor(LogLevelCoalescedValue.notice, euiTheme as EuiThemeComputed)).toBe( - '#6092c0' + '#61a2ff' ); expect(getLogLevelColor(LogLevelCoalescedValue.warning, euiTheme as EuiThemeComputed)).toBe( - '#d6bf57' + '#fcd883' ); expect(getLogLevelColor(LogLevelCoalescedValue.error, euiTheme as EuiThemeComputed)).toBe( - '#e18774' + '#fc9a92' ); expect(getLogLevelColor(LogLevelCoalescedValue.critical, euiTheme as EuiThemeComputed)).toBe( - '#dd7b67' + '#fb9188' ); expect(getLogLevelColor(LogLevelCoalescedValue.alert, euiTheme as EuiThemeComputed)).toBe( - '#d76f5b' + '#fa877e' ); expect(getLogLevelColor(LogLevelCoalescedValue.emergency, euiTheme as EuiThemeComputed)).toBe( - '#d2634e' + '#f87c74' ); // other expect(getLogLevelColor(LogLevelCoalescedValue.trace, euiTheme as EuiThemeComputed)).toBe( diff --git a/src/platform/packages/shared/kbn-unified-data-table/src/components/compare_documents/hooks/__snapshots__/use_comparison_cell_value.test.tsx.snap b/src/platform/packages/shared/kbn-unified-data-table/src/components/compare_documents/hooks/__snapshots__/use_comparison_cell_value.test.tsx.snap index bb53364085039..b7825414088b3 100644 --- a/src/platform/packages/shared/kbn-unified-data-table/src/components/compare_documents/hooks/__snapshots__/use_comparison_cell_value.test.tsx.snap +++ b/src/platform/packages/shared/kbn-unified-data-table/src/components/compare_documents/hooks/__snapshots__/use_comparison_cell_value.test.tsx.snap @@ -11,7 +11,7 @@ exports[`useComparisonCellValue should render a tooltip when the field is derive class="euiFlexItem emotion-euiFlexItem-growZero" > ); expect(component.html()).toMatchInlineSnapshot( - `"
extension
.gz
_index
test
_score
1
"` + `"
extension
.gz
_index
test
_score
1
"` ); }); }); diff --git a/src/platform/packages/shared/kbn-unified-data-table/src/utils/get_render_cell_value.test.tsx b/src/platform/packages/shared/kbn-unified-data-table/src/utils/get_render_cell_value.test.tsx index 960a576f8342f..8f615c07ddb8a 100644 --- a/src/platform/packages/shared/kbn-unified-data-table/src/utils/get_render_cell_value.test.tsx +++ b/src/platform/packages/shared/kbn-unified-data-table/src/utils/get_render_cell_value.test.tsx @@ -157,7 +157,7 @@ describe('Unified data table cell rendering', function () { /> ); expect(component.html()).toMatchInlineSnapshot( - `"
100
"` + `"
100
"` ); }); @@ -184,7 +184,7 @@ describe('Unified data table cell rendering', function () { /> ); expect(component.html()).toMatchInlineSnapshot( - `"
100
"` + `"
100
"` ); findTestSubject(component, 'docTableClosePopover').simulate('click'); expect(closePopoverMockFn).toHaveBeenCalledTimes(1); diff --git a/src/platform/packages/shared/kbn-unified-doc-viewer/src/components/field_name/__snapshots__/field_name.test.tsx.snap b/src/platform/packages/shared/kbn-unified-doc-viewer/src/components/field_name/__snapshots__/field_name.test.tsx.snap index cf9ddb38bbe69..bf6a40469476a 100644 --- a/src/platform/packages/shared/kbn-unified-doc-viewer/src/components/field_name/__snapshots__/field_name.test.tsx.snap +++ b/src/platform/packages/shared/kbn-unified-doc-viewer/src/components/field_name/__snapshots__/field_name.test.tsx.snap @@ -14,7 +14,7 @@ exports[`FieldName renders a custom description icon 1`] = ` class="euiFlexItem emotion-euiFlexItem-growZero" > { ); expect(wrapper).toMatchInlineSnapshot(` { const wrapper = shallow(); expect(wrapper).toMatchInlineSnapshot(` diff --git a/src/platform/packages/shared/kbn-visualization-ui-components/components/drag_drop_bucket/buckets.test.tsx b/src/platform/packages/shared/kbn-visualization-ui-components/components/drag_drop_bucket/buckets.test.tsx index e3abee643eeaa..0d96c558b0c54 100644 --- a/src/platform/packages/shared/kbn-visualization-ui-components/components/drag_drop_bucket/buckets.test.tsx +++ b/src/platform/packages/shared/kbn-visualization-ui-components/components/drag_drop_bucket/buckets.test.tsx @@ -65,7 +65,7 @@ describe('buckets shared components', () => { it('should render invalid component', () => { const instance = mount(); const iconProps = instance.find(EuiIcon).first().props(); - expect(iconProps.color.toUpperCase()).toEqual('#BD271E'); + expect(iconProps.color.toUpperCase()).toEqual('#A71627'); expect(iconProps.type).toEqual('warning'); }); it('should call onRemoveClick when remove icon is clicked', () => { diff --git a/src/platform/packages/shared/shared-ux/button_toolbar/src/popover/popover.test.tsx b/src/platform/packages/shared/shared-ux/button_toolbar/src/popover/popover.test.tsx index d4cd612a2d1c9..c77e311077dcd 100644 --- a/src/platform/packages/shared/shared-ux/button_toolbar/src/popover/popover.test.tsx +++ b/src/platform/packages/shared/shared-ux/button_toolbar/src/popover/popover.test.tsx @@ -38,8 +38,8 @@ describe('', () => { expect(button.prop('color')).toBe('text'); expect(button.prop('css')).toMatchObject({ backgroundColor: '#FFFFFF', - border: '1px solid #D3DAE6', - color: '#343741', + border: '1px solid #E3E8F2', + color: '#1D2A3E', }); }); diff --git a/src/platform/plugins/private/vis_types/vislib/public/vislib/components/legend/__snapshots__/legend.test.tsx.snap b/src/platform/plugins/private/vis_types/vislib/public/vislib/components/legend/__snapshots__/legend.test.tsx.snap index c9a3c41edca93..a6910fbc2f7c8 100644 --- a/src/platform/plugins/private/vis_types/vislib/public/vislib/components/legend/__snapshots__/legend.test.tsx.snap +++ b/src/platform/plugins/private/vis_types/vislib/public/vislib/components/legend/__snapshots__/legend.test.tsx.snap @@ -2,4 +2,4 @@ exports[`VisLegend Component Legend closed should match the snapshot 1`] = `"
"`; -exports[`VisLegend Component Legend open should match the snapshot 1`] = `"
"`; +exports[`VisLegend Component Legend open should match the snapshot 1`] = `"
"`; diff --git a/src/platform/plugins/shared/chart_expressions/expression_gauge/public/components/__snapshots__/gauge_component.test.tsx.snap b/src/platform/plugins/shared/chart_expressions/expression_gauge/public/components/__snapshots__/gauge_component.test.tsx.snap index 501b6844c2fcf..ea4cb22cdf203 100644 --- a/src/platform/plugins/shared/chart_expressions/expression_gauge/public/components/__snapshots__/gauge_component.test.tsx.snap +++ b/src/platform/plugins/shared/chart_expressions/expression_gauge/public/components/__snapshots__/gauge_component.test.tsx.snap @@ -568,8 +568,8 @@ exports[`GaugeComponent renders the chart 1`] = ` ('data')[0]?.[0]; expect((datum?.ticks as () => number[])?.()).toEqual([0, 1, 2, 3, 4, 10]); const colorBands = bullet.prop('colorBands'); - expect(colorBands).toEqual(['#D3DAE6', '#D3DAE6']); + expect(colorBands).toEqual(['#CAD3E2', '#CAD3E2']); }); it('sets proper color bands if palette steps are smaller than minimum', () => { const palette = { @@ -268,7 +268,7 @@ describe('GaugeComponent', function () { } as GaugeRenderProps; const bullet = shallowWithIntl().find(Bullet); const colorBands = bullet.prop('colorBands'); - expect(colorBands).toEqual(['#D3DAE6', '#D3DAE6']); + expect(colorBands).toEqual(['#CAD3E2', '#CAD3E2']); }); it('sets proper color bands if percent palette steps are smaller than 0', () => { const palette = { @@ -296,7 +296,7 @@ describe('GaugeComponent', function () { } as GaugeRenderProps; const bullet = shallowWithIntl().find(Bullet); const colorBands = bullet.prop('colorBands'); - expect(colorBands).toEqual(['#D3DAE6', '#D3DAE6']); + expect(colorBands).toEqual(['#CAD3E2', '#CAD3E2']); }); it('doesnt set bands for values differing <10%', () => { const palette = { @@ -324,7 +324,7 @@ describe('GaugeComponent', function () { } as GaugeRenderProps; const bullet = shallowWithIntl().find(Bullet); const colorBands = bullet.prop('colorBands'); - expect(colorBands).toEqual(['#D3DAE6', '#D3DAE6']); + expect(colorBands).toEqual(['#CAD3E2', '#CAD3E2']); }); it('sets proper color bands for values greater than maximum', () => { const palette = { @@ -352,7 +352,7 @@ describe('GaugeComponent', function () { } as GaugeRenderProps; const bullet = shallowWithIntl().find(Bullet); const colorBands = bullet.prop('colorBands'); - expect(colorBands).toEqual(['#D3DAE6', '#D3DAE6']); + expect(colorBands).toEqual(['#CAD3E2', '#CAD3E2']); }); it('passes number bands from color palette with no stops defined', () => { const palette = { diff --git a/src/platform/plugins/shared/discover/public/context_awareness/profile_providers/observability/logs_data_source_profile/profile.test.ts b/src/platform/plugins/shared/discover/public/context_awareness/profile_providers/observability/logs_data_source_profile/profile.test.ts index 1e84012942c16..1c5731ce6d81e 100644 --- a/src/platform/plugins/shared/discover/public/context_awareness/profile_providers/observability/logs_data_source_profile/profile.test.ts +++ b/src/platform/plugins/shared/discover/public/context_awareness/profile_providers/observability/logs_data_source_profile/profile.test.ts @@ -172,7 +172,7 @@ describe('logsDataSourceProfileProvider', () => { }); expect(getRowIndicator).toBeDefined(); - expect(getRowIndicator?.(row, euiTheme)).toEqual({ color: '#90b0d1', label: 'Info' }); + expect(getRowIndicator?.(row, euiTheme)).toEqual({ color: '#90bdff', label: 'Info' }); }); it('should not return a color for a missing log level in the document', () => { diff --git a/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant_context/assistant_nav_link.test.tsx b/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant_context/assistant_nav_link.test.tsx index 3637bc6387d0a..869e6b66e4a8c 100644 --- a/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant_context/assistant_nav_link.test.tsx +++ b/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant_context/assistant_nav_link.test.tsx @@ -91,7 +91,7 @@ describe('AssistantNavLink', () => { ); - expect(queryByTestId('assistantNavLink')).toHaveStyle('background-color: rgb(204, 228, 245)'); + expect(queryByTestId('assistantNavLink')).toHaveStyle('background-color: rgb(217, 232, 255)'); }); it('should render the header link text', () => { diff --git a/x-pack/platform/plugins/private/canvas/shareable_runtime/components/__snapshots__/app.test.tsx.snap b/x-pack/platform/plugins/private/canvas/shareable_runtime/components/__snapshots__/app.test.tsx.snap index a3d610ec821e2..2ab52a813abc8 100644 --- a/x-pack/platform/plugins/private/canvas/shareable_runtime/components/__snapshots__/app.test.tsx.snap +++ b/x-pack/platform/plugins/private/canvas/shareable_runtime/components/__snapshots__/app.test.tsx.snap @@ -1,3 +1,3 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` App renders properly 1`] = `"
markdown mock
markdown mock

Page level controls

My Canvas Workpad

There is a new region landmark with page level controls at the end of the document.

"`; +exports[` App renders properly 1`] = `"
markdown mock
markdown mock

Page level controls

My Canvas Workpad

There is a new region landmark with page level controls at the end of the document.

"`; diff --git a/x-pack/platform/plugins/private/graph/public/services/persistence/deserialize.test.ts b/x-pack/platform/plugins/private/graph/public/services/persistence/deserialize.test.ts index 791ee25dfb84d..8464f17166bd3 100644 --- a/x-pack/platform/plugins/private/graph/public/services/persistence/deserialize.test.ts +++ b/x-pack/platform/plugins/private/graph/public/services/persistence/deserialize.test.ts @@ -172,7 +172,7 @@ describe('deserialize', () => { }, Object { "aggregatable": true, - "color": "#D36086", + "color": "#61A2FF", "hopSize": 5, "icon": Object { "id": "folderOpen", diff --git a/x-pack/platform/plugins/private/index_lifecycle_management/__jest__/__snapshots__/extend_index_management.test.tsx.snap b/x-pack/platform/plugins/private/index_lifecycle_management/__jest__/__snapshots__/extend_index_management.test.tsx.snap index e23f395b13ed9..fbbb3b532eef5 100644 --- a/x-pack/platform/plugins/private/index_lifecycle_management/__jest__/__snapshots__/extend_index_management.test.tsx.snap +++ b/x-pack/platform/plugins/private/index_lifecycle_management/__jest__/__snapshots__/extend_index_management.test.tsx.snap @@ -179,7 +179,7 @@ exports[`extend index management ilm summary extension should render a phase def >
Turn on monitoring diff --git a/x-pack/platform/plugins/shared/lens/public/shared_components/dataview_picker/trigger.test.tsx b/x-pack/platform/plugins/shared/lens/public/shared_components/dataview_picker/trigger.test.tsx index fcc7ccf2bba1d..7ce360628b853 100644 --- a/x-pack/platform/plugins/shared/lens/public/shared_components/dataview_picker/trigger.test.tsx +++ b/x-pack/platform/plugins/shared/lens/public/shared_components/dataview_picker/trigger.test.tsx @@ -56,8 +56,8 @@ describe('TriggerButton', () => { isMissingCurrent /> ); - // EUI danger red: rgb(171, 35, 28) - expect(screen.getByTestId('test-id')).toHaveStyle({ color: 'rgb(171, 35, 28)' }); + // EUI danger red: rgb(167, 22, 39) + expect(screen.getByTestId('test-id')).toHaveStyle({ color: 'rgb(167, 22, 39)' }); }); }); diff --git a/x-pack/platform/plugins/shared/maps/public/classes/layers/vector_layer/mvt_vector_layer/__snapshots__/mvt_vector_layer.test.tsx.snap b/x-pack/platform/plugins/shared/maps/public/classes/layers/vector_layer/mvt_vector_layer/__snapshots__/mvt_vector_layer.test.tsx.snap index faae8892a2a85..033db51142764 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/layers/vector_layer/mvt_vector_layer/__snapshots__/mvt_vector_layer.test.tsx.snap +++ b/x-pack/platform/plugins/shared/maps/public/classes/layers/vector_layer/mvt_vector_layer/__snapshots__/mvt_vector_layer.test.tsx.snap @@ -4,8 +4,8 @@ exports[`getLayerIcon Layers with non-elasticsearch sources should display icon { ...getDefaultStaticProperties(), fillColor: { options: { - color: '#6092C0', + color: '#A6EDEA', }, type: 'STATIC', }, @@ -155,7 +155,7 @@ describe('createLayerDescriptor', () => { ...getDefaultStaticProperties(), fillColor: { options: { - color: '#D36086', + color: '#61A2FF', }, type: 'STATIC', }, @@ -231,7 +231,7 @@ describe('createLayerDescriptor', () => { ...getDefaultStaticProperties(), lineColor: { options: { - color: '#6092C0', + color: '#A6EDEA', }, type: 'STATIC', }, @@ -308,7 +308,7 @@ describe('createLayerDescriptor', () => { ...getDefaultStaticProperties(), fillColor: { options: { - color: '#6092C0', + color: '#A6EDEA', }, type: 'STATIC', }, @@ -387,7 +387,7 @@ describe('createLayerDescriptor', () => { ...getDefaultStaticProperties(), fillColor: { options: { - color: '#D36086', + color: '#61A2FF', }, type: 'STATIC', }, @@ -457,7 +457,7 @@ describe('createLayerDescriptor', () => { ...getDefaultStaticProperties(), lineColor: { options: { - color: '#6092C0', + color: '#A6EDEA', }, type: 'STATIC', }, @@ -536,7 +536,7 @@ describe('createLayerDescriptor', () => { ...getDefaultStaticProperties(), fillColor: { options: { - color: '#6092C0', + color: '#A6EDEA', }, type: 'STATIC', }, @@ -615,7 +615,7 @@ describe('createLayerDescriptor', () => { ...getDefaultStaticProperties(), fillColor: { options: { - color: '#D36086', + color: '#61A2FF', }, type: 'STATIC', }, @@ -685,7 +685,7 @@ describe('createLayerDescriptor', () => { ...getDefaultStaticProperties(), lineColor: { options: { - color: '#6092C0', + color: '#A6EDEA', }, type: 'STATIC', }, diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/color_palettes.test.ts b/x-pack/platform/plugins/shared/maps/public/classes/styles/color_palettes.test.ts index d5a6ea694b3e0..707c33ce3994e 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/color_palettes.test.ts +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/color_palettes.test.ts @@ -15,21 +15,21 @@ import { describe('getColorPalette', () => { test('Should create RGB color ramp', () => { expect(getColorPalette('Blues')).toEqual([ - '#ecf1f7', - '#d9e3ef', - '#c5d5e7', - '#b2c7df', - '#9eb9d8', - '#8bacd0', - '#769fc8', - '#6092c0', + '#e4eefd', + '#d3e3fe', + '#c1d8fe', + '#afceff', + '#9dc3ff', + '#8bb8ff', + '#77adff', + '#61a2ff', ]); }); }); describe('getColorRampCenterColor', () => { test('Should get center color from color ramp', () => { - expect(getColorRampCenterColor('Blues')).toBe('#9eb9d8'); + expect(getColorRampCenterColor('Blues')).toBe('#9dc3ff'); }); }); @@ -37,47 +37,47 @@ describe('getOrdinalMbColorRampStops', () => { test('Should create color stops', () => { expect(getOrdinalMbColorRampStops('Blues', 0, 1000, false)).toEqual([ 0, - '#ecf1f7', + '#e4eefd', 125, - '#d9e3ef', + '#d3e3fe', 250, - '#c5d5e7', + '#c1d8fe', 375, - '#b2c7df', + '#afceff', 500, - '#9eb9d8', + '#9dc3ff', 625, - '#8bacd0', + '#8bb8ff', 750, - '#769fc8', + '#77adff', 875, - '#6092c0', + '#61a2ff', ]); }); test('Should create inverted color stops', () => { expect(getOrdinalMbColorRampStops('Blues', 0, 1000, true)).toEqual([ 0, - '#6092c0', + '#61a2ff', 125, - '#769fc8', + '#77adff', 250, - '#8bacd0', + '#8bb8ff', 375, - '#9eb9d8', + '#9dc3ff', 500, - '#b2c7df', + '#afceff', 625, - '#c5d5e7', + '#c1d8fe', 750, - '#d9e3ef', + '#d3e3fe', 875, - '#ecf1f7', + '#e4eefd', ]); }); - test('Should snap to end of color stops for identical range', () => { - expect(getOrdinalMbColorRampStops('Blues', 23, 23, false)).toEqual([23, '#6092c0']); + test('xShould snap to end of color stops for identical range', () => { + expect(getOrdinalMbColorRampStops('Blues', 23, 23, false)).toEqual([23, '#61a2ff']); }); }); @@ -92,15 +92,15 @@ describe('getPercentilesMbColorRampStops', () => { ]; expect(getPercentilesMbColorRampStops('Blues', percentiles, false)).toEqual([ 5567.83, - '#e0e8f2', + '#dae8fd', 8069, - '#c2d2e6', + '#bed6fe', 9581.13, - '#a2bcd9', + '#a1c5ff', 11145.5, - '#82a7cd', + '#83b3ff', 16958.18, - '#6092c0', + '#61a2ff', ]); }); @@ -114,15 +114,15 @@ describe('getPercentilesMbColorRampStops', () => { ]; expect(getPercentilesMbColorRampStops('Blues', percentiles, true)).toEqual([ 5567.83, - '#6092c0', + '#61a2ff', 8069, - '#82a7cd', + '#83b3ff', 9581.13, - '#a2bcd9', + '#a1c5ff', 11145.5, - '#c2d2e6', + '#bed6fe', 16958.18, - '#e0e8f2', + '#dae8fd', ]); }); }); diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/heatmap/components/__snapshots__/heatmap_style_editor.test.tsx.snap b/x-pack/platform/plugins/shared/maps/public/classes/styles/heatmap/components/__snapshots__/heatmap_style_editor.test.tsx.snap index 85de0cc0f7e30..cb3676cdeba48 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/heatmap/components/__snapshots__/heatmap_style_editor.test.tsx.snap +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/heatmap/components/__snapshots__/heatmap_style_editor.test.tsx.snap @@ -13,14 +13,14 @@ exports[`HeatmapStyleEditor is rendered 1`] = ` Object { "getPalette": [Function], "palette": Array [ - "#ecf1f7", - "#d9e3ef", - "#c5d5e7", - "#b2c7df", - "#9eb9d8", - "#8bacd0", - "#769fc8", - "#6092c0", + "#e4eefd", + "#d3e3fe", + "#c1d8fe", + "#afceff", + "#9dc3ff", + "#8bb8ff", + "#77adff", + "#61a2ff", ], "title": "", "type": "gradient", @@ -29,14 +29,14 @@ exports[`HeatmapStyleEditor is rendered 1`] = ` Object { "getPalette": [Function], "palette": Array [ - "#e6f1ee", - "#cce4de", - "#b3d6cd", - "#9ac8bd", - "#80bbae", - "#65ad9e", - "#47a08f", - "#209280", + "#e1f3ee", + "#cbece1", + "#b5e6d3", + "#9fdfc6", + "#87d8b9", + "#6dd1ac", + "#50c99f", + "#24c292", ], "title": "", "type": "gradient", @@ -45,14 +45,14 @@ exports[`HeatmapStyleEditor is rendered 1`] = ` Object { "getPalette": [Function], "palette": Array [ - "#e0e4eb", - "#c3c9d4", - "#a8afbc", - "#8e95a3", - "#757c8a", - "#5e6471", - "#494d58", - "#343741", + "#d5dce8", + "#b6c0d3", + "#98a5bc", + "#7b8aa4", + "#61718b", + "#485872", + "#324058", + "#1d2a3e", ], "title": "", "type": "gradient", @@ -61,14 +61,14 @@ exports[`HeatmapStyleEditor is rendered 1`] = ` Object { "getPalette": [Function], "palette": Array [ - "#fdeae5", - "#f9d5cc", - "#f4c0b4", - "#eeab9c", - "#e79685", - "#df816e", - "#d66c58", - "#cc5642", + "#fae9e9", + "#fcd8d6", + "#fec8c3", + "#feb7b0", + "#fda69e", + "#fc968d", + "#f9847b", + "#f6726a", ], "title": "", "type": "gradient", @@ -77,14 +77,14 @@ exports[`HeatmapStyleEditor is rendered 1`] = ` Object { "getPalette": [Function], "palette": Array [ - "#f9eac5", - "#f6d9af", - "#f3c89a", - "#efb785", - "#eba672", - "#e89361", - "#e58053", - "#e7664c", + "#ffdad5", + "#ffccc6", + "#ffbeb6", + "#ffafa6", + "#fea097", + "#fc9188", + "#f98279", + "#f6726a", ], "title": "", "type": "gradient", @@ -93,14 +93,14 @@ exports[`HeatmapStyleEditor is rendered 1`] = ` Object { "getPalette": [Function], "palette": Array [ - "#209280", - "#3aa38d", - "#54b399", - "#95b978", - "#df9352", - "#e7664c", - "#da5e47", - "#cc5642", + "#24c292", + "#69d5b2", + "#aee8d2", + "#d5e0ab", + "#fed1a3", + "#ffc9c2", + "#fb9e96", + "#f6726a", ], "title": "", "type": "gradient", @@ -109,14 +109,14 @@ exports[`HeatmapStyleEditor is rendered 1`] = ` Object { "getPalette": [Function], "palette": Array [ - "#6092c0", - "#84a9cd", - "#a8bfda", - "#cad7e8", - "#f5d9b1", - "#efb785", - "#eb8f69", - "#e7664c", + "#61a2ff", + "#85b6ff", + "#a8caff", + "#c8deff", + "#ffccc6", + "#ffafa6", + "#fb9188", + "#f6726a", ], "title": "", "type": "gradient", diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/__snapshots__/vector_style_editor.test.tsx.snap b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/__snapshots__/vector_style_editor.test.tsx.snap index 691327928eb67..9c9a417f97bf5 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/__snapshots__/vector_style_editor.test.tsx.snap +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/__snapshots__/vector_style_editor.test.tsx.snap @@ -16,7 +16,7 @@ exports[`should render 1`] = ` } defaultStaticStyleOptions={ Object { - "color": "#54B399", + "color": "#16C5C0", } } disabled={false} @@ -38,23 +38,23 @@ exports[`should render 1`] = ` styleProperty={ StaticColorProperty { "_options": Object { - "color": "#54B399", + "color": "#16C5C0", }, "_styleName": "fillColor", } } swatches={ Array [ - "#54B399", - "#6092C0", - "#D36086", - "#9170B8", - "#CA8EAE", - "#D6BF57", - "#B9A888", - "#DA8B45", - "#AA6556", - "#E7664C", + "#16C5C0", + "#A6EDEA", + "#61A2FF", + "#BFDBFF", + "#EE72A6", + "#FFC7DB", + "#F6726A", + "#FFC9C2", + "#EAAE01", + "#FCD883", ] } /> @@ -75,7 +75,7 @@ exports[`should render 1`] = ` } defaultStaticStyleOptions={ Object { - "color": "#41937c", + "color": "#119793", } } disabled={false} @@ -97,23 +97,23 @@ exports[`should render 1`] = ` styleProperty={ StaticColorProperty { "_options": Object { - "color": "#41937c", + "color": "#119793", }, "_styleName": "lineColor", } } swatches={ Array [ - "#41937c", - "#4379aa", - "#c83868", - "#7751a4", - "#ba6b95", - "#c9ad31", - "#a69168", - "#c57127", - "#885145", - "#e1401f", + "#119793", + "#7ce4e0", + "#2e84ff", + "#8cbeff", + "#e94489", + "#ff94ba", + "#f3443a", + "#ff9c8f", + "#b78801", + "#fbc851", "#000", "#FFF", ] @@ -256,16 +256,16 @@ exports[`should render 1`] = ` } swatches={ Array [ - "#41937c", - "#4379aa", - "#c83868", - "#7751a4", - "#ba6b95", - "#c9ad31", - "#a69168", - "#c57127", - "#885145", - "#e1401f", + "#119793", + "#7ce4e0", + "#2e84ff", + "#8cbeff", + "#e94489", + "#ff94ba", + "#f3443a", + "#ff9c8f", + "#b78801", + "#fbc851", "#000", "#FFF", ] @@ -351,16 +351,16 @@ exports[`should render 1`] = ` } swatches={ Array [ - "#41937c", - "#4379aa", - "#c83868", - "#7751a4", - "#ba6b95", - "#c9ad31", - "#a69168", - "#c57127", - "#885145", - "#e1401f", + "#119793", + "#7ce4e0", + "#2e84ff", + "#8cbeff", + "#e94489", + "#ff94ba", + "#f3443a", + "#ff9c8f", + "#b78801", + "#fbc851", "#000", "#FFF", ] @@ -420,7 +420,7 @@ exports[`should render with no style fields 1`] = ` } defaultStaticStyleOptions={ Object { - "color": "#54B399", + "color": "#16C5C0", } } disabled={false} @@ -431,23 +431,23 @@ exports[`should render with no style fields 1`] = ` styleProperty={ StaticColorProperty { "_options": Object { - "color": "#54B399", + "color": "#16C5C0", }, "_styleName": "fillColor", } } swatches={ Array [ - "#54B399", - "#6092C0", - "#D36086", - "#9170B8", - "#CA8EAE", - "#D6BF57", - "#B9A888", - "#DA8B45", - "#AA6556", - "#E7664C", + "#16C5C0", + "#A6EDEA", + "#61A2FF", + "#BFDBFF", + "#EE72A6", + "#FFC7DB", + "#F6726A", + "#FFC9C2", + "#EAAE01", + "#FCD883", ] } /> @@ -468,7 +468,7 @@ exports[`should render with no style fields 1`] = ` } defaultStaticStyleOptions={ Object { - "color": "#41937c", + "color": "#119793", } } disabled={false} @@ -479,23 +479,23 @@ exports[`should render with no style fields 1`] = ` styleProperty={ StaticColorProperty { "_options": Object { - "color": "#41937c", + "color": "#119793", }, "_styleName": "lineColor", } } swatches={ Array [ - "#41937c", - "#4379aa", - "#c83868", - "#7751a4", - "#ba6b95", - "#c9ad31", - "#a69168", - "#c57127", - "#885145", - "#e1401f", + "#119793", + "#7ce4e0", + "#2e84ff", + "#8cbeff", + "#e94489", + "#ff94ba", + "#f3443a", + "#ff9c8f", + "#b78801", + "#fbc851", "#000", "#FFF", ] @@ -616,16 +616,16 @@ exports[`should render with no style fields 1`] = ` } swatches={ Array [ - "#41937c", - "#4379aa", - "#c83868", - "#7751a4", - "#ba6b95", - "#c9ad31", - "#a69168", - "#c57127", - "#885145", - "#e1401f", + "#119793", + "#7ce4e0", + "#2e84ff", + "#8cbeff", + "#e94489", + "#ff94ba", + "#f3443a", + "#ff9c8f", + "#b78801", + "#fbc851", "#000", "#FFF", ] @@ -700,16 +700,16 @@ exports[`should render with no style fields 1`] = ` } swatches={ Array [ - "#41937c", - "#4379aa", - "#c83868", - "#7751a4", - "#ba6b95", - "#c9ad31", - "#a69168", - "#c57127", - "#885145", - "#e1401f", + "#119793", + "#7ce4e0", + "#2e84ff", + "#8cbeff", + "#e94489", + "#ff94ba", + "#f3443a", + "#ff9c8f", + "#b78801", + "#fbc851", "#000", "#FFF", ] diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/legend/extract_color_from_style_property.test.ts b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/legend/extract_color_from_style_property.test.ts index aeeeff361d5a0..7d65839824430 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/legend/extract_color_from_style_property.test.ts +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/legend/extract_color_from_style_property.test.ts @@ -137,7 +137,7 @@ describe('dynamic', () => { fieldMetaOptions, } as ColorDynamicOptions, } as ColorDynamicStylePropertyDescriptor; - expect(extractColorFromStyleProperty(colorStyleProperty, defaultColor)).toBe('#9eb9d8'); + expect(extractColorFromStyleProperty(colorStyleProperty, defaultColor)).toBe('#9dc3ff'); }); }); diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/properties/__snapshots__/dynamic_color_property.test.tsx.snap b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/properties/__snapshots__/dynamic_color_property.test.tsx.snap index f94b63e02163d..5896333afd0ac 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/properties/__snapshots__/dynamic_color_property.test.tsx.snap +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/properties/__snapshots__/dynamic_color_property.test.tsx.snap @@ -62,7 +62,7 @@ exports[`renderLegendDetailRow categorical Should render categorical legend with key="0" > { -1, 'rgba(0,0,0,0)', 0, - '#ecf1f7', + '#e4eefd', 12.5, - '#d9e3ef', + '#d3e3fe', 25, - '#c5d5e7', + '#c1d8fe', 37.5, - '#b2c7df', + '#afceff', 50, - '#9eb9d8', + '#9dc3ff', 62.5, - '#8bacd0', + '#8bb8ff', 75, - '#769fc8', + '#77adff', 87.5, - '#6092c0', + '#61a2ff', ]); }); }); @@ -612,9 +612,9 @@ describe('get mapbox color expression (via internal _getMbColor)', () => { 'match', ['to-string', ['get', 'foobar']], 'US', - '#54B399', + '#16C5C0', 'CN', - '#6092C0', + '#A6EDEA', 'grey', ]); }); diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/vector_style.test.js b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/vector_style.test.js index 1bbaad11534b0..eae517f34ff98 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/vector_style.test.js +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/vector_style.test.js @@ -103,7 +103,7 @@ describe('getDescriptorWithUpdatedStyleProps', () => { expect(hasChanges).toBe(true); expect(nextStyleDescriptor.properties[VECTOR_STYLES.LINE_COLOR]).toEqual({ options: { - color: '#41937c', + color: '#119793', }, type: 'STATIC', }); diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/vector_style_defaults.test.ts b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/vector_style_defaults.test.ts index 856ae869e0bab..65d6ba9c6d941 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/vector_style_defaults.test.ts +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/vector_style_defaults.test.ts @@ -19,13 +19,13 @@ import { getDefaultStaticProperties } from './vector_style_defaults'; describe('getDefaultStaticProperties', () => { test('Should use first color in DEFAULT_*_COLORS when no colors are used on the map', () => { const styleProperties = getDefaultStaticProperties([]); - expect(styleProperties[VECTOR_STYLES.FILL_COLOR].options.color).toBe('#54B399'); - expect(styleProperties[VECTOR_STYLES.LINE_COLOR].options.color).toBe('#41937c'); + expect(styleProperties[VECTOR_STYLES.FILL_COLOR].options.color).toBe('#16C5C0'); + expect(styleProperties[VECTOR_STYLES.LINE_COLOR].options.color).toBe('#119793'); }); test('Should next color in DEFAULT_*_COLORS when colors are used on the map', () => { const styleProperties = getDefaultStaticProperties(['#54B399']); - expect(styleProperties[VECTOR_STYLES.FILL_COLOR].options.color).toBe('#6092C0'); - expect(styleProperties[VECTOR_STYLES.LINE_COLOR].options.color).toBe('#4379aa'); + expect(styleProperties[VECTOR_STYLES.FILL_COLOR].options.color).toBe('#16C5C0'); + expect(styleProperties[VECTOR_STYLES.LINE_COLOR].options.color).toBe('#119793'); }); }); diff --git a/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.test.tsx b/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.test.tsx index 772fe59965130..b38c15f328196 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.test.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.test.tsx @@ -54,23 +54,23 @@ describe('NER output', () => { describe('getClassColor', () => { test('returns the correct color for class PER', () => { - expect(getClassColor('PER', true)).toBe('#f1d86f'); + expect(getClassColor('PER', true)).toBe('#ffe0f5'); }); test('returns the correct color for class LOC', () => { - expect(getClassColor('LOC', true)).toBe('#79aad9'); + expect(getClassColor('LOC', true)).toBe('#bfffff'); }); test('returns the correct color for class ORG', () => { - expect(getClassColor('ORG', true)).toBe('#6dccb1'); + expect(getClassColor('ORG', true)).toBe('#45ded9'); }); test('returns the correct color for class MISC', () => { - expect(getClassColor('MISC', true)).toBe('#f5a35c'); + expect(getClassColor('MISC', true)).toBe('#ffe2db'); }); test('returns the default color for an unknown class', () => { - expect(getClassColor('UNKNOWN', true)).toBe('#f1d86f'); + expect(getClassColor('UNKNOWN', true)).toBe('#ffe0f5'); }); }); }); diff --git a/x-pack/platform/plugins/shared/security/public/account_management/user_profile/user_profile.test.tsx b/x-pack/platform/plugins/shared/security/public/account_management/user_profile/user_profile.test.tsx index af3a5dce4ead3..141bb04f4be6b 100644 --- a/x-pack/platform/plugins/shared/security/public/account_management/user_profile/user_profile.test.tsx +++ b/x-pack/platform/plugins/shared/security/public/account_management/user_profile/user_profile.test.tsx @@ -71,7 +71,7 @@ describe('useUserProfileForm', () => { "avatarType": "initials", "data": Object { "avatar": Object { - "color": "#D36086", + "color": "#61A2FF", "imageUrl": "", "initials": "fn", }, diff --git a/x-pack/platform/plugins/shared/security/server/__snapshots__/prompt_page.test.tsx.snap b/x-pack/platform/plugins/shared/security/server/__snapshots__/prompt_page.test.tsx.snap index f59b9c5a4c7ca..e1061a099af31 100644 --- a/x-pack/platform/plugins/shared/security/server/__snapshots__/prompt_page.test.tsx.snap +++ b/x-pack/platform/plugins/shared/security/server/__snapshots__/prompt_page.test.tsx.snap @@ -1,5 +1,5 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`PromptPage renders as expected with additional scripts 1`] = `"ElasticMockedFonts

Some Title

Some Body
Action#1
Action#2
"`; +exports[`PromptPage renders as expected with additional scripts 1`] = `"ElasticMockedFonts

Some Title

Some Body
Action#1
Action#2
"`; -exports[`PromptPage renders as expected without additional scripts 1`] = `"ElasticMockedFonts

Some Title

Some Body
Action#1
Action#2
"`; +exports[`PromptPage renders as expected without additional scripts 1`] = `"ElasticMockedFonts

Some Title

Some Body
Action#1
Action#2
"`; diff --git a/x-pack/platform/plugins/shared/security/server/authentication/__snapshots__/unauthenticated_page.test.tsx.snap b/x-pack/platform/plugins/shared/security/server/authentication/__snapshots__/unauthenticated_page.test.tsx.snap index cac755dbefa00..9d33edbcd8dd2 100644 --- a/x-pack/platform/plugins/shared/security/server/authentication/__snapshots__/unauthenticated_page.test.tsx.snap +++ b/x-pack/platform/plugins/shared/security/server/authentication/__snapshots__/unauthenticated_page.test.tsx.snap @@ -1,5 +1,5 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`UnauthenticatedPage renders as expected 1`] = `"ElasticMockedFonts

We hit an authentication error

Try logging in again, and if the problem persists, contact your system administrator.

"`; +exports[`UnauthenticatedPage renders as expected 1`] = `"ElasticMockedFonts

We hit an authentication error

Try logging in again, and if the problem persists, contact your system administrator.

"`; -exports[`UnauthenticatedPage renders as expected with custom title 1`] = `"My Company NameMockedFonts

We hit an authentication error

Try logging in again, and if the problem persists, contact your system administrator.

"`; +exports[`UnauthenticatedPage renders as expected with custom title 1`] = `"My Company NameMockedFonts

We hit an authentication error

Try logging in again, and if the problem persists, contact your system administrator.

"`; diff --git a/x-pack/platform/plugins/shared/security/server/authorization/__snapshots__/reset_session_page.test.tsx.snap b/x-pack/platform/plugins/shared/security/server/authorization/__snapshots__/reset_session_page.test.tsx.snap index 7d6b24e6ba2e7..69b47c49417eb 100644 --- a/x-pack/platform/plugins/shared/security/server/authorization/__snapshots__/reset_session_page.test.tsx.snap +++ b/x-pack/platform/plugins/shared/security/server/authorization/__snapshots__/reset_session_page.test.tsx.snap @@ -1,5 +1,5 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`ResetSessionPage renders as expected 1`] = `"ElasticMockedFonts

You do not have permission to access the requested page

Either go back to the previous page or log in as a different user.

"`; +exports[`ResetSessionPage renders as expected 1`] = `"ElasticMockedFonts

You do not have permission to access the requested page

Either go back to the previous page or log in as a different user.

"`; -exports[`ResetSessionPage renders as expected with custom page title 1`] = `"My Company NameMockedFonts

You do not have permission to access the requested page

Either go back to the previous page or log in as a different user.

"`; +exports[`ResetSessionPage renders as expected with custom page title 1`] = `"My Company NameMockedFonts

You do not have permission to access the requested page

Either go back to the previous page or log in as a different user.

"`; diff --git a/x-pack/platform/plugins/shared/spaces/public/management/components/customize_space/customize_space.test.tsx b/x-pack/platform/plugins/shared/spaces/public/management/components/customize_space/customize_space.test.tsx index bea3dbe7b39ca..7b91fdec32135 100644 --- a/x-pack/platform/plugins/shared/spaces/public/management/components/customize_space/customize_space.test.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/management/components/customize_space/customize_space.test.tsx @@ -78,7 +78,7 @@ test('updates identifier, initials and color when name is changed', () => { id: 'space-2', name: 'Space 2', initials: 'S2', - color: '#9170B8', + color: '#BFDBFF', }); }); diff --git a/x-pack/platform/plugins/shared/spaces/public/management/create_space/create_space_page.test.tsx b/x-pack/platform/plugins/shared/spaces/public/management/create_space/create_space_page.test.tsx index 14413b0b2f47b..6e07b39c1591c 100644 --- a/x-pack/platform/plugins/shared/spaces/public/management/create_space/create_space_page.test.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/management/create_space/create_space_page.test.tsx @@ -107,7 +107,7 @@ describe('ManageSpacePage', () => { name: 'New Space Name', description: 'some description', initials: 'NS', - color: '#AA6556', + color: '#EAAE01', imageUrl: '', disabledFeatures: [], solution: 'oblt', diff --git a/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.test.tsx b/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.test.tsx index 353c64b835c0e..ac3e84f8d4c4c 100644 --- a/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.test.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.test.tsx @@ -205,7 +205,7 @@ describe('EditSpaceSettings', () => { name: 'Updated Name Of Space', initials: 'UN', imageUrl: '', - color: '#D6BF57', + color: '#FFC7DB', }); }); @@ -284,7 +284,7 @@ describe('EditSpaceSettings', () => { expect(updateSpaceSpy).toHaveBeenCalledWith({ ...spaceToUpdate, name: 'Updated Existing Space', - color: '#D6BF57', + color: '#FFC7DB', initials: 'UE', imageUrl: '', }); diff --git a/x-pack/platform/plugins/shared/spaces/public/space_avatar/space_avatar_internal.test.tsx b/x-pack/platform/plugins/shared/spaces/public/space_avatar/space_avatar_internal.test.tsx index b42208c965a40..e7f5cda518b05 100644 --- a/x-pack/platform/plugins/shared/spaces/public/space_avatar/space_avatar_internal.test.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/space_avatar/space_avatar_internal.test.tsx @@ -19,7 +19,7 @@ test('renders without crashing', () => { const wrapper = shallow(); expect(wrapper).toMatchInlineSnapshot(` { const wrapper = shallow(); expect(wrapper).toMatchInlineSnapshot(`
@@ -136,15 +136,15 @@ exports[`Timeline TimelineAxisContainer should render with data 1`] = ` >
@@ -168,15 +168,15 @@ exports[`Timeline TimelineAxisContainer should render with data 1`] = ` >
@@ -210,70 +210,70 @@ exports[`Timeline VerticalLinesContainer should render with data 1`] = ` transform="translate(0 100)" > { }); describe('colorTransformer()', () => { it('should just work', () => { - expect(colorTransformer(Color.color0)).toBe('#54B399'); + expect(colorTransformer(Color.color0)).toBe('#16C5C0'); }); }); }); diff --git a/x-pack/solutions/observability/plugins/infra/public/alerting/common/components/threshold.test.tsx b/x-pack/solutions/observability/plugins/infra/public/alerting/common/components/threshold.test.tsx index 754665c18adf3..69c00d1cd44fa 100644 --- a/x-pack/solutions/observability/plugins/infra/public/alerting/common/components/threshold.test.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/alerting/common/components/threshold.test.tsx @@ -65,7 +65,7 @@ describe('Threshold', () => { expect((Metric as jest.Mock).mock.calls[0][0].data[0][0]).toMatchInlineSnapshot(` Object { - "color": "#f8e9e9", + "color": "#FFE8E5", "extra": Alert when >= 7%
diff --git a/x-pack/solutions/observability/plugins/infra/public/alerting/metric_threshold/components/__snapshots__/alert_details_app_section.test.tsx.snap b/x-pack/solutions/observability/plugins/infra/public/alerting/metric_threshold/components/__snapshots__/alert_details_app_section.test.tsx.snap index 0df66d4c3dca3..6d019d22e786a 100644 --- a/x-pack/solutions/observability/plugins/infra/public/alerting/metric_threshold/components/__snapshots__/alert_details_app_section.test.tsx.snap +++ b/x-pack/solutions/observability/plugins/infra/public/alerting/metric_threshold/components/__snapshots__/alert_details_app_section.test.tsx.snap @@ -6,7 +6,7 @@ Array [ "additionalFilters": undefined, "annotations": Array [ Object { - "color": "#BD271E", + "color": "#C61E25", "icon": "alert", "id": "metric_threshold_alert_start_annotation", "key": Object { @@ -17,7 +17,7 @@ Array [ "type": "manual", }, Object { - "color": "rgba(189,39,30,0.2)", + "color": "rgba(198,30,37,0.2)", "id": "metric_threshold_active_alert_range_annotation", "key": Object { "endTimestamp": "2024-06-13T07:00:33.381Z", diff --git a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/inventory_view/components/waffle/__snapshots__/conditional_tooltip.test.tsx.snap b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/inventory_view/components/waffle/__snapshots__/conditional_tooltip.test.tsx.snap index a9a64f08f6834..b7a4ba9e24133 100644 --- a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/inventory_view/components/waffle/__snapshots__/conditional_tooltip.test.tsx.snap +++ b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/inventory_view/components/waffle/__snapshots__/conditional_tooltip.test.tsx.snap @@ -6,7 +6,7 @@ exports[`ConditionalToolTip renders correctly 1`] = ` style="min-width: 220px;" >
host-01
diff --git a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/metrics_explorer/components/helpers/create_tsvb_link.test.ts b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/metrics_explorer/components/helpers/create_tsvb_link.test.ts index 55628d208873d..573bcce14cf92 100644 --- a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/metrics_explorer/components/helpers/create_tsvb_link.test.ts +++ b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/metrics_explorer/components/helpers/create_tsvb_link.test.ts @@ -27,7 +27,7 @@ describe('createTSVBLink()', () => { app: 'visualize', hash: '/create', search: { - _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#54B399,fill:0,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", + _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#16C5C0,fill:0,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", _g: '(refreshInterval:(pause:!t,value:0),time:(from:now-1h,to:now))', type: 'metrics', }, @@ -44,7 +44,7 @@ describe('createTSVBLink()', () => { app: 'visualize', hash: '/create', search: { - _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#54B399,fill:0,formatter:bytes,id:test-id,label:'rate(host.network.egress.bytes)',line_width:2,metrics:!((field:host.network.egress.bytes,id:test-id,type:max),(field:test-id,id:test-id,type:derivative,unit:'1s'),(field:test-id,id:test-id,type:positive_only)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}}/s)),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", + _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#16C5C0,fill:0,formatter:bytes,id:test-id,label:'rate(host.network.egress.bytes)',line_width:2,metrics:!((field:host.network.egress.bytes,id:test-id,type:max),(field:test-id,id:test-id,type:derivative,unit:'1s'),(field:test-id,id:test-id,type:positive_only)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}}/s)),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", _g: '(refreshInterval:(pause:!t,value:0),time:(from:now-1h,to:now))', type: 'metrics', }, @@ -57,7 +57,7 @@ describe('createTSVBLink()', () => { app: 'visualize', hash: '/create', search: { - _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#54B399,fill:0,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", + _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#16C5C0,fill:0,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", _g: '(refreshInterval:(pause:!t,value:0),time:(from:now-10m,to:now))', type: 'metrics', }, @@ -71,7 +71,7 @@ describe('createTSVBLink()', () => { app: 'visualize', hash: '/create', search: { - _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'my-beats-*',filter:(language:kuery,query:'system.network.name:lo* and host.name : \"example-01\"'),id:test-id,index_pattern:'my-beats-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#54B399,fill:0,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", + _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'my-beats-*',filter:(language:kuery,query:'system.network.name:lo* and host.name : \"example-01\"'),id:test-id,index_pattern:'my-beats-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#16C5C0,fill:0,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", _g: '(refreshInterval:(pause:!t,value:0),time:(from:now-1h,to:now))', type: 'metrics', }, @@ -85,7 +85,7 @@ describe('createTSVBLink()', () => { app: 'visualize', hash: '/create', search: { - _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#54B399,fill:0,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", + _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#16C5C0,fill:0,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", _g: '(refreshInterval:(pause:!t,value:0),time:(from:now-1h,to:now))', type: 'metrics', }, @@ -99,7 +99,7 @@ describe('createTSVBLink()', () => { app: 'visualize', hash: '/create', search: { - _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#54B399,fill:0.5,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", + _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#16C5C0,fill:0.5,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", _g: '(refreshInterval:(pause:!t,value:0),time:(from:now-1h,to:now))', type: 'metrics', }, @@ -117,7 +117,7 @@ describe('createTSVBLink()', () => { app: 'visualize', hash: '/create', search: { - _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#54B399,fill:0.5,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:stacked,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", + _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metricbeat-*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metricbeat-*',interval:auto,series:!((axis_position:right,chart_type:line,color:#16C5C0,fill:0.5,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:stacked,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", _g: '(refreshInterval:(pause:!t,value:0),time:(from:now-1h,to:now))', type: 'metrics', }, @@ -130,7 +130,7 @@ describe('createTSVBLink()', () => { app: 'visualize', hash: '/create', search: { - _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metric*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metric*',interval:auto,series:!((axis_position:right,chart_type:line,color:#54B399,fill:0,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", + _a: "(filters:!(),linked:!f,query:(language:kuery,query:''),uiState:(),vis:(aggs:!(),params:(axis_formatter:number,axis_min:0,axis_position:left,axis_scale:normal,default_index_pattern:'metric*',filter:(language:kuery,query:'host.name : \"example-01\"'),id:test-id,index_pattern:'metric*',interval:auto,series:!((axis_position:right,chart_type:line,color:#16C5C0,fill:0,formatter:percent,id:test-id,label:'avg(system.cpu.user.pct)',line_width:2,metrics:!((field:system.cpu.user.pct,id:test-id,type:avg)),point_size:0,separate_axis:0,split_mode:everything,stacked:none,value_template:{{value}})),show_grid:1,show_legend:1,time_field:'@timestamp',type:timeseries),title:example-01,type:metrics))", _g: '(refreshInterval:(pause:!t,value:0),time:(from:now-1h,to:now))', type: 'metrics', }, diff --git a/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/components/alert_details_app_section/__snapshots__/alert_details_app_section.test.tsx.snap b/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/components/alert_details_app_section/__snapshots__/alert_details_app_section.test.tsx.snap index 79c58c84a1f30..d810b965b3bd5 100644 --- a/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/components/alert_details_app_section/__snapshots__/alert_details_app_section.test.tsx.snap +++ b/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/components/alert_details_app_section/__snapshots__/alert_details_app_section.test.tsx.snap @@ -15,7 +15,7 @@ Array [ ], "annotations": Array [ Object { - "color": "#BD271E", + "color": "#C61E25", "icon": "alert", "id": "custom_threshold_alert_start_annotation", "key": Object { diff --git a/x-pack/solutions/observability/plugins/profiling/common/topn.test.ts b/x-pack/solutions/observability/plugins/profiling/common/topn.test.ts index 036b298d9e794..3cc83f792f235 100644 --- a/x-pack/solutions/observability/plugins/profiling/common/topn.test.ts +++ b/x-pack/solutions/observability/plugins/profiling/common/topn.test.ts @@ -10,16 +10,16 @@ import { getCategoryColor } from './topn'; describe('topn', () => { describe('getCategoryColor', () => { const categories = [ - { category: 'elasticsearch', expectedColor: '#D6BF57' }, - { category: 'metricbeat', expectedColor: '#B9A888' }, - { category: 'auditbeat', expectedColor: '#E7664C' }, - { category: 'dockerd', expectedColor: '#B9A888' }, - { category: 'Other', expectedColor: '#CA8EAE' }, - { category: 'node', expectedColor: '#D36086' }, - { category: 'filebeat', expectedColor: '#54B399' }, - { category: 'containerd', expectedColor: '#DA8B45' }, - { category: 'C2 CompilerThre', expectedColor: '#6092C0' }, - { category: '[metrics]>worke', expectedColor: '#D6BF57' }, + { category: 'elasticsearch', expectedColor: '#FFC7DB' }, + { category: 'metricbeat', expectedColor: '#F6726A' }, + { category: 'auditbeat', expectedColor: '#FCD883' }, + { category: 'dockerd', expectedColor: '#F6726A' }, + { category: 'Other', expectedColor: '#EE72A6' }, + { category: 'node', expectedColor: '#61A2FF' }, + { category: 'filebeat', expectedColor: '#16C5C0' }, + { category: 'containerd', expectedColor: '#FFC9C2' }, + { category: 'C2 CompilerThre', expectedColor: '#A6EDEA' }, + { category: '[metrics]>worke', expectedColor: '#FFC7DB' }, ]; const colors = euiPaletteColorBlind({ rotations: Math.ceil(categories.length / 10), diff --git a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/step_details_page/common/network_data/data_formatting.test.ts b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/step_details_page/common/network_data/data_formatting.test.ts index 7313d21dd3ffb..6492f518131c7 100644 --- a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/step_details_page/common/network_data/data_formatting.test.ts +++ b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/step_details_page/common/network_data/data_formatting.test.ts @@ -218,21 +218,21 @@ describe('getConnectingTime', () => { describe('Palettes', () => { it('A colour palette comprising timing and mime type colours is correctly generated', () => { expect(colourPalette).toEqual({ - blocked: '#b0c9e0', - connect: '#c8b8dc', - dns: '#aad9cc', - font: '#d36086', - html: '#6092c0', - image: '#ca8eae', - media: '#d6bf57', - other: '#b9a888', - receive: '#ebdfab', - script: '#da8b45', - send: '#f3b3a6', - ssl: '#e5c7d7', - stylesheet: '#9170b8', - wait: '#e7664c', - xhr: '#54b399', + blocked: '#d3f6f5', + connect: '#dfedff', + dns: '#8be2e0', + font: '#61a2ff', + html: '#a6edea', + image: '#ee72a6', + media: '#ffc7db', + other: '#f6726a', + receive: '#ffe3ed', + script: '#ffc9c2', + send: '#feecc1', + ssl: '#f7b9d3', + stylesheet: '#bfdbff', + wait: '#fcd883', + xhr: '#16c5c0', }); }); }); @@ -250,7 +250,7 @@ describe('getSeriesAndDomain', () => { Array [ Object { "config": Object { - "colour": "#b0c9e0", + "colour": "#d3f6f5", "id": 0, "isHighlighted": true, }, @@ -260,7 +260,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#aad9cc", + "colour": "#8be2e0", "id": 0, "isHighlighted": true, }, @@ -270,7 +270,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#c8b8dc", + "colour": "#dfedff", "id": 0, "isHighlighted": true, }, @@ -280,7 +280,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#e5c7d7", + "colour": "#f7b9d3", "id": 0, "isHighlighted": true, }, @@ -290,7 +290,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#f3b3a6", + "colour": "#feecc1", "id": 0, "isHighlighted": true, }, @@ -300,7 +300,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#e7664c", + "colour": "#fcd883", "id": 0, "isHighlighted": true, }, @@ -310,7 +310,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#9170b8", + "colour": "#bfdbff", "id": 0, "isHighlighted": true, }, @@ -320,7 +320,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#b0c9e0", + "colour": "#d3f6f5", "id": 1, "isHighlighted": true, }, @@ -330,7 +330,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#f3b3a6", + "colour": "#feecc1", "id": 1, "isHighlighted": true, }, @@ -340,7 +340,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#e7664c", + "colour": "#fcd883", "id": 1, "isHighlighted": true, }, @@ -350,7 +350,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#da8b45", + "colour": "#ffc9c2", "id": 1, "isHighlighted": true, }, @@ -368,7 +368,7 @@ describe('getSeriesAndDomain', () => { Array [ Object { "config": Object { - "colour": "#b0c9e0", + "colour": "#d3f6f5", "id": 0, "isHighlighted": true, }, @@ -378,7 +378,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#aad9cc", + "colour": "#8be2e0", "id": 0, "isHighlighted": true, }, @@ -388,7 +388,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#c8b8dc", + "colour": "#dfedff", "id": 0, "isHighlighted": true, }, @@ -398,7 +398,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#e5c7d7", + "colour": "#f7b9d3", "id": 0, "isHighlighted": true, }, @@ -408,7 +408,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#f3b3a6", + "colour": "#feecc1", "id": 0, "isHighlighted": true, }, @@ -418,7 +418,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#e7664c", + "colour": "#fcd883", "id": 0, "isHighlighted": true, }, @@ -428,7 +428,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#9170b8", + "colour": "#bfdbff", "id": 0, "isHighlighted": true, }, @@ -438,7 +438,7 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#da8b45", + "colour": "#ffc9c2", "isHighlighted": true, }, "x": 1, diff --git a/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/common/charts/__snapshots__/donut_chart.test.tsx.snap b/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/common/charts/__snapshots__/donut_chart.test.tsx.snap index a8f1a6bcfc335..d65adda95d21e 100644 --- a/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/common/charts/__snapshots__/donut_chart.test.tsx.snap +++ b/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/common/charts/__snapshots__/donut_chart.test.tsx.snap @@ -697,7 +697,7 @@ exports[`DonutChart component renders a donut chart 1`] = ` class="euiFlexItem emotion-euiFlexItem-growZero" >
@@ -739,7 +739,7 @@ exports[`DonutChart component renders a donut chart 1`] = ` class="euiFlexItem emotion-euiFlexItem-growZero" >
@@ -856,7 +856,7 @@ exports[`DonutChart component renders a green check when all monitors are up 1`] class="euiFlexItem emotion-euiFlexItem-growZero" >
@@ -898,7 +898,7 @@ exports[`DonutChart component renders a green check when all monitors are up 1`] class="euiFlexItem emotion-euiFlexItem-growZero" >
diff --git a/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/monitor/ml/__snapshots__/ml_integerations.test.tsx.snap b/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/monitor/ml/__snapshots__/ml_integerations.test.tsx.snap index 733eda0561f9a..1b065228bd20d 100644 --- a/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/monitor/ml/__snapshots__/ml_integerations.test.tsx.snap +++ b/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/monitor/ml/__snapshots__/ml_integerations.test.tsx.snap @@ -18,7 +18,7 @@ exports[`ML Integrations renders without errors 1`] = ` aria-label="Loading" class="euiLoadingSpinner emotion-euiLoadingSpinner-m" role="progressbar" - style="border-color:#0077CC currentcolor currentcolor currentcolor" + style="border-color:#1750BA currentcolor currentcolor currentcolor" /> { describe('Palettes', () => { it('A colour palette comprising timing and mime type colours is correctly generated', () => { expect(colourPalette).toEqual({ - blocked: '#dcd4c4', - connect: '#da8b45', - dns: '#54b399', - font: '#aa6556', - html: '#f3b3a6', - media: '#d6bf57', - other: '#e7664c', - receive: '#54b399', - script: '#9170b8', - send: '#d36086', - ssl: '#edc5a2', - stylesheet: '#ca8eae', - wait: '#b0c9e0', - xhr: '#e7664c', + blocked: '#fbb9b5', + connect: '#ffc9c2', + dns: '#16c5c0', + font: '#eaae01', + html: '#feecc1', + media: '#ffc7db', + other: '#fcd883', + receive: '#16c5c0', + script: '#bfdbff', + send: '#61a2ff', + ssl: '#ffe4e1', + stylesheet: '#ee72a6', + wait: '#d3f6f5', + xhr: '#fcd883', }); }); }); @@ -222,12 +222,12 @@ describe('getSeriesAndDomain', () => { Array [ Object { "config": Object { - "colour": "#dcd4c4", + "colour": "#fbb9b5", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#dcd4c4", + "colour": "#fbb9b5", "value": "Queued / Blocked: 0.854ms", }, }, @@ -237,12 +237,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#54b399", + "colour": "#16c5c0", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#54b399", + "colour": "#16c5c0", "value": "DNS: 3.560ms", }, }, @@ -252,12 +252,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#da8b45", + "colour": "#ffc9c2", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#da8b45", + "colour": "#ffc9c2", "value": "Connecting: 25.721ms", }, }, @@ -267,12 +267,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#edc5a2", + "colour": "#ffe4e1", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#edc5a2", + "colour": "#ffe4e1", "value": "TLS: 55.387ms", }, }, @@ -282,12 +282,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#d36086", + "colour": "#61a2ff", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#d36086", + "colour": "#61a2ff", "value": "Sending request: 0.360ms", }, }, @@ -297,12 +297,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#b0c9e0", + "colour": "#d3f6f5", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#b0c9e0", + "colour": "#d3f6f5", "value": "Waiting (TTFB): 34.578ms", }, }, @@ -312,12 +312,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#ca8eae", + "colour": "#ee72a6", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#ca8eae", + "colour": "#ee72a6", "value": "Content downloading (CSS): 0.552ms", }, }, @@ -327,12 +327,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#dcd4c4", + "colour": "#fbb9b5", "id": 1, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#dcd4c4", + "colour": "#fbb9b5", "value": "Queued / Blocked: 84.546ms", }, }, @@ -342,12 +342,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#d36086", + "colour": "#61a2ff", "id": 1, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#d36086", + "colour": "#61a2ff", "value": "Sending request: 0.239ms", }, }, @@ -357,12 +357,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#b0c9e0", + "colour": "#d3f6f5", "id": 1, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#b0c9e0", + "colour": "#d3f6f5", "value": "Waiting (TTFB): 52.561ms", }, }, @@ -372,12 +372,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#9170b8", + "colour": "#bfdbff", "id": 1, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#9170b8", + "colour": "#bfdbff", "value": "Content downloading (JS): 3.068ms", }, }, @@ -395,12 +395,12 @@ describe('getSeriesAndDomain', () => { Array [ Object { "config": Object { - "colour": "#dcd4c4", + "colour": "#fbb9b5", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#dcd4c4", + "colour": "#fbb9b5", "value": "Queued / Blocked: 0.854ms", }, }, @@ -410,12 +410,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#54b399", + "colour": "#16c5c0", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#54b399", + "colour": "#16c5c0", "value": "DNS: 3.560ms", }, }, @@ -425,12 +425,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#da8b45", + "colour": "#ffc9c2", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#da8b45", + "colour": "#ffc9c2", "value": "Connecting: 25.721ms", }, }, @@ -440,12 +440,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#edc5a2", + "colour": "#ffe4e1", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#edc5a2", + "colour": "#ffe4e1", "value": "TLS: 55.387ms", }, }, @@ -455,12 +455,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#d36086", + "colour": "#61a2ff", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#d36086", + "colour": "#61a2ff", "value": "Sending request: 0.360ms", }, }, @@ -470,12 +470,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#b0c9e0", + "colour": "#d3f6f5", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#b0c9e0", + "colour": "#d3f6f5", "value": "Waiting (TTFB): 34.578ms", }, }, @@ -485,12 +485,12 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#ca8eae", + "colour": "#ee72a6", "id": 0, "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#ca8eae", + "colour": "#ee72a6", "value": "Content downloading (CSS): 0.552ms", }, }, @@ -500,11 +500,11 @@ describe('getSeriesAndDomain', () => { }, Object { "config": Object { - "colour": "#9170b8", + "colour": "#bfdbff", "isHighlighted": true, "showTooltip": true, "tooltipProps": Object { - "colour": "#9170b8", + "colour": "#bfdbff", "value": "Content downloading (JS): 2.793ms", }, }, diff --git a/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/synthetics/console_event.test.tsx b/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/synthetics/console_event.test.tsx index 2db3b2ec004fc..2012cc0bbc076 100644 --- a/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/synthetics/console_event.test.tsx +++ b/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/components/synthetics/console_event.test.tsx @@ -46,7 +46,7 @@ describe('ConsoleEvent component', () => { grow={false} style={ Object { - "color": "#BD271E", + "color": "#C61E25", } } > diff --git a/x-pack/solutions/security/packages/kbn-securitysolution-exception-list-components/src/exception_item_card/conditions/entry_content/__snapshots__/entry_content.test.tsx.snap b/x-pack/solutions/security/packages/kbn-securitysolution-exception-list-components/src/exception_item_card/conditions/entry_content/__snapshots__/entry_content.test.tsx.snap index f814be75fa63e..fa4757c76f1a1 100644 --- a/x-pack/solutions/security/packages/kbn-securitysolution-exception-list-components/src/exception_item_card/conditions/entry_content/__snapshots__/entry_content.test.tsx.snap +++ b/x-pack/solutions/security/packages/kbn-securitysolution-exception-list-components/src/exception_item_card/conditions/entry_content/__snapshots__/entry_content.test.tsx.snap @@ -13,7 +13,7 @@ exports[`EntryContent should render a nested value 1`] = ` data-test-subj="EntryContentNestedEntry" > { const expectedColorPalette = getRiskSeverityColors(euiTheme); it('returns the expected fill color', () => { - expect(getFillColor({ riskScore: 50, colorPalette })).toEqual('#F1D86F'); + expect(getFillColor({ riskScore: 50, colorPalette })).toEqual('#D6BF57'); }); it('returns the expected fill color when risk score is zero', () => { @@ -36,11 +36,11 @@ describe('getFillColor', () => { }); it('returns the expected fill color when risk score is 100', () => { - expect(getFillColor({ riskScore: 100, colorPalette })).toEqual('#bd271e'); + expect(getFillColor({ riskScore: 100, colorPalette })).toEqual('#E7664C'); }); it('returns the expected fill color when risk score is greater than 100', () => { - expect(getFillColor({ riskScore: 101, colorPalette })).toEqual('#bd271e'); + expect(getFillColor({ riskScore: 101, colorPalette })).toEqual('#E7664C'); }); it('returns the expected fill color when risk score is greater than RISK_SCORE_CRITICAL', () => { @@ -90,23 +90,23 @@ describe('getFillColor', () => { const colorPalette = euiPaletteWarm(RISK_SCORE_STEPS); it('returns the expected fill color', () => { - expect(getFillColor({ riskScore: 50, colorPalette })).toEqual('#efb685'); + expect(getFillColor({ riskScore: 50, colorPalette })).toEqual('#ffaea5'); }); it('returns the expected fill color when risk score is zero', () => { - expect(getFillColor({ riskScore: 0, colorPalette })).toEqual('#fbfada'); + expect(getFillColor({ riskScore: 0, colorPalette })).toEqual('#ffe7e4'); }); it('returns the expected fill color when risk score is less than zero', () => { - expect(getFillColor({ riskScore: -1, colorPalette })).toEqual('#fbfada'); + expect(getFillColor({ riskScore: -1, colorPalette })).toEqual('#ffe7e4'); }); it('returns the expected fill color when risk score is 100', () => { - expect(getFillColor({ riskScore: 100, colorPalette })).toEqual('#e7664c'); + expect(getFillColor({ riskScore: 100, colorPalette })).toEqual('#f6726a'); }); it('returns the expected fill color when risk score is greater than 100', () => { - expect(getFillColor({ riskScore: 101, colorPalette })).toEqual('#e7664c'); + expect(getFillColor({ riskScore: 101, colorPalette })).toEqual('#f6726a'); }); }); }); diff --git a/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/layers/index.test.ts b/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/layers/index.test.ts index 14ac924287d43..c3b675b6d1bc1 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/layers/index.test.ts +++ b/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/layers/index.test.ts @@ -73,7 +73,7 @@ describe('layers', () => { const dataName = 'mimikatz process started'; expect( getLayersOneDimension({ colorPalette, maxRiskSubAggregations })[0].shape.fillColor(dataName) - ).toEqual('#bd271e'); + ).toEqual('#E7664C'); }); it('return the default fill color when dataName is not found in the maxRiskSubAggregations', () => { @@ -169,7 +169,7 @@ describe('layers', () => { { index: 0, value: 'Host-k8iyfzraq9' }, ], }) - ).toEqual('#bd271e'); + ).toEqual('#E7664C'); }); it('returns the default fillColor for layer 1 when the group from path is not found', () => { diff --git a/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/legend/get_flattened_legend_items.test.ts b/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/legend/get_flattened_legend_items.test.ts index 107018011b91b..da50bb6e006f6 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/legend/get_flattened_legend_items.test.ts +++ b/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/legend/get_flattened_legend_items.test.ts @@ -20,6 +20,7 @@ describe('getFlattenedLegendItems', () => { it('returns the expected legend items', () => { const expected: Array> = [ { + color: undefined, count: 34, field: 'kibana.alert.rule.name', value: 'matches everything', @@ -49,93 +50,97 @@ describe('getFlattenedLegendItems', () => { value: 'Host-r4y6xi92ob', }, { + color: undefined, count: 28, field: 'kibana.alert.rule.name', value: 'EQL process sequence', }, { - color: '#FF7E62', + color: '#DA8B45', count: 10, field: 'host.name', value: 'Host-k8iyfzraq9', }, { - color: '#FF7E62', + color: '#DA8B45', count: 7, field: 'host.name', value: 'Host-ao1a4wu7vn', }, { - color: '#FF7E62', + color: '#DA8B45', count: 5, field: 'host.name', value: 'Host-3fbljiq8rj', }, { - color: '#FF7E62', + color: '#DA8B45', count: 3, field: 'host.name', value: 'Host-r4y6xi92ob', }, { + color: undefined, count: 19, field: 'kibana.alert.rule.name', value: 'Endpoint Security', }, { - color: '#F1D86F', + color: '#D6BF57', count: 11, field: 'host.name', value: 'Host-ao1a4wu7vn', }, { - color: '#F1D86F', + color: '#D6BF57', count: 6, field: 'host.name', value: 'Host-3fbljiq8rj', }, { - color: '#F1D86F', + color: '#D6BF57', count: 1, field: 'host.name', value: 'Host-k8iyfzraq9', }, { - color: '#F1D86F', + color: '#D6BF57', count: 1, field: 'host.name', value: 'Host-r4y6xi92ob', }, { + color: undefined, count: 5, field: 'kibana.alert.rule.name', value: 'mimikatz process started', }, { - color: '#bd271e', + color: '#E7664C', count: 3, field: 'host.name', value: 'Host-k8iyfzraq9', }, { - color: '#bd271e', + color: '#E7664C', count: 1, field: 'host.name', value: 'Host-3fbljiq8rj', }, { - color: '#bd271e', + color: '#E7664C', count: 1, field: 'host.name', value: 'Host-r4y6xi92ob', }, { + color: undefined, count: 1, field: 'kibana.alert.rule.name', value: 'Threshold rule', }, { - color: '#bd271e', + color: '#E7664C', count: 1, field: 'host.name', value: 'Host-r4y6xi92ob', diff --git a/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/legend/index.test.ts b/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/legend/index.test.ts index 1504ff5f6e7da..d7f0276afab6f 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/legend/index.test.ts +++ b/x-pack/solutions/security/plugins/security_solution/public/detections/components/alerts_kpis/alerts_treemap_panel/alerts_treemap/lib/legend/index.test.ts @@ -223,28 +223,28 @@ describe('legend', () => { scopeId: TableId.alertsOnAlertsPage, }, { - color: '#FF7E62', + color: '#DA8B45', count: 28, field: 'kibana.alert.rule.name', value: 'EQL process sequence', scopeId: TableId.alertsOnAlertsPage, }, { - color: '#F1D86F', + color: '#D6BF57', count: 19, field: 'kibana.alert.rule.name', value: 'Endpoint Security', scopeId: TableId.alertsOnAlertsPage, }, { - color: '#bd271e', + color: '#E7664C', count: 5, field: 'kibana.alert.rule.name', value: 'mimikatz process started', scopeId: TableId.alertsOnAlertsPage, }, { - color: '#bd271e', + color: '#E7664C', count: 1, field: 'kibana.alert.rule.name', value: 'Threshold rule', diff --git a/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/arrows/__snapshots__/index.test.tsx.snap b/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/arrows/__snapshots__/index.test.tsx.snap index 848c0ec895cda..49e00e866c68f 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/arrows/__snapshots__/index.test.tsx.snap +++ b/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/arrows/__snapshots__/index.test.tsx.snap @@ -10,15 +10,15 @@ exports[`arrows ArrowBody renders correctly against snapshot 1`] = ` "compat": true, "insert": [Function], "inserted": Object { - "4ieeuw-euiColorMode-LIGHT": true, - "4rtwwc": true, + "10uvw04": true, + "vzhe8z-euiColorMode-LIGHT": true, }, "key": "css", "nonce": undefined, "registered": Object { - "css-4ieeuw-euiColorMode-LIGHT": " + "css-vzhe8z-euiColorMode-LIGHT": " label: euiColorMode-LIGHT; - color: #343741; + color: #1D2A3E; ", }, "sheet": StyleSheet { @@ -199,7 +199,7 @@ exports[`arrows ArrowBody renders correctly against snapshot 1`] = ` data-s="" > - html{scrollbar-width:auto;scrollbar-color:rgba(105,112,125,0.5) #f0f1f4;font-family:'Inter',BlinkMacSystemFont,Helvetica,Arial,sans-serif;font-size:0.875rem;line-height:1.1428571428571428;font-weight:400;-webkit-text-size-adjust:100%;text-size-adjust:100%;font-kerning:normal;block-size:100%;background-color:#f7f8fc;color:#343741;} + html{scrollbar-width:auto;scrollbar-color:rgba(90,109,140,0.5) #ECF1F9;font-family:'Inter',BlinkMacSystemFont,Helvetica,Arial,sans-serif;font-size:0.875rem;line-height:1.1428571428571428;font-weight:400;-webkit-text-size-adjust:100%;text-size-adjust:100%;font-kerning:normal;block-size:100%;background-color:#F6F9FC;color:#1D2A3E;} , , ], }, @@ -1070,10 +1070,10 @@ exports[`arrows ArrowBody renders correctly against snapshot 1`] = ` serialized={ Object { "map": undefined, - "name": "4rtwwc", + "name": "10uvw04", "next": undefined, "styles": " - background-color: #D3DAE6; + background-color: #CAD3E2; height: 3px; width: 25px; ", @@ -1082,7 +1082,7 @@ exports[`arrows ArrowBody renders correctly against snapshot 1`] = ` } /> diff --git a/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/embeddables/__mocks__/mock.ts b/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/embeddables/__mocks__/mock.ts index 02889acb04866..ed7970d95e237 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/embeddables/__mocks__/mock.ts +++ b/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/embeddables/__mocks__/mock.ts @@ -50,7 +50,7 @@ export const mockSourceLayer = { properties: { fillColor: { type: 'STATIC', - options: { color: '#6092C0' }, + options: { color: '#A6EDEA' }, }, lineColor: { type: 'STATIC', @@ -108,7 +108,7 @@ export const mockDestinationLayer = { properties: { fillColor: { type: 'STATIC', - options: { color: '#D36086' }, + options: { color: '#61A2FF' }, }, lineColor: { type: 'STATIC', @@ -164,7 +164,7 @@ export const mockClientLayer = { properties: { fillColor: { type: 'STATIC', - options: { color: '#6092C0' }, + options: { color: '#A6EDEA' }, }, lineColor: { type: 'STATIC', @@ -227,7 +227,7 @@ export const mockServerLayer = { properties: { fillColor: { type: 'STATIC', - options: { color: '#D36086' }, + options: { color: '#61A2FF' }, }, lineColor: { type: 'STATIC', @@ -286,7 +286,7 @@ export const mockLineLayer = { }, lineColor: { type: 'STATIC', - options: { color: '#6092C0' }, + options: { color: '#A6EDEA' }, }, lineWidth: { type: 'DYNAMIC', @@ -351,7 +351,7 @@ export const mockClientServerLineLayer = { }, lineColor: { type: 'STATIC', - options: { color: '#6092C0' }, + options: { color: '#A6EDEA' }, }, lineWidth: { type: 'DYNAMIC', diff --git a/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/shared/components/alert_count_insight.test.tsx b/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/shared/components/alert_count_insight.test.tsx index e00d0ebd31b4f..32cada93fb791 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/shared/components/alert_count_insight.test.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/shared/components/alert_count_insight.test.tsx @@ -173,10 +173,10 @@ describe('getFormattedAlertStats', () => { it('should return alert stats', () => { const alertStats = getFormattedAlertStats(mockAlertData, euiTheme); expect(alertStats).toEqual([ - { key: 'High', count: 2, color: '#FF7E62' }, + { key: 'High', count: 2, color: '#DA8B45' }, { key: 'Low', count: 2, color: '#54B399' }, - { key: 'Medium', count: 2, color: '#F1D86F' }, - { key: 'Critical', count: 2, color: '#bd271e' }, + { key: 'Medium', count: 2, color: '#D6BF57' }, + { key: 'Critical', count: 2, color: '#E7664C' }, ]); }); diff --git a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/netflow/__snapshots__/index.test.tsx.snap b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/netflow/__snapshots__/index.test.tsx.snap index 2b9b8e4675ced..705b25d3b147e 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/netflow/__snapshots__/index.test.tsx.snap +++ b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/netflow/__snapshots__/index.test.tsx.snap @@ -1262,7 +1262,7 @@ tr:hover .c3:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" >
@@ -1325,7 +1325,7 @@ tr:hover .c3:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" >
@@ -1383,7 +1383,7 @@ tr:hover .c3:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" >
@@ -1417,7 +1417,7 @@ tr:hover .c3:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" >
@@ -1492,7 +1492,7 @@ tr:hover .c3:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" > @@ -1550,7 +1550,7 @@ tr:hover .c3:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" > diff --git a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/body/renderers/netflow/__snapshots__/netflow_row_renderer.test.tsx.snap b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/body/renderers/netflow/__snapshots__/netflow_row_renderer.test.tsx.snap index 6b6501e1e6857..d84ff6ece24b2 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/body/renderers/netflow/__snapshots__/netflow_row_renderer.test.tsx.snap +++ b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/body/renderers/netflow/__snapshots__/netflow_row_renderer.test.tsx.snap @@ -1517,7 +1517,7 @@ tr:hover .c5:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" > @@ -1590,7 +1590,7 @@ tr:hover .c5:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" > @@ -1658,7 +1658,7 @@ tr:hover .c5:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" > @@ -1692,7 +1692,7 @@ tr:hover .c5:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" > @@ -1777,7 +1777,7 @@ tr:hover .c5:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" > @@ -1845,7 +1845,7 @@ tr:hover .c5:focus::before { class="euiFlexItem emotion-euiFlexItem-growZero" > diff --git a/x-pack/test/functional/apps/lens/group2/table.ts b/x-pack/test/functional/apps/lens/group2/table.ts index 45833cc94d91e..386efcd520ca2 100644 --- a/x-pack/test/functional/apps/lens/group2/table.ts +++ b/x-pack/test/functional/apps/lens/group2/table.ts @@ -160,7 +160,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await lens.changePaletteTo('temperature'); await lens.waitForVisualization(); const styleObj = await lens.getDatatableCellStyle(0, 2); - expect(styleObj['background-color']).to.be('rgb(246, 249, 252)'); + expect(styleObj['background-color']).to.be('rgb(232, 241, 255)'); }); it('should keep the coloring consistent when changing mode', async () => { @@ -169,7 +169,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await lens.waitForVisualization(); // check that all remained the same const styleObj = await lens.getDatatableCellStyle(0, 2); - expect(styleObj['background-color']).to.be('rgb(246, 249, 252)'); + expect(styleObj['background-color']).to.be('rgb(232, 241, 255)'); }); it('should keep the coloring consistent when moving to custom palette from default', async () => { @@ -177,7 +177,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await lens.waitForVisualization(); // check that all remained the same const styleObj = await lens.getDatatableCellStyle(0, 2); - expect(styleObj['background-color']).to.be('rgb(246, 249, 252)'); + expect(styleObj['background-color']).to.be('rgb(232, 241, 255)'); }); it('tweak the color stops numeric value', async () => { @@ -202,7 +202,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await testSubjects.click('lnsPalettePanel_dynamicColoring_reverseColors'); await lens.waitForVisualization(); const styleObj = await lens.getDatatableCellStyle(1, 1); - expect(styleObj['background-color']).to.be('rgb(200, 222, 255)'); + expect(styleObj['background-color']).to.be('rgb(168, 202, 255)'); // should also set text color when in cell mode expect(styleObj.color).to.be('rgb(0, 0, 0)'); await lens.closePalettePanel(); diff --git a/x-pack/test/functional/apps/lens/group4/chart_data.ts b/x-pack/test/functional/apps/lens/group4/chart_data.ts index 197cf1b2c43f8..9123e0a49888e 100644 --- a/x-pack/test/functional/apps/lens/group4/chart_data.ts +++ b/x-pack/test/functional/apps/lens/group4/chart_data.ts @@ -115,9 +115,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { // assert legend expect(debugState?.legend!.items).to.eql([ { key: '5,722.775 - 8,529.22', name: '5,722.775 - 8,529.22', color: '#61a2ff' }, - { key: '8,529.22 - 11,335.665', name: '8,529.22 - 11,335.665', color: '#c8deff' }, - { key: '11,335.665 - 14,142.11', name: '11,335.665 - 14,142.11', color: '#f6f9fc' }, - { key: '14,142.11 - 16,948.555', name: '14,142.11 - 16,948.555', color: '#ffccc6' }, + { key: '8,529.22 - 11,335.665', name: '8,529.22 - 11,335.665', color: '#a8caff' }, + { key: '11,335.665 - 14,142.11', name: '11,335.665 - 14,142.11', color: '#e8f1ff' }, + { key: '14,142.11 - 16,948.555', name: '14,142.11 - 16,948.555', color: '#ffafa6' }, { key: '≥ 16,948.555', name: '≥ 16,948.555', color: '#f6726a' }, ]); }); diff --git a/x-pack/test/functional/apps/lens/group5/heatmap.ts b/x-pack/test/functional/apps/lens/group5/heatmap.ts index 574f3711eb0ee..635d283075aae 100644 --- a/x-pack/test/functional/apps/lens/group5/heatmap.ts +++ b/x-pack/test/functional/apps/lens/group5/heatmap.ts @@ -56,9 +56,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { // assert legend expect(debugState?.legend!.items).to.eql([ { key: '5,722.775 - 8,529.22', name: '5,722.775 - 8,529.22', color: '#61a2ff' }, - { key: '8,529.22 - 11,335.665', name: '8,529.22 - 11,335.665', color: '#c8deff' }, - { key: '11,335.665 - 14,142.11', name: '11,335.665 - 14,142.11', color: '#f6f9fc' }, - { key: '14,142.11 - 16,948.555', name: '14,142.11 - 16,948.555', color: '#ffccc6' }, + { key: '8,529.22 - 11,335.665', name: '8,529.22 - 11,335.665', color: '#a8caff' }, + { key: '11,335.665 - 14,142.11', name: '11,335.665 - 14,142.11', color: '#e8f1ff' }, + { key: '14,142.11 - 16,948.555', name: '14,142.11 - 16,948.555', color: '#ffafa6' }, { key: '≥ 16,948.555', name: '≥ 16,948.555', color: '#f6726a' }, ]); @@ -71,19 +71,16 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await lens.openPalettePanel(); await common.sleep(1000); await retry.try(async () => { - await testSubjects.setValue('lnsPalettePanel_dynamicColoring_range_value_0', '10', { - clearWithKeyboard: true, - typeCharByChar: true, - }); + await testSubjects.setValue('lnsPalettePanel_dynamicColoring_range_value_0', '10'); }); const debugState = await lens.getCurrentChartDebugState('heatmapChart'); // assert legend has changed expect(debugState?.legend!.items).to.eql([ { key: '7,125.997 - 8,529.22', name: '7,125.997 - 8,529.22', color: '#61a2ff' }, - { key: '8,529.22 - 11,335.665', name: '8,529.22 - 11,335.665', color: '#c8deff' }, - { key: '11,335.665 - 14,142.11', name: '11,335.665 - 14,142.11', color: '#f6f9fc' }, - { key: '14,142.11 - 16,948.555', name: '14,142.11 - 16,948.555', color: '#ffccc6' }, + { key: '8,529.22 - 11,335.665', name: '8,529.22 - 11,335.665', color: '#a8caff' }, + { key: '11,335.665 - 14,142.11', name: '11,335.665 - 14,142.11', color: '#e8f1ff' }, + { key: '14,142.11 - 16,948.555', name: '14,142.11 - 16,948.555', color: '#ffafa6' }, { key: '≥ 16,948.555', name: '≥ 16,948.555', color: '#f6726a' }, ]); }); @@ -95,9 +92,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { // assert legend has changed expect(debugState?.legend!.items).to.eql([ { key: '7,125.99 - 8,529.2', name: '7,125.99 - 8,529.2', color: '#61a2ff' }, - { key: '8,529.2 - 11,335.66', name: '8,529.2 - 11,335.66', color: '#c8deff' }, - { key: '11,335.66 - 14,142.1', name: '11,335.66 - 14,142.1', color: '#f6f9fc' }, - { key: '14,142.1 - 16,948.55', name: '14,142.1 - 16,948.55', color: '#ffccc6' }, + { key: '8,529.2 - 11,335.66', name: '8,529.2 - 11,335.66', color: '#a8caff' }, + { key: '11,335.66 - 14,142.1', name: '11,335.66 - 14,142.1', color: '#e8f1ff' }, + { key: '14,142.1 - 16,948.55', name: '14,142.1 - 16,948.55', color: '#ffafa6' }, { color: '#f6726a', key: '≥ 16,948.55', @@ -107,18 +104,16 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }); it('should reflect stop changes when in number to the chart', async () => { - await testSubjects.setValue('lnsPalettePanel_dynamicColoring_range_value_0', '0', { - clearWithKeyboard: true, - }); + await testSubjects.setValue('lnsPalettePanel_dynamicColoring_range_value_0', '0'); const debugState = await lens.getCurrentChartDebugState('heatmapChart'); // assert legend has changed expect(debugState?.legend!.items).to.eql([ { key: '0 - 8,529.2', name: '0 - 8,529.2', color: '#61a2ff' }, - { key: '8,529.2 - 11,335.66', name: '8,529.2 - 11,335.66', color: '#c8deff' }, - { key: '11,335.66 - 14,142.1', name: '11,335.66 - 14,142.1', color: '#f6f9fc' }, - { key: '14,142.1 - 16,948.55', name: '14,142.1 - 16,948.55', color: '#ffccc6' }, + { key: '8,529.2 - 11,335.66', name: '8,529.2 - 11,335.66', color: '#a8caff' }, + { key: '11,335.66 - 14,142.1', name: '11,335.66 - 14,142.1', color: '#e8f1ff' }, + { key: '14,142.1 - 16,948.55', name: '14,142.1 - 16,948.55', color: '#ffafa6' }, { key: '≥ 16,948.55', name: '≥ 16,948.55', color: '#f6726a' }, ]); }); @@ -126,17 +121,15 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { it('should reflect the apply stop value without rounding', async () => { // target item is 5722.774804505345 // so set a value slightly lower which can be rounded - await testSubjects.setValue('lnsPalettePanel_dynamicColoring_range_value_0', '5722.7747', { - clearWithKeyboard: true, - }); + await testSubjects.setValue('lnsPalettePanel_dynamicColoring_range_value_0', '5722.7747'); const debugState = await lens.getCurrentChartDebugState('heatmapChart'); // assert legend has a rounded value expect(debugState?.legend!.items).to.eql([ { key: '5,722.775 - 8,529.2', name: '5,722.775 - 8,529.2', color: '#61a2ff' }, - { key: '8,529.2 - 11,335.66', name: '8,529.2 - 11,335.66', color: '#c8deff' }, - { key: '11,335.66 - 14,142.1', name: '11,335.66 - 14,142.1', color: '#f6f9fc' }, - { key: '14,142.1 - 16,948.55', name: '14,142.1 - 16,948.55', color: '#ffccc6' }, + { key: '8,529.2 - 11,335.66', name: '8,529.2 - 11,335.66', color: '#a8caff' }, + { key: '11,335.66 - 14,142.1', name: '11,335.66 - 14,142.1', color: '#e8f1ff' }, + { key: '14,142.1 - 16,948.55', name: '14,142.1 - 16,948.55', color: '#ffafa6' }, { key: '≥ 16,948.55', name: '≥ 16,948.55', color: '#f6726a' }, ]); // assert the cell has the correct coloring despite the legend rounding diff --git a/x-pack/test/functional/apps/maps/group4/mapbox_styles.js b/x-pack/test/functional/apps/maps/group4/mapbox_styles.js index e1bce36d2be89..2d9de1095fb5e 100644 --- a/x-pack/test/functional/apps/maps/group4/mapbox_styles.js +++ b/x-pack/test/functional/apps/maps/group4/mapbox_styles.js @@ -83,19 +83,19 @@ export default function ({ getPageObjects, getService }) { 2, 'rgba(0,0,0,0)', 3, - '#d8e7ff', + '#e4eefd', 4.125, - '#c8ddff', + '#d3e3fe', 5.25, - '#b8d4ff', + '#c1d8fe', 6.375, - '#a8caff', + '#afceff', 7.5, - '#98c0ff', + '#9dc3ff', 8.625, - '#87b6ff', + '#8bb8ff', 9.75, - '#75acff', + '#77adff', 10.875, '#61a2ff', ], @@ -162,19 +162,19 @@ export default function ({ getPageObjects, getService }) { 2, 'rgba(0,0,0,0)', 3, - '#d8e7ff', + '#e4eefd', 4.125, - '#c8ddff', + '#d3e3fe', 5.25, - '#b8d4ff', + '#c1d8fe', 6.375, - '#a8caff', + '#afceff', 7.5, - '#98c0ff', + '#9dc3ff', 8.625, - '#87b6ff', + '#8bb8ff', 9.75, - '#75acff', + '#77adff', 10.875, '#61a2ff', ], diff --git a/x-pack/test/functional/apps/maps/group4/mvt_geotile_grid.js b/x-pack/test/functional/apps/maps/group4/mvt_geotile_grid.js index 8b292ba7ce3d4..58787f3d059cd 100644 --- a/x-pack/test/functional/apps/maps/group4/mvt_geotile_grid.js +++ b/x-pack/test/functional/apps/maps/group4/mvt_geotile_grid.js @@ -78,19 +78,19 @@ export default function ({ getPageObjects, getService }) { 1622, 'rgba(0,0,0,0)', 1623, - '#d8e7ff', + '#e4eefd', 2643.875, - '#c8ddff', + '#d3e3fe', 3664.75, - '#b8d4ff', + '#c1d8fe', 4685.625, - '#a8caff', + '#afceff', 5706.5, - '#98c0ff', + '#9dc3ff', 6727.375, - '#87b6ff', + '#8bb8ff', 7748.25, - '#75acff', + '#77adff', 8769.125, '#61a2ff', ], @@ -123,19 +123,19 @@ export default function ({ getPageObjects, getService }) { 0, 'rgba(0,0,0,0)', 1, - '#d8e7ff', + '#e4eefd', 1.875, - '#c8ddff', + '#d3e3fe', 2.75, - '#b8d4ff', + '#c1d8fe', 3.625, - '#a8caff', + '#afceff', 4.5, - '#98c0ff', + '#9dc3ff', 5.375, - '#87b6ff', + '#8bb8ff', 6.25, - '#75acff', + '#77adff', 7.125, '#61a2ff', ], @@ -168,19 +168,19 @@ export default function ({ getPageObjects, getService }) { -1, 'rgba(0,0,0,0)', 0, - '#d8e7ff', + '#e4eefd', 1867.625, - '#c8ddff', + '#d3e3fe', 3735.25, - '#b8d4ff', + '#c1d8fe', 5602.875, - '#a8caff', + '#afceff', 7470.5, - '#98c0ff', + '#9dc3ff', 9338.125, - '#87b6ff', + '#8bb8ff', 11205.75, - '#75acff', + '#77adff', 13073.375, '#61a2ff', ], diff --git a/x-pack/test/functional/apps/maps/group4/mvt_scaling.js b/x-pack/test/functional/apps/maps/group4/mvt_scaling.js index fd7d0204feed0..03d6caf5ebdb5 100644 --- a/x-pack/test/functional/apps/maps/group4/mvt_scaling.js +++ b/x-pack/test/functional/apps/maps/group4/mvt_scaling.js @@ -85,19 +85,19 @@ export default function ({ getPageObjects, getService }) { 0.3819660112501051, 'rgba(0,0,0,0)', 1.381966011250105, - '#d8e7ff', + '#e4eefd', 1.6614745084375788, - '#c8ddff', + '#d3e3fe', 1.9409830056250525, - '#b8d4ff', + '#c1d8fe', 2.2204915028125263, - '#a8caff', + '#afceff', 2.5, - '#98c0ff', + '#9dc3ff', 2.7795084971874737, - '#87b6ff', + '#8bb8ff', 3.0590169943749475, - '#75acff', + '#77adff', 3.338525491562421, '#61a2ff', ], @@ -124,7 +124,7 @@ export default function ({ getPageObjects, getService }) { ], layout: { visibility: 'visible' }, paint: { - 'line-color': '#98c0ff', + 'line-color': '#9dc3ff', 'line-width': 3, 'line-dasharray': [2, 1], 'line-opacity': 1, diff --git a/x-pack/test/security_functional/screenshots/baseline/reset_session_page.png b/x-pack/test/security_functional/screenshots/baseline/reset_session_page.png index 8ef70d4bf357a..cdef4e39c8854 100644 Binary files a/x-pack/test/security_functional/screenshots/baseline/reset_session_page.png and b/x-pack/test/security_functional/screenshots/baseline/reset_session_page.png differ diff --git a/yarn.lock b/yarn.lock index 3b8c258c71f32..e8e1693957e24 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2321,10 +2321,10 @@ resolved "https://registry.yarnpkg.com/@elastic/eslint-plugin-eui/-/eslint-plugin-eui-0.0.2.tgz#56b9ef03984a05cc213772ae3713ea8ef47b0314" integrity sha512-IoxURM5zraoQ7C8f+mJb9HYSENiZGgRVcG4tLQxE61yHNNRDXtGDWTZh8N1KIHcsqN1CEPETjuzBXkJYF/fDiQ== -"@elastic/eui-theme-borealis@0.0.9": - version "0.0.9" - resolved "https://registry.yarnpkg.com/@elastic/eui-theme-borealis/-/eui-theme-borealis-0.0.9.tgz#6aea79b15091e84235555236726f1bb1fc0da2bf" - integrity sha512-56tzAX5Go4RuSD1fuKvHiLPumGll1NYK1dG4E9OPe7xfLXBGdLjhdXabkJfUlc5OVX2xK9RI3TOmUiimqm8SJg== +"@elastic/eui-theme-borealis@0.0.10": + version "0.0.10" + resolved "https://registry.yarnpkg.com/@elastic/eui-theme-borealis/-/eui-theme-borealis-0.0.10.tgz#ebc317c135220b2f17529fe4e7b235a66614006e" + integrity sha512-9VFpUfxtHLjChd7Q1HZry71+o1vEOaUnCSOJiJT6zi/sbt+J114k+GCukOChScK6xaX8ypYD4/I0olCBwZV5Vw== "@elastic/eui-theme-common@0.0.9": version "0.0.9" @@ -2334,10 +2334,10 @@ "@types/lodash" "^4.14.202" lodash "^4.17.21" -"@elastic/eui@99.1.0-borealis.0": - version "99.1.0-borealis.0" - resolved "https://registry.yarnpkg.com/@elastic/eui/-/eui-99.1.0-borealis.0.tgz#b5b34c749ac56b8ecd290fb715f56ba2e5f255ab" - integrity sha512-akDYl5ScBNwBm1sIsPHQVPq5rJpkgjg5Qtb2F1T36eWFp9ux5EVAqoFylsLBIaUnXiwVDkDAVH604IOrR46COg== +"@elastic/eui@99.2.0-borealis.0": + version "99.2.0-borealis.0" + resolved "https://registry.yarnpkg.com/@elastic/eui/-/eui-99.2.0-borealis.0.tgz#44b22bd4b2177bdf860e7d5ca5f00cea123f044a" + integrity sha512-cjd7+awwWoBzdqFju0v3Q6Pl/GB1Y9C+3j9nNj3u5JgK62E2z9AkQvRdL6Tv8jusFwoSR9OhC3H0bmYOKLx8mg== dependencies: "@elastic/eui-theme-common" "0.0.9" "@hello-pangea/dnd" "^16.6.0"