coer-elements 0.0.71 → 0.0.72

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,6 +14,7 @@ export interface IGridColumn<T> {
14
14
  colorRed?: boolean | ((item: IGridItem<T>) => boolean);
15
15
  typeNumber?: boolean | ((item: IGridItem<T>) => boolean);
16
16
  typeDate?: boolean | ((item: IGridItem<T>) => boolean);
17
+ typeDateTime?: boolean | ((item: IGridItem<T>) => boolean);
17
18
  template?: string | ((item: IGridItem<T>) => string);
18
19
  coerSwitch?: ((item: IGridItem<T>) => IGridCoerSwitch);
19
20
  coerTextbox?: ((item: IGridItem<T>) => IGridCoerTextBox);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coer-elements",
3
- "version": "0.0.71",
3
+ "version": "0.0.72",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -10,6 +10,8 @@ export declare class DateTime {
10
10
  static ToUTC(date: string | Date | moment.Moment): string;
11
11
  /** MMM, DD YYYY */
12
12
  static GetDateFormat(date: string | Date | moment.Moment): string;
13
+ /** MMM, DD YYYY */
14
+ static GetDateTimeFormat(date: string | Date | moment.Moment): string;
13
15
  /** */
14
16
  static IsValidDate(date: string | Date | moment.Moment): boolean;
15
17
  /** */