@atlaskit/editor-core 179.0.1 → 179.0.2
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 +6 -0
- package/dist/cjs/plugins/card/pm-plugins/doc.js +3 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/plugins/card/pm-plugins/doc.js +3 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/plugins/card/pm-plugins/doc.js +3 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -101,8 +101,10 @@ var replaceQueuedUrlWithCard = function replaceQueuedUrlWithCard(url, cardData,
|
|
|
101
101
|
ignore analytics event? take first? provide 'mixed' as well?*/,
|
|
102
102
|
nodeType: nodeType,
|
|
103
103
|
nodeContext: nodeContext,
|
|
104
|
-
domainName: domainName,
|
|
105
104
|
fromCurrentDomain: (0, _utils2.isFromCurrentDomain)(url)
|
|
105
|
+
},
|
|
106
|
+
nonPrivacySafeAttributes: {
|
|
107
|
+
domainName: domainName
|
|
106
108
|
}
|
|
107
109
|
});
|
|
108
110
|
}
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.version = exports.nextMajorVersion = exports.name = void 0;
|
|
7
7
|
var name = "@atlaskit/editor-core";
|
|
8
8
|
exports.name = name;
|
|
9
|
-
var version = "179.0.
|
|
9
|
+
var version = "179.0.2";
|
|
10
10
|
exports.version = version;
|
|
11
11
|
var nextMajorVersion = function nextMajorVersion() {
|
|
12
12
|
return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
|
package/dist/cjs/version.json
CHANGED
|
@@ -84,8 +84,10 @@ export const replaceQueuedUrlWithCard = (url, cardData, analyticsAction, createA
|
|
|
84
84
|
ignore analytics event? take first? provide 'mixed' as well?*/,
|
|
85
85
|
nodeType,
|
|
86
86
|
nodeContext: nodeContext,
|
|
87
|
-
domainName,
|
|
88
87
|
fromCurrentDomain: isFromCurrentDomain(url)
|
|
88
|
+
},
|
|
89
|
+
nonPrivacySafeAttributes: {
|
|
90
|
+
domainName
|
|
89
91
|
}
|
|
90
92
|
});
|
|
91
93
|
}
|
package/dist/es2019/version.json
CHANGED
|
@@ -95,8 +95,10 @@ export var replaceQueuedUrlWithCard = function replaceQueuedUrlWithCard(url, car
|
|
|
95
95
|
ignore analytics event? take first? provide 'mixed' as well?*/,
|
|
96
96
|
nodeType: nodeType,
|
|
97
97
|
nodeContext: nodeContext,
|
|
98
|
-
domainName: domainName,
|
|
99
98
|
fromCurrentDomain: isFromCurrentDomain(url)
|
|
99
|
+
},
|
|
100
|
+
nonPrivacySafeAttributes: {
|
|
101
|
+
domainName: domainName
|
|
100
102
|
}
|
|
101
103
|
});
|
|
102
104
|
}
|
package/dist/esm/version.json
CHANGED