@colijnit/corecomponents_v12 12.0.66 → 12.0.67
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 -1
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +4 -2
- package/fesm2015/colijnit-corecomponents_v12.js +3 -1
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/input-date-picker/input-date-picker.component.d.ts +1 -0
- package/lib/components/input-date-picker/style/_layout.scss +24 -0
- package/package.json +1 -1
|
@@ -6669,6 +6669,7 @@
|
|
|
6669
6669
|
_this.iconHeight = "24px";
|
|
6670
6670
|
_this.placeholder = "";
|
|
6671
6671
|
_this.blur = new core.EventEmitter();
|
|
6672
|
+
_this.isMinimal = false;
|
|
6672
6673
|
_super.prototype._markAsOnPush.call(_this);
|
|
6673
6674
|
return _this;
|
|
6674
6675
|
}
|
|
@@ -6735,7 +6736,8 @@
|
|
|
6735
6736
|
placeholder: [{ type: core.Input }],
|
|
6736
6737
|
width: [{ type: core.Input }],
|
|
6737
6738
|
blur: [{ type: core.Output }],
|
|
6738
|
-
showClass: [{ type: core.HostBinding, args: ["class.co-input-date",] }]
|
|
6739
|
+
showClass: [{ type: core.HostBinding, args: ["class.co-input-date",] }],
|
|
6740
|
+
isMinimal: [{ type: core.HostBinding, args: ['class.is-minimal',] }, { type: core.Input }]
|
|
6739
6741
|
};
|
|
6740
6742
|
|
|
6741
6743
|
var CommitButtonsComponent = /** @class */ (function () {
|