@deepdesk/deepdesk-sdk 16.0.1 → 16.0.2-beta.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.
- package/dialogs.css +1 -1
- package/dist/index.cjs.js +7 -7
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.esm.js +8 -8
- package/dist/index.iife.js +46 -46
- 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
|
@@ -1633,6 +1633,8 @@ declare const styles$l: {
|
|
|
1633
1633
|
readonly "listItemSelected": string;
|
|
1634
1634
|
readonly "listItemText": string;
|
|
1635
1635
|
readonly "listItemTitle": string;
|
|
1636
|
+
readonly "listItemTooltip": string;
|
|
1637
|
+
readonly "listItemTooltipContent": string;
|
|
1636
1638
|
readonly "listMoreButton": string;
|
|
1637
1639
|
readonly "listWrapper": string;
|
|
1638
1640
|
readonly "page": string;
|
|
@@ -2468,9 +2470,7 @@ interface InsertCKEditorOptions {
|
|
|
2468
2470
|
}
|
|
2469
2471
|
declare function insertCKEditor(element: HTMLElement, insertText: string, { isBlock, isHTML }?: InsertCKEditorOptions): Promise<void>;
|
|
2470
2472
|
|
|
2471
|
-
|
|
2472
|
-
(): void;
|
|
2473
|
-
}
|
|
2473
|
+
type Cancelable = () => void;
|
|
2474
2474
|
/**
|
|
2475
2475
|
* Get notified when a specific element changes from visible or invisible in the DOM
|
|
2476
2476
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1633,6 +1633,8 @@ declare const styles$l: {
|
|
|
1633
1633
|
readonly "listItemSelected": string;
|
|
1634
1634
|
readonly "listItemText": string;
|
|
1635
1635
|
readonly "listItemTitle": string;
|
|
1636
|
+
readonly "listItemTooltip": string;
|
|
1637
|
+
readonly "listItemTooltipContent": string;
|
|
1636
1638
|
readonly "listMoreButton": string;
|
|
1637
1639
|
readonly "listWrapper": string;
|
|
1638
1640
|
readonly "page": string;
|
|
@@ -2468,9 +2470,7 @@ interface InsertCKEditorOptions {
|
|
|
2468
2470
|
}
|
|
2469
2471
|
declare function insertCKEditor(element: HTMLElement, insertText: string, { isBlock, isHTML }?: InsertCKEditorOptions): Promise<void>;
|
|
2470
2472
|
|
|
2471
|
-
|
|
2472
|
-
(): void;
|
|
2473
|
-
}
|
|
2473
|
+
type Cancelable = () => void;
|
|
2474
2474
|
/**
|
|
2475
2475
|
* Get notified when a specific element changes from visible or invisible in the DOM
|
|
2476
2476
|
*/
|