-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: kibanamachine <[email protected]>
- Loading branch information
1 parent
5266327
commit 58cf152
Showing
26 changed files
with
1,381 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+68.7 KB
x-pack/plugins/observability_ai_assistant/public/assets/elastic_ai_assistant.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
920 changes: 920 additions & 0 deletions
920
x-pack/plugins/observability_ai_assistant/public/assets/illustration.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions
37
...y_ai_assistant/public/components/buttons/hide_expand_conversation_list_button.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
import React from 'react'; | ||
import { ComponentStory } from '@storybook/react'; | ||
|
||
import { | ||
HideExpandConversationListButton as Component, | ||
HideExpandConversationListButtonProps, | ||
} from './hide_expand_conversation_list_button'; | ||
|
||
export default { | ||
component: Component, | ||
title: 'app/Atoms/HideExpandConversationListButton', | ||
argTypes: { | ||
isExpanded: { | ||
control: { | ||
type: 'boolean', | ||
}, | ||
}, | ||
}, | ||
}; | ||
|
||
const Template: ComponentStory<typeof Component> = ( | ||
props: HideExpandConversationListButtonProps | ||
) => <Component {...props} />; | ||
|
||
const defaultProps = { | ||
isExpanded: true, | ||
}; | ||
|
||
export const HideExpandConversationListButton = Template.bind({}); | ||
HideExpandConversationListButton.args = defaultProps; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.