@grouparoo/app-templates
Advanced tools
Comparing version 0.2.0-alpha.21 to 0.2.0-alpha.22
@@ -65,2 +65,3 @@ "use strict"; | ||
sourceRunPercentComplete, | ||
getColumns, | ||
}, | ||
@@ -67,0 +68,0 @@ }; |
@@ -1,2 +0,2 @@ | ||
import { SimpleAppOptions } from "@grouparoo/core"; | ||
import { PropertyTypes, SimpleAppOptions } from "@grouparoo/core"; | ||
export { SimpleAppOptions }; | ||
@@ -36,5 +36,7 @@ import { DataResponse, DataResponseRow } from "../shared/types"; | ||
} | ||
export declare type ColumnType = typeof PropertyTypes[number]; | ||
export interface ColumnDefinition { | ||
name: string; | ||
filterOperations: FilterOperation[]; | ||
type: ColumnType; | ||
data?: any; | ||
@@ -41,0 +43,0 @@ } |
@@ -5,3 +5,3 @@ { | ||
"description": "Common patterns for Grouparoo plugins that contribute apps", | ||
"version": "0.2.0-alpha.21", | ||
"version": "0.2.0-alpha.22", | ||
"license": "MPL-2.0", | ||
@@ -32,4 +32,4 @@ "private": false, | ||
"devDependencies": { | ||
"@grouparoo/core": "^0.2.0-alpha.21", | ||
"@grouparoo/spec-helper": "^0.2.0-alpha.21", | ||
"@grouparoo/core": "^0.2.0-alpha.22", | ||
"@grouparoo/spec-helper": "^0.2.0-alpha.22", | ||
"@types/jest": "*", | ||
@@ -44,3 +44,3 @@ "@types/node": "*", | ||
}, | ||
"gitHead": "3be95dba1340266a01a83bd060d42719ecc7b134" | ||
"gitHead": "c4ff8ef75e46f4ea8872088a98cf4474059d8508" | ||
} |
@@ -125,4 +125,5 @@ import { | ||
sourceRunPercentComplete, | ||
getColumns, // powers syncTable with the column types | ||
}, | ||
}; | ||
}; |
@@ -1,2 +0,2 @@ | ||
import { SimpleAppOptions } from "@grouparoo/core"; | ||
import { PropertyTypes, SimpleAppOptions } from "@grouparoo/core"; | ||
export { SimpleAppOptions }; | ||
@@ -49,5 +49,7 @@ | ||
} | ||
export type ColumnType = typeof PropertyTypes[number]; | ||
export interface ColumnDefinition { | ||
name: string; | ||
filterOperations: FilterOperation[]; | ||
type: ColumnType; | ||
data?: any; | ||
@@ -54,0 +56,0 @@ } |
194960
5302