@ngx-smz/core 21.3.0 → 21.4.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.
|
@@ -11577,6 +11577,12 @@ class BaseApiService {
|
|
|
11577
11577
|
}
|
|
11578
11578
|
}
|
|
11579
11579
|
|
|
11580
|
+
function buildServerApiUrl(serverUrl, route) {
|
|
11581
|
+
const base = serverUrl.replace(/\/+$/, '');
|
|
11582
|
+
const path = route.replace(/^\/+/, '');
|
|
11583
|
+
return `${base}/${path}`;
|
|
11584
|
+
}
|
|
11585
|
+
|
|
11580
11586
|
/* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-return, @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/explicit-function-return-type, @typescript-eslint/typedef, no-underscore-dangle, no-console, eqeqeq, @typescript-eslint/no-unused-vars, @typescript-eslint/no-useless-constructor, @typescript-eslint/explicit-member-accessibility, max-len, no-prototype-builtins, @typescript-eslint/no-shadow, @typescript-eslint/no-empty-object-type */
|
|
11581
11587
|
class AuthService extends BaseApiService {
|
|
11582
11588
|
http;
|
|
@@ -11590,7 +11596,7 @@ class AuthService extends BaseApiService {
|
|
|
11590
11596
|
if (extraProperties != null) {
|
|
11591
11597
|
data = { ...data, ...extraProperties };
|
|
11592
11598
|
}
|
|
11593
|
-
const url =
|
|
11599
|
+
const url = buildServerApiUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.login);
|
|
11594
11600
|
return this.http.post(url, data, this.generateDefaultHeaders({
|
|
11595
11601
|
loadingBehavior: GlobalInjector.config.rbkUtils.authentication.login.loadingBehavior,
|
|
11596
11602
|
authentication: false,
|
|
@@ -11609,7 +11615,7 @@ class AuthService extends BaseApiService {
|
|
|
11609
11615
|
if (extraProperties != null) {
|
|
11610
11616
|
data = { ...data, ...extraProperties };
|
|
11611
11617
|
}
|
|
11612
|
-
const url =
|
|
11618
|
+
const url = buildServerApiUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
|
|
11613
11619
|
return this.http.post(url, data, this.generateDefaultHeaders({
|
|
11614
11620
|
loadingBehavior: GlobalInjector.config.rbkUtils.authentication.refreshToken.loadingBehavior,
|
|
11615
11621
|
authentication: false,
|
|
@@ -11630,57 +11636,78 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.5", ngImpor
|
|
|
11630
11636
|
args: [{ providedIn: 'root' }]
|
|
11631
11637
|
}], ctorParameters: () => [{ type: i1$8.HttpClient }] });
|
|
11632
11638
|
|
|
11639
|
+
const SmzUiEnvironment = {
|
|
11640
|
+
production: false,
|
|
11641
|
+
serverUrl: '',
|
|
11642
|
+
authenticationApi: '',
|
|
11643
|
+
baseHref: ''
|
|
11644
|
+
};
|
|
11645
|
+
class NgxSmzUiConfig {
|
|
11646
|
+
debugMode;
|
|
11647
|
+
legacyMode;
|
|
11648
|
+
rbkUtils;
|
|
11649
|
+
tables;
|
|
11650
|
+
dialogs;
|
|
11651
|
+
layouts;
|
|
11652
|
+
locale;
|
|
11653
|
+
}
|
|
11654
|
+
|
|
11633
11655
|
class AuthenticationService extends BaseApiService {
|
|
11634
11656
|
http;
|
|
11635
11657
|
environment = inject(SmzEnvironment);
|
|
11636
|
-
|
|
11658
|
+
config = inject(NgxSmzUiConfig);
|
|
11637
11659
|
constructor(http) {
|
|
11638
11660
|
super();
|
|
11639
11661
|
this.http = http;
|
|
11640
11662
|
}
|
|
11641
|
-
|
|
11642
|
-
return
|
|
11643
|
-
}
|
|
11644
|
-
login() {
|
|
11645
|
-
return this.http.post(`${this.getEndpoint()}/login`, null, this.generateDefaultHeaders({}));
|
|
11646
|
-
}
|
|
11647
|
-
refreshToken() {
|
|
11648
|
-
return this.http.post(`${this.getEndpoint()}/refresh-token`, null, this.generateDefaultHeaders({}));
|
|
11663
|
+
buildUrl(route) {
|
|
11664
|
+
return buildServerApiUrl(this.environment.serverUrl, route);
|
|
11649
11665
|
}
|
|
11650
11666
|
sendResetPasswordEmail(data) {
|
|
11651
|
-
|
|
11667
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.resetPassword;
|
|
11668
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11652
11669
|
}
|
|
11653
11670
|
redefinePassword(data) {
|
|
11654
|
-
|
|
11671
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.redefinePassword;
|
|
11672
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11655
11673
|
}
|
|
11656
11674
|
resendEmailConfirmation(data) {
|
|
11657
|
-
|
|
11675
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.resendConfirmation;
|
|
11676
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11658
11677
|
}
|
|
11659
11678
|
confirmEmail() {
|
|
11660
|
-
|
|
11679
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.confirmEmail;
|
|
11680
|
+
return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
|
|
11661
11681
|
}
|
|
11662
11682
|
switchTenant(data) {
|
|
11663
|
-
|
|
11683
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.switchTenant;
|
|
11684
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11664
11685
|
}
|
|
11665
11686
|
// Todo
|
|
11666
11687
|
changePassword(data) {
|
|
11667
|
-
|
|
11688
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.changePassword;
|
|
11689
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11668
11690
|
}
|
|
11669
11691
|
// Todo
|
|
11670
11692
|
registerAnonymously(data) {
|
|
11671
|
-
|
|
11693
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.register;
|
|
11694
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11672
11695
|
}
|
|
11673
11696
|
createUser(data) {
|
|
11674
|
-
|
|
11697
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.createUser;
|
|
11698
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11675
11699
|
}
|
|
11676
11700
|
deleteUser(data) {
|
|
11677
|
-
|
|
11701
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.deleteUser;
|
|
11702
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11678
11703
|
}
|
|
11679
11704
|
deactivateUser(data) {
|
|
11680
|
-
|
|
11705
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.deactivateUser;
|
|
11706
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11681
11707
|
}
|
|
11682
11708
|
activateUser(data) {
|
|
11683
|
-
|
|
11709
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.activateUser;
|
|
11710
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11684
11711
|
}
|
|
11685
11712
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.5", ngImport: i0, type: AuthenticationService, deps: [{ token: i1$8.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11686
11713
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.5", ngImport: i0, type: AuthenticationService, providedIn: 'root' });
|
|
@@ -29931,7 +29958,7 @@ class AuthInterceptor {
|
|
|
29931
29958
|
// checks if a url is to an admin api or not
|
|
29932
29959
|
if (error.status === 401) {
|
|
29933
29960
|
// check if the response is from the token refresh end point
|
|
29934
|
-
const url =
|
|
29961
|
+
const url = buildServerApiUrl(this.environment.serverUrl, this.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
|
|
29935
29962
|
const isFromRefreshTokenEndpoint = error.url === url;
|
|
29936
29963
|
if (isFromRefreshTokenEndpoint) {
|
|
29937
29964
|
console.error('Problem while trying to automatically refresh the token, redirecting to login');
|
|
@@ -30537,67 +30564,89 @@ var TenantsActions;
|
|
|
30537
30564
|
class AuthorizationService extends BaseApiService {
|
|
30538
30565
|
http;
|
|
30539
30566
|
environment = inject(SmzEnvironment);
|
|
30540
|
-
|
|
30567
|
+
config = inject(NgxSmzUiConfig);
|
|
30541
30568
|
constructor(http) {
|
|
30542
30569
|
super();
|
|
30543
30570
|
this.http = http;
|
|
30544
30571
|
}
|
|
30572
|
+
buildUrl(route) {
|
|
30573
|
+
return buildServerApiUrl(this.environment.serverUrl, route);
|
|
30574
|
+
}
|
|
30545
30575
|
getAllClaims() {
|
|
30546
|
-
|
|
30576
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.getAllClaims;
|
|
30577
|
+
return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
|
|
30547
30578
|
}
|
|
30548
30579
|
createClaim(data) {
|
|
30549
|
-
|
|
30580
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.createClaim;
|
|
30581
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30550
30582
|
}
|
|
30551
30583
|
updateClaim(data) {
|
|
30552
|
-
|
|
30584
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.updateClaim;
|
|
30585
|
+
return this.http.put(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30553
30586
|
}
|
|
30554
30587
|
deleteClaim(id) {
|
|
30555
|
-
|
|
30588
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.deleteClaim;
|
|
30589
|
+
return this.http.delete(`${this.buildUrl(route)}/${id}`, this.generateDefaultHeaders({}));
|
|
30556
30590
|
}
|
|
30557
30591
|
protectClaim(data) {
|
|
30558
|
-
|
|
30592
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.protectClaim;
|
|
30593
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30559
30594
|
}
|
|
30560
30595
|
unprotectClaim(data) {
|
|
30561
|
-
|
|
30596
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.unprotectClaim;
|
|
30597
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30562
30598
|
}
|
|
30563
30599
|
getAllRoles() {
|
|
30564
|
-
|
|
30600
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.getAllRoles;
|
|
30601
|
+
return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
|
|
30565
30602
|
}
|
|
30566
30603
|
createRole(data) {
|
|
30567
|
-
|
|
30604
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.createRole;
|
|
30605
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30568
30606
|
}
|
|
30569
30607
|
updateRole(data) {
|
|
30570
|
-
|
|
30608
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.updateRole;
|
|
30609
|
+
return this.http.put(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30571
30610
|
}
|
|
30572
30611
|
deleteRole(id) {
|
|
30573
|
-
|
|
30612
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.deleteRole;
|
|
30613
|
+
return this.http.delete(`${this.buildUrl(route)}/${id}`, this.generateDefaultHeaders({}));
|
|
30574
30614
|
}
|
|
30575
30615
|
updateRoleClaims(data) {
|
|
30576
|
-
|
|
30616
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.updateRoleClaims;
|
|
30617
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30577
30618
|
}
|
|
30578
30619
|
getAllUsers() {
|
|
30579
|
-
|
|
30620
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.getAllUsers;
|
|
30621
|
+
return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
|
|
30580
30622
|
}
|
|
30581
30623
|
updateUserRoles(data) {
|
|
30582
|
-
|
|
30624
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.updateUserRoles;
|
|
30625
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30583
30626
|
}
|
|
30584
30627
|
addClaimsToUser(data) {
|
|
30585
|
-
|
|
30628
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.addClaimsToUser;
|
|
30629
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30586
30630
|
}
|
|
30587
30631
|
removeClaimsFromUser(data) {
|
|
30588
|
-
|
|
30632
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.removeClaimsFromUser;
|
|
30633
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30589
30634
|
}
|
|
30590
30635
|
getAllTenants() {
|
|
30591
|
-
|
|
30636
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.getAllTenants;
|
|
30637
|
+
return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
|
|
30592
30638
|
}
|
|
30593
30639
|
createTenant(data) {
|
|
30594
|
-
|
|
30640
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.createTenant;
|
|
30641
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30595
30642
|
}
|
|
30596
30643
|
updateTenant(data) {
|
|
30597
|
-
|
|
30644
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.updateTenant;
|
|
30645
|
+
return this.http.put(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
30598
30646
|
}
|
|
30599
30647
|
deleteTenant(id) {
|
|
30600
|
-
|
|
30648
|
+
const route = this.config.rbkUtils.authorization.endpointsRoutes.deleteTenant;
|
|
30649
|
+
return this.http.delete(`${this.buildUrl(route)}/${id}`, this.generateDefaultHeaders({}));
|
|
30601
30650
|
}
|
|
30602
30651
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.5", ngImport: i0, type: AuthorizationService, deps: [{ token: i1$8.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
30603
30652
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.5", ngImport: i0, type: AuthorizationService, providedIn: 'root' });
|
|
@@ -30980,6 +31029,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.5", ngImpor
|
|
|
30980
31029
|
args: [{ providedIn: 'root' }]
|
|
30981
31030
|
}], ctorParameters: () => [{ type: i1$6.Store }] });
|
|
30982
31031
|
|
|
31032
|
+
const DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES = {
|
|
31033
|
+
login: 'api/authentication/login',
|
|
31034
|
+
refreshToken: 'api/authentication/refresh-token',
|
|
31035
|
+
resetPassword: 'api/authentication/reset-password',
|
|
31036
|
+
redefinePassword: 'api/authentication/redefine-password',
|
|
31037
|
+
resendConfirmation: 'api/authentication/resend-confirmation',
|
|
31038
|
+
confirmEmail: 'api/authentication/confirm-email',
|
|
31039
|
+
switchTenant: 'api/authentication/switch-tenant',
|
|
31040
|
+
changePassword: 'api/authentication/change-password',
|
|
31041
|
+
register: 'api/authentication/user/register',
|
|
31042
|
+
createUser: 'api/authentication/user/create',
|
|
31043
|
+
deleteUser: 'api/authentication/user/delete',
|
|
31044
|
+
deactivateUser: 'api/authentication/user/deactivate',
|
|
31045
|
+
activateUser: 'api/authentication/user/activate',
|
|
31046
|
+
};
|
|
31047
|
+
const DEFAULT_AUTHENTICATION_BASE_PATH = 'authentication';
|
|
31048
|
+
function buildAuthenticationEndpointsRoutes(basePath = DEFAULT_AUTHENTICATION_BASE_PATH) {
|
|
31049
|
+
const routes = { ...DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES };
|
|
31050
|
+
const prefix = `api/${DEFAULT_AUTHENTICATION_BASE_PATH}`;
|
|
31051
|
+
const replacement = `api/${basePath}`;
|
|
31052
|
+
return Object.keys(routes).reduce((result, key) => {
|
|
31053
|
+
result[key] = routes[key].replace(prefix, replacement);
|
|
31054
|
+
return result;
|
|
31055
|
+
}, {});
|
|
31056
|
+
}
|
|
31057
|
+
/** @deprecated Use {@link buildServerApiUrl} from `@ngx-smz/core`. */
|
|
31058
|
+
function buildAuthenticationUrl(serverUrl, route) {
|
|
31059
|
+
return buildServerApiUrl(serverUrl, route);
|
|
31060
|
+
}
|
|
31061
|
+
|
|
31062
|
+
const DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES = {
|
|
31063
|
+
getAllClaims: 'api/authorization/claims',
|
|
31064
|
+
createClaim: 'api/authorization/claims',
|
|
31065
|
+
updateClaim: 'api/authorization/claims',
|
|
31066
|
+
deleteClaim: 'api/authorization/claims',
|
|
31067
|
+
protectClaim: 'api/authorization/claims/protect',
|
|
31068
|
+
unprotectClaim: 'api/authorization/claims/unprotect',
|
|
31069
|
+
getAllRoles: 'api/authorization/roles',
|
|
31070
|
+
createRole: 'api/authorization/roles',
|
|
31071
|
+
updateRole: 'api/authorization/roles',
|
|
31072
|
+
deleteRole: 'api/authorization/roles',
|
|
31073
|
+
updateRoleClaims: 'api/authorization/roles/update-claims',
|
|
31074
|
+
getAllUsers: 'api/authorization/users',
|
|
31075
|
+
updateUserRoles: 'api/authorization/users/set-roles',
|
|
31076
|
+
addClaimsToUser: 'api/authorization/users/add-claims',
|
|
31077
|
+
removeClaimsFromUser: 'api/authorization/users/remove-claims',
|
|
31078
|
+
getAllTenants: 'api/authorization/tenants',
|
|
31079
|
+
createTenant: 'api/authorization/tenants',
|
|
31080
|
+
updateTenant: 'api/authorization/tenants',
|
|
31081
|
+
deleteTenant: 'api/authorization/tenants',
|
|
31082
|
+
};
|
|
31083
|
+
const DEFAULT_AUTHORIZATION_BASE_PATH = 'authorization';
|
|
31084
|
+
function buildAuthorizationEndpointsRoutes(basePath = DEFAULT_AUTHORIZATION_BASE_PATH) {
|
|
31085
|
+
const routes = { ...DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES };
|
|
31086
|
+
const prefix = `api/${DEFAULT_AUTHORIZATION_BASE_PATH}`;
|
|
31087
|
+
const replacement = `api/${basePath}`;
|
|
31088
|
+
return Object.keys(routes).reduce((result, key) => {
|
|
31089
|
+
result[key] = routes[key].replace(prefix, replacement);
|
|
31090
|
+
return result;
|
|
31091
|
+
}, {});
|
|
31092
|
+
}
|
|
31093
|
+
|
|
30983
31094
|
/* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-return, @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/explicit-function-return-type, @typescript-eslint/typedef, no-underscore-dangle, no-console, eqeqeq, @typescript-eslint/no-unused-vars, @typescript-eslint/no-useless-constructor, @typescript-eslint/explicit-member-accessibility, max-len, no-prototype-builtins, @typescript-eslint/no-shadow, @typescript-eslint/no-empty-object-type */
|
|
30984
31095
|
class BoilerplateService {
|
|
30985
31096
|
titleService;
|
|
@@ -33032,22 +33143,6 @@ const featureSmzAccessStates = {};
|
|
|
33032
33143
|
|
|
33033
33144
|
// MODULES
|
|
33034
33145
|
|
|
33035
|
-
const SmzUiEnvironment = {
|
|
33036
|
-
production: false,
|
|
33037
|
-
serverUrl: '',
|
|
33038
|
-
authenticationApi: '',
|
|
33039
|
-
baseHref: ''
|
|
33040
|
-
};
|
|
33041
|
-
class NgxSmzUiConfig {
|
|
33042
|
-
debugMode;
|
|
33043
|
-
legacyMode;
|
|
33044
|
-
rbkUtils;
|
|
33045
|
-
tables;
|
|
33046
|
-
dialogs;
|
|
33047
|
-
layouts;
|
|
33048
|
-
locale;
|
|
33049
|
-
}
|
|
33050
|
-
|
|
33051
33146
|
/* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-return, @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/explicit-function-return-type, @typescript-eslint/typedef, no-underscore-dangle, no-console, eqeqeq, @typescript-eslint/no-unused-vars, @typescript-eslint/no-useless-constructor, @typescript-eslint/explicit-member-accessibility, max-len, no-prototype-builtins, @typescript-eslint/no-shadow, @typescript-eslint/no-empty-object-type */
|
|
33052
33147
|
class NgxSmzUiComponent {
|
|
33053
33148
|
constructor() { }
|
|
@@ -49969,8 +50064,7 @@ class SmzUiAuthenticationLoginBuilder extends SmzBuilderUtilities {
|
|
|
49969
50064
|
this._state.rbkUtils.authentication.login.showTenantSelector = true;
|
|
49970
50065
|
}
|
|
49971
50066
|
overrideAuthenticationUrl(path = 'authentication') {
|
|
49972
|
-
this._state.rbkUtils.authentication.
|
|
49973
|
-
this._state.rbkUtils.authentication.refreshToken.url = `/api/${path}/refresh-token`;
|
|
50067
|
+
this._state.rbkUtils.authentication.endpointsRoutes = buildAuthenticationEndpointsRoutes(path);
|
|
49974
50068
|
return this.that;
|
|
49975
50069
|
}
|
|
49976
50070
|
useSingleTenantAplication(tenant) {
|
|
@@ -50082,6 +50176,10 @@ class SmzUiAuthenticationBuilder extends SmzBuilderUtilities {
|
|
|
50082
50176
|
super();
|
|
50083
50177
|
this._builder = _builder;
|
|
50084
50178
|
}
|
|
50179
|
+
setEndpointRoute(key, route) {
|
|
50180
|
+
this._builder._state.rbkUtils.authentication.endpointsRoutes[key] = route;
|
|
50181
|
+
return this.that;
|
|
50182
|
+
}
|
|
50085
50183
|
setLocalStoragePrefix(prefix) {
|
|
50086
50184
|
this._builder._state.rbkUtils.authentication.localStoragePrefix = prefix;
|
|
50087
50185
|
return this.that;
|
|
@@ -50398,6 +50496,14 @@ class SmzUiAuthorizationBuilder extends SmzBuilderUtilities {
|
|
|
50398
50496
|
this._state.rbkUtils.state.feature = { ...this._state.rbkUtils.state.feature, ...featureSmzAccessStates };
|
|
50399
50497
|
this._menu = { label: 'Admin', icon: 'fa-solid fa-user-gear', items: [] };
|
|
50400
50498
|
}
|
|
50499
|
+
setEndpointRoute(key, route) {
|
|
50500
|
+
this._builder._state.rbkUtils.authorization.endpointsRoutes[key] = route;
|
|
50501
|
+
return this.that;
|
|
50502
|
+
}
|
|
50503
|
+
overrideAuthorizationUrl(path = 'authorization') {
|
|
50504
|
+
this._builder._state.rbkUtils.authorization.endpointsRoutes = buildAuthorizationEndpointsRoutes(path);
|
|
50505
|
+
return this.that;
|
|
50506
|
+
}
|
|
50401
50507
|
setMenuLabel(label) {
|
|
50402
50508
|
this._menu.label = label;
|
|
50403
50509
|
return this.that;
|
|
@@ -51142,7 +51248,6 @@ class SmzUiBuilder extends SmzBuilderUtilities {
|
|
|
51142
51248
|
useSingleTenantAplication: false,
|
|
51143
51249
|
allowTenantSwitching: false,
|
|
51144
51250
|
login: {
|
|
51145
|
-
url: '/api/authentication/login',
|
|
51146
51251
|
route: 'login',
|
|
51147
51252
|
errorHandlingType: 'toast',
|
|
51148
51253
|
responsePropertyName: 'accessToken',
|
|
@@ -51158,7 +51263,6 @@ class SmzUiBuilder extends SmzBuilderUtilities {
|
|
|
51158
51263
|
}
|
|
51159
51264
|
},
|
|
51160
51265
|
refreshToken: {
|
|
51161
|
-
url: '/api/authentication/refresh-token',
|
|
51162
51266
|
errorHandlingType: 'toast',
|
|
51163
51267
|
responsePropertyName: 'refreshToken',
|
|
51164
51268
|
loadingBehavior: 'global',
|
|
@@ -51166,7 +51270,10 @@ class SmzUiBuilder extends SmzBuilderUtilities {
|
|
|
51166
51270
|
},
|
|
51167
51271
|
accessTokenClaims: [
|
|
51168
51272
|
{ claimName: 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name', propertyName: 'username', type: 'string' },
|
|
51169
|
-
]
|
|
51273
|
+
],
|
|
51274
|
+
endpointsRoutes: {
|
|
51275
|
+
...DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES,
|
|
51276
|
+
},
|
|
51170
51277
|
},
|
|
51171
51278
|
state: {
|
|
51172
51279
|
database: {},
|
|
@@ -51225,6 +51332,9 @@ class SmzUiBuilder extends SmzBuilderUtilities {
|
|
|
51225
51332
|
}
|
|
51226
51333
|
},
|
|
51227
51334
|
authorization: {
|
|
51335
|
+
endpointsRoutes: {
|
|
51336
|
+
...DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES,
|
|
51337
|
+
},
|
|
51228
51338
|
navigationMenu: null,
|
|
51229
51339
|
allowMultipleRolesPerUser: false,
|
|
51230
51340
|
profileMenu: [],
|
|
@@ -57526,5 +57636,5 @@ __decorate([
|
|
|
57526
57636
|
* Generated bundle index. Do not edit.
|
|
57527
57637
|
*/
|
|
57528
57638
|
|
|
57529
|
-
export { AUTHORIZATION_HEADER, AccessControlService, ActionDispatchDirective, ApplicationActions, ApplicationSelectors, ApplicationState, AsPipe, AthenaLayout, AthenaLayoutComponent, AthenaLayoutModule, AuthClaimDefinitions, AuthHandler, AuthService, AuthenticationActions, AuthenticationSelectors, AuthenticationService, AuthenticationState, AuthorizationService, AxisOverflowDirection, AxisOverflowType, AxisPosition, BaseApiService, BoilerplateService, BreadcrumbService, CLAIMS_PAGE_ROUTE, CLAIMS_PATH, CLAIMS_STATE_NAME, CONTENT_ENCODING_HEADER, CachedRouteReuseStrategy, CalendarComponent, CalendarPipe, CanAccess, ChartType, CheckBoxComponent, CheckBoxGroupComponent, ClaimAccessType, ClaimAccessTypeDescription, ClaimAccessTypeValues, ClaimsActions, ClaimsModule, ClaimsSelectors, ClaimsState, ClickStopPropagationDirective, ClickStopPropagationModule, ClonePipe, ColorPallete, ColorPickerComponent, Confirmable, CreateLinearChart, CreateRadialChart, CustomError, CustomNgForDirective, CustomNgForModule, DATABASE_REQUIRED_ACTIONS, DATABASE_STATES, DECORATOR_APPLIED, DatabaseActions, DatabaseSelectors, DatabaseState, DatasetType, DeepWrapper, DescribeAnyPipe, DescribeArrayPipe, DescribeSimpleNamedPipe, DialogContentManagerComponent, DialogService, DropdownComponent, DynamicDialogComponent, DynamicDialogConfig, DynamicDialogInjector, DynamicDialogModule, DynamicDialogRef, ERROR_HANDLING_TYPE_HEADER, ExcelsUiActions, FEATURE_STATES, FeaturesActions, FeaturesSelectors, FeaturesState, FileUploadComponent, FilterContains, FirstOrDefaultPipe, FormGroupComponent, FormSubmitComponent, GenericInjectComponentDirective, GetElementById, GetElementsByParentId, GlobalActions, GlobalFilter, GlobalInjector, GlobalLoaderComponent, GlobalLoaderModule, GlobalState, GroupingType, HephaestusLayout, HephaestusLayoutComponent, HephaestusLayoutModule, HephaestusProviderModule, HostElement, HttpErrorHandler, IGNORE_ERROR_HANDLING, InViewportMetadata, InjectComponentDirective, InjectComponentService, InjectContentAppModule, InjectContentDirective, InjectContentService, InputBlurDetectionModule, InputChangeDetectionDirective, InputClearExtensionDirective, InputCurrencyComponent, InputListComponent, InputMaskComponent, InputNumberComponent, InputPasswordComponent, InputSwitchComponent, InputTagAreaComponent, InputTextAreaComponent, InputTextComponent, InputTreeComponent, IsVisiblePipe, IsVisiblePipeModule, JoinPipe, LOADING_BEHAVIOR_HEADER, LOCAL_LOADING_TAG_HEADER, LayoutUiActions, LayoutUiSelectors, LayoutUiState, LegacyAuthenticationSelectors, LinearChartBuilder, LinkedDropdownComponent, LinkedMultiSelectComponent, LoggingScope, LoggingService, MAIN_LAYOUT_PATH, MentionableTextareaComponent, MenuHelperService, MenuType, MergeClonePipe, MergeClonePipeModule, MultiSelectComponent, NG_ON_INIT, NewAthenaLayout, NewAthenaLayoutComponent, NewAthenaLayoutModule, NewAthenaProviderModule, NgCloneDirective, NgCloneModule, NgIfLandscapeDirective, NgIfLandscapeDirectiveModule, NgIfPortraitDirective, NgIfPortraitDirectiveModule, NgVar, NgVarContext, NgVarModule, NgxRbkUtilsConfig, NgxRbkUtilsModule, NgxSmzCardsModule, NgxSmzCommentsModule, NgxSmzDataInfoModule, NgxSmzDataPipesModule, NgxSmzDialogsModule, NgxSmzDockModule, NgxSmzDocumentsModule, NgxSmzFaqsModule, NgxSmzFormsModule, NgxSmzLayoutsModule, NgxSmzMenuModule, NgxSmzMultiTablesModule, NgxSmzRouterParamsModule, NgxSmzSafeImageModule, NgxSmzServerImageModule, NgxSmzServerImageToBase64Module, NgxSmzSideContentModule, NgxSmzTablesModule, NgxSmzTreeWithDetailsModule, NgxSmzTreesModule, NgxSmzUiBlockModule, NgxSmzUiComponent, NgxSmzUiConfig, NgxSmzUiGuidesModule, NgxSmzUiModule, NgxSmzViewportModule, PrettyJsonPipe$1 as PrettyJsonPipe, PrettyJsonPipeModule, PrimeConfigService, REFRESH_TOKEN_BEHAVIOR_HEADER, RESTORE_STATE_ON_ERROR_HEADER, ROLES_PAGE_ROUTE, ROLES_PATH, ROLES_STATE_NAME, RadialChartBuilder, RadioButtonComponent, RbkAccessControlModule, RbkAuthGuard, RbkCanAccessAnyPipe, RbkCanAccessPipe, RbkClaimGuardDirective, RbkDatabaseStateGuard, RbkFeatureStateGuard, RbkPipesModule, RbkTableFilterClearDirectivesModule, RegistrySmzUiConfiguration, RepositoryForm, RoleMode, RoleModeDescription, RoleModeValues, RoleSource, RoleSourceDescription, RoleSourceValues, RolesActions, RolesModule, RolesSelectors, RolesState, RouterParamsActions, RouterParamsSelectors, SMZ_CORE_LOGGING_CONFIG, SMZ_UI_ENVIRONMENT_CONFIG, SafeHtmlPipe$2 as SafeHtmlPipe, SafeImageDirective, SafeUrlPipe$1 as SafeUrlPipe, SelectorPipe, ServerImageDirective, ServerImageToBase64Directive, ServerPathPipe, SetTemplateClasses, SetTemplateClassesPipe, SidebarState, SimpleCalendarPipe, SmzActionDispatchModule, SmzAuthorizationDeactivatedUsersTableBuilder, SmzAuthorizationUsersTableBuilder, SmzBaseColumnBuilder, SmzBaseEditableBuilder, SmzBreakpoints, SmzBuilderUtilities, SmzCardsBuilder, SmzCardsComponent, SmzCardsContentType, SmzCardsInjectableComponentBuilder, SmzCardsTemplate, SmzCardsView, SmzChartComponent, SmzChartModule, SmzClipboardService, SmzColumnCollectionBuilder, SmzCommentsBuilder, SmzCommentsComponent, SmzCommentsSectionComponent, SmzContentTheme, SmzContentThemes, SmzContentType, SmzControlType, SmzCoreLogging, SmzCurrencyColumnBuilder, SmzCustomColumnBuilder, SmzDataInfoComponent, SmzDataTransformColumnBuilder, SmzDataTransformTreePipe, SmzDateColumnBuilder, SmzDialogBuilder, SmzDialogComponentBuilder, SmzDialogFormBuilder, SmzDialogTableBuilder, SmzDialogsConfig, SmzDialogsPresets, SmzDialogsService, SmzDockComponent, SmzDockService, SmzDocumentBaseCellBuilder, SmzDocumentBuilder, SmzDocumentComponent, SmzDocumentsService, SmzDragDropModule, SmzDraggable, SmzDropdownEditableBuilder, SmzDroppable, SmzDynamicDialogConfig, SmzEasyBaseColumnBuilder, SmzEasyColumnCollectionBuilder, SmzEasyCustomColumnBuilder, SmzEasyDataTransformColumnBuilder, SmzEasyDateColumnBuilder, SmzEasyMenuTableBuilder, SmzEasyTableBuilder, SmzEasyTableComponent, SmzEasyTableContentType, SmzEasyTableModule, SmzEasyTextColumnBuilder, SmzEditableCollectionBuilder, SmzEditableTableBuilder, SmzEditableType, SmzEnvironment, SmzExcelColorDefinitions, SmzExcelDataDefinitions, SmzExcelFontDefinitions, SmzExcelService, SmzExcelSortOrderDefinitions, SmzExcelThemeDefinitions, SmzExcelTypeDefinitions, SmzExcelsBuilder, SmzExportDialogComponent, SmzExportDialogModule, SmzExportDialogService, SmzExportableContentSource, SmzExportableContentType, SmzFaqsComponent, SmzFaqsConfig, SmzFilterType, SmzFlattenMenuPipe, SmzFlipCardContext, SmzFormBuilder, SmzFormViewdata, SmzFormsConfig, SmzFormsPresets, SmzFormsRepositoryService, SmzGaugeBuilder, SmzGaugeComponent, SmzGaugeThresholdBuilder, SmzGetDataPipe, SmzGridItemComponent, SmzHelpDialogService, SmzHtmlViewerComponent, SmzHtmlViewerModule, SmzIconColumnBuilder, SmzIconMessageComponent, SmzInfoDateComponent, SmzInfoDateModule, SmzInitialPipe, SmzInputAutocompleteTagArea, SmzInputTextModule, SmzInputTextPipe, SmzLayoutsConfig, SmzLoader, SmzLoaders, SmzLoginBuilder, SmzLoginComponent, SmzLoginModule, SmzMenuBuilder, SmzMenuComponent, SmzMenuCreationBuilder, SmzMenuCreationItemBuilder, SmzMenuItemActionsDirective, SmzMenuItemBuilder, SmzMenuItemEasyTableBuilder, SmzMenuItemTableBuilder, SmzMenuTableBuilder, SmzMessagesModule, SmzMultiTablesBuilder, SmzMultiTablesComponent, SmzNumberEditableBuilder, SmzPresets, SmzProxyStore, SmzResponsiveBreakpointsDirective, SmzResponsiveBreakpointsDirectiveModule, SmzResponsiveComponent, SmzRouteDatas, SmzRouteParams, SmzRouteQueryParams, SmzSideContentComponent, SmzSideContentDefault, SmzSincronizeTablePipe, SmzSmartTag, SmzSmartTagModule, SmzSubmitComponent, SmzSvgBuilder, SmzSvgComponent, SmzSvgFeatureBuilder, SmzSvgModule, SmzSvgPinBuilder, SmzSvgRootBuilder, SmzSvgWorldCoordinates, SmzSwitchEditableBuilder, SmzTableBuilder, SmzTableComponent, SmzTablesConfig, SmzTagMessage, SmzTailPipe, SmzTemplatesPipeModule, SmzTenantSwitchComponent, SmzTextColumnBuilder, SmzTextEditableBuilder, SmzTextPattern, SmzTimelineBuilder, SmzTimelineComponent, SmzToastComponent, SmzToastModule, SmzTooltipTouchSupportModule, SmzTreeBuilder, SmzTreeComponent, SmzTreeDragAndDropBuilder, SmzTreeDropBuilder, SmzTreeDynamicMenuBuilder, SmzTreeDynamicMenuItemBuilder, SmzTreeEmptyFeedbackBuilder, SmzTreeMenuBuilder, SmzTreeMenuItemBuilder, SmzTreeToolbarBuilder, SmzTreeToolbarButtonBuilder, SmzTreeToolbarButtonCollectionBuilder, SmzTreeWithDetailsBuilder, SmzTreeWithDetailsComponent, SmzUiBlockComponent, SmzUiBlockDirective, SmzUiBlockService, SmzUiBuilder, SmzUiEnvironment, SmzUiGuidesBuilder, SmzUiGuidesService, SmzViewportDirective, SmzViewportService, StandaloneInjectComponentDirective, StateBuilderPipe, TENANTS_PAGE_ROUTE, TENANTS_PATH, TENANTS_STATE_NAME, TableClearExtensionDirective, TableHelperService, TenantAuthenticationSelectors, TenantsActions, TenantsModule, TenantsSelectors, TenantsState, ThemeManagerService, TitleService, Toast, ToastActions, ToastItem, ToastService, TooltipTouchSupportDirective, TreeHelperService, TreeHelpers, Tunnel, UI_DEFINITIONS_STATE_NAME, UI_LOCALIZATION_STATE_NAME, USERS_PAGE_ROUTE, USERS_PATH, USERS_STATE_NAME, USER_ID_HEADER, LayoutUiActions as UiActions, UiDefinitionsDbActions, UiDefinitionsDbSelectors, UiDefinitionsDbState, UiDefinitionsService, UiLocalizationDbActions, UiLocalizationDbSelectors, UiLocalizationDbState, UiLocalizationService, LayoutUiSelectors as UiSelectors, UniqueFilterPipe, UrlCheckerPipe, UrlCheckerPipeModule, UsersActions, UsersModule, UsersSelectors, UsersState, WINDOWS_AUTHENTICATION_HEADER, Wait, applyTableContentNgStyle, b64toBlob, base64ToFile, breakLinesForHtml, buildState, capitalizeFirstLetter, capitalizeWithSlash, clearArray, clone, cloneAndRemoveProperties, cloneAndRemoveProperty, compare, compareInsensitive, completeSubjectOnTheInstance, convertFormCreationFeature, convertFormFeature, convertFormFeatureFromInputData, convertFormUpdateFeature, count, createObjectFromString, createRound, createSubjectOnTheInstance, dataURLtoFile, databaseSmzAccessStates, debounce, deepClone, deepEqual, deepIndexOf, deepMerge, defaultFormsModuleConfig, defaultState, downloadBase64File, downloadFromServerUrl, downloadFromUrl, empty, every, executeTextPattern, featureSmzAccessStates, fixDate$1 as fixDate, fixDateProperties, fixDates, flatten, flattenObject, getAuthenticationInitialState, getCleanApplicationState, getFirst, getFirstElement, getFirstElements, getFormInputFromDialog, getGlobalInitialState, getInitialApplicationState, getInitialDatabaseStoreState, getInitialState$8 as getInitialState, getLastElements, getPreset, getProperty, getSymbol, getTreeNodeFromKey, getUiDefinitionsInitialState, getUiLocalizationInitialState, getUsersInitialState, getValidatorsForInput, handleBase64, isArray, isConvertibleToNumber, isDeepObject, isEmpty$1 as isEmpty, isFunction$1 as isFunction, isInteger, isNil, isNull$1 as isNull, isNullOrEmptyString, isNumber$1 as isNumber, isNumberFinite$1 as isNumberFinite, isNumeric, isObject$2 as isObject, isObjectHelper, isPositive, isSimpleNamedEntity, isString$1 as isString, isUndefined$1 as isUndefined, isWithinTime, leftPad, longestStringInArray, mapParamsToObject, markAsDecorated, mergeClone, mergeDeep, nameof, namesof, ngxsModuleForFeatureFaqsDbState, ngxsModuleForFeatureUiAthenaLayoutState, ngxsModuleForFeatureUiHephaestusLayoutState, ngxsModuleForFeatureUiNewAthenaLayoutState, normalizeDateToUtc, orderArrayByProperty, pad, provideSmzCoreLogging, provideSmzEnvironment, rbkSafeHtmlPipe, removeElementFromArray, replaceAll, replaceArrayItem, replaceArrayPartialItem, replaceItem, replaceNgOnInit, rightPad, routerModuleForChildUsersModule, routerParamsDispatch, routerParamsListener, setNestedObject, shorten, showConfirmation, showDialog, showMarkdownDialog, showMessage, showObjectDialog, showPersistentDialog, shuffle, sortArray, sortArrayOfObjects, sortArrayOfStrings, sortMenuItemsByLabel, sum, synchronizeNodes, synchronizeRow, synchronizeTable, synchronizeTrees, takeUntil, takeWhile, toDecimal, toSimpleNamedEntity, toString, unwrapDeep, upperFirst, uuidv4, wrapDeep };
|
|
57639
|
+
export { AUTHORIZATION_HEADER, AccessControlService, ActionDispatchDirective, ApplicationActions, ApplicationSelectors, ApplicationState, AsPipe, AthenaLayout, AthenaLayoutComponent, AthenaLayoutModule, AuthClaimDefinitions, AuthHandler, AuthService, AuthenticationActions, AuthenticationSelectors, AuthenticationService, AuthenticationState, AuthorizationService, AxisOverflowDirection, AxisOverflowType, AxisPosition, BaseApiService, BoilerplateService, BreadcrumbService, CLAIMS_PAGE_ROUTE, CLAIMS_PATH, CLAIMS_STATE_NAME, CONTENT_ENCODING_HEADER, CachedRouteReuseStrategy, CalendarComponent, CalendarPipe, CanAccess, ChartType, CheckBoxComponent, CheckBoxGroupComponent, ClaimAccessType, ClaimAccessTypeDescription, ClaimAccessTypeValues, ClaimsActions, ClaimsModule, ClaimsSelectors, ClaimsState, ClickStopPropagationDirective, ClickStopPropagationModule, ClonePipe, ColorPallete, ColorPickerComponent, Confirmable, CreateLinearChart, CreateRadialChart, CustomError, CustomNgForDirective, CustomNgForModule, DATABASE_REQUIRED_ACTIONS, DATABASE_STATES, DECORATOR_APPLIED, DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES, DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES, DatabaseActions, DatabaseSelectors, DatabaseState, DatasetType, DeepWrapper, DescribeAnyPipe, DescribeArrayPipe, DescribeSimpleNamedPipe, DialogContentManagerComponent, DialogService, DropdownComponent, DynamicDialogComponent, DynamicDialogConfig, DynamicDialogInjector, DynamicDialogModule, DynamicDialogRef, ERROR_HANDLING_TYPE_HEADER, ExcelsUiActions, FEATURE_STATES, FeaturesActions, FeaturesSelectors, FeaturesState, FileUploadComponent, FilterContains, FirstOrDefaultPipe, FormGroupComponent, FormSubmitComponent, GenericInjectComponentDirective, GetElementById, GetElementsByParentId, GlobalActions, GlobalFilter, GlobalInjector, GlobalLoaderComponent, GlobalLoaderModule, GlobalState, GroupingType, HephaestusLayout, HephaestusLayoutComponent, HephaestusLayoutModule, HephaestusProviderModule, HostElement, HttpErrorHandler, IGNORE_ERROR_HANDLING, InViewportMetadata, InjectComponentDirective, InjectComponentService, InjectContentAppModule, InjectContentDirective, InjectContentService, InputBlurDetectionModule, InputChangeDetectionDirective, InputClearExtensionDirective, InputCurrencyComponent, InputListComponent, InputMaskComponent, InputNumberComponent, InputPasswordComponent, InputSwitchComponent, InputTagAreaComponent, InputTextAreaComponent, InputTextComponent, InputTreeComponent, IsVisiblePipe, IsVisiblePipeModule, JoinPipe, LOADING_BEHAVIOR_HEADER, LOCAL_LOADING_TAG_HEADER, LayoutUiActions, LayoutUiSelectors, LayoutUiState, LegacyAuthenticationSelectors, LinearChartBuilder, LinkedDropdownComponent, LinkedMultiSelectComponent, LoggingScope, LoggingService, MAIN_LAYOUT_PATH, MentionableTextareaComponent, MenuHelperService, MenuType, MergeClonePipe, MergeClonePipeModule, MultiSelectComponent, NG_ON_INIT, NewAthenaLayout, NewAthenaLayoutComponent, NewAthenaLayoutModule, NewAthenaProviderModule, NgCloneDirective, NgCloneModule, NgIfLandscapeDirective, NgIfLandscapeDirectiveModule, NgIfPortraitDirective, NgIfPortraitDirectiveModule, NgVar, NgVarContext, NgVarModule, NgxRbkUtilsConfig, NgxRbkUtilsModule, NgxSmzCardsModule, NgxSmzCommentsModule, NgxSmzDataInfoModule, NgxSmzDataPipesModule, NgxSmzDialogsModule, NgxSmzDockModule, NgxSmzDocumentsModule, NgxSmzFaqsModule, NgxSmzFormsModule, NgxSmzLayoutsModule, NgxSmzMenuModule, NgxSmzMultiTablesModule, NgxSmzRouterParamsModule, NgxSmzSafeImageModule, NgxSmzServerImageModule, NgxSmzServerImageToBase64Module, NgxSmzSideContentModule, NgxSmzTablesModule, NgxSmzTreeWithDetailsModule, NgxSmzTreesModule, NgxSmzUiBlockModule, NgxSmzUiComponent, NgxSmzUiConfig, NgxSmzUiGuidesModule, NgxSmzUiModule, NgxSmzViewportModule, PrettyJsonPipe$1 as PrettyJsonPipe, PrettyJsonPipeModule, PrimeConfigService, REFRESH_TOKEN_BEHAVIOR_HEADER, RESTORE_STATE_ON_ERROR_HEADER, ROLES_PAGE_ROUTE, ROLES_PATH, ROLES_STATE_NAME, RadialChartBuilder, RadioButtonComponent, RbkAccessControlModule, RbkAuthGuard, RbkCanAccessAnyPipe, RbkCanAccessPipe, RbkClaimGuardDirective, RbkDatabaseStateGuard, RbkFeatureStateGuard, RbkPipesModule, RbkTableFilterClearDirectivesModule, RegistrySmzUiConfiguration, RepositoryForm, RoleMode, RoleModeDescription, RoleModeValues, RoleSource, RoleSourceDescription, RoleSourceValues, RolesActions, RolesModule, RolesSelectors, RolesState, RouterParamsActions, RouterParamsSelectors, SMZ_CORE_LOGGING_CONFIG, SMZ_UI_ENVIRONMENT_CONFIG, SafeHtmlPipe$2 as SafeHtmlPipe, SafeImageDirective, SafeUrlPipe$1 as SafeUrlPipe, SelectorPipe, ServerImageDirective, ServerImageToBase64Directive, ServerPathPipe, SetTemplateClasses, SetTemplateClassesPipe, SidebarState, SimpleCalendarPipe, SmzActionDispatchModule, SmzAuthorizationDeactivatedUsersTableBuilder, SmzAuthorizationUsersTableBuilder, SmzBaseColumnBuilder, SmzBaseEditableBuilder, SmzBreakpoints, SmzBuilderUtilities, SmzCardsBuilder, SmzCardsComponent, SmzCardsContentType, SmzCardsInjectableComponentBuilder, SmzCardsTemplate, SmzCardsView, SmzChartComponent, SmzChartModule, SmzClipboardService, SmzColumnCollectionBuilder, SmzCommentsBuilder, SmzCommentsComponent, SmzCommentsSectionComponent, SmzContentTheme, SmzContentThemes, SmzContentType, SmzControlType, SmzCoreLogging, SmzCurrencyColumnBuilder, SmzCustomColumnBuilder, SmzDataInfoComponent, SmzDataTransformColumnBuilder, SmzDataTransformTreePipe, SmzDateColumnBuilder, SmzDialogBuilder, SmzDialogComponentBuilder, SmzDialogFormBuilder, SmzDialogTableBuilder, SmzDialogsConfig, SmzDialogsPresets, SmzDialogsService, SmzDockComponent, SmzDockService, SmzDocumentBaseCellBuilder, SmzDocumentBuilder, SmzDocumentComponent, SmzDocumentsService, SmzDragDropModule, SmzDraggable, SmzDropdownEditableBuilder, SmzDroppable, SmzDynamicDialogConfig, SmzEasyBaseColumnBuilder, SmzEasyColumnCollectionBuilder, SmzEasyCustomColumnBuilder, SmzEasyDataTransformColumnBuilder, SmzEasyDateColumnBuilder, SmzEasyMenuTableBuilder, SmzEasyTableBuilder, SmzEasyTableComponent, SmzEasyTableContentType, SmzEasyTableModule, SmzEasyTextColumnBuilder, SmzEditableCollectionBuilder, SmzEditableTableBuilder, SmzEditableType, SmzEnvironment, SmzExcelColorDefinitions, SmzExcelDataDefinitions, SmzExcelFontDefinitions, SmzExcelService, SmzExcelSortOrderDefinitions, SmzExcelThemeDefinitions, SmzExcelTypeDefinitions, SmzExcelsBuilder, SmzExportDialogComponent, SmzExportDialogModule, SmzExportDialogService, SmzExportableContentSource, SmzExportableContentType, SmzFaqsComponent, SmzFaqsConfig, SmzFilterType, SmzFlattenMenuPipe, SmzFlipCardContext, SmzFormBuilder, SmzFormViewdata, SmzFormsConfig, SmzFormsPresets, SmzFormsRepositoryService, SmzGaugeBuilder, SmzGaugeComponent, SmzGaugeThresholdBuilder, SmzGetDataPipe, SmzGridItemComponent, SmzHelpDialogService, SmzHtmlViewerComponent, SmzHtmlViewerModule, SmzIconColumnBuilder, SmzIconMessageComponent, SmzInfoDateComponent, SmzInfoDateModule, SmzInitialPipe, SmzInputAutocompleteTagArea, SmzInputTextModule, SmzInputTextPipe, SmzLayoutsConfig, SmzLoader, SmzLoaders, SmzLoginBuilder, SmzLoginComponent, SmzLoginModule, SmzMenuBuilder, SmzMenuComponent, SmzMenuCreationBuilder, SmzMenuCreationItemBuilder, SmzMenuItemActionsDirective, SmzMenuItemBuilder, SmzMenuItemEasyTableBuilder, SmzMenuItemTableBuilder, SmzMenuTableBuilder, SmzMessagesModule, SmzMultiTablesBuilder, SmzMultiTablesComponent, SmzNumberEditableBuilder, SmzPresets, SmzProxyStore, SmzResponsiveBreakpointsDirective, SmzResponsiveBreakpointsDirectiveModule, SmzResponsiveComponent, SmzRouteDatas, SmzRouteParams, SmzRouteQueryParams, SmzSideContentComponent, SmzSideContentDefault, SmzSincronizeTablePipe, SmzSmartTag, SmzSmartTagModule, SmzSubmitComponent, SmzSvgBuilder, SmzSvgComponent, SmzSvgFeatureBuilder, SmzSvgModule, SmzSvgPinBuilder, SmzSvgRootBuilder, SmzSvgWorldCoordinates, SmzSwitchEditableBuilder, SmzTableBuilder, SmzTableComponent, SmzTablesConfig, SmzTagMessage, SmzTailPipe, SmzTemplatesPipeModule, SmzTenantSwitchComponent, SmzTextColumnBuilder, SmzTextEditableBuilder, SmzTextPattern, SmzTimelineBuilder, SmzTimelineComponent, SmzToastComponent, SmzToastModule, SmzTooltipTouchSupportModule, SmzTreeBuilder, SmzTreeComponent, SmzTreeDragAndDropBuilder, SmzTreeDropBuilder, SmzTreeDynamicMenuBuilder, SmzTreeDynamicMenuItemBuilder, SmzTreeEmptyFeedbackBuilder, SmzTreeMenuBuilder, SmzTreeMenuItemBuilder, SmzTreeToolbarBuilder, SmzTreeToolbarButtonBuilder, SmzTreeToolbarButtonCollectionBuilder, SmzTreeWithDetailsBuilder, SmzTreeWithDetailsComponent, SmzUiBlockComponent, SmzUiBlockDirective, SmzUiBlockService, SmzUiBuilder, SmzUiEnvironment, SmzUiGuidesBuilder, SmzUiGuidesService, SmzViewportDirective, SmzViewportService, StandaloneInjectComponentDirective, StateBuilderPipe, TENANTS_PAGE_ROUTE, TENANTS_PATH, TENANTS_STATE_NAME, TableClearExtensionDirective, TableHelperService, TenantAuthenticationSelectors, TenantsActions, TenantsModule, TenantsSelectors, TenantsState, ThemeManagerService, TitleService, Toast, ToastActions, ToastItem, ToastService, TooltipTouchSupportDirective, TreeHelperService, TreeHelpers, Tunnel, UI_DEFINITIONS_STATE_NAME, UI_LOCALIZATION_STATE_NAME, USERS_PAGE_ROUTE, USERS_PATH, USERS_STATE_NAME, USER_ID_HEADER, LayoutUiActions as UiActions, UiDefinitionsDbActions, UiDefinitionsDbSelectors, UiDefinitionsDbState, UiDefinitionsService, UiLocalizationDbActions, UiLocalizationDbSelectors, UiLocalizationDbState, UiLocalizationService, LayoutUiSelectors as UiSelectors, UniqueFilterPipe, UrlCheckerPipe, UrlCheckerPipeModule, UsersActions, UsersModule, UsersSelectors, UsersState, WINDOWS_AUTHENTICATION_HEADER, Wait, applyTableContentNgStyle, b64toBlob, base64ToFile, breakLinesForHtml, buildAuthenticationEndpointsRoutes, buildAuthenticationUrl, buildAuthorizationEndpointsRoutes, buildServerApiUrl, buildState, capitalizeFirstLetter, capitalizeWithSlash, clearArray, clone, cloneAndRemoveProperties, cloneAndRemoveProperty, compare, compareInsensitive, completeSubjectOnTheInstance, convertFormCreationFeature, convertFormFeature, convertFormFeatureFromInputData, convertFormUpdateFeature, count, createObjectFromString, createRound, createSubjectOnTheInstance, dataURLtoFile, databaseSmzAccessStates, debounce, deepClone, deepEqual, deepIndexOf, deepMerge, defaultFormsModuleConfig, defaultState, downloadBase64File, downloadFromServerUrl, downloadFromUrl, empty, every, executeTextPattern, featureSmzAccessStates, fixDate$1 as fixDate, fixDateProperties, fixDates, flatten, flattenObject, getAuthenticationInitialState, getCleanApplicationState, getFirst, getFirstElement, getFirstElements, getFormInputFromDialog, getGlobalInitialState, getInitialApplicationState, getInitialDatabaseStoreState, getInitialState$8 as getInitialState, getLastElements, getPreset, getProperty, getSymbol, getTreeNodeFromKey, getUiDefinitionsInitialState, getUiLocalizationInitialState, getUsersInitialState, getValidatorsForInput, handleBase64, isArray, isConvertibleToNumber, isDeepObject, isEmpty$1 as isEmpty, isFunction$1 as isFunction, isInteger, isNil, isNull$1 as isNull, isNullOrEmptyString, isNumber$1 as isNumber, isNumberFinite$1 as isNumberFinite, isNumeric, isObject$2 as isObject, isObjectHelper, isPositive, isSimpleNamedEntity, isString$1 as isString, isUndefined$1 as isUndefined, isWithinTime, leftPad, longestStringInArray, mapParamsToObject, markAsDecorated, mergeClone, mergeDeep, nameof, namesof, ngxsModuleForFeatureFaqsDbState, ngxsModuleForFeatureUiAthenaLayoutState, ngxsModuleForFeatureUiHephaestusLayoutState, ngxsModuleForFeatureUiNewAthenaLayoutState, normalizeDateToUtc, orderArrayByProperty, pad, provideSmzCoreLogging, provideSmzEnvironment, rbkSafeHtmlPipe, removeElementFromArray, replaceAll, replaceArrayItem, replaceArrayPartialItem, replaceItem, replaceNgOnInit, rightPad, routerModuleForChildUsersModule, routerParamsDispatch, routerParamsListener, setNestedObject, shorten, showConfirmation, showDialog, showMarkdownDialog, showMessage, showObjectDialog, showPersistentDialog, shuffle, sortArray, sortArrayOfObjects, sortArrayOfStrings, sortMenuItemsByLabel, sum, synchronizeNodes, synchronizeRow, synchronizeTable, synchronizeTrees, takeUntil, takeWhile, toDecimal, toSimpleNamedEntity, toString, unwrapDeep, upperFirst, uuidv4, wrapDeep };
|
|
57530
57640
|
//# sourceMappingURL=ngx-smz-core.mjs.map
|