@atlaskit/adf-utils 19.26.4 → 19.27.0

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,12 @@
1
1
  # @atlaskit/adf-utils
2
2
 
3
+ ## 19.27.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`e04e057af7743`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e04e057af7743) -
8
+ Adds scrubbed localId and commands to analytics to help narrow root cause issues.
9
+
3
10
  ## 19.26.4
4
11
 
5
12
  ### Patch Changes
package/dist/cjs/scrub.js CHANGED
@@ -10,4 +10,11 @@ Object.defineProperty(exports, "scrubAdf", {
10
10
  return _scrubAdf.default;
11
11
  }
12
12
  });
13
- var _scrubAdf = _interopRequireDefault(require("./scrub/scrub-adf"));
13
+ Object.defineProperty(exports, "scrubStr", {
14
+ enumerable: true,
15
+ get: function get() {
16
+ return _scrubContent.scrubStr;
17
+ }
18
+ });
19
+ var _scrubAdf = _interopRequireDefault(require("./scrub/scrub-adf"));
20
+ var _scrubContent = require("./scrub/scrub-content");
@@ -1,4 +1,5 @@
1
1
  // Disable no-re-export rule for entry point files
2
2
  /* eslint-disable @atlaskit/editor/no-re-export */
3
3
 
4
- export { default as scrubAdf } from './scrub/scrub-adf';
4
+ export { default as scrubAdf } from './scrub/scrub-adf';
5
+ export { scrubStr } from './scrub/scrub-content';
package/dist/esm/scrub.js CHANGED
@@ -1,4 +1,5 @@
1
1
  // Disable no-re-export rule for entry point files
2
2
  /* eslint-disable @atlaskit/editor/no-re-export */
3
3
 
4
- export { default as scrubAdf } from './scrub/scrub-adf';
4
+ export { default as scrubAdf } from './scrub/scrub-adf';
5
+ export { scrubStr } from './scrub/scrub-content';
@@ -1 +1,2 @@
1
1
  export { default as scrubAdf } from './scrub/scrub-adf';
2
+ export { scrubStr } from './scrub/scrub-content';
@@ -1 +1,2 @@
1
1
  export { default as scrubAdf } from './scrub/scrub-adf';
2
+ export { scrubStr } from './scrub/scrub-content';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-utils",
3
- "version": "19.26.4",
3
+ "version": "19.27.0",
4
4
  "description": "Set of utilities to traverse, modify and create ADF documents.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -26,12 +26,12 @@
26
26
  "team": "Editor: Collaboration"
27
27
  },
28
28
  "dependencies": {
29
- "@atlaskit/adf-schema": "^51.5.1",
29
+ "@atlaskit/adf-schema": "^51.5.0",
30
30
  "@atlaskit/platform-feature-flags": "^1.1.0",
31
31
  "@babel/runtime": "^7.0.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@atlassian/adf-schema-json": "^1.31.0",
34
+ "@atlassian/adf-schema-json": "^1.33.0",
35
35
  "@atlassian/feature-flags-test-utils": "^1.0.0",
36
36
  "react": "^18.2.0",
37
37
  "wait-for-expect": "^1.2.0"
@@ -1,23 +0,0 @@
1
- {
2
- "extends": "../tsconfig",
3
- "compilerOptions": {
4
- "declaration": true,
5
- "target": "es5",
6
- "paths": {}
7
- },
8
- "include": [
9
- "../src/**/*.ts",
10
- "../src/**/*.tsx"
11
- ],
12
- "exclude": [
13
- "../src/**/__tests__/*",
14
- "../src/**/*.test.*",
15
- "../src/**/test.*",
16
- "../src/**/examples.*",
17
- "../src/**/examples/*",
18
- "../src/**/examples/**/*",
19
- "../src/**/*.stories.*",
20
- "../src/**/stories/*",
21
- "../src/**/stories/**/*"
22
- ]
23
- }