@ng-matero/extensions 12.6.0 → 12.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/bundles/mtxColorpicker.umd.js +25 -8
  2. package/bundles/mtxColorpicker.umd.js.map +1 -1
  3. package/bundles/mtxDatetimepicker.umd.js +1 -1
  4. package/bundles/mtxDatetimepicker.umd.js.map +1 -1
  5. package/bundles/mtxLoader.umd.js +7 -4
  6. package/bundles/mtxLoader.umd.js.map +1 -1
  7. package/bundles/mtxSplit.umd.js +80 -68
  8. package/bundles/mtxSplit.umd.js.map +1 -1
  9. package/colorpicker/colorpicker-input.d.ts +3 -0
  10. package/colorpicker/colorpicker-toggle.d.ts +2 -3
  11. package/colorpicker/colorpicker.d.ts +6 -2
  12. package/colorpicker/mtxColorpicker.metadata.json +1 -1
  13. package/colorpicker/public-api.d.ts +1 -1
  14. package/datetimepicker/mtxDatetimepicker.metadata.json +1 -1
  15. package/esm2015/colorpicker/colorpicker-input.js +4 -1
  16. package/esm2015/colorpicker/colorpicker-toggle.js +2 -3
  17. package/esm2015/colorpicker/colorpicker.js +18 -7
  18. package/esm2015/colorpicker/public-api.js +1 -1
  19. package/esm2015/datetimepicker/datetimepicker-toggle.js +2 -2
  20. package/esm2015/loader/loader.component.js +8 -5
  21. package/esm2015/split/split.component.js +13 -3
  22. package/fesm2015/mtxColorpicker.js +21 -8
  23. package/fesm2015/mtxColorpicker.js.map +1 -1
  24. package/fesm2015/mtxDatetimepicker.js +1 -1
  25. package/fesm2015/mtxDatetimepicker.js.map +1 -1
  26. package/fesm2015/mtxLoader.js +7 -4
  27. package/fesm2015/mtxLoader.js.map +1 -1
  28. package/fesm2015/mtxSplit.js +12 -2
  29. package/fesm2015/mtxSplit.js.map +1 -1
  30. package/loader/loader.component.d.ts +4 -1
  31. package/loader/mtxLoader.metadata.json +1 -1
  32. package/package.json +1 -1
  33. package/split/_split-theme.scss +9 -2
  34. package/split/mtxSplit.metadata.json +1 -1
  35. package/split/split.component.d.ts +9 -1
@@ -10,10 +10,13 @@
10
10
  this.type = 'spinner';
11
11
  this.color = 'primary';
12
12
  this.mode = 'indeterminate';
13
+ /** Only support `spinner` type */
14
+ this.strokeWidth = 4;
15
+ /** Only support `spinner` type */
16
+ this.diameter = 48;
17
+ /** Only support `progresbar` type */
18
+ this.bufferValue = 0;
13
19
  this.value = 0;
14
- this.strokeWidth = 4; // only support spinner
15
- this.diameter = 48; // only support spinner
16
- this.bufferValue = 0; // only support progresbar
17
20
  this._loading = true;
18
21
  this._hasBackdrop = true;
19
22
  }
@@ -69,10 +72,10 @@
69
72
  type: [{ type: core.Input }],
70
73
  color: [{ type: core.Input }],
71
74
  mode: [{ type: core.Input }],
72
- value: [{ type: core.Input }],
73
75
  strokeWidth: [{ type: core.Input }],
74
76
  diameter: [{ type: core.Input }],
75
77
  bufferValue: [{ type: core.Input }],
78
+ value: [{ type: core.Input }],
76
79
  loading: [{ type: core.Input }],
77
80
  hasBackdrop: [{ type: core.Input }]
78
81
  };
@@ -1 +1 @@
1
- {"version":3,"file":"mtxLoader.umd.js","sources":["../../../projects/extensions/loader/loader.component.ts","../../../projects/extensions/loader/loader.module.ts","../../../projects/extensions/loader/mtxLoader.ts"],"sourcesContent":["import {\n Component,\n ChangeDetectionStrategy,\n ViewEncapsulation,\n Input,\n ChangeDetectorRef,\n} from '@angular/core';\nimport { BooleanInput, coerceBooleanProperty } from '@angular/cdk/coercion';\nimport { ThemePalette } from '@angular/material/core';\nimport { ProgressBarMode } from '@angular/material/progress-bar';\nimport { ProgressSpinnerMode } from '@angular/material/progress-spinner';\n\nexport type MtxLoaderType = 'spinner' | 'progressbar';\n\n@Component({\n selector: 'mtx-loader',\n exportAs: 'mtxLoader',\n host: {\n 'class': 'mtx-loader',\n '[class.mtx-loader-loading]': 'loading',\n },\n templateUrl: './loader.component.html',\n styleUrls: ['./loader.component.scss'],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class MtxLoaderComponent {\n @Input() type: MtxLoaderType = 'spinner';\n @Input() color: ThemePalette = 'primary';\n @Input() mode: ProgressSpinnerMode | ProgressBarMode = 'indeterminate';\n @Input() value = 0;\n @Input() strokeWidth = 4; // only support spinner\n @Input() diameter = 48; // only support spinner\n @Input() bufferValue = 0; // only support progresbar\n @Input()\n get loading(): boolean {\n return this._loading;\n }\n set loading(value: boolean) {\n this._loading = coerceBooleanProperty(value);\n }\n private _loading = true;\n\n @Input()\n get hasBackdrop(): boolean {\n return this._hasBackdrop;\n }\n set hasBackdrop(value: boolean) {\n this._hasBackdrop = coerceBooleanProperty(value);\n }\n private _hasBackdrop = true;\n\n constructor(private _changeDetectorRef: ChangeDetectorRef) {}\n\n static ngAcceptInputType_loading: BooleanInput;\n static ngAcceptInputType_hasBackdrop: BooleanInput;\n}\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { MatProgressBarModule } from '@angular/material/progress-bar';\r\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\r\n\r\nimport { MtxLoaderComponent } from './loader.component';\r\n\r\n@NgModule({\r\n imports: [CommonModule, MatProgressSpinnerModule, MatProgressBarModule],\r\n exports: [MtxLoaderComponent],\r\n declarations: [MtxLoaderComponent],\r\n})\r\nexport class MtxLoaderModule {}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["coerceBooleanProperty","Component","ViewEncapsulation","ChangeDetectionStrategy","ChangeDetectorRef","Input","NgModule","CommonModule","MatProgressSpinnerModule","MatProgressBarModule"],"mappings":";;;;;;;QAoDE,4BAAoB,kBAAqC;YAArC,uBAAkB,GAAlB,kBAAkB,CAAmB;YAzBhD,SAAI,GAAkB,SAAS,CAAC;YAChC,UAAK,GAAiB,SAAS,CAAC;YAChC,SAAI,GAA0C,eAAe,CAAC;YAC9D,UAAK,GAAG,CAAC,CAAC;YACV,gBAAW,GAAG,CAAC,CAAC;YAChB,aAAQ,GAAG,EAAE,CAAC;YACd,gBAAW,GAAG,CAAC,CAAC;YAQjB,aAAQ,GAAG,IAAI,CAAC;YAShB,iBAAY,GAAG,IAAI,CAAC;SAEiC;QAlB7D,sBACI,uCAAO;iBADX;gBAEE,OAAO,IAAI,CAAC,QAAQ,CAAC;aACtB;iBACD,UAAY,KAAc;gBACxB,IAAI,CAAC,QAAQ,GAAGA,8BAAqB,CAAC,KAAK,CAAC,CAAC;aAC9C;;;WAHA;QAMD,sBACI,2CAAW;iBADf;gBAEE,OAAO,IAAI,CAAC,YAAY,CAAC;aAC1B;iBACD,UAAgB,KAAc;gBAC5B,IAAI,CAAC,YAAY,GAAGA,8BAAqB,CAAC,KAAK,CAAC,CAAC;aAClD;;;WAHA;;;;;gBAhCFC,cAAS,SAAC;oBACT,QAAQ,EAAE,YAAY;oBACtB,QAAQ,EAAE,WAAW;oBACrB,IAAI,EAAE;wBACJ,OAAO,EAAE,YAAY;wBACrB,4BAA4B,EAAE,SAAS;qBACxC;oBACD,0sBAAsC;oBAEtC,aAAa,EAAEC,sBAAiB,CAAC,IAAI;oBACrC,eAAe,EAAEC,4BAAuB,CAAC,MAAM;;iBAChD;;;;;;;;;;gBApBCC,sBAAiB;;;;uBAsBhBC,UAAK;wBACLA,UAAK;uBACLA,UAAK;wBACLA,UAAK;8BACLA,UAAK;2BACLA,UAAK;8BACLA,UAAK;0BACLA,UAAK;8BASLA,UAAK;;;;QC/BR;;;;;;gBALCC,aAAQ,SAAC;oBACR,OAAO,EAAE,CAACC,mBAAY,EAAEC,wCAAwB,EAAEC,gCAAoB,CAAC;oBACvE,OAAO,EAAE,CAAC,kBAAkB,CAAC;oBAC7B,YAAY,EAAE,CAAC,kBAAkB,CAAC;iBACnC;;;ICXD;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"mtxLoader.umd.js","sources":["../../../projects/extensions/loader/loader.component.ts","../../../projects/extensions/loader/loader.module.ts","../../../projects/extensions/loader/mtxLoader.ts"],"sourcesContent":["import {\n Component,\n ChangeDetectionStrategy,\n ViewEncapsulation,\n Input,\n ChangeDetectorRef,\n} from '@angular/core';\nimport { BooleanInput, coerceBooleanProperty } from '@angular/cdk/coercion';\nimport { ThemePalette } from '@angular/material/core';\nimport { ProgressBarMode } from '@angular/material/progress-bar';\nimport { ProgressSpinnerMode } from '@angular/material/progress-spinner';\n\nexport type MtxLoaderType = 'spinner' | 'progressbar';\n\n@Component({\n selector: 'mtx-loader',\n exportAs: 'mtxLoader',\n host: {\n 'class': 'mtx-loader',\n '[class.mtx-loader-loading]': 'loading',\n },\n templateUrl: './loader.component.html',\n styleUrls: ['./loader.component.scss'],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class MtxLoaderComponent {\n @Input() type: MtxLoaderType = 'spinner';\n\n @Input() color: ThemePalette = 'primary';\n\n @Input() mode: ProgressSpinnerMode | ProgressBarMode = 'indeterminate';\n\n /** Only support `spinner` type */\n @Input() strokeWidth = 4;\n\n /** Only support `spinner` type */\n @Input() diameter = 48;\n\n /** Only support `progresbar` type */\n @Input() bufferValue = 0;\n\n @Input() value = 0;\n\n @Input()\n get loading(): boolean {\n return this._loading;\n }\n set loading(value: boolean) {\n this._loading = coerceBooleanProperty(value);\n }\n private _loading = true;\n\n @Input()\n get hasBackdrop(): boolean {\n return this._hasBackdrop;\n }\n set hasBackdrop(value: boolean) {\n this._hasBackdrop = coerceBooleanProperty(value);\n }\n private _hasBackdrop = true;\n\n constructor(private _changeDetectorRef: ChangeDetectorRef) {}\n\n static ngAcceptInputType_loading: BooleanInput;\n static ngAcceptInputType_hasBackdrop: BooleanInput;\n}\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { MatProgressBarModule } from '@angular/material/progress-bar';\r\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\r\n\r\nimport { MtxLoaderComponent } from './loader.component';\r\n\r\n@NgModule({\r\n imports: [CommonModule, MatProgressSpinnerModule, MatProgressBarModule],\r\n exports: [MtxLoaderComponent],\r\n declarations: [MtxLoaderComponent],\r\n})\r\nexport class MtxLoaderModule {}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["coerceBooleanProperty","Component","ViewEncapsulation","ChangeDetectionStrategy","ChangeDetectorRef","Input","NgModule","CommonModule","MatProgressSpinnerModule","MatProgressBarModule"],"mappings":";;;;;;;QA8DE,4BAAoB,kBAAqC;YAArC,uBAAkB,GAAlB,kBAAkB,CAAmB;YAnChD,SAAI,GAAkB,SAAS,CAAC;YAEhC,UAAK,GAAiB,SAAS,CAAC;YAEhC,SAAI,GAA0C,eAAe,CAAC;;YAG9D,gBAAW,GAAG,CAAC,CAAC;;YAGhB,aAAQ,GAAG,EAAE,CAAC;;YAGd,gBAAW,GAAG,CAAC,CAAC;YAEhB,UAAK,GAAG,CAAC,CAAC;YASX,aAAQ,GAAG,IAAI,CAAC;YAShB,iBAAY,GAAG,IAAI,CAAC;SAEiC;QAlB7D,sBACI,uCAAO;iBADX;gBAEE,OAAO,IAAI,CAAC,QAAQ,CAAC;aACtB;iBACD,UAAY,KAAc;gBACxB,IAAI,CAAC,QAAQ,GAAGA,8BAAqB,CAAC,KAAK,CAAC,CAAC;aAC9C;;;WAHA;QAMD,sBACI,2CAAW;iBADf;gBAEE,OAAO,IAAI,CAAC,YAAY,CAAC;aAC1B;iBACD,UAAgB,KAAc;gBAC5B,IAAI,CAAC,YAAY,GAAGA,8BAAqB,CAAC,KAAK,CAAC,CAAC;aAClD;;;WAHA;;;;;gBA1CFC,cAAS,SAAC;oBACT,QAAQ,EAAE,YAAY;oBACtB,QAAQ,EAAE,WAAW;oBACrB,IAAI,EAAE;wBACJ,OAAO,EAAE,YAAY;wBACrB,4BAA4B,EAAE,SAAS;qBACxC;oBACD,0sBAAsC;oBAEtC,aAAa,EAAEC,sBAAiB,CAAC,IAAI;oBACrC,eAAe,EAAEC,4BAAuB,CAAC,MAAM;;iBAChD;;;;;;;;;;gBApBCC,sBAAiB;;;;uBAsBhBC,UAAK;wBAELA,UAAK;uBAELA,UAAK;8BAGLA,UAAK;2BAGLA,UAAK;8BAGLA,UAAK;wBAELA,UAAK;0BAELA,UAAK;8BASLA,UAAK;;;;QCzCR;;;;;;gBALCC,aAAQ,SAAC;oBACR,OAAO,EAAE,CAACC,mBAAY,EAAEC,wCAAwB,EAAEC,gCAAoB,CAAC;oBACvE,OAAO,EAAE,CAAC,kBAAkB,CAAC;oBAC7B,YAAY,EAAE,CAAC,kBAAkB,CAAC;iBACnC;;;ICXD;;;;;;;;;;;;;"}
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('rxjs'), require('rxjs/operators')) :
3
- typeof define === 'function' && define.amd ? define('@ng-matero/extensions/split', ['exports', '@angular/core', '@angular/common', 'rxjs', 'rxjs/operators'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global["ng-matero"] = global["ng-matero"] || {}, global["ng-matero"].extensions = global["ng-matero"].extensions || {}, global["ng-matero"].extensions.split = {}), global.ng.core, global.ng.common, global.rxjs, global.rxjs.operators));
5
- })(this, (function (exports, core, common, rxjs, operators) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('@angular/material/core'), require('rxjs'), require('rxjs/operators')) :
3
+ typeof define === 'function' && define.amd ? define('@ng-matero/extensions/split', ['exports', '@angular/core', '@angular/common', '@angular/material/core', 'rxjs', 'rxjs/operators'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global["ng-matero"] = global["ng-matero"] || {}, global["ng-matero"].extensions = global["ng-matero"].extensions || {}, global["ng-matero"].extensions.split = {}), global.ng.core, global.ng.common, global.ng.material.core, global.rxjs, global.rxjs.operators));
5
+ })(this, (function (exports, core$1, common, core, rxjs, operators) { 'use strict';
6
6
 
7
7
  function getPointFromEvent(event) {
8
8
  // TouchEvent
@@ -544,6 +544,14 @@
544
544
  return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
545
545
  }
546
546
 
547
+ // Boilerplate for applying mixins to _MtxSplitComponentBase.
548
+ /** @docs-private */
549
+ var _MtxSplitComponentBase = core.mixinColor(/** @class */ (function () {
550
+ function class_1(_elementRef) {
551
+ this._elementRef = _elementRef;
552
+ }
553
+ return class_1;
554
+ }()));
547
555
  /**
548
556
  * mtx-split
549
557
  *
@@ -573,47 +581,50 @@
573
581
  * 800px <-- el.getBoundingClientRect().width
574
582
  *
575
583
  */
576
- var MtxSplitComponent = /** @class */ (function () {
584
+ var MtxSplitComponent = /** @class */ (function (_super) {
585
+ __extends(MtxSplitComponent, _super);
577
586
  function MtxSplitComponent(ngZone, elRef, cdRef, renderer) {
578
- this.ngZone = ngZone;
579
- this.elRef = elRef;
580
- this.cdRef = cdRef;
581
- this.renderer = renderer;
582
- this._direction = 'horizontal';
587
+ var _this = _super.call(this, elRef) || this;
588
+ _this.ngZone = ngZone;
589
+ _this.elRef = elRef;
590
+ _this.cdRef = cdRef;
591
+ _this.renderer = renderer;
592
+ _this._direction = 'horizontal';
583
593
  ////
584
- this._unit = 'percent';
594
+ _this._unit = 'percent';
585
595
  ////
586
- this._gutterSize = 4;
596
+ _this._gutterSize = 4;
587
597
  ////
588
- this._gutterStep = 1;
598
+ _this._gutterStep = 1;
589
599
  ////
590
- this._restrictMove = false;
600
+ _this._restrictMove = false;
591
601
  ////
592
- this._useTransition = false;
602
+ _this._useTransition = false;
593
603
  ////
594
- this._disabled = false;
604
+ _this._disabled = false;
595
605
  ////
596
- this._dir = 'ltr';
606
+ _this._dir = 'ltr';
597
607
  ////
598
- this._gutterDblClickDuration = 0;
608
+ _this._gutterDblClickDuration = 0;
599
609
  ////
600
- this.dragStart = new core.EventEmitter(false);
601
- this.dragEnd = new core.EventEmitter(false);
602
- this.gutterClick = new core.EventEmitter(false);
603
- this.gutterDblClick = new core.EventEmitter(false);
604
- this.dragProgressSubject = new rxjs.Subject();
605
- this.dragProgress$ = this.dragProgressSubject.asObservable();
610
+ _this.dragStart = new core$1.EventEmitter(false);
611
+ _this.dragEnd = new core$1.EventEmitter(false);
612
+ _this.gutterClick = new core$1.EventEmitter(false);
613
+ _this.gutterDblClick = new core$1.EventEmitter(false);
614
+ _this.dragProgressSubject = new rxjs.Subject();
615
+ _this.dragProgress$ = _this.dragProgressSubject.asObservable();
606
616
  ////
607
- this.isDragging = false;
608
- this.dragListeners = [];
609
- this.snapshot = null;
610
- this.startPoint = null;
611
- this.endPoint = null;
612
- this.displayedAreas = [];
613
- this.hidedAreas = [];
614
- this._clickTimeout = null;
617
+ _this.isDragging = false;
618
+ _this.dragListeners = [];
619
+ _this.snapshot = null;
620
+ _this.startPoint = null;
621
+ _this.endPoint = null;
622
+ _this.displayedAreas = [];
623
+ _this.hidedAreas = [];
624
+ _this._clickTimeout = null;
615
625
  // To force adding default class, could be override by user @Input() or not
616
- this.direction = this._direction;
626
+ _this.direction = _this._direction;
627
+ return _this;
617
628
  }
618
629
  Object.defineProperty(MtxSplitComponent.prototype, "direction", {
619
630
  get: function () {
@@ -1155,18 +1166,19 @@
1155
1166
  this.stopDragging();
1156
1167
  };
1157
1168
  return MtxSplitComponent;
1158
- }());
1169
+ }(_MtxSplitComponentBase));
1159
1170
  /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1160
1171
  MtxSplitComponent.decorators = [
1161
- { type: core.Component, args: [{
1172
+ { type: core$1.Component, args: [{
1162
1173
  selector: 'mtx-split',
1163
1174
  exportAs: 'mtxSplit',
1164
1175
  host: {
1165
1176
  class: 'mtx-split',
1166
1177
  },
1167
- encapsulation: core.ViewEncapsulation.None,
1168
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1169
- template: "<ng-content></ng-content>\r\n<ng-template ngFor [ngForOf]=\"displayedAreas\" let-index=\"index\" let-last=\"last\">\r\n <div #gutterEls class=\"mtx-split-gutter\"\r\n *ngIf=\"last === false\"\r\n [style.flex-basis.px]=\"gutterSize\"\r\n [style.order]=\"index * 2 + 1\"\r\n (mousedown)=\"startDragging($event, index * 2 + 1, index + 1)\"\r\n (touchstart)=\"startDragging($event, index * 2 + 1, index + 1)\"\r\n (mouseup)=\"clickGutter($event, index + 1)\"\r\n (touchend)=\"clickGutter($event, index + 1)\">\r\n <div class=\"mtx-split-gutter-handle\"></div>\r\n </div>\r\n</ng-template>\r\n",
1178
+ encapsulation: core$1.ViewEncapsulation.None,
1179
+ changeDetection: core$1.ChangeDetectionStrategy.OnPush,
1180
+ template: "<ng-content></ng-content>\r\n<ng-template ngFor [ngForOf]=\"displayedAreas\" let-index=\"index\" let-last=\"last\">\r\n <div #gutterEls class=\"mtx-split-gutter\" [ngClass]=\"['mat-' + color]\"\r\n *ngIf=\"last === false\"\r\n [style.flex-basis.px]=\"gutterSize\"\r\n [style.order]=\"index * 2 + 1\"\r\n (mousedown)=\"startDragging($event, index * 2 + 1, index + 1)\"\r\n (touchstart)=\"startDragging($event, index * 2 + 1, index + 1)\"\r\n (mouseup)=\"clickGutter($event, index + 1)\"\r\n (touchend)=\"clickGutter($event, index + 1)\">\r\n <div class=\"mtx-split-gutter-handle\"></div>\r\n </div>\r\n</ng-template>\r\n",
1181
+ inputs: ['color'],
1170
1182
  styles: [".mtx-split{display:flex;flex-wrap:nowrap;justify-content:flex-start;align-items:stretch;overflow:hidden;width:100%;height:100%}.mtx-split>.mtx-split-gutter{position:relative;display:flex;flex-grow:0;flex-shrink:0;align-items:center;justify-content:center}.mtx-split>.mtx-split-gutter>.mtx-split-gutter-handle{position:absolute;opacity:0}.mtx-split>.mtx-split-pane{flex-grow:0;flex-shrink:0;overflow-x:hidden;overflow-y:auto}.mtx-split>.mtx-split-pane.mtx-split-pane-hidden{flex:0 1 0!important;overflow-x:hidden;overflow-y:hidden}.mtx-split.mtx-split-horizontal{flex-direction:row}.mtx-split.mtx-split-horizontal>.mtx-split-gutter{flex-direction:row;height:100%;cursor:col-resize}.mtx-split.mtx-split-horizontal>.mtx-split-gutter>.mtx-split-gutter-handle{width:8px;height:100%;left:-2px;right:2px}.mtx-split.mtx-split-horizontal>.mtx-split-pane{height:100%}.mtx-split.mtx-split-vertical{flex-direction:column}.mtx-split.mtx-split-vertical>.mtx-split-gutter{flex-direction:column;width:100%;cursor:row-resize}.mtx-split.mtx-split-vertical>.mtx-split-gutter>.mtx-split-gutter-handle{width:100%;height:8px;top:-2px;bottom:2px}.mtx-split.mtx-split-vertical>.mtx-split-pane{width:100%}.mtx-split.mtx-split-vertical>.mtx-split-pane.mtx-split-pane-hidden{max-width:0}.mtx-split.mtx-split-disabled>.mtx-split-gutter{cursor:default}.mtx-split.mtx-split-disabled>.mtx-split-gutter .mtx-split-gutter-handle{background-image:none}.mtx-split.mtx-split-transition.mtx-split-init:not(.mtx-dragging)>.mtx-split-gutter,.mtx-split.mtx-split-transition.mtx-split-init:not(.mtx-dragging)>.mtx-split-pane{transition:flex-basis .3s}\n"]
1171
1183
  },] }
1172
1184
  ];
@@ -1178,28 +1190,28 @@
1178
1190
  * @nocollapse
1179
1191
  */
1180
1192
  MtxSplitComponent.ctorParameters = function () { return [
1181
- { type: core.NgZone },
1182
- { type: core.ElementRef },
1183
- { type: core.ChangeDetectorRef },
1184
- { type: core.Renderer2 }
1193
+ { type: core$1.NgZone },
1194
+ { type: core$1.ElementRef },
1195
+ { type: core$1.ChangeDetectorRef },
1196
+ { type: core$1.Renderer2 }
1185
1197
  ]; };
1186
1198
  /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
1187
1199
  MtxSplitComponent.propDecorators = {
1188
- direction: [{ type: core.Input }],
1189
- unit: [{ type: core.Input }],
1190
- gutterSize: [{ type: core.Input }],
1191
- gutterStep: [{ type: core.Input }],
1192
- restrictMove: [{ type: core.Input }],
1193
- useTransition: [{ type: core.Input }],
1194
- disabled: [{ type: core.Input }],
1195
- dir: [{ type: core.Input }],
1196
- gutterDblClickDuration: [{ type: core.Input }],
1197
- dragStart: [{ type: core.Output }],
1198
- dragEnd: [{ type: core.Output }],
1199
- gutterClick: [{ type: core.Output }],
1200
- gutterDblClick: [{ type: core.Output }],
1201
- transitionEnd: [{ type: core.Output }],
1202
- gutterEls: [{ type: core.ViewChildren, args: ['gutterEls',] }]
1200
+ direction: [{ type: core$1.Input }],
1201
+ unit: [{ type: core$1.Input }],
1202
+ gutterSize: [{ type: core$1.Input }],
1203
+ gutterStep: [{ type: core$1.Input }],
1204
+ restrictMove: [{ type: core$1.Input }],
1205
+ useTransition: [{ type: core$1.Input }],
1206
+ disabled: [{ type: core$1.Input }],
1207
+ dir: [{ type: core$1.Input }],
1208
+ gutterDblClickDuration: [{ type: core$1.Input }],
1209
+ dragStart: [{ type: core$1.Output }],
1210
+ dragEnd: [{ type: core$1.Output }],
1211
+ gutterClick: [{ type: core$1.Output }],
1212
+ gutterDblClick: [{ type: core$1.Output }],
1213
+ transitionEnd: [{ type: core$1.Output }],
1214
+ gutterEls: [{ type: core$1.ViewChildren, args: ['gutterEls',] }]
1203
1215
  };
1204
1216
 
1205
1217
  var MtxSplitPaneDirective = /** @class */ (function () {
@@ -1354,7 +1366,7 @@
1354
1366
  }());
1355
1367
  /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1356
1368
  MtxSplitPaneDirective.decorators = [
1357
- { type: core.Directive, args: [{
1369
+ { type: core$1.Directive, args: [{
1358
1370
  selector: 'mtx-split-pane, [mtx-split-pane]',
1359
1371
  exportAs: 'mtxSplitPane',
1360
1372
  },] }
@@ -1367,19 +1379,19 @@
1367
1379
  * @nocollapse
1368
1380
  */
1369
1381
  MtxSplitPaneDirective.ctorParameters = function () { return [
1370
- { type: core.NgZone },
1371
- { type: core.ElementRef },
1372
- { type: core.Renderer2 },
1382
+ { type: core$1.NgZone },
1383
+ { type: core$1.ElementRef },
1384
+ { type: core$1.Renderer2 },
1373
1385
  { type: MtxSplitComponent }
1374
1386
  ]; };
1375
1387
  /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
1376
1388
  MtxSplitPaneDirective.propDecorators = {
1377
- order: [{ type: core.Input }],
1378
- size: [{ type: core.Input }],
1379
- minSize: [{ type: core.Input }],
1380
- maxSize: [{ type: core.Input }],
1381
- lockSize: [{ type: core.Input }],
1382
- visible: [{ type: core.Input }]
1389
+ order: [{ type: core$1.Input }],
1390
+ size: [{ type: core$1.Input }],
1391
+ minSize: [{ type: core$1.Input }],
1392
+ maxSize: [{ type: core$1.Input }],
1393
+ lockSize: [{ type: core$1.Input }],
1394
+ visible: [{ type: core$1.Input }]
1383
1395
  };
1384
1396
 
1385
1397
  var MtxSplitModule = /** @class */ (function () {
@@ -1389,7 +1401,7 @@
1389
1401
  }());
1390
1402
  /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1391
1403
  MtxSplitModule.decorators = [
1392
- { type: core.NgModule, args: [{
1404
+ { type: core$1.NgModule, args: [{
1393
1405
  imports: [common.CommonModule],
1394
1406
  declarations: [MtxSplitComponent, MtxSplitPaneDirective],
1395
1407
  exports: [MtxSplitComponent, MtxSplitPaneDirective],