carriera-intern-components 1.1.154 → 1.1.155

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.
@@ -14,7 +14,7 @@ export declare class AvatarComponent {
14
14
  * The size of the avatar in pixels.
15
15
  * @type {Size}
16
16
  */
17
- size: import("@angular/core").InputSignal<22 | 18 | 32 | 74 | 160>;
17
+ size: import("@angular/core").InputSignal<18 | 32 | 22 | 74 | 160>;
18
18
  /**
19
19
  * Whether the avatar should be rounded or not at sizes of 74px and 160px.
20
20
  * @type {boolean}
@@ -5051,6 +5051,7 @@ class CaiInputDatetimePickerComponent {
5051
5051
  onChange(_) { }
5052
5052
  onTouched = () => { };
5053
5053
  writeValue(obj) {
5054
+ console.log(obj, 'writeValue');
5054
5055
  if (obj)
5055
5056
  this.setTimeDateInput(obj, true);
5056
5057
  }
@@ -5061,6 +5062,7 @@ class CaiInputDatetimePickerComponent {
5061
5062
  this.isFocusInput = false;
5062
5063
  }
5063
5064
  ngAfterViewInit() {
5065
+ console.log(this.valueAfterWriteValue, 'this.valueAfterWriteValue');
5064
5066
  if (this.valueAfterWriteValue) {
5065
5067
  this.setTimeDateInput(this.valueAfterWriteValue);
5066
5068
  }
@@ -5389,6 +5391,7 @@ class CaiInputDatetimePickerComponent {
5389
5391
  ? date
5390
5392
  : new Date(moment().format('MM/DD/YYYY') + ' ' + date);
5391
5393
  text = moment(new Date(date)).format('HH:mm');
5394
+ console.log(date, 'TIME ONLY');
5392
5395
  timeFormat = moment(new Date(date)).format('hh/mm/A');
5393
5396
  dateFormat = timeFormat.split('/');
5394
5397
  }
@@ -5417,6 +5420,7 @@ class CaiInputDatetimePickerComponent {
5417
5420
  this.span2.nativeElement.innerHTML = dateFormat[2];
5418
5421
  }
5419
5422
  }, 0);
5423
+ console.log(date, 'date');
5420
5424
  if (date) {
5421
5425
  this.dateTimeInputDate = new Date(date);
5422
5426
  }