Skip to content

Commit

Permalink
Merge branch 'main' into redirect-integeration
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzad31 authored Nov 29, 2022
2 parents 626bf63 + 20e6a85 commit 9c921f4
Show file tree
Hide file tree
Showing 295 changed files with 1,851 additions and 1,163 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const searchGuideState: GuideState = {
status: 'not_started',
steps: [
{ id: 'add_data', status: 'complete' },
{ id: 'browse_docs', status: 'in_progress' },
{ id: 'search_experience', status: 'in_progress' },
],
isActive: true,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ export const GuideCardFooter = ({ guides, useCase, activateGuide }: GuideCardFoo
max={numberSteps}
size="s"
label={completedLabel}
labelProps={{
css: progressBarLabelCss,
}}
/>
<EuiSpacer size="l" />
{viewGuideButton}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ import { css } from '@emotion/react';
* See https://github.com/elastic/eui/issues/6241 for more details
*/
export const getGuidePanelStyles = (euiTheme: EuiThemeComputed) => ({
setupButton: css`
margin-right: ${euiTheme.size.m};
`,
flyoutOverrides: {
flyoutContainer: css`
top: 55px !important;
bottom: 25px !important;
right: 128px;
right: calc(${euiTheme.size.s} + 128px); // Accounting for margin on button
border-radius: 6px;
inline-size: 480px !important;
height: auto;
Expand Down
14 changes: 8 additions & 6 deletions src/plugins/guided_onboarding/public/components/guide_panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,14 @@ export const GuidePanel = ({ api, application, notifications }: GuidePanelProps)

return (
<>
<GuideButton
pluginState={pluginState}
toggleGuidePanel={toggleGuide}
isGuidePanelOpen={isGuideOpen}
navigateToLandingPage={navigateToLandingPage}
/>
<div css={styles.setupButton}>
<GuideButton
pluginState={pluginState}
toggleGuidePanel={toggleGuide}
isGuidePanelOpen={isGuideOpen}
navigateToLandingPage={navigateToLandingPage}
/>
</div>

{isGuideOpen && (
<EuiFlyout
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export const SpikeAnalysisGroupsTable: FC<SpikeAnalysisTableProps> = ({
}
)
}
iconType={itemIdToExpandedRowMap[item.id] ? 'arrowUp' : 'arrowDown'}
iconType={itemIdToExpandedRowMap[item.id] ? 'arrowDown' : 'arrowRight'}
/>
),
valign: 'top',
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import { push, replace } from '../../shared/links/url_helpers';
import { SortFunction } from '../../shared/managed_table';
import { useWaterfallFetcher } from '../transaction_details/use_waterfall_fetcher';
import { WaterfallWithSummary } from '../transaction_details/waterfall_with_summary';
import { DependencyOperationDetailTraceList } from './dependency_operation_detail_trace_list';
import { DependencyOperationDistributionChart } from './dependency_operation_distribution_chart';
import { maybeRedirectToAvailableSpanSample } from './maybe_redirect_to_available_span_sample';

Expand Down Expand Up @@ -167,14 +166,6 @@ export function DependencyOperationDetailView() {
<DependencyOperationDistributionChart />
</EuiPanel>
</EuiFlexItem>
<EuiFlexItem>
<EuiPanel hasBorder>
<DependencyOperationDetailTraceList
spanFetch={spanFetch}
sortFn={getSortedSamples}
/>
</EuiPanel>
</EuiFlexItem>
<EuiFlexItem>
<EuiPanel hasBorder>
<ResettingHeightRetainer reset={!isWaterfallLoading}>
Expand Down
Loading

0 comments on commit 9c921f4

Please sign in to comment.