@finos/legend-application-repl-deployment 12.70.0 → 12.71.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/dist/repl/config.json +23 -15
- package/dist/repl/index.html +1 -1
- package/dist/repl/static/index.05c83208.js +45 -0
- package/dist/repl/static/index.05c83208.js.map +1 -0
- package/dist/repl/static/index.4b87d5ff.css +54 -0
- package/dist/repl/static/index.4b87d5ff.css.map +1 -0
- package/dist/repl/version.json +1 -1
- package/package.json +3 -3
- package/dist/repl/static/index.0ad35428.css +0 -54
- package/dist/repl/static/index.0ad35428.css.map +0 -1
- package/dist/repl/static/index.a9643dc2.js +0 -45
- package/dist/repl/static/index.a9643dc2.js.map +0 -1
package/dist/repl/config.json
CHANGED
@@ -9,27 +9,35 @@
|
|
9
9
|
"url": "https://legend.finos.org",
|
10
10
|
"registry": [],
|
11
11
|
"entries": {
|
12
|
-
"data-cube.
|
12
|
+
"data-cube.column-configuration.display-value-as-link": {
|
13
|
+
"title": "Column: Display Value as Link",
|
13
14
|
"markdownText": {
|
14
|
-
"value": "
|
15
|
-
}
|
16
|
-
"title": "Extended Column Levels"
|
15
|
+
"value": "Each value, if it is a valid URL, will be displayed as a hyperlink. The label of the hyperlink will be extracted from a configurable query parameter (`dataCube.linkLabel` by default), if no label value can be extracted, the whole link will be used as the label."
|
16
|
+
}
|
17
17
|
},
|
18
|
-
"data-cube.column.
|
18
|
+
"data-cube.column-configuration.kind": {
|
19
|
+
"title": "Column: Kind",
|
19
20
|
"markdownText": {
|
20
|
-
"value": "#
|
21
|
-
}
|
22
|
-
|
21
|
+
"value": "A column represents either a `dimension` or a `measure`.\n\n# Dimension\n\nDescriptions that help group and filter data. Typically associated with string columns where each value represents a category.\n\n# Measure\n\nNumeric values that detail or aggregate dimensions. Typically associated with numeric columns."
|
22
|
+
}
|
23
|
+
},
|
24
|
+
"data-cube.column-configuration.missing-value-format": {
|
25
|
+
"title": "Column: Missing Value Format",
|
26
|
+
"text": "The missing value format is the text that will be displayed when the value of the cell is NULL.\nThe default value is the empty string ''."
|
23
27
|
},
|
24
|
-
"data-cube.column.
|
28
|
+
"data-cube.column-configuration.unit": {
|
29
|
+
"title": "Column: Unit",
|
30
|
+
"text": "The unit which would be displayed next to the measure value in each cell. Default to show after the value, use prefix '_' to display before the value, e.g. _$ would show value 4 as $4"
|
31
|
+
},
|
32
|
+
"data-cube.extended-column.level": {
|
33
|
+
"title": "Extended Column: Level",
|
25
34
|
"markdownText": {
|
26
|
-
"value": "
|
27
|
-
}
|
28
|
-
"title": "Display Column Value as Link"
|
35
|
+
"value": "# Leaf Level\n\nThe value in the extended column is computed at the lowest (most granular) level.\n\n# Group Level\n\nThe value in the extended column is computed for each row in the table, no matter whether it's a leaf-level row or an aggregate.\n\n> This is used for operating on aggregated values, e.g., computing a yield (total credits / total volume) or a percentage change. A group-level extended column does not support grouping (pivoting), because it is computed _after_ those operations have been applied. Values are not aggregated; instead, the value on an aggregate row is computed from other aggregate values on the row."
|
36
|
+
}
|
29
37
|
},
|
30
|
-
"data-cube.
|
31
|
-
"
|
32
|
-
"
|
38
|
+
"data-cube.grid-configuration.row-limit": {
|
39
|
+
"title": "Grid Configuration: Row Limit",
|
40
|
+
"text": "Truncate result to the specified number of rows at every level."
|
33
41
|
}
|
34
42
|
}
|
35
43
|
}
|
package/dist/repl/index.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<!doctype html><html lang="en"><head><title>⊞ Legend DataCube</title><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"/><link rel="icon" href="./favicon.ico"><script defer="defer" src="./static/vendor.3bb370ac.js"></script><script defer="defer" src="./static/index.
|
1
|
+
<!doctype html><html lang="en"><head><title>⊞ Legend DataCube</title><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"/><link rel="icon" href="./favicon.ico"><script defer="defer" src="./static/vendor.3bb370ac.js"></script><script defer="defer" src="./static/index.05c83208.js"></script><link href="./static/vendor.0387e3b4.css" rel="stylesheet"><link href="./static/index.4b87d5ff.css" rel="stylesheet"></head><body style="width: 100%; height: 100vh; overflow: hidden"></body></html>
|