@ngx-smz/core 21.2.2 → 21.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/README.md +27 -0
- package/fesm2022/ngx-smz-core.mjs +91 -51
- package/fesm2022/ngx-smz-core.mjs.map +1 -1
- package/package.json +3 -3
- package/types/ngx-smz-core.d.ts +54 -9
package/README.md
CHANGED
|
@@ -26,6 +26,33 @@ ng build ngx-smz-ui
|
|
|
26
26
|
|
|
27
27
|
This command will compile your project, and the build artifacts will be placed in the `dist/` directory.
|
|
28
28
|
|
|
29
|
+
## PDF export setup
|
|
30
|
+
|
|
31
|
+
`SmzDocumentBuilder` and `smz-document-viewer` use **`html2pdf.js`** and **`jspdf`** as **peer dependencies**. Install them in the host application:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npm install html2pdf.js@^0.14.0 jspdf@^4.2.0
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Do **not** add `html2pdf.bundle.js` to `angular.json` → `scripts`. The library imports `html2pdf.js` as an ES/CJS module; the Angular bundler resolves `html2canvas`, `jspdf`, and `dompurify` from `node_modules`.
|
|
38
|
+
|
|
39
|
+
If the build warns about CommonJS dependencies, add them to `allowedCommonJsDependencies` in `angular.json`:
|
|
40
|
+
|
|
41
|
+
```json
|
|
42
|
+
[
|
|
43
|
+
"html2pdf.js",
|
|
44
|
+
"html2canvas",
|
|
45
|
+
"jspdf",
|
|
46
|
+
"dompurify",
|
|
47
|
+
"canvg",
|
|
48
|
+
"raf",
|
|
49
|
+
"core-js",
|
|
50
|
+
"rgbcolor"
|
|
51
|
+
]
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
See the **demos** app route `/document` for working examples of the `html2pdf` renderer.
|
|
55
|
+
|
|
29
56
|
### Publishing the Library
|
|
30
57
|
|
|
31
58
|
Once the project is built, you can publish your library by following these steps:
|
|
@@ -101,7 +101,7 @@ import { BadgeModule } from 'primeng/badge';
|
|
|
101
101
|
import Chart from 'chart.js/auto';
|
|
102
102
|
import { getRelativePosition } from 'chart.js/helpers';
|
|
103
103
|
import { jsPDF } from 'jspdf';
|
|
104
|
-
import
|
|
104
|
+
import html2pdf from 'html2pdf.js';
|
|
105
105
|
import sortBy$1 from 'lodash-es/sortBy';
|
|
106
106
|
import flatten$2 from 'lodash-es/flatten';
|
|
107
107
|
import * as i4$5 from 'primeng/picklist';
|
|
@@ -11577,6 +11577,37 @@ class BaseApiService {
|
|
|
11577
11577
|
}
|
|
11578
11578
|
}
|
|
11579
11579
|
|
|
11580
|
+
const DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES = {
|
|
11581
|
+
login: 'api/authentication/login',
|
|
11582
|
+
refreshToken: 'api/authentication/refresh-token',
|
|
11583
|
+
resetPassword: 'api/authentication/reset-password',
|
|
11584
|
+
redefinePassword: 'api/authentication/redefine-password',
|
|
11585
|
+
resendConfirmation: 'api/authentication/resend-confirmation',
|
|
11586
|
+
confirmEmail: 'api/authentication/confirm-email',
|
|
11587
|
+
switchTenant: 'api/authentication/switch-tenant',
|
|
11588
|
+
changePassword: 'api/authentication/change-password',
|
|
11589
|
+
register: 'api/authentication/user/register',
|
|
11590
|
+
createUser: 'api/authentication/user/create',
|
|
11591
|
+
deleteUser: 'api/authentication/user/delete',
|
|
11592
|
+
deactivateUser: 'api/authentication/user/deactivate',
|
|
11593
|
+
activateUser: 'api/authentication/user/activate',
|
|
11594
|
+
};
|
|
11595
|
+
const DEFAULT_AUTHENTICATION_BASE_PATH = 'authentication';
|
|
11596
|
+
function buildAuthenticationEndpointsRoutes(basePath = DEFAULT_AUTHENTICATION_BASE_PATH) {
|
|
11597
|
+
const routes = { ...DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES };
|
|
11598
|
+
const prefix = `api/${DEFAULT_AUTHENTICATION_BASE_PATH}`;
|
|
11599
|
+
const replacement = `api/${basePath}`;
|
|
11600
|
+
return Object.keys(routes).reduce((result, key) => {
|
|
11601
|
+
result[key] = routes[key].replace(prefix, replacement);
|
|
11602
|
+
return result;
|
|
11603
|
+
}, {});
|
|
11604
|
+
}
|
|
11605
|
+
function buildAuthenticationUrl(serverUrl, route) {
|
|
11606
|
+
const base = serverUrl.replace(/\/+$/, '');
|
|
11607
|
+
const path = route.replace(/^\/+/, '');
|
|
11608
|
+
return `${base}/${path}`;
|
|
11609
|
+
}
|
|
11610
|
+
|
|
11580
11611
|
/* 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
11612
|
class AuthService extends BaseApiService {
|
|
11582
11613
|
http;
|
|
@@ -11590,7 +11621,7 @@ class AuthService extends BaseApiService {
|
|
|
11590
11621
|
if (extraProperties != null) {
|
|
11591
11622
|
data = { ...data, ...extraProperties };
|
|
11592
11623
|
}
|
|
11593
|
-
const url =
|
|
11624
|
+
const url = buildAuthenticationUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.login);
|
|
11594
11625
|
return this.http.post(url, data, this.generateDefaultHeaders({
|
|
11595
11626
|
loadingBehavior: GlobalInjector.config.rbkUtils.authentication.login.loadingBehavior,
|
|
11596
11627
|
authentication: false,
|
|
@@ -11609,7 +11640,7 @@ class AuthService extends BaseApiService {
|
|
|
11609
11640
|
if (extraProperties != null) {
|
|
11610
11641
|
data = { ...data, ...extraProperties };
|
|
11611
11642
|
}
|
|
11612
|
-
const url =
|
|
11643
|
+
const url = buildAuthenticationUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
|
|
11613
11644
|
return this.http.post(url, data, this.generateDefaultHeaders({
|
|
11614
11645
|
loadingBehavior: GlobalInjector.config.rbkUtils.authentication.refreshToken.loadingBehavior,
|
|
11615
11646
|
authentication: false,
|
|
@@ -11630,57 +11661,78 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.5", ngImpor
|
|
|
11630
11661
|
args: [{ providedIn: 'root' }]
|
|
11631
11662
|
}], ctorParameters: () => [{ type: i1$8.HttpClient }] });
|
|
11632
11663
|
|
|
11664
|
+
const SmzUiEnvironment = {
|
|
11665
|
+
production: false,
|
|
11666
|
+
serverUrl: '',
|
|
11667
|
+
authenticationApi: '',
|
|
11668
|
+
baseHref: ''
|
|
11669
|
+
};
|
|
11670
|
+
class NgxSmzUiConfig {
|
|
11671
|
+
debugMode;
|
|
11672
|
+
legacyMode;
|
|
11673
|
+
rbkUtils;
|
|
11674
|
+
tables;
|
|
11675
|
+
dialogs;
|
|
11676
|
+
layouts;
|
|
11677
|
+
locale;
|
|
11678
|
+
}
|
|
11679
|
+
|
|
11633
11680
|
class AuthenticationService extends BaseApiService {
|
|
11634
11681
|
http;
|
|
11635
11682
|
environment = inject(SmzEnvironment);
|
|
11636
|
-
|
|
11683
|
+
config = inject(NgxSmzUiConfig);
|
|
11637
11684
|
constructor(http) {
|
|
11638
11685
|
super();
|
|
11639
11686
|
this.http = http;
|
|
11640
11687
|
}
|
|
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({}));
|
|
11688
|
+
buildUrl(route) {
|
|
11689
|
+
return buildAuthenticationUrl(this.environment.serverUrl, route);
|
|
11649
11690
|
}
|
|
11650
11691
|
sendResetPasswordEmail(data) {
|
|
11651
|
-
|
|
11692
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.resetPassword;
|
|
11693
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11652
11694
|
}
|
|
11653
11695
|
redefinePassword(data) {
|
|
11654
|
-
|
|
11696
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.redefinePassword;
|
|
11697
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11655
11698
|
}
|
|
11656
11699
|
resendEmailConfirmation(data) {
|
|
11657
|
-
|
|
11700
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.resendConfirmation;
|
|
11701
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11658
11702
|
}
|
|
11659
11703
|
confirmEmail() {
|
|
11660
|
-
|
|
11704
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.confirmEmail;
|
|
11705
|
+
return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
|
|
11661
11706
|
}
|
|
11662
11707
|
switchTenant(data) {
|
|
11663
|
-
|
|
11708
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.switchTenant;
|
|
11709
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11664
11710
|
}
|
|
11665
11711
|
// Todo
|
|
11666
11712
|
changePassword(data) {
|
|
11667
|
-
|
|
11713
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.changePassword;
|
|
11714
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11668
11715
|
}
|
|
11669
11716
|
// Todo
|
|
11670
11717
|
registerAnonymously(data) {
|
|
11671
|
-
|
|
11718
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.register;
|
|
11719
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11672
11720
|
}
|
|
11673
11721
|
createUser(data) {
|
|
11674
|
-
|
|
11722
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.createUser;
|
|
11723
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11675
11724
|
}
|
|
11676
11725
|
deleteUser(data) {
|
|
11677
|
-
|
|
11726
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.deleteUser;
|
|
11727
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11678
11728
|
}
|
|
11679
11729
|
deactivateUser(data) {
|
|
11680
|
-
|
|
11730
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.deactivateUser;
|
|
11731
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11681
11732
|
}
|
|
11682
11733
|
activateUser(data) {
|
|
11683
|
-
|
|
11734
|
+
const route = this.config.rbkUtils.authentication.endpointsRoutes.activateUser;
|
|
11735
|
+
return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
|
|
11684
11736
|
}
|
|
11685
11737
|
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
11738
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.5", ngImport: i0, type: AuthenticationService, providedIn: 'root' });
|
|
@@ -23872,7 +23924,6 @@ const SmzJsPdfUtils = {
|
|
|
23872
23924
|
};
|
|
23873
23925
|
|
|
23874
23926
|
/* 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, no-var, no-case-declarations */
|
|
23875
|
-
window['html2canvas'] = html2canvas;
|
|
23876
23927
|
const INITIAL_ZOOM = 1;
|
|
23877
23928
|
class SmzDocumentsService {
|
|
23878
23929
|
store;
|
|
@@ -23929,17 +23980,18 @@ class SmzDocumentsService {
|
|
|
23929
23980
|
switch (state.renderer) {
|
|
23930
23981
|
case 'html2pdf':
|
|
23931
23982
|
// console.log('1 Document html2pdfOptions', state.export.html2pdfOptions);
|
|
23932
|
-
const
|
|
23983
|
+
const html2pdfWorker = html2pdf()
|
|
23933
23984
|
.from(element.nativeElement)
|
|
23934
23985
|
.set(state.export.html2pdfOptions)
|
|
23935
|
-
.toPdf()
|
|
23986
|
+
.toPdf();
|
|
23987
|
+
html2pdfWorker.get('pdf').then((pdf) => {
|
|
23936
23988
|
if (state.summary.showPageNumbers) {
|
|
23937
23989
|
SmzJsPdfUtils.addPageNumbers(pdf, state);
|
|
23938
23990
|
}
|
|
23939
23991
|
});
|
|
23940
23992
|
switch (action) {
|
|
23941
23993
|
case 'open': {
|
|
23942
|
-
|
|
23994
|
+
html2pdfWorker.outputPdf()
|
|
23943
23995
|
.then((pdf) => {
|
|
23944
23996
|
const base64Pdf = btoa(pdf);
|
|
23945
23997
|
window.open(base64Pdf, '_blank');
|
|
@@ -23949,7 +24001,7 @@ class SmzDocumentsService {
|
|
|
23949
24001
|
}
|
|
23950
24002
|
// case 'print': this.pdfMakeService.pdfMake.createPdf(document).print(); break;
|
|
23951
24003
|
case 'download': {
|
|
23952
|
-
|
|
24004
|
+
html2pdfWorker.save()
|
|
23953
24005
|
.then(() => { resolve('Resolved'); });
|
|
23954
24006
|
break;
|
|
23955
24007
|
}
|
|
@@ -29931,7 +29983,7 @@ class AuthInterceptor {
|
|
|
29931
29983
|
// checks if a url is to an admin api or not
|
|
29932
29984
|
if (error.status === 401) {
|
|
29933
29985
|
// check if the response is from the token refresh end point
|
|
29934
|
-
const url =
|
|
29986
|
+
const url = buildAuthenticationUrl(this.environment.serverUrl, this.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
|
|
29935
29987
|
const isFromRefreshTokenEndpoint = error.url === url;
|
|
29936
29988
|
if (isFromRefreshTokenEndpoint) {
|
|
29937
29989
|
console.error('Problem while trying to automatically refresh the token, redirecting to login');
|
|
@@ -33032,22 +33084,6 @@ const featureSmzAccessStates = {};
|
|
|
33032
33084
|
|
|
33033
33085
|
// MODULES
|
|
33034
33086
|
|
|
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
33087
|
/* 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
33088
|
class NgxSmzUiComponent {
|
|
33053
33089
|
constructor() { }
|
|
@@ -49969,8 +50005,7 @@ class SmzUiAuthenticationLoginBuilder extends SmzBuilderUtilities {
|
|
|
49969
50005
|
this._state.rbkUtils.authentication.login.showTenantSelector = true;
|
|
49970
50006
|
}
|
|
49971
50007
|
overrideAuthenticationUrl(path = 'authentication') {
|
|
49972
|
-
this._state.rbkUtils.authentication.
|
|
49973
|
-
this._state.rbkUtils.authentication.refreshToken.url = `/api/${path}/refresh-token`;
|
|
50008
|
+
this._state.rbkUtils.authentication.endpointsRoutes = buildAuthenticationEndpointsRoutes(path);
|
|
49974
50009
|
return this.that;
|
|
49975
50010
|
}
|
|
49976
50011
|
useSingleTenantAplication(tenant) {
|
|
@@ -50082,6 +50117,10 @@ class SmzUiAuthenticationBuilder extends SmzBuilderUtilities {
|
|
|
50082
50117
|
super();
|
|
50083
50118
|
this._builder = _builder;
|
|
50084
50119
|
}
|
|
50120
|
+
setEndpointRoute(key, route) {
|
|
50121
|
+
this._builder._state.rbkUtils.authentication.endpointsRoutes[key] = route;
|
|
50122
|
+
return this.that;
|
|
50123
|
+
}
|
|
50085
50124
|
setLocalStoragePrefix(prefix) {
|
|
50086
50125
|
this._builder._state.rbkUtils.authentication.localStoragePrefix = prefix;
|
|
50087
50126
|
return this.that;
|
|
@@ -51142,7 +51181,6 @@ class SmzUiBuilder extends SmzBuilderUtilities {
|
|
|
51142
51181
|
useSingleTenantAplication: false,
|
|
51143
51182
|
allowTenantSwitching: false,
|
|
51144
51183
|
login: {
|
|
51145
|
-
url: '/api/authentication/login',
|
|
51146
51184
|
route: 'login',
|
|
51147
51185
|
errorHandlingType: 'toast',
|
|
51148
51186
|
responsePropertyName: 'accessToken',
|
|
@@ -51158,7 +51196,6 @@ class SmzUiBuilder extends SmzBuilderUtilities {
|
|
|
51158
51196
|
}
|
|
51159
51197
|
},
|
|
51160
51198
|
refreshToken: {
|
|
51161
|
-
url: '/api/authentication/refresh-token',
|
|
51162
51199
|
errorHandlingType: 'toast',
|
|
51163
51200
|
responsePropertyName: 'refreshToken',
|
|
51164
51201
|
loadingBehavior: 'global',
|
|
@@ -51166,7 +51203,10 @@ class SmzUiBuilder extends SmzBuilderUtilities {
|
|
|
51166
51203
|
},
|
|
51167
51204
|
accessTokenClaims: [
|
|
51168
51205
|
{ claimName: 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name', propertyName: 'username', type: 'string' },
|
|
51169
|
-
]
|
|
51206
|
+
],
|
|
51207
|
+
endpointsRoutes: {
|
|
51208
|
+
...DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES,
|
|
51209
|
+
},
|
|
51170
51210
|
},
|
|
51171
51211
|
state: {
|
|
51172
51212
|
database: {},
|
|
@@ -57526,5 +57566,5 @@ __decorate([
|
|
|
57526
57566
|
* Generated bundle index. Do not edit.
|
|
57527
57567
|
*/
|
|
57528
57568
|
|
|
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 };
|
|
57569
|
+
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, 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, 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
57570
|
//# sourceMappingURL=ngx-smz-core.mjs.map
|