@ts-core/angular 13.0.50 → 13.0.53
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/bottomSheet/BottomSheetModule.d.ts +6 -7
- package/bottomSheet/component/BottomSheetBaseComponent.d.ts +2 -2
- package/esm2020/bottomSheet/BottomSheetImpl.mjs +2 -2
- package/esm2020/bottomSheet/BottomSheetModule.mjs +4 -14
- package/esm2020/bottomSheet/component/BottomSheetBaseComponent.mjs +7 -3
- package/esm2020/public-api.mjs +2 -1
- package/esm2020/window/IWindow.mjs +2 -1
- package/esm2020/window/WindowConfig.mjs +2 -1
- package/esm2020/window/WindowImpl.mjs +1 -7
- package/esm2020/window/WindowModule.mjs +18 -12
- package/esm2020/window/component/WindowBaseComponent.mjs +7 -2
- package/esm2020/window/component/window-expand-element/window-expand-element.component.mjs +56 -0
- package/esm2020/window/component/window-resize-element/window-resize-element.component.mjs +3 -1
- package/fesm2015/ts-core-angular.mjs +114 -113
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +114 -113
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/style/mat/vi-mat.scss +2 -1
- package/window/IWindow.d.ts +1 -0
- package/window/WindowConfig.d.ts +1 -0
- package/window/WindowModule.d.ts +10 -9
- package/window/component/WindowBaseComponent.d.ts +3 -1
- package/window/component/window-expand-element/window-expand-element.component.d.ts +12 -0
- package/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.d.ts +0 -12
- package/esm2020/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.mjs +0 -55
|
@@ -921,6 +921,7 @@ var WindowEvent;
|
|
|
921
921
|
WindowEvent["RESIZED"] = "RESIZED";
|
|
922
922
|
WindowEvent["DISABLED_CHANGED"] = "DISABLED_CHANGED";
|
|
923
923
|
WindowEvent["MINIMIZED_CHANGED"] = "MINIMIZED_CHANGED";
|
|
924
|
+
WindowEvent["EXPAND"] = "EXPAND";
|
|
924
925
|
WindowEvent["SET_ON_TOP"] = "SET_ON_TOP";
|
|
925
926
|
})(WindowEvent || (WindowEvent = {}));
|
|
926
927
|
|
|
@@ -932,6 +933,7 @@ class WindowConfig extends MatDialogConfig {
|
|
|
932
933
|
// --------------------------------------------------------------------------
|
|
933
934
|
constructor(isModal = false, isResizeable = false, width = NaN, height = NaN) {
|
|
934
935
|
super();
|
|
936
|
+
this.isExpandable = false;
|
|
935
937
|
this.isResizeable = false;
|
|
936
938
|
this.isMinimizable = false;
|
|
937
939
|
this.isContentDragable = true;
|
|
@@ -3680,7 +3682,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3680
3682
|
args: [{ selector: 'vi-window-close-element', template: '', styles: [":host{display:block;position:absolute;color:#fff;background-color:#0006;border-radius:50%;padding:8px;font-size:14px;font-weight:700;text-align:center}:host:hover{background-color:#0009}:host.small{font-size:10px;padding:4px}\n"] }]
|
|
3681
3683
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3682
3684
|
|
|
3683
|
-
class
|
|
3685
|
+
class WindowExpandElementComponent extends WindowElement {
|
|
3684
3686
|
// --------------------------------------------------------------------------
|
|
3685
3687
|
//
|
|
3686
3688
|
// Constructor
|
|
@@ -3688,36 +3690,19 @@ class WindowMinimizeElementComponent extends WindowElement {
|
|
|
3688
3690
|
// --------------------------------------------------------------------------
|
|
3689
3691
|
constructor(element) {
|
|
3690
3692
|
super(element);
|
|
3691
|
-
// --------------------------------------------------------------------------
|
|
3692
|
-
//
|
|
3693
|
-
// Private Methods
|
|
3694
|
-
//
|
|
3695
|
-
// --------------------------------------------------------------------------
|
|
3696
|
-
this.commitIconProperties = () => {
|
|
3697
|
-
let icon = this.window.isMinimized ? WindowMinimizeElementComponent.ICON_MAXIMIZE_VALUE : WindowMinimizeElementComponent.ICON_MINIMIZE_VALUE;
|
|
3698
|
-
ViewUtil.setProperty(this.nativeElement, 'innerHTML', icon);
|
|
3699
|
-
};
|
|
3700
3693
|
}
|
|
3701
3694
|
// --------------------------------------------------------------------------
|
|
3702
3695
|
//
|
|
3703
|
-
//
|
|
3696
|
+
// Private Methods
|
|
3704
3697
|
//
|
|
3705
3698
|
// --------------------------------------------------------------------------
|
|
3706
|
-
commitWindowProperties() {
|
|
3707
|
-
super.commitWindowProperties();
|
|
3708
|
-
this.window.events.pipe(takeUntil(this.destroyed)).subscribe(event => {
|
|
3709
|
-
if (event === WindowEvent.MINIMIZED_CHANGED) {
|
|
3710
|
-
this.commitIconProperties();
|
|
3711
|
-
}
|
|
3712
|
-
});
|
|
3713
|
-
}
|
|
3714
3699
|
createChildren() {
|
|
3715
3700
|
super.createChildren();
|
|
3716
|
-
if (!_.isNil(
|
|
3717
|
-
ViewUtil.setProperty(this.nativeElement, 'innerHTML',
|
|
3701
|
+
if (!_.isNil(WindowExpandElementComponent.ICON_VALUE)) {
|
|
3702
|
+
ViewUtil.setProperty(this.nativeElement, 'innerHTML', WindowExpandElementComponent.ICON_VALUE);
|
|
3718
3703
|
}
|
|
3719
|
-
if (!_.isNil(
|
|
3720
|
-
ViewUtil.addClasses(this.nativeElement,
|
|
3704
|
+
if (!_.isNil(WindowExpandElementComponent.ICON_CLASS)) {
|
|
3705
|
+
ViewUtil.addClasses(this.nativeElement, WindowExpandElementComponent.ICON_CLASS);
|
|
3721
3706
|
}
|
|
3722
3707
|
ViewUtil.addClass(this.nativeElement, 'mouse-active');
|
|
3723
3708
|
}
|
|
@@ -3729,7 +3714,7 @@ class WindowMinimizeElementComponent extends WindowElement {
|
|
|
3729
3714
|
clickHandler(event) {
|
|
3730
3715
|
super.clickHandler(event);
|
|
3731
3716
|
if (!_.isNil(this.window)) {
|
|
3732
|
-
this.window.
|
|
3717
|
+
this.window.emit(WindowEvent.EXPAND);
|
|
3733
3718
|
}
|
|
3734
3719
|
}
|
|
3735
3720
|
}
|
|
@@ -3738,14 +3723,13 @@ class WindowMinimizeElementComponent extends WindowElement {
|
|
|
3738
3723
|
// Constants
|
|
3739
3724
|
//
|
|
3740
3725
|
// --------------------------------------------------------------------------
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowMinimizeElementComponent, decorators: [{
|
|
3726
|
+
WindowExpandElementComponent.ICON_CLASS = 'fas fa-angle-double-up';
|
|
3727
|
+
WindowExpandElementComponent.ICON_VALUE = null;
|
|
3728
|
+
WindowExpandElementComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowExpandElementComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
3729
|
+
WindowExpandElementComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: WindowExpandElementComponent, selector: "vi-window-expand-element", usesInheritance: true, ngImport: i0, template: '', isInline: true, styles: [":host{display:block;position:absolute;color:#fff;background-color:#0006;border-radius:50%;padding:8px;font-size:14px;font-weight:700;text-align:center}:host:hover{background-color:#0009}:host.small{font-size:10px;padding:4px}\n"] });
|
|
3730
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowExpandElementComponent, decorators: [{
|
|
3747
3731
|
type: Component,
|
|
3748
|
-
args: [{ selector: 'vi-window-
|
|
3732
|
+
args: [{ selector: 'vi-window-expand-element', template: '', styles: [":host{display:block;position:absolute;color:#fff;background-color:#0006;border-radius:50%;padding:8px;font-size:14px;font-weight:700;text-align:center}:host:hover{background-color:#0009}:host.small{font-size:10px;padding:4px}\n"] }]
|
|
3749
3733
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3750
3734
|
|
|
3751
3735
|
class WindowResizeElementComponent extends WindowElement {
|
|
@@ -3780,6 +3764,7 @@ class WindowResizeElementComponent extends WindowElement {
|
|
|
3780
3764
|
clickHandler(event) {
|
|
3781
3765
|
super.clickHandler(event);
|
|
3782
3766
|
if (!_.isNil(this.window)) {
|
|
3767
|
+
this.window.emit(WindowEvent.EXPAND);
|
|
3783
3768
|
}
|
|
3784
3769
|
}
|
|
3785
3770
|
}
|
|
@@ -3797,6 +3782,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3797
3782
|
args: [{ selector: 'vi-window-resize-element', template: '', styles: [":host{display:block;position:absolute;color:#fff;background-color:#0006;border-radius:50%;padding:8px;font-size:14px;font-weight:700;text-align:center}:host:hover{background-color:#0009}:host.small{font-size:10px;padding:4px}\n"] }]
|
|
3798
3783
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3799
3784
|
|
|
3785
|
+
class WindowMinimizeElementComponent extends WindowElement {
|
|
3786
|
+
// --------------------------------------------------------------------------
|
|
3787
|
+
//
|
|
3788
|
+
// Constructor
|
|
3789
|
+
//
|
|
3790
|
+
// --------------------------------------------------------------------------
|
|
3791
|
+
constructor(element) {
|
|
3792
|
+
super(element);
|
|
3793
|
+
// --------------------------------------------------------------------------
|
|
3794
|
+
//
|
|
3795
|
+
// Private Methods
|
|
3796
|
+
//
|
|
3797
|
+
// --------------------------------------------------------------------------
|
|
3798
|
+
this.commitIconProperties = () => {
|
|
3799
|
+
let icon = this.window.isMinimized ? WindowMinimizeElementComponent.ICON_MAXIMIZE_VALUE : WindowMinimizeElementComponent.ICON_MINIMIZE_VALUE;
|
|
3800
|
+
ViewUtil.setProperty(this.nativeElement, 'innerHTML', icon);
|
|
3801
|
+
};
|
|
3802
|
+
}
|
|
3803
|
+
// --------------------------------------------------------------------------
|
|
3804
|
+
//
|
|
3805
|
+
// Protected Methods
|
|
3806
|
+
//
|
|
3807
|
+
// --------------------------------------------------------------------------
|
|
3808
|
+
commitWindowProperties() {
|
|
3809
|
+
super.commitWindowProperties();
|
|
3810
|
+
this.window.events.pipe(takeUntil(this.destroyed)).subscribe(event => {
|
|
3811
|
+
if (event === WindowEvent.MINIMIZED_CHANGED) {
|
|
3812
|
+
this.commitIconProperties();
|
|
3813
|
+
}
|
|
3814
|
+
});
|
|
3815
|
+
}
|
|
3816
|
+
createChildren() {
|
|
3817
|
+
super.createChildren();
|
|
3818
|
+
if (!_.isNil(WindowMinimizeElementComponent.ICON_MINIMIZE_VALUE)) {
|
|
3819
|
+
ViewUtil.setProperty(this.nativeElement, 'innerHTML', WindowMinimizeElementComponent.ICON_MINIMIZE_VALUE);
|
|
3820
|
+
}
|
|
3821
|
+
if (!_.isNil(WindowMinimizeElementComponent.ICON_CLASS)) {
|
|
3822
|
+
ViewUtil.addClasses(this.nativeElement, WindowMinimizeElementComponent.ICON_CLASS);
|
|
3823
|
+
}
|
|
3824
|
+
ViewUtil.addClass(this.nativeElement, 'mouse-active');
|
|
3825
|
+
}
|
|
3826
|
+
// --------------------------------------------------------------------------
|
|
3827
|
+
//
|
|
3828
|
+
// Event Handlers
|
|
3829
|
+
//
|
|
3830
|
+
// --------------------------------------------------------------------------
|
|
3831
|
+
clickHandler(event) {
|
|
3832
|
+
super.clickHandler(event);
|
|
3833
|
+
if (!_.isNil(this.window)) {
|
|
3834
|
+
this.window.isMinimized = !this.window.isMinimized;
|
|
3835
|
+
}
|
|
3836
|
+
}
|
|
3837
|
+
}
|
|
3838
|
+
// --------------------------------------------------------------------------
|
|
3839
|
+
//
|
|
3840
|
+
// Constants
|
|
3841
|
+
//
|
|
3842
|
+
// --------------------------------------------------------------------------
|
|
3843
|
+
WindowMinimizeElementComponent.ICON_CLASS = null;
|
|
3844
|
+
WindowMinimizeElementComponent.ICON_MINIMIZE_VALUE = null;
|
|
3845
|
+
WindowMinimizeElementComponent.ICON_MAXIMIZE_VALUE = null;
|
|
3846
|
+
WindowMinimizeElementComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowMinimizeElementComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
3847
|
+
WindowMinimizeElementComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: WindowMinimizeElementComponent, selector: "vi-window-minimize-element", usesInheritance: true, ngImport: i0, template: '', isInline: true, styles: [":host{display:block;position:absolute;color:#fff;background-color:#0006;border-radius:50%;padding:8px;font-size:14px;font-weight:700;text-align:center}:host:hover{background-color:#0009}:host.small{font-size:10px;padding:4px}\n"] });
|
|
3848
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowMinimizeElementComponent, decorators: [{
|
|
3849
|
+
type: Component,
|
|
3850
|
+
args: [{ selector: 'vi-window-minimize-element', template: '', styles: [":host{display:block;position:absolute;color:#fff;background-color:#0006;border-radius:50%;padding:8px;font-size:14px;font-weight:700;text-align:center}:host:hover{background-color:#0009}:host.small{font-size:10px;padding:4px}\n"] }]
|
|
3851
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3852
|
+
|
|
3800
3853
|
class WindowBase extends DestroyableContainer {
|
|
3801
3854
|
// --------------------------------------------------------------------------
|
|
3802
3855
|
//
|
|
@@ -4067,12 +4120,6 @@ class WindowImpl extends WindowBase {
|
|
|
4067
4120
|
if (!this.config.isModal) {
|
|
4068
4121
|
this.container.addEventListener('mousedown', this.mouseDownHandlerProxy);
|
|
4069
4122
|
}
|
|
4070
|
-
/*
|
|
4071
|
-
if (!this.config.isModal) {
|
|
4072
|
-
this.container.addEventListener('click', this.mouseClickHandlerProxy, true);
|
|
4073
|
-
this.container.addEventListener('mousedown', this.mouseDownHandlerProxy);
|
|
4074
|
-
}
|
|
4075
|
-
*/
|
|
4076
4123
|
this.elementsCreate();
|
|
4077
4124
|
}
|
|
4078
4125
|
commitIsBlinkProperties() { }
|
|
@@ -4490,6 +4537,9 @@ class WindowBaseComponent extends WindowDragable {
|
|
|
4490
4537
|
if (this.config.isMinimizable) {
|
|
4491
4538
|
this.elementAdd(this.content.container.createComponent(WindowBaseComponent.MINIMIZE_COMPONENT));
|
|
4492
4539
|
}
|
|
4540
|
+
if (this.config.isExpandable) {
|
|
4541
|
+
this.elementAdd(this.content.container.createComponent(WindowBaseComponent.EXPAND_COMPONENT));
|
|
4542
|
+
}
|
|
4493
4543
|
}
|
|
4494
4544
|
commitIsBlinkProperties() {
|
|
4495
4545
|
ViewUtil.toggleClass(this.container, this.blinkClass, this.isBlink);
|
|
@@ -4531,6 +4581,7 @@ class WindowBaseComponent extends WindowDragable {
|
|
|
4531
4581
|
//
|
|
4532
4582
|
// --------------------------------------------------------------------------
|
|
4533
4583
|
WindowBaseComponent.CLOSE_COMPONENT = WindowCloseElementComponent;
|
|
4584
|
+
WindowBaseComponent.EXPAND_COMPONENT = WindowExpandElementComponent;
|
|
4534
4585
|
WindowBaseComponent.RESIZE_COMPONENT = WindowResizeElementComponent;
|
|
4535
4586
|
WindowBaseComponent.MINIMIZE_COMPONENT = WindowMinimizeElementComponent;
|
|
4536
4587
|
|
|
@@ -4941,8 +4992,8 @@ class BottomSheetImpl extends DestroyableContainer {
|
|
|
4941
4992
|
setProperties() {
|
|
4942
4993
|
ViewUtil.addClass(this.container, 'vi-bottom-sheet');
|
|
4943
4994
|
ViewUtil.toggleClass(this.container, 'vi-modal', this.config.isModal);
|
|
4995
|
+
this.container.addEventListener('click', this.mouseClickHandlerProxy, true);
|
|
4944
4996
|
if (!this.config.isModal) {
|
|
4945
|
-
this.container.addEventListener('click', this.mouseClickHandlerProxy, true);
|
|
4946
4997
|
this.container.addEventListener('mousedown', this.mouseDownHandlerProxy);
|
|
4947
4998
|
}
|
|
4948
4999
|
}
|
|
@@ -5126,56 +5177,6 @@ class BottomSheetImpl extends DestroyableContainer {
|
|
|
5126
5177
|
BottomSheetImpl.BLINK_DELAY = 500;
|
|
5127
5178
|
BottomSheetImpl.SHAKE_DELAY = 500;
|
|
5128
5179
|
|
|
5129
|
-
class BottomSheetCloseElementComponent extends WindowElement {
|
|
5130
|
-
// --------------------------------------------------------------------------
|
|
5131
|
-
//
|
|
5132
|
-
// Constructor
|
|
5133
|
-
//
|
|
5134
|
-
// --------------------------------------------------------------------------
|
|
5135
|
-
constructor(element) {
|
|
5136
|
-
super(element);
|
|
5137
|
-
}
|
|
5138
|
-
// --------------------------------------------------------------------------
|
|
5139
|
-
//
|
|
5140
|
-
// Private Methods
|
|
5141
|
-
//
|
|
5142
|
-
// --------------------------------------------------------------------------
|
|
5143
|
-
createChildren() {
|
|
5144
|
-
super.createChildren();
|
|
5145
|
-
if (!_.isNil(BottomSheetCloseElementComponent.ICON_VALUE)) {
|
|
5146
|
-
ViewUtil.setProperty(this.nativeElement, 'innerHTML', BottomSheetCloseElementComponent.ICON_VALUE);
|
|
5147
|
-
}
|
|
5148
|
-
if (!_.isNil(BottomSheetCloseElementComponent.ICON_CLASS)) {
|
|
5149
|
-
ViewUtil.addClasses(this.nativeElement, BottomSheetCloseElementComponent.ICON_CLASS);
|
|
5150
|
-
}
|
|
5151
|
-
ViewUtil.addClass(this.nativeElement, 'mouse-active');
|
|
5152
|
-
}
|
|
5153
|
-
// --------------------------------------------------------------------------
|
|
5154
|
-
//
|
|
5155
|
-
// Event Handlers
|
|
5156
|
-
//
|
|
5157
|
-
// --------------------------------------------------------------------------
|
|
5158
|
-
clickHandler(event) {
|
|
5159
|
-
super.clickHandler(event);
|
|
5160
|
-
if (!_.isNil(this.window)) {
|
|
5161
|
-
this.window.close();
|
|
5162
|
-
}
|
|
5163
|
-
}
|
|
5164
|
-
}
|
|
5165
|
-
// --------------------------------------------------------------------------
|
|
5166
|
-
//
|
|
5167
|
-
// Constants
|
|
5168
|
-
//
|
|
5169
|
-
// --------------------------------------------------------------------------
|
|
5170
|
-
BottomSheetCloseElementComponent.ICON_CLASS = 'fas fa-times';
|
|
5171
|
-
BottomSheetCloseElementComponent.ICON_VALUE = null;
|
|
5172
|
-
BottomSheetCloseElementComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetCloseElementComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5173
|
-
BottomSheetCloseElementComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BottomSheetCloseElementComponent, selector: "vi-bottom-sheet-close-element", usesInheritance: true, ngImport: i0, template: '', isInline: true, styles: [":host{display:block;position:absolute;color:#fff;background-color:#0006;border-radius:50%;padding:8px;font-size:14px;font-weight:700;text-align:center}:host:hover{background-color:#0009}:host.small{font-size:10px;padding:4px}\n"] });
|
|
5174
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetCloseElementComponent, decorators: [{
|
|
5175
|
-
type: Component,
|
|
5176
|
-
args: [{ selector: 'vi-bottom-sheet-close-element', template: '', styles: [":host{display:block;position:absolute;color:#fff;background-color:#0006;border-radius:50%;padding:8px;font-size:14px;font-weight:700;text-align:center}:host:hover{background-color:#0009}:host.small{font-size:10px;padding:4px}\n"] }]
|
|
5177
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
5178
|
-
|
|
5179
5180
|
class BottomSheetBaseComponent extends BottomSheetImpl {
|
|
5180
5181
|
// --------------------------------------------------------------------------
|
|
5181
5182
|
//
|
|
@@ -5190,6 +5191,9 @@ class BottomSheetBaseComponent extends BottomSheetImpl {
|
|
|
5190
5191
|
if (!this.config.disableClose) {
|
|
5191
5192
|
this.elementAdd(this.content.container.createComponent(BottomSheetBaseComponent.CLOSE_COMPONENT));
|
|
5192
5193
|
}
|
|
5194
|
+
if (this.config.isExpandable) {
|
|
5195
|
+
this.elementAdd(this.content.container.createComponent(BottomSheetBaseComponent.EXPAND_COMPONENT));
|
|
5196
|
+
}
|
|
5193
5197
|
}
|
|
5194
5198
|
commitIsBlinkProperties() {
|
|
5195
5199
|
ViewUtil.toggleClass(this.container, this.blinkClass, this.isBlink);
|
|
@@ -5225,7 +5229,8 @@ class BottomSheetBaseComponent extends BottomSheetImpl {
|
|
|
5225
5229
|
// Static Properties
|
|
5226
5230
|
//
|
|
5227
5231
|
// --------------------------------------------------------------------------
|
|
5228
|
-
BottomSheetBaseComponent.CLOSE_COMPONENT =
|
|
5232
|
+
BottomSheetBaseComponent.CLOSE_COMPONENT = WindowBaseComponent.CLOSE_COMPONENT;
|
|
5233
|
+
BottomSheetBaseComponent.EXPAND_COMPONENT = WindowBaseComponent.EXPAND_COMPONENT;
|
|
5229
5234
|
|
|
5230
5235
|
class BottomSheetService extends Destroyable {
|
|
5231
5236
|
// --------------------------------------------------------------------------
|
|
@@ -5314,7 +5319,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
5314
5319
|
}], ctorParameters: function () { return [{ type: i1$2.MatBottomSheet }, { type: i1$1.LanguageService }]; } });
|
|
5315
5320
|
|
|
5316
5321
|
const IMPORTS$4 = [CommonModule, FormsModule, MatBottomSheetModule, MatButtonModule, LanguageModule];
|
|
5317
|
-
const ENTRY_COMPONENTS$3 = [
|
|
5322
|
+
const ENTRY_COMPONENTS$3 = [];
|
|
5318
5323
|
const DECLARATIONS$4 = [...ENTRY_COMPONENTS$3];
|
|
5319
5324
|
const EXPORTS$3 = [...DECLARATIONS$4];
|
|
5320
5325
|
class BottomSheetModule {
|
|
@@ -5326,21 +5331,12 @@ class BottomSheetModule {
|
|
|
5326
5331
|
static forRoot() {
|
|
5327
5332
|
return {
|
|
5328
5333
|
ngModule: BottomSheetModule,
|
|
5329
|
-
providers: [
|
|
5330
|
-
BottomSheetService
|
|
5331
|
-
/*
|
|
5332
|
-
{
|
|
5333
|
-
provide: BottomSheetService,
|
|
5334
|
-
deps: [MatBottomSheet, LanguageService],
|
|
5335
|
-
useClass: BottomSheetService
|
|
5336
|
-
}
|
|
5337
|
-
*/
|
|
5338
|
-
]
|
|
5334
|
+
providers: [BottomSheetService]
|
|
5339
5335
|
};
|
|
5340
5336
|
}
|
|
5341
5337
|
}
|
|
5342
5338
|
BottomSheetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5343
|
-
BottomSheetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule,
|
|
5339
|
+
BottomSheetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, imports: [CommonModule, FormsModule, MatBottomSheetModule, MatButtonModule, LanguageModule] });
|
|
5344
5340
|
BottomSheetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, imports: [IMPORTS$4] });
|
|
5345
5341
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, decorators: [{
|
|
5346
5342
|
type: NgModule,
|
|
@@ -6889,7 +6885,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
6889
6885
|
}] } });
|
|
6890
6886
|
|
|
6891
6887
|
const IMPORTS$2 = [CommonModule, FormsModule, MatButtonModule, MatDialogModule, CookieModule, LanguageModule];
|
|
6892
|
-
const ENTRY_COMPONENTS$1 = [
|
|
6888
|
+
const ENTRY_COMPONENTS$1 = [
|
|
6889
|
+
WindowQuestionComponent,
|
|
6890
|
+
WindowCloseElementComponent,
|
|
6891
|
+
WindowExpandElementComponent,
|
|
6892
|
+
WindowResizeElementComponent,
|
|
6893
|
+
WindowMinimizeElementComponent
|
|
6894
|
+
];
|
|
6893
6895
|
const DECLARATIONS$2 = [WindowDragAreaDirective, ...ENTRY_COMPONENTS$1];
|
|
6894
6896
|
const EXPORTS$1 = [...DECLARATIONS$2];
|
|
6895
6897
|
class WindowModule {
|
|
@@ -6902,20 +6904,19 @@ class WindowModule {
|
|
|
6902
6904
|
return {
|
|
6903
6905
|
ngModule: WindowModule,
|
|
6904
6906
|
providers: [WindowService]
|
|
6905
|
-
/*
|
|
6906
|
-
providers: [
|
|
6907
|
-
{
|
|
6908
|
-
provide: WindowService,
|
|
6909
|
-
deps: [MatDialog, LanguageService, CookieService],
|
|
6910
|
-
useFactory: windowServiceFactory
|
|
6911
|
-
}
|
|
6912
|
-
]
|
|
6913
|
-
*/
|
|
6914
6907
|
};
|
|
6915
6908
|
}
|
|
6916
6909
|
}
|
|
6917
6910
|
WindowModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6918
|
-
WindowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, declarations: [WindowDragAreaDirective, WindowQuestionComponent,
|
|
6911
|
+
WindowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, declarations: [WindowDragAreaDirective, WindowQuestionComponent,
|
|
6912
|
+
WindowCloseElementComponent,
|
|
6913
|
+
WindowExpandElementComponent,
|
|
6914
|
+
WindowResizeElementComponent,
|
|
6915
|
+
WindowMinimizeElementComponent], imports: [CommonModule, FormsModule, MatButtonModule, MatDialogModule, CookieModule, LanguageModule], exports: [WindowDragAreaDirective, WindowQuestionComponent,
|
|
6916
|
+
WindowCloseElementComponent,
|
|
6917
|
+
WindowExpandElementComponent,
|
|
6918
|
+
WindowResizeElementComponent,
|
|
6919
|
+
WindowMinimizeElementComponent] });
|
|
6919
6920
|
WindowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, imports: [IMPORTS$2] });
|
|
6920
6921
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, decorators: [{
|
|
6921
6922
|
type: NgModule,
|
|
@@ -9890,5 +9891,5 @@ class TransportLazyModule {
|
|
|
9890
9891
|
* Generated bundle index. Do not edit.
|
|
9891
9892
|
*/
|
|
9892
9893
|
|
|
9893
|
-
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, 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, 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, WindowElement, WindowEvent, WindowFactory, WindowImpl, WindowMinimizeElementComponent, WindowModule, WindowQuestionBaseComponent, WindowQuestionComponent, WindowResizeElementComponent, WindowService, WindowServiceEvent, cookieServiceFactory, languageServiceFactory, loggerServiceFactory, notificationServiceFactory, themeAssetServiceFactory, themeServiceFactory };
|
|
9894
|
+
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, 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, 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, WindowElement, WindowEvent, WindowExpandElementComponent, WindowFactory, WindowImpl, WindowMinimizeElementComponent, WindowModule, WindowQuestionBaseComponent, WindowQuestionComponent, WindowResizeElementComponent, WindowService, WindowServiceEvent, cookieServiceFactory, languageServiceFactory, loggerServiceFactory, notificationServiceFactory, themeAssetServiceFactory, themeServiceFactory };
|
|
9894
9895
|
//# sourceMappingURL=ts-core-angular.mjs.map
|