eddyter 1.4.19 → 1.4.20-beta.0
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 +6 -3
- package/dist/{AIChatPlugin-BUWq8ixX.js → AIChatPlugin-XDBXQanb.js} +3 -3
- package/dist/{CombinedAutocompletGrammarPlugin-Dq25w8tq.js → CombinedAutocompletGrammarPlugin-BRBmG7Uo.js} +186 -167
- package/dist/{CommentBubblePlugin-B77d3Qq6.js → CommentBubblePlugin-BALioirG.js} +1 -1
- package/dist/{CommentPlugin-BJQyKmrN.js → CommentPlugin-CHmC9IZh.js} +2 -2
- package/dist/{NotePanelPlugin-BqOdcg07.js → NotePanelPlugin-CPGzqjuk.js} +1 -1
- package/dist/{TextEnhancePlugin-BnmdRgUu.js → TextEnhancePlugin-DgC4kmVA.js} +2 -2
- package/dist/assets/style.css +1 -1
- package/dist/components/FormatTextMenu/FormatTextMenu.d.ts +5 -0
- package/dist/components/InsertVideoDialog.d.ts +7 -0
- package/dist/components/ListMenu/ListMenu.d.ts +10 -0
- package/dist/components/ListMenu/index.d.ts +1 -0
- package/dist/components/NewBadge/NewBadge.d.ts +5 -0
- package/dist/components/NewBadge/NewDot.d.ts +9 -0
- package/dist/components/Toolbar/styles.d.ts +2 -2
- package/dist/{generateDocxThumbnail-DBMxjZ83.js → generateDocxThumbnail-BTxOqVy6.js} +1 -1
- package/dist/{generatePdfThumbnail-Cv2-ZCzh.js → generatePdfThumbnail-bcpGGSUp.js} +1 -1
- package/dist/{generateXlsxThumbnail-UHmNc7Fa.js → generateXlsxThumbnail-BWM1cmSl.js} +1 -1
- package/dist/hooks/useNewFeatures.d.ts +5 -0
- package/dist/{index-Bex3G_eE.js → index-0VTRLfjb.js} +15648 -14919
- package/dist/{index-ChSepytp.js → index-BNICgdB-.js} +21 -21
- package/dist/{index-q_TW8dU1.js → index-BxOZNLwu.js} +4 -4
- package/dist/{index-C_mjLQUF.js → index-DDSVx-B8.js} +2 -2
- package/dist/{index-Cl_A9eof.js → index-DRLZF4xQ.js} +193 -198
- package/dist/{index-BaWQzoL2.js → index-DZESLGLB.js} +1 -1
- package/dist/{index-DcHU8PlQ.js → index-FZ7Aopvl.js} +73 -73
- package/dist/index.d.ts +0 -1
- package/dist/index.js +12 -13
- package/dist/nodes/ButtonNode.d.ts +15 -2
- package/dist/nodes/documentPalette.d.ts +24 -0
- package/dist/plugins/WordCountPlugin.d.ts +2 -0
- package/dist/{sparkles-C-XoMho5.js → sparkles-DIeZhywG.js} +1 -1
- package/dist/types.d.ts +6 -0
- package/dist/ui/Icons.d.ts +7 -1
- package/dist/{useVoiceToText-BzaLSbRi.js → useVoiceToText-sR--QAUC.js} +1 -1
- package/dist/utils/neutralTextColor.d.ts +22 -0
- package/dist/utils/newFeatures.d.ts +13 -0
- package/dist/utils/notePanelPaste.d.ts +3 -0
- package/package.json +2 -2
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import { FormatTextMenuProps } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* Overflow "…" menu for inline text formatting (bold / italic / underline / …).
|
|
5
|
+
* Lists, Quote, and Code block moved to their own toolbar dropdown (ListMenu,
|
|
6
|
+
* next to Alignment), so this menu is text formatting only.
|
|
7
|
+
*/
|
|
3
8
|
declare const FormatTextMenu: FC<FormatTextMenuProps>;
|
|
4
9
|
export default FormatTextMenu;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface InsertVideoDialogProps {
|
|
2
|
+
open: boolean;
|
|
3
|
+
onOpenChange: (open: boolean) => void;
|
|
4
|
+
onInsert: (url: string) => void;
|
|
5
|
+
}
|
|
6
|
+
export declare function InsertVideoDialog({ open, onOpenChange, onInsert, }: InsertVideoDialogProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default InsertVideoDialog;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Block dropdown shown next to the alignment control: lists (bulleted /
|
|
4
|
+
* numbered / check) plus Quote and Code block. Toggling the active list type
|
|
5
|
+
* removes it; Quote / Code block convert the current block.
|
|
6
|
+
*/
|
|
7
|
+
declare const ListMenu: FC<{
|
|
8
|
+
blockType: string;
|
|
9
|
+
}>;
|
|
10
|
+
export default ListMenu;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './ListMenu';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Compact stand-in for <NewBadge /> used where a full "NEW" pill doesn't fit —
|
|
4
|
+
* on a collapsed group (submenu trigger) whose contents include a new feature.
|
|
5
|
+
*/
|
|
6
|
+
declare const NewDot: FC<{
|
|
7
|
+
className?: string;
|
|
8
|
+
}>;
|
|
9
|
+
export default NewDot;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare const toolbarStyles: {
|
|
2
2
|
readonly root: "cteditor-p-2 cteditor-border-b cteditor-border-[#e0e0e0] cteditor-max-w-full cteditor-overflow-x-auto";
|
|
3
3
|
readonly toolbar: "cteditor-p-2 cteditor-max-w-full cteditor-overflow-x-auto cteditor-flex cteditor-flex-nowrap cteditor-gap-1";
|
|
4
|
-
readonly toolbarContainer: "toolbar-features cteditor-flex cteditor-text-foreground cteditor-px-2 cteditor-py-1 cteditor-rounded-
|
|
4
|
+
readonly toolbarContainer: "toolbar-features cteditor-flex cteditor-text-foreground cteditor-px-2 cteditor-py-1 cteditor-rounded-xl cteditor-items-center cteditor-gap-1.5 cteditor-relative cteditor-w-full cteditor-min-h-11 cteditor-overflow-hidden cteditor-border cteditor-border-main-border/10 dark:cteditor-border-main-border/[0.07]";
|
|
5
5
|
readonly toolbarInnerContent: "cteditor-flex cteditor-items-center cteditor-gap-1.5 cteditor-overflow-y-hidden cteditor-flex-nowrap md:cteditor-overflow-hidden no-scrollbar";
|
|
6
6
|
readonly moreMenuTriggerButton: "!cteditor-px-1 !cteditor-py-0.5 !cteditor-h-7 !cteditor-gap-1 dark:!cteditor-bg-body/20 !cteditor-bg-body !cteditor-rounded-md cteditor-border !cteditor-border-foreground/5";
|
|
7
7
|
readonly moreMenuContent: "cteditor-w-64 cteditor-max-h-[450px] cteditor-overflow-hidden cteditor-flex cteditor-flex-col";
|
|
8
8
|
readonly searchWrapper: "cteditor-relative";
|
|
9
9
|
readonly searchIcon: "cteditor-absolute cteditor-left-2.5 cteditor-top-1/2 cteditor-transform -cteditor-translate-y-1/2 cteditor-size-3.5 cteditor-text-muted-foreground/60";
|
|
10
|
-
readonly searchInput: "cteditor-h-8 cteditor-pl-8 cteditor-border !cteditor-border-foreground/10 cteditor-pr-8 cteditor-text-
|
|
10
|
+
readonly searchInput: "cteditor-h-8 cteditor-pl-8 cteditor-border !cteditor-border-foreground/10 cteditor-pr-8 cteditor-text-xs cteditor-bg-background/80 !cteditor-rounded-lg cteditor-shadow-sm cteditor-placeholder:text-muted-foreground/50 cteditor-transition-all focus:cteditor-ring-1 focus:cteditor-ring-primary/20 cteditor-outline-none";
|
|
11
11
|
readonly searchClearButton: "cteditor-absolute cteditor-right-2 cteditor-top-1/2 cteditor-transform -cteditor-translate-y-1/2 cteditor-text-muted-foreground/60 hover:cteditor-text-foreground cteditor-transition-colors";
|
|
12
12
|
readonly searchClearIcon: "!cteditor-size-3.5";
|
|
13
13
|
readonly controlGroup: "cteditor-flex cteditor-items-center cteditor-gap-1.5";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { c as Tt, g as Se } from "./_commonjsHelpers-DaMA6jEr.js";
|
|
2
2
|
import { h as Ce } from "./html2canvas.esm-BD_Vwvv8.js";
|
|
3
|
-
import { aa as xe, aN as Ee } from "./index-
|
|
3
|
+
import { aa as xe, aN as Ee } from "./index-0VTRLfjb.js";
|
|
4
4
|
function Ft(c) {
|
|
5
5
|
throw new Error('Could not dynamically require "' + c + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
|
|
6
6
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { h as Ci } from "./html2canvas.esm-BD_Vwvv8.js";
|
|
2
|
-
import { aa as yi, aN as Di } from "./index-
|
|
2
|
+
import { aa as yi, aN as Di } from "./index-0VTRLfjb.js";
|
|
3
3
|
var In = 1252, Oi = [874, 932, 936, 949, 950, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1e4], Zt = {
|
|
4
4
|
/*::[*/
|
|
5
5
|
0: 1252,
|