This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/web
dependabot[bot] 0ad1b42706 web: bump pyright from 1.1.334 to 1.1.335 in /web
Bumps [pyright](https://github.com/Microsoft/pyright/tree/HEAD/packages/pyright) from 1.1.334 to 1.1.335.
- [Release notes](https://github.com/Microsoft/pyright/releases)
- [Commits](https://github.com/Microsoft/pyright/commits/1.1.335/packages/pyright)

---
updated-dependencies:
- dependency-name: pyright
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-11-08 11:13:14 +01:00
..
.storybook web: package up horizontal elements into their own components (#7053) 2023-10-04 13:07:52 -07:00
authentik/sources
icons
scripts web: the return of pseudolocalization (#7190) 2023-10-16 13:54:43 -07:00
src Web: bugfix: broken backchannel selector (#7480) 2023-11-07 18:10:43 +00:00
xliff translate: Updates for file web/xliff/en.xlf in fr (#7461) 2023-11-06 19:12:21 +00:00
.babelrc
.dockerignore
.eslintignore
.eslintrc.json
.eslintrc.precommit.json
.gitignore web: the return of pseudolocalization (#7190) 2023-10-16 13:54:43 -07:00
.prettierignore
.prettierrc.json
lit-localize.json
package-lock.json web: bump pyright from 1.1.334 to 1.1.335 in /web 2023-11-08 11:13:14 +01:00
package.json web: bump pyright from 1.1.334 to 1.1.335 in /web 2023-11-08 11:13:14 +01:00
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 of HTMLElement. As a result, this threw too many errors to be supportable.