@ts-core/angular 13.0.1 → 13.0.5

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.
Files changed (31) hide show
  1. package/VICommonModule.d.ts +15 -14
  2. package/application/ApplicationBaseComponent.d.ts +1 -1
  3. package/component/cdk-table/CdkTableBaseComponent.d.ts +1 -1
  4. package/directive/ScrollCheckDirective.d.ts +15 -0
  5. package/directive/ScrollDirective.d.ts +2 -4
  6. package/esm2020/VICommonModule.mjs +5 -1
  7. package/esm2020/application/ApplicationBaseComponent.mjs +6 -5
  8. package/esm2020/component/cdk-table/CdkTableBaseComponent.mjs +6 -5
  9. package/esm2020/component/cdk-table/CdkTablePaginableMapCollection.mjs +1 -1
  10. package/esm2020/directive/ScrollCheckDirective.mjs +71 -0
  11. package/esm2020/directive/ScrollDirective.mjs +5 -15
  12. package/esm2020/form/FormElementSync.mjs +5 -5
  13. package/esm2020/notification/INotificationContent.mjs +6 -5
  14. package/esm2020/notification/component/NotificationQuestionBaseComponent.mjs +6 -5
  15. package/esm2020/public-api.mjs +2 -1
  16. package/esm2020/theme/ThemeAssetDirective.mjs +5 -5
  17. package/esm2020/window/IWindowContent.mjs +10 -6
  18. package/esm2020/window/component/WindowElement.mjs +6 -5
  19. package/fesm2015/ts-core-angular.mjs +110 -43
  20. package/fesm2015/ts-core-angular.mjs.map +1 -1
  21. package/fesm2020/ts-core-angular.mjs +110 -43
  22. package/fesm2020/ts-core-angular.mjs.map +1 -1
  23. package/form/FormElementSync.d.ts +1 -1
  24. package/notification/INotificationContent.d.ts +1 -1
  25. package/notification/component/NotificationQuestionBaseComponent.d.ts +1 -1
  26. package/package.json +1 -1
  27. package/public-api.d.ts +1 -0
  28. package/style/mat/vi-mat.scss +48 -1
  29. package/theme/ThemeAssetDirective.d.ts +1 -1
  30. package/window/IWindowContent.d.ts +4 -3
  31. package/window/component/WindowElement.d.ts +1 -1
@@ -1,15 +1,15 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, ViewContainerRef, Directive, Input, Pipe, NgModule, InjectionToken, EventEmitter, Output, HostListener, Component, ComponentFactoryResolver, Inject, RendererStyleFlags2, NgModuleFactory } from '@angular/core';
2
+ import { Component, ViewContainerRef, Injectable, Directive, Input, Pipe, NgModule, InjectionToken, EventEmitter, Output, HostListener, ComponentFactoryResolver, Optional, Inject, RendererStyleFlags2, NgModuleFactory } from '@angular/core';
3
3
  import { DestroyableContainer, LoadableEvent, Destroyable, IDestroyable, Loadable, LoadableStatus } from '@ts-core/common';
4
4
  import { PromiseHandler } from '@ts-core/common/promise';
5
5
  import * as _ from 'lodash';
6
6
  import { Assets } from '@ts-core/frontend/asset';
7
- import { takeUntil, filter, map } from 'rxjs/operators';
7
+ import { takeUntil, filter, debounceTime, map } from 'rxjs/operators';
8
8
  import moment from 'moment';
9
9
  import numeral from 'numeral';
10
10
  import { ObservableData } from '@ts-core/common/observer';
11
11
  import { DateUtil, ObjectUtil, ArrayUtil } from '@ts-core/common/util';
12
- import { Subject, takeUntil as takeUntil$1, filter as filter$1, BehaviorSubject, of, merge } from 'rxjs';
12
+ import { Subject, fromEvent, takeUntil as takeUntil$1, filter as filter$1, BehaviorSubject, of, merge } from 'rxjs';
13
13
  import * as i1 from '@angular/material/dialog';
14
14
  import { MatDialogConfig, MatDialogModule, MatDialog } from '@angular/material/dialog';
15
15
  import * as i1$1 from '@ts-core/frontend/language';
@@ -137,10 +137,11 @@ class ApplicationBaseComponent extends DestroyableContainer {
137
137
  return !_.isNil(this.viewReadyPromise) ? this.viewReadyPromise.promise : null;
138
138
  }
139
139
  }
140
- ApplicationBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ApplicationBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
141
- ApplicationBaseComponent.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ApplicationBaseComponent });
140
+ ApplicationBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ApplicationBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
141
+ ApplicationBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: ApplicationBaseComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
142
142
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ApplicationBaseComponent, decorators: [{
143
- type: Injectable
143
+ type: Component,
144
+ args: [{ template: '' }]
144
145
  }], ctorParameters: function () { return []; } });
145
146
 
146
147
  class ViewUtil {
@@ -1995,15 +1996,9 @@ class ScrollDirective extends Destroyable {
1995
1996
  //
1996
1997
  // --------------------------------------------------------------------------
1997
1998
  this.scrolled = new EventEmitter();
1998
- this.delay = 100;
1999
1999
  this.isInitialized = false;
2000
2000
  this._scrollValue = 0;
2001
- this.scrollChanged = () => {
2002
- this.scrollChangedHandler();
2003
- };
2004
- this.initializeHandler = () => {
2005
- this.initialize();
2006
- };
2001
+ this.initializeHandler = () => this.initialize();
2007
2002
  this.element = ViewUtil.parseElement(element);
2008
2003
  this.timer = setTimeout(this.initializeHandler, ScrollDirective.INITIALIZATION_DELAY);
2009
2004
  }
@@ -2028,11 +2023,9 @@ class ScrollDirective extends Destroyable {
2028
2023
  //
2029
2024
  // --------------------------------------------------------------------------
2030
2025
  scrollHandler() {
2031
- if (!this.isInitialized) {
2032
- return;
2026
+ if (this.isInitialized) {
2027
+ this.scrollChangedHandler();
2033
2028
  }
2034
- clearTimeout(this.timer);
2035
- this.timer = setTimeout(this.scrollChanged, this.delay);
2036
2029
  }
2037
2030
  scrollChangedHandler() {
2038
2031
  this._scrollValue = this.scrollTop;
@@ -2087,7 +2080,7 @@ class ScrollDirective extends Destroyable {
2087
2080
  // --------------------------------------------------------------------------
2088
2081
  ScrollDirective.INITIALIZATION_DELAY = 1;
2089
2082
  ScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2090
- ScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.3", type: ScrollDirective, selector: "[vi-scroll]", inputs: { delay: "delay", scrollValue: "scrollValue" }, outputs: { scrolled: "scrolled" }, host: { listeners: { "scroll": "scrollHandler()" } }, usesInheritance: true, ngImport: i0 });
2083
+ ScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.3", type: ScrollDirective, selector: "[vi-scroll]", inputs: { scrollValue: "scrollValue" }, outputs: { scrolled: "scrolled" }, host: { listeners: { "scroll": "scrollHandler()" } }, usesInheritance: true, ngImport: i0 });
2091
2084
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ScrollDirective, decorators: [{
2092
2085
  type: Directive,
2093
2086
  args: [{
@@ -2095,8 +2088,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
2095
2088
  }]
2096
2089
  }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { scrolled: [{
2097
2090
  type: Output
2098
- }], delay: [{
2099
- type: Input
2100
2091
  }], scrollHandler: [{
2101
2092
  type: HostListener,
2102
2093
  args: ['scroll']
@@ -2651,6 +2642,71 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
2651
2642
  type: Input
2652
2643
  }] } });
2653
2644
 
2645
+ class ScrollCheckDirective extends DestroyableContainer {
2646
+ //--------------------------------------------------------------------------
2647
+ //
2648
+ // Constructor
2649
+ //
2650
+ //--------------------------------------------------------------------------
2651
+ constructor(element) {
2652
+ super();
2653
+ //--------------------------------------------------------------------------
2654
+ //
2655
+ // Properties
2656
+ //
2657
+ //--------------------------------------------------------------------------
2658
+ this.limitExceed = new EventEmitter();
2659
+ this.isExceedLimit = false;
2660
+ this._scrollValue = element.nativeElement.scrollTop;
2661
+ fromEvent(element.nativeElement, 'scroll')
2662
+ .pipe(debounceTime(DateUtil.MILISECONDS_SECOND / 10), takeUntil(this.destroyed))
2663
+ .subscribe(() => {
2664
+ this._scrollValue = element.nativeElement.scrollTop;
2665
+ this.check();
2666
+ });
2667
+ }
2668
+ //--------------------------------------------------------------------------
2669
+ //
2670
+ // Protected Methods
2671
+ //
2672
+ //--------------------------------------------------------------------------
2673
+ check() {
2674
+ let value = this._scrollValue >= this.scrollLimit;
2675
+ if (value !== this.isExceedLimit) {
2676
+ this.isExceedLimit = value;
2677
+ this.limitExceed.emit(this.isExceedLimit);
2678
+ }
2679
+ }
2680
+ //--------------------------------------------------------------------------
2681
+ //
2682
+ // Public Properties
2683
+ //
2684
+ //--------------------------------------------------------------------------
2685
+ set scrollLimit(value) {
2686
+ if (value == this._scrollLimit) {
2687
+ return;
2688
+ }
2689
+ this._scrollLimit = value;
2690
+ this.check();
2691
+ }
2692
+ get scrollLimit() {
2693
+ return this._scrollLimit;
2694
+ }
2695
+ }
2696
+ ScrollCheckDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ScrollCheckDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2697
+ ScrollCheckDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.3", type: ScrollCheckDirective, selector: "[vi-scroll-check]", inputs: { scrollLimit: ["vi-scroll-check", "scrollLimit"] }, outputs: { limitExceed: "limitExceed" }, usesInheritance: true, ngImport: i0 });
2698
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ScrollCheckDirective, decorators: [{
2699
+ type: Directive,
2700
+ args: [{
2701
+ selector: '[vi-scroll-check]'
2702
+ }]
2703
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { limitExceed: [{
2704
+ type: Output
2705
+ }], scrollLimit: [{
2706
+ type: Input,
2707
+ args: ['vi-scroll-check']
2708
+ }] } });
2709
+
2654
2710
  class LanguageMatPaginatorIntl extends MatPaginatorIntl {
2655
2711
  // --------------------------------------------------------------------------
2656
2712
  //
@@ -3952,10 +4008,11 @@ class WindowElement extends DestroyableContainer {
3952
4008
  }
3953
4009
  }
3954
4010
  }
3955
- WindowElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowElement, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Injectable });
3956
- WindowElement.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowElement });
4011
+ WindowElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowElement, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
4012
+ WindowElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: WindowElement, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
3957
4013
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowElement, decorators: [{
3958
- type: Injectable
4014
+ type: Component,
4015
+ args: [{ template: '' }]
3959
4016
  }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
3960
4017
 
3961
4018
  class BottomSheetCloseElementComponent extends WindowElement {
@@ -4528,16 +4585,20 @@ class IWindowContent extends DestroyableContainer {
4528
4585
  }
4529
4586
  }
4530
4587
  }
4531
- IWindowContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: IWindowContent, deps: [{ token: 'IWindowContent' }], target: i0.ɵɵFactoryTarget.Injectable });
4532
- IWindowContent.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: IWindowContent });
4588
+ IWindowContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: IWindowContent, deps: [{ token: WINDOW_CONTENT_CONTAINER, optional: true }], target: i0.ɵɵFactoryTarget.Component });
4589
+ IWindowContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: IWindowContent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
4533
4590
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: IWindowContent, decorators: [{
4534
- type: Injectable
4591
+ type: Component,
4592
+ args: [{ template: '' }]
4535
4593
  }], ctorParameters: function () {
4536
4594
  return [{ type: undefined, decorators: [{
4595
+ type: Optional
4596
+ }, {
4537
4597
  type: Inject,
4538
- args: ['IWindowContent']
4598
+ args: [WINDOW_CONTENT_CONTAINER]
4539
4599
  }] }];
4540
4600
  } });
4601
+ const WINDOW_CONTENT_CONTAINER = new InjectionToken('WINDOW_CONTENT_CONTAINER');
4541
4602
 
4542
4603
  class WindowQuestionBaseComponent extends IWindowContent {
4543
4604
  // --------------------------------------------------------------------------
@@ -4970,10 +5031,11 @@ class INotificationContent extends DestroyableContainer {
4970
5031
  return this._config;
4971
5032
  }
4972
5033
  }
4973
- INotificationContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Injectable });
4974
- INotificationContent.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: INotificationContent });
5034
+ INotificationContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
5035
+ INotificationContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: INotificationContent, selector: "ng-component", inputs: { config: "config" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
4975
5036
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: INotificationContent, decorators: [{
4976
- type: Injectable
5037
+ type: Component,
5038
+ args: [{ template: '' }]
4977
5039
  }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { config: [{
4978
5040
  type: Input
4979
5041
  }] } });
@@ -5014,10 +5076,11 @@ class NotificationQuestionBaseComponent extends INotificationContent {
5014
5076
  return this.data ? this.data.isInfo : false;
5015
5077
  }
5016
5078
  }
5017
- NotificationQuestionBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: NotificationQuestionBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
5018
- NotificationQuestionBaseComponent.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: NotificationQuestionBaseComponent });
5079
+ NotificationQuestionBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: NotificationQuestionBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
5080
+ NotificationQuestionBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: NotificationQuestionBaseComponent, selector: "ng-component", host: { listeners: { "click": "clickHandler()" } }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
5019
5081
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: NotificationQuestionBaseComponent, decorators: [{
5020
- type: Injectable
5082
+ type: Component,
5083
+ args: [{ template: '' }]
5021
5084
  }], propDecorators: { clickHandler: [{
5022
5085
  type: HostListener,
5023
5086
  args: ['click']
@@ -5753,10 +5816,10 @@ class ThemeAssetDirective extends Destroyable {
5753
5816
  }
5754
5817
  }
5755
5818
  }
5756
- ThemeAssetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ThemeAssetDirective, deps: [{ token: i0.ElementRef }, { token: i1$4.ThemeService }, { token: i1$4.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Injectable });
5757
- ThemeAssetDirective.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ThemeAssetDirective });
5819
+ ThemeAssetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ThemeAssetDirective, deps: [{ token: i0.ElementRef }, { token: i1$4.ThemeService }, { token: i1$4.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5820
+ ThemeAssetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.3", type: ThemeAssetDirective, inputs: { isSound: "isSound", isVideo: "isVideo", isFile: "isFile", isImage: "isImage", isBackground: "isBackground", isIgnoreTheme: "isIgnoreTheme", name: "name", extension: "extension" }, host: { listeners: { "error": "errorLoadingHandler($event)" } }, usesInheritance: true, ngImport: i0 });
5758
5821
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ThemeAssetDirective, decorators: [{
5759
- type: Injectable
5822
+ type: Directive
5760
5823
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1$4.ThemeService }, { type: i1$4.ThemeAssetService }]; }, propDecorators: { errorLoadingHandler: [{
5761
5824
  type: HostListener,
5762
5825
  args: ['error', ['$event']]
@@ -6741,6 +6804,7 @@ const DECLARATIONS$1 = [
6741
6804
  FocusDirective,
6742
6805
  ResizeDirective,
6743
6806
  ScrollDirective,
6807
+ ScrollCheckDirective,
6744
6808
  ClickToCopyDirective,
6745
6809
  SelectOnFocusDirective,
6746
6810
  ClickToSelectDirective,
@@ -6789,6 +6853,7 @@ VICommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
6789
6853
  FocusDirective,
6790
6854
  ResizeDirective,
6791
6855
  ScrollDirective,
6856
+ ScrollCheckDirective,
6792
6857
  ClickToCopyDirective,
6793
6858
  SelectOnFocusDirective,
6794
6859
  ClickToSelectDirective,
@@ -6810,6 +6875,7 @@ VICommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
6810
6875
  FocusDirective,
6811
6876
  ResizeDirective,
6812
6877
  ScrollDirective,
6878
+ ScrollCheckDirective,
6813
6879
  ClickToCopyDirective,
6814
6880
  SelectOnFocusDirective,
6815
6881
  ClickToSelectDirective,
@@ -7292,10 +7358,11 @@ class CdkTableBaseComponent extends DestroyableContainer {
7292
7358
  return this._columnNames;
7293
7359
  }
7294
7360
  }
7295
- CdkTableBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CdkTableBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
7296
- CdkTableBaseComponent.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CdkTableBaseComponent });
7361
+ CdkTableBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CdkTableBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7362
+ CdkTableBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: CdkTableBaseComponent, selector: "ng-component", inputs: { table: "table", selectedRows: "selectedRows", selectedRow: "selectedRow", rows: "rows", columns: "columns", settings: "settings" }, outputs: { rowClicked: "rowClicked", cellClicked: "cellClicked" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
7297
7363
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CdkTableBaseComponent, decorators: [{
7298
- type: Injectable
7364
+ type: Component,
7365
+ args: [{ template: '' }]
7299
7366
  }], ctorParameters: function () { return []; }, propDecorators: { rowClicked: [{
7300
7367
  type: Output
7301
7368
  }], cellClicked: [{
@@ -7870,10 +7937,10 @@ class FormElementSync extends ValueAccessor {
7870
7937
  this.timer = null;
7871
7938
  }
7872
7939
  }
7873
- FormElementSync.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: FormElementSync, deps: [{ token: Array }], target: i0.ɵɵFactoryTarget.Injectable });
7874
- FormElementSync.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: FormElementSync });
7940
+ FormElementSync.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: FormElementSync, deps: [{ token: Array }], target: i0.ɵɵFactoryTarget.Directive });
7941
+ FormElementSync.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.3", type: FormElementSync, usesInheritance: true, ngImport: i0 });
7875
7942
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: FormElementSync, decorators: [{
7876
- type: Injectable
7943
+ type: Directive
7877
7944
  }], ctorParameters: function () { return [{ type: Array }]; } });
7878
7945
 
7879
7946
  class LanguageMomentDateAdapter extends MomentDateAdapter {
@@ -9538,5 +9605,5 @@ class TransportLazyModule {
9538
9605
  * Generated bundle index. Do not edit.
9539
9606
  */
9540
9607
 
9541
- export { APPLICATION_INJECTOR, ApplicationBaseComponent, ApplicationComponent2, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BootstrapBreakpoint, BootstrapBreakpointService, BootstrapBreakpointServiceEvent, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateGuard, CdkTableBaseComponent, CdkTableCellClassNamePipe, CdkTableColumnClassNamePipe, CdkTableColumnStyleNamePipe, CdkTableColumnValuePipe, CdkTableDataSource, CdkTableFilterableComponent, CdkTableFilterableMapCollection, CdkTablePaginableBookmarkMapCollection, CdkTablePaginableComponent, CdkTablePaginableMapCollection, CdkTableRowClassNamePipe, CdkTableRowStyleNamePipe, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, Direction, FinancePipe, FocusDirective, FocusManager, FormElementAsync, FormElementSync, HTMLContentTitleDirective, 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, LoginRedirectResolver, LoginRequireResolver, LoginResolver, MenuItem, MenuItemBase, MenuItems, MenuListComponent, MessageBaseComponent, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationBaseComponent, NotificationComponent, NotificationConfig, NotificationEvent, NotificationFactory, NotificationModule, NotificationService, NotificationServiceEvent, PipeBaseService, PrettifyPipe, PropertiesManager, QuestionEvent, QuestionManager, QuestionMode, ResizeDirective, ResizeManager, RouterBaseService, SanitizePipe, 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, WindowAlign, WindowBase, WindowBaseComponent, WindowCloseElementComponent, WindowConfig, WindowDragAreaDirective, WindowEvent, WindowFactory, WindowImpl, WindowMinimizeElementComponent, WindowModule, WindowQuestionBaseComponent, WindowQuestionComponent, WindowResizeElementComponent, WindowService, WindowServiceEvent, cookieServiceFactory, languageServiceFactory, loggerServiceFactory, notificationServiceFactory, themeAssetServiceFactory, themeServiceFactory, windowServiceFactory };
9608
+ export { APPLICATION_INJECTOR, ApplicationBaseComponent, ApplicationComponent2, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BootstrapBreakpoint, BootstrapBreakpointService, BootstrapBreakpointServiceEvent, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateGuard, CdkTableBaseComponent, CdkTableCellClassNamePipe, CdkTableColumnClassNamePipe, CdkTableColumnStyleNamePipe, CdkTableColumnValuePipe, CdkTableDataSource, CdkTableFilterableComponent, CdkTableFilterableMapCollection, CdkTablePaginableBookmarkMapCollection, CdkTablePaginableComponent, CdkTablePaginableMapCollection, CdkTableRowClassNamePipe, CdkTableRowStyleNamePipe, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, Direction, FinancePipe, FocusDirective, FocusManager, FormElementAsync, FormElementSync, HTMLContentTitleDirective, 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, LoginRedirectResolver, LoginRequireResolver, LoginResolver, MenuItem, MenuItemBase, MenuItems, MenuListComponent, MessageBaseComponent, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationBaseComponent, NotificationComponent, NotificationConfig, NotificationEvent, NotificationFactory, NotificationModule, NotificationService, NotificationServiceEvent, PipeBaseService, 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, WindowConfig, WindowDragAreaDirective, WindowEvent, WindowFactory, WindowImpl, WindowMinimizeElementComponent, WindowModule, WindowQuestionBaseComponent, WindowQuestionComponent, WindowResizeElementComponent, WindowService, WindowServiceEvent, cookieServiceFactory, languageServiceFactory, loggerServiceFactory, notificationServiceFactory, themeAssetServiceFactory, themeServiceFactory, windowServiceFactory };
9542
9609
  //# sourceMappingURL=ts-core-angular.mjs.map