@meetelise/chat 1.43.22 → 1.43.24
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/src/WebComponent/me-chat.d.ts +6 -0
- package/package.json +1 -1
- package/public/dist/index.js +192 -120
- package/src/WebComponent/actions/details-window.ts +9 -2
- package/src/WebComponent/actions/minimize-expand-button.ts +4 -2
- package/src/WebComponent/launcher/Launcher.ts +168 -124
- package/src/WebComponent/launcher/mobile-launcher.ts +29 -19
- package/src/WebComponent/launcher/typeEmojiStyles.ts +3 -0
- package/src/WebComponent/launcher/typeMiniStyles.ts +5 -0
- package/src/WebComponent/launcher/typeMobileStyles.ts +2 -0
- package/src/WebComponent/me-chat.ts +57 -22
- package/src/WebComponent/simple-launcher/simple-launcher.ts +10 -2
- package/src/logCdnVersion.ts +3 -0
|
@@ -69,6 +69,12 @@ export declare class MEChat extends LitElement {
|
|
|
69
69
|
handleContactTabClicked: (e: MouseEvent) => void;
|
|
70
70
|
adjustPositionChatAdditionalActions: () => void;
|
|
71
71
|
connectedCallback(): void;
|
|
72
|
+
private static readonly FOCUSABLE_SELECTOR;
|
|
73
|
+
/**
|
|
74
|
+
* Recursively collects focusable elements, piercing shadow DOM boundaries.
|
|
75
|
+
*/
|
|
76
|
+
private static isFocusable;
|
|
77
|
+
private collectFocusableElements;
|
|
72
78
|
handleKeydownTab: (e: KeyboardEvent) => void;
|
|
73
79
|
getDeepActiveElement(): Element | null;
|
|
74
80
|
updated(): void;
|