@promptbook/templates 0.103.0-22 → 0.103.0-25
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 +715 -710
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/cli.index.d.ts +4 -0
- package/esm/typings/src/_packages/components.index.d.ts +0 -4
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/_packages/types.index.d.ts +6 -0
- package/esm/typings/src/_packages/wizard.index.d.ts +4 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +18 -1
- package/esm/typings/src/book-components/BookEditor/BookEditorActionbar.d.ts +3 -0
- package/esm/typings/src/book-components/Chat/MockedChat/MockedChat.d.ts +5 -0
- package/esm/typings/src/book-components/icons/CloseIcon.d.ts +4 -8
- package/esm/typings/src/book-components/icons/ExitFullscreenIcon.d.ts +7 -0
- package/esm/typings/src/book-components/icons/FullscreenIcon.d.ts +7 -0
- package/esm/typings/src/transpilers/_common/BookTranspiler.d.ts +19 -0
- package/esm/typings/src/transpilers/_common/BookTranspilerDefinition.d.ts +37 -0
- package/esm/typings/src/transpilers/_common/BookTranspilerOptions.d.ts +19 -0
- package/esm/typings/src/transpilers/_common/register/$bookTranspilersRegister.d.ts +15 -0
- package/esm/typings/src/transpilers/langchain/LangchainTranspiler.d.ts +7 -0
- package/esm/typings/src/transpilers/langchain/register.d.ts +15 -0
- package/esm/typings/src/transpilers/openai/OpenAiSdkTranspiler.d.ts +13 -0
- package/esm/typings/src/transpilers/openai/register.d.ts +15 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +715 -710
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-components/BookEditor/config.d.ts +0 -11
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Default font class name for the BookEditor component
|
|
3
|
-
* In Next.js environments, you can override this by importing the font directly
|
|
4
|
-
*
|
|
5
|
-
* @public exported from `@promptbook/components`
|
|
6
|
-
* @deprecated !!! Remove
|
|
7
|
-
*/
|
|
8
|
-
export declare const DEFAULT_BOOK_FONT_CLASS: any;
|
|
9
|
-
/**
|
|
10
|
-
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
11
|
-
*/
|