@promptbook/vercel 0.103.0-2 → 0.103.0-3
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.
- package/esm/index.es.js +1 -1
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +5 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfileTooltip.d.ts +15 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +14 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorWrapper.d.ts +6 -0
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +5 -0
- package/esm/typings/src/book-components/_common/Modal/Modal.d.ts +10 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +1 -1
package/esm/index.es.js
CHANGED
|
@@ -16,7 +16,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
16
16
|
* @generated
|
|
17
17
|
* @see https://github.com/webgptorg/promptbook
|
|
18
18
|
*/
|
|
19
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.103.0-
|
|
19
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.103.0-3';
|
|
20
20
|
/**
|
|
21
21
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
22
22
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { AgentBasicInformation } from '../../../book-2.0/agent-source/AgentBasicInformation';
|
|
2
|
+
import type { string_book } from '../../../book-2.0/agent-source/string_book';
|
|
2
3
|
import type { string_css_class } from '../../../types/typeAliases';
|
|
3
4
|
/**
|
|
4
5
|
* Props of `AvatarProfile`
|
|
@@ -10,6 +11,10 @@ export type AvatarProfileProps = {
|
|
|
10
11
|
* Agent to be shown
|
|
11
12
|
*/
|
|
12
13
|
readonly agent: AgentBasicInformation;
|
|
14
|
+
/**
|
|
15
|
+
* The source of the agent, which will be displayed in the BookEditor.
|
|
16
|
+
*/
|
|
17
|
+
readonly agentSource: string_book;
|
|
13
18
|
/**
|
|
14
19
|
* Optional CSS class name which will be added to root <div> element
|
|
15
20
|
*/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { string_book } from '../../../book-2.0/agent-source/string_book';
|
|
3
|
+
type AvatarProfileTooltipProps = {
|
|
4
|
+
agentSource: string_book;
|
|
5
|
+
position: {
|
|
6
|
+
top: number;
|
|
7
|
+
left: number;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
* @private internal subcomponent of `<Chat>` component
|
|
13
|
+
*/
|
|
14
|
+
export declare const AvatarProfileTooltip: import("react").ForwardRefExoticComponent<AvatarProfileTooltipProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
15
|
+
export {};
|
|
@@ -8,6 +8,14 @@ import type { string_knowledge_source_content } from '../../types/typeAliases';
|
|
|
8
8
|
* @public exported from `@promptbook/components`
|
|
9
9
|
*/
|
|
10
10
|
export type BookEditorProps = {
|
|
11
|
+
/**
|
|
12
|
+
* The source of the agent to be displayed in the editor.
|
|
13
|
+
*/
|
|
14
|
+
readonly agentSource?: string_book;
|
|
15
|
+
/**
|
|
16
|
+
* Callback function to be called when the editor is closed.
|
|
17
|
+
*/
|
|
18
|
+
onClose?(): void;
|
|
11
19
|
/**
|
|
12
20
|
* Additional CSS classes to apply to the editor container.
|
|
13
21
|
*/
|
|
@@ -46,6 +54,12 @@ export type BookEditorProps = {
|
|
|
46
54
|
* By default, the footer is hidden.
|
|
47
55
|
*/
|
|
48
56
|
readonly isFooterShown?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* If true, the editor is in read-only mode
|
|
59
|
+
*
|
|
60
|
+
* @default false
|
|
61
|
+
*/
|
|
62
|
+
readonly isReadonly?: boolean;
|
|
49
63
|
};
|
|
50
64
|
/**
|
|
51
65
|
* Renders a book editor
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { id, string_color, string_person_fullname, string_url_image } from '../../../types/typeAliases';
|
|
2
2
|
import { Color } from '../../../utils/color/Color';
|
|
3
|
+
import type { string_book } from '../../../book-2.0/agent-source/string_book';
|
|
3
4
|
/**
|
|
4
5
|
* A participant in the chat
|
|
5
6
|
*
|
|
@@ -26,6 +27,10 @@ export type ChatParticipant = {
|
|
|
26
27
|
* Color associated with the participant
|
|
27
28
|
*/
|
|
28
29
|
color?: string_color | Color;
|
|
30
|
+
/**
|
|
31
|
+
* Agent source for avatar profile
|
|
32
|
+
*/
|
|
33
|
+
agentSource?: string_book;
|
|
29
34
|
};
|
|
30
35
|
/**
|
|
31
36
|
* TODO: [🕛] Unite `AgentBasicInformation`, `ChatParticipant`, `LlmExecutionTools` + `LlmToolsMetadata`
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* @private internal subcomponent of `<Chat>` component
|
|
5
|
+
*/
|
|
6
|
+
export declare function Modal({ children, onClose, className, }: {
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
onClose: () => void;
|
|
9
|
+
className?: string;
|
|
10
|
+
}): import("react").ReactPortal;
|
|
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
|
16
16
|
/**
|
|
17
17
|
* Represents the version string of the Promptbook engine.
|
|
18
|
-
* It follows semantic versioning (e.g., `0.103.0-
|
|
18
|
+
* It follows semantic versioning (e.g., `0.103.0-2`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/vercel",
|
|
3
|
-
"version": "0.103.0-
|
|
3
|
+
"version": "0.103.0-3",
|
|
4
4
|
"description": "Promptbook: Turn your company's scattered knowledge into AI ready books",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"module": "./esm/index.es.js",
|
|
95
95
|
"typings": "./esm/typings/src/_packages/vercel.index.d.ts",
|
|
96
96
|
"peerDependencies": {
|
|
97
|
-
"@promptbook/core": "0.103.0-
|
|
97
|
+
"@promptbook/core": "0.103.0-3"
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
100
|
"colors": "1.4.0",
|
package/umd/index.umd.js
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
* @generated
|
|
24
24
|
* @see https://github.com/webgptorg/promptbook
|
|
25
25
|
*/
|
|
26
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.103.0-
|
|
26
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.103.0-3';
|
|
27
27
|
/**
|
|
28
28
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
29
29
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|