@tuki-io/tuki-widgets 0.0.153 → 0.0.155
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/di2mt/public-api.d.ts +1 -0
- package/di2mt/shared/components/stat-card/stat-card.component.d.ts +2 -1
- package/di2mt/widgets/upgrade-overview/cards/pending-activation-users/pending-activation-users.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/types/upgrade-overview.d.ts +1 -0
- package/di2mt/widgets/upgrade-overview/upgrade-overview.module.d.ts +4 -3
- package/esm2020/di2mt/public-api.mjs +2 -1
- package/esm2020/di2mt/shared/components/stat-card/stat-card.component.mjs +7 -3
- package/esm2020/di2mt/widgets/upgrade-overview/cards/pending-activation-users/pending-activation-users.component.mjs +67 -0
- package/esm2020/di2mt/widgets/upgrade-overview/types/upgrade-overview.mjs +1 -1
- package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.module.mjs +10 -5
- package/esm2020/users-list/src/users-list.component.mjs +6 -6
- package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs +78 -13
- package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +5 -5
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs +74 -7
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +5 -5
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -842,7 +842,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
842
842
|
|
|
843
843
|
class StatCardComponent {
|
|
844
844
|
ngOnInit() {
|
|
845
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
845
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
|
|
846
846
|
if (this.type === 'user') {
|
|
847
847
|
this.stats = {
|
|
848
848
|
id: (_a = this.readinessStats) === null || _a === void 0 ? void 0 : _a.id,
|
|
@@ -850,15 +850,16 @@ class StatCardComponent {
|
|
|
850
850
|
total: (_c = this.readinessStats) === null || _c === void 0 ? void 0 : _c['totalUsers'],
|
|
851
851
|
totalReady: (_d = this.readinessStats) === null || _d === void 0 ? void 0 : _d['totalReadyUsers'],
|
|
852
852
|
totalUpgraded: (_e = this.readinessStats) === null || _e === void 0 ? void 0 : _e['totalUpgradedUsers'],
|
|
853
|
+
pendingActivation: (_f = this.readinessStats) === null || _f === void 0 ? void 0 : _f['pendingActivation'],
|
|
853
854
|
};
|
|
854
855
|
}
|
|
855
856
|
else {
|
|
856
857
|
this.stats = {
|
|
857
|
-
id: (
|
|
858
|
-
customerId: (
|
|
859
|
-
total: (
|
|
860
|
-
totalReady: (
|
|
861
|
-
totalUpgraded: (
|
|
858
|
+
id: (_g = this.readinessStats) === null || _g === void 0 ? void 0 : _g.id,
|
|
859
|
+
customerId: (_h = this.readinessStats) === null || _h === void 0 ? void 0 : _h.customerId,
|
|
860
|
+
total: (_j = this.readinessStats) === null || _j === void 0 ? void 0 : _j['totalSites'],
|
|
861
|
+
totalReady: (_k = this.readinessStats) === null || _k === void 0 ? void 0 : _k['totalReadySites'],
|
|
862
|
+
totalUpgraded: (_l = this.readinessStats) === null || _l === void 0 ? void 0 : _l['totalUpgradedSites'],
|
|
862
863
|
};
|
|
863
864
|
}
|
|
864
865
|
}
|
|
@@ -870,12 +871,16 @@ class StatCardComponent {
|
|
|
870
871
|
var _a, _b;
|
|
871
872
|
return (((_a = this.stats) === null || _a === void 0 ? void 0 : _a.totalUpgraded) / ((_b = this.stats) === null || _b === void 0 ? void 0 : _b.total) * 100) >> 0;
|
|
872
873
|
}
|
|
874
|
+
get pendingActivationPercentage() {
|
|
875
|
+
var _a, _b;
|
|
876
|
+
return (((_a = this.stats) === null || _a === void 0 ? void 0 : _a.pendingActivation) / ((_b = this.stats) === null || _b === void 0 ? void 0 : _b.totalUpgraded) * 100) >> 0;
|
|
877
|
+
}
|
|
873
878
|
}
|
|
874
879
|
StatCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StatCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
875
|
-
StatCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: StatCardComponent, selector: "tk-stat-card", inputs: { title: "title", type: "type", readinessStats: "readinessStats", upgradeStatus: "upgradeStatus" }, ngImport: i0, template: "<tk-card [title]=\"title\">\r\n <ng-container ngProjectAs=\"card-content\">\r\n <div class=\"card__content-info\">\r\n <div class=\"card__content-wrapper\">\r\n <img width=\"42\" [src]=\"'assets/icons/' + type + '.png'\" alt=\"\" />\r\n <div class=\"card__content-text\">\r\n <div class=\"card__content-label\">\r\n
|
|
880
|
+
StatCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: StatCardComponent, selector: "tk-stat-card", inputs: { title: "title", type: "type", readinessStats: "readinessStats", upgradeStatus: "upgradeStatus" }, ngImport: i0, template: "<tk-card [title]=\"title\">\r\n <ng-container ngProjectAs=\"card-content\">\r\n <div class=\"card__content-info\">\r\n <div class=\"card__content-wrapper\">\r\n <img width=\"42\" [src]=\"'assets/icons/' + type + '.png'\" alt=\"\" />\r\n <div class=\"card__content-text\">\r\n <ng-container *ngIf=\"upgradeStatus === 'ready' || upgradeStatus === 'already'\">\r\n <div class=\"card__content-label\">\r\n {{ upgradeStatus === 'ready' ? stats?.totalReady : stats?.totalUpgraded }}\r\n {{ type === 'user' ? 'Users' : 'Sites' }}</div>\r\n <div class=\"card__content-description\">{{ upgradeStatus === 'ready' ? 'Ready to Upgrade' : 'Already Upgraded' }}</div>\r\n </ng-container>\r\n <ng-container *ngIf=\"upgradeStatus === 'pending'\">\r\n <div class=\"card__content-label\">\r\n {{ stats?.pendingActivation }}\r\n {{ 'User' }}</div>\r\n <div class=\"card__content-description\">{{ 'Ready to activate' }}</div>\r\n </ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"card__content-progress-wrapper\">\r\n <ng-container *ngIf=\"upgradeStatus === 'ready' || upgradeStatus === 'already'\">\r\n <div class=\"card__content-progress\">\r\n <div class=\"card__content-progress-label\">\r\n <span>{{ readyPercentage }}%</span>\r\n <span>From all {{ stats?.total }} {{ type === 'user' ? 'users' : 'sites' }}</span>\r\n </div>\r\n <div class=\"card__content-progress-bar\">\r\n <div\r\n class=\"card__content-progress-bar-fill ready\"\r\n [class.already]=\"upgradeStatus === 'already'\"\r\n [style.width.%]=\"readyPercentage\"\r\n ></div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"upgradeStatus === 'already'\" class=\"card__content-progress\">\r\n <div class=\"card__content-progress-label\">\r\n <span>{{ upgradedPercentage }}%</span>\r\n <span>From all {{ stats?.totalReady }} ready {{ type === 'user' ? 'users' : 'sites' }}</span>\r\n </div>\r\n <div class=\"card__content-progress-bar\">\r\n <div\r\n class=\"card__content-progress-bar-fill ready\"\r\n [class.already]=\"upgradeStatus === 'already'\"\r\n [style.width.%]=\"upgradedPercentage\"\r\n ></div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container *ngIf=\"upgradeStatus === 'pending'\">\r\n <div class=\"card__content-progress\">\r\n <div class=\"card__content-progress-label\">\r\n <span>{{ pendingActivationPercentage }}%</span>\r\n <span>From all {{ stats?.totalUpgraded }} {{ 'upgraded users' }}</span>\r\n </div>\r\n <div class=\"card__content-progress-bar\">\r\n <div\r\n class=\"card__content-progress-bar-fill ready\"\r\n [class.pending-activation]=\"upgradeStatus === 'pending'\"\r\n [style.width.%]=\"pendingActivationPercentage\"\r\n ></div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </div>\r\n </ng-container>\r\n</tk-card>\r\n", styles: [":host{display:block;height:100%;box-sizing:border-box}.card__content-info{display:flex;align-items:center;justify-content:space-between}.card__content-text{display:flex;flex-direction:column;gap:.25rem}.card__content-text .card__content-label{font-size:20px}.card__content-text .card__content-description{font-size:12px}.card__content-wrapper{display:flex;align-items:center;justify-content:center;gap:1rem}.card__content-wrapper:first-child{display:flex;gap:.5rem}.card__content-progress-wrapper{display:flex;flex-direction:column;gap:1rem}.card__content-progress{display:flex;flex-direction:column;gap:.25rem;font-size:14px}.card__content-progress .card__content-progress-label{display:flex;align-items:center;justify-content:space-between;padding:.05rem}.card__content-progress .card__content-progress-bar{background-color:#ededed;border-radius:10rem}.card__content-progress .card__content-progress-bar .card__content-progress-bar-fill{height:10px;border-radius:inherit}.ready{background-color:#0a78cc}.already{background-color:#16a693}.pending-activation{background-color:#ddbf45}\n"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: CardComponent, selector: "tk-card", inputs: ["title"] }] });
|
|
876
881
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StatCardComponent, decorators: [{
|
|
877
882
|
type: Component,
|
|
878
|
-
args: [{ selector: 'tk-stat-card', template: "<tk-card [title]=\"title\">\r\n <ng-container ngProjectAs=\"card-content\">\r\n <div class=\"card__content-info\">\r\n <div class=\"card__content-wrapper\">\r\n <img width=\"42\" [src]=\"'assets/icons/' + type + '.png'\" alt=\"\" />\r\n <div class=\"card__content-text\">\r\n <div class=\"card__content-label\">\r\n
|
|
883
|
+
args: [{ selector: 'tk-stat-card', template: "<tk-card [title]=\"title\">\r\n <ng-container ngProjectAs=\"card-content\">\r\n <div class=\"card__content-info\">\r\n <div class=\"card__content-wrapper\">\r\n <img width=\"42\" [src]=\"'assets/icons/' + type + '.png'\" alt=\"\" />\r\n <div class=\"card__content-text\">\r\n <ng-container *ngIf=\"upgradeStatus === 'ready' || upgradeStatus === 'already'\">\r\n <div class=\"card__content-label\">\r\n {{ upgradeStatus === 'ready' ? stats?.totalReady : stats?.totalUpgraded }}\r\n {{ type === 'user' ? 'Users' : 'Sites' }}</div>\r\n <div class=\"card__content-description\">{{ upgradeStatus === 'ready' ? 'Ready to Upgrade' : 'Already Upgraded' }}</div>\r\n </ng-container>\r\n <ng-container *ngIf=\"upgradeStatus === 'pending'\">\r\n <div class=\"card__content-label\">\r\n {{ stats?.pendingActivation }}\r\n {{ 'User' }}</div>\r\n <div class=\"card__content-description\">{{ 'Ready to activate' }}</div>\r\n </ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"card__content-progress-wrapper\">\r\n <ng-container *ngIf=\"upgradeStatus === 'ready' || upgradeStatus === 'already'\">\r\n <div class=\"card__content-progress\">\r\n <div class=\"card__content-progress-label\">\r\n <span>{{ readyPercentage }}%</span>\r\n <span>From all {{ stats?.total }} {{ type === 'user' ? 'users' : 'sites' }}</span>\r\n </div>\r\n <div class=\"card__content-progress-bar\">\r\n <div\r\n class=\"card__content-progress-bar-fill ready\"\r\n [class.already]=\"upgradeStatus === 'already'\"\r\n [style.width.%]=\"readyPercentage\"\r\n ></div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"upgradeStatus === 'already'\" class=\"card__content-progress\">\r\n <div class=\"card__content-progress-label\">\r\n <span>{{ upgradedPercentage }}%</span>\r\n <span>From all {{ stats?.totalReady }} ready {{ type === 'user' ? 'users' : 'sites' }}</span>\r\n </div>\r\n <div class=\"card__content-progress-bar\">\r\n <div\r\n class=\"card__content-progress-bar-fill ready\"\r\n [class.already]=\"upgradeStatus === 'already'\"\r\n [style.width.%]=\"upgradedPercentage\"\r\n ></div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container *ngIf=\"upgradeStatus === 'pending'\">\r\n <div class=\"card__content-progress\">\r\n <div class=\"card__content-progress-label\">\r\n <span>{{ pendingActivationPercentage }}%</span>\r\n <span>From all {{ stats?.totalUpgraded }} {{ 'upgraded users' }}</span>\r\n </div>\r\n <div class=\"card__content-progress-bar\">\r\n <div\r\n class=\"card__content-progress-bar-fill ready\"\r\n [class.pending-activation]=\"upgradeStatus === 'pending'\"\r\n [style.width.%]=\"pendingActivationPercentage\"\r\n ></div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </div>\r\n </ng-container>\r\n</tk-card>\r\n", styles: [":host{display:block;height:100%;box-sizing:border-box}.card__content-info{display:flex;align-items:center;justify-content:space-between}.card__content-text{display:flex;flex-direction:column;gap:.25rem}.card__content-text .card__content-label{font-size:20px}.card__content-text .card__content-description{font-size:12px}.card__content-wrapper{display:flex;align-items:center;justify-content:center;gap:1rem}.card__content-wrapper:first-child{display:flex;gap:.5rem}.card__content-progress-wrapper{display:flex;flex-direction:column;gap:1rem}.card__content-progress{display:flex;flex-direction:column;gap:.25rem;font-size:14px}.card__content-progress .card__content-progress-label{display:flex;align-items:center;justify-content:space-between;padding:.05rem}.card__content-progress .card__content-progress-bar{background-color:#ededed;border-radius:10rem}.card__content-progress .card__content-progress-bar .card__content-progress-bar-fill{height:10px;border-radius:inherit}.ready{background-color:#0a78cc}.already{background-color:#16a693}.pending-activation{background-color:#ddbf45}\n"] }]
|
|
879
884
|
}], propDecorators: { title: [{
|
|
880
885
|
type: Input
|
|
881
886
|
}], type: [{
|
|
@@ -2155,6 +2160,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2155
2160
|
type: Input
|
|
2156
2161
|
}] } });
|
|
2157
2162
|
|
|
2163
|
+
class PendingActivationUsersCardComponent {
|
|
2164
|
+
constructor() {
|
|
2165
|
+
this.apiService = inject(APIService);
|
|
2166
|
+
this.upgradeOverviewService = inject(UpgradeOverviewService);
|
|
2167
|
+
this.destroy$ = new Subject();
|
|
2168
|
+
this.title = 'Pending Activation Users';
|
|
2169
|
+
this.type = 'user';
|
|
2170
|
+
this.upgradeStatus = 'pending';
|
|
2171
|
+
this.loading = false;
|
|
2172
|
+
}
|
|
2173
|
+
ngOnInit() {
|
|
2174
|
+
this.apiService.token = this.token;
|
|
2175
|
+
this.upgradeOverviewService.customerId = this.customerId;
|
|
2176
|
+
this.loading = true;
|
|
2177
|
+
this.upgradeOverviewService.getUsersUpgradeSummary()
|
|
2178
|
+
.pipe(takeUntil(this.destroy$))
|
|
2179
|
+
.subscribe((stats) => {
|
|
2180
|
+
this.readinessStats = Object.assign({ pendingActivation: 1 }, stats);
|
|
2181
|
+
this.loading = false;
|
|
2182
|
+
});
|
|
2183
|
+
}
|
|
2184
|
+
ngOnDestroy() {
|
|
2185
|
+
this.destroy$.next();
|
|
2186
|
+
this.destroy$.complete();
|
|
2187
|
+
}
|
|
2188
|
+
}
|
|
2189
|
+
PendingActivationUsersCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PendingActivationUsersCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2190
|
+
PendingActivationUsersCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PendingActivationUsersCardComponent, selector: "tk-pending-activation-users-card", inputs: { token: "token", customerId: "customerId" }, ngImport: i0, template: `
|
|
2191
|
+
<tk-stat-card
|
|
2192
|
+
*ngIf="!loading"
|
|
2193
|
+
[title]="title"
|
|
2194
|
+
[type]="type"
|
|
2195
|
+
[readinessStats]="readinessStats"
|
|
2196
|
+
[upgradeStatus]="upgradeStatus"
|
|
2197
|
+
></tk-stat-card>
|
|
2198
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: StatCardComponent, selector: "tk-stat-card", inputs: ["title", "type", "readinessStats", "upgradeStatus"] }] });
|
|
2199
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PendingActivationUsersCardComponent, decorators: [{
|
|
2200
|
+
type: Component,
|
|
2201
|
+
args: [{
|
|
2202
|
+
selector: 'tk-pending-activation-users-card',
|
|
2203
|
+
template: `
|
|
2204
|
+
<tk-stat-card
|
|
2205
|
+
*ngIf="!loading"
|
|
2206
|
+
[title]="title"
|
|
2207
|
+
[type]="type"
|
|
2208
|
+
[readinessStats]="readinessStats"
|
|
2209
|
+
[upgradeStatus]="upgradeStatus"
|
|
2210
|
+
></tk-stat-card>
|
|
2211
|
+
`
|
|
2212
|
+
}]
|
|
2213
|
+
}], propDecorators: { token: [{
|
|
2214
|
+
type: Input
|
|
2215
|
+
}], customerId: [{
|
|
2216
|
+
type: Input
|
|
2217
|
+
}] } });
|
|
2218
|
+
|
|
2158
2219
|
class UpgradeOverviewModule {
|
|
2159
2220
|
}
|
|
2160
2221
|
UpgradeOverviewModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UpgradeOverviewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -2164,14 +2225,16 @@ UpgradeOverviewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", v
|
|
|
2164
2225
|
AlreadyUpgradedSitesCardComponent,
|
|
2165
2226
|
PreconditionsStatusListCardComponent,
|
|
2166
2227
|
SiteInfrastructureStatusListCardComponent,
|
|
2167
|
-
UpgradeStateComparisonChartCardComponent
|
|
2228
|
+
UpgradeStateComparisonChartCardComponent,
|
|
2229
|
+
PendingActivationUsersCardComponent], imports: [CommonModule,
|
|
2168
2230
|
SharedModule], exports: [ReadyToUpgradeUsersCardComponent,
|
|
2169
2231
|
ReadyToUpgradeSitesCardComponent,
|
|
2170
2232
|
AlreadyUpgradedUsersCardComponent,
|
|
2171
2233
|
AlreadyUpgradedSitesCardComponent,
|
|
2172
2234
|
PreconditionsStatusListCardComponent,
|
|
2173
2235
|
SiteInfrastructureStatusListCardComponent,
|
|
2174
|
-
UpgradeStateComparisonChartCardComponent
|
|
2236
|
+
UpgradeStateComparisonChartCardComponent,
|
|
2237
|
+
PendingActivationUsersCardComponent] });
|
|
2175
2238
|
UpgradeOverviewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UpgradeOverviewModule, imports: [CommonModule,
|
|
2176
2239
|
SharedModule] });
|
|
2177
2240
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UpgradeOverviewModule, decorators: [{
|
|
@@ -2184,7 +2247,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2184
2247
|
AlreadyUpgradedSitesCardComponent,
|
|
2185
2248
|
PreconditionsStatusListCardComponent,
|
|
2186
2249
|
SiteInfrastructureStatusListCardComponent,
|
|
2187
|
-
UpgradeStateComparisonChartCardComponent
|
|
2250
|
+
UpgradeStateComparisonChartCardComponent,
|
|
2251
|
+
PendingActivationUsersCardComponent,
|
|
2188
2252
|
],
|
|
2189
2253
|
imports: [
|
|
2190
2254
|
CommonModule,
|
|
@@ -2197,7 +2261,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2197
2261
|
AlreadyUpgradedSitesCardComponent,
|
|
2198
2262
|
PreconditionsStatusListCardComponent,
|
|
2199
2263
|
SiteInfrastructureStatusListCardComponent,
|
|
2200
|
-
UpgradeStateComparisonChartCardComponent
|
|
2264
|
+
UpgradeStateComparisonChartCardComponent,
|
|
2265
|
+
PendingActivationUsersCardComponent,
|
|
2201
2266
|
],
|
|
2202
2267
|
providers: []
|
|
2203
2268
|
}]
|
|
@@ -2216,5 +2281,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2216
2281
|
* Generated bundle index. Do not edit.
|
|
2217
2282
|
*/
|
|
2218
2283
|
|
|
2219
|
-
export { AlreadyUpgradedSitesCardComponent, AlreadyUpgradedUsersCardComponent, PreconditionsStatusListCardComponent, ProgressBarComponent, ReadyToUpgradeSitesCardComponent, ReadyToUpgradeUsersCardComponent, SiteInfrastructureStatusListCardComponent, SiteUpgradeDataTableComponent, SiteUpgradeModule, UpgradeOverviewModule, UpgradeStateComparisonChartCardComponent, UserUpgradeDataTableComponent, UserUpgradeModule };
|
|
2284
|
+
export { AlreadyUpgradedSitesCardComponent, AlreadyUpgradedUsersCardComponent, PendingActivationUsersCardComponent, PreconditionsStatusListCardComponent, ProgressBarComponent, ReadyToUpgradeSitesCardComponent, ReadyToUpgradeUsersCardComponent, SiteInfrastructureStatusListCardComponent, SiteUpgradeDataTableComponent, SiteUpgradeModule, UpgradeOverviewModule, UpgradeStateComparisonChartCardComponent, UserUpgradeDataTableComponent, UserUpgradeModule };
|
|
2220
2285
|
//# sourceMappingURL=tuki-io-tuki-widgets-di2mt.mjs.map
|