@colijnit/corecomponents_v12 12.0.69 → 12.0.70
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/bundles/colijnit-corecomponents_v12.umd.js +7 -18
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/co-dialog/co-dialog.component.js +4 -2
- package/esm2015/lib/components/input-combo-box/input-combo-box.component.js +1 -3
- package/esm2015/lib/components/input-listbox/input-listbox.component.js +2 -4
- package/esm2015/lib/components/input-search/input-search.component.js +1 -6
- package/esm2015/lib/components/input-text/input-text.component.js +2 -4
- package/esm2015/lib/components/input-textarea/input-textarea.component.js +2 -4
- package/fesm2015/colijnit-corecomponents_v12.js +7 -18
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/co-dialog/co-dialog.component.d.ts +1 -1
- package/lib/components/input-combo-box/input-combo-box.component.d.ts +0 -1
- package/lib/components/input-listbox/input-listbox.component.d.ts +0 -1
- package/lib/components/input-search/input-search.component.d.ts +0 -1
- package/lib/components/input-search/style/_layout.scss +13 -0
- package/lib/components/input-search/style/_material-definition.scss +1 -0
- package/lib/components/input-text/input-text.component.d.ts +0 -1
- package/lib/components/input-textarea/input-textarea.component.d.ts +0 -1
- package/package.json +1 -1
|
@@ -3680,12 +3680,12 @@
|
|
|
3680
3680
|
this.icons = exports.CoreComponentsIcon;
|
|
3681
3681
|
this.showCloseIcon = true;
|
|
3682
3682
|
this.modal = false;
|
|
3683
|
+
this.show = false;
|
|
3683
3684
|
this.borderless = false;
|
|
3684
3685
|
this.closeClick = new core.EventEmitter();
|
|
3685
3686
|
this.overlayClick = new core.EventEmitter();
|
|
3686
3687
|
this.isTouch = false;
|
|
3687
3688
|
this.mobile = false;
|
|
3688
|
-
this.show = false;
|
|
3689
3689
|
}
|
|
3690
3690
|
CoDialogComponent.prototype.showClass = function () {
|
|
3691
3691
|
return true;
|
|
@@ -3697,6 +3697,7 @@
|
|
|
3697
3697
|
}
|
|
3698
3698
|
};
|
|
3699
3699
|
CoDialogComponent.prototype.ngOnInit = function () {
|
|
3700
|
+
this.show = false;
|
|
3700
3701
|
this._checkDevice();
|
|
3701
3702
|
this.show = true;
|
|
3702
3703
|
};
|
|
@@ -3742,6 +3743,7 @@
|
|
|
3742
3743
|
footerTemplate: [{ type: core.Input }],
|
|
3743
3744
|
showCloseIcon: [{ type: core.Input }],
|
|
3744
3745
|
modal: [{ type: core.Input }],
|
|
3746
|
+
show: [{ type: core.Input }],
|
|
3745
3747
|
borderless: [{ type: core.HostBinding, args: ['class.borderless',] }, { type: core.Input }],
|
|
3746
3748
|
closeClick: [{ type: core.Output }],
|
|
3747
3749
|
overlayClick: [{ type: core.Output }],
|
|
@@ -6583,7 +6585,6 @@
|
|
|
6583
6585
|
_this.shopPopup = true;
|
|
6584
6586
|
_this.valueChange = new core.EventEmitter();
|
|
6585
6587
|
_this.isSmall = false;
|
|
6586
|
-
_this.customHeight = false;
|
|
6587
6588
|
_super.prototype._markAsOnPush.call(_this);
|
|
6588
6589
|
return _this;
|
|
6589
6590
|
}
|
|
@@ -6630,7 +6631,6 @@
|
|
|
6630
6631
|
popupWidth: [{ type: core.Input }],
|
|
6631
6632
|
valueChange: [{ type: core.Output }],
|
|
6632
6633
|
isSmall: [{ type: core.HostBinding, args: ['class.is-small',] }, { type: core.Input }],
|
|
6633
|
-
customHeight: [{ type: core.HostBinding, args: ['class.custom-height',] }, { type: core.Input }],
|
|
6634
6634
|
showClass: [{ type: core.HostBinding, args: ["class.co-input-combo-box",] }]
|
|
6635
6635
|
};
|
|
6636
6636
|
|
|
@@ -6958,7 +6958,6 @@
|
|
|
6958
6958
|
// this._model = value;
|
|
6959
6959
|
// }
|
|
6960
6960
|
_this.collection = [];
|
|
6961
|
-
_this.customHeight = true;
|
|
6962
6961
|
_this.selectionSettings = { mode: 'Multiple' };
|
|
6963
6962
|
return _this;
|
|
6964
6963
|
}
|
|
@@ -7024,8 +7023,7 @@
|
|
|
7024
7023
|
singleSelect: [{ type: core.Input }],
|
|
7025
7024
|
showCheckbox: [{ type: core.Input }],
|
|
7026
7025
|
showSelectAll: [{ type: core.Input }],
|
|
7027
|
-
showClass: [{ type: core.HostBinding, args: ['class.co-input-listbox',] }]
|
|
7028
|
-
customHeight: [{ type: core.HostBinding, args: ['class.custom-height',] }]
|
|
7026
|
+
showClass: [{ type: core.HostBinding, args: ['class.co-input-listbox',] }]
|
|
7029
7027
|
};
|
|
7030
7028
|
|
|
7031
7029
|
ej2Base.enableRipple(true);
|
|
@@ -7691,7 +7689,6 @@
|
|
|
7691
7689
|
_this.hasOwnLabel = true;
|
|
7692
7690
|
_this.hideArrowButtons = false;
|
|
7693
7691
|
_this.isSmall = false;
|
|
7694
|
-
_this.customHeight = false;
|
|
7695
7692
|
_super.prototype._markAsOnPush.call(_this);
|
|
7696
7693
|
return _this;
|
|
7697
7694
|
}
|
|
@@ -7771,8 +7768,7 @@
|
|
|
7771
7768
|
hasRightIcon: [{ type: core.HostBinding, args: ['class.has-right-icon',] }],
|
|
7772
7769
|
hasOwnLabel: [{ type: core.HostBinding, args: ["class.has-own-label",] }],
|
|
7773
7770
|
hideArrowButtons: [{ type: core.Input }, { type: core.HostBinding, args: ['class.hideArrows',] }],
|
|
7774
|
-
isSmall: [{ type: core.HostBinding, args: ['class.is-small',] }, { type: core.Input }]
|
|
7775
|
-
customHeight: [{ type: core.HostBinding, args: ['class.custom-height',] }, { type: core.Input }]
|
|
7771
|
+
isSmall: [{ type: core.HostBinding, args: ['class.is-small',] }, { type: core.Input }]
|
|
7776
7772
|
};
|
|
7777
7773
|
|
|
7778
7774
|
var ValidationErrorModule = /** @class */ (function () {
|
|
@@ -7919,7 +7915,6 @@
|
|
|
7919
7915
|
_this.search = new core.EventEmitter();
|
|
7920
7916
|
_this.useLeftIcon = false;
|
|
7921
7917
|
_this.useRightIcon = false;
|
|
7922
|
-
_this.customHeight = false;
|
|
7923
7918
|
_this.noIcon = false;
|
|
7924
7919
|
_this.isSmall = false;
|
|
7925
7920
|
return _this;
|
|
@@ -7951,7 +7946,6 @@
|
|
|
7951
7946
|
search: [{ type: core.Output }],
|
|
7952
7947
|
useLeftIcon: [{ type: core.Input }],
|
|
7953
7948
|
useRightIcon: [{ type: core.Input }],
|
|
7954
|
-
customHeight: [{ type: core.Input }],
|
|
7955
7949
|
noIcon: [{ type: core.HostBinding, args: ['class.no-icon',] }, { type: core.Input }],
|
|
7956
7950
|
isSmall: [{ type: core.HostBinding, args: ['class.is-small',] }, { type: core.Input }],
|
|
7957
7951
|
showClass: [{ type: core.HostBinding, args: ['class.co-input-search',] }]
|
|
@@ -7961,10 +7955,7 @@
|
|
|
7961
7955
|
], InputSearchComponent.prototype, "useLeftIcon", void 0);
|
|
7962
7956
|
__decorate([
|
|
7963
7957
|
InputBoolean()
|
|
7964
|
-
], InputSearchComponent.prototype, "useRightIcon", void 0);
|
|
7965
|
-
__decorate([
|
|
7966
|
-
InputBoolean()
|
|
7967
|
-
], InputSearchComponent.prototype, "customHeight", void 0);
|
|
7958
|
+
], InputSearchComponent.prototype, "useRightIcon", void 0);
|
|
7968
7959
|
|
|
7969
7960
|
var InputSearchModule = /** @class */ (function () {
|
|
7970
7961
|
function InputSearchModule() {
|
|
@@ -7996,7 +7987,6 @@
|
|
|
7996
7987
|
_this.elementRef = elementRef;
|
|
7997
7988
|
_this.placeholder = "";
|
|
7998
7989
|
_this.hasOwnLabel = true;
|
|
7999
|
-
_this.customHeight = true;
|
|
8000
7990
|
_super.prototype._markAsOnPush.call(_this);
|
|
8001
7991
|
return _this;
|
|
8002
7992
|
}
|
|
@@ -8030,8 +8020,7 @@
|
|
|
8030
8020
|
InputTextareaComponent.propDecorators = {
|
|
8031
8021
|
placeholder: [{ type: core.Input }],
|
|
8032
8022
|
showClass: [{ type: core.HostBinding, args: ["class.co-input-textarea",] }],
|
|
8033
|
-
hasOwnLabel: [{ type: core.HostBinding, args: ["class.has-own-label",] }]
|
|
8034
|
-
customHeight: [{ type: core.HostBinding, args: ['class.custom-height',] }]
|
|
8023
|
+
hasOwnLabel: [{ type: core.HostBinding, args: ["class.has-own-label",] }]
|
|
8035
8024
|
};
|
|
8036
8025
|
|
|
8037
8026
|
var InputTextareaModule = /** @class */ (function () {
|