Conversation
✅ Deploy Preview for authentik-storybook ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for authentik-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for authentik-integrations ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #18916 +/- ##
=======================================
Coverage 93.45% 93.45%
=======================================
Files 993 993
Lines 55968 55968
=======================================
+ Hits 52305 52306 +1
+ Misses 3663 3662 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
60f8968 to
2a05806
Compare
|
authentik PR Installation instructions Instructions for docker-composeAdd the following block to your AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-d18d1340acdcb628dfd3445420641a6fd7c297fa
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)sAfterwards, run the upgrade commands from the latest release notes. Instructions for KubernetesAdd the following block to your authentik:
outposts:
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
image:
repository: ghcr.io/goauthentik/dev-server
tag: gh-d18d1340acdcb628dfd3445420641a6fd7c297faAfterwards, run the upgrade commands from the latest release notes. |
2a05806 to
5babce5
Compare
7915aeb to
d18d134
Compare
d18d134 to
d4a8703
Compare
|
Closed via #17812 |
Details
This PR implements
<ak-modal>, a custom element built on the native<dialog>element, with support for lazy-loading and screen-reader compatibility.Given our heavy use of modals in the UI, the new component is fully backwards compatible with existing implementations. To illustrate the migration path, this PR applies
<ak-modal>to three examples: About authentik, Create Application, and Edit Application.renderModalutility function to trigger a modal from an event listener, with the same lazy-loading behaviour.To keep this PR manageable, only these three modals have been migrated. The rest will follow in subsequent PRs. The new component is available for use in new modals immediately.