@cuby-ui/core 0.0.152 → 0.0.154

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.
@@ -1888,8 +1888,7 @@ class CuiInputTimeComponent {
1888
1888
  onInput(event) {
1889
1889
  const value = event.target.value;
1890
1890
  if (value.length !== this._mode.length) {
1891
- this.value = null;
1892
- this.onChange(this.value);
1891
+ this.onChange(null);
1893
1892
  return;
1894
1893
  }
1895
1894
  const time = CuiTime.fromString(value);
@@ -1938,10 +1937,11 @@ InputTimeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version:
1938
1937
  InputTimeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: InputTimeModule, declarations: [CuiInputTimeComponent], imports: [CommonModule,
1939
1938
  FormsModule,
1940
1939
  MaskitoDirective,
1941
- CuiSvgModule], exports: [CuiInputTimeComponent] });
1940
+ CuiSvgModule], exports: [CuiInputTimeComponent,
1941
+ CuiTextFieldControllerModule] });
1942
1942
  InputTimeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputTimeModule, imports: [CommonModule,
1943
1943
  FormsModule,
1944
- CuiSvgModule] });
1944
+ CuiSvgModule, CuiTextFieldControllerModule] });
1945
1945
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputTimeModule, decorators: [{
1946
1946
  type: NgModule,
1947
1947
  args: [{
@@ -1952,7 +1952,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1952
1952
  CuiSvgModule
1953
1953
  ],
1954
1954
  declarations: [CuiInputTimeComponent],
1955
- exports: [CuiInputTimeComponent]
1955
+ exports: [
1956
+ CuiInputTimeComponent,
1957
+ CuiTextFieldControllerModule
1958
+ ]
1956
1959
  }]
1957
1960
  }] });
1958
1961