@colijnit/corecomponents_v12 12.0.63 → 12.0.65
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 +12 -2
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/input-combo-box/input-combo-box.component.js +9 -1
- package/esm2015/lib/components/input-text/input-text.component.js +6 -2
- package/fesm2015/colijnit-corecomponents_v12.js +13 -1
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/input-combo-box/input-combo-box.component.d.ts +4 -0
- package/lib/components/input-combo-box/style/_layout.scss +4 -0
- package/lib/components/input-combo-box/style/_material-definition.scss +1 -0
- package/lib/components/input-text/input-text.component.d.ts +2 -0
- package/lib/components/input-text/style/_layout.scss +5 -0
- package/lib/components/input-text/style/_material-definition.scss +1 -0
- package/lib/components/simple-grid/style/_material-definition.scss +1 -1
- package/lib/components/simple-grid/style/_theme.scss +0 -3
- package/package.json +1 -1
|
@@ -6409,6 +6409,8 @@
|
|
|
6409
6409
|
_this.elementRef = elementRef;
|
|
6410
6410
|
_this.shopPopup = true;
|
|
6411
6411
|
_this.valueChange = new core.EventEmitter();
|
|
6412
|
+
_this.isSmall = false;
|
|
6413
|
+
_this.customHeight = false;
|
|
6412
6414
|
_super.prototype._markAsOnPush.call(_this);
|
|
6413
6415
|
return _this;
|
|
6414
6416
|
}
|
|
@@ -6425,7 +6427,7 @@
|
|
|
6425
6427
|
InputComboBoxComponent.decorators = [
|
|
6426
6428
|
{ type: core.Component, args: [{
|
|
6427
6429
|
selector: "co-input-combo-box",
|
|
6428
|
-
template: "\n <ejs-combobox #combo [dataSource]=\"collection\"\n [fields]=\"fields\"\n [disabled]=\"readonly\"\n [placeholder]=\"placeholder\"\n [autofill]=\"true\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"valueChange.emit($event)\"\n (focus)=\"onFocus()\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-combobox>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
|
|
6430
|
+
template: "\n <ejs-combobox #combo [dataSource]=\"collection\"\n [fields]=\"fields\"\n [disabled]=\"readonly\"\n [placeholder]=\"placeholder\"\n [autofill]=\"true\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"valueChange.emit($event)\"\n (focus)=\"onFocus()\"\n [popupWidth]=\"popupWidth\"\n [popupHeight]=\"popupHeight\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-combobox>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
|
|
6429
6431
|
providers: [{
|
|
6430
6432
|
provide: COMPONENT_INTERFACE_NAME,
|
|
6431
6433
|
useExisting: core.forwardRef(function () { return InputComboBoxComponent; })
|
|
@@ -6451,7 +6453,11 @@
|
|
|
6451
6453
|
selected: [{ type: core.Input }],
|
|
6452
6454
|
placeholder: [{ type: core.Input }],
|
|
6453
6455
|
shopPopup: [{ type: core.Input }],
|
|
6456
|
+
popupHeight: [{ type: core.Input }],
|
|
6457
|
+
popupWidth: [{ type: core.Input }],
|
|
6454
6458
|
valueChange: [{ type: core.Output }],
|
|
6459
|
+
isSmall: [{ type: core.HostBinding, args: ['class.is-small',] }, { type: core.Input }],
|
|
6460
|
+
customHeight: [{ type: core.HostBinding, args: ['class.custom-height',] }, { type: core.Input }],
|
|
6455
6461
|
showClass: [{ type: core.HostBinding, args: ["class.co-input-combo-box",] }]
|
|
6456
6462
|
};
|
|
6457
6463
|
|
|
@@ -7508,6 +7514,8 @@
|
|
|
7508
7514
|
_this.showPlaceholderOnFocus = true;
|
|
7509
7515
|
_this.hasOwnLabel = true;
|
|
7510
7516
|
_this.hideArrowButtons = false;
|
|
7517
|
+
_this.isSmall = false;
|
|
7518
|
+
_this.customHeight = false;
|
|
7511
7519
|
_super.prototype._markAsOnPush.call(_this);
|
|
7512
7520
|
return _this;
|
|
7513
7521
|
}
|
|
@@ -7586,7 +7594,9 @@
|
|
|
7586
7594
|
hasLeftIcon: [{ type: core.HostBinding, args: ['class.has-left-icon',] }],
|
|
7587
7595
|
hasRightIcon: [{ type: core.HostBinding, args: ['class.has-right-icon',] }],
|
|
7588
7596
|
hasOwnLabel: [{ type: core.HostBinding, args: ["class.has-own-label",] }],
|
|
7589
|
-
hideArrowButtons: [{ type: core.Input }, { type: core.HostBinding, args: ['class.hideArrows',] }]
|
|
7597
|
+
hideArrowButtons: [{ type: core.Input }, { type: core.HostBinding, args: ['class.hideArrows',] }],
|
|
7598
|
+
isSmall: [{ type: core.HostBinding, args: ['class.is-small',] }, { type: core.Input }],
|
|
7599
|
+
customHeight: [{ type: core.HostBinding, args: ['class.custom-height',] }, { type: core.Input }]
|
|
7590
7600
|
};
|
|
7591
7601
|
|
|
7592
7602
|
var ValidationErrorModule = /** @class */ (function () {
|