@blankdotpage/cake 0.1.0 → 0.1.1

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.
@@ -2,7 +2,23 @@ import type { Block, Doc, Inline, Selection } from "./types";
2
2
  import type { ReactElement } from "react";
3
3
  import { type CursorSourceMap } from "./mapping/cursor-source-map";
4
4
  import type { DomRenderContext } from "../dom/types";
5
- import type { OverlayExtensionContext } from "../extensions/overlay-types";
5
+ export type OverlayExtensionContext = {
6
+ container: HTMLElement;
7
+ insertText: (text: string) => void;
8
+ replaceText: (oldText: string, newText: string) => void;
9
+ getSelection: () => {
10
+ start: number;
11
+ end: number;
12
+ } | null;
13
+ contentRoot?: HTMLElement;
14
+ overlayRoot?: HTMLElement;
15
+ toOverlayRect?: (rect: DOMRectReadOnly) => {
16
+ top: number;
17
+ left: number;
18
+ width: number;
19
+ height: number;
20
+ };
21
+ };
6
22
  type BlockParseResult = {
7
23
  block: Block;
8
24
  nextPos: number;
@@ -26,6 +42,8 @@ export type EditCommand = {
26
42
  text: string;
27
43
  } | {
28
44
  type: "insert-line-break";
45
+ } | {
46
+ type: "exit-block-wrapper";
29
47
  } | {
30
48
  type: "delete-backward";
31
49
  } | {
@@ -89,7 +107,7 @@ export type CakeExtension = {
89
107
  serializeInline?: (inline: Inline, context: ExtensionContext) => SerializeInlineResult | null;
90
108
  normalizeBlock?: (block: Block) => Block | null;
91
109
  normalizeInline?: (inline: Inline) => Inline | null;
92
- onEdit?: (command: EditCommand, state: RuntimeState) => EditResult | null;
110
+ onEdit?: (command: EditCommand, state: RuntimeState) => EditResult | EditCommand | null;
93
111
  onPasteText?: (text: string, state: RuntimeState) => EditCommand | null;
94
112
  keybindings?: KeyBinding[];
95
113
  renderInline?: (inline: Inline, context: DomRenderContext) => Node | Node[] | null;
@@ -10,13 +10,10 @@ export type SelectionCaretMeasurement = {
10
10
  lineRect: LayoutRect;
11
11
  caretRect: LayoutRect;
12
12
  lineLength: number;
13
- lineHeight: number | null;
14
- fontSize: number | null;
15
13
  padding: {
16
14
  top: number;
17
15
  bottom: number;
18
16
  };
19
- nearestTextCaretHeight: number | null;
20
17
  };
21
18
  export type OffsetToXMeasurer = (lineIndex: number, offsetInLine: number) => number | null;
22
19
  export declare function computeSelectionRects(layout: LayoutModel, selection: Selection, measurer?: OffsetToXMeasurer): SelectionRect[];
@@ -10,4 +10,4 @@ import { listExtension } from "./list/list";
10
10
  import { scrollbarExtension } from "./scrollbar";
11
11
  import { strikethroughExtension } from "./strikethrough/strikethrough";
12
12
  export { boldExtension, combinedEmphasisExtension, linkExtension, pipeLinkExtension, blockquoteExtension, italicExtension, headingExtension, imageExtension, listExtension, scrollbarExtension, strikethroughExtension, };
13
- export declare const bundledExtensions: import("../core/runtime").CakeExtension[];
13
+ export declare const bundledExtensions: import("../..").CakeExtension[];
@@ -1,2 +1,2 @@
1
- import type { OverlayExtension } from "../overlay-types";
2
- export declare const scrollbarExtension: OverlayExtension;
1
+ import type { CakeExtension } from "../../core/runtime";
2
+ export declare const scrollbarExtension: CakeExtension;
@@ -1 +1,2 @@
1
1
  export { CakeEditor } from "./react/CakeEditor";
2
+ export type { CakeEditorProps, CakeEditorRef, CakeEditorSelection, CakeEditorUpdate, } from "./react/CakeEditor";
@@ -1,8 +1,42 @@
1
- import type { EditorProps, EditorRefHandle } from "../../editor";
2
- import type { CakeExtensionBundle } from "../extensions/types";
3
- export type CakeEditorProps = Omit<EditorProps, "ref"> & {
4
- extensionBundles?: CakeExtensionBundle[];
1
+ import type { StateCommand } from "@codemirror/state";
2
+ import type { CakeExtension } from "../core/runtime";
3
+ export type CakeEditorSelection = {
4
+ start: number;
5
+ end: number;
6
+ affinity?: "backward" | "forward";
5
7
  };
6
- export declare const CakeEditor: import("react").ForwardRefExoticComponent<Omit<EditorProps, "ref"> & {
7
- extensionBundles?: CakeExtensionBundle[];
8
- } & import("react").RefAttributes<EditorRefHandle | null>>;
8
+ export interface CakeEditorUpdate {
9
+ value?: string;
10
+ selection?: CakeEditorSelection;
11
+ focus?: boolean;
12
+ }
13
+ export interface CakeEditorProps {
14
+ value: string;
15
+ onChange: (value: string) => void;
16
+ selection?: CakeEditorSelection;
17
+ onSelectionChange?: (start: number, end: number, affinity?: "backward" | "forward") => void;
18
+ placeholder?: string;
19
+ disabled?: boolean;
20
+ spellCheck?: boolean;
21
+ className?: string;
22
+ style?: React.CSSProperties;
23
+ extensions?: CakeExtension[];
24
+ onBlur?: (event?: FocusEvent) => void;
25
+ }
26
+ export interface CakeEditorRef {
27
+ element: HTMLElement | null;
28
+ focus: (selection?: CakeEditorSelection) => void;
29
+ blur: () => void;
30
+ hasFocus: () => boolean;
31
+ selectAll: () => void;
32
+ executeCommand: (command: StateCommand) => boolean;
33
+ applyUpdate: (update: CakeEditorUpdate) => void;
34
+ getValue: () => string;
35
+ getSelection: () => {
36
+ start: number;
37
+ end: number;
38
+ } | null;
39
+ insertText: (text: string) => void;
40
+ replaceText: (oldText: string, newText: string) => void;
41
+ }
42
+ export declare const CakeEditor: import("react").ForwardRefExoticComponent<CakeEditorProps & import("react").RefAttributes<CakeEditorRef | null>>;