@wolkabout/commons 0.2.5 → 0.3.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wolkabout/commons",
3
- "version": "0.2.5",
3
+ "version": "0.3.0",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "21.2.0",
6
6
  "@angular/common": "21.2.0",
@@ -806,6 +806,8 @@ declare class DateTimeFormFieldComponent implements OnDestroy, ControlValueAcces
806
806
  timeLabel?: string;
807
807
  validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
808
808
  showErrorInTooltip: _angular_core.InputSignal<boolean>;
809
+ timezone: _angular_core.InputSignal<string | null>;
810
+ private tenantProperties;
809
811
  formGroup: FormGroup<{
810
812
  date: FormControl<DateTime<boolean> | null>;
811
813
  time: FormControl<string | null>;
@@ -828,9 +830,10 @@ declare class DateTimeFormFieldComponent implements OnDestroy, ControlValueAcces
828
830
  getTimeErrors(): string[];
829
831
  getDateErrorTooltip(): string;
830
832
  getTimeErrorTooltip(): string;
833
+ private resolveZone;
831
834
  onInputChange(event: Event): void;
832
835
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DateTimeFormFieldComponent, never>;
833
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DateTimeFormFieldComponent, "app-date-time-form-field", never, { "dateLabel": { "alias": "dateLabel"; "required": false; }; "timeLabel": { "alias": "timeLabel"; "required": false; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
836
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DateTimeFormFieldComponent, "app-date-time-form-field", never, { "dateLabel": { "alias": "dateLabel"; "required": false; }; "timeLabel": { "alias": "timeLabel"; "required": false; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; "timezone": { "alias": "timezone"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
834
837
  }
835
838
 
836
839
  declare class DragDropFileUploadComponent implements ControlValueAccessor, Validator, AfterViewInit, OnDestroy {