@the-liberators/ngx-scrumteamsurvey-tools 2.3.109 → 2.3.111
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
|
@@ -1854,8 +1854,29 @@ declare class ProgressbarModule {
|
|
|
1854
1854
|
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressbarModule>;
|
|
1855
1855
|
}
|
|
1856
1856
|
|
|
1857
|
+
declare class ClientIntegrationSummaryDto {
|
|
1858
|
+
constructor();
|
|
1859
|
+
publicKey: string;
|
|
1860
|
+
name: string;
|
|
1861
|
+
description: string;
|
|
1862
|
+
documentationUrl: string;
|
|
1863
|
+
requireMappings: boolean;
|
|
1864
|
+
hasCollectorUrl: boolean;
|
|
1865
|
+
metricKeys: string[];
|
|
1866
|
+
integrationKey: string;
|
|
1867
|
+
collectorUrl: string;
|
|
1868
|
+
isSetup: boolean;
|
|
1869
|
+
heartBeat: Date;
|
|
1870
|
+
isActive: boolean;
|
|
1871
|
+
}
|
|
1872
|
+
declare class ClientIntegrationListDto {
|
|
1873
|
+
constructor();
|
|
1874
|
+
items: ClientIntegrationSummaryDto[];
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1857
1877
|
interface IResultsState extends IActionState, IViewState {
|
|
1858
1878
|
factorScores: FactorScoreCollectionDto;
|
|
1879
|
+
integrations: ClientIntegrationListDto;
|
|
1859
1880
|
badges: BadgeCollectionDto;
|
|
1860
1881
|
isSubscriber: boolean;
|
|
1861
1882
|
baseUrl: string;
|
|
@@ -1875,6 +1896,8 @@ declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsSt
|
|
|
1875
1896
|
protected snackBar: MatSnackBar;
|
|
1876
1897
|
factors: FactorStructureDto[];
|
|
1877
1898
|
metrics: FactorStructureDto[];
|
|
1899
|
+
integrations: ClientIntegrationSummaryDto[];
|
|
1900
|
+
metricsAvailable: boolean;
|
|
1878
1901
|
showIndicatorArrows: boolean;
|
|
1879
1902
|
showModel: boolean;
|
|
1880
1903
|
dateRange: DateRangeDto;
|
|
@@ -1885,6 +1908,7 @@ declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsSt
|
|
|
1885
1908
|
pointNames: string;
|
|
1886
1909
|
pointType: string;
|
|
1887
1910
|
deltaTeams: number;
|
|
1911
|
+
showTeamsDashboardSetup: boolean;
|
|
1888
1912
|
deltaTeamNames: string;
|
|
1889
1913
|
deltaAvailable: boolean;
|
|
1890
1914
|
isLoggedIn: boolean;
|
|
@@ -1910,12 +1934,18 @@ declare class ModelFactorMetricComponent extends ComponentWithViewStateBase<IRes
|
|
|
1910
1934
|
snackBar: MatSnackBar;
|
|
1911
1935
|
protected userSettings: IUserSettingStrategy;
|
|
1912
1936
|
metric: FactorStructureDto;
|
|
1937
|
+
private teamsDashboardUrl;
|
|
1938
|
+
integration: ClientIntegrationSummaryDto;
|
|
1913
1939
|
factorScore: FactorScoreDto;
|
|
1940
|
+
showSetupTeaser: boolean;
|
|
1941
|
+
showSetup: boolean;
|
|
1914
1942
|
delta: FactorScoreCollectionDeltaDto;
|
|
1915
1943
|
benchmark: FactorScoreCollectionBenchmarkDto;
|
|
1916
1944
|
baseUrl: string;
|
|
1945
|
+
showMetricResult: boolean;
|
|
1917
1946
|
constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar, userSettings: IUserSettingStrategy);
|
|
1918
1947
|
ngOnInit(): void;
|
|
1948
|
+
toManage($event: any): void;
|
|
1919
1949
|
protected onDataUpdate(data: IResultsState): void;
|
|
1920
1950
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorMetricComponent, never>;
|
|
1921
1951
|
static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorMetricComponent, "model-factor-metric", never, { "metric": { "alias": "metric"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -2000,6 +2030,30 @@ declare class ModelFactorBenchmarkComponent implements OnInit {
|
|
|
2000
2030
|
static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorBenchmarkComponent, "model-factor-benchmark", never, { "factor": { "alias": "factor"; "required": false; }; "benchmark": { "alias": "benchmark"; "required": false; }; }, {}, never, never, false, never>;
|
|
2001
2031
|
}
|
|
2002
2032
|
|
|
2033
|
+
declare class DialogIntegrationComponent {
|
|
2034
|
+
protected snackBar: MatSnackBar;
|
|
2035
|
+
private clipboard;
|
|
2036
|
+
metric: FactorStructureDto;
|
|
2037
|
+
integration: ClientIntegrationSummaryDto;
|
|
2038
|
+
inviteUrlCopied: boolean;
|
|
2039
|
+
constructor(data: {
|
|
2040
|
+
metric: FactorStructureDto;
|
|
2041
|
+
integration: ClientIntegrationSummaryDto;
|
|
2042
|
+
}, snackBar: MatSnackBar, clipboard: Clipboard);
|
|
2043
|
+
copyInviteLink(): void;
|
|
2044
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogIntegrationComponent, never>;
|
|
2045
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogIntegrationComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
2046
|
+
}
|
|
2047
|
+
declare class OpenIntegrationDialogDirective {
|
|
2048
|
+
private dialog;
|
|
2049
|
+
metric: FactorStructureDto;
|
|
2050
|
+
integration: ClientIntegrationSummaryDto;
|
|
2051
|
+
constructor(dialog: MatDialog);
|
|
2052
|
+
onClick($event: any): void;
|
|
2053
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OpenIntegrationDialogDirective, never>;
|
|
2054
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<OpenIntegrationDialogDirective, "[integrationDialog]", never, { "metric": { "alias": "metric"; "required": false; }; "integration": { "alias": "integration"; "required": false; }; }, {}, never, never, false, never>;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2003
2057
|
declare class ArrowComponent implements OnInit, DoCheck, OnDestroy {
|
|
2004
2058
|
private elem;
|
|
2005
2059
|
private arrowUpdateService;
|
|
@@ -2987,7 +3041,7 @@ declare class DialogSubscribeComponent {
|
|
|
2987
3041
|
declare class OpenSubscribeDialogDirective {
|
|
2988
3042
|
private dialog;
|
|
2989
3043
|
constructor(dialog: MatDialog);
|
|
2990
|
-
onClick(): void;
|
|
3044
|
+
onClick($event: any): void;
|
|
2991
3045
|
static ɵfac: i0.ɵɵFactoryDeclaration<OpenSubscribeDialogDirective, never>;
|
|
2992
3046
|
static ɵdir: i0.ɵɵDirectiveDeclaration<OpenSubscribeDialogDirective, "[subscribeDialog]", never, {}, {}, never, never, false, never>;
|
|
2993
3047
|
}
|
|
@@ -3235,7 +3289,7 @@ declare class ResultsModule {
|
|
|
3235
3289
|
|
|
3236
3290
|
declare class ModelVisualizationModule {
|
|
3237
3291
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelVisualizationModule, never>;
|
|
3238
|
-
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 i12.MatTooltipModule, typeof DialogSubscribeModule, typeof i4.MatFormFieldModule, typeof i3$1.ReactiveFormsModule, typeof DateRangePipeModule], [typeof ModelCanvasComponent, typeof ModelFactorMetricComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent]>;
|
|
3292
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ModelVisualizationModule, [typeof ModelCanvasComponent, typeof ModelFactorMetricComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent, typeof OpenIntegrationDialogDirective, typeof DialogIntegrationComponent], [typeof i2$1.CommonModule, typeof i3$1.FormsModule, typeof i3.RouterModule, typeof ResultsModule, typeof i65.SatPopoverModule, typeof FactorInformationDialogModule, typeof ProgressbarModule, typeof i12.MatTooltipModule, typeof DialogSubscribeModule, typeof i4.MatFormFieldModule, typeof i3$1.ReactiveFormsModule, typeof DateRangePipeModule, typeof i2$2.MatDialogModule], [typeof ModelCanvasComponent, typeof ModelFactorMetricComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent, typeof OpenIntegrationDialogDirective, typeof DialogIntegrationComponent]>;
|
|
3239
3293
|
static ɵinj: i0.ɵɵInjectorDeclaration<ModelVisualizationModule>;
|
|
3240
3294
|
}
|
|
3241
3295
|
|
|
@@ -3584,5 +3638,5 @@ declare class ViewModelStateConfigDto {
|
|
|
3584
3638
|
}
|
|
3585
3639
|
declare const ViewModelStateConfigToken: InjectionToken<ViewModelStateConfigDto>;
|
|
3586
3640
|
|
|
3587
|
-
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, httpsHostValidator, maxSelectedValidator, minTopicsSelectedValidator, presetCheckValidator };
|
|
3641
|
+
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, 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, 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, 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
3642
|
export type { ContactDto, ContactTypeDto, IActionState, IAggregateRootSource, IAggregateRootStreamFactory, IAlertState, IReloadStrategy, IResultsState, ITeamReportResultsState, IUserSettingStrategy, IViewState };
|