@inboxsdk/core 2.2.24 → 2.2.25

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 CHANGED
@@ -18054,7 +18054,7 @@ options.insert = htmlElement => {
18054
18054
  htmlElement.setAttribute('data-inboxsdk-version',
18055
18055
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
18056
18056
  ///@ts-ignore
18057
- "2.2.24-1789167568236-ec7ea453503a0810");
18057
+ "2.2.25-1789503114749-e341549104bf091e");
18058
18058
  document.head.append(htmlElement);
18059
18059
  };
18060
18060
  options.domAPI = (styleDomAPI_default());
@@ -25814,7 +25814,7 @@ module.exports = assocIndexOf;
25814
25814
 
25815
25815
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- SDK_VERSION is injected by webpack
25816
25816
  ///@ts-ignore
25817
- const BUILD_VERSION = "2.2.24-1789167568236-ec7ea453503a0810";
25817
+ const BUILD_VERSION = "2.2.25-1789503114749-e341549104bf091e";
25818
25818
  if (false) {}
25819
25819
 
25820
25820
  /***/ }),
@@ -27606,7 +27606,7 @@ options.insert = htmlElement => {
27606
27606
  htmlElement.setAttribute('data-inboxsdk-version',
27607
27607
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
27608
27608
  ///@ts-ignore
27609
- "2.2.24-1789167568236-ec7ea453503a0810");
27609
+ "2.2.25-1789503114749-e341549104bf091e");
27610
27610
  document.head.append(htmlElement);
27611
27611
  };
27612
27612
  options.domAPI = (styleDomAPI_default());
@@ -48323,7 +48323,7 @@ options.insert = htmlElement => {
48323
48323
  htmlElement.setAttribute('data-inboxsdk-version',
48324
48324
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
48325
48325
  ///@ts-ignore
48326
- "2.2.24-1789167568236-ec7ea453503a0810");
48326
+ "2.2.25-1789503114749-e341549104bf091e");
48327
48327
  document.head.append(htmlElement);
48328
48328
  };
48329
48329
  options.domAPI = (styleDomAPI_default());
@@ -49447,7 +49447,11 @@ class GmailRouteView {
49447
49447
  attributes: true,
49448
49448
  attributeFilter: ['style', 'class']
49449
49449
  }).filter(mutations => mutations.some(mutation => !sectionsContainer.contains(mutation.target))).takeUntilBy(this._stopper).onValue(() => {
49450
- placeSectionsContainer(main, sectionsContainer, selectors);
49450
+ // Placement reads computed style. Waiting for the next frame keeps that read
49451
+ // out of Gmail's row hover handling, where it makes the hover toolbar flicker.
49452
+ requestAnimationFrame(() => {
49453
+ placeSectionsContainer(main, sectionsContainer, selectors);
49454
+ });
49451
49455
  });
49452
49456
  }
49453
49457
  _getCustomParams() {
@@ -53158,7 +53162,7 @@ mole_view_module_options.insert = htmlElement => {
53158
53162
  htmlElement.setAttribute('data-inboxsdk-version',
53159
53163
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
53160
53164
  ///@ts-ignore
53161
- "2.2.24-1789167568236-ec7ea453503a0810");
53165
+ "2.2.25-1789503114749-e341549104bf091e");
53162
53166
  document.head.append(htmlElement);
53163
53167
  };
53164
53168
  mole_view_module_options.domAPI = (styleDomAPI_default());