@malloydata/render 0.0.1 → 0.0.4
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/html_view.js +1 -1
- package/dist/html/link.js +1 -0
- package/package.json +10 -3
package/dist/html/html_view.js
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.makeRenderer = exports.JSONView = exports.HTMLView = void 0;
|
|
16
|
+
const malloy_1 = require("@malloydata/malloy");
|
|
16
17
|
const bar_chart_1 = require("./bar_chart");
|
|
17
18
|
const boolean_1 = require("./boolean");
|
|
18
19
|
const json_1 = require("./json");
|
|
@@ -35,7 +36,6 @@ const table_1 = require("./table");
|
|
|
35
36
|
const text_1 = require("./text");
|
|
36
37
|
const vega_spec_1 = require("./vega_spec");
|
|
37
38
|
const container_1 = require("./container");
|
|
38
|
-
const malloy_1 = require("@malloydata/malloy");
|
|
39
39
|
const utils_1 = require("./utils");
|
|
40
40
|
class HTMLView {
|
|
41
41
|
constructor(document) {
|
package/dist/html/link.js
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/render",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"license": "GPL-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
+
"homepage": "https://github.com/looker-open-source/malloy#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/looker-open-source/malloy"
|
|
11
|
+
},
|
|
7
12
|
"scripts": {
|
|
8
13
|
"lint": "eslint '**/*.ts{,x}'",
|
|
9
14
|
"lint-fix": "eslint '**/*.ts{,x}' --fix",
|
|
@@ -11,7 +16,9 @@
|
|
|
11
16
|
"build": "tsc --build"
|
|
12
17
|
},
|
|
13
18
|
"dependencies": {
|
|
14
|
-
"@malloydata/malloy": "^0.0.
|
|
15
|
-
"us-atlas": "^3.0.0"
|
|
19
|
+
"@malloydata/malloy": "^0.0.4",
|
|
20
|
+
"us-atlas": "^3.0.0",
|
|
21
|
+
"vega": "^5.21.0",
|
|
22
|
+
"vega-lite": "^5.2.0"
|
|
16
23
|
}
|
|
17
24
|
}
|