@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.
- package/CHANGELOG.md +29 -0
- package/dist/cjs/pm-plugins/calculateDiff/calculateDiffDecorations.js +6 -1
- package/dist/cjs/pm-plugins/calculateDiff/diffBySteps.js +2 -31
- package/dist/cjs/pm-plugins/calculateDiff/smart/classifySmartChanges.js +3 -2
- package/dist/cjs/pm-plugins/calculateDiff/smart/segmentText.js +3 -34
- package/dist/cjs/pm-plugins/decorations/createContributorTagWidget.js +49 -23
- package/dist/cjs/pm-plugins/decorations/createInlineChangedDecoration.js +9 -2
- package/dist/cjs/pm-plugins/decorations/createNodeChangedDecorationWidget.js +7 -2
- package/dist/cjs/pm-plugins/decorations/extractContributorTags.js +38 -10
- package/dist/cjs/pm-plugins/utils/charsByOffset.js +45 -0
- package/dist/cjs/pm-plugins/utils/hasVisibleContent.js +37 -0
- package/dist/cjs/showDiffPlugin.js +6 -1
- package/dist/cjs/ui/ContributorTag/contributorTagController.js +1 -1
- package/dist/cjs/ui/IndicatorBar/IndicatorBar.js +1 -1
- package/dist/cjs/ui/IndicatorBar/IndicatorBarContentComponent.js +1 -1
- package/dist/es2019/pm-plugins/calculateDiff/calculateDiffDecorations.js +6 -1
- package/dist/es2019/pm-plugins/calculateDiff/diffBySteps.js +1 -30
- package/dist/es2019/pm-plugins/calculateDiff/smart/classifySmartChanges.js +2 -1
- package/dist/es2019/pm-plugins/calculateDiff/smart/segmentText.js +2 -28
- package/dist/es2019/pm-plugins/decorations/createContributorTagWidget.js +40 -15
- package/dist/es2019/pm-plugins/decorations/createInlineChangedDecoration.js +10 -3
- package/dist/es2019/pm-plugins/decorations/createNodeChangedDecorationWidget.js +7 -2
- package/dist/es2019/pm-plugins/decorations/extractContributorTags.js +27 -3
- package/dist/es2019/pm-plugins/utils/charsByOffset.js +37 -0
- package/dist/es2019/pm-plugins/utils/hasVisibleContent.js +28 -0
- package/dist/es2019/showDiffPlugin.js +6 -1
- package/dist/es2019/ui/ContributorTag/contributorTagController.js +1 -1
- package/dist/es2019/ui/IndicatorBar/IndicatorBar.js +1 -1
- package/dist/es2019/ui/IndicatorBar/IndicatorBarContentComponent.js +1 -1
- package/dist/esm/pm-plugins/calculateDiff/calculateDiffDecorations.js +6 -1
- package/dist/esm/pm-plugins/calculateDiff/diffBySteps.js +1 -30
- package/dist/esm/pm-plugins/calculateDiff/smart/classifySmartChanges.js +2 -1
- package/dist/esm/pm-plugins/calculateDiff/smart/segmentText.js +2 -32
- package/dist/esm/pm-plugins/decorations/createContributorTagWidget.js +48 -22
- package/dist/esm/pm-plugins/decorations/createInlineChangedDecoration.js +10 -3
- package/dist/esm/pm-plugins/decorations/createNodeChangedDecorationWidget.js +7 -2
- package/dist/esm/pm-plugins/decorations/extractContributorTags.js +38 -10
- package/dist/esm/pm-plugins/utils/charsByOffset.js +39 -0
- package/dist/esm/pm-plugins/utils/hasVisibleContent.js +32 -0
- package/dist/esm/showDiffPlugin.js +6 -1
- package/dist/esm/ui/ContributorTag/contributorTagController.js +1 -1
- package/dist/esm/ui/IndicatorBar/IndicatorBar.js +1 -1
- package/dist/esm/ui/IndicatorBar/IndicatorBarContentComponent.js +1 -1
- package/dist/types/pm-plugins/calculateDiff/smart/segmentText.d.ts +0 -9
- package/dist/types/pm-plugins/decorations/createContributorTagWidget.d.ts +4 -3
- package/dist/types/pm-plugins/decorations/extractContributorTags.d.ts +1 -1
- package/dist/types/pm-plugins/utils/charsByOffset.d.ts +16 -0
- package/dist/types/pm-plugins/utils/hasVisibleContent.d.ts +13 -0
- package/dist/types/ui/ContributorTag/contributorTagController.d.ts +1 -1
- package/package.json +4 -4
- package/afm-cc/tsconfig.json +0 -63
package/afm-cc/tsconfig.json
DELETED
|
@@ -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
|
-
}
|