@the-liberators/ngx-scrumteamsurvey-tools 2.3.132 → 2.3.133
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/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@the-liberators/ngx-scrumteamsurvey-tools",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.133",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^21.1.
|
|
6
|
-
"@angular/core": "^21.1.
|
|
7
|
-
"@angular/forms": "^21.1.
|
|
5
|
+
"@angular/common": "^21.1.2",
|
|
6
|
+
"@angular/core": "^21.1.2",
|
|
7
|
+
"@angular/forms": "^21.1.2",
|
|
8
|
+
"@angular/material": "^21.1.2",
|
|
9
|
+
"@angular/material-moment-adapter": "^21.1.2",
|
|
10
|
+
"angular-oauth2-oidc": "^20.0.2",
|
|
8
11
|
"@swimlane/ngx-charts": "^23.1.0",
|
|
9
|
-
"@angular/material": "^21.1.0",
|
|
10
|
-
"@angular/material-moment-adapter": "^21.1.0",
|
|
11
12
|
"moment": "^2.30.1",
|
|
12
13
|
"ngx-webstorage-service": "^5.0.0",
|
|
13
14
|
"rxjs": "7.8.2",
|
|
@@ -5,12 +5,12 @@ import { FormGroup, FormBuilder, FormGroupDirective, FormControl, ControlValueAc
|
|
|
5
5
|
import * as i3$2 from '@angular/material/snack-bar';
|
|
6
6
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
7
7
|
import * as i3 from '@angular/router';
|
|
8
|
-
import { ActivatedRoute,
|
|
8
|
+
import { ActivatedRoute, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router } from '@angular/router';
|
|
9
9
|
import * as rxjs from 'rxjs';
|
|
10
10
|
import { Observable, BehaviorSubject, Subscription, Subject } from 'rxjs';
|
|
11
11
|
import * as i9 from 'ngx-webstorage-service';
|
|
12
12
|
import { StorageService } from 'ngx-webstorage-service';
|
|
13
|
-
import { HttpClient,
|
|
13
|
+
import { HttpClient, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpBackend } from '@angular/common/http';
|
|
14
14
|
import * as i2$2 from '@angular/material/dialog';
|
|
15
15
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
16
16
|
import * as i12 from '@angular/material/tooltip';
|
|
@@ -23,6 +23,7 @@ import * as i2$1 from '@angular/common';
|
|
|
23
23
|
import { DatePipe, Location } from '@angular/common';
|
|
24
24
|
import * as i6 from '@angular/material/input';
|
|
25
25
|
import * as i22 from '@angular/material/datepicker';
|
|
26
|
+
import { OAuthService, OAuthStorage, OAuthResourceServerErrorHandler } from 'angular-oauth2-oidc';
|
|
26
27
|
import * as i2$3 from '@angular/material/autocomplete';
|
|
27
28
|
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
28
29
|
import * as i6$1 from '@angular/material/chips';
|
|
@@ -35,7 +36,6 @@ import * as i56 from '@angular/cdk/overlay';
|
|
|
35
36
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
36
37
|
import * as i48 from '@swimlane/ngx-charts';
|
|
37
38
|
import { LegendPosition } from '@swimlane/ngx-charts';
|
|
38
|
-
import { AuthService } from '@auth0/auth0-angular';
|
|
39
39
|
import * as i57 from '@angular/material/slide-toggle';
|
|
40
40
|
import * as i60 from '@angular/material/progress-spinner';
|
|
41
41
|
import { ComponentType } from '@angular/cdk/portal';
|
|
@@ -1254,6 +1254,84 @@ declare class AlertClientConfig {
|
|
|
1254
1254
|
static ɵprov: i0.ɵɵInjectableDeclaration<AlertClientConfig>;
|
|
1255
1255
|
}
|
|
1256
1256
|
|
|
1257
|
+
declare class AuthModule {
|
|
1258
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthModule, never>;
|
|
1259
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AuthModule, never, [typeof i3.RouterModule, typeof i2$1.CommonModule], never>;
|
|
1260
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AuthModule>;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
declare class AuthConfigDto {
|
|
1264
|
+
clientId: string;
|
|
1265
|
+
audience: string;
|
|
1266
|
+
domain: string;
|
|
1267
|
+
scopes: string;
|
|
1268
|
+
interceptorAllowUrlList: string[];
|
|
1269
|
+
requireHttps: boolean;
|
|
1270
|
+
debug: boolean;
|
|
1271
|
+
}
|
|
1272
|
+
declare const AuthConfigToken: InjectionToken<AuthConfigDto>;
|
|
1273
|
+
declare class AuthConfig {
|
|
1274
|
+
private config?;
|
|
1275
|
+
constructor(config?: AuthConfigDto);
|
|
1276
|
+
set(config: AuthConfigDto): void;
|
|
1277
|
+
get(): AuthConfigDto;
|
|
1278
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthConfig, [{ optional: true; }]>;
|
|
1279
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthConfig>;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
interface UserProfile {
|
|
1283
|
+
email: string;
|
|
1284
|
+
name?: string;
|
|
1285
|
+
use_mfa?: boolean;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
declare class AuthService {
|
|
1289
|
+
private oauth;
|
|
1290
|
+
private authStorage;
|
|
1291
|
+
private config;
|
|
1292
|
+
private userSubject;
|
|
1293
|
+
user$: rxjs.Observable<UserProfile>;
|
|
1294
|
+
private isAuthenticatedSubject$;
|
|
1295
|
+
isAuthenticated$: rxjs.Observable<boolean>;
|
|
1296
|
+
constructor(oauth: OAuthService, authStorage: OAuthStorage, config: AuthConfig);
|
|
1297
|
+
initialize(): Promise<void>;
|
|
1298
|
+
login(options?: {
|
|
1299
|
+
redirectUrl?: string;
|
|
1300
|
+
connectionId?: string;
|
|
1301
|
+
prompt?: string;
|
|
1302
|
+
max_age?: number;
|
|
1303
|
+
}): Promise<void>;
|
|
1304
|
+
loginWithPopup(options?: {
|
|
1305
|
+
connectionId?: string;
|
|
1306
|
+
prompt?: string;
|
|
1307
|
+
max_age?: number;
|
|
1308
|
+
}): Promise<unknown>;
|
|
1309
|
+
get isLoggedIn(): boolean;
|
|
1310
|
+
logout(onlyRemoveToken?: boolean): void;
|
|
1311
|
+
private syncAuthState;
|
|
1312
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
1313
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
declare class AuthGuard implements CanActivate {
|
|
1317
|
+
private auth;
|
|
1318
|
+
constructor(auth: AuthService);
|
|
1319
|
+
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Promise<boolean | UrlTree>;
|
|
1320
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthGuard, never>;
|
|
1321
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthGuard>;
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
declare class AuthInterceptor implements HttpInterceptor {
|
|
1325
|
+
private authStorage;
|
|
1326
|
+
private errorHandler;
|
|
1327
|
+
private config;
|
|
1328
|
+
moduleConfig: any;
|
|
1329
|
+
constructor(authStorage: OAuthStorage, errorHandler: OAuthResourceServerErrorHandler, config: AuthConfig);
|
|
1330
|
+
intercept(request: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>>;
|
|
1331
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthInterceptor, never>;
|
|
1332
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthInterceptor>;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1257
1335
|
declare class BrandingProvider {
|
|
1258
1336
|
palette: PaletteItem[];
|
|
1259
1337
|
changed: Subject<PaletteItem[]>;
|
|
@@ -3223,13 +3301,13 @@ declare class ImageSliderComponent {
|
|
|
3223
3301
|
|
|
3224
3302
|
declare class GuidesModule {
|
|
3225
3303
|
static ɵfac: i0.ɵɵFactoryDeclaration<GuidesModule, never>;
|
|
3226
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GuidesModule, [typeof StartGuideDirective, typeof OpenGuideDialogDirective, typeof OpenGuidesDialogDirective, typeof DialogGuidesComponent, typeof ResumeGuideHoverComponent, typeof DialogGuideComponent, typeof ImageSliderComponent], [typeof i2$2.MatDialogModule, typeof i3.RouterModule, typeof i3$1.FormsModule, typeof i2$1.CommonModule, typeof BrandingModule, typeof CheckboxModule
|
|
3304
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GuidesModule, [typeof StartGuideDirective, typeof OpenGuideDialogDirective, typeof OpenGuidesDialogDirective, typeof DialogGuidesComponent, typeof ResumeGuideHoverComponent, typeof DialogGuideComponent, typeof ImageSliderComponent], [typeof i2$2.MatDialogModule, typeof i3.RouterModule, typeof i3$1.FormsModule, typeof i2$1.CommonModule, typeof BrandingModule, typeof CheckboxModule], [typeof StartGuideDirective, typeof OpenGuideDialogDirective, typeof OpenGuidesDialogDirective, typeof DialogGuidesComponent, typeof ResumeGuideHoverComponent, typeof DialogGuideComponent, typeof ImageSliderComponent]>;
|
|
3227
3305
|
static ɵinj: i0.ɵɵInjectorDeclaration<GuidesModule>;
|
|
3228
3306
|
}
|
|
3229
3307
|
|
|
3230
3308
|
declare class ResultsModule {
|
|
3231
3309
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResultsModule, never>;
|
|
3232
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ResultsModule, [typeof ArrowComponent, typeof DeltaArrowComponent, typeof BenchmarkIndicatorComponent, typeof ResultIndicatorComponent, typeof FocusAreasComponent, typeof ImpactIndicatorComponent, typeof AgeIndicatorComponent, typeof RoadmapComponent, typeof TryNowProfessionalComponent, typeof QuickTipsComponent, typeof RecommendationComponent, typeof RecommendationsComponent, typeof ModelSwitcherComponent, typeof ResearchComponent, typeof DoItYourselfWorkshopsComponent, typeof DoItYourselfComponent, typeof FooterComponent, typeof DialogSettingsComponent, typeof NavButtonComponent, typeof TermsUpdatedComponent, typeof OpenSettingsDialogDirective, typeof WidgetFactorScoreComponent, typeof WidgetParticipationRateComponent, typeof TeamEffectivenessComponent, typeof DialogExportFactorScoresComponent, typeof OpenExportFactorScoresDialogDirective, typeof DialogExportTeamListComponent, typeof OpenExportTeamListDialogDirective, typeof DialogTeamFilterComponent, typeof OpenTeamFilterDialogDirective, typeof FactorAxisComponent, typeof TipBadgeComponent, typeof DialogNotesComponent, typeof FilterTagsComponent, typeof LimitationsApplyComponent, typeof OpenNotesDialogDirective, typeof FactorsComponent, typeof TrendsComponent, typeof BadgeComponent, typeof BadgesComponent, typeof BadgeStreakComponent, typeof UpdateInProgressComponent, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof BadgeProgressionComponent, typeof ParticipantsComponent, typeof VideoComponent, typeof UserProfileComponent], [typeof i5.ClipboardModule, typeof i48.NgxChartsModule, typeof SlugifyPipeModule, typeof i2$2.MatDialogModule, typeof i12.MatTooltipModule, typeof i52.MatNativeDateModule, typeof i3.RouterModule, typeof i3$1.FormsModule, typeof i3$1.ReactiveFormsModule, typeof i52.MatOptionModule, typeof i6.MatInputModule, typeof i56.OverlayModule, typeof i57.MatSlideToggleModule, typeof BrandingModule, typeof i2.MatSelectModule, typeof i60.MatProgressSpinnerModule, typeof i22.MatDatepickerModule, typeof DateRangePipeModule, typeof ActionsModule, typeof i2$1.CommonModule, typeof DialogSupportModule, typeof DialogSubscribeModule, typeof ResourceDownloadModule, typeof LoadingModule, typeof FactorInformationDialogModule, typeof GuidesModule], [typeof ArrowComponent, typeof DeltaArrowComponent, typeof BenchmarkIndicatorComponent, typeof TryNowProfessionalComponent, typeof ResultIndicatorComponent, typeof AgeIndicatorComponent, typeof FocusAreasComponent, typeof ImpactIndicatorComponent, typeof VideoComponent, typeof QuickTipsComponent, typeof RoadmapComponent, typeof TermsUpdatedComponent, typeof FooterComponent, typeof NavButtonComponent, typeof RecommendationComponent, typeof ModelSwitcherComponent, typeof RecommendationsComponent, typeof FilterTagsComponent, typeof DoItYourselfWorkshopsComponent, typeof ResearchComponent, typeof LimitationsApplyComponent, typeof DoItYourselfComponent, typeof DialogSettingsComponent, typeof OpenSettingsDialogDirective, typeof TeamEffectivenessComponent, typeof WidgetFactorScoreComponent, typeof WidgetParticipationRateComponent, typeof DialogExportFactorScoresComponent, typeof UpdateInProgressComponent, typeof OpenExportFactorScoresDialogDirective, typeof DialogExportTeamListComponent, typeof OpenNotesDialogDirective, typeof OpenExportTeamListDialogDirective, typeof OpenTeamFilterDialogDirective, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof TipBadgeComponent, typeof FactorsComponent, typeof BadgesComponent, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof TrendsComponent, typeof BadgeComponent, typeof BadgeProgressionComponent, typeof BadgeStreakComponent, typeof ParticipantsComponent, typeof UserProfileComponent]>;
|
|
3310
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ResultsModule, [typeof ArrowComponent, typeof DeltaArrowComponent, typeof BenchmarkIndicatorComponent, typeof ResultIndicatorComponent, typeof FocusAreasComponent, typeof ImpactIndicatorComponent, typeof AgeIndicatorComponent, typeof RoadmapComponent, typeof TryNowProfessionalComponent, typeof QuickTipsComponent, typeof RecommendationComponent, typeof RecommendationsComponent, typeof ModelSwitcherComponent, typeof ResearchComponent, typeof DoItYourselfWorkshopsComponent, typeof DoItYourselfComponent, typeof FooterComponent, typeof DialogSettingsComponent, typeof NavButtonComponent, typeof TermsUpdatedComponent, typeof OpenSettingsDialogDirective, typeof WidgetFactorScoreComponent, typeof WidgetParticipationRateComponent, typeof TeamEffectivenessComponent, typeof DialogExportFactorScoresComponent, typeof OpenExportFactorScoresDialogDirective, typeof DialogExportTeamListComponent, typeof OpenExportTeamListDialogDirective, typeof DialogTeamFilterComponent, typeof OpenTeamFilterDialogDirective, typeof FactorAxisComponent, typeof TipBadgeComponent, typeof DialogNotesComponent, typeof FilterTagsComponent, typeof LimitationsApplyComponent, typeof OpenNotesDialogDirective, typeof FactorsComponent, typeof TrendsComponent, typeof BadgeComponent, typeof BadgesComponent, typeof BadgeStreakComponent, typeof UpdateInProgressComponent, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof BadgeProgressionComponent, typeof ParticipantsComponent, typeof VideoComponent, typeof UserProfileComponent], [typeof i5.ClipboardModule, typeof i48.NgxChartsModule, typeof SlugifyPipeModule, typeof i2$2.MatDialogModule, typeof i12.MatTooltipModule, typeof i52.MatNativeDateModule, typeof i3.RouterModule, typeof i3$1.FormsModule, typeof i3$1.ReactiveFormsModule, typeof i52.MatOptionModule, typeof i6.MatInputModule, typeof i56.OverlayModule, typeof i57.MatSlideToggleModule, typeof BrandingModule, typeof i2.MatSelectModule, typeof i60.MatProgressSpinnerModule, typeof i22.MatDatepickerModule, typeof DateRangePipeModule, typeof ActionsModule, typeof i2$1.CommonModule, typeof DialogSupportModule, typeof DialogSubscribeModule, typeof ResourceDownloadModule, typeof LoadingModule, typeof FactorInformationDialogModule, typeof GuidesModule, typeof AuthModule], [typeof ArrowComponent, typeof DeltaArrowComponent, typeof BenchmarkIndicatorComponent, typeof TryNowProfessionalComponent, typeof ResultIndicatorComponent, typeof AgeIndicatorComponent, typeof FocusAreasComponent, typeof ImpactIndicatorComponent, typeof VideoComponent, typeof QuickTipsComponent, typeof RoadmapComponent, typeof TermsUpdatedComponent, typeof FooterComponent, typeof NavButtonComponent, typeof RecommendationComponent, typeof ModelSwitcherComponent, typeof RecommendationsComponent, typeof FilterTagsComponent, typeof DoItYourselfWorkshopsComponent, typeof ResearchComponent, typeof LimitationsApplyComponent, typeof DoItYourselfComponent, typeof DialogSettingsComponent, typeof OpenSettingsDialogDirective, typeof TeamEffectivenessComponent, typeof WidgetFactorScoreComponent, typeof WidgetParticipationRateComponent, typeof DialogExportFactorScoresComponent, typeof UpdateInProgressComponent, typeof OpenExportFactorScoresDialogDirective, typeof DialogExportTeamListComponent, typeof OpenNotesDialogDirective, typeof OpenExportTeamListDialogDirective, typeof OpenTeamFilterDialogDirective, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof TipBadgeComponent, typeof FactorsComponent, typeof BadgesComponent, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof TrendsComponent, typeof BadgeComponent, typeof BadgeProgressionComponent, typeof BadgeStreakComponent, typeof ParticipantsComponent, typeof UserProfileComponent]>;
|
|
3233
3311
|
static ɵinj: i0.ɵɵInjectorDeclaration<ResultsModule>;
|
|
3234
3312
|
}
|
|
3235
3313
|
|
|
@@ -3584,5 +3662,5 @@ declare class ViewModelStateConfig {
|
|
|
3584
3662
|
static ɵprov: i0.ɵɵInjectableDeclaration<ViewModelStateConfig>;
|
|
3585
3663
|
}
|
|
3586
3664
|
|
|
3587
|
-
export { AccountService, ActionClientConfig, ActionCollectionDto, ActionConfigDto, ActionConfigToken, ActionDto, ActionListComponent, ActionListFilter, ActionManageComponent, ActionOptionDto, ActionOptionsDto, ActionPrefillDto, ActionService, ActionTeamDto, ActionTileComponent, ActionsModule, AgeIndicatorComponent, AlertAnnouncementComponent, AlertClientConfig, AlertConfigDto, AlertConfigToken, AlertDto, AlertFilterDto, AlertResponseDto, AlertService, AlertsComponent, AlertsModule, ApiConfig, ApiConfigDto, ApiConfigToken, ApiErrorDto, ArrowComponent, ArrowUpdateService, BackButtonDirective, BackButtonDirectiveModule, BadgeCollectionDto, BadgeComponent, BadgeDto, BadgeProgressionComponent, BadgeStreakComponent, BadgeTypeEnum, BadgesComponent, BenchmarkIndicatorComponent, BenchmarkOptionDto, BenchmarkTypeEnum, BrandBackgroundDirective, BrandConditionalBackgroundColorDirective, BrandConditionalColorDirective, BrandHoverColorDirective, BrandingModule, BrandingProvider, BrandingSettingsDto, CallbackPipe, CallbackPipeModule, ChannelDefaultBrandingDto, ChannelDto, CheckboxComponent, CheckboxModule, ClickableTooltipDirective, ClientInfoDto, ClientIntegrationListDto, ClientIntegrationSummaryDto, ComponentBase, ComponentWithViewStateBase, ContactService, ContentBrandingDto, ContextItemDto, ContextTypes, DIALOG_GUIDES_TOKEN, DIALOG_GUIDE_TOKEN, DateRangeDto, DateRangePipe, DateRangePipeModule, DefinitionDto, DeltaArrowComponent, DeltaPeriodEnum, DialogAccountComponent, DialogAccountModule, DialogActionFiltersComponent, DialogActionManageComponent, DialogAlertsComponent, DialogExportActionsComponent, DialogExportFactorScoresComponent, DialogExportTeamListComponent, DialogFactorInformationComponent, DialogGuideComponent, DialogGuidesComponent, DialogIntegrationComponent, DialogModelFilterComponent, DialogNotesComponent, DialogResourceDownloadComponent, DialogSettingsComponent, DialogSubscribeComponent, DialogSubscribeModule, DialogSupportComponent, DialogSupportModule, DialogTeamFilterComponent, DimensionResultDto, DismissAlertRequestDto, DismissPopupService, DismissedAlertsService, DoItYourselfComponent, DoItYourselfWorkshopsComponent, EffectDto, EffectTypeEnum, ErrorConfigToken, ErrorDetailDto, ErrorDto, ErrorServiceConfig, ErrorServiceConfigDto, ErrorServiceModule, ExpandComponent, ExpandItemDto, ExpandModule, ExportActionsRequestDto, ExportFactorScoresRequestDto, ExportTeamListRequestDto, FactorAxisComponent, FactorEffectDto, FactorInformationDialogModule, FactorRecommendationDto, FactorScoreCollectionBenchmarkDto, FactorScoreCollectionCompositionDto, FactorScoreCollectionCompositionSegmentDto, FactorScoreCollectionDeltaDto, FactorScoreCollectionDto, FactorScoreCollectionFiltersDto, FactorScoreCollectionSamplingWindowsDto, FactorScoreCompositionPointDto, FactorScoreCompositionPointsDto, FactorScoreDto, FactorService, FactorStructureConstraintDto, FactorStructureDto, FactorStructureSegmentDto, FactorsComponent, FeedbackQuickTipDto, FeedbackResourceDto, FilterTagsComponent, FocusAreasComponent, FooterComponent, FrontAndBackendErrorHandler, GUIDESTATE_PROVIDER, GuardsModule, GuideCollectionDto, GuideConfigDto, GuideDto, GuideMediaTypeEnum, GuidePopupService, GuideSettingsDto, GuideStateDto, GuideStateInBackEndService, GuideStateInBrowserService, GuideStepDto, GuideStepMediaDto, GuidesClientConfig, GuidesConfigToken, GuidesModule, ImageSliderComponent, ImpactIndicatorComponent, IncludeActionsModeEnum, InterventionFilterType, InterventionOwnerEnum, InterventionOwnerToStringPipe, InterventionSortEnum, InterventionStateEnum, InterventionStateToStringPipe, InterventionSummaryDto, InterventionTypeEnum, InterventionTypeToStringPipe, InviteUrlDto, KeyValueDto, LegalDocumentDto, LegalDto, LimitationsApplyComponent, LoadModes, LoadingComponent, LoadingModule, LocalUserDto, LoggingSeverityEnum, MatTagsComponent, MatTagsModule, MeasurementDto, MetaDataInputComponent, MetadataInputModule, ModelCanvasComponent, ModelDefinitionDto, ModelDemoUrlDto, ModelFactorBenchmarkComponent, ModelFactorBreakdownComponent, ModelFactorCoreComponent, ModelFactorIndicatorComponent, ModelFactorMetricComponent, ModelFilter, ModelStructureDto, ModelSummaryDto, ModelSwitcherComponent, ModelVisualizationLayer, ModelVisualizationModule, MultiEmailInputComponent, MultiEmailInputModule, NavButtonComponent, NavigationUrlDto, NavigationUrlTypeEnum, NgAddToCalendarModule, NoReloadStrategy, OpenAccountDialogDirective, OpenActionFiltersDialogDirective, OpenAddActionDialogDirective, OpenAlertsDialogDirective, OpenContactSalesDialog, OpenEditActionDialogDirective, OpenExportActionsDialogDirective, OpenExportFactorScoresDialogDirective, OpenExportTeamListDialogDirective, OpenFactorInformationDialogDirective, OpenFeedbackDialogDirective, OpenGuideDialogDirective, OpenGuidesDialogDirective, OpenIntegrationDialogDirective, OpenLookingForHelpDialog, OpenModelFilterDialog, OpenNotesDialogDirective, OpenReportBugDialogDirective, OpenResourceDownloadDialogDirective, OpenSettingsDialogDirective, OpenSubscribeDialogDirective, OpenSupportDialogDirective, OpenTeamFilterDialogDirective, PaginatedResponse, PaginatorComponent, PaginatorModule, PaginatorPageEvent, PagingOptions, PaletteItem, ParticipantDto, ParticipantsComponent, ParticipationRateDto, PointDto, PointTypeEnum, ProcessingDataDto, ProgressbarComponent, ProgressbarModule, QualificationEnum, QualifiedByEnum, QuantitySelectorComponent, QuantitySelectorModule, QuestionnaireTypeDto, QuickTipsComponent, RecommendationComponent, RecommendationsComponent, ReloadOnPushStrategy, ResearchComponent, ResetPasswordRequestDto, ResourceDownloadModule, ResourceDownloadRedirectUrlDto, ResourceDownloadService, ResultIndicatorComponent, ResultsClientConfig, ResultsClientDto, ResultsConfigToken, ResultsModule, ResumeGuideHoverComponent, RoadmapComponent, SegmentEnum, SegmentNamePipe, SegmentNamePipeModule, SelectItem, SelectListComponent, SelectListItem, SelectListItemApiDto, SelectListModule, SessionIdInterceptor, SessionIdProvider, SiteDefaultFooterComponent, SiteDefaultHeaderComponent, SiteMicroFooterComponent, SlugifyPipe, SlugifyPipeModule, SnapshotDto, SnapshotInviteUrlsComponent, SnapshotInviteUrlsModule, SnapshotMetaDataDto, StartGuideDirective, SubscriptionTierEnum, TabItemDto, TabNavigatorComponent, TabNavigatorModule, TeamDto, TeamEffectivenessComponent, TeamFlagMatchDto, TeamListFilter, TeamListResponseDto, TeamMetaDataDto, TeamNameAndKeyDto, TeamNotificationSettingsDto, TeamSortEnum, TeamStatusEnum, TeamTraitDto, TermsService, TermsUpdatedComponent, TipBadgeComponent, TopicSelectorComponent, TopicSelectorDto, TopicSelectorModule, TrendDataRequestDto, TrendDataSetDto, TrendService, TrendsComponent, TruncatePipe, TruncatePipeModule, TryNowProfessionalComponent, UpdateInProgressComponent, UserGlobalSettingsDto, UserInfoDto, UserListFilter, UserListResponseDto, UserNameAndKeyDto, UserProfileComponent, UserProfileDto, UserProfileService, UserSettingService, UserSettingsDto, UserSpecificSettingsDto, VIEWSTATE_LOAD_STRATEGY, VIEWSTATE_PROVIDER, VIEWSTATE_RELOAD_STRATEGY, VIEWSTATE_USERSETTINGS_STRATEGY, ValidChangeTokenGuard, ValidKeyGuard, ValidKeySnapshotKeyGuard, ValidKeyTeamKeyGuard, VariableDto, VideoComponent, ViewModelStateBase, ViewModelStateConfig, ViewModelStateConfigDto, ViewModelStateConfigToken, ViewModelStateModule, WidgetFactorScoreComponent, WidgetParticipationRateComponent, compareInputValidator, domainValidator, httpsHostValidator, maxSelectedValidator, minTopicsSelectedValidator, presetCheckValidator };
|
|
3588
|
-
export type { ContactDto, ContactTypeDto, IActionState, IAggregateRootSource, IAggregateRootStreamFactory, IAlertState, IReloadStrategy, IResultsState, ITeamReportResultsState, IUserSettingStrategy, IViewState };
|
|
3665
|
+
export { AccountService, ActionClientConfig, ActionCollectionDto, ActionConfigDto, ActionConfigToken, ActionDto, ActionListComponent, ActionListFilter, ActionManageComponent, ActionOptionDto, ActionOptionsDto, ActionPrefillDto, ActionService, ActionTeamDto, ActionTileComponent, ActionsModule, AgeIndicatorComponent, AlertAnnouncementComponent, AlertClientConfig, AlertConfigDto, AlertConfigToken, AlertDto, AlertFilterDto, AlertResponseDto, AlertService, AlertsComponent, AlertsModule, ApiConfig, ApiConfigDto, ApiConfigToken, ApiErrorDto, ArrowComponent, ArrowUpdateService, AuthConfig, AuthConfigDto, AuthConfigToken, AuthGuard, AuthInterceptor, AuthModule, AuthService, BackButtonDirective, BackButtonDirectiveModule, BadgeCollectionDto, BadgeComponent, BadgeDto, BadgeProgressionComponent, BadgeStreakComponent, BadgeTypeEnum, BadgesComponent, BenchmarkIndicatorComponent, BenchmarkOptionDto, BenchmarkTypeEnum, BrandBackgroundDirective, BrandConditionalBackgroundColorDirective, BrandConditionalColorDirective, BrandHoverColorDirective, BrandingModule, BrandingProvider, BrandingSettingsDto, CallbackPipe, CallbackPipeModule, ChannelDefaultBrandingDto, ChannelDto, CheckboxComponent, CheckboxModule, ClickableTooltipDirective, ClientInfoDto, ClientIntegrationListDto, ClientIntegrationSummaryDto, ComponentBase, ComponentWithViewStateBase, ContactService, ContentBrandingDto, ContextItemDto, ContextTypes, DIALOG_GUIDES_TOKEN, DIALOG_GUIDE_TOKEN, DateRangeDto, DateRangePipe, DateRangePipeModule, DefinitionDto, DeltaArrowComponent, DeltaPeriodEnum, DialogAccountComponent, DialogAccountModule, DialogActionFiltersComponent, DialogActionManageComponent, DialogAlertsComponent, DialogExportActionsComponent, DialogExportFactorScoresComponent, DialogExportTeamListComponent, DialogFactorInformationComponent, DialogGuideComponent, DialogGuidesComponent, DialogIntegrationComponent, DialogModelFilterComponent, DialogNotesComponent, DialogResourceDownloadComponent, DialogSettingsComponent, DialogSubscribeComponent, DialogSubscribeModule, DialogSupportComponent, DialogSupportModule, DialogTeamFilterComponent, DimensionResultDto, DismissAlertRequestDto, DismissPopupService, DismissedAlertsService, DoItYourselfComponent, DoItYourselfWorkshopsComponent, EffectDto, EffectTypeEnum, ErrorConfigToken, ErrorDetailDto, ErrorDto, ErrorServiceConfig, ErrorServiceConfigDto, ErrorServiceModule, ExpandComponent, ExpandItemDto, ExpandModule, ExportActionsRequestDto, ExportFactorScoresRequestDto, ExportTeamListRequestDto, FactorAxisComponent, FactorEffectDto, FactorInformationDialogModule, FactorRecommendationDto, FactorScoreCollectionBenchmarkDto, FactorScoreCollectionCompositionDto, FactorScoreCollectionCompositionSegmentDto, FactorScoreCollectionDeltaDto, FactorScoreCollectionDto, FactorScoreCollectionFiltersDto, FactorScoreCollectionSamplingWindowsDto, FactorScoreCompositionPointDto, FactorScoreCompositionPointsDto, FactorScoreDto, FactorService, FactorStructureConstraintDto, FactorStructureDto, FactorStructureSegmentDto, FactorsComponent, FeedbackQuickTipDto, FeedbackResourceDto, FilterTagsComponent, FocusAreasComponent, FooterComponent, FrontAndBackendErrorHandler, GUIDESTATE_PROVIDER, GuardsModule, GuideCollectionDto, GuideConfigDto, GuideDto, GuideMediaTypeEnum, GuidePopupService, GuideSettingsDto, GuideStateDto, GuideStateInBackEndService, GuideStateInBrowserService, GuideStepDto, GuideStepMediaDto, GuidesClientConfig, GuidesConfigToken, GuidesModule, ImageSliderComponent, ImpactIndicatorComponent, IncludeActionsModeEnum, InterventionFilterType, InterventionOwnerEnum, InterventionOwnerToStringPipe, InterventionSortEnum, InterventionStateEnum, InterventionStateToStringPipe, InterventionSummaryDto, InterventionTypeEnum, InterventionTypeToStringPipe, InviteUrlDto, KeyValueDto, LegalDocumentDto, LegalDto, LimitationsApplyComponent, LoadModes, LoadingComponent, LoadingModule, LocalUserDto, LoggingSeverityEnum, MatTagsComponent, MatTagsModule, MeasurementDto, MetaDataInputComponent, MetadataInputModule, ModelCanvasComponent, ModelDefinitionDto, ModelDemoUrlDto, ModelFactorBenchmarkComponent, ModelFactorBreakdownComponent, ModelFactorCoreComponent, ModelFactorIndicatorComponent, ModelFactorMetricComponent, ModelFilter, ModelStructureDto, ModelSummaryDto, ModelSwitcherComponent, ModelVisualizationLayer, ModelVisualizationModule, MultiEmailInputComponent, MultiEmailInputModule, NavButtonComponent, NavigationUrlDto, NavigationUrlTypeEnum, NgAddToCalendarModule, NoReloadStrategy, OpenAccountDialogDirective, OpenActionFiltersDialogDirective, OpenAddActionDialogDirective, OpenAlertsDialogDirective, OpenContactSalesDialog, OpenEditActionDialogDirective, OpenExportActionsDialogDirective, OpenExportFactorScoresDialogDirective, OpenExportTeamListDialogDirective, OpenFactorInformationDialogDirective, OpenFeedbackDialogDirective, OpenGuideDialogDirective, OpenGuidesDialogDirective, OpenIntegrationDialogDirective, OpenLookingForHelpDialog, OpenModelFilterDialog, OpenNotesDialogDirective, OpenReportBugDialogDirective, OpenResourceDownloadDialogDirective, OpenSettingsDialogDirective, OpenSubscribeDialogDirective, OpenSupportDialogDirective, OpenTeamFilterDialogDirective, PaginatedResponse, PaginatorComponent, PaginatorModule, PaginatorPageEvent, PagingOptions, PaletteItem, ParticipantDto, ParticipantsComponent, ParticipationRateDto, PointDto, PointTypeEnum, ProcessingDataDto, ProgressbarComponent, ProgressbarModule, QualificationEnum, QualifiedByEnum, QuantitySelectorComponent, QuantitySelectorModule, QuestionnaireTypeDto, QuickTipsComponent, RecommendationComponent, RecommendationsComponent, ReloadOnPushStrategy, ResearchComponent, ResetPasswordRequestDto, ResourceDownloadModule, ResourceDownloadRedirectUrlDto, ResourceDownloadService, ResultIndicatorComponent, ResultsClientConfig, ResultsClientDto, ResultsConfigToken, ResultsModule, ResumeGuideHoverComponent, RoadmapComponent, SegmentEnum, SegmentNamePipe, SegmentNamePipeModule, SelectItem, SelectListComponent, SelectListItem, SelectListItemApiDto, SelectListModule, SessionIdInterceptor, SessionIdProvider, SiteDefaultFooterComponent, SiteDefaultHeaderComponent, SiteMicroFooterComponent, SlugifyPipe, SlugifyPipeModule, SnapshotDto, SnapshotInviteUrlsComponent, SnapshotInviteUrlsModule, SnapshotMetaDataDto, StartGuideDirective, SubscriptionTierEnum, TabItemDto, TabNavigatorComponent, TabNavigatorModule, TeamDto, TeamEffectivenessComponent, TeamFlagMatchDto, TeamListFilter, TeamListResponseDto, TeamMetaDataDto, TeamNameAndKeyDto, TeamNotificationSettingsDto, TeamSortEnum, TeamStatusEnum, TeamTraitDto, TermsService, TermsUpdatedComponent, TipBadgeComponent, TopicSelectorComponent, TopicSelectorDto, TopicSelectorModule, TrendDataRequestDto, TrendDataSetDto, TrendService, TrendsComponent, TruncatePipe, TruncatePipeModule, TryNowProfessionalComponent, UpdateInProgressComponent, UserGlobalSettingsDto, UserInfoDto, UserListFilter, UserListResponseDto, UserNameAndKeyDto, UserProfileComponent, UserProfileDto, UserProfileService, UserSettingService, UserSettingsDto, UserSpecificSettingsDto, VIEWSTATE_LOAD_STRATEGY, VIEWSTATE_PROVIDER, VIEWSTATE_RELOAD_STRATEGY, VIEWSTATE_USERSETTINGS_STRATEGY, ValidChangeTokenGuard, ValidKeyGuard, ValidKeySnapshotKeyGuard, ValidKeyTeamKeyGuard, VariableDto, VideoComponent, ViewModelStateBase, ViewModelStateConfig, ViewModelStateConfigDto, ViewModelStateConfigToken, ViewModelStateModule, WidgetFactorScoreComponent, WidgetParticipationRateComponent, compareInputValidator, domainValidator, httpsHostValidator, maxSelectedValidator, minTopicsSelectedValidator, presetCheckValidator };
|
|
3666
|
+
export type { ContactDto, ContactTypeDto, IActionState, IAggregateRootSource, IAggregateRootStreamFactory, IAlertState, IReloadStrategy, IResultsState, ITeamReportResultsState, IUserSettingStrategy, IViewState, UserProfile };
|