@net7/boilerplate-common 3.3.0 → 3.4.0
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/esm2020/lib/components/smart-pagination/smart-pagination.mjs +3 -3
- package/esm2020/lib/directives/click-outside.directive.mjs +3 -3
- package/esm2020/lib/event-handlers/footer.eh.mjs +5 -2
- package/esm2020/lib/event-handlers/header.eh.mjs +3 -1
- package/esm2020/lib/layouts/main-layout/main-layout.ds.mjs +4 -1
- package/esm2020/lib/layouts/main-layout/main-layout.eh.mjs +11 -1
- package/esm2020/lib/layouts/main-layout/main-layout.mjs +3 -3
- package/esm2020/lib/layouts/page404-layout/page404-layout.mjs +3 -3
- package/esm2020/lib/n7-boilerplate-common.module.mjs +4 -4
- package/esm2020/lib/services/communication-providers/apollo.provider.mjs +3 -3
- package/esm2020/lib/services/communication-providers/rest.provider.mjs +3 -3
- package/esm2020/lib/services/communication.service.mjs +3 -3
- package/esm2020/lib/services/configuration.service.mjs +3 -3
- package/esm2020/lib/services/json-config.service.mjs +3 -3
- package/esm2020/lib/services/layouts-configuration.service.mjs +3 -3
- package/esm2020/lib/services/local-config.service.mjs +3 -3
- package/esm2020/lib/services/main-state.service.mjs +7 -4
- package/fesm2015/net7-boilerplate-common.mjs +62 -41
- package/fesm2015/net7-boilerplate-common.mjs.map +1 -1
- package/fesm2020/net7-boilerplate-common.mjs +62 -41
- package/fesm2020/net7-boilerplate-common.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -23,9 +23,9 @@ class ConfigurationService {
|
|
|
23
23
|
this.set = (key, value) => { this.defaults[key] = value; };
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
ConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
27
|
-
ConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
28
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
26
|
+
ConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: ConfigurationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
27
|
+
ConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: ConfigurationService, providedIn: 'root' });
|
|
28
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: ConfigurationService, decorators: [{
|
|
29
29
|
type: Injectable,
|
|
30
30
|
args: [{
|
|
31
31
|
providedIn: 'root',
|
|
@@ -45,9 +45,9 @@ class LayoutsConfigurationService {
|
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
-
LayoutsConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
49
|
-
LayoutsConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
50
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
48
|
+
LayoutsConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: LayoutsConfigurationService, deps: [{ token: 'config' }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
49
|
+
LayoutsConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: LayoutsConfigurationService, providedIn: 'root' });
|
|
50
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: LayoutsConfigurationService, decorators: [{
|
|
51
51
|
type: Injectable,
|
|
52
52
|
args: [{
|
|
53
53
|
providedIn: 'root',
|
|
@@ -69,6 +69,9 @@ class MainStateService {
|
|
|
69
69
|
breadcrumbs: new ReplaySubject(),
|
|
70
70
|
filters: new ReplaySubject(),
|
|
71
71
|
header: new ReplaySubject(),
|
|
72
|
+
headerEvents: new ReplaySubject(),
|
|
73
|
+
footer: new ReplaySubject(),
|
|
74
|
+
footerEvents: new ReplaySubject(),
|
|
72
75
|
};
|
|
73
76
|
this.get$ = (key) => this._get('default', key);
|
|
74
77
|
this.getCustom$ = (key) => this._get('custom', key);
|
|
@@ -97,9 +100,9 @@ class MainStateService {
|
|
|
97
100
|
return this[type][key];
|
|
98
101
|
}
|
|
99
102
|
}
|
|
100
|
-
MainStateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
101
|
-
MainStateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
102
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
103
|
+
MainStateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: MainStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
104
|
+
MainStateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: MainStateService, providedIn: 'root' });
|
|
105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: MainStateService, decorators: [{
|
|
103
106
|
type: Injectable,
|
|
104
107
|
args: [{
|
|
105
108
|
providedIn: 'root',
|
|
@@ -179,9 +182,9 @@ class ApolloProvider {
|
|
|
179
182
|
return paramsStr.join(' ');
|
|
180
183
|
}
|
|
181
184
|
}
|
|
182
|
-
ApolloProvider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
183
|
-
ApolloProvider.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
184
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
185
|
+
ApolloProvider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: ApolloProvider, deps: [{ token: i1.HttpClient }, { token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
186
|
+
ApolloProvider.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: ApolloProvider, providedIn: 'root' });
|
|
187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: ApolloProvider, decorators: [{
|
|
185
188
|
type: Injectable,
|
|
186
189
|
args: [{
|
|
187
190
|
providedIn: 'root',
|
|
@@ -216,9 +219,9 @@ class RestProvider {
|
|
|
216
219
|
throw Error(`Rest method ${method} not supported`);
|
|
217
220
|
}
|
|
218
221
|
}
|
|
219
|
-
RestProvider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
220
|
-
RestProvider.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
221
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
222
|
+
RestProvider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: RestProvider, deps: [{ token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
223
|
+
RestProvider.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: RestProvider, providedIn: 'root' });
|
|
224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: RestProvider, decorators: [{
|
|
222
225
|
type: Injectable,
|
|
223
226
|
args: [{
|
|
224
227
|
providedIn: 'root',
|
|
@@ -263,9 +266,9 @@ class CommunicationService {
|
|
|
263
266
|
return empty();
|
|
264
267
|
}
|
|
265
268
|
}
|
|
266
|
-
CommunicationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
267
|
-
CommunicationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
268
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
269
|
+
CommunicationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: CommunicationService, deps: [{ token: ConfigurationService }, { token: ApolloProvider }, { token: RestProvider }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
270
|
+
CommunicationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: CommunicationService, providedIn: 'root' });
|
|
271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: CommunicationService, decorators: [{
|
|
269
272
|
type: Injectable,
|
|
270
273
|
args: [{
|
|
271
274
|
providedIn: 'root',
|
|
@@ -329,6 +332,9 @@ class MainLayoutDS extends LayoutDataSource {
|
|
|
329
332
|
this.mainState.get$('header').subscribe((val) => {
|
|
330
333
|
this.one('header').update(val);
|
|
331
334
|
});
|
|
335
|
+
this.mainState.get$('footer').subscribe((val) => {
|
|
336
|
+
this.one('footer').update(val);
|
|
337
|
+
});
|
|
332
338
|
// mainState test
|
|
333
339
|
/* this.mainState.addCustom('customNav', new Subject());
|
|
334
340
|
this.mainState.get$('pageTitle').subscribe(val => console.log('pageTitle', val));
|
|
@@ -402,6 +408,16 @@ class MainLayoutEH extends EventHandler {
|
|
|
402
408
|
break;
|
|
403
409
|
}
|
|
404
410
|
});
|
|
411
|
+
this.outerEvents$.subscribe(({ type, payload }) => {
|
|
412
|
+
// header events
|
|
413
|
+
if (type.indexOf('header') === 0) {
|
|
414
|
+
this.mainState.update('headerEvents', { type, payload });
|
|
415
|
+
}
|
|
416
|
+
// footer events
|
|
417
|
+
if (type.indexOf('footer') === 0) {
|
|
418
|
+
this.mainState.update('footerEvents', { type, payload });
|
|
419
|
+
}
|
|
420
|
+
});
|
|
405
421
|
// listen to global events
|
|
406
422
|
EventHandler.globalEvents$.pipe(takeUntil(this.destroyed$)).subscribe(({ type, payload }) => {
|
|
407
423
|
switch (type) {
|
|
@@ -696,6 +712,8 @@ var DS = /*#__PURE__*/Object.freeze({
|
|
|
696
712
|
class HeaderEH extends EventHandler {
|
|
697
713
|
listen() {
|
|
698
714
|
this.innerEvents$.subscribe(({ type, payload }) => {
|
|
715
|
+
// redirect event
|
|
716
|
+
this.emitOuter(type.replace(`${this.hostId}.`, ''), payload);
|
|
699
717
|
switch (type) {
|
|
700
718
|
case 'header.click':
|
|
701
719
|
this.dataSource.onClick(payload);
|
|
@@ -759,7 +777,10 @@ class BreadcrumbsEH extends EventHandler {
|
|
|
759
777
|
|
|
760
778
|
class FooterEH extends EventHandler {
|
|
761
779
|
listen() {
|
|
762
|
-
|
|
780
|
+
this.innerEvents$.subscribe(({ type, payload }) => {
|
|
781
|
+
// redirect event
|
|
782
|
+
this.emitOuter(type.replace(`${this.hostId}.`, ''), payload);
|
|
783
|
+
});
|
|
763
784
|
}
|
|
764
785
|
}
|
|
765
786
|
|
|
@@ -837,9 +858,9 @@ class MainLayoutComponent extends AbstractLayout {
|
|
|
837
858
|
this.onDestroy();
|
|
838
859
|
}
|
|
839
860
|
}
|
|
840
|
-
MainLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
841
|
-
MainLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
861
|
+
MainLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: MainLayoutComponent, deps: [{ token: i1$1.Router }, { token: i1$1.ActivatedRoute }, { token: ConfigurationService }, { token: LayoutsConfigurationService }, { token: MainStateService }, { token: i5.Title }], target: i0.ɵɵFactoryTarget.Component });
|
|
862
|
+
MainLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: MainLayoutComponent, selector: "main-layout", usesInheritance: true, ngImport: i0, template: "<div class=\"n7-main-layout\" id=\"main-layout\">\n <div class=\"n7-page-content\">\n <n7-header\n [data]=\"lb.widgets['header'].ds.out$ | async\"\n [emit]=\"lb.widgets['header'].emit\">\n </n7-header>\n <main class=\"n7-content\">\n <div class=\"n7-top-page-bar\">\n <div class=\"n7-top-page-bar__main\"></div>\n </div>\n <div class=\"n7-alert-bar\">\n <!--<n7-alert\n [attr.id]=\"'main-layout-alert'\"\n [data]=\"lb.dataSource.alertData$ | async\"\n [emit]=\"lb.dataSource.closeAlert.bind(lb.dataSource)\"></n7-alert>-->\n </div>\n <ng-content></ng-content>\n </main>\n </div>\n <n7-footer\n [data]=\"lb.widgets['footer'].ds.out$ | async\"\n [emit]=\"lb.widgets['footer'].emit\">\n </n7-footer>\n</div>\n", components: [{ type: i6.HeaderComponent, selector: "n7-header", inputs: ["data", "emit"] }, { type: i6.FooterComponent, selector: "n7-footer", inputs: ["data", "emit"] }], pipes: { "async": i7.AsyncPipe } });
|
|
863
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: MainLayoutComponent, decorators: [{
|
|
843
864
|
type: Component,
|
|
844
865
|
args: [{ selector: 'main-layout', template: "<div class=\"n7-main-layout\" id=\"main-layout\">\n <div class=\"n7-page-content\">\n <n7-header\n [data]=\"lb.widgets['header'].ds.out$ | async\"\n [emit]=\"lb.widgets['header'].emit\">\n </n7-header>\n <main class=\"n7-content\">\n <div class=\"n7-top-page-bar\">\n <div class=\"n7-top-page-bar__main\"></div>\n </div>\n <div class=\"n7-alert-bar\">\n <!--<n7-alert\n [attr.id]=\"'main-layout-alert'\"\n [data]=\"lb.dataSource.alertData$ | async\"\n [emit]=\"lb.dataSource.closeAlert.bind(lb.dataSource)\"></n7-alert>-->\n </div>\n <ng-content></ng-content>\n </main>\n </div>\n <n7-footer\n [data]=\"lb.widgets['footer'].ds.out$ | async\"\n [emit]=\"lb.widgets['footer'].emit\">\n </n7-footer>\n</div>\n" }]
|
|
845
866
|
}], ctorParameters: function () { return [{ type: i1$1.Router }, { type: i1$1.ActivatedRoute }, { type: ConfigurationService }, { type: LayoutsConfigurationService }, { type: MainStateService }, { type: i5.Title }]; } });
|
|
@@ -912,9 +933,9 @@ class Page404LayoutComponent extends AbstractLayout {
|
|
|
912
933
|
this.onDestroy();
|
|
913
934
|
}
|
|
914
935
|
}
|
|
915
|
-
Page404LayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
916
|
-
Page404LayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
936
|
+
Page404LayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: Page404LayoutComponent, deps: [{ token: LayoutsConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
937
|
+
Page404LayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: Page404LayoutComponent, selector: "n7-page404-layout", usesInheritance: true, ngImport: i0, template: "<div class=\"n7-page404-layout\">\n 404 - Resource not found\n</div>" });
|
|
938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: Page404LayoutComponent, decorators: [{
|
|
918
939
|
type: Component,
|
|
919
940
|
args: [{ selector: 'n7-page404-layout', template: "<div class=\"n7-page404-layout\">\n 404 - Resource not found\n</div>" }]
|
|
920
941
|
}], ctorParameters: function () { return [{ type: LayoutsConfigurationService }]; } });
|
|
@@ -929,9 +950,9 @@ class SmartPaginationComponent {
|
|
|
929
950
|
this.emit('change', payload);
|
|
930
951
|
}
|
|
931
952
|
}
|
|
932
|
-
SmartPaginationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
933
|
-
SmartPaginationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
934
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
953
|
+
SmartPaginationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SmartPaginationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
954
|
+
SmartPaginationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: SmartPaginationComponent, selector: "n7-smart-pagination", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div class=\"n7-smart-pagination\" *ngIf=\"data\">\n <n7-pagination\n [data]=\"data\"\n [emit]=\"emit\">\n </n7-pagination>\n</div>", components: [{ type: i6.PaginationComponent, selector: "n7-pagination", inputs: ["data", "emit"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SmartPaginationComponent, decorators: [{
|
|
935
956
|
type: Component,
|
|
936
957
|
args: [{ selector: 'n7-smart-pagination', template: "<div class=\"n7-smart-pagination\" *ngIf=\"data\">\n <n7-pagination\n [data]=\"data\"\n [emit]=\"emit\">\n </n7-pagination>\n</div>" }]
|
|
937
958
|
}], ctorParameters: function () { return []; }, propDecorators: { data: [{
|
|
@@ -955,9 +976,9 @@ class ClickOutsideDirective {
|
|
|
955
976
|
}
|
|
956
977
|
}
|
|
957
978
|
}
|
|
958
|
-
ClickOutsideDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
959
|
-
ClickOutsideDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.
|
|
960
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
979
|
+
ClickOutsideDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: ClickOutsideDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
980
|
+
ClickOutsideDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.7", type: ClickOutsideDirective, selector: "[clickOutside]", outputs: { clickOutside: "clickOutside" }, host: { listeners: { "document:click": "onClick($event,$event.target)" } }, ngImport: i0 });
|
|
981
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
961
982
|
type: Directive,
|
|
962
983
|
args: [{
|
|
963
984
|
selector: '[clickOutside]'
|
|
@@ -989,8 +1010,8 @@ class N7BoilerplateCommonModule {
|
|
|
989
1010
|
};
|
|
990
1011
|
}
|
|
991
1012
|
}
|
|
992
|
-
N7BoilerplateCommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
993
|
-
N7BoilerplateCommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.
|
|
1013
|
+
N7BoilerplateCommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: N7BoilerplateCommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1014
|
+
N7BoilerplateCommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: N7BoilerplateCommonModule, declarations: [MainLayoutComponent,
|
|
994
1015
|
Page404LayoutComponent,
|
|
995
1016
|
SmartPaginationComponent,
|
|
996
1017
|
ClickOutsideDirective], imports: [CommonModule,
|
|
@@ -999,12 +1020,12 @@ N7BoilerplateCommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0
|
|
|
999
1020
|
Page404LayoutComponent,
|
|
1000
1021
|
SmartPaginationComponent,
|
|
1001
1022
|
ClickOutsideDirective] });
|
|
1002
|
-
N7BoilerplateCommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.
|
|
1023
|
+
N7BoilerplateCommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: N7BoilerplateCommonModule, providers: [], imports: [[
|
|
1003
1024
|
CommonModule,
|
|
1004
1025
|
HttpClientModule,
|
|
1005
1026
|
DvComponentsLibModule,
|
|
1006
1027
|
]] });
|
|
1007
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1028
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: N7BoilerplateCommonModule, decorators: [{
|
|
1008
1029
|
type: NgModule,
|
|
1009
1030
|
args: [{
|
|
1010
1031
|
declarations: DECLARATIONS,
|
|
@@ -1057,9 +1078,9 @@ class JsonConfigService {
|
|
|
1057
1078
|
}
|
|
1058
1079
|
}
|
|
1059
1080
|
}
|
|
1060
|
-
JsonConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1061
|
-
JsonConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
1062
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1081
|
+
JsonConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: JsonConfigService, deps: [{ token: i1.HttpClient }, { token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1082
|
+
JsonConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: JsonConfigService, providedIn: 'root' });
|
|
1083
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: JsonConfigService, decorators: [{
|
|
1063
1084
|
type: Injectable,
|
|
1064
1085
|
args: [{
|
|
1065
1086
|
providedIn: 'root',
|
|
@@ -1098,9 +1119,9 @@ class LocalConfigService {
|
|
|
1098
1119
|
})).toPromise();
|
|
1099
1120
|
}
|
|
1100
1121
|
}
|
|
1101
|
-
LocalConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1102
|
-
LocalConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
1103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1122
|
+
LocalConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: LocalConfigService, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1123
|
+
LocalConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: LocalConfigService, providedIn: 'root' });
|
|
1124
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: LocalConfigService, decorators: [{
|
|
1104
1125
|
type: Injectable,
|
|
1105
1126
|
args: [{
|
|
1106
1127
|
providedIn: 'root',
|