@hpcc-js/common 3.6.5 → 3.7.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.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +4 -4
- package/src/CanvasWidget.ts +31 -31
- package/src/Class.ts +72 -72
- package/src/Database.ts +860 -860
- 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 +254 -254
- package/src/EntityVertex.ts +86 -86
- package/src/FAChar.css +2 -2
- package/src/FAChar.ts +89 -89
- package/src/HTMLWidget.ts +191 -191
- package/src/IList.ts +4 -4
- package/src/IMenu.ts +5 -5
- package/src/Icon.css +10 -9
- package/src/Icon.ts +176 -176
- package/src/Image.ts +104 -104
- package/src/List.css +13 -13
- package/src/List.ts +102 -102
- package/src/Menu.css +23 -23
- package/src/Menu.ts +139 -139
- package/src/Palette.ts +341 -341
- package/src/Platform.ts +125 -125
- package/src/ProgressBar.ts +115 -115
- package/src/PropertyExt.ts +770 -770
- package/src/ResizeSurface.css +39 -39
- package/src/ResizeSurface.ts +225 -225
- package/src/SVGWidget.ts +583 -583
- package/src/SVGZoomWidget.css +12 -12
- package/src/SVGZoomWidget.ts +427 -427
- package/src/Shape.css +3 -3
- package/src/Shape.ts +186 -186
- package/src/Surface.css +40 -35
- package/src/Surface.ts +364 -364
- package/src/Text.css +4 -4
- package/src/Text.ts +131 -131
- package/src/TextBox.css +4 -4
- package/src/TextBox.ts +183 -183
- package/src/TitleBar.css +114 -114
- package/src/TitleBar.ts +407 -407
- package/src/Transition.ts +45 -45
- package/src/Utility.ts +843 -839
- package/src/Widget.css +8 -8
- package/src/Widget.ts +731 -731
- package/src/WidgetArray.ts +15 -15
- package/src/__package__.ts +3 -3
- package/src/index.ts +55 -55
package/src/WidgetArray.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Widget } from "./Widget.ts";
|
|
2
|
-
|
|
3
|
-
export class WidgetArray extends Widget {
|
|
4
|
-
|
|
5
|
-
constructor() {
|
|
6
|
-
super();
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
WidgetArray.prototype._class += " common_WidgetArray";
|
|
10
|
-
|
|
11
|
-
export interface WidgetArray {
|
|
12
|
-
content(): Widget[];
|
|
13
|
-
content(_: Widget[]): this;
|
|
14
|
-
}
|
|
15
|
-
WidgetArray.prototype.publish("content", [], "widgetArray", "Widget Array");
|
|
1
|
+
import { Widget } from "./Widget.ts";
|
|
2
|
+
|
|
3
|
+
export class WidgetArray extends Widget {
|
|
4
|
+
|
|
5
|
+
constructor() {
|
|
6
|
+
super();
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
WidgetArray.prototype._class += " common_WidgetArray";
|
|
10
|
+
|
|
11
|
+
export interface WidgetArray {
|
|
12
|
+
content(): Widget[];
|
|
13
|
+
content(_: Widget[]): this;
|
|
14
|
+
}
|
|
15
|
+
WidgetArray.prototype.publish("content", [], "widgetArray", "Widget Array");
|
package/src/__package__.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export const PKG_NAME = "__PACKAGE_NAME__";
|
|
2
|
-
export const PKG_VERSION = "__PACKAGE_VERSION__";
|
|
3
|
-
export const BUILD_VERSION = "__BUILD_VERSION__";
|
|
1
|
+
export const PKG_NAME = "__PACKAGE_NAME__";
|
|
2
|
+
export const PKG_VERSION = "__PACKAGE_VERSION__";
|
|
3
|
+
export const BUILD_VERSION = "__BUILD_VERSION__";
|
package/src/index.ts
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
export * from "./__package__.ts";
|
|
2
|
-
export * from "./CanvasWidget.ts";
|
|
3
|
-
export * from "./Class.ts";
|
|
4
|
-
import * as Database from "./Database.ts";
|
|
5
|
-
export { Database };
|
|
6
|
-
export * from "./Entity.ts";
|
|
7
|
-
export * from "./EntityCard.ts";
|
|
8
|
-
export * from "./EntityPin.ts";
|
|
9
|
-
export * from "./EntityRect.ts";
|
|
10
|
-
export * from "./EntityVertex.ts";
|
|
11
|
-
export * from "./FAChar.ts";
|
|
12
|
-
export * from "./HTMLWidget.ts";
|
|
13
|
-
export * from "./Icon.ts";
|
|
14
|
-
export * from "./IList.ts";
|
|
15
|
-
export * from "./Image.ts";
|
|
16
|
-
export * from "./IMenu.ts";
|
|
17
|
-
export * from "./List.ts";
|
|
18
|
-
export * from "./Menu.ts";
|
|
19
|
-
import * as Palette from "./Palette.ts";
|
|
20
|
-
export { Palette };
|
|
21
|
-
import * as Platform from "./Platform.ts";
|
|
22
|
-
export { Platform };
|
|
23
|
-
export * from "./ProgressBar.ts";
|
|
24
|
-
export * from "./PropertyExt.ts";
|
|
25
|
-
export * from "./ResizeSurface.ts";
|
|
26
|
-
export * from "./Shape.ts";
|
|
27
|
-
export * from "./Surface.ts";
|
|
28
|
-
export * from "./SVGWidget.ts";
|
|
29
|
-
export * from "./SVGZoomWidget.ts";
|
|
30
|
-
export * from "./Text.ts";
|
|
31
|
-
export * from "./TextBox.ts";
|
|
32
|
-
export * from "./TitleBar.ts";
|
|
33
|
-
import * as Utility from "./Utility.ts";
|
|
34
|
-
export { Utility };
|
|
35
|
-
export * from "./Widget.ts";
|
|
36
|
-
export * from "./WidgetArray.ts";
|
|
37
|
-
|
|
38
|
-
export * from "d3-array";
|
|
39
|
-
export * from "d3-brush";
|
|
40
|
-
export * from "d3-collection";
|
|
41
|
-
export * from "d3-color";
|
|
42
|
-
export * from "d3-dispatch";
|
|
43
|
-
export * from "d3-drag";
|
|
44
|
-
export * from "d3-dsv";
|
|
45
|
-
export * from "d3-ease";
|
|
46
|
-
export * from "d3-format";
|
|
47
|
-
export * from "d3-interpolate";
|
|
48
|
-
export * from "d3-scale";
|
|
49
|
-
export * from "d3-selection";
|
|
50
|
-
export * from "d3-time-format";
|
|
51
|
-
export * from "d3-transition";
|
|
52
|
-
export * from "d3-zoom";
|
|
53
|
-
|
|
54
|
-
import { event as _d3Event } from "d3-selection";
|
|
55
|
-
export const d3Event = () => _d3Event;
|
|
1
|
+
export * from "./__package__.ts";
|
|
2
|
+
export * from "./CanvasWidget.ts";
|
|
3
|
+
export * from "./Class.ts";
|
|
4
|
+
import * as Database from "./Database.ts";
|
|
5
|
+
export { Database };
|
|
6
|
+
export * from "./Entity.ts";
|
|
7
|
+
export * from "./EntityCard.ts";
|
|
8
|
+
export * from "./EntityPin.ts";
|
|
9
|
+
export * from "./EntityRect.ts";
|
|
10
|
+
export * from "./EntityVertex.ts";
|
|
11
|
+
export * from "./FAChar.ts";
|
|
12
|
+
export * from "./HTMLWidget.ts";
|
|
13
|
+
export * from "./Icon.ts";
|
|
14
|
+
export * from "./IList.ts";
|
|
15
|
+
export * from "./Image.ts";
|
|
16
|
+
export * from "./IMenu.ts";
|
|
17
|
+
export * from "./List.ts";
|
|
18
|
+
export * from "./Menu.ts";
|
|
19
|
+
import * as Palette from "./Palette.ts";
|
|
20
|
+
export { Palette };
|
|
21
|
+
import * as Platform from "./Platform.ts";
|
|
22
|
+
export { Platform };
|
|
23
|
+
export * from "./ProgressBar.ts";
|
|
24
|
+
export * from "./PropertyExt.ts";
|
|
25
|
+
export * from "./ResizeSurface.ts";
|
|
26
|
+
export * from "./Shape.ts";
|
|
27
|
+
export * from "./Surface.ts";
|
|
28
|
+
export * from "./SVGWidget.ts";
|
|
29
|
+
export * from "./SVGZoomWidget.ts";
|
|
30
|
+
export * from "./Text.ts";
|
|
31
|
+
export * from "./TextBox.ts";
|
|
32
|
+
export * from "./TitleBar.ts";
|
|
33
|
+
import * as Utility from "./Utility.ts";
|
|
34
|
+
export { Utility };
|
|
35
|
+
export * from "./Widget.ts";
|
|
36
|
+
export * from "./WidgetArray.ts";
|
|
37
|
+
|
|
38
|
+
export * from "d3-array";
|
|
39
|
+
export * from "d3-brush";
|
|
40
|
+
export * from "d3-collection";
|
|
41
|
+
export * from "d3-color";
|
|
42
|
+
export * from "d3-dispatch";
|
|
43
|
+
export * from "d3-drag";
|
|
44
|
+
export * from "d3-dsv";
|
|
45
|
+
export * from "d3-ease";
|
|
46
|
+
export * from "d3-format";
|
|
47
|
+
export * from "d3-interpolate";
|
|
48
|
+
export * from "d3-scale";
|
|
49
|
+
export * from "d3-selection";
|
|
50
|
+
export * from "d3-time-format";
|
|
51
|
+
export * from "d3-transition";
|
|
52
|
+
export * from "d3-zoom";
|
|
53
|
+
|
|
54
|
+
import { event as _d3Event } from "d3-selection";
|
|
55
|
+
export const d3Event = () => _d3Event;
|