Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/map/openLayersMap.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const meta = {
docs: {
description: {
component:
'The `OpenLayersMap` component supports OpenStreetMap tiles and offers customization options for width, height, and marker size. Users can easily zoom in and zoom out to navigate the map effectively. The `OpenLayersMap` component uses the [OpenLayers](https://openlayers.org/en/latest/apidoc/module-ol_Map-Map.html) map library.\n\nHeight and width are configured through the class `rustic-open-layers-map-canvas`.\n\nNote: If you are not seeing the component or come across the error "An error occurred while loading the map", ensure that `@import \'@rustic-ai/ui-components/dist/index.css\';` is at the top of your `index.css` file.',
'The `OpenLayersMap` component supports OpenStreetMap tiles where users can easily zoom in and zoom out to navigate the map effectively. The `OpenLayersMap` component uses the [OpenLayers](https://openlayers.org/en/latest/apidoc/module-ol_Map-Map.html) map library.\n\nHeight and width are configured through the class `rustic-open-layers-map-canvas`.\n\nNote: If you are not seeing the component or come across the error "An error occurred while loading the map", ensure that `@import \'@rustic-ai/ui-components/dist/index.css\';` is at the top of your `index.css` file.',
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/menu/popoverMenu.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
docs: {
description: {
component:
'The `PopoverMenu` component is a versatile menu display component designed to simplify the presentation of menu items within your application. It provides a clean and customizable interface for rendering a list of menu items in a popup menu format. Note: `onClose` functionality is built into the component and will be triggered when the user clicks outside of the menu as well as menu items.',
'The `PopoverMenu` component is a versatile menu display component designed to simplify the presentation of menu items within your application. It provides a clean and customizable interface for rendering a list of menu items in a popup menu format.\n\nNote: `onClose` functionality is built into the component and will be triggered when the user clicks outside of the menu as well as menu items.',
},
},
},
Expand Down
4 changes: 2 additions & 2 deletions src/components/messageSpace/messageSpace.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ export default {
argTypes: {
supportedElements: {
description:
'A component map contains message formats as keys and their corresponding React components as values.`interface ComponentMap {[key: string]: React.ComponentType<any>}`',
'A component map contains message formats as keys and their corresponding React components as values.`interface ComponentMap { [key: string]: React.ComponentType<any> }`',
},
messages: {
description:
'Messages to be displayed. Could have thread messages for the streaming components. `Interface MessageData { [key: string]: any }`\n\n<pre>```{\nInterface Message {\n id: string\n timestamp: string\n sender: string\n conversationId: string\n format: string\n data: MessageData\n inReplyTo?: string\n threadId?: string\n priority?: string;\n taggedParticipants?: string[]\n topicId?: string\n}\n\n```</pre><pre>```{\nInterface ThreadableMessage extends Message {\n lastThreadMessage?: Message\n threadMessagesData?: MessageData[]}```</pre>',
'Messages to be displayed. Could have thread messages for the streaming components. `interface MessageData { [key: string]: any }`\n\n<pre>```{\ninterface Message {\n id: string\n timestamp: string\n sender: string\n conversationId: string\n format: string\n data: MessageData\n inReplyTo?: string\n threadId?: string\n priority?: string;\n taggedParticipants?: string[]\n topicId?: string\n}\n\n```</pre><pre>```{\ninterface ThreadableMessage extends Message {\n lastThreadMessage?: Message\n threadMessagesData?: MessageData[]\n}```</pre>',
},
getActionsComponent: {
description:
Expand Down