dbgate-datalib 5.5.6 → 5.5.7-alpha.16
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.
|
@@ -31,8 +31,10 @@ export declare class FreeTableGridDisplay extends GridDisplay {
|
|
|
31
31
|
isZerofill?: boolean;
|
|
32
32
|
options?: [];
|
|
33
33
|
canSelectMultipleOptions?: boolean;
|
|
34
|
+
undropColumnName?: string;
|
|
34
35
|
contentHash?: string;
|
|
35
36
|
engine?: string;
|
|
37
|
+
undropPureName?: string;
|
|
36
38
|
}[];
|
|
37
39
|
getDisplayColumn(col: ColumnInfo): {
|
|
38
40
|
pureName: string;
|
|
@@ -59,7 +61,9 @@ export declare class FreeTableGridDisplay extends GridDisplay {
|
|
|
59
61
|
isZerofill?: boolean;
|
|
60
62
|
options?: [];
|
|
61
63
|
canSelectMultipleOptions?: boolean;
|
|
64
|
+
undropColumnName?: string;
|
|
62
65
|
contentHash?: string;
|
|
63
66
|
engine?: string;
|
|
67
|
+
undropPureName?: string;
|
|
64
68
|
};
|
|
65
69
|
}
|
|
@@ -53,8 +53,10 @@ export declare class TableGridDisplay extends GridDisplay {
|
|
|
53
53
|
isZerofill?: boolean;
|
|
54
54
|
options?: [];
|
|
55
55
|
canSelectMultipleOptions?: boolean;
|
|
56
|
+
undropColumnName?: string;
|
|
56
57
|
contentHash?: string;
|
|
57
58
|
engine?: string;
|
|
59
|
+
undropPureName?: string;
|
|
58
60
|
}[];
|
|
59
61
|
addJoinsFromExpandedColumns(select: Select, columns: DisplayColumn[], parentAlias: string, columnSources: any): void;
|
|
60
62
|
addReferenceToSelect(select: Select, parentAlias: string, column: DisplayColumn): void;
|
|
@@ -94,8 +96,10 @@ export declare class TableGridDisplay extends GridDisplay {
|
|
|
94
96
|
isZerofill?: boolean;
|
|
95
97
|
options?: [];
|
|
96
98
|
canSelectMultipleOptions?: boolean;
|
|
99
|
+
undropColumnName?: string;
|
|
97
100
|
contentHash?: string;
|
|
98
101
|
engine?: string;
|
|
102
|
+
undropPureName?: string;
|
|
99
103
|
};
|
|
100
104
|
addAddedColumnsToSelect(select: Select, columns: DisplayColumn[], parentAlias: string, displayedColumnInfo: DisplayedColumnInfo): void;
|
|
101
105
|
get hasReferences(): boolean;
|
package/lib/ViewGridDisplay.d.ts
CHANGED
|
@@ -30,8 +30,10 @@ export declare class ViewGridDisplay extends GridDisplay {
|
|
|
30
30
|
isZerofill?: boolean;
|
|
31
31
|
options?: [];
|
|
32
32
|
canSelectMultipleOptions?: boolean;
|
|
33
|
+
undropColumnName?: string;
|
|
33
34
|
contentHash?: string;
|
|
34
35
|
engine?: string;
|
|
36
|
+
undropPureName?: string;
|
|
35
37
|
}[];
|
|
36
38
|
getDisplayColumn(view: ViewInfo, col: ColumnInfo): {
|
|
37
39
|
pureName: string;
|
|
@@ -58,8 +60,10 @@ export declare class ViewGridDisplay extends GridDisplay {
|
|
|
58
60
|
isZerofill?: boolean;
|
|
59
61
|
options?: [];
|
|
60
62
|
canSelectMultipleOptions?: boolean;
|
|
63
|
+
undropColumnName?: string;
|
|
61
64
|
contentHash?: string;
|
|
62
65
|
engine?: string;
|
|
66
|
+
undropPureName?: string;
|
|
63
67
|
};
|
|
64
68
|
createSelect(options?: {}): import("dbgate-sqltree").Select;
|
|
65
69
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.5.
|
|
2
|
+
"version": "5.5.7-alpha.16",
|
|
3
3
|
"name": "dbgate-datalib",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"typings": "lib/index.d.ts",
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"lib"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"dbgate-sqltree": "^5.5.
|
|
17
|
-
"dbgate-tools": "^5.5.
|
|
18
|
-
"dbgate-filterparser": "^5.5.
|
|
16
|
+
"dbgate-sqltree": "^5.5.7-alpha.16",
|
|
17
|
+
"dbgate-tools": "^5.5.7-alpha.16",
|
|
18
|
+
"dbgate-filterparser": "^5.5.7-alpha.16",
|
|
19
19
|
"uuid": "^3.4.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"dbgate-types": "^5.5.
|
|
22
|
+
"dbgate-types": "^5.5.7-alpha.16",
|
|
23
23
|
"@types/node": "^13.7.0",
|
|
24
24
|
"jest": "^28.1.3",
|
|
25
25
|
"ts-jest": "^28.0.7",
|