@hpcc-js/common 3.6.5 → 3.7.0

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 (54) hide show
  1. package/LICENSE +43 -43
  2. package/README.md +59 -59
  3. package/dist/index.js +4 -4
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.umd.cjs +1 -1
  6. package/dist/index.umd.cjs.map +1 -1
  7. package/package.json +2 -2
  8. package/src/CanvasWidget.ts +31 -31
  9. package/src/Class.ts +72 -72
  10. package/src/Database.ts +860 -860
  11. package/src/Entity.ts +235 -235
  12. package/src/EntityCard.ts +66 -66
  13. package/src/EntityPin.ts +103 -103
  14. package/src/EntityRect.css +15 -15
  15. package/src/EntityRect.ts +254 -254
  16. package/src/EntityVertex.ts +86 -86
  17. package/src/FAChar.css +2 -2
  18. package/src/FAChar.ts +89 -89
  19. package/src/HTMLWidget.ts +191 -191
  20. package/src/IList.ts +4 -4
  21. package/src/IMenu.ts +5 -5
  22. package/src/Icon.css +9 -9
  23. package/src/Icon.ts +176 -176
  24. package/src/Image.ts +104 -104
  25. package/src/List.css +13 -13
  26. package/src/List.ts +102 -102
  27. package/src/Menu.css +23 -23
  28. package/src/Menu.ts +139 -139
  29. package/src/Palette.ts +341 -341
  30. package/src/Platform.ts +125 -125
  31. package/src/ProgressBar.ts +115 -115
  32. package/src/PropertyExt.ts +770 -770
  33. package/src/ResizeSurface.css +39 -39
  34. package/src/ResizeSurface.ts +225 -225
  35. package/src/SVGWidget.ts +583 -583
  36. package/src/SVGZoomWidget.css +12 -12
  37. package/src/SVGZoomWidget.ts +427 -427
  38. package/src/Shape.css +3 -3
  39. package/src/Shape.ts +186 -186
  40. package/src/Surface.css +35 -35
  41. package/src/Surface.ts +364 -364
  42. package/src/Text.css +4 -4
  43. package/src/Text.ts +131 -131
  44. package/src/TextBox.css +4 -4
  45. package/src/TextBox.ts +183 -183
  46. package/src/TitleBar.css +114 -114
  47. package/src/TitleBar.ts +407 -407
  48. package/src/Transition.ts +45 -45
  49. package/src/Utility.ts +843 -839
  50. package/src/Widget.css +8 -8
  51. package/src/Widget.ts +731 -731
  52. package/src/WidgetArray.ts +15 -15
  53. package/src/__package__.ts +3 -3
  54. package/src/index.ts +55 -55
@@ -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");
@@ -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;