@one-paragon/angular-utilities 0.1.29 → 0.1.31

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": "@one-paragon/angular-utilities",
3
- "version": "0.1.29",
3
+ "version": "0.1.31",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.0.0",
6
6
  "@angular/core": "^15.0.0",
@@ -60,6 +60,11 @@ export interface SortDef {
60
60
  export interface FilterOptions {
61
61
  filterableValues: string[];
62
62
  }
63
+ export interface DateTimeOptions {
64
+ format?: string;
65
+ includeSeconds?: boolean;
66
+ includeMilliseconds: boolean;
67
+ }
63
68
  declare type interpolatedRoute = string;
64
69
  export interface Additional<T = any> {
65
70
  link?: {
@@ -105,7 +110,7 @@ export interface Additional<T = any> {
105
110
  };
106
111
  export?: TableBuilderExport;
107
112
  dateFormat?: string;
108
- dateTimeFormat?: string;
113
+ dateTimeOptions?: DateTimeOptions;
109
114
  filterOptions?: FilterOptions;
110
115
  styles?: Dictionary<string>;
111
116
  columnPartStyles?: {