@colijnit/corecomponents_v12 12.0.85 → 12.0.87
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 +3 -4
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/input-listbox/input-listbox.component.js +2 -1
- package/esm2015/lib/components/input-search/input-search.component.js +2 -4
- package/esm2015/lib/components/input-text/input-text.component.js +2 -2
- package/fesm2015/colijnit-corecomponents_v12.js +3 -4
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/input-listbox/input-listbox.component.d.ts +1 -0
- package/lib/components/input-search/input-search.component.d.ts +0 -1
- package/lib/components/input-search/style/_layout.scss +7 -19
- package/lib/components/input-search/style/_material-definition.scss +6 -3
- package/lib/components/input-text/style/_layout.scss +7 -5
- package/lib/components/input-text/style/_material-definition.scss +1 -0
- package/package.json +1 -1
|
@@ -6983,6 +6983,7 @@
|
|
|
6983
6983
|
// this._model = value;
|
|
6984
6984
|
// }
|
|
6985
6985
|
_this.collection = [];
|
|
6986
|
+
_this.customHeight = true;
|
|
6986
6987
|
_this.selectionSettings = { mode: 'Multiple' };
|
|
6987
6988
|
return _this;
|
|
6988
6989
|
}
|
|
@@ -7803,7 +7804,7 @@
|
|
|
7803
7804
|
hasLeftIcon: [{ type: i0.HostBinding, args: ['class.has-left-icon',] }],
|
|
7804
7805
|
hasRightIcon: [{ type: i0.HostBinding, args: ['class.has-right-icon',] }],
|
|
7805
7806
|
hasOwnLabel: [{ type: i0.HostBinding, args: ["class.has-own-label",] }],
|
|
7806
|
-
hideArrowButtons: [{ type: i0.Input }, { type: i0.HostBinding, args: ['class.
|
|
7807
|
+
hideArrowButtons: [{ type: i0.Input }, { type: i0.HostBinding, args: ['class.hide-arrows',] }],
|
|
7807
7808
|
isSmall: [{ type: i0.HostBinding, args: ['class.is-small',] }, { type: i0.Input }]
|
|
7808
7809
|
};
|
|
7809
7810
|
|
|
@@ -7967,7 +7968,6 @@
|
|
|
7967
7968
|
_this.useLeftIcon = false;
|
|
7968
7969
|
_this.useRightIcon = false;
|
|
7969
7970
|
_this.centerLabel = false;
|
|
7970
|
-
_this.isSmall = false;
|
|
7971
7971
|
return _this;
|
|
7972
7972
|
}
|
|
7973
7973
|
InputSearchComponent.prototype.showClass = function () {
|
|
@@ -7987,7 +7987,7 @@
|
|
|
7987
7987
|
InputSearchComponent.decorators = [
|
|
7988
7988
|
{ type: i0.Component, args: [{
|
|
7989
7989
|
selector: 'co-input-search',
|
|
7990
|
-
template: "\n <co-input-text\n [model]=\"model\"\n [leftIcon]=\"useLeftIcon ? searchIcon : null\"\n [rightIcon]=\"useRightIcon ? searchIcon : null\"\n [placeholder]=\"placeholder\"\n [customHeight]=\"
|
|
7990
|
+
template: "\n <co-input-text\n [model]=\"model\"\n [leftIcon]=\"useLeftIcon ? searchIcon : null\"\n [rightIcon]=\"useRightIcon ? searchIcon : null\"\n [placeholder]=\"placeholder\"\n [customHeight]=\"true\"\n [showPlaceholderOnFocus]=\"false\"\n (modelChange)=\"modelChange.emit($event)\"\n ></co-input-text>\n ",
|
|
7991
7991
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
7992
7992
|
encapsulation: i0.ViewEncapsulation.None
|
|
7993
7993
|
},] }
|
|
@@ -7998,7 +7998,6 @@
|
|
|
7998
7998
|
useLeftIcon: [{ type: i0.Input }],
|
|
7999
7999
|
useRightIcon: [{ type: i0.Input }],
|
|
8000
8000
|
centerLabel: [{ type: i0.HostBinding, args: ['class.center-label',] }, { type: i0.Input }],
|
|
8001
|
-
isSmall: [{ type: i0.HostBinding, args: ['class.is-small',] }, { type: i0.Input }],
|
|
8002
8001
|
showClass: [{ type: i0.HostBinding, args: ['class.co-input-search',] }]
|
|
8003
8002
|
};
|
|
8004
8003
|
__decorate([
|