@zsviczian/excalidraw 0.18.0-66 → 0.18.0-67

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zsviczian/excalidraw",
3
- "version": "0.18.0-66",
3
+ "version": "0.18.0-67",
4
4
  "main": "main.js",
5
5
  "module": "./dist/prod/index.js",
6
6
  "source": "./index.tsx",
@@ -46,6 +46,14 @@ interface KeyBlocker {
46
46
  isBlockingKeys(): boolean;
47
47
  close(): void;
48
48
  }
49
- export declare const attachInlineLinkSuggester: (inputEl: HTMLInputElement | HTMLTextAreaElement, widthWrapper?: HTMLElement, container?: HTMLDivElement | null) => KeyBlocker;
49
+ /**
50
+ * Attaches an inline link suggester to the specified input element.
51
+ * @param inputEl The HTML input element to attach the suggester to.
52
+ * @param widthWrapper Optional HTML element to wrap the width of suggester element.
53
+ * @param containerEl Optional container element used as collision boundary.
54
+ * @param surpessPlaceholder Whether to suppress the placeholder text. Defaults to true.
55
+ * @returns A KeyBlocker instance for managing keyboard input.
56
+ */
57
+ export declare const attachInlineLinkSuggester: (inputEl: HTMLInputElement | HTMLTextAreaElement, widthWrapper?: HTMLElement, container?: HTMLDivElement | null, surpessPlaceholder?: boolean) => KeyBlocker;
50
58
  export declare const syncElementLinkWithText: () => boolean;
51
59
  export {};