@colijnit/corecomponents_v12 256.1.14 → 256.1.15
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 -0
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/base/base-input.component.js +4 -1
- package/fesm2015/colijnit-corecomponents_v12.js +3 -0
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/base/base-input.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2267,6 +2267,7 @@
|
|
|
2267
2267
|
this.modelChange = new i0.EventEmitter();
|
|
2268
2268
|
this.userModelChange = new i0.EventEmitter();
|
|
2269
2269
|
this.hiddenChange = new i0.EventEmitter();
|
|
2270
|
+
this.cancelClicked = new i0.EventEmitter();
|
|
2270
2271
|
this.focused = false;
|
|
2271
2272
|
this.formInput = true;
|
|
2272
2273
|
this.customWidth = false;
|
|
@@ -2693,6 +2694,7 @@
|
|
|
2693
2694
|
this.model = this._initialModel;
|
|
2694
2695
|
}
|
|
2695
2696
|
this.keepFocus = false;
|
|
2697
|
+
this.cancelClicked.emit();
|
|
2696
2698
|
};
|
|
2697
2699
|
BaseInputComponent.prototype.showValidationError = function (error) {
|
|
2698
2700
|
this.validationError = error;
|
|
@@ -3166,6 +3168,7 @@
|
|
|
3166
3168
|
modelChange: [{ type: i0.Output }],
|
|
3167
3169
|
userModelChange: [{ type: i0.Output }],
|
|
3168
3170
|
hiddenChange: [{ type: i0.Output }],
|
|
3171
|
+
cancelClicked: [{ type: i0.Output }],
|
|
3169
3172
|
focused: [{ type: i0.HostBinding, args: ['class.cc-input-focused',] }],
|
|
3170
3173
|
formInput: [{ type: i0.HostBinding, args: ['class.form-input',] }],
|
|
3171
3174
|
customWidth: [{ type: i0.Input }, { type: i0.HostBinding, args: ['class.custom-width',] }],
|