mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
## Summary Fixes https://github.com/elastic/kibana/issues/143322 This PR adds an option to store dynamic parameters when a step is completed to be used later for dynamically built URLs. ### How to test 1. Add `xpack.cloud.id: 'testID'` to your `/config/kibana.dev.yml` file 2. Start ES with `yarn es snapshot` 3. Start Kibana with `yarn start --run-examples` 4. Navigate to the guided onboarding example plugin `http://localhost:5601/app/guidedOnboardingExample` 5. Start the test guide and when completing step 1 provide any value for the paramter `indexName` 6. Continue the guide until step 4 and check that the correct value is being used for the url of this step. ### Checklist - [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 --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
23 lines
770 B
TypeScript
23 lines
770 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.
|
|
*/
|
|
|
|
export type {
|
|
GuideState,
|
|
GuideId,
|
|
GuideStepIds,
|
|
StepStatus,
|
|
GuideStep,
|
|
GuideStatus,
|
|
GuideConfig,
|
|
StepConfig,
|
|
StepDescriptionWithLink,
|
|
GuideParams,
|
|
} from './src/types';
|
|
export { GuideCards, GuideFilters } from './src/components/landing_page';
|
|
export type { GuideFilterValues } from './src/components/landing_page';
|
|
export { testGuideId, testGuideConfig } from './src/common/test_guide_config';
|