@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
|
@@ -922,6 +922,7 @@ var WindowEvent;
|
|
|
922
922
|
WindowEvent["RESIZED"] = "RESIZED";
|
|
923
923
|
WindowEvent["DISABLED_CHANGED"] = "DISABLED_CHANGED";
|
|
924
924
|
WindowEvent["MINIMIZED_CHANGED"] = "MINIMIZED_CHANGED";
|
|
925
|
+
WindowEvent["EXPAND"] = "EXPAND";
|
|
925
926
|
WindowEvent["SET_ON_TOP"] = "SET_ON_TOP";
|
|
926
927
|
})(WindowEvent || (WindowEvent = {}));
|
|
927
928
|
|
|
@@ -933,6 +934,7 @@ class WindowConfig extends MatDialogConfig {
|
|
|
933
934
|
// --------------------------------------------------------------------------
|
|
934
935
|
constructor(isModal = false, isResizeable = false, width = NaN, height = NaN) {
|
|
935
936
|
super();
|
|
937
|
+
this.isExpandable = false;
|
|
936
938
|
this.isResizeable = false;
|
|
937
939
|
this.isMinimizable = false;
|
|
938
940
|
this.isContentDragable = true;
|
|
@@ -3683,7 +3685,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3683
3685
|
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"] }]
|
|
3684
3686
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3685
3687
|
|
|
3686
|
-
class
|
|
3688
|
+
class WindowExpandElementComponent extends WindowElement {
|
|
3687
3689
|
// --------------------------------------------------------------------------
|
|
3688
3690
|
//
|
|
3689
3691
|
// Constructor
|
|
@@ -3691,36 +3693,19 @@ class WindowMinimizeElementComponent extends WindowElement {
|
|
|
3691
3693
|
// --------------------------------------------------------------------------
|
|
3692
3694
|
constructor(element) {
|
|
3693
3695
|
super(element);
|
|
3694
|
-
// --------------------------------------------------------------------------
|
|
3695
|
-
//
|
|
3696
|
-
// Private Methods
|
|
3697
|
-
//
|
|
3698
|
-
// --------------------------------------------------------------------------
|
|
3699
|
-
this.commitIconProperties = () => {
|
|
3700
|
-
let icon = this.window.isMinimized ? WindowMinimizeElementComponent.ICON_MAXIMIZE_VALUE : WindowMinimizeElementComponent.ICON_MINIMIZE_VALUE;
|
|
3701
|
-
ViewUtil.setProperty(this.nativeElement, 'innerHTML', icon);
|
|
3702
|
-
};
|
|
3703
3696
|
}
|
|
3704
3697
|
// --------------------------------------------------------------------------
|
|
3705
3698
|
//
|
|
3706
|
-
//
|
|
3699
|
+
// Private Methods
|
|
3707
3700
|
//
|
|
3708
3701
|
// --------------------------------------------------------------------------
|
|
3709
|
-
commitWindowProperties() {
|
|
3710
|
-
super.commitWindowProperties();
|
|
3711
|
-
this.window.events.pipe(takeUntil(this.destroyed)).subscribe(event => {
|
|
3712
|
-
if (event === WindowEvent.MINIMIZED_CHANGED) {
|
|
3713
|
-
this.commitIconProperties();
|
|
3714
|
-
}
|
|
3715
|
-
});
|
|
3716
|
-
}
|
|
3717
3702
|
createChildren() {
|
|
3718
3703
|
super.createChildren();
|
|
3719
|
-
if (!_.isNil(
|
|
3720
|
-
ViewUtil.setProperty(this.nativeElement, 'innerHTML',
|
|
3704
|
+
if (!_.isNil(WindowExpandElementComponent.ICON_VALUE)) {
|
|
3705
|
+
ViewUtil.setProperty(this.nativeElement, 'innerHTML', WindowExpandElementComponent.ICON_VALUE);
|
|
3721
3706
|
}
|
|
3722
|
-
if (!_.isNil(
|
|
3723
|
-
ViewUtil.addClasses(this.nativeElement,
|
|
3707
|
+
if (!_.isNil(WindowExpandElementComponent.ICON_CLASS)) {
|
|
3708
|
+
ViewUtil.addClasses(this.nativeElement, WindowExpandElementComponent.ICON_CLASS);
|
|
3724
3709
|
}
|
|
3725
3710
|
ViewUtil.addClass(this.nativeElement, 'mouse-active');
|
|
3726
3711
|
}
|
|
@@ -3732,7 +3717,7 @@ class WindowMinimizeElementComponent extends WindowElement {
|
|
|
3732
3717
|
clickHandler(event) {
|
|
3733
3718
|
super.clickHandler(event);
|
|
3734
3719
|
if (!_.isNil(this.window)) {
|
|
3735
|
-
this.window.
|
|
3720
|
+
this.window.emit(WindowEvent.EXPAND);
|
|
3736
3721
|
}
|
|
3737
3722
|
}
|
|
3738
3723
|
}
|
|
@@ -3741,14 +3726,13 @@ class WindowMinimizeElementComponent extends WindowElement {
|
|
|
3741
3726
|
// Constants
|
|
3742
3727
|
//
|
|
3743
3728
|
// --------------------------------------------------------------------------
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowMinimizeElementComponent, decorators: [{
|
|
3729
|
+
WindowExpandElementComponent.ICON_CLASS = 'fas fa-angle-double-up';
|
|
3730
|
+
WindowExpandElementComponent.ICON_VALUE = null;
|
|
3731
|
+
WindowExpandElementComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowExpandElementComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
3732
|
+
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"] });
|
|
3733
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowExpandElementComponent, decorators: [{
|
|
3750
3734
|
type: Component,
|
|
3751
|
-
args: [{ selector: 'vi-window-
|
|
3735
|
+
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"] }]
|
|
3752
3736
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3753
3737
|
|
|
3754
3738
|
class WindowResizeElementComponent extends WindowElement {
|
|
@@ -3783,6 +3767,7 @@ class WindowResizeElementComponent extends WindowElement {
|
|
|
3783
3767
|
clickHandler(event) {
|
|
3784
3768
|
super.clickHandler(event);
|
|
3785
3769
|
if (!_.isNil(this.window)) {
|
|
3770
|
+
this.window.emit(WindowEvent.EXPAND);
|
|
3786
3771
|
}
|
|
3787
3772
|
}
|
|
3788
3773
|
}
|
|
@@ -3800,6 +3785,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3800
3785
|
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"] }]
|
|
3801
3786
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3802
3787
|
|
|
3788
|
+
class WindowMinimizeElementComponent extends WindowElement {
|
|
3789
|
+
// --------------------------------------------------------------------------
|
|
3790
|
+
//
|
|
3791
|
+
// Constructor
|
|
3792
|
+
//
|
|
3793
|
+
// --------------------------------------------------------------------------
|
|
3794
|
+
constructor(element) {
|
|
3795
|
+
super(element);
|
|
3796
|
+
// --------------------------------------------------------------------------
|
|
3797
|
+
//
|
|
3798
|
+
// Private Methods
|
|
3799
|
+
//
|
|
3800
|
+
// --------------------------------------------------------------------------
|
|
3801
|
+
this.commitIconProperties = () => {
|
|
3802
|
+
let icon = this.window.isMinimized ? WindowMinimizeElementComponent.ICON_MAXIMIZE_VALUE : WindowMinimizeElementComponent.ICON_MINIMIZE_VALUE;
|
|
3803
|
+
ViewUtil.setProperty(this.nativeElement, 'innerHTML', icon);
|
|
3804
|
+
};
|
|
3805
|
+
}
|
|
3806
|
+
// --------------------------------------------------------------------------
|
|
3807
|
+
//
|
|
3808
|
+
// Protected Methods
|
|
3809
|
+
//
|
|
3810
|
+
// --------------------------------------------------------------------------
|
|
3811
|
+
commitWindowProperties() {
|
|
3812
|
+
super.commitWindowProperties();
|
|
3813
|
+
this.window.events.pipe(takeUntil(this.destroyed)).subscribe(event => {
|
|
3814
|
+
if (event === WindowEvent.MINIMIZED_CHANGED) {
|
|
3815
|
+
this.commitIconProperties();
|
|
3816
|
+
}
|
|
3817
|
+
});
|
|
3818
|
+
}
|
|
3819
|
+
createChildren() {
|
|
3820
|
+
super.createChildren();
|
|
3821
|
+
if (!_.isNil(WindowMinimizeElementComponent.ICON_MINIMIZE_VALUE)) {
|
|
3822
|
+
ViewUtil.setProperty(this.nativeElement, 'innerHTML', WindowMinimizeElementComponent.ICON_MINIMIZE_VALUE);
|
|
3823
|
+
}
|
|
3824
|
+
if (!_.isNil(WindowMinimizeElementComponent.ICON_CLASS)) {
|
|
3825
|
+
ViewUtil.addClasses(this.nativeElement, WindowMinimizeElementComponent.ICON_CLASS);
|
|
3826
|
+
}
|
|
3827
|
+
ViewUtil.addClass(this.nativeElement, 'mouse-active');
|
|
3828
|
+
}
|
|
3829
|
+
// --------------------------------------------------------------------------
|
|
3830
|
+
//
|
|
3831
|
+
// Event Handlers
|
|
3832
|
+
//
|
|
3833
|
+
// --------------------------------------------------------------------------
|
|
3834
|
+
clickHandler(event) {
|
|
3835
|
+
super.clickHandler(event);
|
|
3836
|
+
if (!_.isNil(this.window)) {
|
|
3837
|
+
this.window.isMinimized = !this.window.isMinimized;
|
|
3838
|
+
}
|
|
3839
|
+
}
|
|
3840
|
+
}
|
|
3841
|
+
// --------------------------------------------------------------------------
|
|
3842
|
+
//
|
|
3843
|
+
// Constants
|
|
3844
|
+
//
|
|
3845
|
+
// --------------------------------------------------------------------------
|
|
3846
|
+
WindowMinimizeElementComponent.ICON_CLASS = null;
|
|
3847
|
+
WindowMinimizeElementComponent.ICON_MINIMIZE_VALUE = null;
|
|
3848
|
+
WindowMinimizeElementComponent.ICON_MAXIMIZE_VALUE = null;
|
|
3849
|
+
WindowMinimizeElementComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowMinimizeElementComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
3850
|
+
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"] });
|
|
3851
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowMinimizeElementComponent, decorators: [{
|
|
3852
|
+
type: Component,
|
|
3853
|
+
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"] }]
|
|
3854
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3855
|
+
|
|
3803
3856
|
class WindowBase extends DestroyableContainer {
|
|
3804
3857
|
// --------------------------------------------------------------------------
|
|
3805
3858
|
//
|
|
@@ -4070,12 +4123,6 @@ class WindowImpl extends WindowBase {
|
|
|
4070
4123
|
if (!this.config.isModal) {
|
|
4071
4124
|
this.container.addEventListener('mousedown', this.mouseDownHandlerProxy);
|
|
4072
4125
|
}
|
|
4073
|
-
/*
|
|
4074
|
-
if (!this.config.isModal) {
|
|
4075
|
-
this.container.addEventListener('click', this.mouseClickHandlerProxy, true);
|
|
4076
|
-
this.container.addEventListener('mousedown', this.mouseDownHandlerProxy);
|
|
4077
|
-
}
|
|
4078
|
-
*/
|
|
4079
4126
|
this.elementsCreate();
|
|
4080
4127
|
}
|
|
4081
4128
|
commitIsBlinkProperties() { }
|
|
@@ -4493,6 +4540,9 @@ class WindowBaseComponent extends WindowDragable {
|
|
|
4493
4540
|
if (this.config.isMinimizable) {
|
|
4494
4541
|
this.elementAdd(this.content.container.createComponent(WindowBaseComponent.MINIMIZE_COMPONENT));
|
|
4495
4542
|
}
|
|
4543
|
+
if (this.config.isExpandable) {
|
|
4544
|
+
this.elementAdd(this.content.container.createComponent(WindowBaseComponent.EXPAND_COMPONENT));
|
|
4545
|
+
}
|
|
4496
4546
|
}
|
|
4497
4547
|
commitIsBlinkProperties() {
|
|
4498
4548
|
ViewUtil.toggleClass(this.container, this.blinkClass, this.isBlink);
|
|
@@ -4534,6 +4584,7 @@ class WindowBaseComponent extends WindowDragable {
|
|
|
4534
4584
|
//
|
|
4535
4585
|
// --------------------------------------------------------------------------
|
|
4536
4586
|
WindowBaseComponent.CLOSE_COMPONENT = WindowCloseElementComponent;
|
|
4587
|
+
WindowBaseComponent.EXPAND_COMPONENT = WindowExpandElementComponent;
|
|
4537
4588
|
WindowBaseComponent.RESIZE_COMPONENT = WindowResizeElementComponent;
|
|
4538
4589
|
WindowBaseComponent.MINIMIZE_COMPONENT = WindowMinimizeElementComponent;
|
|
4539
4590
|
|
|
@@ -4944,8 +4995,8 @@ class BottomSheetImpl extends DestroyableContainer {
|
|
|
4944
4995
|
setProperties() {
|
|
4945
4996
|
ViewUtil.addClass(this.container, 'vi-bottom-sheet');
|
|
4946
4997
|
ViewUtil.toggleClass(this.container, 'vi-modal', this.config.isModal);
|
|
4998
|
+
this.container.addEventListener('click', this.mouseClickHandlerProxy, true);
|
|
4947
4999
|
if (!this.config.isModal) {
|
|
4948
|
-
this.container.addEventListener('click', this.mouseClickHandlerProxy, true);
|
|
4949
5000
|
this.container.addEventListener('mousedown', this.mouseDownHandlerProxy);
|
|
4950
5001
|
}
|
|
4951
5002
|
}
|
|
@@ -5129,56 +5180,6 @@ class BottomSheetImpl extends DestroyableContainer {
|
|
|
5129
5180
|
BottomSheetImpl.BLINK_DELAY = 500;
|
|
5130
5181
|
BottomSheetImpl.SHAKE_DELAY = 500;
|
|
5131
5182
|
|
|
5132
|
-
class BottomSheetCloseElementComponent extends WindowElement {
|
|
5133
|
-
// --------------------------------------------------------------------------
|
|
5134
|
-
//
|
|
5135
|
-
// Constructor
|
|
5136
|
-
//
|
|
5137
|
-
// --------------------------------------------------------------------------
|
|
5138
|
-
constructor(element) {
|
|
5139
|
-
super(element);
|
|
5140
|
-
}
|
|
5141
|
-
// --------------------------------------------------------------------------
|
|
5142
|
-
//
|
|
5143
|
-
// Private Methods
|
|
5144
|
-
//
|
|
5145
|
-
// --------------------------------------------------------------------------
|
|
5146
|
-
createChildren() {
|
|
5147
|
-
super.createChildren();
|
|
5148
|
-
if (!_.isNil(BottomSheetCloseElementComponent.ICON_VALUE)) {
|
|
5149
|
-
ViewUtil.setProperty(this.nativeElement, 'innerHTML', BottomSheetCloseElementComponent.ICON_VALUE);
|
|
5150
|
-
}
|
|
5151
|
-
if (!_.isNil(BottomSheetCloseElementComponent.ICON_CLASS)) {
|
|
5152
|
-
ViewUtil.addClasses(this.nativeElement, BottomSheetCloseElementComponent.ICON_CLASS);
|
|
5153
|
-
}
|
|
5154
|
-
ViewUtil.addClass(this.nativeElement, 'mouse-active');
|
|
5155
|
-
}
|
|
5156
|
-
// --------------------------------------------------------------------------
|
|
5157
|
-
//
|
|
5158
|
-
// Event Handlers
|
|
5159
|
-
//
|
|
5160
|
-
// --------------------------------------------------------------------------
|
|
5161
|
-
clickHandler(event) {
|
|
5162
|
-
super.clickHandler(event);
|
|
5163
|
-
if (!_.isNil(this.window)) {
|
|
5164
|
-
this.window.close();
|
|
5165
|
-
}
|
|
5166
|
-
}
|
|
5167
|
-
}
|
|
5168
|
-
// --------------------------------------------------------------------------
|
|
5169
|
-
//
|
|
5170
|
-
// Constants
|
|
5171
|
-
//
|
|
5172
|
-
// --------------------------------------------------------------------------
|
|
5173
|
-
BottomSheetCloseElementComponent.ICON_CLASS = 'fas fa-times';
|
|
5174
|
-
BottomSheetCloseElementComponent.ICON_VALUE = null;
|
|
5175
|
-
BottomSheetCloseElementComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetCloseElementComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5176
|
-
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"] });
|
|
5177
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetCloseElementComponent, decorators: [{
|
|
5178
|
-
type: Component,
|
|
5179
|
-
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"] }]
|
|
5180
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
5181
|
-
|
|
5182
5183
|
class BottomSheetBaseComponent extends BottomSheetImpl {
|
|
5183
5184
|
// --------------------------------------------------------------------------
|
|
5184
5185
|
//
|
|
@@ -5193,6 +5194,9 @@ class BottomSheetBaseComponent extends BottomSheetImpl {
|
|
|
5193
5194
|
if (!this.config.disableClose) {
|
|
5194
5195
|
this.elementAdd(this.content.container.createComponent(BottomSheetBaseComponent.CLOSE_COMPONENT));
|
|
5195
5196
|
}
|
|
5197
|
+
if (this.config.isExpandable) {
|
|
5198
|
+
this.elementAdd(this.content.container.createComponent(BottomSheetBaseComponent.EXPAND_COMPONENT));
|
|
5199
|
+
}
|
|
5196
5200
|
}
|
|
5197
5201
|
commitIsBlinkProperties() {
|
|
5198
5202
|
ViewUtil.toggleClass(this.container, this.blinkClass, this.isBlink);
|
|
@@ -5228,7 +5232,8 @@ class BottomSheetBaseComponent extends BottomSheetImpl {
|
|
|
5228
5232
|
// Static Properties
|
|
5229
5233
|
//
|
|
5230
5234
|
// --------------------------------------------------------------------------
|
|
5231
|
-
BottomSheetBaseComponent.CLOSE_COMPONENT =
|
|
5235
|
+
BottomSheetBaseComponent.CLOSE_COMPONENT = WindowBaseComponent.CLOSE_COMPONENT;
|
|
5236
|
+
BottomSheetBaseComponent.EXPAND_COMPONENT = WindowBaseComponent.EXPAND_COMPONENT;
|
|
5232
5237
|
|
|
5233
5238
|
class BottomSheetService extends Destroyable {
|
|
5234
5239
|
// --------------------------------------------------------------------------
|
|
@@ -5317,7 +5322,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
5317
5322
|
}], ctorParameters: function () { return [{ type: i1$2.MatBottomSheet }, { type: i1$1.LanguageService }]; } });
|
|
5318
5323
|
|
|
5319
5324
|
const IMPORTS$4 = [CommonModule, FormsModule, MatBottomSheetModule, MatButtonModule, LanguageModule];
|
|
5320
|
-
const ENTRY_COMPONENTS$3 = [
|
|
5325
|
+
const ENTRY_COMPONENTS$3 = [];
|
|
5321
5326
|
const DECLARATIONS$4 = [...ENTRY_COMPONENTS$3];
|
|
5322
5327
|
const EXPORTS$3 = [...DECLARATIONS$4];
|
|
5323
5328
|
class BottomSheetModule {
|
|
@@ -5329,21 +5334,12 @@ class BottomSheetModule {
|
|
|
5329
5334
|
static forRoot() {
|
|
5330
5335
|
return {
|
|
5331
5336
|
ngModule: BottomSheetModule,
|
|
5332
|
-
providers: [
|
|
5333
|
-
BottomSheetService
|
|
5334
|
-
/*
|
|
5335
|
-
{
|
|
5336
|
-
provide: BottomSheetService,
|
|
5337
|
-
deps: [MatBottomSheet, LanguageService],
|
|
5338
|
-
useClass: BottomSheetService
|
|
5339
|
-
}
|
|
5340
|
-
*/
|
|
5341
|
-
]
|
|
5337
|
+
providers: [BottomSheetService]
|
|
5342
5338
|
};
|
|
5343
5339
|
}
|
|
5344
5340
|
}
|
|
5345
5341
|
BottomSheetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5346
|
-
BottomSheetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule,
|
|
5342
|
+
BottomSheetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, imports: [CommonModule, FormsModule, MatBottomSheetModule, MatButtonModule, LanguageModule] });
|
|
5347
5343
|
BottomSheetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, imports: [IMPORTS$4] });
|
|
5348
5344
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, decorators: [{
|
|
5349
5345
|
type: NgModule,
|
|
@@ -6892,7 +6888,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
6892
6888
|
}] } });
|
|
6893
6889
|
|
|
6894
6890
|
const IMPORTS$2 = [CommonModule, FormsModule, MatButtonModule, MatDialogModule, CookieModule, LanguageModule];
|
|
6895
|
-
const ENTRY_COMPONENTS$1 = [
|
|
6891
|
+
const ENTRY_COMPONENTS$1 = [
|
|
6892
|
+
WindowQuestionComponent,
|
|
6893
|
+
WindowCloseElementComponent,
|
|
6894
|
+
WindowExpandElementComponent,
|
|
6895
|
+
WindowResizeElementComponent,
|
|
6896
|
+
WindowMinimizeElementComponent
|
|
6897
|
+
];
|
|
6896
6898
|
const DECLARATIONS$2 = [WindowDragAreaDirective, ...ENTRY_COMPONENTS$1];
|
|
6897
6899
|
const EXPORTS$1 = [...DECLARATIONS$2];
|
|
6898
6900
|
class WindowModule {
|
|
@@ -6905,20 +6907,19 @@ class WindowModule {
|
|
|
6905
6907
|
return {
|
|
6906
6908
|
ngModule: WindowModule,
|
|
6907
6909
|
providers: [WindowService]
|
|
6908
|
-
/*
|
|
6909
|
-
providers: [
|
|
6910
|
-
{
|
|
6911
|
-
provide: WindowService,
|
|
6912
|
-
deps: [MatDialog, LanguageService, CookieService],
|
|
6913
|
-
useFactory: windowServiceFactory
|
|
6914
|
-
}
|
|
6915
|
-
]
|
|
6916
|
-
*/
|
|
6917
6910
|
};
|
|
6918
6911
|
}
|
|
6919
6912
|
}
|
|
6920
6913
|
WindowModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6921
|
-
WindowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, declarations: [WindowDragAreaDirective, WindowQuestionComponent,
|
|
6914
|
+
WindowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, declarations: [WindowDragAreaDirective, WindowQuestionComponent,
|
|
6915
|
+
WindowCloseElementComponent,
|
|
6916
|
+
WindowExpandElementComponent,
|
|
6917
|
+
WindowResizeElementComponent,
|
|
6918
|
+
WindowMinimizeElementComponent], imports: [CommonModule, FormsModule, MatButtonModule, MatDialogModule, CookieModule, LanguageModule], exports: [WindowDragAreaDirective, WindowQuestionComponent,
|
|
6919
|
+
WindowCloseElementComponent,
|
|
6920
|
+
WindowExpandElementComponent,
|
|
6921
|
+
WindowResizeElementComponent,
|
|
6922
|
+
WindowMinimizeElementComponent] });
|
|
6922
6923
|
WindowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, imports: [IMPORTS$2] });
|
|
6923
6924
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, decorators: [{
|
|
6924
6925
|
type: NgModule,
|
|
@@ -9937,5 +9938,5 @@ class TransportLazyModule {
|
|
|
9937
9938
|
* Generated bundle index. Do not edit.
|
|
9938
9939
|
*/
|
|
9939
9940
|
|
|
9940
|
-
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 };
|
|
9941
|
+
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 };
|
|
9941
9942
|
//# sourceMappingURL=ts-core-angular.mjs.map
|