ct-rich-text-editor 1.3.8 → 1.3.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/dist/api/ai/index.d.ts +4 -0
- package/dist/api/config/endpoints.d.ts +1 -0
- package/dist/api/featureSuggestion.d.ts +2 -0
- package/dist/assets/style.css +380 -544
- package/dist/components/AiPlugin/index.d.ts +2 -0
- package/dist/components/ChartEditDialog.d.ts +9 -0
- package/dist/components/ChartInsertDialog.d.ts +8 -0
- package/dist/components/LanguageSelectorDialog/index.d.ts +8 -0
- package/dist/components/ToneAdjustDialog/index.d.ts +8 -0
- package/dist/constants.d.ts +2 -1
- package/dist/{html2pdf.bundle-6d32d085.js → html2pdf.bundle-7796d91e.js} +2 -2
- package/dist/{html2pdf.bundle-6d32d085.js.map → html2pdf.bundle-7796d91e.js.map} +1 -1
- package/dist/{html2pdf.bundle.min-b3120e0c.js → html2pdf.bundle.min-655f7464.js} +2 -2
- package/dist/{html2pdf.bundle.min-b3120e0c.js.map → html2pdf.bundle.min-655f7464.js.map} +1 -1
- package/dist/{index-42136c92.js → index-d292603a.js} +3 -3
- package/dist/{index-42136c92.js.map → index-d292603a.js.map} +1 -1
- package/dist/{index-158a9bd4.js → index-d5866754.js} +7307 -5837
- package/dist/index-d5866754.js.map +1 -0
- package/dist/{index-9548fdb4.js → index-e0dbaf6d.js} +9 -9
- package/dist/{index-9548fdb4.js.map → index-e0dbaf6d.js.map} +1 -1
- package/dist/index.js +1 -1
- package/dist/nodes/ChartNode.d.ts +41 -0
- package/dist/plugins/CombinedAutocompletGrammarPlugin.d.ts +2 -3
- package/dist/ui/Icons.d.ts +5 -1
- package/dist/utils/export.d.ts +1 -1
- package/package.json +2 -2
- package/dist/index-158a9bd4.js.map +0 -1
- package/dist/plugins/TableHoverActionsPlugin/index_old_backup.d.ts +0 -17
package/dist/api/ai/index.d.ts
CHANGED
|
@@ -24,4 +24,8 @@ export declare const GetCreditsInfo: ({ apiKey }: {
|
|
|
24
24
|
export declare const GetUserInfo: ({ apiKey }: {
|
|
25
25
|
apiKey?: string | undefined;
|
|
26
26
|
}) => Promise<any>;
|
|
27
|
+
export declare const AiTextTransform: ({ content, apiKey }: {
|
|
28
|
+
content: string;
|
|
29
|
+
apiKey?: string | undefined;
|
|
30
|
+
}) => Promise<any>;
|
|
27
31
|
export {};
|
|
@@ -2,6 +2,7 @@ export interface FeatureSuggestion {
|
|
|
2
2
|
id: string;
|
|
3
3
|
title: string;
|
|
4
4
|
description: string;
|
|
5
|
+
link?: string;
|
|
5
6
|
status: string;
|
|
6
7
|
createdAt: string;
|
|
7
8
|
upvotes: number;
|
|
@@ -14,6 +15,7 @@ export interface FeatureSuggestion {
|
|
|
14
15
|
export interface CreateSuggestionData {
|
|
15
16
|
title: string;
|
|
16
17
|
description: string;
|
|
18
|
+
link?: string | null;
|
|
17
19
|
tags?: string[];
|
|
18
20
|
}
|
|
19
21
|
export declare class FeatureSuggestionAPI {
|