coer-elements 2.0.1 → 2.0.3

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": "coer-elements",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "Components",
@@ -8,6 +8,8 @@ export declare class Breadcrumbs {
8
8
  /** */
9
9
  static GetFirst(): IAppSource | null;
10
10
  /** */
11
+ static GetLast(): IAppSource | null;
12
+ /** */
11
13
  static Save(breadcrumbs: IAppSource[]): void;
12
14
  /** */
13
15
  static Remove(path: string): void;
@@ -3,6 +3,8 @@ export declare class DateTime {
3
3
  /** Get UTC Offset */
4
4
  static GetOffset(): number;
5
5
  /** YYYY-MM-DD HH:mm:ss */
6
+ static GetCurrentDateTime(): string;
7
+ /** YYYY-MM-DD HH:mm:ss */
6
8
  static GetFormatDB(date: string | Date | moment.Moment): string;
7
9
  /** Convert UTC Date to Local Zone */
8
10
  static ToLocalZone(date: string | Date | moment.Moment): string;
@@ -59,6 +59,8 @@ export declare class Page implements AfterViewInit, OnDestroy {
59
59
  /** */
60
60
  protected SetPageResponse<T>(pageResponse?: T | null): void;
61
61
  /** */
62
+ protected ClearPageResponse(): void;
63
+ /** */
62
64
  protected ReloadPage(): void;
63
65
  /** */
64
66
  protected SetPageFilters<T>(filters: T): void;