@worktile/planet 15.0.0 → 15.1.1
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/CHANGELOG.md +19 -0
- package/README.md +2 -2
- package/component/planet-component-loader.d.ts +2 -2
- package/component/planet-component-loader.d.ts.map +1 -1
- package/esm2020/application/planet-application-loader.mjs +3 -3
- package/esm2020/application/planet-application.service.mjs +3 -3
- package/esm2020/assets-loader.mjs +3 -3
- package/esm2020/component/planet-component-loader.mjs +17 -10
- package/esm2020/component/planet-component-outlet.mjs +3 -3
- package/esm2020/empty/empty.component.mjs +3 -3
- package/esm2020/global-event-dispatcher.mjs +3 -3
- package/esm2020/module.mjs +7 -6
- package/esm2020/planet.mjs +3 -3
- package/esm2020/public-api.mjs +2 -1
- package/esm2020/router/route-redirect.mjs +63 -0
- package/fesm2015/worktile-planet.mjs +105 -37
- package/fesm2015/worktile-planet.mjs.map +1 -1
- package/fesm2020/worktile-planet.mjs +104 -37
- package/fesm2020/worktile-planet.mjs.map +1 -1
- package/module.d.ts +2 -1
- package/module.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/public-api.d.ts.map +1 -1
- package/router/route-redirect.d.ts +16 -0
- package/router/route-redirect.d.ts.map +1 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, NgZone, Injectable, Inject, Optional, Component, ChangeDetectionStrategy, Injector, createComponent, EventEmitter, Directive, Input, Output, NgModule } from '@angular/core';
|
|
2
|
+
import { InjectionToken, NgZone, Injectable, Inject, Optional, Component, ChangeDetectionStrategy, Injector, createComponent, reflectComponentType, EventEmitter, Directive, Input, Output, inject, NgModule } from '@angular/core';
|
|
3
3
|
import * as i3 from '@angular/router';
|
|
4
|
-
import { Router, NavigationEnd } from '@angular/router';
|
|
4
|
+
import { Router, NavigationEnd, ActivatedRoute } from '@angular/router';
|
|
5
5
|
import { take, map, concatAll, switchMap, shareReplay, filter, distinctUntilChanged, catchError, tap, share, startWith, delayWhen, takeUntil } from 'rxjs/operators';
|
|
6
6
|
import { Observable, from, of, concat, forkJoin, Subject, timer } from 'rxjs';
|
|
7
7
|
import * as i1 from '@angular/common/http';
|
|
@@ -1123,9 +1123,9 @@ class AssetsLoader {
|
|
|
1123
1123
|
}));
|
|
1124
1124
|
}
|
|
1125
1125
|
}
|
|
1126
|
-
AssetsLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1127
|
-
AssetsLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
1128
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1126
|
+
AssetsLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: AssetsLoader, deps: [{ token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1127
|
+
AssetsLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: AssetsLoader, providedIn: 'root' });
|
|
1128
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: AssetsLoader, decorators: [{
|
|
1129
1129
|
type: Injectable,
|
|
1130
1130
|
args: [{
|
|
1131
1131
|
providedIn: 'root'
|
|
@@ -1199,9 +1199,9 @@ class PlanetApplicationService {
|
|
|
1199
1199
|
return this.apps;
|
|
1200
1200
|
}
|
|
1201
1201
|
}
|
|
1202
|
-
PlanetApplicationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1203
|
-
PlanetApplicationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
1204
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1202
|
+
PlanetApplicationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetApplicationService, deps: [{ token: i1.HttpClient }, { token: AssetsLoader }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1203
|
+
PlanetApplicationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetApplicationService, providedIn: 'root' });
|
|
1204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetApplicationService, decorators: [{
|
|
1205
1205
|
type: Injectable,
|
|
1206
1206
|
args: [{
|
|
1207
1207
|
providedIn: 'root'
|
|
@@ -1281,9 +1281,9 @@ class GlobalEventDispatcher {
|
|
|
1281
1281
|
return this.subscriptionCount;
|
|
1282
1282
|
}
|
|
1283
1283
|
}
|
|
1284
|
-
GlobalEventDispatcher.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1285
|
-
GlobalEventDispatcher.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
1286
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1284
|
+
GlobalEventDispatcher.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: GlobalEventDispatcher, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1285
|
+
GlobalEventDispatcher.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: GlobalEventDispatcher, providedIn: 'root' });
|
|
1286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: GlobalEventDispatcher, decorators: [{
|
|
1287
1287
|
type: Injectable,
|
|
1288
1288
|
args: [{
|
|
1289
1289
|
providedIn: 'root'
|
|
@@ -1748,9 +1748,9 @@ class PlanetApplicationLoader {
|
|
|
1748
1748
|
return this.preloadInternal(app, immediate);
|
|
1749
1749
|
}
|
|
1750
1750
|
}
|
|
1751
|
-
PlanetApplicationLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1752
|
-
PlanetApplicationLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
1753
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1751
|
+
PlanetApplicationLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetApplicationLoader, deps: [{ token: AssetsLoader }, { token: PlanetApplicationService }, { token: i0.NgZone }, { token: i3.Router }, { token: i0.Injector }, { token: i0.ApplicationRef }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1752
|
+
PlanetApplicationLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetApplicationLoader, providedIn: 'root' });
|
|
1753
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetApplicationLoader, decorators: [{
|
|
1754
1754
|
type: Injectable,
|
|
1755
1755
|
args: [{
|
|
1756
1756
|
providedIn: 'root'
|
|
@@ -1825,9 +1825,9 @@ class Planet {
|
|
|
1825
1825
|
(_a = this.subscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
|
|
1826
1826
|
}
|
|
1827
1827
|
}
|
|
1828
|
-
Planet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1829
|
-
Planet.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
1830
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1828
|
+
Planet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: Planet, deps: [{ token: i0.Injector }, { token: i3.Router }, { token: PLANET_APPLICATIONS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1829
|
+
Planet.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: Planet, providedIn: 'root' });
|
|
1830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: Planet, decorators: [{
|
|
1831
1831
|
type: Injectable,
|
|
1832
1832
|
args: [{
|
|
1833
1833
|
providedIn: 'root'
|
|
@@ -1843,9 +1843,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
1843
1843
|
|
|
1844
1844
|
class EmptyComponent {
|
|
1845
1845
|
}
|
|
1846
|
-
EmptyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1847
|
-
EmptyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
|
1848
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1846
|
+
EmptyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: EmptyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1847
|
+
EmptyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.5", type: EmptyComponent, isStandalone: true, selector: "empty-component", ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1848
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: EmptyComponent, decorators: [{
|
|
1849
1849
|
type: Component,
|
|
1850
1850
|
args: [{
|
|
1851
1851
|
// eslint-disable-next-line @angular-eslint/component-selector
|
|
@@ -1860,6 +1860,9 @@ class PlanetComponentRef {
|
|
|
1860
1860
|
}
|
|
1861
1861
|
|
|
1862
1862
|
const componentWrapperClass = 'planet-component-wrapper';
|
|
1863
|
+
function isComponentType(component) {
|
|
1864
|
+
return typeof component === 'function' && component.constructor === Function;
|
|
1865
|
+
}
|
|
1863
1866
|
class PlanetComponentLoader {
|
|
1864
1867
|
get applicationLoader() {
|
|
1865
1868
|
return getApplicationLoader();
|
|
@@ -1926,12 +1929,12 @@ class PlanetComponentLoader {
|
|
|
1926
1929
|
container.appendChild(componentRootNode);
|
|
1927
1930
|
}
|
|
1928
1931
|
}
|
|
1929
|
-
attachComponent(
|
|
1932
|
+
attachComponent(component, appModuleRef, config) {
|
|
1930
1933
|
const plantComponentRef = new PlanetComponentRef();
|
|
1931
1934
|
const appRef = this.applicationRef;
|
|
1932
1935
|
const injector = this.createInjector(appModuleRef, plantComponentRef);
|
|
1933
1936
|
const container = this.getContainerElement(config);
|
|
1934
|
-
const componentRef = createComponent(
|
|
1937
|
+
const componentRef = createComponent(component, {
|
|
1935
1938
|
environmentInjector: appModuleRef.injector,
|
|
1936
1939
|
elementInjector: injector
|
|
1937
1940
|
});
|
|
@@ -1962,10 +1965,14 @@ class PlanetComponentLoader {
|
|
|
1962
1965
|
this.getPlantAppRef(app).subscribe(appRef => {
|
|
1963
1966
|
appRef.registerComponentFactory((componentName, config) => {
|
|
1964
1967
|
const components = coerceArray(componentOrComponents);
|
|
1965
|
-
const
|
|
1966
|
-
|
|
1968
|
+
const planetComponent = components.find(item => {
|
|
1969
|
+
return isComponentType(item)
|
|
1970
|
+
? reflectComponentType(item).selector.includes(componentName)
|
|
1971
|
+
: item.name === componentName;
|
|
1972
|
+
});
|
|
1973
|
+
if (planetComponent) {
|
|
1967
1974
|
return this.ngZone.run(() => {
|
|
1968
|
-
const componentRef = this.attachComponent(component, appRef.appModuleRef, config);
|
|
1975
|
+
const componentRef = this.attachComponent(isComponentType(planetComponent) ? planetComponent : planetComponent.component, appRef.appModuleRef, config);
|
|
1969
1976
|
return componentRef;
|
|
1970
1977
|
});
|
|
1971
1978
|
}
|
|
@@ -2002,9 +2009,9 @@ class PlanetComponentLoader {
|
|
|
2002
2009
|
return result;
|
|
2003
2010
|
}
|
|
2004
2011
|
}
|
|
2005
|
-
PlanetComponentLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2006
|
-
PlanetComponentLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
2007
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2012
|
+
PlanetComponentLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetComponentLoader, deps: [{ token: i0.ApplicationRef }, { token: i0.NgModuleRef }, { token: i0.NgZone }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2013
|
+
PlanetComponentLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetComponentLoader, providedIn: 'root' });
|
|
2014
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetComponentLoader, decorators: [{
|
|
2008
2015
|
type: Injectable,
|
|
2009
2016
|
args: [{
|
|
2010
2017
|
providedIn: 'root'
|
|
@@ -2062,9 +2069,9 @@ class PlanetComponentOutlet {
|
|
|
2062
2069
|
this.destroyed$.next();
|
|
2063
2070
|
}
|
|
2064
2071
|
}
|
|
2065
|
-
PlanetComponentOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2066
|
-
PlanetComponentOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2067
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2072
|
+
PlanetComponentOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetComponentOutlet, deps: [{ token: i0.ElementRef }, { token: PlanetComponentLoader }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2073
|
+
PlanetComponentOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.5", type: PlanetComponentOutlet, isStandalone: true, selector: "[planetComponentOutlet]", inputs: { planetComponentOutlet: "planetComponentOutlet", planetComponentOutletApp: "planetComponentOutletApp", planetComponentOutletInitialState: "planetComponentOutletInitialState" }, outputs: { planetComponentLoaded: "planetComponentLoaded" }, usesOnChanges: true, ngImport: i0 });
|
|
2074
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: PlanetComponentOutlet, decorators: [{
|
|
2068
2075
|
type: Directive,
|
|
2069
2076
|
args: [{
|
|
2070
2077
|
selector: '[planetComponentOutlet]',
|
|
@@ -2080,6 +2087,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
2080
2087
|
type: Output
|
|
2081
2088
|
}] } });
|
|
2082
2089
|
|
|
2090
|
+
class RouteRedirect {
|
|
2091
|
+
constructor(redirectTo) {
|
|
2092
|
+
this.activatedRoute = inject(ActivatedRoute);
|
|
2093
|
+
this.router = inject(Router);
|
|
2094
|
+
const finalRedirectTo = redirectTo || this.activatedRoute.snapshot.data.redirectTo;
|
|
2095
|
+
if (finalRedirectTo) {
|
|
2096
|
+
const activatedRouteUrl = this.activatedRoute.pathFromRoot
|
|
2097
|
+
.filter(route => {
|
|
2098
|
+
var _a;
|
|
2099
|
+
return ((_a = route.snapshot.url) === null || _a === void 0 ? void 0 : _a.length) > 0;
|
|
2100
|
+
})
|
|
2101
|
+
.map(route => {
|
|
2102
|
+
return route.snapshot.url.join('/');
|
|
2103
|
+
})
|
|
2104
|
+
.join('/');
|
|
2105
|
+
if (this.router.isActive(activatedRouteUrl, {
|
|
2106
|
+
matrixParams: 'exact',
|
|
2107
|
+
paths: 'exact',
|
|
2108
|
+
queryParams: 'exact',
|
|
2109
|
+
fragment: 'exact'
|
|
2110
|
+
})) {
|
|
2111
|
+
this.router.navigate([`${finalRedirectTo}`],
|
|
2112
|
+
// By replacing the current URL in the history, we keep the Browser's Back
|
|
2113
|
+
// Button behavior in tact. This will allow the user to easily navigate back
|
|
2114
|
+
// to the previous URL without getting caught in a redirect.
|
|
2115
|
+
{
|
|
2116
|
+
replaceUrl: true,
|
|
2117
|
+
relativeTo: this.activatedRoute
|
|
2118
|
+
});
|
|
2119
|
+
}
|
|
2120
|
+
}
|
|
2121
|
+
}
|
|
2122
|
+
}
|
|
2123
|
+
function routeRedirect(redirectTo) {
|
|
2124
|
+
return new RouteRedirect(redirectTo);
|
|
2125
|
+
}
|
|
2126
|
+
class RedirectToRouteComponent {
|
|
2127
|
+
constructor() {
|
|
2128
|
+
this.routeRedirect = routeRedirect();
|
|
2129
|
+
}
|
|
2130
|
+
}
|
|
2131
|
+
RedirectToRouteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: RedirectToRouteComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2132
|
+
RedirectToRouteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.5", type: RedirectToRouteComponent, isStandalone: true, selector: "planet-redirect-to-route", ngImport: i0, template: '', isInline: true });
|
|
2133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: RedirectToRouteComponent, decorators: [{
|
|
2134
|
+
type: Component,
|
|
2135
|
+
args: [{
|
|
2136
|
+
selector: 'planet-redirect-to-route',
|
|
2137
|
+
template: '',
|
|
2138
|
+
standalone: true
|
|
2139
|
+
}]
|
|
2140
|
+
}] });
|
|
2141
|
+
function redirectToRoute(redirectTo) {
|
|
2142
|
+
return {
|
|
2143
|
+
path: '',
|
|
2144
|
+
component: RedirectToRouteComponent,
|
|
2145
|
+
data: {
|
|
2146
|
+
redirectTo: redirectTo
|
|
2147
|
+
}
|
|
2148
|
+
};
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2083
2151
|
class NgxPlanetModule {
|
|
2084
2152
|
static forRoot(apps) {
|
|
2085
2153
|
return {
|
|
@@ -2093,14 +2161,14 @@ class NgxPlanetModule {
|
|
|
2093
2161
|
};
|
|
2094
2162
|
}
|
|
2095
2163
|
}
|
|
2096
|
-
NgxPlanetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2097
|
-
NgxPlanetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
2098
|
-
NgxPlanetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
2099
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2164
|
+
NgxPlanetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: NgxPlanetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2165
|
+
NgxPlanetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: NgxPlanetModule, imports: [HttpClientModule, PlanetComponentOutlet, EmptyComponent, RedirectToRouteComponent], exports: [HttpClientModule, EmptyComponent, PlanetComponentOutlet] });
|
|
2166
|
+
NgxPlanetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: NgxPlanetModule, imports: [HttpClientModule, EmptyComponent, RedirectToRouteComponent, HttpClientModule] });
|
|
2167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: NgxPlanetModule, decorators: [{
|
|
2100
2168
|
type: NgModule,
|
|
2101
2169
|
args: [{
|
|
2102
2170
|
declarations: [],
|
|
2103
|
-
imports: [HttpClientModule, PlanetComponentOutlet, EmptyComponent],
|
|
2171
|
+
imports: [HttpClientModule, PlanetComponentOutlet, EmptyComponent, RedirectToRouteComponent],
|
|
2104
2172
|
providers: [],
|
|
2105
2173
|
exports: [HttpClientModule, EmptyComponent, PlanetComponentOutlet]
|
|
2106
2174
|
}]
|
|
@@ -2121,5 +2189,5 @@ class PlantComponentConfig {
|
|
|
2121
2189
|
* Generated bundle index. Do not edit.
|
|
2122
2190
|
*/
|
|
2123
2191
|
|
|
2124
|
-
export { ApplicationStatus, AssetsLoader, EmptyComponent, GlobalEventDispatcher, NgxPlanetModule, PLANET_APPLICATIONS, Planet, PlanetApplicationLoader, PlanetApplicationRef, PlanetApplicationService, PlanetComponentLoader, PlanetComponentOutlet, PlanetComponentRef, PlanetPortalApplication, PlantComponentConfig, SwitchModes, defineApplication, getPlanetApplicationRef, getPortalApplicationData };
|
|
2192
|
+
export { ApplicationStatus, AssetsLoader, EmptyComponent, GlobalEventDispatcher, NgxPlanetModule, PLANET_APPLICATIONS, Planet, PlanetApplicationLoader, PlanetApplicationRef, PlanetApplicationService, PlanetComponentLoader, PlanetComponentOutlet, PlanetComponentRef, PlanetPortalApplication, PlantComponentConfig, RedirectToRouteComponent, SwitchModes, defineApplication, getPlanetApplicationRef, getPortalApplicationData, redirectToRoute, routeRedirect };
|
|
2125
2193
|
//# sourceMappingURL=worktile-planet.mjs.map
|