@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.
- package/VICommonModule.d.ts +15 -14
- package/application/ApplicationBaseComponent.d.ts +1 -1
- package/component/cdk-table/CdkTableBaseComponent.d.ts +1 -1
- package/directive/ScrollCheckDirective.d.ts +15 -0
- package/directive/ScrollDirective.d.ts +2 -4
- package/esm2020/VICommonModule.mjs +5 -1
- package/esm2020/application/ApplicationBaseComponent.mjs +6 -5
- package/esm2020/component/cdk-table/CdkTableBaseComponent.mjs +6 -5
- package/esm2020/component/cdk-table/CdkTablePaginableMapCollection.mjs +1 -1
- package/esm2020/directive/ScrollCheckDirective.mjs +71 -0
- package/esm2020/directive/ScrollDirective.mjs +5 -15
- package/esm2020/form/FormElementSync.mjs +5 -5
- package/esm2020/notification/INotificationContent.mjs +6 -5
- package/esm2020/notification/component/NotificationQuestionBaseComponent.mjs +6 -5
- package/esm2020/public-api.mjs +2 -1
- package/esm2020/theme/ThemeAssetDirective.mjs +5 -5
- package/esm2020/window/IWindowContent.mjs +10 -6
- package/esm2020/window/component/WindowElement.mjs +6 -5
- package/fesm2015/ts-core-angular.mjs +110 -43
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +110 -43
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/form/FormElementSync.d.ts +1 -1
- package/notification/INotificationContent.d.ts +1 -1
- package/notification/component/NotificationQuestionBaseComponent.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/style/mat/vi-mat.scss +48 -1
- package/theme/ThemeAssetDirective.d.ts +1 -1
- package/window/IWindowContent.d.ts +4 -3
- package/window/component/WindowElement.d.ts +1 -1
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
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';
|
|
@@ -136,10 +136,11 @@ class ApplicationBaseComponent extends DestroyableContainer {
|
|
|
136
136
|
return !_.isNil(this.viewReadyPromise) ? this.viewReadyPromise.promise : null;
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
|
-
ApplicationBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ApplicationBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.
|
|
140
|
-
ApplicationBaseComponent.ɵ
|
|
139
|
+
ApplicationBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ApplicationBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
140
|
+
ApplicationBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: ApplicationBaseComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
141
141
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ApplicationBaseComponent, decorators: [{
|
|
142
|
-
type:
|
|
142
|
+
type: Component,
|
|
143
|
+
args: [{ template: '' }]
|
|
143
144
|
}], ctorParameters: function () { return []; } });
|
|
144
145
|
|
|
145
146
|
class ViewUtil {
|
|
@@ -1994,15 +1995,9 @@ class ScrollDirective extends Destroyable {
|
|
|
1994
1995
|
//
|
|
1995
1996
|
// --------------------------------------------------------------------------
|
|
1996
1997
|
this.scrolled = new EventEmitter();
|
|
1997
|
-
this.delay = 100;
|
|
1998
1998
|
this.isInitialized = false;
|
|
1999
1999
|
this._scrollValue = 0;
|
|
2000
|
-
this.
|
|
2001
|
-
this.scrollChangedHandler();
|
|
2002
|
-
};
|
|
2003
|
-
this.initializeHandler = () => {
|
|
2004
|
-
this.initialize();
|
|
2005
|
-
};
|
|
2000
|
+
this.initializeHandler = () => this.initialize();
|
|
2006
2001
|
this.element = ViewUtil.parseElement(element);
|
|
2007
2002
|
this.timer = setTimeout(this.initializeHandler, ScrollDirective.INITIALIZATION_DELAY);
|
|
2008
2003
|
}
|
|
@@ -2027,11 +2022,9 @@ class ScrollDirective extends Destroyable {
|
|
|
2027
2022
|
//
|
|
2028
2023
|
// --------------------------------------------------------------------------
|
|
2029
2024
|
scrollHandler() {
|
|
2030
|
-
if (
|
|
2031
|
-
|
|
2025
|
+
if (this.isInitialized) {
|
|
2026
|
+
this.scrollChangedHandler();
|
|
2032
2027
|
}
|
|
2033
|
-
clearTimeout(this.timer);
|
|
2034
|
-
this.timer = setTimeout(this.scrollChanged, this.delay);
|
|
2035
2028
|
}
|
|
2036
2029
|
scrollChangedHandler() {
|
|
2037
2030
|
this._scrollValue = this.scrollTop;
|
|
@@ -2086,7 +2079,7 @@ class ScrollDirective extends Destroyable {
|
|
|
2086
2079
|
// --------------------------------------------------------------------------
|
|
2087
2080
|
ScrollDirective.INITIALIZATION_DELAY = 1;
|
|
2088
2081
|
ScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2089
|
-
ScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.3", type: ScrollDirective, selector: "[vi-scroll]", inputs: {
|
|
2082
|
+
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 });
|
|
2090
2083
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ScrollDirective, decorators: [{
|
|
2091
2084
|
type: Directive,
|
|
2092
2085
|
args: [{
|
|
@@ -2094,8 +2087,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
2094
2087
|
}]
|
|
2095
2088
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { scrolled: [{
|
|
2096
2089
|
type: Output
|
|
2097
|
-
}], delay: [{
|
|
2098
|
-
type: Input
|
|
2099
2090
|
}], scrollHandler: [{
|
|
2100
2091
|
type: HostListener,
|
|
2101
2092
|
args: ['scroll']
|
|
@@ -2650,6 +2641,71 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
2650
2641
|
type: Input
|
|
2651
2642
|
}] } });
|
|
2652
2643
|
|
|
2644
|
+
class ScrollCheckDirective extends DestroyableContainer {
|
|
2645
|
+
//--------------------------------------------------------------------------
|
|
2646
|
+
//
|
|
2647
|
+
// Constructor
|
|
2648
|
+
//
|
|
2649
|
+
//--------------------------------------------------------------------------
|
|
2650
|
+
constructor(element) {
|
|
2651
|
+
super();
|
|
2652
|
+
//--------------------------------------------------------------------------
|
|
2653
|
+
//
|
|
2654
|
+
// Properties
|
|
2655
|
+
//
|
|
2656
|
+
//--------------------------------------------------------------------------
|
|
2657
|
+
this.limitExceed = new EventEmitter();
|
|
2658
|
+
this.isExceedLimit = false;
|
|
2659
|
+
this._scrollValue = element.nativeElement.scrollTop;
|
|
2660
|
+
fromEvent(element.nativeElement, 'scroll')
|
|
2661
|
+
.pipe(debounceTime(DateUtil.MILISECONDS_SECOND / 10), takeUntil(this.destroyed))
|
|
2662
|
+
.subscribe(() => {
|
|
2663
|
+
this._scrollValue = element.nativeElement.scrollTop;
|
|
2664
|
+
this.check();
|
|
2665
|
+
});
|
|
2666
|
+
}
|
|
2667
|
+
//--------------------------------------------------------------------------
|
|
2668
|
+
//
|
|
2669
|
+
// Protected Methods
|
|
2670
|
+
//
|
|
2671
|
+
//--------------------------------------------------------------------------
|
|
2672
|
+
check() {
|
|
2673
|
+
let value = this._scrollValue >= this.scrollLimit;
|
|
2674
|
+
if (value !== this.isExceedLimit) {
|
|
2675
|
+
this.isExceedLimit = value;
|
|
2676
|
+
this.limitExceed.emit(this.isExceedLimit);
|
|
2677
|
+
}
|
|
2678
|
+
}
|
|
2679
|
+
//--------------------------------------------------------------------------
|
|
2680
|
+
//
|
|
2681
|
+
// Public Properties
|
|
2682
|
+
//
|
|
2683
|
+
//--------------------------------------------------------------------------
|
|
2684
|
+
set scrollLimit(value) {
|
|
2685
|
+
if (value == this._scrollLimit) {
|
|
2686
|
+
return;
|
|
2687
|
+
}
|
|
2688
|
+
this._scrollLimit = value;
|
|
2689
|
+
this.check();
|
|
2690
|
+
}
|
|
2691
|
+
get scrollLimit() {
|
|
2692
|
+
return this._scrollLimit;
|
|
2693
|
+
}
|
|
2694
|
+
}
|
|
2695
|
+
ScrollCheckDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ScrollCheckDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2696
|
+
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 });
|
|
2697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ScrollCheckDirective, decorators: [{
|
|
2698
|
+
type: Directive,
|
|
2699
|
+
args: [{
|
|
2700
|
+
selector: '[vi-scroll-check]'
|
|
2701
|
+
}]
|
|
2702
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { limitExceed: [{
|
|
2703
|
+
type: Output
|
|
2704
|
+
}], scrollLimit: [{
|
|
2705
|
+
type: Input,
|
|
2706
|
+
args: ['vi-scroll-check']
|
|
2707
|
+
}] } });
|
|
2708
|
+
|
|
2653
2709
|
class LanguageMatPaginatorIntl extends MatPaginatorIntl {
|
|
2654
2710
|
// --------------------------------------------------------------------------
|
|
2655
2711
|
//
|
|
@@ -3951,10 +4007,11 @@ class WindowElement extends DestroyableContainer {
|
|
|
3951
4007
|
}
|
|
3952
4008
|
}
|
|
3953
4009
|
}
|
|
3954
|
-
WindowElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowElement, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.
|
|
3955
|
-
WindowElement.ɵ
|
|
4010
|
+
WindowElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowElement, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
4011
|
+
WindowElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: WindowElement, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
3956
4012
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowElement, decorators: [{
|
|
3957
|
-
type:
|
|
4013
|
+
type: Component,
|
|
4014
|
+
args: [{ template: '' }]
|
|
3958
4015
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3959
4016
|
|
|
3960
4017
|
class BottomSheetCloseElementComponent extends WindowElement {
|
|
@@ -4527,14 +4584,18 @@ class IWindowContent extends DestroyableContainer {
|
|
|
4527
4584
|
}
|
|
4528
4585
|
}
|
|
4529
4586
|
}
|
|
4530
|
-
IWindowContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: IWindowContent, deps: [{ token:
|
|
4531
|
-
IWindowContent.ɵ
|
|
4587
|
+
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 });
|
|
4588
|
+
IWindowContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: IWindowContent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
4532
4589
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: IWindowContent, decorators: [{
|
|
4533
|
-
type:
|
|
4590
|
+
type: Component,
|
|
4591
|
+
args: [{ template: '' }]
|
|
4534
4592
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
4593
|
+
type: Optional
|
|
4594
|
+
}, {
|
|
4535
4595
|
type: Inject,
|
|
4536
|
-
args: [
|
|
4596
|
+
args: [WINDOW_CONTENT_CONTAINER]
|
|
4537
4597
|
}] }]; } });
|
|
4598
|
+
const WINDOW_CONTENT_CONTAINER = new InjectionToken('WINDOW_CONTENT_CONTAINER');
|
|
4538
4599
|
|
|
4539
4600
|
class WindowQuestionBaseComponent extends IWindowContent {
|
|
4540
4601
|
// --------------------------------------------------------------------------
|
|
@@ -4967,10 +5028,11 @@ class INotificationContent extends DestroyableContainer {
|
|
|
4967
5028
|
return this._config;
|
|
4968
5029
|
}
|
|
4969
5030
|
}
|
|
4970
|
-
INotificationContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.
|
|
4971
|
-
INotificationContent.ɵ
|
|
5031
|
+
INotificationContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5032
|
+
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 });
|
|
4972
5033
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: INotificationContent, decorators: [{
|
|
4973
|
-
type:
|
|
5034
|
+
type: Component,
|
|
5035
|
+
args: [{ template: '' }]
|
|
4974
5036
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { config: [{
|
|
4975
5037
|
type: Input
|
|
4976
5038
|
}] } });
|
|
@@ -5011,10 +5073,11 @@ class NotificationQuestionBaseComponent extends INotificationContent {
|
|
|
5011
5073
|
return this.data ? this.data.isInfo : false;
|
|
5012
5074
|
}
|
|
5013
5075
|
}
|
|
5014
|
-
NotificationQuestionBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: NotificationQuestionBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.
|
|
5015
|
-
NotificationQuestionBaseComponent.ɵ
|
|
5076
|
+
NotificationQuestionBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: NotificationQuestionBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
5077
|
+
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 });
|
|
5016
5078
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: NotificationQuestionBaseComponent, decorators: [{
|
|
5017
|
-
type:
|
|
5079
|
+
type: Component,
|
|
5080
|
+
args: [{ template: '' }]
|
|
5018
5081
|
}], propDecorators: { clickHandler: [{
|
|
5019
5082
|
type: HostListener,
|
|
5020
5083
|
args: ['click']
|
|
@@ -5750,10 +5813,10 @@ class ThemeAssetDirective extends Destroyable {
|
|
|
5750
5813
|
}
|
|
5751
5814
|
}
|
|
5752
5815
|
}
|
|
5753
|
-
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.
|
|
5754
|
-
ThemeAssetDirective.ɵ
|
|
5816
|
+
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 });
|
|
5817
|
+
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 });
|
|
5755
5818
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ThemeAssetDirective, decorators: [{
|
|
5756
|
-
type:
|
|
5819
|
+
type: Directive
|
|
5757
5820
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1$4.ThemeService }, { type: i1$4.ThemeAssetService }]; }, propDecorators: { errorLoadingHandler: [{
|
|
5758
5821
|
type: HostListener,
|
|
5759
5822
|
args: ['error', ['$event']]
|
|
@@ -6738,6 +6801,7 @@ const DECLARATIONS$1 = [
|
|
|
6738
6801
|
FocusDirective,
|
|
6739
6802
|
ResizeDirective,
|
|
6740
6803
|
ScrollDirective,
|
|
6804
|
+
ScrollCheckDirective,
|
|
6741
6805
|
ClickToCopyDirective,
|
|
6742
6806
|
SelectOnFocusDirective,
|
|
6743
6807
|
ClickToSelectDirective,
|
|
@@ -6786,6 +6850,7 @@ VICommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
|
|
|
6786
6850
|
FocusDirective,
|
|
6787
6851
|
ResizeDirective,
|
|
6788
6852
|
ScrollDirective,
|
|
6853
|
+
ScrollCheckDirective,
|
|
6789
6854
|
ClickToCopyDirective,
|
|
6790
6855
|
SelectOnFocusDirective,
|
|
6791
6856
|
ClickToSelectDirective,
|
|
@@ -6807,6 +6872,7 @@ VICommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
|
|
|
6807
6872
|
FocusDirective,
|
|
6808
6873
|
ResizeDirective,
|
|
6809
6874
|
ScrollDirective,
|
|
6875
|
+
ScrollCheckDirective,
|
|
6810
6876
|
ClickToCopyDirective,
|
|
6811
6877
|
SelectOnFocusDirective,
|
|
6812
6878
|
ClickToSelectDirective,
|
|
@@ -7289,10 +7355,11 @@ class CdkTableBaseComponent extends DestroyableContainer {
|
|
|
7289
7355
|
return this._columnNames;
|
|
7290
7356
|
}
|
|
7291
7357
|
}
|
|
7292
|
-
CdkTableBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CdkTableBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.
|
|
7293
|
-
CdkTableBaseComponent.ɵ
|
|
7358
|
+
CdkTableBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CdkTableBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7359
|
+
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 });
|
|
7294
7360
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CdkTableBaseComponent, decorators: [{
|
|
7295
|
-
type:
|
|
7361
|
+
type: Component,
|
|
7362
|
+
args: [{ template: '' }]
|
|
7296
7363
|
}], ctorParameters: function () { return []; }, propDecorators: { rowClicked: [{
|
|
7297
7364
|
type: Output
|
|
7298
7365
|
}], cellClicked: [{
|
|
@@ -7867,10 +7934,10 @@ class FormElementSync extends ValueAccessor {
|
|
|
7867
7934
|
this.timer = null;
|
|
7868
7935
|
}
|
|
7869
7936
|
}
|
|
7870
|
-
FormElementSync.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: FormElementSync, deps: [{ token: Array }], target: i0.ɵɵFactoryTarget.
|
|
7871
|
-
FormElementSync.ɵ
|
|
7937
|
+
FormElementSync.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: FormElementSync, deps: [{ token: Array }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7938
|
+
FormElementSync.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.3", type: FormElementSync, usesInheritance: true, ngImport: i0 });
|
|
7872
7939
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: FormElementSync, decorators: [{
|
|
7873
|
-
type:
|
|
7940
|
+
type: Directive
|
|
7874
7941
|
}], ctorParameters: function () { return [{ type: Array }]; } });
|
|
7875
7942
|
|
|
7876
7943
|
class LanguageMomentDateAdapter extends MomentDateAdapter {
|
|
@@ -9506,5 +9573,5 @@ class TransportLazyModule {
|
|
|
9506
9573
|
* Generated bundle index. Do not edit.
|
|
9507
9574
|
*/
|
|
9508
9575
|
|
|
9509
|
-
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 };
|
|
9576
|
+
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 };
|
|
9510
9577
|
//# sourceMappingURL=ts-core-angular.mjs.map
|