@bizdoc/core 3.8.7 → 3.8.8

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.
@@ -7917,20 +7917,22 @@ class MaterialModule {
7917
7917
  {
7918
7918
  provide: DateAdapter, useClass: DayJsDateAdapter,
7919
7919
  deps: [MAT_DATE_LOCALE, Platform]
7920
- },
7920
+ } /*,
7921
7921
  {
7922
- provide: MAT_DATE_FORMATS, useValue: {
7923
- parse: {
7924
- dateInput: 'LL',
7925
- },
7926
- display: {
7927
- dateInput: 'DD/MM/YYYY',
7928
- monthYearLabel: 'MMM YYYY',
7929
- dateA11yLabel: 'LL',
7930
- monthYearA11yLabel: 'MMMM YYYY',
7931
- }
7922
+ provide: MAT_DATE_FORMATS, useValue: {
7923
+ parse: {
7924
+ dateInput: 'LL',
7925
+ },
7926
+ display: {
7927
+ dateInput: 'DD/MM/YYYY',
7928
+ monthYearLabel: 'MMM YYYY',
7929
+ dateA11yLabel: 'LL',
7930
+ monthYearA11yLabel: 'MMMM YYYY',
7931
+ timeInput: 'HH:mm',
7932
+ timeOptionLabel: { hour: 'numeric', minute: 'numeric' },
7932
7933
  }
7933
- }
7934
+ }
7935
+ }*/
7934
7936
  ], imports: [CommonModule,
7935
7937
  CdkScrollableModule,
7936
7938
  OverlayModule, PortalModule,
@@ -7998,20 +8000,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.2", ngImpor
7998
8000
  {
7999
8001
  provide: DateAdapter, useClass: DayJsDateAdapter,
8000
8002
  deps: [MAT_DATE_LOCALE, Platform]
8001
- },
8003
+ } /*,
8002
8004
  {
8003
- provide: MAT_DATE_FORMATS, useValue: {
8004
- parse: {
8005
- dateInput: 'LL',
8006
- },
8007
- display: {
8008
- dateInput: 'DD/MM/YYYY',
8009
- monthYearLabel: 'MMM YYYY',
8010
- dateA11yLabel: 'LL',
8011
- monthYearA11yLabel: 'MMMM YYYY',
8012
- }
8005
+ provide: MAT_DATE_FORMATS, useValue: {
8006
+ parse: {
8007
+ dateInput: 'LL',
8008
+ },
8009
+ display: {
8010
+ dateInput: 'DD/MM/YYYY',
8011
+ monthYearLabel: 'MMM YYYY',
8012
+ dateA11yLabel: 'LL',
8013
+ monthYearA11yLabel: 'MMMM YYYY',
8014
+ timeInput: 'HH:mm',
8015
+ timeOptionLabel: { hour: 'numeric', minute: 'numeric' },
8013
8016
  }
8014
- }
8017
+ }
8018
+ }*/
8015
8019
  ]
8016
8020
  }]
8017
8021
  }] });
@@ -31463,16 +31467,21 @@ registerComponents(CONTROLS_COMPONENTS$1);
31463
31467
  /* Syncfusion 30.x */
31464
31468
  registerLicense('Ngo9BigBOggjHTQxAR8/V1JEaF5cXmRCf1FpRmJGdld5fUVHYVZUTXxaS00DNHVRdkdmWXhecXRdRmdYWUVyW0FWYEk=');
31465
31469
  function materialFormatsProvider(formats) {
31470
+ const { date, time } = formats || {};
31466
31471
  return {
31467
31472
  provide: MAT_DATE_FORMATS, useValue: {
31468
31473
  parse: {
31469
31474
  dateInput: 'LL',
31475
+ timeInput: 'HH:mm',
31470
31476
  },
31471
31477
  display: {
31472
- dateInput: (formats || {}).date || 'll',
31478
+ dateInput: date || 'll',
31473
31479
  monthYearLabel: 'MMM YYYY',
31474
31480
  dateA11yLabel: 'LL',
31475
31481
  monthYearA11yLabel: 'MMMM YYYY',
31482
+ monthLabel: 'MMM',
31483
+ timeInput: time || 'HH:mm',
31484
+ timeOptionLabel: 'HH:mm',
31476
31485
  }
31477
31486
  }
31478
31487
  };