@deepdesk/deepdesk-sdk 16.0.1 → 16.0.2-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/dist/index.cjs.js +6 -6
- package/dist/index.d.mts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.esm.js +7 -7
- package/dist/index.iife.js +21 -21
- package/input.css +1 -1
- package/package.json +1 -4
- package/styles/index.js +1 -1
- package/styles.css +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2468,9 +2468,7 @@ interface InsertCKEditorOptions {
|
|
|
2468
2468
|
}
|
|
2469
2469
|
declare function insertCKEditor(element: HTMLElement, insertText: string, { isBlock, isHTML }?: InsertCKEditorOptions): Promise<void>;
|
|
2470
2470
|
|
|
2471
|
-
|
|
2472
|
-
(): void;
|
|
2473
|
-
}
|
|
2471
|
+
type Cancelable = () => void;
|
|
2474
2472
|
/**
|
|
2475
2473
|
* Get notified when a specific element changes from visible or invisible in the DOM
|
|
2476
2474
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -2468,9 +2468,7 @@ interface InsertCKEditorOptions {
|
|
|
2468
2468
|
}
|
|
2469
2469
|
declare function insertCKEditor(element: HTMLElement, insertText: string, { isBlock, isHTML }?: InsertCKEditorOptions): Promise<void>;
|
|
2470
2470
|
|
|
2471
|
-
|
|
2472
|
-
(): void;
|
|
2473
|
-
}
|
|
2471
|
+
type Cancelable = () => void;
|
|
2474
2472
|
/**
|
|
2475
2473
|
* Get notified when a specific element changes from visible or invisible in the DOM
|
|
2476
2474
|
*/
|