@ts-core/angular 13.1.20 → 13.1.23

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.
@@ -1,6 +1,6 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { Component, ViewContainerRef, Injectable, Directive, Input, Pipe, NgModule, PLATFORM_ID, Inject, InjectionToken, EventEmitter, Output, HostListener, Optional, RendererStyleFlags2, APP_INITIALIZER, RendererFactory2, NgModuleFactory } from '@angular/core';
3
- import { DestroyableContainer, PromiseHandler, ExtendedError, LoadableEvent, Destroyable, IDestroyable, DateUtil, ObservableData, ObjectUtil, ArrayUtil, RemoveFilterableCondition, GetFilterableCondition, Logger, LoggerLevel, DataSourceMapCollectionEvent, FilterableDataSourceMapCollection, PaginableDataSourceMapCollection, PaginableBookmarkDataSourceMapCollection, Loadable, LoadableStatus, TransportTimeoutError, TransportNoConnectionError, FilterableMapCollection, MapCollection, TransportEvent, TransportLocal } from '@ts-core/common';
3
+ import { DestroyableContainer, PromiseHandler, LoadableEvent, Destroyable, ExtendedError, IDestroyable, DateUtil, ObservableData, ObjectUtil, ArrayUtil, RemoveFilterableCondition, GetFilterableCondition, Logger, LoggerLevel, DataSourceMapCollectionEvent, FilterableDataSourceMapCollection, PaginableDataSourceMapCollection, PaginableBookmarkDataSourceMapCollection, Loadable, LoadableStatus, TransportTimeoutError, TransportNoConnectionError, FilterableMapCollection, MapCollection, TransportEvent, TransportLocal } from '@ts-core/common';
4
4
  import * as _ from 'lodash';
5
5
  import * as i1$1 from '@ts-core/frontend';
6
6
  import { Assets, AssetUrlProvider, NativeWindowService, LanguageService, ThemeService, ThemeAssetService, LoadingService, ICookieOptions, DefaultLogger } from '@ts-core/frontend';
@@ -129,6 +129,241 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
129
129
  args: [{ template: '' }]
130
130
  }], ctorParameters: function () { return []; } });
131
131
 
132
+ class ApplicationComponent extends ApplicationBaseComponent {
133
+ // --------------------------------------------------------------------------
134
+ //
135
+ // Private Methods
136
+ //
137
+ // --------------------------------------------------------------------------
138
+ initialize() {
139
+ this.initializeAssets();
140
+ this.initializeTheme();
141
+ this.initializeLanguage();
142
+ }
143
+ initializeAssets() {
144
+ Assets.provider = new AssetUrlProvider(this.settings.assetsUrl);
145
+ }
146
+ initializeTheme() {
147
+ this.theme.initialize(this.settings.themes);
148
+ }
149
+ initializeLanguage() {
150
+ this.language.initialize(`${this.settings.assetsUrl}language/`, this.settings.languages);
151
+ this.language.events.pipe(takeUntil(this.destroyed)).subscribe(data => {
152
+ switch (data.type) {
153
+ case LoadableEvent.COMPLETE:
154
+ this.languageLoadingComplete(data.data);
155
+ break;
156
+ case LoadableEvent.ERROR:
157
+ this.languageLoadingError(data.data, data.error);
158
+ break;
159
+ }
160
+ });
161
+ }
162
+ isReady() {
163
+ return super.isReady() && this.isLanguageLoaded;
164
+ }
165
+ // --------------------------------------------------------------------------
166
+ //
167
+ // Event Handlers
168
+ //
169
+ // --------------------------------------------------------------------------
170
+ languageLoadingComplete(item) {
171
+ this.isLanguageLoaded = true;
172
+ this.setLocale(item);
173
+ this.checkReady();
174
+ }
175
+ viewReadyHandler() {
176
+ this.initialize();
177
+ }
178
+ setLocale(item) {
179
+ moment.locale(item.locale);
180
+ numeral.locale(item.locale);
181
+ }
182
+ }
183
+
184
+ class MessageBaseComponent extends DestroyableContainer {
185
+ // --------------------------------------------------------------------------
186
+ //
187
+ // Constructor
188
+ //
189
+ // --------------------------------------------------------------------------
190
+ constructor(route, language) {
191
+ super();
192
+ this.route = route;
193
+ this.language = language;
194
+ this.refreshText = 'Refresh';
195
+ // this.login.isAutoLogin = true
196
+ this.text = this.getText();
197
+ if (this.language.isLoaded) {
198
+ this.commitLanguageProperties();
199
+ }
200
+ language.completed.pipe(takeUntil(this.destroyed)).subscribe(() => this.commitLanguageProperties());
201
+ }
202
+ // --------------------------------------------------------------------------
203
+ //
204
+ // Private Methods
205
+ //
206
+ // --------------------------------------------------------------------------
207
+ commitLanguageProperties() {
208
+ if (this.language.isHasTranslation('general.refresh')) {
209
+ this.refreshText = this.language.translate('general.refresh');
210
+ }
211
+ }
212
+ getText() {
213
+ let value = this.getValue(this.route.snapshot.queryParams);
214
+ if (_.isNil(value)) {
215
+ value = this.getValue(this.route.snapshot.params);
216
+ }
217
+ return value;
218
+ }
219
+ getValue(data) {
220
+ for (let item of this.getMessageFields()) {
221
+ let value = data[item];
222
+ if (!_.isEmpty(value)) {
223
+ return value;
224
+ }
225
+ }
226
+ return null;
227
+ }
228
+ getMessageFields() {
229
+ return ['text', 'message', 'error'];
230
+ }
231
+ }
232
+
233
+ var QuestionMode;
234
+ (function (QuestionMode) {
235
+ QuestionMode["INFO"] = "INFO";
236
+ QuestionMode["QUESTION"] = "QUESTION";
237
+ })(QuestionMode || (QuestionMode = {}));
238
+ var QuestionEvent;
239
+ (function (QuestionEvent) {
240
+ QuestionEvent["YES"] = "YES";
241
+ QuestionEvent["NOT"] = "NOT";
242
+ QuestionEvent["CLOSE"] = "CLOSE";
243
+ QuestionEvent["CHECK"] = "CHECK";
244
+ QuestionEvent["UNCHECK"] = "UNCHECK";
245
+ })(QuestionEvent || (QuestionEvent = {}));
246
+
247
+ class QuestionManager extends Destroyable {
248
+ // --------------------------------------------------------------------------
249
+ //
250
+ // Constructor
251
+ //
252
+ // --------------------------------------------------------------------------
253
+ constructor(options) {
254
+ super();
255
+ this._isChecked = false;
256
+ this._closePromise = PromiseHandler.create();
257
+ this._yesNotPromise = PromiseHandler.create();
258
+ this.yesText = 'Yes';
259
+ this.notText = 'Not';
260
+ this.closeText = 'Close';
261
+ this.checkText = 'Check';
262
+ this.options = _.assign({
263
+ mode: QuestionMode.INFO,
264
+ isChecked: false,
265
+ yesTextId: 'general.yes',
266
+ notTextId: 'general.not',
267
+ closeTextId: 'general.close'
268
+ }, options);
269
+ this.text = this.options.text;
270
+ this.mode = this.options.mode;
271
+ }
272
+ // --------------------------------------------------------------------------
273
+ //
274
+ // Event Handlers
275
+ //
276
+ // --------------------------------------------------------------------------
277
+ closeClickHandler() {
278
+ this._closePromise.resolve();
279
+ }
280
+ yesClickHandler() {
281
+ this._yesNotPromise.resolve();
282
+ this.closeClickHandler();
283
+ }
284
+ notClickHandler() {
285
+ this._yesNotPromise.reject();
286
+ this.closeClickHandler();
287
+ }
288
+ // --------------------------------------------------------------------------
289
+ //
290
+ // Public Methods
291
+ //
292
+ // --------------------------------------------------------------------------
293
+ destroy() {
294
+ if (this.isDestroyed) {
295
+ return;
296
+ }
297
+ super.destroy();
298
+ this.notClickHandler();
299
+ this._yesNotPromise = null;
300
+ this._closePromise = null;
301
+ }
302
+ // --------------------------------------------------------------------------
303
+ //
304
+ // Interface Properties
305
+ //
306
+ // --------------------------------------------------------------------------
307
+ get yesNotPromise() {
308
+ return this._yesNotPromise.promise;
309
+ }
310
+ get closePromise() {
311
+ return this._closePromise.promise;
312
+ }
313
+ // --------------------------------------------------------------------------
314
+ //
315
+ // Public Properties
316
+ //
317
+ // --------------------------------------------------------------------------
318
+ get isInfo() {
319
+ return this.mode === QuestionMode.INFO;
320
+ }
321
+ get isQuestion() {
322
+ return this.mode === QuestionMode.QUESTION;
323
+ }
324
+ get isChecked() {
325
+ return this._isChecked;
326
+ }
327
+ set isChecked(value) {
328
+ if (value === this._isChecked) {
329
+ return;
330
+ }
331
+ this._isChecked = value;
332
+ // this.content.emit(value ? QuestionEvent.CHECK : QuestionEvent.UNCHECK);
333
+ }
334
+ }
335
+
336
+ class IWindow extends Destroyable {
337
+ constructor() {
338
+ // --------------------------------------------------------------------------
339
+ //
340
+ // Public Methods
341
+ //
342
+ // --------------------------------------------------------------------------
343
+ super(...arguments);
344
+ // --------------------------------------------------------------------------
345
+ //
346
+ // Public Properties
347
+ //
348
+ // --------------------------------------------------------------------------
349
+ this.isOnTop = false;
350
+ this.isDisabled = false;
351
+ this.isMinimized = false;
352
+ }
353
+ }
354
+ var WindowEvent;
355
+ (function (WindowEvent) {
356
+ WindowEvent["OPENED"] = "OPENED";
357
+ WindowEvent["CLOSED"] = "CLOSED";
358
+ WindowEvent["CONTENT_READY"] = "CONTENT_READY";
359
+ WindowEvent["MOVED"] = "EVENT_MOVED";
360
+ WindowEvent["RESIZED"] = "RESIZED";
361
+ WindowEvent["DISABLED_CHANGED"] = "DISABLED_CHANGED";
362
+ WindowEvent["MINIMIZED_CHANGED"] = "MINIMIZED_CHANGED";
363
+ WindowEvent["EXPAND"] = "EXPAND";
364
+ WindowEvent["SET_ON_TOP"] = "SET_ON_TOP";
365
+ })(WindowEvent || (WindowEvent = {}));
366
+
132
367
  class ViewUtil {
133
368
  static get renderer() {
134
369
  if (_.isNil(ViewUtil._renderer)) {
@@ -148,6 +383,9 @@ class ViewUtil {
148
383
  static set document(value) {
149
384
  ViewUtil._document = value;
150
385
  }
386
+ static get window() {
387
+ return this.document.defaultView;
388
+ }
151
389
  // --------------------------------------------------------------------------
152
390
  //
153
391
  // Private Methods
@@ -203,7 +441,7 @@ class ViewUtil {
203
441
  }
204
442
  }
205
443
  else {
206
- let selection = window.getSelection();
444
+ let selection = ViewUtil.window.getSelection();
207
445
  selection.removeAllRanges();
208
446
  let range = ViewUtil.document.createRange();
209
447
  if (!_.isNil(container)) {
@@ -267,10 +505,10 @@ class ViewUtil {
267
505
  //
268
506
  // --------------------------------------------------------------------------
269
507
  static getStageWidth() {
270
- return window.innerWidth || ViewUtil.document.body.clientWidth;
508
+ return ViewUtil.window.innerWidth || ViewUtil.document.body.clientWidth;
271
509
  }
272
510
  static getStageHeight() {
273
- return window.innerHeight || ViewUtil.document.body.clientHeight;
511
+ return ViewUtil.window.innerHeight || ViewUtil.document.body.clientHeight;
274
512
  }
275
513
  static getWidth(container) {
276
514
  container = ViewUtil.parseElement(container);
@@ -676,242 +914,6 @@ class ViewUtil {
676
914
  ViewUtil._renderer = null;
677
915
  ViewUtil._document = null;
678
916
 
679
- class ApplicationComponent extends ApplicationBaseComponent {
680
- // --------------------------------------------------------------------------
681
- //
682
- // Private Methods
683
- //
684
- // --------------------------------------------------------------------------
685
- initialize() {
686
- ViewUtil.renderer = this.renderer;
687
- this.initializeAssets();
688
- this.initializeTheme();
689
- this.initializeLanguage();
690
- }
691
- initializeAssets() {
692
- Assets.provider = new AssetUrlProvider(this.settings.assetsUrl);
693
- }
694
- initializeTheme() {
695
- this.theme.initialize(this.settings.themes);
696
- }
697
- initializeLanguage() {
698
- this.language.initialize(`${this.settings.assetsUrl}language/`, this.settings.languages);
699
- this.language.events.pipe(takeUntil(this.destroyed)).subscribe(data => {
700
- switch (data.type) {
701
- case LoadableEvent.COMPLETE:
702
- this.languageLoadingComplete(data.data);
703
- break;
704
- case LoadableEvent.ERROR:
705
- this.languageLoadingError(data.data, data.error);
706
- break;
707
- }
708
- });
709
- }
710
- isReady() {
711
- return super.isReady() && this.isLanguageLoaded;
712
- }
713
- // --------------------------------------------------------------------------
714
- //
715
- // Event Handlers
716
- //
717
- // --------------------------------------------------------------------------
718
- languageLoadingComplete(item) {
719
- this.isLanguageLoaded = true;
720
- this.setLocale(item);
721
- this.checkReady();
722
- }
723
- viewReadyHandler() {
724
- this.initialize();
725
- }
726
- setLocale(item) {
727
- moment.locale(item.locale);
728
- numeral.locale(item.locale);
729
- }
730
- }
731
-
732
- class MessageBaseComponent extends DestroyableContainer {
733
- // --------------------------------------------------------------------------
734
- //
735
- // Constructor
736
- //
737
- // --------------------------------------------------------------------------
738
- constructor(route, language) {
739
- super();
740
- this.route = route;
741
- this.language = language;
742
- this.refreshText = 'Refresh';
743
- // this.login.isAutoLogin = true
744
- this.text = this.getText();
745
- if (this.language.isLoaded) {
746
- this.commitLanguageProperties();
747
- }
748
- language.completed.pipe(takeUntil(this.destroyed)).subscribe(() => this.commitLanguageProperties());
749
- }
750
- // --------------------------------------------------------------------------
751
- //
752
- // Private Methods
753
- //
754
- // --------------------------------------------------------------------------
755
- commitLanguageProperties() {
756
- if (this.language.isHasTranslation('general.refresh')) {
757
- this.refreshText = this.language.translate('general.refresh');
758
- }
759
- }
760
- getText() {
761
- let value = this.getValue(this.route.snapshot.queryParams);
762
- if (_.isNil(value)) {
763
- value = this.getValue(this.route.snapshot.params);
764
- }
765
- return value;
766
- }
767
- getValue(data) {
768
- for (let item of this.getMessageFields()) {
769
- let value = data[item];
770
- if (!_.isEmpty(value)) {
771
- return value;
772
- }
773
- }
774
- return null;
775
- }
776
- getMessageFields() {
777
- return ['text', 'message', 'error'];
778
- }
779
- }
780
-
781
- var QuestionMode;
782
- (function (QuestionMode) {
783
- QuestionMode["INFO"] = "INFO";
784
- QuestionMode["QUESTION"] = "QUESTION";
785
- })(QuestionMode || (QuestionMode = {}));
786
- var QuestionEvent;
787
- (function (QuestionEvent) {
788
- QuestionEvent["YES"] = "YES";
789
- QuestionEvent["NOT"] = "NOT";
790
- QuestionEvent["CLOSE"] = "CLOSE";
791
- QuestionEvent["CHECK"] = "CHECK";
792
- QuestionEvent["UNCHECK"] = "UNCHECK";
793
- })(QuestionEvent || (QuestionEvent = {}));
794
-
795
- class QuestionManager extends Destroyable {
796
- // --------------------------------------------------------------------------
797
- //
798
- // Constructor
799
- //
800
- // --------------------------------------------------------------------------
801
- constructor(options) {
802
- super();
803
- this._isChecked = false;
804
- this._closePromise = PromiseHandler.create();
805
- this._yesNotPromise = PromiseHandler.create();
806
- this.yesText = 'Yes';
807
- this.notText = 'Not';
808
- this.closeText = 'Close';
809
- this.checkText = 'Check';
810
- this.options = _.assign({
811
- mode: QuestionMode.INFO,
812
- isChecked: false,
813
- yesTextId: 'general.yes',
814
- notTextId: 'general.not',
815
- closeTextId: 'general.close'
816
- }, options);
817
- this.text = this.options.text;
818
- this.mode = this.options.mode;
819
- }
820
- // --------------------------------------------------------------------------
821
- //
822
- // Event Handlers
823
- //
824
- // --------------------------------------------------------------------------
825
- closeClickHandler() {
826
- this._closePromise.resolve();
827
- }
828
- yesClickHandler() {
829
- this._yesNotPromise.resolve();
830
- this.closeClickHandler();
831
- }
832
- notClickHandler() {
833
- this._yesNotPromise.reject();
834
- this.closeClickHandler();
835
- }
836
- // --------------------------------------------------------------------------
837
- //
838
- // Public Methods
839
- //
840
- // --------------------------------------------------------------------------
841
- destroy() {
842
- if (this.isDestroyed) {
843
- return;
844
- }
845
- super.destroy();
846
- this.notClickHandler();
847
- this._yesNotPromise = null;
848
- this._closePromise = null;
849
- }
850
- // --------------------------------------------------------------------------
851
- //
852
- // Interface Properties
853
- //
854
- // --------------------------------------------------------------------------
855
- get yesNotPromise() {
856
- return this._yesNotPromise.promise;
857
- }
858
- get closePromise() {
859
- return this._closePromise.promise;
860
- }
861
- // --------------------------------------------------------------------------
862
- //
863
- // Public Properties
864
- //
865
- // --------------------------------------------------------------------------
866
- get isInfo() {
867
- return this.mode === QuestionMode.INFO;
868
- }
869
- get isQuestion() {
870
- return this.mode === QuestionMode.QUESTION;
871
- }
872
- get isChecked() {
873
- return this._isChecked;
874
- }
875
- set isChecked(value) {
876
- if (value === this._isChecked) {
877
- return;
878
- }
879
- this._isChecked = value;
880
- // this.content.emit(value ? QuestionEvent.CHECK : QuestionEvent.UNCHECK);
881
- }
882
- }
883
-
884
- class IWindow extends Destroyable {
885
- constructor() {
886
- // --------------------------------------------------------------------------
887
- //
888
- // Public Methods
889
- //
890
- // --------------------------------------------------------------------------
891
- super(...arguments);
892
- // --------------------------------------------------------------------------
893
- //
894
- // Public Properties
895
- //
896
- // --------------------------------------------------------------------------
897
- this.isOnTop = false;
898
- this.isDisabled = false;
899
- this.isMinimized = false;
900
- }
901
- }
902
- var WindowEvent;
903
- (function (WindowEvent) {
904
- WindowEvent["OPENED"] = "OPENED";
905
- WindowEvent["CLOSED"] = "CLOSED";
906
- WindowEvent["CONTENT_READY"] = "CONTENT_READY";
907
- WindowEvent["MOVED"] = "EVENT_MOVED";
908
- WindowEvent["RESIZED"] = "RESIZED";
909
- WindowEvent["DISABLED_CHANGED"] = "DISABLED_CHANGED";
910
- WindowEvent["MINIMIZED_CHANGED"] = "MINIMIZED_CHANGED";
911
- WindowEvent["EXPAND"] = "EXPAND";
912
- WindowEvent["SET_ON_TOP"] = "SET_ON_TOP";
913
- })(WindowEvent || (WindowEvent = {}));
914
-
915
917
  class WindowConfig extends MatDialogConfig {
916
918
  // --------------------------------------------------------------------------
917
919
  //
@@ -7062,6 +7064,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
7062
7064
  }]
7063
7065
  }] });
7064
7066
 
7067
+ class IsServerDirective {
7068
+ // --------------------------------------------------------------------------
7069
+ //
7070
+ // Constructor
7071
+ //
7072
+ // --------------------------------------------------------------------------
7073
+ constructor(platform, templateRef, viewContainer) {
7074
+ if (platform.isPlatformServer) {
7075
+ viewContainer.createEmbeddedView(templateRef);
7076
+ }
7077
+ }
7078
+ }
7079
+ IsServerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: IsServerDirective, deps: [{ token: PlatformService }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
7080
+ IsServerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: IsServerDirective, selector: "[viIsServer]", ngImport: i0 });
7081
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: IsServerDirective, decorators: [{
7082
+ type: Directive,
7083
+ args: [{
7084
+ selector: '[viIsServer]'
7085
+ }]
7086
+ }], ctorParameters: function () { return [{ type: PlatformService }, { type: i0.TemplateRef }, { type: i0.ViewContainerRef }]; } });
7087
+
7088
+ class IsBrowserDirective {
7089
+ // --------------------------------------------------------------------------
7090
+ //
7091
+ // Constructor
7092
+ //
7093
+ // --------------------------------------------------------------------------
7094
+ constructor(platform, templateRef, viewContainer) {
7095
+ if (platform.isPlatformBrowser) {
7096
+ viewContainer.createEmbeddedView(templateRef);
7097
+ }
7098
+ }
7099
+ }
7100
+ IsBrowserDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: IsBrowserDirective, deps: [{ token: PlatformService }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
7101
+ IsBrowserDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: IsBrowserDirective, selector: "[viIsBrowser]", ngImport: i0 });
7102
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: IsBrowserDirective, decorators: [{
7103
+ type: Directive,
7104
+ args: [{
7105
+ selector: '[viIsBrowser]'
7106
+ }]
7107
+ }], ctorParameters: function () { return [{ type: PlatformService }, { type: i0.TemplateRef }, { type: i0.ViewContainerRef }]; } });
7108
+
7065
7109
  class MenuTriggerForDirective extends MatMenuTrigger {
7066
7110
  //--------------------------------------------------------------------------
7067
7111
  //
@@ -7120,6 +7164,8 @@ const DECLARATIONS$1 = [
7120
7164
  CamelCasePipe,
7121
7165
  StartCasePipe,
7122
7166
  NgModelErrorPipe,
7167
+ IsServerDirective,
7168
+ IsBrowserDirective,
7123
7169
  MomentDatePipe,
7124
7170
  MomentTimePipe,
7125
7171
  MomentDateFromNowPipe,
@@ -7179,6 +7225,8 @@ VICommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
7179
7225
  CamelCasePipe,
7180
7226
  StartCasePipe,
7181
7227
  NgModelErrorPipe,
7228
+ IsServerDirective,
7229
+ IsBrowserDirective,
7182
7230
  MomentDatePipe,
7183
7231
  MomentTimePipe,
7184
7232
  MomentDateFromNowPipe,
@@ -7203,6 +7251,8 @@ VICommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
7203
7251
  CamelCasePipe,
7204
7252
  StartCasePipe,
7205
7253
  NgModelErrorPipe,
7254
+ IsServerDirective,
7255
+ IsBrowserDirective,
7206
7256
  MomentDatePipe,
7207
7257
  MomentTimePipe,
7208
7258
  MomentDateFromNowPipe,
@@ -7232,7 +7282,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
7232
7282
  class IVICommonOptions extends ICookieOptions {
7233
7283
  }
7234
7284
  function initializerFactory(nativeWindow, rendererFactory2) {
7235
- console.log('initializerFactory called');
7236
7285
  ViewUtil.renderer = rendererFactory2.createRenderer(null, null);
7237
7286
  ViewUtil.document = nativeWindow.document;
7238
7287
  return () => Promise.resolve();
@@ -10162,5 +10211,5 @@ class TransportLazyModule {
10162
10211
  * Generated bundle index. Do not edit.
10163
10212
  */
10164
10213
 
10165
- export { APPLICATION_INJECTOR, ApplicationBaseComponent, ApplicationComponent, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BootstrapBreakpoint, BootstrapBreakpointService, BootstrapBreakpointServiceEvent, BottomSheetBaseComponent, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateGuard, CdkTableBaseComponent, CdkTableCellClassNamePipe, CdkTableCellStyleNamePipe, CdkTableCellValuePipe, CdkTableCellValuePipePure, CdkTableColumnClassNamePipe, CdkTableColumnStyleNamePipe, CdkTableDataSource, CdkTableFilterableComponent, CdkTableFilterableMapCollection, CdkTablePaginableBookmarkComponent, CdkTablePaginableBookmarkMapCollection, CdkTablePaginableComponent, CdkTablePaginableMapCollection, CdkTableRowClassNamePipe, CdkTableRowStyleNamePipe, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, Direction, FinancePipe, FocusDirective, FocusManager, FormElementAsync, FormElementSync, HTMLContentTitleDirective, HTMLTitleDirective, INotification, INotificationContent, IUser, IVICommonOptions, IWindow, IWindowContent, InfiniteScrollDirective, LANGUAGE_OPTIONS, LanguageDirective, LanguageHasDirective, LanguageMatPaginatorIntl, LanguageModule, LanguageMomentDateAdapter, LanguagePipe, LanguagePipeHas, LanguagePipeHasPure, LanguagePipePure, LanguageRequireResolver, LanguageResolver, LanguageSelectorComponent, LazyModuleLoader, ListItem, ListItems, LoginBaseService, LoginBaseServiceEvent, LoginGuard, LoginIfCanGuard, LoginNotGuard, LoginRequireResolver, LoginResolver, MenuItem, MenuItemBase, MenuItems, MenuListComponent, MenuTriggerForDirective, MessageBaseComponent, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationBaseComponent, NotificationComponent, NotificationConfig, NotificationEvent, NotificationFactory, NotificationModule, NotificationService, NotificationServiceEvent, PipeBaseService, PlatformService, PrettifyPipe, PropertiesManager, QuestionEvent, QuestionManager, QuestionMode, ResizeDirective, ResizeManager, RouterBaseService, SanitizePipe, ScrollCheckDirective, ScrollDirective, SelectListComponent, SelectListItem, SelectListItems, SelectOnFocusDirective, ShellBaseComponent, StartCasePipe, THEME_OPTIONS, TabGroupComponent, ThemeAssetBackgroundDirective, ThemeAssetDirective, ThemeAssetImageDirective, ThemeModule, ThemeStyleDirective, ThemeStyleHoverDirective, ThemeToggleDirective, TimePipe, TransportLazy, TransportLazyModule, TransportLazyModuleLoadedEvent, TruncatePipe, UserBaseService, UserBaseServiceEvent, VICommonModule, VIComponentModule, VI_ANGULAR_OPTIONS, ViewUtil, WINDOW_CONTENT_CONTAINER, WindowAlign, WindowBase, WindowBaseComponent, WindowCloseElementComponent, WindowClosedError, WindowConfig, WindowDragAreaDirective, WindowElement, WindowEvent, WindowExpandElementComponent, WindowFactory, WindowImpl, WindowMinimizeElementComponent, WindowModule, WindowQuestionBaseComponent, WindowQuestionComponent, WindowResizeElementComponent, WindowService, WindowServiceEvent, cookieServiceFactory, initializerFactory, languageServiceFactory, loggerServiceFactory, nativeWindowServiceFactory, notificationServiceFactory, themeAssetServiceFactory, themeServiceFactory };
10214
+ export { APPLICATION_INJECTOR, ApplicationBaseComponent, ApplicationComponent, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BootstrapBreakpoint, BootstrapBreakpointService, BootstrapBreakpointServiceEvent, BottomSheetBaseComponent, BottomSheetModule, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateGuard, CdkTableBaseComponent, CdkTableCellClassNamePipe, CdkTableCellStyleNamePipe, CdkTableCellValuePipe, CdkTableCellValuePipePure, CdkTableColumnClassNamePipe, CdkTableColumnStyleNamePipe, CdkTableDataSource, CdkTableFilterableComponent, CdkTableFilterableMapCollection, CdkTablePaginableBookmarkComponent, CdkTablePaginableBookmarkMapCollection, CdkTablePaginableComponent, CdkTablePaginableMapCollection, CdkTableRowClassNamePipe, CdkTableRowStyleNamePipe, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, Direction, FinancePipe, FocusDirective, FocusManager, FormElementAsync, FormElementSync, HTMLContentTitleDirective, HTMLTitleDirective, INotification, INotificationContent, IUser, IVICommonOptions, IWindow, IWindowContent, InfiniteScrollDirective, IsBrowserDirective, IsServerDirective, LANGUAGE_OPTIONS, LanguageDirective, LanguageHasDirective, LanguageMatPaginatorIntl, LanguageModule, LanguageMomentDateAdapter, LanguagePipe, LanguagePipeHas, LanguagePipeHasPure, LanguagePipePure, LanguageRequireResolver, LanguageResolver, LanguageSelectorComponent, LazyModuleLoader, ListItem, ListItems, LoginBaseService, LoginBaseServiceEvent, LoginGuard, LoginIfCanGuard, LoginNotGuard, LoginRequireResolver, LoginResolver, MenuItem, MenuItemBase, MenuItems, MenuListComponent, MenuTriggerForDirective, MessageBaseComponent, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationBaseComponent, NotificationComponent, NotificationConfig, NotificationEvent, NotificationFactory, NotificationModule, NotificationService, NotificationServiceEvent, PipeBaseService, PlatformService, PrettifyPipe, PropertiesManager, QuestionEvent, QuestionManager, QuestionMode, ResizeDirective, ResizeManager, RouterBaseService, SanitizePipe, ScrollCheckDirective, ScrollDirective, SelectListComponent, SelectListItem, SelectListItems, SelectOnFocusDirective, ShellBaseComponent, StartCasePipe, THEME_OPTIONS, TabGroupComponent, ThemeAssetBackgroundDirective, ThemeAssetDirective, ThemeAssetImageDirective, ThemeModule, ThemeStyleDirective, ThemeStyleHoverDirective, ThemeToggleDirective, TimePipe, TransportLazy, TransportLazyModule, TransportLazyModuleLoadedEvent, TruncatePipe, UserBaseService, UserBaseServiceEvent, VICommonModule, VIComponentModule, VI_ANGULAR_OPTIONS, ViewUtil, WINDOW_CONTENT_CONTAINER, WindowAlign, WindowBase, WindowBaseComponent, WindowCloseElementComponent, WindowClosedError, WindowConfig, WindowDragAreaDirective, WindowElement, WindowEvent, WindowExpandElementComponent, WindowFactory, WindowImpl, WindowMinimizeElementComponent, WindowModule, WindowQuestionBaseComponent, WindowQuestionComponent, WindowResizeElementComponent, WindowService, WindowServiceEvent, cookieServiceFactory, initializerFactory, languageServiceFactory, loggerServiceFactory, nativeWindowServiceFactory, notificationServiceFactory, themeAssetServiceFactory, themeServiceFactory };
10166
10215
  //# sourceMappingURL=ts-core-angular.mjs.map