@tuki-io/tuki-widgets 0.0.189 → 0.0.191
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/di2mt/widgets/upgrade-overview/cards/pending-activation-users/pending-activation-users.component.mjs +20 -20
- package/esm2020/user-creation/src/app.constants.mjs +8 -1
- package/esm2020/user-creation/src/shared/components/notification/notification.component.mjs +40 -0
- package/esm2020/user-creation/src/shared/pipes/truncate.pipe.mjs +30 -0
- package/esm2020/user-creation/src/shared/shared.module.mjs +27 -4
- package/esm2020/user-creation/src/user-creation.module.mjs +35 -11
- package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.mjs +6 -5
- package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs +17 -16
- package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs +254 -146
- package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs +18 -18
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs +254 -146
- package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
- package/package.json +1 -1
- package/user-creation/src/app.constants.d.ts +3 -0
- package/user-creation/src/shared/components/notification/notification.component.d.ts +19 -0
- package/user-creation/src/shared/pipes/truncate.pipe.d.ts +7 -0
- package/user-creation/src/shared/shared.module.d.ts +3 -1
- package/user-creation/src/user-creation.module.d.ts +16 -10
package/package.json
CHANGED
|
@@ -13,3 +13,6 @@ export declare const USER_CREATION_TYPES: {
|
|
|
13
13
|
MT: string;
|
|
14
14
|
};
|
|
15
15
|
export declare const MAX_INTEGER = 2147483647;
|
|
16
|
+
export declare const CUTTING_SYMBOLS: string[];
|
|
17
|
+
export declare const BREADCRUMB_LENGTH_LIMIT = 20;
|
|
18
|
+
export declare const DEFAULT_CUTTING_LENGTH = 15;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { NotificationService } from '../../../shared/services/notification.service';
|
|
3
|
+
import { Notification } from '../../../classes/notification';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class NotificationsComponent implements OnInit, OnDestroy {
|
|
6
|
+
notificationService: NotificationService;
|
|
7
|
+
private ref;
|
|
8
|
+
list: Notification[];
|
|
9
|
+
isReadMore: boolean;
|
|
10
|
+
private listSubscription;
|
|
11
|
+
constructor(notificationService: NotificationService, ref: ChangeDetectorRef);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
readMore(): void;
|
|
15
|
+
removeNotification(notification: Notification): void;
|
|
16
|
+
private listChangeSubscribe;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "app-notification", never, {}, {}, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TruncatePipe implements PipeTransform {
|
|
4
|
+
transform(value: string | undefined, args?: any[]): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "truncate", false>;
|
|
7
|
+
}
|
|
@@ -3,8 +3,10 @@ import * as i1 from "@angular/common";
|
|
|
3
3
|
import * as i2 from "./material.module";
|
|
4
4
|
import * as i3 from "ng-apexcharts";
|
|
5
5
|
import * as i4 from "@angular/common/http";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "@angular/material/table";
|
|
6
8
|
export declare class SharedModule {
|
|
7
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.CommonModule, typeof i2.MaterialModule, typeof i3.NgApexchartsModule, typeof i4.HttpClientModule], [typeof i2.MaterialModule]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.CommonModule, typeof i2.MaterialModule, typeof i3.NgApexchartsModule, typeof i4.HttpClientModule, typeof i5.ReactiveFormsModule, typeof i5.FormsModule], [typeof i2.MaterialModule, typeof i5.ReactiveFormsModule, typeof i5.FormsModule, typeof i6.MatTableModule, typeof i3.NgApexchartsModule, typeof i4.HttpClientModule]>;
|
|
9
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
10
12
|
}
|
|
@@ -1,17 +1,23 @@
|
|
|
1
|
+
import { HttpClient } from "@angular/common/http";
|
|
2
|
+
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
4
|
import * as i1 from "./widgets/user-creation-wizard/user-creation-wizard.component";
|
|
3
5
|
import * as i2 from "./widgets/user-creation-wizard/components/user-template-step/user-template-step.component";
|
|
4
|
-
import * as i3 from "./
|
|
5
|
-
import * as i4 from "./widgets/user-creation-wizard/components/user-
|
|
6
|
-
import * as i5 from "
|
|
7
|
-
import * as i6 from "./shared/
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "
|
|
10
|
-
import * as i9 from "
|
|
11
|
-
import * as i10 from "@angular/
|
|
12
|
-
import * as i11 from "@angular/material/
|
|
6
|
+
import * as i3 from "./shared/components/notification/notification.component";
|
|
7
|
+
import * as i4 from "./widgets/user-creation-wizard/components/user-details-step/user-details-step.component";
|
|
8
|
+
import * as i5 from "./widgets/user-creation-wizard/components/user-overview-step/user-overview-step.component";
|
|
9
|
+
import * as i6 from "./shared/pipes/truncate.pipe";
|
|
10
|
+
import * as i7 from "@angular/common";
|
|
11
|
+
import * as i8 from "./shared/shared.module";
|
|
12
|
+
import * as i9 from "./shared/material.module";
|
|
13
|
+
import * as i10 from "@angular/material/stepper";
|
|
14
|
+
import * as i11 from "@angular/material/expansion";
|
|
15
|
+
import * as i12 from "@angular/forms";
|
|
16
|
+
import * as i13 from "@angular/material/radio";
|
|
17
|
+
import * as i14 from "@ngx-translate/core";
|
|
18
|
+
export declare function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader;
|
|
13
19
|
export declare class UserCreationModule {
|
|
14
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserCreationModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UserCreationModule, [typeof i1.UserCreationWizardComponent, typeof i2.UserTemplateStepComponent, typeof i3.
|
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UserCreationModule, [typeof i1.UserCreationWizardComponent, typeof i2.UserTemplateStepComponent, typeof i3.NotificationsComponent, typeof i4.UserDetailsStepComponent, typeof i5.UserOverviewStepComponent, typeof i6.TruncatePipe], [typeof i7.CommonModule, typeof i8.SharedModule, typeof i9.MaterialModule, typeof i10.MatStepperModule, typeof i11.MatExpansionModule, typeof i12.FormsModule, typeof i12.ReactiveFormsModule, typeof i13.MatRadioModule, typeof i14.TranslateModule], [typeof i1.UserCreationWizardComponent]>;
|
|
16
22
|
static ɵinj: i0.ɵɵInjectorDeclaration<UserCreationModule>;
|
|
17
23
|
}
|