@atlassian/atlassian-connect-js 5.3.201 → 5.3.202
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
CHANGED
|
@@ -9886,7 +9886,7 @@
|
|
|
9886
9886
|
return resolveBooleanFlag(name);
|
|
9887
9887
|
}
|
|
9888
9888
|
|
|
9889
|
-
var allowedPlatformFeatureFlags = ['platform-visual-refresh-icons'
|
|
9889
|
+
var allowedPlatformFeatureFlags = ['platform-visual-refresh-icons'];
|
|
9890
9890
|
function isPlatformAllowedFeatureFlag(flagName) {
|
|
9891
9891
|
return allowedPlatformFeatureFlags.includes(flagName);
|
|
9892
9892
|
}
|
|
@@ -13859,7 +13859,7 @@
|
|
|
13859
13859
|
* Add version
|
|
13860
13860
|
*/
|
|
13861
13861
|
if (!window._AP.version) {
|
|
13862
|
-
window._AP.version = '5.3.
|
|
13862
|
+
window._AP.version = '5.3.202';
|
|
13863
13863
|
}
|
|
13864
13864
|
simpleXDM.defineModule('messages', messages);
|
|
13865
13865
|
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.202';
|
|
1377
1377
|
_this._apiTampered = undefined;
|
|
1378
1378
|
_this._isSubIframe = _this._topHost !== window.parent;
|
|
1379
1379
|
_this._onConfirmedFns = [];
|
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.202';
|
|
1377
1377
|
_this._apiTampered = undefined;
|
|
1378
1378
|
_this._isSubIframe = _this._topHost !== window.parent;
|
|
1379
1379
|
_this._onConfirmedFns = [];
|
package/package.json
CHANGED
|
@@ -2,10 +2,7 @@ import simpleXDM from '@atlaskit/simple-xdm/dist/es2019/host';
|
|
|
2
2
|
import getBooleanFeatureFlag from '../utils/feature-flag';
|
|
3
3
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
4
4
|
|
|
5
|
-
const allowedPlatformFeatureFlags = [
|
|
6
|
-
'platform-visual-refresh-icons',
|
|
7
|
-
'acjs_new_font'
|
|
8
|
-
]
|
|
5
|
+
const allowedPlatformFeatureFlags = ['platform-visual-refresh-icons'];
|
|
9
6
|
|
|
10
7
|
function isPlatformAllowedFeatureFlag(flagName) {
|
|
11
8
|
return allowedPlatformFeatureFlags.includes(flagName);
|