@recursyve/nice-ui-kit.v2 14.0.0-beta.98 → 14.0.0-beta.99

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.
@@ -3211,13 +3211,6 @@ class NiceBaseFormComponent {
3211
3211
  this.unsubscribeAll$ = new Subject();
3212
3212
  this.propagate = () => { };
3213
3213
  }
3214
- onChange(event) {
3215
- if (event) {
3216
- if (event.code === KeyboardCodes.Enter) {
3217
- this.clickSubmit();
3218
- }
3219
- }
3220
- }
3221
3214
  ngOnInit() {
3222
3215
  this.formGroup.valueChanges.pipe(takeUntil(this.unsubscribeAll$)).subscribe(() => {
3223
3216
  this.onValueChange(this.formGroup.getRawValue());
@@ -3278,7 +3271,7 @@ class NiceBaseFormComponent {
3278
3271
  }
3279
3272
  }
3280
3273
  NiceBaseFormComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.3", ngImport: i0, type: NiceBaseFormComponent, deps: [{ token: i1$4.GeneratedFormGroup }], target: i0.ɵɵFactoryTarget.Component });
3281
- NiceBaseFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.3", type: NiceBaseFormComponent, selector: "ng-component", inputs: { loading: "loading" }, outputs: { submit: "submit" }, host: { listeners: { "keyup": "onChange($event)" } }, viewQueries: [{ propertyName: "stepper", first: true, predicate: CdkStepper, descendants: true }], ngImport: i0, template: ``, isInline: true });
3274
+ NiceBaseFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.3", type: NiceBaseFormComponent, selector: "ng-component", inputs: { loading: "loading" }, outputs: { submit: "submit" }, viewQueries: [{ propertyName: "stepper", first: true, predicate: CdkStepper, descendants: true }], ngImport: i0, template: ``, isInline: true });
3282
3275
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.3", ngImport: i0, type: NiceBaseFormComponent, decorators: [{
3283
3276
  type: Component,
3284
3277
  args: [{
@@ -3291,9 +3284,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.3", ngImpor
3291
3284
  type: Input
3292
3285
  }], submit: [{
3293
3286
  type: Output
3294
- }], onChange: [{
3295
- type: HostListener,
3296
- args: ["keyup", ["$event"]]
3297
3287
  }] } });
3298
3288
 
3299
3289
  class NiceFormSubmitDirective {