ng-tailwind 2.24.338 → 2.24.339
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/ng-tailwind.umd.js +3 -0
- package/bundles/ng-tailwind.umd.js.map +1 -1
- package/components/ngt-select/ngt-select.component.d.ts +1 -0
- package/esm2015/components/ngt-select/ngt-select.component.js +4 -1
- package/fesm2015/ng-tailwind.js +3 -0
- package/fesm2015/ng-tailwind.js.map +1 -1
- package/ng-tailwind.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -3065,6 +3065,7 @@
|
|
|
3065
3065
|
/** Validation */
|
|
3066
3066
|
_this.isRequired = false;
|
|
3067
3067
|
_this.onLoadRemoteResource = new core.EventEmitter();
|
|
3068
|
+
_this.onClear = new core.EventEmitter();
|
|
3068
3069
|
_this.nativeName = uuid();
|
|
3069
3070
|
_this.ngSelectItems = [];
|
|
3070
3071
|
_this.componentReady = false;
|
|
@@ -3191,6 +3192,7 @@
|
|
|
3191
3192
|
this.markAsPristine();
|
|
3192
3193
|
}
|
|
3193
3194
|
this.currentState.filters = {};
|
|
3195
|
+
this.onClear.emit();
|
|
3194
3196
|
};
|
|
3195
3197
|
NgtSelectComponent.prototype.onRemoveSelectedItem = function (item) {
|
|
3196
3198
|
var _this = this;
|
|
@@ -3484,6 +3486,7 @@
|
|
|
3484
3486
|
trackBy: [{ type: core.Input }],
|
|
3485
3487
|
isRequired: [{ type: core.Input }],
|
|
3486
3488
|
onLoadRemoteResource: [{ type: core.Output }],
|
|
3489
|
+
onClear: [{ type: core.Output }],
|
|
3487
3490
|
compareWith: [{ type: core.Input }]
|
|
3488
3491
|
};
|
|
3489
3492
|
exports.NgtSelectDropdownPanelHeight = void 0;
|