@atlaskit/editor-plugin-show-diff 15.1.3 → 15.1.5

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.
Files changed (51) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/dist/cjs/pm-plugins/calculateDiff/calculateDiffDecorations.js +6 -1
  3. package/dist/cjs/pm-plugins/calculateDiff/diffBySteps.js +2 -31
  4. package/dist/cjs/pm-plugins/calculateDiff/smart/classifySmartChanges.js +3 -2
  5. package/dist/cjs/pm-plugins/calculateDiff/smart/segmentText.js +3 -34
  6. package/dist/cjs/pm-plugins/decorations/createContributorTagWidget.js +49 -23
  7. package/dist/cjs/pm-plugins/decorations/createInlineChangedDecoration.js +9 -2
  8. package/dist/cjs/pm-plugins/decorations/createNodeChangedDecorationWidget.js +7 -2
  9. package/dist/cjs/pm-plugins/decorations/extractContributorTags.js +38 -10
  10. package/dist/cjs/pm-plugins/utils/charsByOffset.js +45 -0
  11. package/dist/cjs/pm-plugins/utils/hasVisibleContent.js +37 -0
  12. package/dist/cjs/showDiffPlugin.js +6 -1
  13. package/dist/cjs/ui/ContributorTag/contributorTagController.js +1 -1
  14. package/dist/cjs/ui/IndicatorBar/IndicatorBar.js +1 -1
  15. package/dist/cjs/ui/IndicatorBar/IndicatorBarContentComponent.js +1 -1
  16. package/dist/es2019/pm-plugins/calculateDiff/calculateDiffDecorations.js +6 -1
  17. package/dist/es2019/pm-plugins/calculateDiff/diffBySteps.js +1 -30
  18. package/dist/es2019/pm-plugins/calculateDiff/smart/classifySmartChanges.js +2 -1
  19. package/dist/es2019/pm-plugins/calculateDiff/smart/segmentText.js +2 -28
  20. package/dist/es2019/pm-plugins/decorations/createContributorTagWidget.js +40 -15
  21. package/dist/es2019/pm-plugins/decorations/createInlineChangedDecoration.js +10 -3
  22. package/dist/es2019/pm-plugins/decorations/createNodeChangedDecorationWidget.js +7 -2
  23. package/dist/es2019/pm-plugins/decorations/extractContributorTags.js +27 -3
  24. package/dist/es2019/pm-plugins/utils/charsByOffset.js +37 -0
  25. package/dist/es2019/pm-plugins/utils/hasVisibleContent.js +28 -0
  26. package/dist/es2019/showDiffPlugin.js +6 -1
  27. package/dist/es2019/ui/ContributorTag/contributorTagController.js +1 -1
  28. package/dist/es2019/ui/IndicatorBar/IndicatorBar.js +1 -1
  29. package/dist/es2019/ui/IndicatorBar/IndicatorBarContentComponent.js +1 -1
  30. package/dist/esm/pm-plugins/calculateDiff/calculateDiffDecorations.js +6 -1
  31. package/dist/esm/pm-plugins/calculateDiff/diffBySteps.js +1 -30
  32. package/dist/esm/pm-plugins/calculateDiff/smart/classifySmartChanges.js +2 -1
  33. package/dist/esm/pm-plugins/calculateDiff/smart/segmentText.js +2 -32
  34. package/dist/esm/pm-plugins/decorations/createContributorTagWidget.js +48 -22
  35. package/dist/esm/pm-plugins/decorations/createInlineChangedDecoration.js +10 -3
  36. package/dist/esm/pm-plugins/decorations/createNodeChangedDecorationWidget.js +7 -2
  37. package/dist/esm/pm-plugins/decorations/extractContributorTags.js +38 -10
  38. package/dist/esm/pm-plugins/utils/charsByOffset.js +39 -0
  39. package/dist/esm/pm-plugins/utils/hasVisibleContent.js +32 -0
  40. package/dist/esm/showDiffPlugin.js +6 -1
  41. package/dist/esm/ui/ContributorTag/contributorTagController.js +1 -1
  42. package/dist/esm/ui/IndicatorBar/IndicatorBar.js +1 -1
  43. package/dist/esm/ui/IndicatorBar/IndicatorBarContentComponent.js +1 -1
  44. package/dist/types/pm-plugins/calculateDiff/smart/segmentText.d.ts +0 -9
  45. package/dist/types/pm-plugins/decorations/createContributorTagWidget.d.ts +4 -3
  46. package/dist/types/pm-plugins/decorations/extractContributorTags.d.ts +1 -1
  47. package/dist/types/pm-plugins/utils/charsByOffset.d.ts +16 -0
  48. package/dist/types/pm-plugins/utils/hasVisibleContent.d.ts +13 -0
  49. package/dist/types/ui/ContributorTag/contributorTagController.d.ts +1 -1
  50. package/package.json +4 -4
  51. package/afm-cc/tsconfig.json +0 -63
@@ -1,63 +0,0 @@
1
- {
2
- "extends": "../../../../tsconfig.local-consumption.json",
3
- "compilerOptions": {
4
- "outDir": "../../../../../confluence/tsDist/@atlaskit__editor-plugin-show-diff",
5
- "rootDir": "../",
6
- "composite": true,
7
- "noCheck": true
8
- },
9
- "include": [
10
- "../src/**/*.ts",
11
- "../src/**/*.tsx"
12
- ],
13
- "exclude": [
14
- "../src/**/__tests__/*",
15
- "../src/**/*.test.*",
16
- "../src/**/test.*",
17
- "../src/**/examples.*"
18
- ],
19
- "references": [
20
- {
21
- "path": "../../adf-schema/afm-cc/tsconfig.json"
22
- },
23
- {
24
- "path": "../../../design-system/avatar/afm-cc/tsconfig.json"
25
- },
26
- {
27
- "path": "../../custom-steps/afm-cc/tsconfig.json"
28
- },
29
- {
30
- "path": "../../editor-plugin-analytics/afm-cc/tsconfig.json"
31
- },
32
- {
33
- "path": "../../editor-plugin-user-intent/afm-cc/tsconfig.json"
34
- },
35
- {
36
- "path": "../../editor-prosemirror/afm-cc/tsconfig.json"
37
- },
38
- {
39
- "path": "../../editor-shared-styles/afm-cc/tsconfig.json"
40
- },
41
- {
42
- "path": "../../editor-tables/afm-cc/tsconfig.json"
43
- },
44
- {
45
- "path": "../../../platform/feature-experiments/afm-cc/tsconfig.json"
46
- },
47
- {
48
- "path": "../../../platform/feature-flags/afm-cc/tsconfig.json"
49
- },
50
- {
51
- "path": "../../../design-system/primitives/afm-cc/tsconfig.json"
52
- },
53
- {
54
- "path": "../../tmp-editor-statsig/afm-cc/tsconfig.json"
55
- },
56
- {
57
- "path": "../../../design-system/tokens/afm-cc/tsconfig.json"
58
- },
59
- {
60
- "path": "../../editor-common/afm-cc/tsconfig.json"
61
- }
62
- ]
63
- }