@hpcc-js/common 2.65.0 → 2.66.1
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/LICENSE +43 -43
- package/README.md +59 -59
- package/dist/index.es6.js +7098 -7070
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +7141 -7107
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +21 -38
- package/src/CanvasWidget.ts +31 -31
- package/src/Class.ts +67 -67
- package/src/Database.ts +856 -856
- package/src/Entity.ts +235 -235
- package/src/EntityCard.ts +66 -66
- package/src/EntityPin.ts +103 -103
- package/src/EntityRect.css +15 -15
- package/src/EntityRect.ts +236 -236
- package/src/EntityVertex.ts +86 -86
- package/src/FAChar.css +2 -2
- package/src/FAChar.ts +82 -82
- package/src/HTMLWidget.ts +191 -191
- package/src/IList.ts +4 -4
- package/src/IMenu.ts +5 -5
- package/src/Icon.css +9 -9
- package/src/Icon.ts +164 -164
- package/src/Image.ts +95 -95
- package/src/List.css +13 -13
- package/src/List.ts +99 -99
- package/src/Menu.css +23 -23
- package/src/Menu.ts +138 -138
- package/src/Palette.ts +341 -341
- package/src/Platform.ts +125 -125
- package/src/ProgressBar.ts +105 -105
- package/src/PropertyExt.ts +793 -793
- package/src/ResizeSurface.css +39 -39
- package/src/ResizeSurface.ts +221 -221
- package/src/SVGWidget.ts +567 -567
- package/src/SVGZoomWidget.css +12 -12
- package/src/SVGZoomWidget.ts +416 -416
- package/src/Shape.css +3 -3
- package/src/Shape.ts +186 -186
- package/src/Surface.css +35 -35
- package/src/Surface.ts +350 -350
- package/src/Text.css +4 -4
- package/src/Text.ts +131 -131
- package/src/TextBox.css +4 -4
- package/src/TextBox.ts +168 -168
- package/src/TitleBar.css +99 -99
- package/src/TitleBar.ts +401 -401
- package/src/Transition.ts +45 -45
- package/src/Utility.ts +820 -820
- package/src/Widget.css +8 -8
- package/src/Widget.ts +712 -712
- package/src/WidgetArray.ts +13 -13
- package/src/__package__.ts +2 -2
- package/src/index.ts +55 -55
- package/types/CanvasWidget.d.ts +8 -8
- package/types/Class.d.ts +12 -12
- package/types/Database.d.ts +136 -136
- package/types/Entity.d.ts +88 -88
- package/types/EntityCard.d.ts +13 -13
- package/types/EntityPin.d.ts +22 -22
- package/types/EntityRect.d.ts +45 -45
- package/types/EntityVertex.d.ts +30 -30
- package/types/FAChar.d.ts +29 -29
- package/types/HTMLWidget.d.ts +27 -27
- package/types/IList.d.ts +4 -4
- package/types/IMenu.d.ts +5 -5
- package/types/Icon.d.ts +62 -62
- package/types/Image.d.ts +33 -33
- package/types/List.d.ts +15 -15
- package/types/Menu.d.ts +28 -28
- package/types/Palette.d.ts +19 -19
- package/types/Platform.d.ts +5 -5
- package/types/ProgressBar.d.ts +21 -21
- package/types/PropertyExt.d.ts +114 -114
- package/types/ResizeSurface.d.ts +23 -23
- package/types/SVGWidget.d.ts +77 -77
- package/types/SVGZoomWidget.d.ts +68 -68
- package/types/Shape.d.ts +34 -34
- package/types/Surface.d.ts +69 -69
- package/types/Text.d.ts +37 -37
- package/types/TextBox.d.ts +76 -76
- package/types/TitleBar.d.ts +117 -117
- package/types/Transition.d.ts +11 -11
- package/types/Utility.d.ts +100 -100
- package/types/Utility.d.ts.map +1 -1
- package/types/Widget.d.ts +149 -149
- package/types/WidgetArray.d.ts +6 -6
- package/types/__package__.d.ts +3 -3
- package/types/index.d.ts +52 -52
- package/types-3.4/Utility.d.ts +1 -1
- package/types-3.4/__package__.d.ts +2 -2
package/types/index.d.ts
CHANGED
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
export * from "./__package__";
|
|
2
|
-
export * from "./CanvasWidget";
|
|
3
|
-
export * from "./Class";
|
|
4
|
-
import * as Database from "./Database";
|
|
5
|
-
export { Database };
|
|
6
|
-
export * from "./Entity";
|
|
7
|
-
export * from "./EntityCard";
|
|
8
|
-
export * from "./EntityPin";
|
|
9
|
-
export * from "./EntityRect";
|
|
10
|
-
export * from "./EntityVertex";
|
|
11
|
-
export * from "./FAChar";
|
|
12
|
-
export * from "./HTMLWidget";
|
|
13
|
-
export * from "./Icon";
|
|
14
|
-
export * from "./IList";
|
|
15
|
-
export * from "./Image";
|
|
16
|
-
export * from "./IMenu";
|
|
17
|
-
export * from "./List";
|
|
18
|
-
export * from "./Menu";
|
|
19
|
-
import * as Palette from "./Palette";
|
|
20
|
-
export { Palette };
|
|
21
|
-
import * as Platform from "./Platform";
|
|
22
|
-
export { Platform };
|
|
23
|
-
export * from "./ProgressBar";
|
|
24
|
-
export * from "./PropertyExt";
|
|
25
|
-
export * from "./ResizeSurface";
|
|
26
|
-
export * from "./Shape";
|
|
27
|
-
export * from "./Surface";
|
|
28
|
-
export * from "./SVGWidget";
|
|
29
|
-
export * from "./SVGZoomWidget";
|
|
30
|
-
export * from "./Text";
|
|
31
|
-
export * from "./TextBox";
|
|
32
|
-
export * from "./TitleBar";
|
|
33
|
-
import * as Utility from "./Utility";
|
|
34
|
-
export { Utility };
|
|
35
|
-
export * from "./Widget";
|
|
36
|
-
export * from "./WidgetArray";
|
|
37
|
-
export * from "d3-array";
|
|
38
|
-
export * from "d3-brush";
|
|
39
|
-
export * from "d3-collection";
|
|
40
|
-
export * from "d3-color";
|
|
41
|
-
export * from "d3-dispatch";
|
|
42
|
-
export * from "d3-drag";
|
|
43
|
-
export * from "d3-dsv";
|
|
44
|
-
export * from "d3-ease";
|
|
45
|
-
export * from "d3-format";
|
|
46
|
-
export * from "d3-interpolate";
|
|
47
|
-
export * from "d3-scale";
|
|
48
|
-
export * from "d3-selection";
|
|
49
|
-
export * from "d3-time-format";
|
|
50
|
-
export * from "d3-transition";
|
|
51
|
-
export * from "d3-zoom";
|
|
52
|
-
export declare const d3Event: () => any;
|
|
1
|
+
export * from "./__package__";
|
|
2
|
+
export * from "./CanvasWidget";
|
|
3
|
+
export * from "./Class";
|
|
4
|
+
import * as Database from "./Database";
|
|
5
|
+
export { Database };
|
|
6
|
+
export * from "./Entity";
|
|
7
|
+
export * from "./EntityCard";
|
|
8
|
+
export * from "./EntityPin";
|
|
9
|
+
export * from "./EntityRect";
|
|
10
|
+
export * from "./EntityVertex";
|
|
11
|
+
export * from "./FAChar";
|
|
12
|
+
export * from "./HTMLWidget";
|
|
13
|
+
export * from "./Icon";
|
|
14
|
+
export * from "./IList";
|
|
15
|
+
export * from "./Image";
|
|
16
|
+
export * from "./IMenu";
|
|
17
|
+
export * from "./List";
|
|
18
|
+
export * from "./Menu";
|
|
19
|
+
import * as Palette from "./Palette";
|
|
20
|
+
export { Palette };
|
|
21
|
+
import * as Platform from "./Platform";
|
|
22
|
+
export { Platform };
|
|
23
|
+
export * from "./ProgressBar";
|
|
24
|
+
export * from "./PropertyExt";
|
|
25
|
+
export * from "./ResizeSurface";
|
|
26
|
+
export * from "./Shape";
|
|
27
|
+
export * from "./Surface";
|
|
28
|
+
export * from "./SVGWidget";
|
|
29
|
+
export * from "./SVGZoomWidget";
|
|
30
|
+
export * from "./Text";
|
|
31
|
+
export * from "./TextBox";
|
|
32
|
+
export * from "./TitleBar";
|
|
33
|
+
import * as Utility from "./Utility";
|
|
34
|
+
export { Utility };
|
|
35
|
+
export * from "./Widget";
|
|
36
|
+
export * from "./WidgetArray";
|
|
37
|
+
export * from "d3-array";
|
|
38
|
+
export * from "d3-brush";
|
|
39
|
+
export * from "d3-collection";
|
|
40
|
+
export * from "d3-color";
|
|
41
|
+
export * from "d3-dispatch";
|
|
42
|
+
export * from "d3-drag";
|
|
43
|
+
export * from "d3-dsv";
|
|
44
|
+
export * from "d3-ease";
|
|
45
|
+
export * from "d3-format";
|
|
46
|
+
export * from "d3-interpolate";
|
|
47
|
+
export * from "d3-scale";
|
|
48
|
+
export * from "d3-selection";
|
|
49
|
+
export * from "d3-time-format";
|
|
50
|
+
export * from "d3-transition";
|
|
51
|
+
export * from "d3-zoom";
|
|
52
|
+
export declare const d3Event: () => any;
|
|
53
53
|
//# sourceMappingURL=index.d.ts.map
|
package/types-3.4/Utility.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ export declare function d3ArrayAdapter(array: any): {
|
|
|
62
62
|
insertBefore(node: any, referenceNode: any): any;
|
|
63
63
|
removeChild(node: any): any;
|
|
64
64
|
};
|
|
65
|
-
export declare function downloadBlob(blob: Blob, filename: string):
|
|
65
|
+
export declare function downloadBlob(blob: Blob, filename: string): any;
|
|
66
66
|
export declare function timestamp(): string;
|
|
67
67
|
export declare function downloadString(format: "CSV" | "TSV" | "JSON" | "TEXT" | "SVG", blob: string, id?: string): void;
|
|
68
68
|
export declare function widgetPath(classID: any): string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/common";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.
|
|
2
|
+
export declare const PKG_VERSION = "2.66.1";
|
|
3
|
+
export declare const BUILD_VERSION = "2.102.2";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|