authentik/web
dependabot[bot] 6d036876db
web: bump @storybook/addon-links from 7.0.23 to 7.0.24 in /web (#6086)
Bumps [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) from 7.0.23 to 7.0.24.
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/v7.0.24/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.0.24/code/addons/links)

---
updated-dependencies:
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-06-28 11:42:07 +02:00
..
.storybook website/integrations: add account linking note for WriteFreely (#5804) 2023-06-08 13:27:35 +02:00
authentik/sources
icons
src release: 2023.5.4 2023-06-26 23:33:04 +02:00
xliff Updates for web/xliff/en.xlf in zh_CN (#6024) 2023-06-21 13:44:50 +02:00
.babelrc
.dockerignore
.eslintignore website: update translation docs (#5875) 2023-06-06 12:32:32 +02:00
.eslintrc.json web: Add storybook (#5865) 2023-06-07 13:05:33 +02:00
.gitignore web: Add storybook (#5865) 2023-06-07 13:05:33 +02:00
.prettierignore website/integrations: add account linking note for WriteFreely (#5804) 2023-06-08 13:27:35 +02:00
.prettierrc.json website: update translation docs (#5875) 2023-06-06 12:32:32 +02:00
README.md web: Add storybook (#5865) 2023-06-07 13:05:33 +02:00
lit-localize.json web: Replace lingui.js with lit-localize (#5761) 2023-06-02 08:08:36 -07:00
package-lock.json web: bump @storybook/addon-links from 7.0.23 to 7.0.24 in /web (#6086) 2023-06-28 11:42:07 +02:00
package.json web: bump @storybook/addon-links from 7.0.23 to 7.0.24 in /web (#6086) 2023-06-28 11:42:07 +02:00
robots.txt
rollup.config.js web/admin: fix codemirror not working on safari (#5943) 2023-06-13 13:45:38 +02:00
rollup.proxy.js
security.txt
static.go
static_outpost.go
tsconfig.json web: Add storybook (#5865) 2023-06-07 13:05:33 +02:00

README.md

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.