@atlaskit/embedded-confluence 4.3.2 → 4.3.3
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 +2 -6
- package/dist/embedded-confluence-bundle.js +4 -4
- package/dist/tti-polyfill.js +1 -1
- package/dist/web-vitals.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @atlaskit/embedded-confluence
|
|
2
2
|
|
|
3
|
+
## 4.3.3
|
|
4
|
+
|
|
3
5
|
## 4.3.2
|
|
4
6
|
|
|
5
7
|
### Patch Changes
|
|
@@ -70,7 +72,6 @@
|
|
|
70
72
|
- [#147926](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/147926)
|
|
71
73
|
[`4c5a404f45416`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4c5a404f45416) - 1.
|
|
72
74
|
This upgrade migrates css styles from using `@emotion/react` to use `@compiled/react`.
|
|
73
|
-
|
|
74
75
|
2. In addition to some dependency changes, **the embedded `ViewPage` and `Page` components will no
|
|
75
76
|
longer accept the `className` prop because of the interference it causes with SSR.**
|
|
76
77
|
|
|
@@ -80,17 +81,14 @@
|
|
|
80
81
|
**NOTE:** Some bundlers may not support `.css` files inside `node_modules/` out-of-the-box like
|
|
81
82
|
the ones that Compiled generates. Please follow the guide below depending on the bundler your app
|
|
82
83
|
uses:
|
|
83
|
-
|
|
84
84
|
1. If your app relies on **Webpack**, then you need to add `style-loader` and `css-loader` to your
|
|
85
85
|
`webpack.config.js`. (More info on [CSS Loader](https://webpack.js.org/loaders/css-loader/)).
|
|
86
|
-
|
|
87
86
|
- (OPTIONAL) Consider adding `@compiled/webpack-loader` to your Webpack configuration, so that
|
|
88
87
|
the `.css` files from Compiled CSS-in-JS are merged into a single stylesheet.
|
|
89
88
|
[See here for installation instructions](https://compiledcssinjs.com/docs/installation#webpack).
|
|
90
89
|
|
|
91
90
|
2. If your app relies on **Parcel**, no intervention is necessary. (More info on
|
|
92
91
|
[Parcel CSS](https://parceljs.org/languages/css/)).
|
|
93
|
-
|
|
94
92
|
- (OPTIONAL) Consider adding `@compiled/parcel-loader` to your Parcel configuration, so that
|
|
95
93
|
the `.css` files from Compiled CSS-in-JS are merged into a single stylesheet.
|
|
96
94
|
[See here for installation instructions](https://compiledcssinjs.com/docs/installation#parcel).
|
|
@@ -418,7 +416,6 @@
|
|
|
418
416
|
### Enabling the Login/Authentication flow for EP:
|
|
419
417
|
|
|
420
418
|
1. **What's changed:**
|
|
421
|
-
|
|
422
419
|
- Embedded Pages now allow users to authenticate within it and also request for its first-party
|
|
423
420
|
storage.
|
|
424
421
|
- Embedded Pages is using `Document.hasStorageAccess()` to check if it has access to its
|
|
@@ -430,7 +427,6 @@
|
|
|
430
427
|
page is opened in a new window which will take users through the Login/Sign up flow.
|
|
431
428
|
|
|
432
429
|
2. **Why it's changed:**
|
|
433
|
-
|
|
434
430
|
- With the Login flow the end user is taken through an authentication process within EP which
|
|
435
431
|
doesn't require them to navigate out of the parent products to Login to Confluence. This also
|
|
436
432
|
mitigates the problem of having to enable 3rd party cookies in the browser settings before
|