@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/esm2020/table-builder/classes/table-builder.mjs +11 -2
- package/esm2020/table-builder/components/generic-table/generic-table.component.mjs +2 -2
- package/esm2020/table-builder/components/generic-table/paginator.component.mjs +2 -2
- package/esm2020/table-builder/interfaces/report-def.mjs +1 -1
- package/esm2020/table-builder/services/export-to-csv.service.mjs +2 -2
- package/esm2020/table-builder/services/transform-creator.mjs +2 -2
- package/fesm2015/one-paragon-angular-utilities.mjs +24 -14
- package/fesm2015/one-paragon-angular-utilities.mjs.map +1 -1
- package/fesm2020/one-paragon-angular-utilities.mjs +16 -7
- package/fesm2020/one-paragon-angular-utilities.mjs.map +1 -1
- package/package.json +1 -1
- package/table-builder/interfaces/report-def.d.ts +6 -1
package/package.json
CHANGED
|
@@ -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
|
-
|
|
113
|
+
dateTimeOptions?: DateTimeOptions;
|
|
109
114
|
filterOptions?: FilterOptions;
|
|
110
115
|
styles?: Dictionary<string>;
|
|
111
116
|
columnPartStyles?: {
|