@hpcc-js/observablehq-compiler 1.1.1 → 1.1.2

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.
Files changed (48) hide show
  1. package/LICENSE +43 -0
  2. package/README.md +105 -105
  3. package/bin/ojscc.mjs +74 -74
  4. package/dist/index.esm.js +554 -554
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/index.esm.min.js.map +1 -1
  7. package/dist/index.js +6700 -6696
  8. package/dist/index.js.map +1 -1
  9. package/dist/index.min.js +3 -3
  10. package/dist/index.min.js.map +1 -1
  11. package/package.json +3 -2
  12. package/src/__package__.ts +3 -3
  13. package/src/__tests__/File Attachments.ts +894 -894
  14. package/src/__tests__/Introduction to Imports.ts +748 -748
  15. package/src/__tests__/Observable TimeChart.ts +771 -771
  16. package/src/__tests__/index.ts +13 -13
  17. package/src/__tests__/node.ts +177 -177
  18. package/src/__tests__/tsconfig.json +20 -20
  19. package/src/compiler.md +234 -234
  20. package/src/compiler.ts +264 -264
  21. package/src/cst.ts +172 -172
  22. package/src/index.css +459 -459
  23. package/src/index.ts +7 -7
  24. package/src/util.md +113 -113
  25. package/src/util.ts +153 -153
  26. package/src/writer.ts +80 -80
  27. package/types/__package__.d.ts +3 -3
  28. package/types/__tests__/File Attachments.d.ts +109 -109
  29. package/types/__tests__/Introduction to Imports.d.ts +119 -119
  30. package/types/__tests__/Observable TimeChart.d.ts +110 -110
  31. package/types/__tests__/index.d.ts +1 -1
  32. package/types/__tests__/node.d.ts +1 -1
  33. package/types/compiler.d.ts +87 -87
  34. package/types/cst.d.ts +41 -41
  35. package/types/index.d.ts +5 -5
  36. package/types/util.d.ts +25 -25
  37. package/types/writer.d.ts +18 -18
  38. package/types-3.4/__package__.d.ts +4 -0
  39. package/types-3.4/__tests__/File Attachments.d.ts +110 -0
  40. package/types-3.4/__tests__/Introduction to Imports.d.ts +120 -0
  41. package/types-3.4/__tests__/Observable TimeChart.d.ts +111 -0
  42. package/types-3.4/__tests__/index.d.ts +2 -0
  43. package/types-3.4/__tests__/node.d.ts +2 -0
  44. package/types-3.4/compiler.d.ts +91 -0
  45. package/types-3.4/cst.d.ts +42 -0
  46. package/types-3.4/index.d.ts +6 -0
  47. package/types-3.4/util.d.ts +26 -0
  48. package/types-3.4/writer.d.ts +19 -0
@@ -1,111 +1,111 @@
1
- export declare const timechart: {
2
- id: string;
3
- slug: string;
4
- trashed: boolean;
5
- description: string;
6
- likes: number;
7
- publish_level: string;
8
- forks: number;
9
- fork_of: any;
10
- update_time: string;
11
- publish_time: string;
12
- publish_version: number;
13
- latest_version: number;
14
- thumbnail: string;
15
- default_thumbnail: string;
16
- roles: any[];
17
- sharing: any;
18
- owner: {
19
- id: string;
20
- avatar_url: string;
21
- login: string;
22
- name: string;
23
- bio: string;
24
- home_url: string;
25
- type: string;
26
- tier: string;
27
- };
28
- creator: {
29
- id: string;
30
- github_login: string;
31
- avatar_url: string;
32
- login: string;
33
- name: string;
34
- bio: string;
35
- home_url: string;
36
- tier: string;
37
- };
38
- authors: {
39
- id: string;
40
- avatar_url: string;
41
- name: string;
42
- login: string;
43
- bio: string;
44
- home_url: string;
45
- github_login: string;
46
- tier: string;
47
- approved: boolean;
48
- description: string;
49
- }[];
50
- collections: {
51
- id: string;
52
- type: string;
53
- slug: string;
54
- title: string;
55
- description: string;
56
- update_time: string;
57
- pinned: boolean;
58
- ordered: boolean;
59
- custom_thumbnail: string;
60
- default_thumbnail: string;
61
- thumbnail: string;
62
- listing_count: number;
63
- parent_collection_count: number;
64
- owner: {
65
- id: string;
66
- avatar_url: string;
67
- login: string;
68
- name: string;
69
- bio: string;
70
- home_url: string;
71
- type: string;
72
- tier: string;
73
- };
74
- }[];
75
- files: any[];
76
- comments: {
77
- id: string;
78
- content: string;
79
- node_id: number;
80
- create_time: string;
81
- update_time: any;
82
- resolved: boolean;
83
- user: {
84
- id: string;
85
- github_login: string;
86
- avatar_url: string;
87
- login: string;
88
- name: string;
89
- bio: string;
90
- home_url: string;
91
- tier: string;
92
- };
93
- }[];
94
- commenting_lock: any;
95
- suggestion_from: any;
96
- suggestions_to: any[];
97
- version: number;
98
- title: string;
99
- license: string;
100
- copyright: string;
101
- nodes: {
102
- id: number;
103
- value: string;
104
- pinned: boolean;
105
- mode: string;
106
- data: any;
107
- name: any;
108
- }[];
109
- resolutions: any[];
110
- };
1
+ export declare const timechart: {
2
+ id: string;
3
+ slug: string;
4
+ trashed: boolean;
5
+ description: string;
6
+ likes: number;
7
+ publish_level: string;
8
+ forks: number;
9
+ fork_of: any;
10
+ update_time: string;
11
+ publish_time: string;
12
+ publish_version: number;
13
+ latest_version: number;
14
+ thumbnail: string;
15
+ default_thumbnail: string;
16
+ roles: any[];
17
+ sharing: any;
18
+ owner: {
19
+ id: string;
20
+ avatar_url: string;
21
+ login: string;
22
+ name: string;
23
+ bio: string;
24
+ home_url: string;
25
+ type: string;
26
+ tier: string;
27
+ };
28
+ creator: {
29
+ id: string;
30
+ github_login: string;
31
+ avatar_url: string;
32
+ login: string;
33
+ name: string;
34
+ bio: string;
35
+ home_url: string;
36
+ tier: string;
37
+ };
38
+ authors: {
39
+ id: string;
40
+ avatar_url: string;
41
+ name: string;
42
+ login: string;
43
+ bio: string;
44
+ home_url: string;
45
+ github_login: string;
46
+ tier: string;
47
+ approved: boolean;
48
+ description: string;
49
+ }[];
50
+ collections: {
51
+ id: string;
52
+ type: string;
53
+ slug: string;
54
+ title: string;
55
+ description: string;
56
+ update_time: string;
57
+ pinned: boolean;
58
+ ordered: boolean;
59
+ custom_thumbnail: string;
60
+ default_thumbnail: string;
61
+ thumbnail: string;
62
+ listing_count: number;
63
+ parent_collection_count: number;
64
+ owner: {
65
+ id: string;
66
+ avatar_url: string;
67
+ login: string;
68
+ name: string;
69
+ bio: string;
70
+ home_url: string;
71
+ type: string;
72
+ tier: string;
73
+ };
74
+ }[];
75
+ files: any[];
76
+ comments: {
77
+ id: string;
78
+ content: string;
79
+ node_id: number;
80
+ create_time: string;
81
+ update_time: any;
82
+ resolved: boolean;
83
+ user: {
84
+ id: string;
85
+ github_login: string;
86
+ avatar_url: string;
87
+ login: string;
88
+ name: string;
89
+ bio: string;
90
+ home_url: string;
91
+ tier: string;
92
+ };
93
+ }[];
94
+ commenting_lock: any;
95
+ suggestion_from: any;
96
+ suggestions_to: any[];
97
+ version: number;
98
+ title: string;
99
+ license: string;
100
+ copyright: string;
101
+ nodes: {
102
+ id: number;
103
+ value: string;
104
+ pinned: boolean;
105
+ mode: string;
106
+ data: any;
107
+ name: any;
108
+ }[];
109
+ resolutions: any[];
110
+ };
111
111
  //# sourceMappingURL=Observable%20TimeChart.d.ts.map
@@ -1,2 +1,2 @@
1
- export * from "./node";
1
+ export * from "./node";
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,2 +1,2 @@
1
- export {};
1
+ export {};
2
2
  //# sourceMappingURL=node.d.ts.map
@@ -1,88 +1,88 @@
1
- import type { ohq } from "@hpcc-js/observable-shim";
2
- import { Writer } from "./writer";
3
- declare function createCell(node: ohq.Node, baseUrl: string): Promise<{
4
- (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
5
- modules: {
6
- (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
7
- importVariables: {
8
- (main: ohq.Module, otherModule: ohq.Module): void;
9
- dispose(): void;
10
- }[];
11
- variables: {
12
- (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
13
- dispose(): void;
14
- write(w: Writer): void;
15
- }[];
16
- dispose(): void;
17
- write(w: Writer): void;
18
- }[];
19
- variables: {
20
- (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
21
- dispose(): void;
22
- write(w: Writer): void;
23
- }[];
24
- dispose(): void;
25
- write(w: Writer): void;
26
- }>;
27
- export declare type CellFunc = Awaited<ReturnType<typeof createCell>>;
28
- declare function createFile(file: ohq.File): [string, any];
29
- export declare type FileFunc = ReturnType<typeof createFile>;
30
- export declare function compile(notebook: ohq.Notebook, baseUrl?: string): Promise<{
31
- (runtime: ohq.Runtime, inspector?: ohq.InspectorFactory): ohq.Module;
32
- fileAttachments: Map<string, any>;
33
- cells: {
34
- (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
35
- modules: {
36
- (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
37
- importVariables: {
38
- (main: ohq.Module, otherModule: ohq.Module): void;
39
- dispose(): void;
40
- }[];
41
- variables: {
42
- (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
43
- dispose(): void;
44
- write(w: Writer): void;
45
- }[];
46
- dispose(): void;
47
- write(w: Writer): void;
48
- }[];
49
- variables: {
50
- (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
51
- dispose(): void;
52
- write(w: Writer): void;
53
- }[];
54
- dispose(): void;
55
- write(w: Writer): void;
56
- }[];
57
- appendCell(n: ohq.Node, baseUrl?: string): Promise<{
58
- (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
59
- modules: {
60
- (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
61
- importVariables: {
62
- (main: ohq.Module, otherModule: ohq.Module): void;
63
- dispose(): void;
64
- }[];
65
- variables: {
66
- (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
67
- dispose(): void;
68
- write(w: Writer): void;
69
- }[];
70
- dispose(): void;
71
- write(w: Writer): void;
72
- }[];
73
- variables: {
74
- (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
75
- dispose(): void;
76
- write(w: Writer): void;
77
- }[];
78
- dispose(): void;
79
- write(w: Writer): void;
80
- }>;
81
- disposeCell(cell: CellFunc): Promise<void>;
82
- dispose(): void;
83
- write(w: Writer): void;
84
- toString(w?: Writer): string;
85
- }>;
86
- export declare type compileFunc = Awaited<ReturnType<typeof compile>>;
87
- export {};
1
+ import type { ohq } from "@hpcc-js/observable-shim";
2
+ import { Writer } from "./writer";
3
+ declare function createCell(node: ohq.Node, baseUrl: string): Promise<{
4
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
5
+ modules: {
6
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
7
+ importVariables: {
8
+ (main: ohq.Module, otherModule: ohq.Module): void;
9
+ dispose(): void;
10
+ }[];
11
+ variables: {
12
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
13
+ dispose(): void;
14
+ write(w: Writer): void;
15
+ }[];
16
+ dispose(): void;
17
+ write(w: Writer): void;
18
+ }[];
19
+ variables: {
20
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
21
+ dispose(): void;
22
+ write(w: Writer): void;
23
+ }[];
24
+ dispose(): void;
25
+ write(w: Writer): void;
26
+ }>;
27
+ export declare type CellFunc = Awaited<ReturnType<typeof createCell>>;
28
+ declare function createFile(file: ohq.File): [string, any];
29
+ export declare type FileFunc = ReturnType<typeof createFile>;
30
+ export declare function compile(notebook: ohq.Notebook, baseUrl?: string): Promise<{
31
+ (runtime: ohq.Runtime, inspector?: ohq.InspectorFactory): ohq.Module;
32
+ fileAttachments: Map<string, any>;
33
+ cells: {
34
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
35
+ modules: {
36
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
37
+ importVariables: {
38
+ (main: ohq.Module, otherModule: ohq.Module): void;
39
+ dispose(): void;
40
+ }[];
41
+ variables: {
42
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
43
+ dispose(): void;
44
+ write(w: Writer): void;
45
+ }[];
46
+ dispose(): void;
47
+ write(w: Writer): void;
48
+ }[];
49
+ variables: {
50
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
51
+ dispose(): void;
52
+ write(w: Writer): void;
53
+ }[];
54
+ dispose(): void;
55
+ write(w: Writer): void;
56
+ }[];
57
+ appendCell(n: ohq.Node, baseUrl?: string): Promise<{
58
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
59
+ modules: {
60
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
61
+ importVariables: {
62
+ (main: ohq.Module, otherModule: ohq.Module): void;
63
+ dispose(): void;
64
+ }[];
65
+ variables: {
66
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
67
+ dispose(): void;
68
+ write(w: Writer): void;
69
+ }[];
70
+ dispose(): void;
71
+ write(w: Writer): void;
72
+ }[];
73
+ variables: {
74
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
75
+ dispose(): void;
76
+ write(w: Writer): void;
77
+ }[];
78
+ dispose(): void;
79
+ write(w: Writer): void;
80
+ }>;
81
+ disposeCell(cell: CellFunc): Promise<void>;
82
+ dispose(): void;
83
+ write(w: Writer): void;
84
+ toString(w?: Writer): string;
85
+ }>;
86
+ export declare type compileFunc = Awaited<ReturnType<typeof compile>>;
87
+ export {};
88
88
  //# sourceMappingURL=compiler.d.ts.map
package/types/cst.d.ts CHANGED
@@ -1,42 +1,42 @@
1
- export interface ParsedCell {
2
- type: "import" | "viewof" | "mutable" | "variable" | "identifier";
3
- }
4
- export interface ParsedImportCell extends ParsedCell {
5
- type: "import";
6
- src: string;
7
- specifiers: {
8
- view: boolean;
9
- name: string;
10
- alias?: string;
11
- }[];
12
- injections: {
13
- name: string;
14
- alias: string;
15
- }[];
16
- }
17
- export interface ParsedVariable extends ParsedCell {
18
- type: "variable";
19
- id?: string;
20
- inputs: string[];
21
- func: any;
22
- }
23
- export interface ParsedViewCell extends ParsedCell {
24
- type: "viewof";
25
- variable: ParsedVariable;
26
- variableValue: ParsedVariable;
27
- }
28
- interface ParsedMutableCell extends ParsedCell {
29
- type: "mutable";
30
- initial: ParsedVariable;
31
- variable: ParsedVariable;
32
- variableValue: ParsedVariable;
33
- }
34
- interface ParsedVariableCell extends ParsedCell {
35
- type: "variable";
36
- id: string;
37
- inputs: string[];
38
- func: any;
39
- }
40
- export declare function parseCell(cellStr: string): ParsedImportCell | ParsedViewCell | ParsedMutableCell | ParsedVariableCell;
41
- export {};
1
+ export interface ParsedCell {
2
+ type: "import" | "viewof" | "mutable" | "variable" | "identifier";
3
+ }
4
+ export interface ParsedImportCell extends ParsedCell {
5
+ type: "import";
6
+ src: string;
7
+ specifiers: {
8
+ view: boolean;
9
+ name: string;
10
+ alias?: string;
11
+ }[];
12
+ injections: {
13
+ name: string;
14
+ alias: string;
15
+ }[];
16
+ }
17
+ export interface ParsedVariable extends ParsedCell {
18
+ type: "variable";
19
+ id?: string;
20
+ inputs: string[];
21
+ func: any;
22
+ }
23
+ export interface ParsedViewCell extends ParsedCell {
24
+ type: "viewof";
25
+ variable: ParsedVariable;
26
+ variableValue: ParsedVariable;
27
+ }
28
+ interface ParsedMutableCell extends ParsedCell {
29
+ type: "mutable";
30
+ initial: ParsedVariable;
31
+ variable: ParsedVariable;
32
+ variableValue: ParsedVariable;
33
+ }
34
+ interface ParsedVariableCell extends ParsedCell {
35
+ type: "variable";
36
+ id: string;
37
+ inputs: string[];
38
+ func: any;
39
+ }
40
+ export declare function parseCell(cellStr: string): ParsedImportCell | ParsedViewCell | ParsedMutableCell | ParsedVariableCell;
41
+ export {};
42
42
  //# sourceMappingURL=cst.d.ts.map
package/types/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- export type { ohq } from "@hpcc-js/observable-shim";
2
- export * from "./compiler";
3
- export { ojs2notebook, omd2notebook, download } from "./util";
4
- export * from "./writer";
5
- import "../src/index.css";
1
+ export type { ohq } from "@hpcc-js/observable-shim";
2
+ export * from "./compiler";
3
+ export { ojs2notebook, omd2notebook, download } from "./util";
4
+ export * from "./writer";
5
+ import "../src/index.css";
6
6
  //# sourceMappingURL=index.d.ts.map
package/types/util.d.ts CHANGED
@@ -1,26 +1,26 @@
1
- import type { ohq } from "@hpcc-js/observable-shim";
2
- interface Ref {
3
- start: number;
4
- end: number;
5
- newText: string;
6
- }
7
- export interface Refs {
8
- inputs: string[];
9
- args: string[];
10
- patches: Ref[];
11
- }
12
- export declare function createFunction(refs: Refs, async?: boolean, generator?: boolean, blockStatement?: boolean, body?: string): any;
13
- export declare function obfuscatedImport(url: string): Promise<any>;
14
- interface ParsedOJS {
15
- ojs: string;
16
- offset: number;
17
- inlineMD: boolean;
18
- }
19
- export declare function encodeBacktick(str: string): string;
20
- export declare function notebook2ojs(_: string): ParsedOJS[];
21
- export declare function ojs2notebook(ojs: string): ohq.Notebook;
22
- export declare function omd2notebook(omd: string): ohq.Notebook;
23
- export declare function fetchEx(url: string): Promise<Response>;
24
- export declare function download(impUrl: string): Promise<ohq.Notebook>;
25
- export {};
1
+ import type { ohq } from "@hpcc-js/observable-shim";
2
+ interface Ref {
3
+ start: number;
4
+ end: number;
5
+ newText: string;
6
+ }
7
+ export interface Refs {
8
+ inputs: string[];
9
+ args: string[];
10
+ patches: Ref[];
11
+ }
12
+ export declare function createFunction(refs: Refs, async?: boolean, generator?: boolean, blockStatement?: boolean, body?: string): any;
13
+ export declare function obfuscatedImport(url: string): Promise<any>;
14
+ interface ParsedOJS {
15
+ ojs: string;
16
+ offset: number;
17
+ inlineMD: boolean;
18
+ }
19
+ export declare function encodeBacktick(str: string): string;
20
+ export declare function notebook2ojs(_: string): ParsedOJS[];
21
+ export declare function ojs2notebook(ojs: string): ohq.Notebook;
22
+ export declare function omd2notebook(omd: string): ohq.Notebook;
23
+ export declare function fetchEx(url: string): Promise<Response>;
24
+ export declare function download(impUrl: string): Promise<ohq.Notebook>;
25
+ export {};
26
26
  //# sourceMappingURL=util.d.ts.map
package/types/writer.d.ts CHANGED
@@ -1,19 +1,19 @@
1
- import { ohq } from "@hpcc-js/observable-shim";
2
- import { ParsedImportCell, ParsedVariable } from "./cst";
3
- export declare class Writer {
4
- protected _files: ohq.File[];
5
- protected _imports: string[];
6
- protected _functions: string[];
7
- protected _defines: string[];
8
- protected _defineUid: number;
9
- protected _functionUid: number;
10
- constructor();
11
- toString(): string;
12
- files(files: ohq.File[]): void;
13
- import(url: string): void;
14
- importDefine(imp: Partial<ParsedImportCell>): void;
15
- function(variable: Partial<ParsedVariable>): string;
16
- define(variable: Partial<ParsedVariable>, observable?: boolean, inlineFunc?: boolean, funcId?: string): void;
17
- error(msg: string): void;
18
- }
1
+ import { ohq } from "@hpcc-js/observable-shim";
2
+ import { ParsedImportCell, ParsedVariable } from "./cst";
3
+ export declare class Writer {
4
+ protected _files: ohq.File[];
5
+ protected _imports: string[];
6
+ protected _functions: string[];
7
+ protected _defines: string[];
8
+ protected _defineUid: number;
9
+ protected _functionUid: number;
10
+ constructor();
11
+ toString(): string;
12
+ files(files: ohq.File[]): void;
13
+ import(url: string): void;
14
+ importDefine(imp: Partial<ParsedImportCell>): void;
15
+ function(variable: Partial<ParsedVariable>): string;
16
+ define(variable: Partial<ParsedVariable>, observable?: boolean, inlineFunc?: boolean, funcId?: string): void;
17
+ error(msg: string): void;
18
+ }
19
19
  //# sourceMappingURL=writer.d.ts.map
@@ -0,0 +1,4 @@
1
+ export declare const PKG_NAME = "@hpcc-js/observablehq-compiler";
2
+ export declare const PKG_VERSION = "1.1.2";
3
+ export declare const BUILD_VERSION = "2.104.5";
4
+ //# sourceMappingURL=__package__.d.ts.map