@adaptabletools/adaptable 19.1.0-canary.0 → 19.1.0
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": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "19.1.0
|
|
3
|
+
"version": "19.1.0",
|
|
4
4
|
"description": "Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components",
|
|
@@ -16,19 +16,19 @@ export interface FormatColumnOptions {
|
|
|
16
16
|
*/
|
|
17
17
|
export interface CustomDisplayFormatter {
|
|
18
18
|
/**
|
|
19
|
-
* Format Id
|
|
19
|
+
* Custom Format Id
|
|
20
20
|
*/
|
|
21
21
|
id: string;
|
|
22
22
|
/**
|
|
23
|
-
* Format Description
|
|
23
|
+
* Custom Format Description
|
|
24
24
|
*/
|
|
25
25
|
label?: string;
|
|
26
26
|
/**
|
|
27
|
-
* Function used to render Custom Display Format
|
|
27
|
+
* Function used to render the Custom Display Format
|
|
28
28
|
*/
|
|
29
29
|
handler: (customDisplayFormatterContext: CustomDisplayFormatterContext) => any;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Used by Format Columns wizard to show where Custom Display Format can be applied
|
|
32
32
|
*/
|
|
33
33
|
scope: ColumnScope;
|
|
34
34
|
}
|
package/src/env.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
|
|
3
|
-
PUBLISH_TIMESTAMP:
|
|
4
|
-
VERSION: "19.1.0
|
|
3
|
+
PUBLISH_TIMESTAMP: 1730745764263 || Date.now(),
|
|
4
|
+
VERSION: "19.1.0" || '--current-version--',
|
|
5
5
|
};
|