coer-elements 0.0.70 → 0.0.72

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.
@@ -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.70",
3
+ "version": "0.0.72",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -896,7 +896,7 @@ aside.modal div.backdrop {
896
896
 
897
897
  div.modal-content {
898
898
  z-index: 1501;
899
- overflow: visible !important;
899
+ overflow: auto !important;
900
900
  }
901
901
 
902
902
  div.coer-number-box mat-form-field {
@@ -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
  /** */