@atlassian/atlassian-connect-js 5.3.207 → 5.3.208
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/dist/connect-host.js +1 -1
- package/dist/iframe-fedramp.js +3 -3
- package/dist/iframe.js +3 -3
- package/package.json +1 -1
- package/src/plugin/theming.js +2 -2
package/dist/connect-host.js
CHANGED
|
@@ -13881,7 +13881,7 @@
|
|
|
13881
13881
|
* Add version
|
|
13882
13882
|
*/
|
|
13883
13883
|
if (!window._AP.version) {
|
|
13884
|
-
window._AP.version = '5.3.
|
|
13884
|
+
window._AP.version = '5.3.208';
|
|
13885
13885
|
}
|
|
13886
13886
|
simpleXDM.defineModule('messages', messages);
|
|
13887
13887
|
simpleXDM.defineModule('flag', flag);
|
package/dist/iframe-fedramp.js
CHANGED
|
@@ -1373,7 +1373,7 @@ var AP = (function () {
|
|
|
1373
1373
|
_this._eventHandlers = {};
|
|
1374
1374
|
_this._pendingCallbacks = {};
|
|
1375
1375
|
_this._keyListeners = [];
|
|
1376
|
-
_this._version = '5.3.
|
|
1376
|
+
_this._version = '5.3.208';
|
|
1377
1377
|
_this._apiTampered = undefined;
|
|
1378
1378
|
_this._isSubIframe = _this._topHost !== window.parent;
|
|
1379
1379
|
_this._onConfirmedFns = [];
|
|
@@ -11050,8 +11050,8 @@ var AP = (function () {
|
|
|
11050
11050
|
return _context5.abrupt("return");
|
|
11051
11051
|
case 4:
|
|
11052
11052
|
fontRoot = 'https://ds-cdn.prod-east.frontend.public.atl-paas.net';
|
|
11053
|
-
woffUrl = fontRoot + "/assets/fonts/atlassian-sans/
|
|
11054
|
-
cssUrl = fontRoot + "/assets/font-rules/
|
|
11053
|
+
woffUrl = fontRoot + "/assets/fonts/atlassian-sans/v4/AtlassianSans-latin.woff2";
|
|
11054
|
+
cssUrl = fontRoot + "/assets/font-rules/v6/atlassian-fonts.css";
|
|
11055
11055
|
if (!document.querySelector("link[href=\"" + fontRoot + "\"]")) {
|
|
11056
11056
|
appendStyle({
|
|
11057
11057
|
rel: 'preconnect',
|
package/dist/iframe.js
CHANGED
|
@@ -1373,7 +1373,7 @@ var AP = (function () {
|
|
|
1373
1373
|
_this._eventHandlers = {};
|
|
1374
1374
|
_this._pendingCallbacks = {};
|
|
1375
1375
|
_this._keyListeners = [];
|
|
1376
|
-
_this._version = '5.3.
|
|
1376
|
+
_this._version = '5.3.208';
|
|
1377
1377
|
_this._apiTampered = undefined;
|
|
1378
1378
|
_this._isSubIframe = _this._topHost !== window.parent;
|
|
1379
1379
|
_this._onConfirmedFns = [];
|
|
@@ -11050,8 +11050,8 @@ var AP = (function () {
|
|
|
11050
11050
|
return _context5.abrupt("return");
|
|
11051
11051
|
case 4:
|
|
11052
11052
|
fontRoot = 'https://ds-cdn.prod-east.frontend.public.atl-paas.net';
|
|
11053
|
-
woffUrl = fontRoot + "/assets/fonts/atlassian-sans/
|
|
11054
|
-
cssUrl = fontRoot + "/assets/font-rules/
|
|
11053
|
+
woffUrl = fontRoot + "/assets/fonts/atlassian-sans/v4/AtlassianSans-latin.woff2";
|
|
11054
|
+
cssUrl = fontRoot + "/assets/font-rules/v6/atlassian-fonts.css";
|
|
11055
11055
|
if (!document.querySelector("link[href=\"" + fontRoot + "\"]")) {
|
|
11056
11056
|
appendStyle({
|
|
11057
11057
|
rel: 'preconnect',
|
package/package.json
CHANGED
package/src/plugin/theming.js
CHANGED
|
@@ -120,8 +120,8 @@ async function preloadWebFonts(data) {
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
const fontRoot = 'https://ds-cdn.prod-east.frontend.public.atl-paas.net'
|
|
123
|
-
const woffUrl = `${fontRoot}/assets/fonts/atlassian-sans/
|
|
124
|
-
const cssUrl = `${fontRoot}/assets/font-rules/
|
|
123
|
+
const woffUrl = `${fontRoot}/assets/fonts/atlassian-sans/v4/AtlassianSans-latin.woff2`
|
|
124
|
+
const cssUrl = `${fontRoot}/assets/font-rules/v6/atlassian-fonts.css`
|
|
125
125
|
|
|
126
126
|
if (!document.querySelector(`link[href="${fontRoot}"]`)) {
|
|
127
127
|
appendStyle({ rel: 'preconnect', href: fontRoot });
|