@ts-core/angular 13.0.52 → 13.0.55
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 +1 -0
- package/esm2020/bottomSheet/BottomSheetModule.mjs +4 -14
- package/esm2020/bottomSheet/component/BottomSheetBaseComponent.mjs +5 -1
- package/esm2020/manager/ResizeManager.mjs +5 -2
- package/esm2020/public-api.mjs +2 -1
- package/esm2020/window/IWindow.mjs +2 -1
- package/esm2020/window/WindowConfig.mjs +2 -1
- package/esm2020/window/WindowModule.mjs +18 -3
- 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 +116 -97
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +116 -97
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
- package/style/mat/vi-mat.scss +2 -2
- 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;
|
|
@@ -1884,7 +1886,10 @@ class ResizeManager {
|
|
|
1884
1886
|
destroy() {
|
|
1885
1887
|
if (!_.isNil(this.sensor)) {
|
|
1886
1888
|
this.sensor.detach(this.handler);
|
|
1887
|
-
|
|
1889
|
+
try {
|
|
1890
|
+
this.sensor.reset();
|
|
1891
|
+
}
|
|
1892
|
+
catch (error) { }
|
|
1888
1893
|
this.sensor = null;
|
|
1889
1894
|
}
|
|
1890
1895
|
if (!_.isNil(this.subject)) {
|
|
@@ -3680,7 +3685,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3680
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"] }]
|
|
3681
3686
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3682
3687
|
|
|
3683
|
-
class
|
|
3688
|
+
class WindowExpandElementComponent extends WindowElement {
|
|
3684
3689
|
// --------------------------------------------------------------------------
|
|
3685
3690
|
//
|
|
3686
3691
|
// Constructor
|
|
@@ -3688,36 +3693,19 @@ class WindowMinimizeElementComponent extends WindowElement {
|
|
|
3688
3693
|
// --------------------------------------------------------------------------
|
|
3689
3694
|
constructor(element) {
|
|
3690
3695
|
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
3696
|
}
|
|
3701
3697
|
// --------------------------------------------------------------------------
|
|
3702
3698
|
//
|
|
3703
|
-
//
|
|
3699
|
+
// Private Methods
|
|
3704
3700
|
//
|
|
3705
3701
|
// --------------------------------------------------------------------------
|
|
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
3702
|
createChildren() {
|
|
3715
3703
|
super.createChildren();
|
|
3716
|
-
if (!_.isNil(
|
|
3717
|
-
ViewUtil.setProperty(this.nativeElement, 'innerHTML',
|
|
3704
|
+
if (!_.isNil(WindowExpandElementComponent.ICON_VALUE)) {
|
|
3705
|
+
ViewUtil.setProperty(this.nativeElement, 'innerHTML', WindowExpandElementComponent.ICON_VALUE);
|
|
3718
3706
|
}
|
|
3719
|
-
if (!_.isNil(
|
|
3720
|
-
ViewUtil.addClasses(this.nativeElement,
|
|
3707
|
+
if (!_.isNil(WindowExpandElementComponent.ICON_CLASS)) {
|
|
3708
|
+
ViewUtil.addClasses(this.nativeElement, WindowExpandElementComponent.ICON_CLASS);
|
|
3721
3709
|
}
|
|
3722
3710
|
ViewUtil.addClass(this.nativeElement, 'mouse-active');
|
|
3723
3711
|
}
|
|
@@ -3729,7 +3717,7 @@ class WindowMinimizeElementComponent extends WindowElement {
|
|
|
3729
3717
|
clickHandler(event) {
|
|
3730
3718
|
super.clickHandler(event);
|
|
3731
3719
|
if (!_.isNil(this.window)) {
|
|
3732
|
-
this.window.
|
|
3720
|
+
this.window.emit(WindowEvent.EXPAND);
|
|
3733
3721
|
}
|
|
3734
3722
|
}
|
|
3735
3723
|
}
|
|
@@ -3738,14 +3726,13 @@ class WindowMinimizeElementComponent extends WindowElement {
|
|
|
3738
3726
|
// Constants
|
|
3739
3727
|
//
|
|
3740
3728
|
// --------------------------------------------------------------------------
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
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: [{
|
|
3747
3734
|
type: Component,
|
|
3748
|
-
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"] }]
|
|
3749
3736
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3750
3737
|
|
|
3751
3738
|
class WindowResizeElementComponent extends WindowElement {
|
|
@@ -3780,6 +3767,7 @@ class WindowResizeElementComponent extends WindowElement {
|
|
|
3780
3767
|
clickHandler(event) {
|
|
3781
3768
|
super.clickHandler(event);
|
|
3782
3769
|
if (!_.isNil(this.window)) {
|
|
3770
|
+
this.window.emit(WindowEvent.EXPAND);
|
|
3783
3771
|
}
|
|
3784
3772
|
}
|
|
3785
3773
|
}
|
|
@@ -3797,6 +3785,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3797
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"] }]
|
|
3798
3786
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3799
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
|
+
|
|
3800
3856
|
class WindowBase extends DestroyableContainer {
|
|
3801
3857
|
// --------------------------------------------------------------------------
|
|
3802
3858
|
//
|
|
@@ -4484,6 +4540,9 @@ class WindowBaseComponent extends WindowDragable {
|
|
|
4484
4540
|
if (this.config.isMinimizable) {
|
|
4485
4541
|
this.elementAdd(this.content.container.createComponent(WindowBaseComponent.MINIMIZE_COMPONENT));
|
|
4486
4542
|
}
|
|
4543
|
+
if (this.config.isExpandable) {
|
|
4544
|
+
this.elementAdd(this.content.container.createComponent(WindowBaseComponent.EXPAND_COMPONENT));
|
|
4545
|
+
}
|
|
4487
4546
|
}
|
|
4488
4547
|
commitIsBlinkProperties() {
|
|
4489
4548
|
ViewUtil.toggleClass(this.container, this.blinkClass, this.isBlink);
|
|
@@ -4525,6 +4584,7 @@ class WindowBaseComponent extends WindowDragable {
|
|
|
4525
4584
|
//
|
|
4526
4585
|
// --------------------------------------------------------------------------
|
|
4527
4586
|
WindowBaseComponent.CLOSE_COMPONENT = WindowCloseElementComponent;
|
|
4587
|
+
WindowBaseComponent.EXPAND_COMPONENT = WindowExpandElementComponent;
|
|
4528
4588
|
WindowBaseComponent.RESIZE_COMPONENT = WindowResizeElementComponent;
|
|
4529
4589
|
WindowBaseComponent.MINIMIZE_COMPONENT = WindowMinimizeElementComponent;
|
|
4530
4590
|
|
|
@@ -5134,6 +5194,9 @@ class BottomSheetBaseComponent extends BottomSheetImpl {
|
|
|
5134
5194
|
if (!this.config.disableClose) {
|
|
5135
5195
|
this.elementAdd(this.content.container.createComponent(BottomSheetBaseComponent.CLOSE_COMPONENT));
|
|
5136
5196
|
}
|
|
5197
|
+
if (this.config.isExpandable) {
|
|
5198
|
+
this.elementAdd(this.content.container.createComponent(BottomSheetBaseComponent.EXPAND_COMPONENT));
|
|
5199
|
+
}
|
|
5137
5200
|
}
|
|
5138
5201
|
commitIsBlinkProperties() {
|
|
5139
5202
|
ViewUtil.toggleClass(this.container, this.blinkClass, this.isBlink);
|
|
@@ -5170,6 +5233,7 @@ class BottomSheetBaseComponent extends BottomSheetImpl {
|
|
|
5170
5233
|
//
|
|
5171
5234
|
// --------------------------------------------------------------------------
|
|
5172
5235
|
BottomSheetBaseComponent.CLOSE_COMPONENT = WindowBaseComponent.CLOSE_COMPONENT;
|
|
5236
|
+
BottomSheetBaseComponent.EXPAND_COMPONENT = WindowBaseComponent.EXPAND_COMPONENT;
|
|
5173
5237
|
|
|
5174
5238
|
class BottomSheetService extends Destroyable {
|
|
5175
5239
|
// --------------------------------------------------------------------------
|
|
@@ -5257,58 +5321,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
5257
5321
|
args: [{ providedIn: 'root' }]
|
|
5258
5322
|
}], ctorParameters: function () { return [{ type: i1$2.MatBottomSheet }, { type: i1$1.LanguageService }]; } });
|
|
5259
5323
|
|
|
5260
|
-
class BottomSheetCloseElementComponent extends WindowElement {
|
|
5261
|
-
// --------------------------------------------------------------------------
|
|
5262
|
-
//
|
|
5263
|
-
// Constructor
|
|
5264
|
-
//
|
|
5265
|
-
// --------------------------------------------------------------------------
|
|
5266
|
-
constructor(element) {
|
|
5267
|
-
super(element);
|
|
5268
|
-
}
|
|
5269
|
-
// --------------------------------------------------------------------------
|
|
5270
|
-
//
|
|
5271
|
-
// Private Methods
|
|
5272
|
-
//
|
|
5273
|
-
// --------------------------------------------------------------------------
|
|
5274
|
-
createChildren() {
|
|
5275
|
-
super.createChildren();
|
|
5276
|
-
if (!_.isNil(BottomSheetCloseElementComponent.ICON_VALUE)) {
|
|
5277
|
-
ViewUtil.setProperty(this.nativeElement, 'innerHTML', BottomSheetCloseElementComponent.ICON_VALUE);
|
|
5278
|
-
}
|
|
5279
|
-
if (!_.isNil(BottomSheetCloseElementComponent.ICON_CLASS)) {
|
|
5280
|
-
ViewUtil.addClasses(this.nativeElement, BottomSheetCloseElementComponent.ICON_CLASS);
|
|
5281
|
-
}
|
|
5282
|
-
ViewUtil.addClass(this.nativeElement, 'mouse-active');
|
|
5283
|
-
}
|
|
5284
|
-
// --------------------------------------------------------------------------
|
|
5285
|
-
//
|
|
5286
|
-
// Event Handlers
|
|
5287
|
-
//
|
|
5288
|
-
// --------------------------------------------------------------------------
|
|
5289
|
-
clickHandler(event) {
|
|
5290
|
-
super.clickHandler(event);
|
|
5291
|
-
if (!_.isNil(this.window)) {
|
|
5292
|
-
this.window.close();
|
|
5293
|
-
}
|
|
5294
|
-
}
|
|
5295
|
-
}
|
|
5296
|
-
// --------------------------------------------------------------------------
|
|
5297
|
-
//
|
|
5298
|
-
// Constants
|
|
5299
|
-
//
|
|
5300
|
-
// --------------------------------------------------------------------------
|
|
5301
|
-
BottomSheetCloseElementComponent.ICON_CLASS = 'fas fa-times';
|
|
5302
|
-
BottomSheetCloseElementComponent.ICON_VALUE = null;
|
|
5303
|
-
BottomSheetCloseElementComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetCloseElementComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5304
|
-
BottomSheetCloseElementComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BottomSheetCloseElementComponent, selector: "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"] });
|
|
5305
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetCloseElementComponent, decorators: [{
|
|
5306
|
-
type: Component,
|
|
5307
|
-
args: [{ selector: '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"] }]
|
|
5308
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
5309
|
-
|
|
5310
5324
|
const IMPORTS$4 = [CommonModule, FormsModule, MatBottomSheetModule, MatButtonModule, LanguageModule];
|
|
5311
|
-
const ENTRY_COMPONENTS$3 = [
|
|
5325
|
+
const ENTRY_COMPONENTS$3 = [];
|
|
5312
5326
|
const DECLARATIONS$4 = [...ENTRY_COMPONENTS$3];
|
|
5313
5327
|
const EXPORTS$3 = [...DECLARATIONS$4];
|
|
5314
5328
|
class BottomSheetModule {
|
|
@@ -5320,21 +5334,12 @@ class BottomSheetModule {
|
|
|
5320
5334
|
static forRoot() {
|
|
5321
5335
|
return {
|
|
5322
5336
|
ngModule: BottomSheetModule,
|
|
5323
|
-
providers: [
|
|
5324
|
-
BottomSheetService
|
|
5325
|
-
/*
|
|
5326
|
-
{
|
|
5327
|
-
provide: BottomSheetService,
|
|
5328
|
-
deps: [MatBottomSheet, LanguageService],
|
|
5329
|
-
useClass: BottomSheetService
|
|
5330
|
-
}
|
|
5331
|
-
*/
|
|
5332
|
-
]
|
|
5337
|
+
providers: [BottomSheetService]
|
|
5333
5338
|
};
|
|
5334
5339
|
}
|
|
5335
5340
|
}
|
|
5336
5341
|
BottomSheetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5337
|
-
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] });
|
|
5338
5343
|
BottomSheetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, imports: [IMPORTS$4] });
|
|
5339
5344
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomSheetModule, decorators: [{
|
|
5340
5345
|
type: NgModule,
|
|
@@ -6883,7 +6888,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
6883
6888
|
}] } });
|
|
6884
6889
|
|
|
6885
6890
|
const IMPORTS$2 = [CommonModule, FormsModule, MatButtonModule, MatDialogModule, CookieModule, LanguageModule];
|
|
6886
|
-
const ENTRY_COMPONENTS$1 = [
|
|
6891
|
+
const ENTRY_COMPONENTS$1 = [
|
|
6892
|
+
WindowQuestionComponent,
|
|
6893
|
+
WindowCloseElementComponent,
|
|
6894
|
+
WindowExpandElementComponent,
|
|
6895
|
+
WindowResizeElementComponent,
|
|
6896
|
+
WindowMinimizeElementComponent
|
|
6897
|
+
];
|
|
6887
6898
|
const DECLARATIONS$2 = [WindowDragAreaDirective, ...ENTRY_COMPONENTS$1];
|
|
6888
6899
|
const EXPORTS$1 = [...DECLARATIONS$2];
|
|
6889
6900
|
class WindowModule {
|
|
@@ -6900,7 +6911,15 @@ class WindowModule {
|
|
|
6900
6911
|
}
|
|
6901
6912
|
}
|
|
6902
6913
|
WindowModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6903
|
-
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] });
|
|
6904
6923
|
WindowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, imports: [IMPORTS$2] });
|
|
6905
6924
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: WindowModule, decorators: [{
|
|
6906
6925
|
type: NgModule,
|
|
@@ -9875,5 +9894,5 @@ class TransportLazyModule {
|
|
|
9875
9894
|
* Generated bundle index. Do not edit.
|
|
9876
9895
|
*/
|
|
9877
9896
|
|
|
9878
|
-
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 };
|
|
9897
|
+
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 };
|
|
9879
9898
|
//# sourceMappingURL=ts-core-angular.mjs.map
|