@inboxsdk/core 2.1.41 → 2.1.42
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/inboxsdk.js +4 -4
- package/package.json +1 -1
- package/src/inboxsdk.d.ts +6 -1
package/inboxsdk.js
CHANGED
|
@@ -890,7 +890,7 @@ function isNotNil(value) {
|
|
|
890
890
|
|
|
891
891
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment -- SDK_VERSION is injected by webpack
|
|
892
892
|
///@ts-ignore
|
|
893
|
-
const BUILD_VERSION = "2.1.
|
|
893
|
+
const BUILD_VERSION = "2.1.42-1712843944393-eefba96fc08d5630";
|
|
894
894
|
if (false) {}
|
|
895
895
|
|
|
896
896
|
/***/ }),
|
|
@@ -10629,7 +10629,7 @@ options.insert = htmlElement => {
|
|
|
10629
10629
|
htmlElement.setAttribute('data-inboxsdk-version',
|
|
10630
10630
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
|
|
10631
10631
|
///@ts-ignore
|
|
10632
|
-
"2.1.
|
|
10632
|
+
"2.1.42-1712843944393-eefba96fc08d5630");
|
|
10633
10633
|
document.head.append(htmlElement);
|
|
10634
10634
|
};
|
|
10635
10635
|
options.domAPI = (styleDomAPI_default());
|
|
@@ -15158,7 +15158,7 @@ options.insert = htmlElement => {
|
|
|
15158
15158
|
htmlElement.setAttribute('data-inboxsdk-version',
|
|
15159
15159
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
|
|
15160
15160
|
///@ts-ignore
|
|
15161
|
-
"2.1.
|
|
15161
|
+
"2.1.42-1712843944393-eefba96fc08d5630");
|
|
15162
15162
|
document.head.append(htmlElement);
|
|
15163
15163
|
};
|
|
15164
15164
|
options.domAPI = (styleDomAPI_default());
|
|
@@ -19649,7 +19649,7 @@ mole_view_module_options.insert = htmlElement => {
|
|
|
19649
19649
|
htmlElement.setAttribute('data-inboxsdk-version',
|
|
19650
19650
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
|
|
19651
19651
|
///@ts-ignore
|
|
19652
|
-
"2.1.
|
|
19652
|
+
"2.1.42-1712843944393-eefba96fc08d5630");
|
|
19653
19653
|
document.head.append(htmlElement);
|
|
19654
19654
|
};
|
|
19655
19655
|
mole_view_module_options.domAPI = (styleDomAPI_default());
|
package/package.json
CHANGED
package/src/inboxsdk.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ import type ComposeView from './platform-implementation-js/views/compose-view';
|
|
|
31
31
|
import type Search from './platform-implementation-js/namespaces/search';
|
|
32
32
|
import type {
|
|
33
33
|
default as Toolbars,
|
|
34
|
+
LegacyToolbarButtonOnClickEvent,
|
|
34
35
|
LegacyToolbarButtonDescriptor,
|
|
35
36
|
} from './platform-implementation-js/namespaces/toolbars';
|
|
36
37
|
import type CollapsibleSectionView from './platform-implementation-js/views/collapsible-section-view';
|
|
@@ -142,7 +143,11 @@ export interface Widgets {
|
|
|
142
143
|
showTopMessageBarView(opts: { el: Element }): TopMessageBarView;
|
|
143
144
|
}
|
|
144
145
|
|
|
145
|
-
export {
|
|
146
|
+
export {
|
|
147
|
+
Toolbars,
|
|
148
|
+
LegacyToolbarButtonDescriptor,
|
|
149
|
+
LegacyToolbarButtonOnClickEvent,
|
|
150
|
+
};
|
|
146
151
|
export {
|
|
147
152
|
ToolbarButtonDescriptor,
|
|
148
153
|
ToolbarButtonOnClickEvent,
|