mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
## Summary Reuse Serverless panels for API index overview. Updated Enterprise Search overview to latests designs. Note: There will be another PR for layout changes on overview afterwards.51537e57
-e822-4b9f-b9ed-49d82d192690a3696897
-40a5-4cb3-9fe6-53ce5b8f560fde752063
-04ff-42a3-8538-7fb10a9df1ca  ### Checklist Delete any items that are not applicable to this PR. - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [x] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [x] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [x] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Liam Thompson <32779855+leemthompo@users.noreply.github.com>
19 lines
722 B
TypeScript
19 lines
722 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
import { i18n } from '@kbn/i18n';
|
|
|
|
export const LEARN_MORE_LABEL: string = i18n.translate(
|
|
'searchApiPanels.welcomeBanner.panels.learnMore',
|
|
{
|
|
defaultMessage: 'Learn more',
|
|
}
|
|
);
|
|
export const API_KEY_PLACEHOLDER = 'your_api_key';
|
|
export const ELASTICSEARCH_URL_PLACEHOLDER = 'https://your_deployment_url';
|
|
export const INDEX_NAME_PLACEHOLDER = 'index_name';
|