@resolveio/client-lib-core 21.0.21 → 21.0.23

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": "@resolveio/client-lib-core",
3
- "version": "21.0.21",
3
+ "version": "21.0.23",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -15,6 +15,7 @@ import { NgbModal, NgbModalOptions, NgbActiveModal } from '@ng-bootstrap/ng-boot
15
15
  import * as i2 from '@angular/common';
16
16
  import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
17
17
  import * as i9 from '@resolveio/client-lib-ng-select';
18
+ import * as i14 from '@resolveio/client-lib-date-picker';
18
19
  import * as i7 from 'ngx-file-drop';
19
20
  import * as i8 from '@resolveio/client-lib-pdf-viewer';
20
21
  import * as i27 from '@angular/platform-browser/animations';
@@ -691,10 +692,8 @@ declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy
691
692
  log_cnt: number;
692
693
  user: any;
693
694
  users: any[];
694
- dateStartElem: any;
695
- dateEndElem: any;
696
- timeStartElem: any;
697
- timeEndElem: any;
695
+ startDateTime: any;
696
+ endDateTime: any;
698
697
  dateStart: Date;
699
698
  dateEnd: Date;
700
699
  selectedTypes: any[];
@@ -711,6 +710,21 @@ declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy
711
710
  selectType(type: string): void;
712
711
  icon(type: any): "success" | "info" | "danger" | "primary" | "secondary";
713
712
  removeAllLogs(): void;
713
+ toDate(value: any, isEnd?: boolean): Date;
714
+ createPickerValue(date: Date, secondOverride?: any): {
715
+ mode: string;
716
+ date: {
717
+ year: number;
718
+ month: number;
719
+ day: number;
720
+ };
721
+ time: {
722
+ hour: number;
723
+ minute: number;
724
+ second: any;
725
+ ms: number;
726
+ };
727
+ };
714
728
  static ɵfac: i0.ɵɵFactoryDeclaration<LoggerComponent, never>;
715
729
  static ɵcmp: i0.ɵɵComponentDeclaration<LoggerComponent, "resolveio-logger", never, {}, {}, never, never, false, never>;
716
730
  }
@@ -947,6 +961,12 @@ declare class DialogInputContent implements OnInit {
947
961
  states: string[];
948
962
  constructor(_activeModal: NgbActiveModal, _fb: FormBuilder);
949
963
  ngOnInit(): void;
964
+ normalizeDateTimeValue(value: any): any;
965
+ mergeDateTimeParts(dateValue: any, timeValue: any, mode?: string): any;
966
+ isDateStruct(value: any): boolean;
967
+ isTimeStruct(value: any): boolean;
968
+ toDateStruct(value: any): any;
969
+ toTimeStruct(value: any): any;
950
970
  validateInput(inputField: any, formInput: any): "" | "is-valid" | "is-invalid";
951
971
  getErrorMessages(inputField: any, formInput: any): any[];
952
972
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogInputContent, never>;
@@ -1493,7 +1513,7 @@ declare class NgDragDropModule {
1493
1513
 
1494
1514
  declare class SharedModule {
1495
1515
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
1496
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.ReactiveFormsModule, typeof i1.FormsModule, typeof CollapseTableModule, typeof i3.RouterModule, typeof i4.NgbModule, typeof i4.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i9.NgSelectModule, typeof SortTableModule, typeof i2.CommonModule, typeof SortablejsModule, typeof NgDragDropModule], [typeof i1.ReactiveFormsModule, typeof i1.FormsModule, typeof CollapseTableModule, typeof i3.RouterModule, typeof i4.NgbModule, typeof i4.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i9.NgSelectModule, typeof SortTableModule, typeof i2.CommonModule, typeof SortablejsModule, typeof NgDragDropModule]>;
1516
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.ReactiveFormsModule, typeof i1.FormsModule, typeof CollapseTableModule, typeof i3.RouterModule, typeof i4.NgbModule, typeof i4.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i9.NgSelectModule, typeof SortTableModule, typeof i2.CommonModule, typeof SortablejsModule, typeof NgDragDropModule, typeof i14.RioDatePickerModule], [typeof i1.ReactiveFormsModule, typeof i1.FormsModule, typeof CollapseTableModule, typeof i3.RouterModule, typeof i4.NgbModule, typeof i4.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i9.NgSelectModule, typeof SortTableModule, typeof i2.CommonModule, typeof SortablejsModule, typeof NgDragDropModule, typeof i14.RioDatePickerModule]>;
1497
1517
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
1498
1518
  }
1499
1519