@atlaskit/insm 3.0.39 → 3.0.40

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/insm
2
2
 
3
+ ## 3.0.40
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 3.0.39
4
10
 
5
11
  ### Patch Changes
package/dist/cjs/insm.js CHANGED
@@ -8,9 +8,9 @@ exports.INSM = void 0;
8
8
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
9
9
  var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
10
10
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
11
- var _insmSession = require("./insm-session");
12
- var _inp = require("./inp-measurers/inp");
13
11
  var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
12
+ var _inp = require("./inp-measurers/inp");
13
+ var _insmSession = require("./insm-session");
14
14
  var INSM = exports.INSM = /*#__PURE__*/function () {
15
15
  function INSM(options) {
16
16
  var _this = this;
@@ -3,7 +3,6 @@ import Bowser from 'bowser-ultralight';
3
3
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
4
4
  import { PeriodTracking } from './insm-period';
5
5
  import { LongAnimationFrameMeasurer } from './session-measurers/LongAnimationFrameMeasurer';
6
-
7
6
  /**
8
7
  * Only intended for internal use.
9
8
  *
@@ -1,7 +1,7 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- import { INSMSession } from './insm-session';
3
- import { INPTracker } from './inp-measurers/inp';
4
2
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
3
+ import { INPTracker } from './inp-measurers/inp';
4
+ import { INSMSession } from './insm-session';
5
5
  export class INSM {
6
6
  constructor(options) {
7
7
  /**
@@ -10,7 +10,6 @@ import Bowser from 'bowser-ultralight';
10
10
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
11
11
  import { PeriodTracking } from './insm-period';
12
12
  import { LongAnimationFrameMeasurer } from './session-measurers/LongAnimationFrameMeasurer';
13
-
14
13
  /**
15
14
  * Only intended for internal use.
16
15
  *
package/dist/esm/insm.js CHANGED
@@ -1,9 +1,9 @@
1
1
  import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
2
2
  import _createClass from "@babel/runtime/helpers/createClass";
3
3
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
4
- import { INSMSession } from './insm-session';
5
- import { INPTracker } from './inp-measurers/inp';
6
4
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
5
+ import { INPTracker } from './inp-measurers/inp';
6
+ import { INSMSession } from './insm-session';
7
7
  export var INSM = /*#__PURE__*/function () {
8
8
  function INSM(options) {
9
9
  var _this = this;
@@ -1,6 +1,6 @@
1
- import type { INSMOptions } from './types';
2
- import type { INSMSession } from './insm-session';
3
1
  import { INSM } from './insm';
2
+ import type { INSMSession } from './insm-session';
3
+ import type { INSMOptions } from './types';
4
4
  /**
5
5
  * Initializes the INSM (Interactivity Session Measurement) tooling
6
6
  */
@@ -1,7 +1,7 @@
1
1
  import type { INSM } from './insm';
2
- import type { AddedProperties, ExperienceProperties } from './types';
3
2
  import { PeriodTracking } from './insm-period';
4
3
  import { LongAnimationFrameMeasurer } from './session-measurers/LongAnimationFrameMeasurer';
4
+ import type { AddedProperties, ExperienceProperties } from './types';
5
5
  /**
6
6
  * Only intended for internal use.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  import type { AnalyticsWebClient } from '@atlaskit/analytics-listeners/types';
2
+ import { INPTracker } from './inp-measurers/inp';
2
3
  import { INSMSession } from './insm-session';
3
4
  import type { ExperienceProperties, INSMOptions } from './types';
4
- import { INPTracker } from './inp-measurers/inp';
5
5
  export declare class INSM {
6
6
  analyticsWebClient?: AnalyticsWebClient;
7
7
  runningSession?: INSMSession;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/insm",
3
- "version": "3.0.39",
3
+ "version": "3.0.40",
4
4
  "description": "INSM tooling measures user-perceived interactivity of a page",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -23,7 +23,7 @@
23
23
  "atlaskit:src": "src/index.ts",
24
24
  "dependencies": {
25
25
  "@atlaskit/analytics-listeners": "^11.4.0",
26
- "@atlaskit/tmp-editor-statsig": "^200.0.0",
26
+ "@atlaskit/tmp-editor-statsig": "^201.0.0",
27
27
  "@babel/runtime": "^7.0.0",
28
28
  "bowser-ultralight": "^1.0.6"
29
29
  },