@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.
Files changed (55) hide show
  1. package/LICENSE +43 -43
  2. package/README.md +59 -59
  3. package/dist/index.es6.js +28 -28
  4. package/dist/index.es6.js.map +1 -1
  5. package/dist/index.js +30 -30
  6. package/dist/index.js.map +1 -1
  7. package/dist/index.min.js.map +1 -1
  8. package/package.json +3 -3
  9. package/src/CanvasWidget.ts +31 -31
  10. package/src/Class.ts +67 -67
  11. package/src/Database.ts +856 -856
  12. package/src/Entity.ts +235 -235
  13. package/src/EntityCard.ts +66 -66
  14. package/src/EntityPin.ts +103 -103
  15. package/src/EntityRect.css +15 -15
  16. package/src/EntityRect.ts +236 -236
  17. package/src/EntityVertex.ts +86 -86
  18. package/src/FAChar.css +2 -2
  19. package/src/FAChar.ts +82 -82
  20. package/src/HTMLWidget.ts +191 -191
  21. package/src/IList.ts +4 -4
  22. package/src/IMenu.ts +5 -5
  23. package/src/Icon.css +9 -9
  24. package/src/Icon.ts +164 -164
  25. package/src/Image.ts +95 -95
  26. package/src/List.css +13 -13
  27. package/src/List.ts +99 -99
  28. package/src/Menu.css +23 -23
  29. package/src/Menu.ts +134 -134
  30. package/src/Palette.ts +341 -341
  31. package/src/Platform.ts +125 -125
  32. package/src/ProgressBar.ts +105 -105
  33. package/src/PropertyExt.ts +793 -793
  34. package/src/ResizeSurface.css +39 -39
  35. package/src/ResizeSurface.ts +221 -221
  36. package/src/SVGWidget.ts +567 -567
  37. package/src/SVGZoomWidget.css +12 -12
  38. package/src/SVGZoomWidget.ts +426 -426
  39. package/src/Shape.css +3 -3
  40. package/src/Shape.ts +186 -186
  41. package/src/Surface.css +35 -35
  42. package/src/Surface.ts +349 -349
  43. package/src/Text.css +4 -4
  44. package/src/Text.ts +131 -131
  45. package/src/TextBox.css +4 -4
  46. package/src/TextBox.ts +168 -168
  47. package/src/TitleBar.css +99 -99
  48. package/src/TitleBar.ts +401 -401
  49. package/src/Transition.ts +45 -45
  50. package/src/Utility.ts +839 -839
  51. package/src/Widget.css +8 -8
  52. package/src/Widget.ts +730 -730
  53. package/src/WidgetArray.ts +13 -13
  54. package/src/__package__.ts +3 -3
  55. package/src/index.ts +55 -55
@@ -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";
@@ -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;