@ts-core/angular 13.1.19 → 13.1.22

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, Injectable, Directive, Input, Pipe, NgModule, PLATFORM_ID, Inject, InjectionToken, EventEmitter, Output, HostListener, Optional, RendererStyleFlags2, APP_INITIALIZER, Renderer2, 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)) {
@@ -676,242 +911,6 @@ class ViewUtil {
676
911
  ViewUtil._renderer = null;
677
912
  ViewUtil._document = null;
678
913
 
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
914
  class WindowConfig extends MatDialogConfig {
916
915
  // --------------------------------------------------------------------------
917
916
  //
@@ -7150,7 +7149,7 @@ class VICommonModule {
7150
7149
  providers: [
7151
7150
  {
7152
7151
  provide: APP_INITIALIZER,
7153
- deps: [NativeWindowService, Renderer2],
7152
+ deps: [NativeWindowService, RendererFactory2],
7154
7153
  useFactory: initializerFactory,
7155
7154
  multi: true
7156
7155
  },
@@ -7231,9 +7230,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
7231
7230
  }] });
7232
7231
  class IVICommonOptions extends ICookieOptions {
7233
7232
  }
7234
- function initializerFactory(nativeWindow, renderer) {
7235
- console.log('initializerFactory called');
7236
- ViewUtil.renderer = renderer;
7233
+ function initializerFactory(nativeWindow, rendererFactory2) {
7234
+ ViewUtil.renderer = rendererFactory2.createRenderer(null, null);
7237
7235
  ViewUtil.document = nativeWindow.document;
7238
7236
  return () => Promise.resolve();
7239
7237
  }
@@ -10162,5 +10160,5 @@ class TransportLazyModule {
10162
10160
  * Generated bundle index. Do not edit.
10163
10161
  */
10164
10162
 
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 };
10163
+ 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, 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
10164
  //# sourceMappingURL=ts-core-angular.mjs.map