tango-app-ui-shared 3.0.15-dev → 3.0.17-dev

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.
@@ -2,11 +2,12 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./pagination/pagination.component";
3
3
  import * as i2 from "./filters/filters.component";
4
4
  import * as i3 from "./custom-select/custom-select.component";
5
- import * as i4 from "@angular/common";
6
- import * as i5 from "@angular/forms";
7
- import * as i6 from "ngx-pagination";
5
+ import * as i4 from "../../pipes/customDate.pipe";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "@angular/forms";
8
+ import * as i7 from "ngx-pagination";
8
9
  export declare class CommonSharedModule {
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<CommonSharedModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<CommonSharedModule, [typeof i1.PaginationComponent, typeof i2.FiltersComponent, typeof i3.CustomSelectComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i6.NgxPaginationModule], [typeof i1.PaginationComponent, typeof i2.FiltersComponent, typeof i3.CustomSelectComponent]>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CommonSharedModule, [typeof i1.PaginationComponent, typeof i2.FiltersComponent, typeof i3.CustomSelectComponent, typeof i4.CustomDateFormatPipe], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.NgxPaginationModule], [typeof i1.PaginationComponent, typeof i2.FiltersComponent, typeof i3.CustomSelectComponent, typeof i4.CustomDateFormatPipe]>;
11
12
  static ɵinj: i0.ɵɵInjectorDeclaration<CommonSharedModule>;
12
13
  }
@@ -1,8 +1,8 @@
1
- import { ChangeDetectorRef, OnInit } from '@angular/core';
2
- import { AuthService } from '../../../../services/auth.service';
3
- import dayjs from 'dayjs';
4
- import 'dayjs/locale/en';
5
- import { GlobalStateService } from '../../../../services/global-state.service';
1
+ import { ChangeDetectorRef, OnInit } from "@angular/core";
2
+ import { AuthService } from "../../../../services/auth.service";
3
+ import dayjs from "dayjs";
4
+ import "dayjs/locale/en";
5
+ import { GlobalStateService } from "../../../../services/global-state.service";
6
6
  import * as i0 from "@angular/core";
7
7
  export declare class DateSingleSelectComponent implements OnInit {
8
8
  private auth;
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomDateFormatPipe implements PipeTransform {
4
+ transform(value: any, ...args: any[]): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomDateFormatPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CustomDateFormatPipe, "customDateFormat", false>;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-ui-shared",
3
- "version": "3.0.15-dev",
3
+ "version": "3.0.17-dev",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0"
package/public-api.d.ts CHANGED
@@ -40,4 +40,5 @@ export * from './lib/interfaces/global-state';
40
40
  export * from './lib/services/global-state.service';
41
41
  export * from './lib/services/auth.service';
42
42
  export * from './lib/services/toast.service';
43
+ export * from './lib/pipes/customDate.pipe';
43
44
  export * from './lib/interceptors/http-auth-interceptor';