@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';
@@ -128,6 +128,241 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
128
128
  args: [{ template: '' }]
129
129
  }], ctorParameters: function () { return []; } });
130
130
 
131
+ class ApplicationComponent extends ApplicationBaseComponent {
132
+ // --------------------------------------------------------------------------
133
+ //
134
+ // Private Methods
135
+ //
136
+ // --------------------------------------------------------------------------
137
+ initialize() {
138
+ this.initializeAssets();
139
+ this.initializeTheme();
140
+ this.initializeLanguage();
141
+ }
142
+ initializeAssets() {
143
+ Assets.provider = new AssetUrlProvider(this.settings.assetsUrl);
144
+ }
145
+ initializeTheme() {
146
+ this.theme.initialize(this.settings.themes);
147
+ }
148
+ initializeLanguage() {
149
+ this.language.initialize(`${this.settings.assetsUrl}language/`, this.settings.languages);
150
+ this.language.events.pipe(takeUntil(this.destroyed)).subscribe(data => {
151
+ switch (data.type) {
152
+ case LoadableEvent.COMPLETE:
153
+ this.languageLoadingComplete(data.data);
154
+ break;
155
+ case LoadableEvent.ERROR:
156
+ this.languageLoadingError(data.data, data.error);
157
+ break;
158
+ }
159
+ });
160
+ }
161
+ isReady() {
162
+ return super.isReady() && this.isLanguageLoaded;
163
+ }
164
+ // --------------------------------------------------------------------------
165
+ //
166
+ // Event Handlers
167
+ //
168
+ // --------------------------------------------------------------------------
169
+ languageLoadingComplete(item) {
170
+ this.isLanguageLoaded = true;
171
+ this.setLocale(item);
172
+ this.checkReady();
173
+ }
174
+ viewReadyHandler() {
175
+ this.initialize();
176
+ }
177
+ setLocale(item) {
178
+ moment.locale(item.locale);
179
+ numeral.locale(item.locale);
180
+ }
181
+ }
182
+
183
+ class MessageBaseComponent extends DestroyableContainer {
184
+ // --------------------------------------------------------------------------
185
+ //
186
+ // Constructor
187
+ //
188
+ // --------------------------------------------------------------------------
189
+ constructor(route, language) {
190
+ super();
191
+ this.route = route;
192
+ this.language = language;
193
+ this.refreshText = 'Refresh';
194
+ // this.login.isAutoLogin = true
195
+ this.text = this.getText();
196
+ if (this.language.isLoaded) {
197
+ this.commitLanguageProperties();
198
+ }
199
+ language.completed.pipe(takeUntil(this.destroyed)).subscribe(() => this.commitLanguageProperties());
200
+ }
201
+ // --------------------------------------------------------------------------
202
+ //
203
+ // Private Methods
204
+ //
205
+ // --------------------------------------------------------------------------
206
+ commitLanguageProperties() {
207
+ if (this.language.isHasTranslation('general.refresh')) {
208
+ this.refreshText = this.language.translate('general.refresh');
209
+ }
210
+ }
211
+ getText() {
212
+ let value = this.getValue(this.route.snapshot.queryParams);
213
+ if (_.isNil(value)) {
214
+ value = this.getValue(this.route.snapshot.params);
215
+ }
216
+ return value;
217
+ }
218
+ getValue(data) {
219
+ for (let item of this.getMessageFields()) {
220
+ let value = data[item];
221
+ if (!_.isEmpty(value)) {
222
+ return value;
223
+ }
224
+ }
225
+ return null;
226
+ }
227
+ getMessageFields() {
228
+ return ['text', 'message', 'error'];
229
+ }
230
+ }
231
+
232
+ var QuestionMode;
233
+ (function (QuestionMode) {
234
+ QuestionMode["INFO"] = "INFO";
235
+ QuestionMode["QUESTION"] = "QUESTION";
236
+ })(QuestionMode || (QuestionMode = {}));
237
+ var QuestionEvent;
238
+ (function (QuestionEvent) {
239
+ QuestionEvent["YES"] = "YES";
240
+ QuestionEvent["NOT"] = "NOT";
241
+ QuestionEvent["CLOSE"] = "CLOSE";
242
+ QuestionEvent["CHECK"] = "CHECK";
243
+ QuestionEvent["UNCHECK"] = "UNCHECK";
244
+ })(QuestionEvent || (QuestionEvent = {}));
245
+
246
+ class QuestionManager extends Destroyable {
247
+ // --------------------------------------------------------------------------
248
+ //
249
+ // Constructor
250
+ //
251
+ // --------------------------------------------------------------------------
252
+ constructor(options) {
253
+ super();
254
+ this._isChecked = false;
255
+ this._closePromise = PromiseHandler.create();
256
+ this._yesNotPromise = PromiseHandler.create();
257
+ this.yesText = 'Yes';
258
+ this.notText = 'Not';
259
+ this.closeText = 'Close';
260
+ this.checkText = 'Check';
261
+ this.options = _.assign({
262
+ mode: QuestionMode.INFO,
263
+ isChecked: false,
264
+ yesTextId: 'general.yes',
265
+ notTextId: 'general.not',
266
+ closeTextId: 'general.close'
267
+ }, options);
268
+ this.text = this.options.text;
269
+ this.mode = this.options.mode;
270
+ }
271
+ // --------------------------------------------------------------------------
272
+ //
273
+ // Event Handlers
274
+ //
275
+ // --------------------------------------------------------------------------
276
+ closeClickHandler() {
277
+ this._closePromise.resolve();
278
+ }
279
+ yesClickHandler() {
280
+ this._yesNotPromise.resolve();
281
+ this.closeClickHandler();
282
+ }
283
+ notClickHandler() {
284
+ this._yesNotPromise.reject();
285
+ this.closeClickHandler();
286
+ }
287
+ // --------------------------------------------------------------------------
288
+ //
289
+ // Public Methods
290
+ //
291
+ // --------------------------------------------------------------------------
292
+ destroy() {
293
+ if (this.isDestroyed) {
294
+ return;
295
+ }
296
+ super.destroy();
297
+ this.notClickHandler();
298
+ this._yesNotPromise = null;
299
+ this._closePromise = null;
300
+ }
301
+ // --------------------------------------------------------------------------
302
+ //
303
+ // Interface Properties
304
+ //
305
+ // --------------------------------------------------------------------------
306
+ get yesNotPromise() {
307
+ return this._yesNotPromise.promise;
308
+ }
309
+ get closePromise() {
310
+ return this._closePromise.promise;
311
+ }
312
+ // --------------------------------------------------------------------------
313
+ //
314
+ // Public Properties
315
+ //
316
+ // --------------------------------------------------------------------------
317
+ get isInfo() {
318
+ return this.mode === QuestionMode.INFO;
319
+ }
320
+ get isQuestion() {
321
+ return this.mode === QuestionMode.QUESTION;
322
+ }
323
+ get isChecked() {
324
+ return this._isChecked;
325
+ }
326
+ set isChecked(value) {
327
+ if (value === this._isChecked) {
328
+ return;
329
+ }
330
+ this._isChecked = value;
331
+ // this.content.emit(value ? QuestionEvent.CHECK : QuestionEvent.UNCHECK);
332
+ }
333
+ }
334
+
335
+ class IWindow extends Destroyable {
336
+ constructor() {
337
+ // --------------------------------------------------------------------------
338
+ //
339
+ // Public Methods
340
+ //
341
+ // --------------------------------------------------------------------------
342
+ super(...arguments);
343
+ // --------------------------------------------------------------------------
344
+ //
345
+ // Public Properties
346
+ //
347
+ // --------------------------------------------------------------------------
348
+ this.isOnTop = false;
349
+ this.isDisabled = false;
350
+ this.isMinimized = false;
351
+ }
352
+ }
353
+ var WindowEvent;
354
+ (function (WindowEvent) {
355
+ WindowEvent["OPENED"] = "OPENED";
356
+ WindowEvent["CLOSED"] = "CLOSED";
357
+ WindowEvent["CONTENT_READY"] = "CONTENT_READY";
358
+ WindowEvent["MOVED"] = "EVENT_MOVED";
359
+ WindowEvent["RESIZED"] = "RESIZED";
360
+ WindowEvent["DISABLED_CHANGED"] = "DISABLED_CHANGED";
361
+ WindowEvent["MINIMIZED_CHANGED"] = "MINIMIZED_CHANGED";
362
+ WindowEvent["EXPAND"] = "EXPAND";
363
+ WindowEvent["SET_ON_TOP"] = "SET_ON_TOP";
364
+ })(WindowEvent || (WindowEvent = {}));
365
+
131
366
  class ViewUtil {
132
367
  static get renderer() {
133
368
  if (_.isNil(ViewUtil._renderer)) {
@@ -142,15 +377,9 @@ class ViewUtil {
142
377
  ViewUtil._renderer = value;
143
378
  }
144
379
  static get document() {
145
- if (_.isNil(ViewUtil._document)) {
146
- throw new ExtendedError(`ViewUtil is not initialized: document in nil`);
147
- }
148
- return ViewUtil._document;
380
+ return !_.isNil(ViewUtil._document) ? ViewUtil._document : document;
149
381
  }
150
382
  static set document(value) {
151
- if (value === ViewUtil._document) {
152
- return;
153
- }
154
383
  ViewUtil._document = value;
155
384
  }
156
385
  // --------------------------------------------------------------------------
@@ -679,244 +908,7 @@ class ViewUtil {
679
908
  //
680
909
  // --------------------------------------------------------------------------
681
910
  ViewUtil._renderer = null;
682
- ViewUtil._document = document;
683
- const VIEW_UTIL = new InjectionToken('VIEW_UTIL');
684
-
685
- class ApplicationComponent extends ApplicationBaseComponent {
686
- // --------------------------------------------------------------------------
687
- //
688
- // Private Methods
689
- //
690
- // --------------------------------------------------------------------------
691
- initialize() {
692
- ViewUtil.renderer = this.renderer;
693
- this.initializeAssets();
694
- this.initializeTheme();
695
- this.initializeLanguage();
696
- }
697
- initializeAssets() {
698
- Assets.provider = new AssetUrlProvider(this.settings.assetsUrl);
699
- }
700
- initializeTheme() {
701
- this.theme.initialize(this.settings.themes);
702
- }
703
- initializeLanguage() {
704
- this.language.initialize(`${this.settings.assetsUrl}language/`, this.settings.languages);
705
- this.language.events.pipe(takeUntil(this.destroyed)).subscribe(data => {
706
- switch (data.type) {
707
- case LoadableEvent.COMPLETE:
708
- this.languageLoadingComplete(data.data);
709
- break;
710
- case LoadableEvent.ERROR:
711
- this.languageLoadingError(data.data, data.error);
712
- break;
713
- }
714
- });
715
- }
716
- isReady() {
717
- return super.isReady() && this.isLanguageLoaded;
718
- }
719
- // --------------------------------------------------------------------------
720
- //
721
- // Event Handlers
722
- //
723
- // --------------------------------------------------------------------------
724
- languageLoadingComplete(item) {
725
- this.isLanguageLoaded = true;
726
- this.setLocale(item);
727
- this.checkReady();
728
- }
729
- viewReadyHandler() {
730
- this.initialize();
731
- }
732
- setLocale(item) {
733
- moment.locale(item.locale);
734
- numeral.locale(item.locale);
735
- }
736
- }
737
-
738
- class MessageBaseComponent extends DestroyableContainer {
739
- // --------------------------------------------------------------------------
740
- //
741
- // Constructor
742
- //
743
- // --------------------------------------------------------------------------
744
- constructor(route, language) {
745
- super();
746
- this.route = route;
747
- this.language = language;
748
- this.refreshText = 'Refresh';
749
- // this.login.isAutoLogin = true
750
- this.text = this.getText();
751
- if (this.language.isLoaded) {
752
- this.commitLanguageProperties();
753
- }
754
- language.completed.pipe(takeUntil(this.destroyed)).subscribe(() => this.commitLanguageProperties());
755
- }
756
- // --------------------------------------------------------------------------
757
- //
758
- // Private Methods
759
- //
760
- // --------------------------------------------------------------------------
761
- commitLanguageProperties() {
762
- if (this.language.isHasTranslation('general.refresh')) {
763
- this.refreshText = this.language.translate('general.refresh');
764
- }
765
- }
766
- getText() {
767
- let value = this.getValue(this.route.snapshot.queryParams);
768
- if (_.isNil(value)) {
769
- value = this.getValue(this.route.snapshot.params);
770
- }
771
- return value;
772
- }
773
- getValue(data) {
774
- for (let item of this.getMessageFields()) {
775
- let value = data[item];
776
- if (!_.isEmpty(value)) {
777
- return value;
778
- }
779
- }
780
- return null;
781
- }
782
- getMessageFields() {
783
- return ['text', 'message', 'error'];
784
- }
785
- }
786
-
787
- var QuestionMode;
788
- (function (QuestionMode) {
789
- QuestionMode["INFO"] = "INFO";
790
- QuestionMode["QUESTION"] = "QUESTION";
791
- })(QuestionMode || (QuestionMode = {}));
792
- var QuestionEvent;
793
- (function (QuestionEvent) {
794
- QuestionEvent["YES"] = "YES";
795
- QuestionEvent["NOT"] = "NOT";
796
- QuestionEvent["CLOSE"] = "CLOSE";
797
- QuestionEvent["CHECK"] = "CHECK";
798
- QuestionEvent["UNCHECK"] = "UNCHECK";
799
- })(QuestionEvent || (QuestionEvent = {}));
800
-
801
- class QuestionManager extends Destroyable {
802
- // --------------------------------------------------------------------------
803
- //
804
- // Constructor
805
- //
806
- // --------------------------------------------------------------------------
807
- constructor(options) {
808
- super();
809
- this._isChecked = false;
810
- this._closePromise = PromiseHandler.create();
811
- this._yesNotPromise = PromiseHandler.create();
812
- this.yesText = 'Yes';
813
- this.notText = 'Not';
814
- this.closeText = 'Close';
815
- this.checkText = 'Check';
816
- this.options = _.assign({
817
- mode: QuestionMode.INFO,
818
- isChecked: false,
819
- yesTextId: 'general.yes',
820
- notTextId: 'general.not',
821
- closeTextId: 'general.close'
822
- }, options);
823
- this.text = this.options.text;
824
- this.mode = this.options.mode;
825
- }
826
- // --------------------------------------------------------------------------
827
- //
828
- // Event Handlers
829
- //
830
- // --------------------------------------------------------------------------
831
- closeClickHandler() {
832
- this._closePromise.resolve();
833
- }
834
- yesClickHandler() {
835
- this._yesNotPromise.resolve();
836
- this.closeClickHandler();
837
- }
838
- notClickHandler() {
839
- this._yesNotPromise.reject();
840
- this.closeClickHandler();
841
- }
842
- // --------------------------------------------------------------------------
843
- //
844
- // Public Methods
845
- //
846
- // --------------------------------------------------------------------------
847
- destroy() {
848
- if (this.isDestroyed) {
849
- return;
850
- }
851
- super.destroy();
852
- this.notClickHandler();
853
- this._yesNotPromise = null;
854
- this._closePromise = null;
855
- }
856
- // --------------------------------------------------------------------------
857
- //
858
- // Interface Properties
859
- //
860
- // --------------------------------------------------------------------------
861
- get yesNotPromise() {
862
- return this._yesNotPromise.promise;
863
- }
864
- get closePromise() {
865
- return this._closePromise.promise;
866
- }
867
- // --------------------------------------------------------------------------
868
- //
869
- // Public Properties
870
- //
871
- // --------------------------------------------------------------------------
872
- get isInfo() {
873
- return this.mode === QuestionMode.INFO;
874
- }
875
- get isQuestion() {
876
- return this.mode === QuestionMode.QUESTION;
877
- }
878
- get isChecked() {
879
- return this._isChecked;
880
- }
881
- set isChecked(value) {
882
- if (value === this._isChecked) {
883
- return;
884
- }
885
- this._isChecked = value;
886
- // this.content.emit(value ? QuestionEvent.CHECK : QuestionEvent.UNCHECK);
887
- }
888
- }
889
-
890
- class IWindow extends Destroyable {
891
- constructor() {
892
- // --------------------------------------------------------------------------
893
- //
894
- // Public Methods
895
- //
896
- // --------------------------------------------------------------------------
897
- super(...arguments);
898
- // --------------------------------------------------------------------------
899
- //
900
- // Public Properties
901
- //
902
- // --------------------------------------------------------------------------
903
- this.isOnTop = false;
904
- this.isDisabled = false;
905
- this.isMinimized = false;
906
- }
907
- }
908
- var WindowEvent;
909
- (function (WindowEvent) {
910
- WindowEvent["OPENED"] = "OPENED";
911
- WindowEvent["CLOSED"] = "CLOSED";
912
- WindowEvent["CONTENT_READY"] = "CONTENT_READY";
913
- WindowEvent["MOVED"] = "EVENT_MOVED";
914
- WindowEvent["RESIZED"] = "RESIZED";
915
- WindowEvent["DISABLED_CHANGED"] = "DISABLED_CHANGED";
916
- WindowEvent["MINIMIZED_CHANGED"] = "MINIMIZED_CHANGED";
917
- WindowEvent["EXPAND"] = "EXPAND";
918
- WindowEvent["SET_ON_TOP"] = "SET_ON_TOP";
919
- })(WindowEvent || (WindowEvent = {}));
911
+ ViewUtil._document = null;
920
912
 
921
913
  class WindowConfig extends MatDialogConfig {
922
914
  // --------------------------------------------------------------------------
@@ -7150,10 +7142,15 @@ class VICommonModule {
7150
7142
  return {
7151
7143
  ngModule: VICommonModule,
7152
7144
  providers: [
7145
+ {
7146
+ provide: APP_INITIALIZER,
7147
+ deps: [NativeWindowService, RendererFactory2],
7148
+ useFactory: initializerFactory,
7149
+ multi: true
7150
+ },
7153
7151
  LoadingService,
7154
7152
  PlatformService,
7155
7153
  CanDeactivateGuard,
7156
- { provide: VIEW_UTIL, useFactory: viewUtilFactory },
7157
7154
  { provide: VI_ANGULAR_OPTIONS, useValue: options || {} },
7158
7155
  { provide: Logger, deps: [VI_ANGULAR_OPTIONS], useFactory: loggerServiceFactory },
7159
7156
  { provide: NativeWindowService, deps: [DOCUMENT], useFactory: nativeWindowServiceFactory },
@@ -7228,10 +7225,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
7228
7225
  }] });
7229
7226
  class IVICommonOptions extends ICookieOptions {
7230
7227
  }
7231
- function viewUtilFactory(nativeWindow, renderer) {
7232
- ViewUtil.renderer = renderer;
7228
+ function initializerFactory(nativeWindow, rendererFactory2) {
7229
+ ViewUtil.renderer = rendererFactory2.createRenderer(null, null);
7233
7230
  ViewUtil.document = nativeWindow.document;
7234
- return ViewUtil;
7231
+ return () => Promise.resolve();
7235
7232
  }
7236
7233
  function loggerServiceFactory(options) {
7237
7234
  return new DefaultLogger(!_.isNil(options.loggerLevel) ? options.loggerLevel : LoggerLevel.LOG);
@@ -10114,5 +10111,5 @@ class TransportLazyModule {
10114
10111
  * Generated bundle index. Do not edit.
10115
10112
  */
10116
10113
 
10117
- 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 };
10114
+ 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 };
10118
10115
  //# sourceMappingURL=ts-core-angular.mjs.map