mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 05:44:36 +00:00
* privatelabeling refresh, org context color * chore(deps): bump @grpc/grpc-js from 1.6.10 to 1.7.0 in /console (#4358) Bumps [@grpc/grpc-js](https://github.com/grpc/grpc-node) from 1.6.10 to 1.7.0. - [Release notes](https://github.com/grpc/grpc-node/releases) - [Commits](https://github.com/grpc/grpc-node/compare/@grpc/grpc-js@1.6.10...@grpc/grpc-js@1.7.0) --- updated-dependencies: - dependency-name: "@grpc/grpc-js" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump ngx-color from 8.0.2 to 8.0.3 in /console (#4357) Bumps [ngx-color](https://github.com/scttcper/ngx-color) from 8.0.2 to 8.0.3. - [Release notes](https://github.com/scttcper/ngx-color/releases) - [Commits](https://github.com/scttcper/ngx-color/compare/v8.0.2...v8.0.3) --- updated-dependencies: - dependency-name: ngx-color dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps-dev): bump @types/node from 17.0.45 to 18.7.16 in /console (#4341) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 17.0.45 to 18.7.16. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps-dev): bump jasmine-core from 4.2.0 to 4.4.0 in /console (#4317) Bumps [jasmine-core](https://github.com/jasmine/jasmine) from 4.2.0 to 4.4.0. - [Release notes](https://github.com/jasmine/jasmine/releases) - [Changelog](https://github.com/jasmine/jasmine/blob/main/RELEASE.md) - [Commits](https://github.com/jasmine/jasmine/compare/v4.2.0...v4.4.0) --- updated-dependencies: - dependency-name: jasmine-core dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps-dev): bump @types/jasmine from 4.0.3 to 4.3.0 in /console (#4279) Bumps [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) from 4.0.3 to 4.3.0. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jasmine) --- updated-dependencies: - dependency-name: "@types/jasmine" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * quicklink * cli core * material cdk * eslint * add grantid * show oidc config error * use prettier config, linter * rm stylelint, fix lint * prettier - ignore proto output * labelling * update contribution guide Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Elio Bischof <eliobischof@gmail.com>
128 lines
6.1 KiB
TypeScript
128 lines
6.1 KiB
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { MatMenuModule } from '@angular/material/menu';
|
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
import { MatTableModule } from '@angular/material/table';
|
|
import { MatTabsModule } from '@angular/material/tabs';
|
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
import { RouterModule } from '@angular/router';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { QrCodeModule } from 'ng-qrcode';
|
|
import { CopyToClipboardModule } from 'src/app/directives/copy-to-clipboard/copy-to-clipboard.module';
|
|
import { HasRoleModule } from 'src/app/directives/has-role/has-role.module';
|
|
import { MemberCreateDialogModule } from 'src/app/modules/add-member-dialog/member-create-dialog.module';
|
|
import { CardModule } from 'src/app/modules/card/card.module';
|
|
import { ChangesModule } from 'src/app/modules/changes/changes.module';
|
|
import { DetailLayoutModule } from 'src/app/modules/detail-layout/detail-layout.module';
|
|
import { InfoSectionModule } from 'src/app/modules/info-section/info-section.module';
|
|
import { InputModule } from 'src/app/modules/input/input.module';
|
|
import { MachineKeysModule } from 'src/app/modules/machine-keys/machine-keys.module';
|
|
import { MembershipsTableModule } from 'src/app/modules/memberships-table/memberships-table.module';
|
|
import { MetaLayoutModule } from 'src/app/modules/meta-layout/meta-layout.module';
|
|
import { PaginatorModule } from 'src/app/modules/paginator/paginator.module';
|
|
import { PasswordComplexityViewModule } from 'src/app/modules/password-complexity-view/password-complexity-view.module';
|
|
import { PersonalAccessTokensModule } from 'src/app/modules/personal-access-tokens/personal-access-tokens.module';
|
|
import { RefreshTableModule } from 'src/app/modules/refresh-table/refresh-table.module';
|
|
import { ShowTokenDialogModule } from 'src/app/modules/show-token-dialog/show-token-dialog.module';
|
|
import { SidenavModule } from 'src/app/modules/sidenav/sidenav.module';
|
|
import { TableActionsModule } from 'src/app/modules/table-actions/table-actions.module';
|
|
import { TopViewModule } from 'src/app/modules/top-view/top-view.module';
|
|
import { UserGrantsModule } from 'src/app/modules/user-grants/user-grants.module';
|
|
import { WarnDialogModule } from 'src/app/modules/warn-dialog/warn-dialog.module';
|
|
import { HasRolePipeModule } from 'src/app/pipes/has-role-pipe/has-role-pipe.module';
|
|
import { LocalizedDatePipeModule } from 'src/app/pipes/localized-date-pipe/localized-date-pipe.module';
|
|
import { TimestampToDatePipeModule } from 'src/app/pipes/timestamp-to-date-pipe/timestamp-to-date-pipe.module';
|
|
|
|
import { InfoRowModule } from '../../../modules/info-row/info-row.module';
|
|
import { AuthFactorDialogComponent } from './auth-user-detail/auth-factor-dialog/auth-factor-dialog.component';
|
|
import { AuthPasswordlessComponent } from './auth-user-detail/auth-passwordless/auth-passwordless.component';
|
|
import { DialogPasswordlessComponent } from './auth-user-detail/auth-passwordless/dialog-passwordless/dialog-passwordless.component';
|
|
import { AuthUserDetailComponent } from './auth-user-detail/auth-user-detail.component';
|
|
import { AuthUserMfaComponent } from './auth-user-detail/auth-user-mfa/auth-user-mfa.component';
|
|
import { CodeDialogComponent } from './auth-user-detail/code-dialog/code-dialog.component';
|
|
import { DialogU2FComponent } from './auth-user-detail/dialog-u2f/dialog-u2f.component';
|
|
import { EditDialogComponent } from './auth-user-detail/edit-dialog/edit-dialog.component';
|
|
import { ResendEmailDialogComponent } from './auth-user-detail/resend-email-dialog/resend-email-dialog.component';
|
|
import { ContactComponent } from './contact/contact.component';
|
|
import { DetailFormMachineModule } from './detail-form-machine/detail-form-machine.module';
|
|
import { DetailFormModule } from './detail-form/detail-form.module';
|
|
import { ExternalIdpsComponent } from './external-idps/external-idps.component';
|
|
import { MetadataDialogComponent } from './metadata-dialog/metadata-dialog.component';
|
|
import { MetadataComponent } from './metadata/metadata.component';
|
|
import { PasswordComponent } from './password/password.component';
|
|
import { PasswordlessComponent } from './user-detail/passwordless/passwordless.component';
|
|
import { UserDetailComponent } from './user-detail/user-detail.component';
|
|
import { UserMfaComponent } from './user-detail/user-mfa/user-mfa.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AuthUserDetailComponent,
|
|
UserDetailComponent,
|
|
EditDialogComponent,
|
|
AuthUserMfaComponent,
|
|
AuthPasswordlessComponent,
|
|
UserMfaComponent,
|
|
PasswordlessComponent,
|
|
PasswordComponent,
|
|
CodeDialogComponent,
|
|
ExternalIdpsComponent,
|
|
ContactComponent,
|
|
ResendEmailDialogComponent,
|
|
DialogU2FComponent,
|
|
DialogPasswordlessComponent,
|
|
AuthFactorDialogComponent,
|
|
MetadataDialogComponent,
|
|
MetadataComponent,
|
|
],
|
|
imports: [
|
|
ChangesModule,
|
|
CommonModule,
|
|
SidenavModule,
|
|
MatTabsModule,
|
|
FormsModule,
|
|
ReactiveFormsModule,
|
|
MembershipsTableModule,
|
|
DetailFormModule,
|
|
DetailFormMachineModule,
|
|
WarnDialogModule,
|
|
MatDialogModule,
|
|
QrCodeModule,
|
|
ShowTokenDialogModule,
|
|
MetaLayoutModule,
|
|
MatCheckboxModule,
|
|
TopViewModule,
|
|
HasRolePipeModule,
|
|
UserGrantsModule,
|
|
MatButtonModule,
|
|
PersonalAccessTokensModule,
|
|
MatIconModule,
|
|
CardModule,
|
|
MatProgressSpinnerModule,
|
|
MatTooltipModule,
|
|
HasRoleModule,
|
|
TranslateModule,
|
|
MatTableModule,
|
|
InfoRowModule,
|
|
PaginatorModule,
|
|
MatMenuModule,
|
|
RouterModule,
|
|
RefreshTableModule,
|
|
CopyToClipboardModule,
|
|
DetailLayoutModule,
|
|
TableActionsModule,
|
|
PasswordComplexityViewModule,
|
|
MemberCreateDialogModule,
|
|
TimestampToDatePipeModule,
|
|
LocalizedDatePipeModule,
|
|
InputModule,
|
|
MachineKeysModule,
|
|
InfoSectionModule,
|
|
],
|
|
})
|
|
export class UserDetailModule {}
|