@the-liberators/ngx-scrumteamsurvey-tools 2.3.118 → 2.3.120
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,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@the-liberators/ngx-scrumteamsurvey-tools",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.120",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^21.0.5",
|
|
6
6
|
"@angular/core": "^21.0.5",
|
|
7
7
|
"@angular/forms": "^21.0.5",
|
|
8
|
-
"@ncstate/sat-popover": "15.0.0",
|
|
9
8
|
"@swimlane/ngx-charts": "^23.1.0",
|
|
10
9
|
"@angular/material": "^21.0.3",
|
|
11
10
|
"@angular/material-moment-adapter": "^21.0.3",
|
|
@@ -31,12 +31,13 @@ import * as i4 from '@angular/material/form-field';
|
|
|
31
31
|
import * as i5 from '@angular/cdk/clipboard';
|
|
32
32
|
import { Clipboard } from '@angular/cdk/clipboard';
|
|
33
33
|
import * as i7 from '@angular/material/checkbox';
|
|
34
|
+
import * as i56 from '@angular/cdk/overlay';
|
|
35
|
+
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
34
36
|
import * as i48 from '@swimlane/ngx-charts';
|
|
35
37
|
import { LegendPosition } from '@swimlane/ngx-charts';
|
|
36
38
|
import { AuthService } from '@auth0/auth0-angular';
|
|
37
|
-
import * as
|
|
38
|
-
import * as
|
|
39
|
-
import * as i62 from '@ncstate/sat-popover';
|
|
39
|
+
import * as i57 from '@angular/material/slide-toggle';
|
|
40
|
+
import * as i60 from '@angular/material/progress-spinner';
|
|
40
41
|
import { ComponentType } from '@angular/cdk/portal';
|
|
41
42
|
|
|
42
43
|
declare abstract class ComponentBase {
|
|
@@ -357,6 +358,7 @@ declare class FactorScoreCollectionDto {
|
|
|
357
358
|
delta: FactorScoreCollectionDeltaDto;
|
|
358
359
|
benchmark: FactorScoreCollectionBenchmarkDto;
|
|
359
360
|
composition: FactorScoreCollectionCompositionDto;
|
|
361
|
+
samplingWindows: FactorScoreCollectionSamplingWindowsDto;
|
|
360
362
|
processingData: ProcessingDataDto;
|
|
361
363
|
modelStructure: ModelStructureDto;
|
|
362
364
|
participationRate: ParticipationRateDto;
|
|
@@ -394,6 +396,11 @@ declare class FactorScoreCollectionCompositionDto {
|
|
|
394
396
|
segments: FactorScoreCollectionCompositionSegmentDto[];
|
|
395
397
|
points: FactorScoreCompositionPointsDto;
|
|
396
398
|
}
|
|
399
|
+
declare class FactorScoreCollectionSamplingWindowsDto {
|
|
400
|
+
surveys: DateRangeDto;
|
|
401
|
+
metrics: DateRangeDto;
|
|
402
|
+
overlays: DateRangeDto;
|
|
403
|
+
}
|
|
397
404
|
declare class FactorScoreCollectionCompositionSegmentDto {
|
|
398
405
|
name: string;
|
|
399
406
|
occurances: number;
|
|
@@ -1900,6 +1907,7 @@ declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsSt
|
|
|
1900
1907
|
metrics: FactorStructureDto[];
|
|
1901
1908
|
integrations: ClientIntegrationSummaryDto[];
|
|
1902
1909
|
metricsAvailable: boolean;
|
|
1910
|
+
metricSamplingWindow: DateRangeDto;
|
|
1903
1911
|
showIndicatorArrows: boolean;
|
|
1904
1912
|
showModel: boolean;
|
|
1905
1913
|
dateRange: DateRangeDto;
|
|
@@ -1945,6 +1953,8 @@ declare class ModelFactorMetricComponent extends ComponentWithViewStateBase<IRes
|
|
|
1945
1953
|
benchmark: FactorScoreCollectionBenchmarkDto;
|
|
1946
1954
|
baseUrl: string;
|
|
1947
1955
|
showMetricResult: boolean;
|
|
1956
|
+
isPopoverOpen: boolean;
|
|
1957
|
+
overlayPositions: ConnectedPosition[];
|
|
1948
1958
|
constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar, userSettings: IUserSettingStrategy);
|
|
1949
1959
|
ngOnInit(): void;
|
|
1950
1960
|
toManage($event: any): void;
|
|
@@ -1983,6 +1993,8 @@ declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<I
|
|
|
1983
1993
|
expandIndicators: boolean;
|
|
1984
1994
|
InterventionStateEnum: typeof InterventionStateEnum;
|
|
1985
1995
|
settingsSubscription: Subscription;
|
|
1996
|
+
isPopoverOpen: boolean;
|
|
1997
|
+
overlayPositions: ConnectedPosition[];
|
|
1986
1998
|
constructor(state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, userSettingService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
|
|
1987
1999
|
ngOnInit(): void;
|
|
1988
2000
|
ngOnDestroy(): void;
|
|
@@ -2014,6 +2026,8 @@ declare class ModelFactorCoreComponent extends ComponentWithViewStateBase<IResul
|
|
|
2014
2026
|
expandIndicators: boolean;
|
|
2015
2027
|
InterventionStateEnum: typeof InterventionStateEnum;
|
|
2016
2028
|
private settingsSubscription;
|
|
2029
|
+
isPopoverOpen: boolean;
|
|
2030
|
+
overlayPositions: ConnectedPosition[];
|
|
2017
2031
|
constructor(state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, userSettingService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
|
|
2018
2032
|
ngOnInit(): void;
|
|
2019
2033
|
ngOnDestroy(): void;
|
|
@@ -2785,6 +2799,8 @@ declare class BadgeStreakComponent {
|
|
|
2785
2799
|
showName: boolean;
|
|
2786
2800
|
badge: BadgeDto;
|
|
2787
2801
|
radius: number;
|
|
2802
|
+
isPopoverOpen: boolean;
|
|
2803
|
+
overlayPositions: ConnectedPosition[];
|
|
2788
2804
|
constructor();
|
|
2789
2805
|
getStreakBadgeType(): string;
|
|
2790
2806
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeStreakComponent, never>;
|
|
@@ -2833,6 +2849,8 @@ declare class BadgeProgressionComponent {
|
|
|
2833
2849
|
showName: boolean;
|
|
2834
2850
|
badge: BadgeDto;
|
|
2835
2851
|
radius: number;
|
|
2852
|
+
isPopoverOpen: boolean;
|
|
2853
|
+
overlayPositions: ConnectedPosition[];
|
|
2836
2854
|
constructor();
|
|
2837
2855
|
badgeType(): BadgeTypeEnum;
|
|
2838
2856
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeProgressionComponent, never>;
|
|
@@ -3205,13 +3223,13 @@ declare class GuidesModule {
|
|
|
3205
3223
|
|
|
3206
3224
|
declare class ResultsModule {
|
|
3207
3225
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResultsModule, never>;
|
|
3208
|
-
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.MatSlideToggleModule, typeof BrandingModule, typeof i2.MatSelectModule, typeof
|
|
3226
|
+
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]>;
|
|
3209
3227
|
static ɵinj: i0.ɵɵInjectorDeclaration<ResultsModule>;
|
|
3210
3228
|
}
|
|
3211
3229
|
|
|
3212
3230
|
declare class ModelVisualizationModule {
|
|
3213
3231
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelVisualizationModule, never>;
|
|
3214
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ModelVisualizationModule, [typeof ModelCanvasComponent, typeof ModelFactorMetricComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent, typeof ModelFactorBreakdownComponent, typeof OpenIntegrationDialogDirective, typeof DialogIntegrationComponent], [typeof i2$1.CommonModule, typeof i3$1.FormsModule, typeof i3.RouterModule, typeof ResultsModule, typeof
|
|
3232
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ModelVisualizationModule, [typeof ModelCanvasComponent, typeof ModelFactorMetricComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent, typeof ModelFactorBreakdownComponent, typeof OpenIntegrationDialogDirective, typeof DialogIntegrationComponent], [typeof i2$1.CommonModule, typeof i3$1.FormsModule, typeof i3.RouterModule, typeof ResultsModule, typeof FactorInformationDialogModule, typeof ProgressbarModule, typeof i12.MatTooltipModule, typeof SlugifyPipeModule, typeof DialogSubscribeModule, typeof i4.MatFormFieldModule, typeof i3$1.ReactiveFormsModule, typeof DateRangePipeModule, typeof i56.OverlayModule, typeof i2$2.MatDialogModule], [typeof ModelCanvasComponent, typeof ModelFactorMetricComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBreakdownComponent, typeof ModelFactorBenchmarkComponent, typeof OpenIntegrationDialogDirective, typeof DialogIntegrationComponent]>;
|
|
3215
3233
|
static ɵinj: i0.ɵɵInjectorDeclaration<ModelVisualizationModule>;
|
|
3216
3234
|
}
|
|
3217
3235
|
|
|
@@ -3560,5 +3578,5 @@ declare class ViewModelStateConfig {
|
|
|
3560
3578
|
static ɵprov: i0.ɵɵInjectableDeclaration<ViewModelStateConfig>;
|
|
3561
3579
|
}
|
|
3562
3580
|
|
|
3563
|
-
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, 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 };
|
|
3581
|
+
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 };
|
|
3564
3582
|
export type { ContactDto, ContactTypeDto, IActionState, IAggregateRootSource, IAggregateRootStreamFactory, IAlertState, IReloadStrategy, IResultsState, ITeamReportResultsState, IUserSettingStrategy, IViewState };
|