mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
## Summary Resolves https://github.com/elastic/ingest-dev/issues/2602. This PR makes global changes to Fleet and Integrations: 1. Layout expands to 100% of available screen width when screen size is < 1600px wide 2. Layout expands to 80% when screen size is >= 1600px 3. Sets all flyouts to `medium` size with a max width of 800px no matter the screen size Exceptions: - Create/edit integration policy page is restricted to 1200px when screen size is >= 1600px - Agent policy settings page is restricted to 1200px no matter the screen size ### Screenshots <details> <summary>On 1920px screen</summary>       </details> <details> <summary>On smaller screen</summary>       </details> ### Testing Fire up the PR and click around everything :)
30 lines
1.6 KiB
TypeScript
30 lines
1.6 KiB
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; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
export { Loading } from './loading';
|
|
export { Error } from './error';
|
|
export { FleetSetupLoading } from './fleet_setup_loading';
|
|
export { PackageIcon } from './package_icon';
|
|
export { ContextMenuActions } from './context_menu_actions';
|
|
export { LinkedAgentCount } from './linked_agent_count';
|
|
export { ExtensionWrapper } from './extension_wrapper';
|
|
export type { HeaderProps } from './header';
|
|
export { Header } from './header';
|
|
export { NewEnrollmentTokenModal } from './new_enrollment_key_modal';
|
|
export { AgentPolicyPackageBadge } from './agent_policy_package_badge';
|
|
export { AgentPolicyPackageBadges } from './agent_policy_package_badges';
|
|
export { PackagePolicyDeleteProvider } from './package_policy_delete_provider';
|
|
export { PackagePolicyActionsMenu } from './package_policy_actions_menu';
|
|
export { AddAgentHelpPopover } from './add_agent_help_popover';
|
|
export { EuiButtonWithTooltip } from './eui_button_with_tooltip';
|
|
export * from './link_and_revision';
|
|
export * from './agent_enrollment_flyout';
|
|
export * from './platform_selector';
|
|
export { ConfirmForceInstallModal } from './confirm_force_install_modal';
|
|
export { DevtoolsRequestFlyoutButton } from './devtools_request_flyout';
|
|
export { HeaderReleaseBadge, InlineReleaseBadge } from './release_badge';
|
|
export { WithGuidedOnboardingTour } from './with_guided_onboarding_tour';
|
|
export { UninstallCommandFlyout } from './uninstall_command_flyout';
|