@hpcc-js/common 2.73.2 → 2.73.3
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 +28 -28
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +30 -30
- package/dist/index.js.map +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +3 -3
- 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 +134 -134
- 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 +426 -426
- package/src/Shape.css +3 -3
- package/src/Shape.ts +186 -186
- package/src/Surface.css +35 -35
- package/src/Surface.ts +349 -349
- 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 +839 -839
- package/src/Widget.css +8 -8
- package/src/Widget.ts +730 -730
- package/src/WidgetArray.ts +13 -13
- package/src/__package__.ts +3 -3
- package/src/index.ts +55 -55
package/src/WidgetArray.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { publish } from "./PropertyExt";
|
|
2
|
-
import { Widget } from "./Widget";
|
|
3
|
-
|
|
4
|
-
export class WidgetArray extends Widget {
|
|
5
|
-
|
|
6
|
-
@publish([], "widgetArray", "Widget Array")
|
|
7
|
-
content: publish<this, Widget[]>;
|
|
8
|
-
|
|
9
|
-
constructor() {
|
|
10
|
-
super();
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
WidgetArray.prototype._class += " common_WidgetArray";
|
|
1
|
+
import { publish } from "./PropertyExt";
|
|
2
|
+
import { Widget } from "./Widget";
|
|
3
|
+
|
|
4
|
+
export class WidgetArray extends Widget {
|
|
5
|
+
|
|
6
|
+
@publish([], "widgetArray", "Widget Array")
|
|
7
|
+
content: publish<this, Widget[]>;
|
|
8
|
+
|
|
9
|
+
constructor() {
|
|
10
|
+
super();
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
WidgetArray.prototype._class += " common_WidgetArray";
|
package/src/__package__.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export const PKG_NAME = "@hpcc-js/common";
|
|
2
|
-
export const PKG_VERSION = "2.73.2";
|
|
3
|
-
export const BUILD_VERSION = "2.108.6";
|
|
1
|
+
export const PKG_NAME = "@hpcc-js/common";
|
|
2
|
+
export const PKG_VERSION = "2.73.2";
|
|
3
|
+
export const BUILD_VERSION = "2.108.6";
|
package/src/index.ts
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
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
|
-
|
|
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__";
|
|
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
|
+
|
|
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;
|