@memberjunction/ng-explorer-core 0.9.2
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/dist/lib/ask-skip/ask-skip.component.d.ts +83 -0
- package/dist/lib/ask-skip/ask-skip.component.js +591 -0
- package/dist/lib/ask-skip/skip-dynamic-report-wrapper.d.ts +12 -0
- package/dist/lib/ask-skip/skip-dynamic-report-wrapper.js +49 -0
- package/dist/lib/auth-button/auth-button.component.d.ts +12 -0
- package/dist/lib/auth-button/auth-button.component.js +43 -0
- package/dist/lib/dashboard-browser-component/dashboard-browser.component.d.ts +14 -0
- package/dist/lib/dashboard-browser-component/dashboard-browser.component.js +55 -0
- package/dist/lib/data-browser-component/data-browser.component.d.ts +14 -0
- package/dist/lib/data-browser-component/data-browser.component.js +91 -0
- package/dist/lib/favorites/favorites.component.d.ts +13 -0
- package/dist/lib/favorites/favorites.component.js +100 -0
- package/dist/lib/generic/base-form-component.d.ts +76 -0
- package/dist/lib/generic/base-form-component.js +436 -0
- package/dist/lib/generic/base-form-section-component.d.ts +6 -0
- package/dist/lib/generic/base-form-section-component.js +10 -0
- package/dist/lib/generic/base-record-component.d.ts +6 -0
- package/dist/lib/generic/base-record-component.js +13 -0
- package/dist/lib/generic/base-resource-component.d.ts +34 -0
- package/dist/lib/generic/base-resource-component.js +75 -0
- package/dist/lib/generic/dynamic-chart.d.ts +26 -0
- package/dist/lib/generic/dynamic-chart.js +180 -0
- package/dist/lib/generic/dynamic-grid.d.ts +24 -0
- package/dist/lib/generic/dynamic-grid.js +135 -0
- package/dist/lib/generic/dynamic-report.d.ts +38 -0
- package/dist/lib/generic/dynamic-report.js +399 -0
- package/dist/lib/generic/form-toolbar.d.ts +7 -0
- package/dist/lib/generic/form-toolbar.js +98 -0
- package/dist/lib/generic/resource-container-component.d.ts +25 -0
- package/dist/lib/generic/resource-container-component.js +103 -0
- package/dist/lib/generic/section-loader-component.d.ts +17 -0
- package/dist/lib/generic/section-loader-component.js +65 -0
- package/dist/lib/generic-browse-list/generic-browse-list.component.d.ts +16 -0
- package/dist/lib/generic-browse-list/generic-browse-list.component.js +91 -0
- package/dist/lib/guards/auth-guard.service.d.ts +11 -0
- package/dist/lib/guards/auth-guard.service.js +24 -0
- package/dist/lib/guards/entities.guard.d.ts +3 -0
- package/dist/lib/guards/entities.guard.js +38 -0
- package/dist/lib/header/MSFT_UserImageService.d.ts +11 -0
- package/dist/lib/header/MSFT_UserImageService.js +23 -0
- package/dist/lib/header/header.component.d.ts +51 -0
- package/dist/lib/header/header.component.js +208 -0
- package/dist/lib/home-component/home.component.d.ts +9 -0
- package/dist/lib/home-component/home.component.js +54 -0
- package/dist/lib/join-grid/join-grid.component.d.ts +30 -0
- package/dist/lib/join-grid/join-grid.component.js +225 -0
- package/dist/lib/navigation/navigation.component.d.ts +102 -0
- package/dist/lib/navigation/navigation.component.js +970 -0
- package/dist/lib/report-browser-component/report-browser.component.d.ts +14 -0
- package/dist/lib/report-browser-component/report-browser.component.js +55 -0
- package/dist/lib/resource-wrappers/dashboard-resource.component.d.ts +8 -0
- package/dist/lib/resource-wrappers/dashboard-resource.component.js +49 -0
- package/dist/lib/resource-wrappers/record-resource.component.d.ts +8 -0
- package/dist/lib/resource-wrappers/record-resource.component.js +55 -0
- package/dist/lib/resource-wrappers/report-resource.component.d.ts +10 -0
- package/dist/lib/resource-wrappers/report-resource.component.js +53 -0
- package/dist/lib/resource-wrappers/resource-wrappers-loader.d.ts +1 -0
- package/dist/lib/resource-wrappers/resource-wrappers-loader.js +12 -0
- package/dist/lib/resource-wrappers/search-results-resource.component.d.ts +10 -0
- package/dist/lib/resource-wrappers/search-results-resource.component.js +50 -0
- package/dist/lib/resource-wrappers/view-resource.component.d.ts +8 -0
- package/dist/lib/resource-wrappers/view-resource.component.js +51 -0
- package/dist/lib/settings/settings.component.d.ts +5 -0
- package/dist/lib/settings/settings.component.js +14 -0
- package/dist/lib/shared/shared.service.d.ts +87 -0
- package/dist/lib/shared/shared.service.js +302 -0
- package/dist/lib/shared/urlPipe.d.ts +7 -0
- package/dist/lib/shared/urlPipe.js +16 -0
- package/dist/lib/single-application/single-application.component.d.ts +21 -0
- package/dist/lib/single-application/single-application.component.js +132 -0
- package/dist/lib/single-dashboard/Components/add-item/add-item.component.d.ts +28 -0
- package/dist/lib/single-dashboard/Components/add-item/add-item.component.js +212 -0
- package/dist/lib/single-dashboard/Components/edit-dashboard/edit-dashboard.component.d.ts +26 -0
- package/dist/lib/single-dashboard/Components/edit-dashboard/edit-dashboard.component.js +169 -0
- package/dist/lib/single-dashboard/single-dashboard.component.d.ts +55 -0
- package/dist/lib/single-dashboard/single-dashboard.component.js +266 -0
- package/dist/lib/single-entity/single-entity.component.d.ts +33 -0
- package/dist/lib/single-entity/single-entity.component.js +252 -0
- package/dist/lib/single-record/single-record.component.d.ts +20 -0
- package/dist/lib/single-record/single-record.component.js +95 -0
- package/dist/lib/single-report/single-report.component.d.ts +22 -0
- package/dist/lib/single-report/single-report.component.js +87 -0
- package/dist/lib/single-search-result/single-search-result.component.d.ts +15 -0
- package/dist/lib/single-search-result/single-search-result.component.js +60 -0
- package/dist/lib/single-view/single-view.component.d.ts +34 -0
- package/dist/lib/single-view/single-view.component.js +154 -0
- package/dist/lib/user-notifications/user-notifications.component.d.ts +32 -0
- package/dist/lib/user-notifications/user-notifications.component.js +282 -0
- package/dist/lib/user-profile/user-profile.component.d.ts +10 -0
- package/dist/lib/user-profile/user-profile.component.js +41 -0
- package/dist/lib/user-view-properties/view-properties-dialog.component.d.ts +70 -0
- package/dist/lib/user-view-properties/view-properties-dialog.component.js +568 -0
- package/dist/module.d.ts +64 -0
- package/dist/module.js +332 -0
- package/dist/public-api.d.ts +47 -0
- package/dist/public-api.js +50 -0
- package/package.json +39 -0
package/dist/module.d.ts
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./lib/generic/form-toolbar";
|
|
3
|
+
import * as i2 from "./lib/generic/dynamic-grid";
|
|
4
|
+
import * as i3 from "./lib/generic/dynamic-chart";
|
|
5
|
+
import * as i4 from "./lib/generic/dynamic-report";
|
|
6
|
+
import * as i5 from "./lib/generic/section-loader-component";
|
|
7
|
+
import * as i6 from "./lib/generic/resource-container-component";
|
|
8
|
+
import * as i7 from "./lib/ask-skip/skip-dynamic-report-wrapper";
|
|
9
|
+
import * as i8 from "./lib/ask-skip/ask-skip.component";
|
|
10
|
+
import * as i9 from "./lib/auth-button/auth-button.component";
|
|
11
|
+
import * as i10 from "./lib/dashboard-browser-component/dashboard-browser.component";
|
|
12
|
+
import * as i11 from "./lib/data-browser-component/data-browser.component";
|
|
13
|
+
import * as i12 from "./lib/generic-browse-list/generic-browse-list.component";
|
|
14
|
+
import * as i13 from "./lib/home-component/home.component";
|
|
15
|
+
import * as i14 from "./lib/navigation/navigation.component";
|
|
16
|
+
import * as i15 from "./lib/report-browser-component/report-browser.component";
|
|
17
|
+
import * as i16 from "./lib/resource-wrappers/dashboard-resource.component";
|
|
18
|
+
import * as i17 from "./lib/resource-wrappers/record-resource.component";
|
|
19
|
+
import * as i18 from "./lib/resource-wrappers/report-resource.component";
|
|
20
|
+
import * as i19 from "./lib/resource-wrappers/search-results-resource.component";
|
|
21
|
+
import * as i20 from "./lib/resource-wrappers/view-resource.component";
|
|
22
|
+
import * as i21 from "./lib/settings/settings.component";
|
|
23
|
+
import * as i22 from "./lib/single-application/single-application.component";
|
|
24
|
+
import * as i23 from "./lib/favorites/favorites.component";
|
|
25
|
+
import * as i24 from "./lib/header/header.component";
|
|
26
|
+
import * as i25 from "./lib/join-grid/join-grid.component";
|
|
27
|
+
import * as i26 from "./lib/single-entity/single-entity.component";
|
|
28
|
+
import * as i27 from "./lib/single-record/single-record.component";
|
|
29
|
+
import * as i28 from "./lib/single-report/single-report.component";
|
|
30
|
+
import * as i29 from "./lib/single-search-result/single-search-result.component";
|
|
31
|
+
import * as i30 from "./lib/single-view/single-view.component";
|
|
32
|
+
import * as i31 from "./lib/user-profile/user-profile.component";
|
|
33
|
+
import * as i32 from "./lib/user-view-properties/view-properties-dialog.component";
|
|
34
|
+
import * as i33 from "./lib/single-dashboard/single-dashboard.component";
|
|
35
|
+
import * as i34 from "./lib/single-dashboard/Components/add-item/add-item.component";
|
|
36
|
+
import * as i35 from "./lib/single-dashboard/Components/edit-dashboard/edit-dashboard.component";
|
|
37
|
+
import * as i36 from "./lib/shared/urlPipe";
|
|
38
|
+
import * as i37 from "./lib/user-notifications/user-notifications.component";
|
|
39
|
+
import * as i38 from "@angular/common";
|
|
40
|
+
import * as i39 from "@angular/forms";
|
|
41
|
+
import * as i40 from "@angular/router";
|
|
42
|
+
import * as i41 from "@progress/kendo-angular-grid";
|
|
43
|
+
import * as i42 from "@progress/kendo-angular-dialog";
|
|
44
|
+
import * as i43 from "@progress/kendo-angular-excel-export";
|
|
45
|
+
import * as i44 from "@progress/kendo-angular-buttons";
|
|
46
|
+
import * as i45 from "@memberjunction/ng-compare-records";
|
|
47
|
+
import * as i46 from "@progress/kendo-angular-indicators";
|
|
48
|
+
import * as i47 from "@progress/kendo-angular-charts";
|
|
49
|
+
import * as i48 from "@progress/kendo-angular-layout";
|
|
50
|
+
import * as i49 from "@progress/kendo-angular-inputs";
|
|
51
|
+
import * as i50 from "@progress/kendo-angular-label";
|
|
52
|
+
import * as i51 from "@progress/kendo-angular-icons";
|
|
53
|
+
import * as i52 from "@memberjunction/ng-record-changes";
|
|
54
|
+
import * as i53 from "@memberjunction/ng-container-directives";
|
|
55
|
+
import * as i54 from "@progress/kendo-angular-listview";
|
|
56
|
+
import * as i55 from "@memberjunction/ng-user-view-grid";
|
|
57
|
+
import * as i56 from "@progress/kendo-angular-sortable";
|
|
58
|
+
import * as i57 from "@progress/kendo-angular-filter";
|
|
59
|
+
import * as i58 from "@progress/kendo-angular-dropdowns";
|
|
60
|
+
export declare class ExplorerCoreModule {
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExplorerCoreModule, never>;
|
|
62
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ExplorerCoreModule, [typeof i1.FormToolbarComponent, typeof i2.DynamicGridComponent, typeof i3.DynamicChartComponent, typeof i4.DynamicReportComponent, typeof i5.SectionLoaderComponent, typeof i6.ResourceContainerComponent, typeof i7.SkipDynamicReportComponent, typeof i8.AskSkipComponent, typeof i9.AuthButtonComponent, typeof i10.DashboardBrowserComponent, typeof i11.DataBrowserComponent, typeof i12.GenericBrowseListComponent, typeof i13.HomeComponent, typeof i14.NavigationComponent, typeof i15.ReportBrowserComponent, typeof i16.DashboardResource, typeof i17.EntityRecordResource, typeof i18.ReportResource, typeof i19.SearchResultsResource, typeof i20.UserViewResource, typeof i21.SettingsComponent, typeof i22.SingleApplicationComponent, typeof i23.FavoritesComponent, typeof i24.HeaderComponent, typeof i25.JoinGridComponent, typeof i26.SingleEntityComponent, typeof i27.SingleRecordComponent, typeof i28.SingleReportComponent, typeof i29.SingleSearchResultComponent, typeof i30.SingleViewComponent, typeof i31.UserProfileComponent, typeof i32.ViewPropertiesDialogComponent, typeof i33.SingleDashboardComponent, typeof i34.AddItemComponent, typeof i35.EditDashboardComponent, typeof i36.URLPipe, typeof i37.UserNotificationsComponent], [typeof i38.CommonModule, typeof i39.FormsModule, typeof i39.ReactiveFormsModule, typeof i40.RouterModule, typeof i41.GridModule, typeof i42.DialogsModule, typeof i43.ExcelExportModule, typeof i44.ButtonsModule, typeof i45.CompareRecordsModule, typeof i46.IndicatorsModule, typeof i38.CommonModule, typeof i39.FormsModule, typeof i41.GridModule, typeof i47.ChartsModule, typeof i44.ButtonsModule, typeof i48.TabStripModule, typeof i41.ExcelModule, typeof i41.PDFModule, typeof i46.IndicatorsModule, typeof i42.DialogsModule, typeof i49.InputsModule, typeof i50.LabelModule, typeof i51.IconModule, typeof i45.CompareRecordsModule, typeof i52.RecordChangesModule, typeof i53.ContainerDirectivesModule, typeof i54.ListViewModule, typeof i55.UserViewGridModule, typeof i56.SortableModule, typeof i48.LayoutModule, typeof i57.FilterModule, typeof i58.DropDownsModule], [typeof i1.FormToolbarComponent, typeof i2.DynamicGridComponent, typeof i3.DynamicChartComponent, typeof i4.DynamicReportComponent, typeof i5.SectionLoaderComponent, typeof i6.ResourceContainerComponent, typeof i7.SkipDynamicReportComponent, typeof i8.AskSkipComponent, typeof i9.AuthButtonComponent, typeof i10.DashboardBrowserComponent, typeof i11.DataBrowserComponent, typeof i12.GenericBrowseListComponent, typeof i13.HomeComponent, typeof i14.NavigationComponent, typeof i15.ReportBrowserComponent, typeof i16.DashboardResource, typeof i17.EntityRecordResource, typeof i18.ReportResource, typeof i19.SearchResultsResource, typeof i20.UserViewResource, typeof i21.SettingsComponent, typeof i22.SingleApplicationComponent, typeof i23.FavoritesComponent, typeof i24.HeaderComponent, typeof i25.JoinGridComponent, typeof i26.SingleEntityComponent, typeof i27.SingleRecordComponent, typeof i28.SingleReportComponent, typeof i29.SingleSearchResultComponent, typeof i30.SingleViewComponent, typeof i31.UserProfileComponent, typeof i32.ViewPropertiesDialogComponent, typeof i33.SingleDashboardComponent, typeof i34.AddItemComponent, typeof i35.EditDashboardComponent, typeof i36.URLPipe, typeof i37.UserNotificationsComponent]>;
|
|
63
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ExplorerCoreModule>;
|
|
64
|
+
}
|
package/dist/module.js
ADDED
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
4
|
+
import { RouterModule } from '@angular/router';
|
|
5
|
+
// Kendo UI Angular imports
|
|
6
|
+
import { ExcelExportModule } from '@progress/kendo-angular-excel-export';
|
|
7
|
+
import { DialogsModule } from "@progress/kendo-angular-dialog";
|
|
8
|
+
import { ButtonsModule } from '@progress/kendo-angular-buttons';
|
|
9
|
+
import { IndicatorsModule } from '@progress/kendo-angular-indicators';
|
|
10
|
+
import { GridModule, ExcelModule, PDFModule } from '@progress/kendo-angular-grid';
|
|
11
|
+
import { LabelModule } from '@progress/kendo-angular-label';
|
|
12
|
+
import { InputsModule } from '@progress/kendo-angular-inputs';
|
|
13
|
+
import { ChartsModule } from '@progress/kendo-angular-charts';
|
|
14
|
+
import { TabStripModule } from '@progress/kendo-angular-layout';
|
|
15
|
+
import { IconModule } from '@progress/kendo-angular-icons';
|
|
16
|
+
import { ListViewModule } from '@progress/kendo-angular-listview';
|
|
17
|
+
import { LayoutModule } from '@progress/kendo-angular-layout';
|
|
18
|
+
import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
|
|
19
|
+
import { SortableModule } from "@progress/kendo-angular-sortable";
|
|
20
|
+
import { FilterModule } from "@progress/kendo-angular-filter";
|
|
21
|
+
// MJ
|
|
22
|
+
import { CompareRecordsModule } from '@memberjunction/ng-compare-records';
|
|
23
|
+
import { RecordChangesModule } from '@memberjunction/ng-record-changes';
|
|
24
|
+
import { ContainerDirectivesModule } from '@memberjunction/ng-container-directives';
|
|
25
|
+
import { UserViewGridModule } from '@memberjunction/ng-user-view-grid';
|
|
26
|
+
// Local Components
|
|
27
|
+
import { FormToolbarComponent } from './lib/generic/form-toolbar';
|
|
28
|
+
import { DynamicGridComponent } from './lib/generic/dynamic-grid';
|
|
29
|
+
import { SectionLoaderComponent } from './lib/generic/section-loader-component';
|
|
30
|
+
import { DynamicChartComponent } from './lib/generic/dynamic-chart';
|
|
31
|
+
import { DynamicReportComponent } from './lib/generic/dynamic-report';
|
|
32
|
+
import { ResourceContainerComponent } from './lib/generic/resource-container-component';
|
|
33
|
+
import { AskSkipComponent } from './lib/ask-skip/ask-skip.component';
|
|
34
|
+
import { SkipDynamicReportComponent } from './lib/ask-skip/skip-dynamic-report-wrapper';
|
|
35
|
+
import { AuthButtonComponent } from './lib/auth-button/auth-button.component';
|
|
36
|
+
import { DashboardBrowserComponent } from './lib/dashboard-browser-component/dashboard-browser.component';
|
|
37
|
+
import { DataBrowserComponent } from './lib/data-browser-component/data-browser.component';
|
|
38
|
+
import { GenericBrowseListComponent } from './lib/generic-browse-list/generic-browse-list.component';
|
|
39
|
+
import { HomeComponent } from './lib/home-component/home.component';
|
|
40
|
+
import { NavigationComponent } from './lib/navigation/navigation.component';
|
|
41
|
+
import { ReportBrowserComponent } from './lib/report-browser-component/report-browser.component';
|
|
42
|
+
import { DashboardResource } from './lib/resource-wrappers/dashboard-resource.component';
|
|
43
|
+
import { EntityRecordResource } from './lib/resource-wrappers/record-resource.component';
|
|
44
|
+
import { ReportResource } from './lib/resource-wrappers/report-resource.component';
|
|
45
|
+
import { SearchResultsResource } from './lib/resource-wrappers/search-results-resource.component';
|
|
46
|
+
import { UserViewResource } from './lib/resource-wrappers/view-resource.component';
|
|
47
|
+
import { SettingsComponent } from './lib/settings/settings.component';
|
|
48
|
+
import { SingleApplicationComponent } from './lib/single-application/single-application.component';
|
|
49
|
+
import { FavoritesComponent } from './lib/favorites/favorites.component';
|
|
50
|
+
import { HeaderComponent } from './lib/header/header.component';
|
|
51
|
+
import { JoinGridComponent } from './lib/join-grid/join-grid.component';
|
|
52
|
+
import { SingleEntityComponent } from './lib/single-entity/single-entity.component';
|
|
53
|
+
import { SingleRecordComponent } from './lib/single-record/single-record.component';
|
|
54
|
+
import { SingleReportComponent } from './lib/single-report/single-report.component';
|
|
55
|
+
import { SingleSearchResultComponent } from './lib/single-search-result/single-search-result.component';
|
|
56
|
+
import { SingleViewComponent } from './lib/single-view/single-view.component';
|
|
57
|
+
import { UserProfileComponent } from './lib/user-profile/user-profile.component';
|
|
58
|
+
import { ViewPropertiesDialogComponent } from './lib/user-view-properties/view-properties-dialog.component';
|
|
59
|
+
import { SingleDashboardComponent } from './lib/single-dashboard/single-dashboard.component';
|
|
60
|
+
import { AddItemComponent } from './lib/single-dashboard/Components/add-item/add-item.component';
|
|
61
|
+
import { EditDashboardComponent } from './lib/single-dashboard/Components/edit-dashboard/edit-dashboard.component';
|
|
62
|
+
import { URLPipe } from './lib/shared/urlPipe';
|
|
63
|
+
import { UserNotificationsComponent } from './lib/user-notifications/user-notifications.component';
|
|
64
|
+
import * as i0 from "@angular/core";
|
|
65
|
+
import * as i1 from "@angular/common";
|
|
66
|
+
import * as i2 from "@progress/kendo-angular-buttons";
|
|
67
|
+
import * as i3 from "@progress/kendo-angular-layout";
|
|
68
|
+
import * as i4 from "@progress/kendo-angular-icons";
|
|
69
|
+
import * as i5 from "@memberjunction/ng-container-directives";
|
|
70
|
+
export class ExplorerCoreModule {
|
|
71
|
+
}
|
|
72
|
+
ExplorerCoreModule.ɵfac = function ExplorerCoreModule_Factory(t) { return new (t || ExplorerCoreModule)(); };
|
|
73
|
+
ExplorerCoreModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: ExplorerCoreModule });
|
|
74
|
+
ExplorerCoreModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
|
|
75
|
+
FormsModule,
|
|
76
|
+
ReactiveFormsModule,
|
|
77
|
+
RouterModule,
|
|
78
|
+
GridModule,
|
|
79
|
+
DialogsModule,
|
|
80
|
+
ExcelExportModule,
|
|
81
|
+
ButtonsModule,
|
|
82
|
+
CompareRecordsModule,
|
|
83
|
+
IndicatorsModule,
|
|
84
|
+
CommonModule,
|
|
85
|
+
FormsModule,
|
|
86
|
+
GridModule,
|
|
87
|
+
ChartsModule,
|
|
88
|
+
ButtonsModule,
|
|
89
|
+
TabStripModule,
|
|
90
|
+
ExcelModule,
|
|
91
|
+
PDFModule,
|
|
92
|
+
IndicatorsModule,
|
|
93
|
+
DialogsModule,
|
|
94
|
+
InputsModule,
|
|
95
|
+
LabelModule,
|
|
96
|
+
IconModule,
|
|
97
|
+
CompareRecordsModule,
|
|
98
|
+
RecordChangesModule,
|
|
99
|
+
ContainerDirectivesModule,
|
|
100
|
+
ListViewModule,
|
|
101
|
+
UserViewGridModule,
|
|
102
|
+
SortableModule,
|
|
103
|
+
LayoutModule,
|
|
104
|
+
FilterModule,
|
|
105
|
+
DropDownsModule] });
|
|
106
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ExplorerCoreModule, [{
|
|
107
|
+
type: NgModule,
|
|
108
|
+
args: [{
|
|
109
|
+
declarations: [
|
|
110
|
+
FormToolbarComponent,
|
|
111
|
+
DynamicGridComponent,
|
|
112
|
+
DynamicChartComponent,
|
|
113
|
+
DynamicReportComponent,
|
|
114
|
+
SectionLoaderComponent,
|
|
115
|
+
ResourceContainerComponent,
|
|
116
|
+
SkipDynamicReportComponent,
|
|
117
|
+
AskSkipComponent,
|
|
118
|
+
AuthButtonComponent,
|
|
119
|
+
DashboardBrowserComponent,
|
|
120
|
+
DataBrowserComponent,
|
|
121
|
+
GenericBrowseListComponent,
|
|
122
|
+
HomeComponent,
|
|
123
|
+
NavigationComponent,
|
|
124
|
+
ReportBrowserComponent,
|
|
125
|
+
DashboardResource,
|
|
126
|
+
EntityRecordResource,
|
|
127
|
+
ReportResource,
|
|
128
|
+
SearchResultsResource,
|
|
129
|
+
UserViewResource,
|
|
130
|
+
SettingsComponent,
|
|
131
|
+
SingleApplicationComponent,
|
|
132
|
+
FavoritesComponent,
|
|
133
|
+
HeaderComponent,
|
|
134
|
+
JoinGridComponent,
|
|
135
|
+
SingleEntityComponent,
|
|
136
|
+
SingleRecordComponent,
|
|
137
|
+
SingleReportComponent,
|
|
138
|
+
SingleSearchResultComponent,
|
|
139
|
+
SingleViewComponent,
|
|
140
|
+
UserProfileComponent,
|
|
141
|
+
ViewPropertiesDialogComponent,
|
|
142
|
+
SingleDashboardComponent,
|
|
143
|
+
AddItemComponent,
|
|
144
|
+
EditDashboardComponent,
|
|
145
|
+
URLPipe,
|
|
146
|
+
UserNotificationsComponent
|
|
147
|
+
],
|
|
148
|
+
imports: [
|
|
149
|
+
CommonModule,
|
|
150
|
+
FormsModule,
|
|
151
|
+
ReactiveFormsModule,
|
|
152
|
+
RouterModule,
|
|
153
|
+
GridModule,
|
|
154
|
+
DialogsModule,
|
|
155
|
+
ExcelExportModule,
|
|
156
|
+
ButtonsModule,
|
|
157
|
+
CompareRecordsModule,
|
|
158
|
+
IndicatorsModule,
|
|
159
|
+
CommonModule,
|
|
160
|
+
FormsModule,
|
|
161
|
+
GridModule,
|
|
162
|
+
ChartsModule,
|
|
163
|
+
ButtonsModule,
|
|
164
|
+
TabStripModule,
|
|
165
|
+
ExcelModule,
|
|
166
|
+
PDFModule,
|
|
167
|
+
IndicatorsModule,
|
|
168
|
+
DialogsModule,
|
|
169
|
+
InputsModule,
|
|
170
|
+
LabelModule,
|
|
171
|
+
IconModule,
|
|
172
|
+
CompareRecordsModule,
|
|
173
|
+
RecordChangesModule,
|
|
174
|
+
ContainerDirectivesModule,
|
|
175
|
+
ListViewModule,
|
|
176
|
+
UserViewGridModule,
|
|
177
|
+
SortableModule,
|
|
178
|
+
LayoutModule,
|
|
179
|
+
FilterModule,
|
|
180
|
+
DropDownsModule
|
|
181
|
+
],
|
|
182
|
+
exports: [
|
|
183
|
+
FormToolbarComponent,
|
|
184
|
+
DynamicGridComponent,
|
|
185
|
+
DynamicChartComponent,
|
|
186
|
+
DynamicReportComponent,
|
|
187
|
+
SectionLoaderComponent,
|
|
188
|
+
ResourceContainerComponent,
|
|
189
|
+
SkipDynamicReportComponent,
|
|
190
|
+
AskSkipComponent,
|
|
191
|
+
AuthButtonComponent,
|
|
192
|
+
DashboardBrowserComponent,
|
|
193
|
+
DataBrowserComponent,
|
|
194
|
+
GenericBrowseListComponent,
|
|
195
|
+
HomeComponent,
|
|
196
|
+
NavigationComponent,
|
|
197
|
+
ReportBrowserComponent,
|
|
198
|
+
DashboardResource,
|
|
199
|
+
EntityRecordResource,
|
|
200
|
+
ReportResource,
|
|
201
|
+
SearchResultsResource,
|
|
202
|
+
UserViewResource,
|
|
203
|
+
SettingsComponent,
|
|
204
|
+
SingleApplicationComponent,
|
|
205
|
+
FavoritesComponent,
|
|
206
|
+
HeaderComponent,
|
|
207
|
+
JoinGridComponent,
|
|
208
|
+
SingleEntityComponent,
|
|
209
|
+
SingleRecordComponent,
|
|
210
|
+
SingleReportComponent,
|
|
211
|
+
SingleSearchResultComponent,
|
|
212
|
+
SingleViewComponent,
|
|
213
|
+
UserProfileComponent,
|
|
214
|
+
ViewPropertiesDialogComponent,
|
|
215
|
+
SingleDashboardComponent,
|
|
216
|
+
AddItemComponent,
|
|
217
|
+
EditDashboardComponent,
|
|
218
|
+
URLPipe,
|
|
219
|
+
UserNotificationsComponent
|
|
220
|
+
]
|
|
221
|
+
}]
|
|
222
|
+
}], null, null); })();
|
|
223
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(ExplorerCoreModule, { declarations: [FormToolbarComponent,
|
|
224
|
+
DynamicGridComponent,
|
|
225
|
+
DynamicChartComponent,
|
|
226
|
+
DynamicReportComponent,
|
|
227
|
+
SectionLoaderComponent,
|
|
228
|
+
ResourceContainerComponent,
|
|
229
|
+
SkipDynamicReportComponent,
|
|
230
|
+
AskSkipComponent,
|
|
231
|
+
AuthButtonComponent,
|
|
232
|
+
DashboardBrowserComponent,
|
|
233
|
+
DataBrowserComponent,
|
|
234
|
+
GenericBrowseListComponent,
|
|
235
|
+
HomeComponent,
|
|
236
|
+
NavigationComponent,
|
|
237
|
+
ReportBrowserComponent,
|
|
238
|
+
DashboardResource,
|
|
239
|
+
EntityRecordResource,
|
|
240
|
+
ReportResource,
|
|
241
|
+
SearchResultsResource,
|
|
242
|
+
UserViewResource,
|
|
243
|
+
SettingsComponent,
|
|
244
|
+
SingleApplicationComponent,
|
|
245
|
+
FavoritesComponent,
|
|
246
|
+
HeaderComponent,
|
|
247
|
+
JoinGridComponent,
|
|
248
|
+
SingleEntityComponent,
|
|
249
|
+
SingleRecordComponent,
|
|
250
|
+
SingleReportComponent,
|
|
251
|
+
SingleSearchResultComponent,
|
|
252
|
+
SingleViewComponent,
|
|
253
|
+
UserProfileComponent,
|
|
254
|
+
ViewPropertiesDialogComponent,
|
|
255
|
+
SingleDashboardComponent,
|
|
256
|
+
AddItemComponent,
|
|
257
|
+
EditDashboardComponent,
|
|
258
|
+
URLPipe,
|
|
259
|
+
UserNotificationsComponent], imports: [CommonModule,
|
|
260
|
+
FormsModule,
|
|
261
|
+
ReactiveFormsModule,
|
|
262
|
+
RouterModule,
|
|
263
|
+
GridModule,
|
|
264
|
+
DialogsModule,
|
|
265
|
+
ExcelExportModule,
|
|
266
|
+
ButtonsModule,
|
|
267
|
+
CompareRecordsModule,
|
|
268
|
+
IndicatorsModule,
|
|
269
|
+
CommonModule,
|
|
270
|
+
FormsModule,
|
|
271
|
+
GridModule,
|
|
272
|
+
ChartsModule,
|
|
273
|
+
ButtonsModule,
|
|
274
|
+
TabStripModule,
|
|
275
|
+
ExcelModule,
|
|
276
|
+
PDFModule,
|
|
277
|
+
IndicatorsModule,
|
|
278
|
+
DialogsModule,
|
|
279
|
+
InputsModule,
|
|
280
|
+
LabelModule,
|
|
281
|
+
IconModule,
|
|
282
|
+
CompareRecordsModule,
|
|
283
|
+
RecordChangesModule,
|
|
284
|
+
ContainerDirectivesModule,
|
|
285
|
+
ListViewModule,
|
|
286
|
+
UserViewGridModule,
|
|
287
|
+
SortableModule,
|
|
288
|
+
LayoutModule,
|
|
289
|
+
FilterModule,
|
|
290
|
+
DropDownsModule], exports: [FormToolbarComponent,
|
|
291
|
+
DynamicGridComponent,
|
|
292
|
+
DynamicChartComponent,
|
|
293
|
+
DynamicReportComponent,
|
|
294
|
+
SectionLoaderComponent,
|
|
295
|
+
ResourceContainerComponent,
|
|
296
|
+
SkipDynamicReportComponent,
|
|
297
|
+
AskSkipComponent,
|
|
298
|
+
AuthButtonComponent,
|
|
299
|
+
DashboardBrowserComponent,
|
|
300
|
+
DataBrowserComponent,
|
|
301
|
+
GenericBrowseListComponent,
|
|
302
|
+
HomeComponent,
|
|
303
|
+
NavigationComponent,
|
|
304
|
+
ReportBrowserComponent,
|
|
305
|
+
DashboardResource,
|
|
306
|
+
EntityRecordResource,
|
|
307
|
+
ReportResource,
|
|
308
|
+
SearchResultsResource,
|
|
309
|
+
UserViewResource,
|
|
310
|
+
SettingsComponent,
|
|
311
|
+
SingleApplicationComponent,
|
|
312
|
+
FavoritesComponent,
|
|
313
|
+
HeaderComponent,
|
|
314
|
+
JoinGridComponent,
|
|
315
|
+
SingleEntityComponent,
|
|
316
|
+
SingleRecordComponent,
|
|
317
|
+
SingleReportComponent,
|
|
318
|
+
SingleSearchResultComponent,
|
|
319
|
+
SingleViewComponent,
|
|
320
|
+
UserProfileComponent,
|
|
321
|
+
ViewPropertiesDialogComponent,
|
|
322
|
+
SingleDashboardComponent,
|
|
323
|
+
AddItemComponent,
|
|
324
|
+
EditDashboardComponent,
|
|
325
|
+
URLPipe,
|
|
326
|
+
UserNotificationsComponent] }); })();
|
|
327
|
+
i0.ɵɵsetComponentScope(DynamicReportComponent, [i1.NgIf, i2.Button, i3.TabStripComponent, i3.TabStripTabComponent, i3.TabContentDirective, i3.TabTitleDirective, i4.IconComponent, i5.FillContainer, DynamicGridComponent,
|
|
328
|
+
DynamicChartComponent], []);
|
|
329
|
+
i0.ɵɵsetComponentScope(SkipDynamicReportComponent, [DynamicReportComponent], []);
|
|
330
|
+
i0.ɵɵsetComponentScope(SingleDashboardComponent, [i1.NgForOf, i1.NgIf, i2.Button, i3.TileLayoutComponent, i3.TileLayoutItemComponent, i3.TileLayoutItemHeaderComponent, i3.TileLayoutItemBodyComponent, ResourceContainerComponent,
|
|
331
|
+
AddItemComponent,
|
|
332
|
+
EditDashboardComponent], []);
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export * from './lib/generic/base-form-component';
|
|
2
|
+
export * from './lib/generic/base-form-section-component';
|
|
3
|
+
export * from './lib/generic/base-record-component';
|
|
4
|
+
export * from './lib/generic/base-resource-component';
|
|
5
|
+
export * from './lib/generic/dynamic-chart';
|
|
6
|
+
export * from './lib/generic/dynamic-grid';
|
|
7
|
+
export * from './lib/generic/dynamic-report';
|
|
8
|
+
export * from './lib/generic/form-toolbar';
|
|
9
|
+
export * from './lib/generic/resource-container-component';
|
|
10
|
+
export * from './lib/generic/section-loader-component';
|
|
11
|
+
export * from './lib/shared/shared.service';
|
|
12
|
+
export * from './lib/ask-skip/ask-skip.component';
|
|
13
|
+
export * from './lib/ask-skip/skip-dynamic-report-wrapper';
|
|
14
|
+
export * from './lib/auth-button/auth-button.component';
|
|
15
|
+
export * from './lib/dashboard-browser-component/dashboard-browser.component';
|
|
16
|
+
export * from './lib/data-browser-component/data-browser.component';
|
|
17
|
+
export * from './lib/generic-browse-list/generic-browse-list.component';
|
|
18
|
+
export * from './lib/home-component/home.component';
|
|
19
|
+
export * from './lib/navigation/navigation.component';
|
|
20
|
+
export * from './lib/report-browser-component/report-browser.component';
|
|
21
|
+
export * from './lib/resource-wrappers/dashboard-resource.component';
|
|
22
|
+
export * from './lib/resource-wrappers/record-resource.component';
|
|
23
|
+
export * from './lib/resource-wrappers/report-resource.component';
|
|
24
|
+
export * from './lib/resource-wrappers/resource-wrappers-loader';
|
|
25
|
+
export * from './lib/resource-wrappers/search-results-resource.component';
|
|
26
|
+
export * from './lib/resource-wrappers/view-resource.component';
|
|
27
|
+
export * from './lib/settings/settings.component';
|
|
28
|
+
export * from './lib/single-application/single-application.component';
|
|
29
|
+
export * from './lib/favorites/favorites.component';
|
|
30
|
+
export * from './lib/header/header.component';
|
|
31
|
+
export * from './lib/header/MSFT_UserImageService';
|
|
32
|
+
export * from './lib/join-grid/join-grid.component';
|
|
33
|
+
export * from './lib/single-entity/single-entity.component';
|
|
34
|
+
export * from './lib/single-record/single-record.component';
|
|
35
|
+
export * from './lib/single-report/single-report.component';
|
|
36
|
+
export * from './lib/single-search-result/single-search-result.component';
|
|
37
|
+
export * from './lib/single-view/single-view.component';
|
|
38
|
+
export * from './lib/single-dashboard/single-dashboard.component';
|
|
39
|
+
export * from './lib/single-dashboard/Components/add-item/add-item.component';
|
|
40
|
+
export * from './lib/single-dashboard/Components/edit-dashboard/edit-dashboard.component';
|
|
41
|
+
export * from './lib/user-profile/user-profile.component';
|
|
42
|
+
export * from './lib/user-view-properties/view-properties-dialog.component';
|
|
43
|
+
export * from './lib/shared/urlPipe';
|
|
44
|
+
export * from './lib/user-notifications/user-notifications.component';
|
|
45
|
+
export * from './lib/guards/auth-guard.service';
|
|
46
|
+
export * from './lib/guards/entities.guard';
|
|
47
|
+
export * from './module';
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Public API Surface
|
|
3
|
+
*/
|
|
4
|
+
export * from './lib/generic/base-form-component';
|
|
5
|
+
export * from './lib/generic/base-form-section-component';
|
|
6
|
+
export * from './lib/generic/base-record-component';
|
|
7
|
+
export * from './lib/generic/base-resource-component';
|
|
8
|
+
export * from './lib/generic/dynamic-chart';
|
|
9
|
+
export * from './lib/generic/dynamic-grid';
|
|
10
|
+
export * from './lib/generic/dynamic-report';
|
|
11
|
+
export * from './lib/generic/form-toolbar';
|
|
12
|
+
export * from './lib/generic/resource-container-component';
|
|
13
|
+
export * from './lib/generic/section-loader-component';
|
|
14
|
+
export * from './lib/shared/shared.service';
|
|
15
|
+
export * from './lib/ask-skip/ask-skip.component';
|
|
16
|
+
export * from './lib/ask-skip/skip-dynamic-report-wrapper';
|
|
17
|
+
export * from './lib/auth-button/auth-button.component';
|
|
18
|
+
export * from './lib/dashboard-browser-component/dashboard-browser.component';
|
|
19
|
+
export * from './lib/data-browser-component/data-browser.component';
|
|
20
|
+
export * from './lib/generic-browse-list/generic-browse-list.component';
|
|
21
|
+
export * from './lib/home-component/home.component';
|
|
22
|
+
export * from './lib/navigation/navigation.component';
|
|
23
|
+
export * from './lib/report-browser-component/report-browser.component';
|
|
24
|
+
export * from './lib/resource-wrappers/dashboard-resource.component';
|
|
25
|
+
export * from './lib/resource-wrappers/record-resource.component';
|
|
26
|
+
export * from './lib/resource-wrappers/report-resource.component';
|
|
27
|
+
export * from './lib/resource-wrappers/resource-wrappers-loader';
|
|
28
|
+
export * from './lib/resource-wrappers/search-results-resource.component';
|
|
29
|
+
export * from './lib/resource-wrappers/view-resource.component';
|
|
30
|
+
export * from './lib/settings/settings.component';
|
|
31
|
+
export * from './lib/single-application/single-application.component';
|
|
32
|
+
export * from './lib/favorites/favorites.component';
|
|
33
|
+
export * from './lib/header/header.component';
|
|
34
|
+
export * from './lib/header/MSFT_UserImageService';
|
|
35
|
+
export * from './lib/join-grid/join-grid.component';
|
|
36
|
+
export * from './lib/single-entity/single-entity.component';
|
|
37
|
+
export * from './lib/single-record/single-record.component';
|
|
38
|
+
export * from './lib/single-report/single-report.component';
|
|
39
|
+
export * from './lib/single-search-result/single-search-result.component';
|
|
40
|
+
export * from './lib/single-view/single-view.component';
|
|
41
|
+
export * from './lib/single-dashboard/single-dashboard.component';
|
|
42
|
+
export * from './lib/single-dashboard/Components/add-item/add-item.component';
|
|
43
|
+
export * from './lib/single-dashboard/Components/edit-dashboard/edit-dashboard.component';
|
|
44
|
+
export * from './lib/user-profile/user-profile.component';
|
|
45
|
+
export * from './lib/user-view-properties/view-properties-dialog.component';
|
|
46
|
+
export * from './lib/shared/urlPipe';
|
|
47
|
+
export * from './lib/user-notifications/user-notifications.component';
|
|
48
|
+
export * from './lib/guards/auth-guard.service';
|
|
49
|
+
export * from './lib/guards/entities.guard';
|
|
50
|
+
export * from './module';
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@memberjunction/ng-explorer-core",
|
|
3
|
+
"version": "0.9.2",
|
|
4
|
+
"description": "MemberJunction Explorer: Core Angular Components",
|
|
5
|
+
"main": "./dist/public-api.js",
|
|
6
|
+
"typings": "./dist/public-api.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"/dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
|
+
"build": "ngc"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [],
|
|
15
|
+
"author": "",
|
|
16
|
+
"license": "ISC",
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@angular/compiler": "^15.2.0",
|
|
19
|
+
"@angular/compiler-cli": "^15.2.0"
|
|
20
|
+
},
|
|
21
|
+
"peerDependencies": {
|
|
22
|
+
"@angular/common": "^15.2.0",
|
|
23
|
+
"@angular/core": "^15.2.0",
|
|
24
|
+
"@angular/forms": "^15.2.0",
|
|
25
|
+
"@angular/router": "^15.2.0",
|
|
26
|
+
"@progress/kendo-angular-grid": "^12.1.0",
|
|
27
|
+
"@progress/kendo-angular-listview": "^12.1.0"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@memberjunction/global": "^0.9.63",
|
|
31
|
+
"@memberjunction/core": "^0.9.59",
|
|
32
|
+
"@memberjunction/ng-compare-records": "^0.9.65",
|
|
33
|
+
"@memberjunction/ng-record-changes": "^0.9.3",
|
|
34
|
+
"@memberjunction/ng-container-directives": "^0.9.41",
|
|
35
|
+
"@memberjunction/ng-user-view-grid": "^0.9.45",
|
|
36
|
+
"tslib": "^2.3.0"
|
|
37
|
+
},
|
|
38
|
+
"sideEffects": false
|
|
39
|
+
}
|