@malloydata/render 0.0.56 → 0.0.57-dev230713190719
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/html/table.js +1 -1
- package/package.json +2 -2
package/dist/html/table.js
CHANGED
|
@@ -96,7 +96,7 @@ class HTMLTableRenderer extends container_1.ContainerRenderer {
|
|
|
96
96
|
padding: ${childRenderer instanceof HTMLTableRenderer ? '0' : '8px'};
|
|
97
97
|
vertical-align: top;
|
|
98
98
|
border-bottom: 1px solid var(--malloy-border-color, #eaeaea);
|
|
99
|
-
${isNumeric ? 'text-align: right;' : ''}
|
|
99
|
+
${isNumeric || shouldTranspose ? 'text-align: right;' : ''}
|
|
100
100
|
`;
|
|
101
101
|
cellElement.appendChild(rendered);
|
|
102
102
|
cells[rowIndex][columnIndex] = cellElement;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/render",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.57-dev230713190719",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"prepublishOnly": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@malloydata/malloy": "^0.0.
|
|
21
|
+
"@malloydata/malloy": "^0.0.57-dev230713190719",
|
|
22
22
|
"@types/luxon": "^2.4.0",
|
|
23
23
|
"lodash": "^4.17.20",
|
|
24
24
|
"luxon": "^2.4.0",
|