@promptbook/templates 0.103.0-1 → 0.103.0-10
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/README.md +120 -80
- package/esm/index.es.js +558 -514
- package/esm/index.es.js.map +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 +10 -5
- package/esm/typings/src/book-components/BookEditor/BookEditorMonaco.d.ts +5 -0
- package/esm/typings/src/book-components/BookEditor/config.d.ts +1 -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 +13 -0
- package/esm/typings/src/book-components/_common/react-utils/classNames.d.ts +1 -1
- package/esm/typings/src/utils/misc/injectCssModuleIntoShadowRoot.d.ts +1 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +558 -514
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +0 -5
|
@@ -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,10 @@ 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;
|
|
11
15
|
/**
|
|
12
16
|
* Additional CSS classes to apply to the editor container.
|
|
13
17
|
*/
|
|
@@ -16,11 +20,6 @@ export type BookEditorProps = {
|
|
|
16
20
|
* Optional CSS style which will be added to root <div/> element
|
|
17
21
|
*/
|
|
18
22
|
readonly style?: CSSProperties;
|
|
19
|
-
/**
|
|
20
|
-
* CSS className for a font (e.g. from next/font) to style the editor text.
|
|
21
|
-
* If omitted, defaults to system serif fonts.
|
|
22
|
-
*/
|
|
23
|
-
readonly fontClassName?: string;
|
|
24
23
|
/**
|
|
25
24
|
* The book which is being edited.
|
|
26
25
|
*/
|
|
@@ -46,6 +45,12 @@ export type BookEditorProps = {
|
|
|
46
45
|
* By default, the footer is hidden.
|
|
47
46
|
*/
|
|
48
47
|
readonly isFooterShown?: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* If true, the editor is in read-only mode
|
|
50
|
+
*
|
|
51
|
+
* @default false
|
|
52
|
+
*/
|
|
53
|
+
readonly isReadonly?: boolean;
|
|
49
54
|
};
|
|
50
55
|
/**
|
|
51
56
|
* 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,13 @@
|
|
|
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;
|
|
11
|
+
/**
|
|
12
|
+
* TODO: !!!! Use this also for feedback modal in Chat component -Make modals DRY
|
|
13
|
+
*/
|
|
@@ -4,4 +4,4 @@ import type { string_css_class } from '../../../types/typeAliases';
|
|
|
4
4
|
*
|
|
5
5
|
* @private within the `@promptbook/components`
|
|
6
6
|
*/
|
|
7
|
-
export declare function classNames(...classes: Array<string_css_class | undefined | false | null>): string_css_class;
|
|
7
|
+
export declare function classNames(...classes: Array<string_css_class | undefined | false | null | 0>): string_css_class;
|
|
@@ -16,5 +16,6 @@ export type InjectCssModuleIntoShadowRootOptions = {
|
|
|
16
16
|
*
|
|
17
17
|
* @public exported from `@promptbook/components`
|
|
18
18
|
* <- TODO: [🧠] Make `@promptbook/components-utils`
|
|
19
|
+
* @deprecated This was used for BookEditor shadow DOM support, which is no longer needed
|
|
19
20
|
*/
|
|
20
21
|
export declare function injectCssModuleIntoShadowRoot(options: InjectCssModuleIntoShadowRootOptions): void;
|
|
@@ -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-9`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/templates",
|
|
3
|
-
"version": "0.103.0-
|
|
3
|
+
"version": "0.103.0-10",
|
|
4
4
|
"description": "Promptbook: Turn your company's scattered knowledge into AI ready books",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"module": "./esm/index.es.js",
|
|
96
96
|
"typings": "./esm/typings/src/_packages/templates.index.d.ts",
|
|
97
97
|
"peerDependencies": {
|
|
98
|
-
"@promptbook/core": "0.103.0-
|
|
98
|
+
"@promptbook/core": "0.103.0-10"
|
|
99
99
|
},
|
|
100
100
|
"dependencies": {
|
|
101
101
|
"spacetrim": "0.11.59"
|