@the-liberators/ngx-scrumteamsurvey-tools 2.3.94 → 2.3.95
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/index.d.ts
CHANGED
|
@@ -238,6 +238,8 @@ declare class FactorStructureDto {
|
|
|
238
238
|
name: string;
|
|
239
239
|
color: string;
|
|
240
240
|
core: boolean;
|
|
241
|
+
metric: boolean;
|
|
242
|
+
unit: string;
|
|
241
243
|
indicatorPosition: string;
|
|
242
244
|
description: string;
|
|
243
245
|
questionCount: number;
|
|
@@ -314,13 +316,14 @@ declare class FactorScoreDto {
|
|
|
314
316
|
benchmarkLowerQuartile: number;
|
|
315
317
|
points: PointDto[];
|
|
316
318
|
sampleSize: number;
|
|
317
|
-
qualification:
|
|
319
|
+
qualification: QualificationEnum;
|
|
318
320
|
interventionSummary: InterventionSummaryDto;
|
|
319
321
|
recommendation: FactorRecommendationDto;
|
|
320
322
|
effects: FactorEffectDto[];
|
|
321
323
|
notes: string[];
|
|
322
324
|
anonymized: boolean;
|
|
323
325
|
lastMeasured: Date;
|
|
326
|
+
type: string;
|
|
324
327
|
}
|
|
325
328
|
declare class FactorRecommendationDto {
|
|
326
329
|
available: boolean;
|
|
@@ -506,7 +509,7 @@ declare class GuideSettingsDto {
|
|
|
506
509
|
completedSteps: string[];
|
|
507
510
|
}
|
|
508
511
|
declare class ModelFilter {
|
|
509
|
-
constructor();
|
|
512
|
+
constructor(interventionFilterType: InterventionFilterType);
|
|
510
513
|
interventionFilter: InterventionFilterType;
|
|
511
514
|
advanced: boolean;
|
|
512
515
|
layers: ModelVisualizationLayer[];
|
|
@@ -1865,10 +1868,10 @@ interface ITeamReportResultsState extends IResultsState, IViewState {
|
|
|
1865
1868
|
|
|
1866
1869
|
declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsState> {
|
|
1867
1870
|
private state;
|
|
1868
|
-
|
|
1869
|
-
private userSettingService;
|
|
1871
|
+
private userSettingsService;
|
|
1870
1872
|
protected snackBar: MatSnackBar;
|
|
1871
1873
|
factors: FactorStructureDto[];
|
|
1874
|
+
metrics: FactorStructureDto[];
|
|
1872
1875
|
showIndicatorArrows: boolean;
|
|
1873
1876
|
showModel: boolean;
|
|
1874
1877
|
dateRange: DateRangeDto;
|
|
@@ -1887,8 +1890,11 @@ declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsSt
|
|
|
1887
1890
|
isSubscriber: boolean;
|
|
1888
1891
|
QualifiedByEnum: typeof QualifiedByEnum;
|
|
1889
1892
|
globalNotes: string[];
|
|
1890
|
-
|
|
1893
|
+
private settingsSubscription;
|
|
1894
|
+
settings: UserSettingsDto;
|
|
1895
|
+
constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar);
|
|
1891
1896
|
ngOnInit(): void;
|
|
1897
|
+
ngOnDestroy(): void;
|
|
1892
1898
|
private determineScreenSize;
|
|
1893
1899
|
protected onDataUpdate(data: IResultsState): void;
|
|
1894
1900
|
toggleView(advanced: boolean): void;
|
|
@@ -1897,6 +1903,21 @@ declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsSt
|
|
|
1897
1903
|
static ɵcmp: i0.ɵɵComponentDeclaration<ModelCanvasComponent, "model-canvas", never, {}, {}, never, never, false, never>;
|
|
1898
1904
|
}
|
|
1899
1905
|
|
|
1906
|
+
declare class ModelFactorMetricComponent extends ComponentWithViewStateBase<IResultsState> {
|
|
1907
|
+
private state;
|
|
1908
|
+
snackBar: MatSnackBar;
|
|
1909
|
+
metric: FactorStructureDto;
|
|
1910
|
+
factorScore: FactorScoreDto;
|
|
1911
|
+
delta: FactorScoreCollectionDeltaDto;
|
|
1912
|
+
benchmark: FactorScoreCollectionBenchmarkDto;
|
|
1913
|
+
baseUrl: string;
|
|
1914
|
+
constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
|
|
1915
|
+
ngOnInit(): void;
|
|
1916
|
+
protected onDataUpdate(data: IResultsState): void;
|
|
1917
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorMetricComponent, never>;
|
|
1918
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorMetricComponent, "model-factor-metric", never, { "metric": { "alias": "metric"; "required": false; }; }, {}, never, never, false, never>;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1900
1921
|
declare class ArrowUpdateService {
|
|
1901
1922
|
private updateArrows;
|
|
1902
1923
|
updateArrows$: rxjs.Observable<boolean>;
|
|
@@ -1908,8 +1929,7 @@ declare class ArrowUpdateService {
|
|
|
1908
1929
|
|
|
1909
1930
|
declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<IResultsState> {
|
|
1910
1931
|
private state;
|
|
1911
|
-
|
|
1912
|
-
private userSettingService;
|
|
1932
|
+
private userSettingsService;
|
|
1913
1933
|
protected snackBar: MatSnackBar;
|
|
1914
1934
|
private arrowUpdateService;
|
|
1915
1935
|
indicator: FactorStructureDto;
|
|
@@ -1926,8 +1946,9 @@ declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<I
|
|
|
1926
1946
|
baseUrl: string;
|
|
1927
1947
|
expandIndicators: boolean;
|
|
1928
1948
|
InterventionStateEnum: typeof InterventionStateEnum;
|
|
1929
|
-
|
|
1930
|
-
|
|
1949
|
+
settings: UserSettingsDto;
|
|
1950
|
+
private settingsSubscription;
|
|
1951
|
+
constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
|
|
1931
1952
|
ngOnInit(): void;
|
|
1932
1953
|
ngOnDestroy(): void;
|
|
1933
1954
|
toggleIndicators(): void;
|
|
@@ -1939,8 +1960,7 @@ declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<I
|
|
|
1939
1960
|
|
|
1940
1961
|
declare class ModelFactorCoreComponent extends ComponentWithViewStateBase<IResultsState> {
|
|
1941
1962
|
private state;
|
|
1942
|
-
|
|
1943
|
-
private userSettingService;
|
|
1963
|
+
private userSettingsService;
|
|
1944
1964
|
protected snackBar: MatSnackBar;
|
|
1945
1965
|
private arrowUpdateService;
|
|
1946
1966
|
factor: FactorStructureDto;
|
|
@@ -1958,7 +1978,8 @@ declare class ModelFactorCoreComponent extends ComponentWithViewStateBase<IResul
|
|
|
1958
1978
|
expandIndicators: boolean;
|
|
1959
1979
|
InterventionStateEnum: typeof InterventionStateEnum;
|
|
1960
1980
|
private settingsSubscription;
|
|
1961
|
-
|
|
1981
|
+
settings: UserSettingsDto;
|
|
1982
|
+
constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
|
|
1962
1983
|
ngOnInit(): void;
|
|
1963
1984
|
ngOnDestroy(): void;
|
|
1964
1985
|
toggleIndicators(): void;
|
|
@@ -2021,6 +2042,7 @@ declare class DeltaArrowComponent {
|
|
|
2021
2042
|
deltaDateRangeTo: string;
|
|
2022
2043
|
available: boolean;
|
|
2023
2044
|
comparedTo: string;
|
|
2045
|
+
direction: string;
|
|
2024
2046
|
factorScore: FactorScoreDto;
|
|
2025
2047
|
delta: FactorScoreCollectionDeltaDto;
|
|
2026
2048
|
noDataIndicator: boolean;
|
|
@@ -2295,6 +2317,7 @@ declare class ModelFactorBreakdownComponent implements OnInit {
|
|
|
2295
2317
|
factor: {
|
|
2296
2318
|
points: any[];
|
|
2297
2319
|
name?: string;
|
|
2320
|
+
type?: string;
|
|
2298
2321
|
};
|
|
2299
2322
|
pageSize: number;
|
|
2300
2323
|
currentPage: number;
|
|
@@ -2428,6 +2451,7 @@ declare class WidgetFactorScoreComponent {
|
|
|
2428
2451
|
confidenceAvailable: boolean;
|
|
2429
2452
|
factorScoreLeft: number;
|
|
2430
2453
|
points: PointDto[];
|
|
2454
|
+
width: number;
|
|
2431
2455
|
constructor();
|
|
2432
2456
|
ngOnInit(): void;
|
|
2433
2457
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetFactorScoreComponent, never>;
|
|
@@ -3205,7 +3229,7 @@ declare class ResultsModule {
|
|
|
3205
3229
|
|
|
3206
3230
|
declare class ModelVisualizationModule {
|
|
3207
3231
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelVisualizationModule, never>;
|
|
3208
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ModelVisualizationModule, [typeof ModelCanvasComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent], [typeof i2$1.CommonModule, typeof i3$1.FormsModule, typeof i3.RouterModule, typeof ResultsModule, typeof i65.SatPopoverModule, typeof FactorInformationDialogModule, typeof ProgressbarModule, typeof i4.MatFormFieldModule, typeof i3$1.ReactiveFormsModule, typeof DateRangePipeModule], [typeof ModelCanvasComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent]>;
|
|
3232
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ModelVisualizationModule, [typeof ModelCanvasComponent, typeof ModelFactorMetricComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent], [typeof i2$1.CommonModule, typeof i3$1.FormsModule, typeof i3.RouterModule, typeof ResultsModule, typeof i65.SatPopoverModule, typeof FactorInformationDialogModule, typeof ProgressbarModule, typeof i4.MatFormFieldModule, typeof i3$1.ReactiveFormsModule, typeof DateRangePipeModule], [typeof ModelCanvasComponent, typeof ModelFactorMetricComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent]>;
|
|
3209
3233
|
static ɵinj: i0.ɵɵInjectorDeclaration<ModelVisualizationModule>;
|
|
3210
3234
|
}
|
|
3211
3235
|
|
|
@@ -3552,5 +3576,5 @@ declare class ViewModelStateConfigDto {
|
|
|
3552
3576
|
}
|
|
3553
3577
|
declare const ViewModelStateConfigToken: InjectionToken<ViewModelStateConfigDto>;
|
|
3554
3578
|
|
|
3555
|
-
export { AactionConfigToken, AccountService, ActionClientConfig, ActionCollectionDto, ActionConfigDto, 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, 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, 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, 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, ModelComponent, ModelDefinitionDto, ModelDemoUrlDto, ModelFactorBenchmarkComponent, ModelFactorBreakdownComponent, ModelFactorComponent, ModelFactorCoreComponent, ModelFactorIndicatorComponent, 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, 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, maxSelectedValidator, minTopicsSelectedValidator, presetCheckValidator };
|
|
3579
|
+
export { AactionConfigToken, AccountService, ActionClientConfig, ActionCollectionDto, ActionConfigDto, 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, 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, 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, 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, ModelComponent, ModelDefinitionDto, ModelDemoUrlDto, ModelFactorBenchmarkComponent, ModelFactorBreakdownComponent, ModelFactorComponent, 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, 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, maxSelectedValidator, minTopicsSelectedValidator, presetCheckValidator };
|
|
3556
3580
|
export type { ContactDto, ContactTypeDto, IActionState, IAggregateRootSource, IAggregateRootStreamFactory, IAlertState, IReloadStrategy, IResultsState, ITeamReportResultsState, IUserSettingStrategy, IViewState };
|