3592aae3df
* main: web: package up horizontal elements into their own components (#7053) core: bump django from 4.2.5 to 4.2.6 (#7066) translate: Updates for file locale/en/LC_MESSAGES/django.po in fr on branch main (#7065) web: bump postcss from 8.4.29 to 8.4.31 in /web (#7064) translate: Updates for file locale/en/LC_MESSAGES/django.po in zh-Hans on branch main (#7057) translate: Updates for file locale/en/LC_MESSAGES/django.po in zh_CN on branch main (#7056) web: bump pyright from 1.1.329 to 1.1.330 in /web (#7060) web: bump the storybook group in /web with 5 updates (#7059) web: bump the wdio group in /tests/wdio with 2 updates (#7063) core: bump duo-client from 5.0.1 to 5.1.0 (#7062) core: bump goauthentik.io/api/v3 from 3.2023083.3 to 3.2023083.4 (#7061) Add meta description to black box blog post (#7049) web/flows: fix plex login not opening new tab on mobile safari (#7050) web: bump API Client version (#7052) web/flows: bottom-align about text on flows page (#7051) core: bump codespell from 2.2.5 to 2.2.6 (#7046) core: bump coverage from 7.3.1 to 7.3.2 (#7047) web: laying the groundwork for future expansion (#7045) |
||
---|---|---|
.. | ||
.storybook | ||
authentik/sources | ||
icons | ||
src | ||
xliff | ||
.babelrc | ||
.dockerignore | ||
.eslintignore | ||
.eslintrc.json | ||
.eslintrc.precommit.json | ||
.gitignore | ||
.prettierignore | ||
.prettierrc.json | ||
lit-localize.json | ||
package-lock.json | ||
package.json | ||
README.md | ||
robots.txt | ||
rollup.config.mjs | ||
rollup.proxy.mjs | ||
security.txt | ||
static.go | ||
static_outpost.go | ||
tsconfig.json | ||
web-test-runner.config.mjs |
authentik WebUI
This is the default UI for the authentik server. The documentation is going to be a little sparse for awhile, but at least let's get started.
Comments
NOTE: The comments in this section are for specific changes to this repository that cannot be reliably documented any other way. For the most part, they contain comments related to custom settings in JSON files, which do not support comments.
tsconfig.json
:compilerOptions.useDefineForClassFields: false
is required to make TSC use the "classic" form of field definition when compiling class definitions. Storybook does not handle the ESNext proposed definition mechanism (yet).compilerOptions.plugins.ts-lit-plugin.rules.no-unknown-tag-name: "off"
: required to support rapidoc, which exports its tag late.compilerOptions.plugins.ts-lit-plugin.rules.no-missing-import: "off"
: lit-analyzer currently does not support path aliases very well, and cannot find the definition files associated with imports using them.compilerOptions.plugins.ts-lit-plugin.rules.no-incompatible-type-binding: "warn"
: lit-analyzer does not support generics well when parsing a subtype ofHTMLElement
. As a result, this threw too many errors to be supportable.