@inboxsdk/core
Advanced tools
Comparing version 2.1.43 to 2.1.44
{ | ||
"name": "@inboxsdk/core", | ||
"version": "2.1.43", | ||
"version": "2.1.44", | ||
"description": "Library for building browser extensions for Gmail", | ||
@@ -5,0 +5,0 @@ "main": "inboxsdk.js", |
@@ -421,3 +421,3 @@ import { EventEmitter } from 'events'; | ||
hasDropdown?: boolean; | ||
onClick(e: MouseEvent): void; | ||
onClick(e?: MouseEvent): void; | ||
activateFunction?: (e: Event) => void; | ||
@@ -424,0 +424,0 @@ buttonColor?: string; |
@@ -12,3 +12,6 @@ import * as Kefir from 'kefir'; | ||
import type GmailRouteView from './gmail-route-view/gmail-route-view'; | ||
import BasicButtonViewController from '../../../widgets/buttons/basic-button-view-controller'; | ||
import { type ButtonDescriptor } from '../../../../inboxsdk'; | ||
declare class GmailThreadView { | ||
#private; | ||
_element: HTMLElement; | ||
@@ -62,2 +65,3 @@ _routeViewDriver: any; | ||
addLabel(): SimpleElementView; | ||
addSubjectButton(button: ButtonDescriptor): BasicButtonViewController; | ||
_setupToolbarView(): void; | ||
@@ -64,0 +68,0 @@ _findToolbarElement(): HTMLElement | null | undefined; |
@@ -7,6 +7,6 @@ import type Membrane from '../../lib/Membrane'; | ||
import type CustomMessageView from '../../views/conversations/custom-message-view'; | ||
import type { Contact } from '../../../inboxsdk'; | ||
import type { ButtonDescriptor, Contact } from '../../../inboxsdk'; | ||
import type TypedEventEmitter from 'typed-emitter'; | ||
import { type ContentPanelDescriptor } from '../../driver-common/sidebar/ContentPanelViewDriver'; | ||
import type { Descriptor } from '../../../types/descriptor'; | ||
import { Descriptor } from '../../../types/descriptor'; | ||
export type ThreadViewEvents = { | ||
@@ -49,4 +49,8 @@ destroy(): void; | ||
addLabel(): SimpleElementView; | ||
/** | ||
* @internal | ||
*/ | ||
addSubjectButton(buttonDescriptor: ButtonDescriptor): import("../../widgets/buttons/basic-button-view-controller").default; | ||
} | ||
export default ThreadView; | ||
//# sourceMappingURL=thread-view.d.ts.map |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3394303
76648