@ts-core/angular 13.1.18 → 13.1.21

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
- import { Component, ViewContainerRef, InjectionToken, Injectable, Directive, Input, Pipe, NgModule, PLATFORM_ID, Inject, EventEmitter, Output, HostListener, Optional, RendererStyleFlags2, 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';
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, 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)) {
@@ -143,15 +378,9 @@ class ViewUtil {
143
378
  ViewUtil._renderer = value;
144
379
  }
145
380
  static get document() {
146
- if (_.isNil(ViewUtil._document)) {
147
- throw new ExtendedError(`ViewUtil is not initialized: document in nil`);
148
- }
149
- return ViewUtil._document;
381
+ return !_.isNil(ViewUtil._document) ? ViewUtil._document : document;
150
382
  }
151
383
  static set document(value) {
152
- if (value === ViewUtil._document) {
153
- return;
154
- }
155
384
  ViewUtil._document = value;
156
385
  }
157
386
  // --------------------------------------------------------------------------
@@ -680,244 +909,7 @@ class ViewUtil {
680
909
  //
681
910
  // --------------------------------------------------------------------------
682
911
  ViewUtil._renderer = null;
683
- ViewUtil._document = document;
684
- const VIEW_UTIL = new InjectionToken('VIEW_UTIL');
685
-
686
- class ApplicationComponent extends ApplicationBaseComponent {
687
- // --------------------------------------------------------------------------
688
- //
689
- // Private Methods
690
- //
691
- // --------------------------------------------------------------------------
692
- initialize() {
693
- ViewUtil.renderer = this.renderer;
694
- this.initializeAssets();
695
- this.initializeTheme();
696
- this.initializeLanguage();
697
- }
698
- initializeAssets() {
699
- Assets.provider = new AssetUrlProvider(this.settings.assetsUrl);
700
- }
701
- initializeTheme() {
702
- this.theme.initialize(this.settings.themes);
703
- }
704
- initializeLanguage() {
705
- this.language.initialize(`${this.settings.assetsUrl}language/`, this.settings.languages);
706
- this.language.events.pipe(takeUntil(this.destroyed)).subscribe(data => {
707
- switch (data.type) {
708
- case LoadableEvent.COMPLETE:
709
- this.languageLoadingComplete(data.data);
710
- break;
711
- case LoadableEvent.ERROR:
712
- this.languageLoadingError(data.data, data.error);
713
- break;
714
- }
715
- });
716
- }
717
- isReady() {
718
- return super.isReady() && this.isLanguageLoaded;
719
- }
720
- // --------------------------------------------------------------------------
721
- //
722
- // Event Handlers
723
- //
724
- // --------------------------------------------------------------------------
725
- languageLoadingComplete(item) {
726
- this.isLanguageLoaded = true;
727
- this.setLocale(item);
728
- this.checkReady();
729
- }
730
- viewReadyHandler() {
731
- this.initialize();
732
- }
733
- setLocale(item) {
734
- moment.locale(item.locale);
735
- numeral.locale(item.locale);
736
- }
737
- }
738
-
739
- class MessageBaseComponent extends DestroyableContainer {
740
- // --------------------------------------------------------------------------
741
- //
742
- // Constructor
743
- //
744
- // --------------------------------------------------------------------------
745
- constructor(route, language) {
746
- super();
747
- this.route = route;
748
- this.language = language;
749
- this.refreshText = 'Refresh';
750
- // this.login.isAutoLogin = true
751
- this.text = this.getText();
752
- if (this.language.isLoaded) {
753
- this.commitLanguageProperties();
754
- }
755
- language.completed.pipe(takeUntil(this.destroyed)).subscribe(() => this.commitLanguageProperties());
756
- }
757
- // --------------------------------------------------------------------------
758
- //
759
- // Private Methods
760
- //
761
- // --------------------------------------------------------------------------
762
- commitLanguageProperties() {
763
- if (this.language.isHasTranslation('general.refresh')) {
764
- this.refreshText = this.language.translate('general.refresh');
765
- }
766
- }
767
- getText() {
768
- let value = this.getValue(this.route.snapshot.queryParams);
769
- if (_.isNil(value)) {
770
- value = this.getValue(this.route.snapshot.params);
771
- }
772
- return value;
773
- }
774
- getValue(data) {
775
- for (let item of this.getMessageFields()) {
776
- let value = data[item];
777
- if (!_.isEmpty(value)) {
778
- return value;
779
- }
780
- }
781
- return null;
782
- }
783
- getMessageFields() {
784
- return ['text', 'message', 'error'];
785
- }
786
- }
787
-
788
- var QuestionMode;
789
- (function (QuestionMode) {
790
- QuestionMode["INFO"] = "INFO";
791
- QuestionMode["QUESTION"] = "QUESTION";
792
- })(QuestionMode || (QuestionMode = {}));
793
- var QuestionEvent;
794
- (function (QuestionEvent) {
795
- QuestionEvent["YES"] = "YES";
796
- QuestionEvent["NOT"] = "NOT";
797
- QuestionEvent["CLOSE"] = "CLOSE";
798
- QuestionEvent["CHECK"] = "CHECK";
799
- QuestionEvent["UNCHECK"] = "UNCHECK";
800
- })(QuestionEvent || (QuestionEvent = {}));
801
-
802
- class QuestionManager extends Destroyable {
803
- // --------------------------------------------------------------------------
804
- //
805
- // Constructor
806
- //
807
- // --------------------------------------------------------------------------
808
- constructor(options) {
809
- super();
810
- this._isChecked = false;
811
- this._closePromise = PromiseHandler.create();
812
- this._yesNotPromise = PromiseHandler.create();
813
- this.yesText = 'Yes';
814
- this.notText = 'Not';
815
- this.closeText = 'Close';
816
- this.checkText = 'Check';
817
- this.options = _.assign({
818
- mode: QuestionMode.INFO,
819
- isChecked: false,
820
- yesTextId: 'general.yes',
821
- notTextId: 'general.not',
822
- closeTextId: 'general.close'
823
- }, options);
824
- this.text = this.options.text;
825
- this.mode = this.options.mode;
826
- }
827
- // --------------------------------------------------------------------------
828
- //
829
- // Event Handlers
830
- //
831
- // --------------------------------------------------------------------------
832
- closeClickHandler() {
833
- this._closePromise.resolve();
834
- }
835
- yesClickHandler() {
836
- this._yesNotPromise.resolve();
837
- this.closeClickHandler();
838
- }
839
- notClickHandler() {
840
- this._yesNotPromise.reject();
841
- this.closeClickHandler();
842
- }
843
- // --------------------------------------------------------------------------
844
- //
845
- // Public Methods
846
- //
847
- // --------------------------------------------------------------------------
848
- destroy() {
849
- if (this.isDestroyed) {
850
- return;
851
- }
852
- super.destroy();
853
- this.notClickHandler();
854
- this._yesNotPromise = null;
855
- this._closePromise = null;
856
- }
857
- // --------------------------------------------------------------------------
858
- //
859
- // Interface Properties
860
- //
861
- // --------------------------------------------------------------------------
862
- get yesNotPromise() {
863
- return this._yesNotPromise.promise;
864
- }
865
- get closePromise() {
866
- return this._closePromise.promise;
867
- }
868
- // --------------------------------------------------------------------------
869
- //
870
- // Public Properties
871
- //
872
- // --------------------------------------------------------------------------
873
- get isInfo() {
874
- return this.mode === QuestionMode.INFO;
875
- }
876
- get isQuestion() {
877
- return this.mode === QuestionMode.QUESTION;
878
- }
879
- get isChecked() {
880
- return this._isChecked;
881
- }
882
- set isChecked(value) {
883
- if (value === this._isChecked) {
884
- return;
885
- }
886
- this._isChecked = value;
887
- // this.content.emit(value ? QuestionEvent.CHECK : QuestionEvent.UNCHECK);
888
- }
889
- }
890
-
891
- class IWindow extends Destroyable {
892
- constructor() {
893
- // --------------------------------------------------------------------------
894
- //
895
- // Public Methods
896
- //
897
- // --------------------------------------------------------------------------
898
- super(...arguments);
899
- // --------------------------------------------------------------------------
900
- //
901
- // Public Properties
902
- //
903
- // --------------------------------------------------------------------------
904
- this.isOnTop = false;
905
- this.isDisabled = false;
906
- this.isMinimized = false;
907
- }
908
- }
909
- var WindowEvent;
910
- (function (WindowEvent) {
911
- WindowEvent["OPENED"] = "OPENED";
912
- WindowEvent["CLOSED"] = "CLOSED";
913
- WindowEvent["CONTENT_READY"] = "CONTENT_READY";
914
- WindowEvent["MOVED"] = "EVENT_MOVED";
915
- WindowEvent["RESIZED"] = "RESIZED";
916
- WindowEvent["DISABLED_CHANGED"] = "DISABLED_CHANGED";
917
- WindowEvent["MINIMIZED_CHANGED"] = "MINIMIZED_CHANGED";
918
- WindowEvent["EXPAND"] = "EXPAND";
919
- WindowEvent["SET_ON_TOP"] = "SET_ON_TOP";
920
- })(WindowEvent || (WindowEvent = {}));
912
+ ViewUtil._document = null;
921
913
 
922
914
  class WindowConfig extends MatDialogConfig {
923
915
  // --------------------------------------------------------------------------
@@ -7155,10 +7147,15 @@ class VICommonModule {
7155
7147
  return {
7156
7148
  ngModule: VICommonModule,
7157
7149
  providers: [
7150
+ {
7151
+ provide: APP_INITIALIZER,
7152
+ deps: [NativeWindowService, RendererFactory2],
7153
+ useFactory: initializerFactory,
7154
+ multi: true
7155
+ },
7158
7156
  LoadingService,
7159
7157
  PlatformService,
7160
7158
  CanDeactivateGuard,
7161
- { provide: VIEW_UTIL, useFactory: viewUtilFactory },
7162
7159
  { provide: VI_ANGULAR_OPTIONS, useValue: options || {} },
7163
7160
  { provide: Logger, deps: [VI_ANGULAR_OPTIONS], useFactory: loggerServiceFactory },
7164
7161
  { provide: NativeWindowService, deps: [DOCUMENT], useFactory: nativeWindowServiceFactory },
@@ -7233,10 +7230,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
7233
7230
  }] });
7234
7231
  class IVICommonOptions extends ICookieOptions {
7235
7232
  }
7236
- function viewUtilFactory(nativeWindow, renderer) {
7237
- ViewUtil.renderer = renderer;
7233
+ function initializerFactory(nativeWindow, rendererFactory2) {
7234
+ ViewUtil.renderer = rendererFactory2.createRenderer(null, null);
7238
7235
  ViewUtil.document = nativeWindow.document;
7239
- return ViewUtil;
7236
+ return () => Promise.resolve();
7240
7237
  }
7241
7238
  function loggerServiceFactory(options) {
7242
7239
  return new DefaultLogger(!_.isNil(options.loggerLevel) ? options.loggerLevel : LoggerLevel.LOG);
@@ -10163,5 +10160,5 @@ class TransportLazyModule {
10163
10160
  * Generated bundle index. Do not edit.
10164
10161
  */
10165
10162
 
10166
- 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, VIEW_UTIL, 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, languageServiceFactory, loggerServiceFactory, nativeWindowServiceFactory, notificationServiceFactory, themeAssetServiceFactory, themeServiceFactory, viewUtilFactory };
10163
+ 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 };
10167
10164
  //# sourceMappingURL=ts-core-angular.mjs.map