@iblai/web-containers 1.1.20 → 1.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ interface GuidedPrompt {
2
+ prompt: string;
3
+ icon?: string;
4
+ }
5
+ interface Props {
6
+ onTemplateSelect: (template: string) => void;
7
+ guidedPrompts?: GuidedPrompt[];
8
+ disabled?: boolean;
9
+ className?: string;
10
+ }
11
+ export declare function ConversationStarters({ onTemplateSelect, guidedPrompts, disabled, className, }: Props): import("react/jsx-runtime").JSX.Element | null;
12
+ export {};
@@ -18,6 +18,7 @@ export type { UserProfileDropdownProps, UserMetadata } from '../components/user-
18
18
  export { UserProfileModal } from '../components/modals/user-profile-modal';
19
19
  export { Account } from '../components/profile/account';
20
20
  export { default as OrganizationTab } from '../components/profile/organization';
21
+ export { ConversationStarters } from '../components/mentor-ui/welcome-chat/conversation-starters';
21
22
  export { useTimeTracker } from '../features/tracking/use-time-tracker';
22
23
  export type { UseTimeTrackerConfig, UseTimeTrackerReturn, } from '../features/tracking/use-time-tracker';
23
24
  export { useGetChatDetails } from '../hooks/chat/use-get-chat-details';
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/web-containers",
3
- "version": "1.1.20",
3
+ "version": "1.1.21",
4
4
  "description": "ibl web containers",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
@@ -0,0 +1,12 @@
1
+ interface GuidedPrompt {
2
+ prompt: string;
3
+ icon?: string;
4
+ }
5
+ interface Props {
6
+ onTemplateSelect: (template: string) => void;
7
+ guidedPrompts?: GuidedPrompt[];
8
+ disabled?: boolean;
9
+ className?: string;
10
+ }
11
+ export declare function ConversationStarters({ onTemplateSelect, guidedPrompts, disabled, className, }: Props): import("react/jsx-runtime").JSX.Element | null;
12
+ export {};
@@ -18,6 +18,7 @@ export type { UserProfileDropdownProps, UserMetadata } from '../components/user-
18
18
  export { UserProfileModal } from '../components/modals/user-profile-modal';
19
19
  export { Account } from '../components/profile/account';
20
20
  export { default as OrganizationTab } from '../components/profile/organization';
21
+ export { ConversationStarters } from '../components/mentor-ui/welcome-chat/conversation-starters';
21
22
  export { useTimeTracker } from '../features/tracking/use-time-tracker';
22
23
  export type { UseTimeTrackerConfig, UseTimeTrackerReturn, } from '../features/tracking/use-time-tracker';
23
24
  export { useGetChatDetails } from '../hooks/chat/use-get-chat-details';
@@ -0,0 +1,12 @@
1
+ interface GuidedPrompt {
2
+ prompt: string;
3
+ icon?: string;
4
+ }
5
+ interface Props {
6
+ onTemplateSelect: (template: string) => void;
7
+ guidedPrompts?: GuidedPrompt[];
8
+ disabled?: boolean;
9
+ className?: string;
10
+ }
11
+ export declare function ConversationStarters({ onTemplateSelect, guidedPrompts, disabled, className, }: Props): import("react/jsx-runtime").JSX.Element | null;
12
+ export {};
@@ -18,6 +18,7 @@ export type { UserProfileDropdownProps, UserMetadata } from '../components/user-
18
18
  export { UserProfileModal } from '../components/modals/user-profile-modal';
19
19
  export { Account } from '../components/profile/account';
20
20
  export { default as OrganizationTab } from '../components/profile/organization';
21
+ export { ConversationStarters } from '../components/mentor-ui/welcome-chat/conversation-starters';
21
22
  export { useTimeTracker } from '../features/tracking/use-time-tracker';
22
23
  export type { UseTimeTrackerConfig, UseTimeTrackerReturn, } from '../features/tracking/use-time-tracker';
23
24
  export { useGetChatDetails } from '../hooks/chat/use-get-chat-details';