@atlassian/atlassian-connect-js 5.3.197 → 5.3.199
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/.envrc +4 -4
- package/.netrc +1 -1
- package/dist/connect-host.js +433 -490
- package/dist/iframe-fedramp.js +441 -498
- package/dist/iframe.js +441 -498
- package/package.json +2 -2
- package/src/plugin/theming.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlassian/atlassian-connect-js",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.199",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Atlassian Connect JavaScript bridge",
|
|
6
6
|
"main": "dist/connect-host.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@babel/plugin-proposal-decorators": "^7.23.2",
|
|
33
33
|
"@babel/plugin-transform-runtime": "^7.23.2",
|
|
34
34
|
"@babel/preset-env": "^7.23.2",
|
|
35
|
-
"@babel/runtime": "^7.
|
|
35
|
+
"@babel/runtime": "^7.26.10",
|
|
36
36
|
"@rollup/plugin-babel": "^6.0.4",
|
|
37
37
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
38
38
|
"@rollup/plugin-node-resolve": "^13.0.6",
|
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/v3/AtlassianSans-latin.woff2`
|
|
124
|
+
const cssUrl = `${fontRoot}/assets/font-rules/v5/atlassian-fonts.css`
|
|
125
125
|
|
|
126
126
|
if (!document.querySelector(`link[href="${fontRoot}"]`)) {
|
|
127
127
|
appendStyle({ rel: 'preconnect', href: fontRoot });
|