@tetacom/ng-components 1.0.119 → 1.0.120
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/esm2020/component/dropdown/dropdown-base.mjs +2 -2
- package/esm2020/component/select/select/select.component.mjs +2 -2
- package/esm2020/directive/auto-position/auto-position.directive.mjs +3 -1
- package/esm2020/directive/dynamic-content-base.directive.mjs +2 -2
- package/fesm2015/tetacom-ng-components.mjs +4 -3
- package/fesm2015/tetacom-ng-components.mjs.map +1 -1
- package/fesm2020/tetacom-ng-components.mjs +4 -3
- package/fesm2020/tetacom-ng-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1223,7 +1223,7 @@ class DropdownBase {
|
|
|
1223
1223
|
this._zone = _zone;
|
|
1224
1224
|
this._renderer = _renderer;
|
|
1225
1225
|
this.align = Align.left;
|
|
1226
|
-
this.verticalAlign = VerticalAlign.
|
|
1226
|
+
this.verticalAlign = VerticalAlign.auto;
|
|
1227
1227
|
this.backdrop = false;
|
|
1228
1228
|
this.openChange = new EventEmitter();
|
|
1229
1229
|
this.autoClose = true;
|
|
@@ -3739,7 +3739,7 @@ class DynamicContentBaseDirective {
|
|
|
3739
3739
|
this._zone = _zone;
|
|
3740
3740
|
this._cdr = _cdr;
|
|
3741
3741
|
this.align = Align.left;
|
|
3742
|
-
this.verticalAlign = VerticalAlign.
|
|
3742
|
+
this.verticalAlign = VerticalAlign.auto;
|
|
3743
3743
|
this.openChange = new EventEmitter();
|
|
3744
3744
|
this._alive = true;
|
|
3745
3745
|
this._open = false;
|
|
@@ -4906,7 +4906,7 @@ class SelectComponent {
|
|
|
4906
4906
|
this._elementRef = _elementRef;
|
|
4907
4907
|
this._config = _config;
|
|
4908
4908
|
this.align = Align.minWidth;
|
|
4909
|
-
this.verticalAlign = VerticalAlign.
|
|
4909
|
+
this.verticalAlign = VerticalAlign.auto;
|
|
4910
4910
|
this.autoClose = true;
|
|
4911
4911
|
this.autoCloseIgnore = ['inside'];
|
|
4912
4912
|
this.itemSize = 32;
|
|
@@ -11324,6 +11324,7 @@ class AutoPositionDirective {
|
|
|
11324
11324
|
constructor(_elementRef, _zone) {
|
|
11325
11325
|
this._elementRef = _elementRef;
|
|
11326
11326
|
this._zone = _zone;
|
|
11327
|
+
this.verticalAlign = VerticalAlign.auto;
|
|
11327
11328
|
this.fixed = 'fixed';
|
|
11328
11329
|
this._alive = true;
|
|
11329
11330
|
}
|