diff --git a/src/legacy/core_plugins/console/np_ready/public/application/containers/main/main.tsx b/src/legacy/core_plugins/console/np_ready/public/application/containers/main/main.tsx index 82256cf739882..4e5afbdb5821e 100644 --- a/src/legacy/core_plugins/console/np_ready/public/application/containers/main/main.tsx +++ b/src/legacy/core_plugins/console/np_ready/public/application/containers/main/main.tsx @@ -19,7 +19,8 @@ import React, { useCallback, useState } from 'react'; import { debounce } from 'lodash'; -import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; +import { i18n } from '@kbn/i18n'; +import { EuiFlexGroup, EuiFlexItem, EuiTitle } from '@elastic/eui'; import { EditorOutput, Editor, ConsoleHistory } from '../editor'; import { Settings } from '../settings'; @@ -77,6 +78,13 @@ export function Main() { responsive={false} > + +

+ {i18n.translate('console.pageHeading', { + defaultMessage: 'Console', + })} +

+
setShowHistory(!showingHistory), diff --git a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/cold_phase/cold_phase.js b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/cold_phase/cold_phase.js index 493da3e19b9f3..91fbb4f63cbc3 100644 --- a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/cold_phase/cold_phase.js +++ b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/cold_phase/cold_phase.js @@ -58,12 +58,12 @@ export class ColdPhase extends PureComponent { - +

- {' '} +

{' '} {phaseData[PHASE_ENABLED] && !isShowingErrors ? : null} @@ -162,12 +162,12 @@ export class ColdPhase extends PureComponent { +

-

+

} description={ diff --git a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/delete_phase/delete_phase.js b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/delete_phase/delete_phase.js index 0e7663a6aef7d..d5eb76889494c 100644 --- a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/delete_phase/delete_phase.js +++ b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/delete_phase/delete_phase.js @@ -43,12 +43,12 @@ export class DeletePhase extends PureComponent { - +

- {' '} +

{' '} {phaseData[PHASE_ENABLED] && !isShowingErrors ? ( ) : null} diff --git a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/hot_phase/hot_phase.js b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/hot_phase/hot_phase.js index 69370ab2d0a38..e7ac890a20ebc 100644 --- a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/hot_phase/hot_phase.js +++ b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/hot_phase/hot_phase.js @@ -54,12 +54,12 @@ export class HotPhase extends PureComponent { - +

- {' '} +

{' '} {isShowingErrors ? null : } diff --git a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/set_priority_input.js b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/set_priority_input.js index 3f4c32b05a2dc..c2c2b002a7693 100644 --- a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/set_priority_input.js +++ b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/set_priority_input.js @@ -21,12 +21,12 @@ export const SetPriorityInput = props => { return ( +

-

+

} description={ diff --git a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/warm_phase/warm_phase.js b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/warm_phase/warm_phase.js index 2f88578e128ef..77afd4f7051dc 100644 --- a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/warm_phase/warm_phase.js +++ b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/components/warm_phase/warm_phase.js @@ -77,12 +77,12 @@ export class WarmPhase extends PureComponent { - +

- {' '} +

{' '} {phaseData[PHASE_ENABLED] && !isShowingErrors ? : null} @@ -202,12 +202,12 @@ export class WarmPhase extends PureComponent { +

-

+

} description={ @@ -270,12 +270,12 @@ export class WarmPhase extends PureComponent {
+

-

+

} description={ diff --git a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/edit_policy.js b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/edit_policy.js index 2b07e9615030f..ef9b6de84f1e4 100644 --- a/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/edit_policy.js +++ b/x-pack/legacy/plugins/index_lifecycle_management/public/sections/edit_policy/edit_policy.js @@ -157,8 +157,8 @@ export class EditPolicy extends Component { verticalPosition="center" horizontalPosition="center" > - -

+ +

{isNewPolicy ? i18n.translate('xpack.indexLifecycleMgmt.editPolicy.createPolicyMessage', { defaultMessage: 'Create an index lifecycle policy' @@ -167,7 +167,7 @@ export class EditPolicy extends Component { defaultMessage: 'Edit index lifecycle policy {originalPolicyName}', values: { originalPolicyName } })} -

+

diff --git a/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_aliases.tsx b/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_aliases.tsx index 6c7a5a0ce922c..96abbae93d0f4 100644 --- a/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_aliases.tsx +++ b/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_aliases.tsx @@ -39,12 +39,12 @@ export const StepAliases: React.FunctionComponent = ({ -

+

-

+
diff --git a/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_logistics.tsx b/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_logistics.tsx index 1b20da3a0ee4c..86ef102dcec44 100644 --- a/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_logistics.tsx +++ b/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_logistics.tsx @@ -22,7 +22,7 @@ import { schemas } from '../template_form_schemas'; // Create or Form components with partial props that are common to all instances const UseField = getUseField({ component: Field }); -const FormRow = getFormRow({ titleTag: 'h4' }); +const FormRow = getFormRow({ titleTag: 'h3' }); const fieldsMeta = { name: { @@ -97,12 +97,12 @@ export const StepLogistics: React.FunctionComponent = ({ -

+

-

+
diff --git a/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_mappings.tsx b/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_mappings.tsx index 17d4a06418a70..74cb09b1c8e69 100644 --- a/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_mappings.tsx +++ b/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_mappings.tsx @@ -39,12 +39,12 @@ export const StepMappings: React.FunctionComponent = ({ -

+

-

+
diff --git a/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_review.tsx b/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_review.tsx index a639785c3837c..2c7fe939cc759 100644 --- a/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_review.tsx +++ b/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_review.tsx @@ -188,13 +188,13 @@ export const StepReview: React.FunctionComponent = ({ template, updat return (
-

+

-

+
diff --git a/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_settings.tsx b/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_settings.tsx index 850f312f0d1c6..9509ca38003ba 100644 --- a/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_settings.tsx +++ b/x-pack/legacy/plugins/index_management/public/components/template_form/steps/step_settings.tsx @@ -39,12 +39,12 @@ export const StepSettings: React.FunctionComponent = ({ -

+

-

+
diff --git a/x-pack/legacy/plugins/license_management/__jest__/__snapshots__/license_status.test.js.snap b/x-pack/legacy/plugins/license_management/__jest__/__snapshots__/license_status.test.js.snap index ee9abb1d1f125..b0bd05349a50c 100644 --- a/x-pack/legacy/plugins/license_management/__jest__/__snapshots__/license_status.test.js.snap +++ b/x-pack/legacy/plugins/license_management/__jest__/__snapshots__/license_status.test.js.snap @@ -1,5 +1,5 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`LicenseStatus component should display display warning is expired 1`] = `"

Your Platinum license has expired

Your license expired on
"`; +exports[`LicenseStatus component should display display warning is expired 1`] = `"

Your Platinum license has expired

Your license expired on
"`; -exports[`LicenseStatus component should display normally when license is active 1`] = `"

Your Gold license is active

Your license will expire on October 12, 2099 7:00 PM EST
"`; +exports[`LicenseStatus component should display normally when license is active 1`] = `"

Your Gold license is active

Your license will expire on October 12, 2099 7:00 PM EST
"`; diff --git a/x-pack/legacy/plugins/license_management/public/sections/license_dashboard/license_status/license_status.js b/x-pack/legacy/plugins/license_management/public/sections/license_dashboard/license_status/license_status.js index 9f6d1226e4dbf..0b7867ba45e2a 100644 --- a/x-pack/legacy/plugins/license_management/public/sections/license_dashboard/license_status/license_status.js +++ b/x-pack/legacy/plugins/license_management/public/sections/license_dashboard/license_status/license_status.js @@ -87,7 +87,7 @@ export class LicenseStatus extends React.PureComponent { {icon} -

{title}

+

{title}

diff --git a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/job_create.js b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/job_create.js index 41158167c5469..e25c91b7e40c9 100644 --- a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/job_create.js +++ b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/job_create.js @@ -549,7 +549,7 @@ export class JobCreateUi extends Component { - +

-

+

-

+

diff --git a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_histogram.js b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_histogram.js index 991280b4e10de..38aac71c86a23 100644 --- a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_histogram.js +++ b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_histogram.js @@ -82,12 +82,12 @@ export class StepHistogramUi extends Component { -

+

-

+
@@ -179,12 +179,12 @@ export class StepHistogramUi extends Component { -

+

-

+
)} description={( diff --git a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_logistics.js b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_logistics.js index c3cf39bec5fad..75c70ab6ce20a 100644 --- a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_logistics.js +++ b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_logistics.js @@ -233,12 +233,12 @@ export class StepLogisticsUi extends Component { -

+

-

+
@@ -276,12 +276,12 @@ export class StepLogisticsUi extends Component { -

+

-

+ } description={ @@ -316,12 +316,12 @@ export class StepLogisticsUi extends Component { -

+

-

+ } description={ @@ -393,12 +393,12 @@ export class StepLogisticsUi extends Component { -

+

-

+ } description={ @@ -415,12 +415,12 @@ export class StepLogisticsUi extends Component { -
+

-

+ } description={ @@ -456,12 +456,12 @@ export class StepLogisticsUi extends Component { -
+

-

+ } description={ diff --git a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_metrics.js b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_metrics.js index 7fd4052bd45f1..1ccdcceabe47a 100644 --- a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_metrics.js +++ b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_metrics.js @@ -358,12 +358,12 @@ export class StepMetricsUi extends Component { -

+

-

+
diff --git a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_review.js b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_review.js index 213a1938432fc..1f3172d8ee848 100644 --- a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_review.js +++ b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_review.js @@ -104,13 +104,13 @@ export class StepReviewUi extends Component { return ( -

+

-

+
{this.renderTabs()} diff --git a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_terms.js b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_terms.js index d4a07dd312483..6ea8607aa9632 100644 --- a/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_terms.js +++ b/x-pack/legacy/plugins/rollup/public/crud_app/sections/job_create/steps/step_terms.js @@ -81,12 +81,12 @@ export class StepTermsUi extends Component { -

+

-

+
diff --git a/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_logistics.tsx b/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_logistics.tsx index 80240ae0e7718..7c3036b3d79c2 100644 --- a/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_logistics.tsx +++ b/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_logistics.tsx @@ -476,12 +476,12 @@ export const PolicyStepLogistics: React.FunctionComponent = ({ -

+

-

+
diff --git a/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_retention.tsx b/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_retention.tsx index 3944cd52c7ee2..c88cbd2736df6 100644 --- a/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_retention.tsx +++ b/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_retention.tsx @@ -206,12 +206,12 @@ export const PolicyStepRetention: React.FunctionComponent = ({ -

+

-

+
diff --git a/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_review.tsx b/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_review.tsx index 52667ee7ebc87..3ddbcd94009ac 100644 --- a/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_review.tsx +++ b/x-pack/legacy/plugins/snapshot_restore/public/app/components/policy_form/steps/step_review.tsx @@ -362,12 +362,12 @@ export const PolicyStepReview: React.FunctionComponent = ({ return ( -

+

-

+
= ({ -

+

-

+
diff --git a/x-pack/legacy/plugins/snapshot_restore/public/app/components/repository_form/step_one.tsx b/x-pack/legacy/plugins/snapshot_restore/public/app/components/repository_form/step_one.tsx index 9f66353af9614..fe76d06b9c4bf 100644 --- a/x-pack/legacy/plugins/snapshot_restore/public/app/components/repository_form/step_one.tsx +++ b/x-pack/legacy/plugins/snapshot_restore/public/app/components/repository_form/step_one.tsx @@ -88,12 +88,12 @@ export const RepositoryFormStepOne: React.FunctionComponent = ({ -

+

-

+ } description={ @@ -227,12 +227,12 @@ export const RepositoryFormStepOne: React.FunctionComponent = ({ return ( -

+

-

+
@@ -274,12 +274,12 @@ export const RepositoryFormStepOne: React.FunctionComponent = ({ -

+

-

+ } description={ diff --git a/x-pack/legacy/plugins/snapshot_restore/public/app/components/restore_snapshot_form/steps/step_logistics.tsx b/x-pack/legacy/plugins/snapshot_restore/public/app/components/restore_snapshot_form/steps/step_logistics.tsx index 8a0d8039bb7cd..f5a3180adbd6e 100644 --- a/x-pack/legacy/plugins/snapshot_restore/public/app/components/restore_snapshot_form/steps/step_logistics.tsx +++ b/x-pack/legacy/plugins/snapshot_restore/public/app/components/restore_snapshot_form/steps/step_logistics.tsx @@ -96,12 +96,12 @@ export const RestoreSnapshotStepLogistics: React.FunctionComponent = -

+

-

+
diff --git a/x-pack/legacy/plugins/snapshot_restore/public/app/components/restore_snapshot_form/steps/step_review.tsx b/x-pack/legacy/plugins/snapshot_restore/public/app/components/restore_snapshot_form/steps/step_review.tsx index 65a3918d29940..92b0ee48fef01 100644 --- a/x-pack/legacy/plugins/snapshot_restore/public/app/components/restore_snapshot_form/steps/step_review.tsx +++ b/x-pack/legacy/plugins/snapshot_restore/public/app/components/restore_snapshot_form/steps/step_review.tsx @@ -350,12 +350,12 @@ export const RestoreSnapshotStepReview: React.FunctionComponent = ({ return ( -

+

-

+
= ( -

+

-

+
diff --git a/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/json_watch_edit/json_watch_edit_simulate.tsx b/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/json_watch_edit/json_watch_edit_simulate.tsx index 5d16ac3aa18f0..e57a875aa4356 100644 --- a/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/json_watch_edit/json_watch_edit_simulate.tsx +++ b/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/json_watch_edit/json_watch_edit_simulate.tsx @@ -158,12 +158,12 @@ export const JsonWatchEditSimulate = ({ +

{i18n.translate( 'xpack.watcher.sections.watchEdit.simulate.form.triggerOverridesTitle', { defaultMessage: 'Trigger' } )} -

+ } description={i18n.translate( 'xpack.watcher.sections.watchEdit.simulate.form.triggerOverridesDescription', @@ -247,12 +247,12 @@ export const JsonWatchEditSimulate = ({ +

{i18n.translate( 'xpack.watcher.sections.watchEdit.simulate.form.conditionOverridesTitle', { defaultMessage: 'Condition' } )} -

+ } description={i18n.translate( 'xpack.watcher.sections.watchEdit.simulate.form.conditionOverridesDescription', @@ -283,12 +283,12 @@ export const JsonWatchEditSimulate = ({ fullWidth idAria="simulateExecutionActionModesDescription" title={ -

+

{i18n.translate( 'xpack.watcher.sections.watchEdit.simulate.form.actionOverridesTitle', { defaultMessage: 'Actions' } )} -

+ } description={ +

{i18n.translate( 'xpack.watcher.sections.watchEdit.simulate.form.inputOverridesTitle', { defaultMessage: 'Input' } )} -

+ } description={i18n.translate( 'xpack.watcher.sections.watchEdit.simulate.form.inputOverridesDescription', diff --git a/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/threshold_watch_edit/threshold_watch_action_panel.tsx b/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/threshold_watch_edit/threshold_watch_action_panel.tsx index 504c5e10ed665..a2e46652429ea 100644 --- a/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/threshold_watch_edit/threshold_watch_action_panel.tsx +++ b/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/threshold_watch_edit/threshold_watch_action_panel.tsx @@ -29,7 +29,7 @@ export const WatchActionsPanel: React.FunctionComponent = ({ actionErrors -

+

{i18n.translate('xpack.watcher.sections.watchEdit.actions.title', { defaultMessage: 'Perform {watchActionsCount, plural, one{# action} other {# actions}} when condition is met', @@ -37,7 +37,7 @@ export const WatchActionsPanel: React.FunctionComponent = ({ actionErrors watchActionsCount: watch.actions.length, }, })} -

+
diff --git a/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/threshold_watch_edit/threshold_watch_edit.tsx b/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/threshold_watch_edit/threshold_watch_edit.tsx index c479cad1bc825..ee89d9bfc176a 100644 --- a/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/threshold_watch_edit/threshold_watch_edit.tsx +++ b/x-pack/legacy/plugins/watcher/public/sections/watch_edit/components/threshold_watch_edit/threshold_watch_edit.tsx @@ -441,12 +441,12 @@ export const ThresholdWatchEdit = ({ pageTitle }: { pageTitle: string }) => { {shouldShowThresholdExpression ? ( -

+

-

+