@hpcc-js/common 2.62.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.
Files changed (92) hide show
  1. package/LICENSE +43 -43
  2. package/README.md +59 -59
  3. package/dist/index.es6.js +6607 -6607
  4. package/dist/index.es6.js.map +1 -1
  5. package/dist/index.js +6607 -6607
  6. package/dist/index.js.map +1 -1
  7. package/dist/index.min.js +1 -1
  8. package/dist/index.min.js.map +1 -1
  9. package/package.json +23 -39
  10. package/src/CanvasWidget.ts +31 -31
  11. package/src/Class.ts +67 -67
  12. package/src/Database.ts +856 -856
  13. package/src/Entity.ts +235 -235
  14. package/src/EntityCard.ts +66 -66
  15. package/src/EntityPin.ts +103 -103
  16. package/src/EntityRect.css +15 -15
  17. package/src/EntityRect.ts +236 -236
  18. package/src/EntityVertex.ts +86 -86
  19. package/src/FAChar.css +2 -2
  20. package/src/FAChar.ts +82 -82
  21. package/src/HTMLWidget.ts +191 -191
  22. package/src/IList.ts +4 -4
  23. package/src/IMenu.ts +5 -5
  24. package/src/Icon.css +9 -9
  25. package/src/Icon.ts +164 -164
  26. package/src/Image.ts +95 -95
  27. package/src/List.css +13 -13
  28. package/src/List.ts +99 -99
  29. package/src/Menu.css +23 -23
  30. package/src/Menu.ts +138 -138
  31. package/src/Palette.ts +341 -341
  32. package/src/Platform.ts +125 -125
  33. package/src/ProgressBar.ts +105 -105
  34. package/src/PropertyExt.ts +793 -793
  35. package/src/ResizeSurface.css +39 -39
  36. package/src/ResizeSurface.ts +221 -221
  37. package/src/SVGWidget.ts +567 -567
  38. package/src/SVGZoomWidget.css +12 -12
  39. package/src/SVGZoomWidget.ts +416 -416
  40. package/src/Shape.css +3 -3
  41. package/src/Shape.ts +186 -186
  42. package/src/Surface.css +35 -35
  43. package/src/Surface.ts +350 -350
  44. package/src/Text.css +4 -4
  45. package/src/Text.ts +131 -131
  46. package/src/TextBox.css +4 -4
  47. package/src/TextBox.ts +168 -168
  48. package/src/TitleBar.css +99 -99
  49. package/src/TitleBar.ts +401 -401
  50. package/src/Transition.ts +45 -45
  51. package/src/Utility.ts +820 -820
  52. package/src/Widget.css +8 -8
  53. package/src/Widget.ts +712 -712
  54. package/src/WidgetArray.ts +13 -13
  55. package/src/__package__.ts +2 -2
  56. package/src/index.ts +55 -55
  57. package/types/CanvasWidget.d.ts +8 -8
  58. package/types/Class.d.ts +12 -12
  59. package/types/Database.d.ts +136 -136
  60. package/types/Entity.d.ts +88 -88
  61. package/types/EntityCard.d.ts +13 -13
  62. package/types/EntityPin.d.ts +22 -22
  63. package/types/EntityRect.d.ts +45 -45
  64. package/types/EntityVertex.d.ts +30 -30
  65. package/types/FAChar.d.ts +29 -29
  66. package/types/HTMLWidget.d.ts +27 -27
  67. package/types/IList.d.ts +4 -4
  68. package/types/IMenu.d.ts +5 -5
  69. package/types/Icon.d.ts +62 -62
  70. package/types/Image.d.ts +33 -33
  71. package/types/List.d.ts +15 -15
  72. package/types/Menu.d.ts +28 -28
  73. package/types/Palette.d.ts +19 -19
  74. package/types/Platform.d.ts +5 -5
  75. package/types/ProgressBar.d.ts +21 -21
  76. package/types/PropertyExt.d.ts +114 -114
  77. package/types/ResizeSurface.d.ts +23 -23
  78. package/types/SVGWidget.d.ts +77 -77
  79. package/types/SVGZoomWidget.d.ts +68 -68
  80. package/types/Shape.d.ts +34 -34
  81. package/types/Surface.d.ts +69 -69
  82. package/types/Text.d.ts +37 -37
  83. package/types/TextBox.d.ts +76 -76
  84. package/types/TitleBar.d.ts +117 -117
  85. package/types/Transition.d.ts +11 -11
  86. package/types/Utility.d.ts +100 -100
  87. package/types/Widget.d.ts +149 -149
  88. package/types/WidgetArray.d.ts +6 -6
  89. package/types/__package__.d.ts +3 -3
  90. package/types/__package__.d.ts.map +1 -1
  91. package/types/index.d.ts +52 -52
  92. package/types-3.4/__package__.d.ts +2 -2
package/src/TitleBar.css CHANGED
@@ -1,99 +1,99 @@
1
- .common_IconBar {
2
- display: flex;
3
- flex-flow: row;
4
- justify-content: space-between;
5
- }
6
-
7
- .common_IconBar .icon-bar {
8
- display: flex;
9
- opacity: 0.95;
10
- flex-wrap: nowrap;
11
- margin: 0px;
12
- white-space: nowrap;
13
- line-height: 28px;
14
- z-index:1;
15
- }
16
-
17
- .common_IconBar .icon-bar a {
18
- text-align: center; /* Center-align text */
19
- padding-top: 4px;
20
- padding-left: 2px;
21
- padding-right: 2px;
22
- padding-bottom: 4px;
23
- transition: all 0.3s ease; /* Add transition for hover effects */
24
- color: darkgray; /* White text color */
25
- }
26
-
27
- .common_IconBar .icon-bar a.disabled {
28
- opacity: 0.3;
29
- pointer-events: none;
30
- color: darkgray;
31
- }
32
-
33
- .common_IconBar .icon-bar a:hover {
34
- background-color: whitesmoke; /* Add a hover color */
35
- }
36
-
37
- .common_IconBar .icon-bar a {
38
- background-color: white;
39
- }
40
-
41
- .common_IconBar .icon-bar a.selected {
42
- background-color: #efe5e5; /* Add a hover color */
43
- }
44
-
45
- .common_IconBar .icon-bar div.spacer {
46
- text-align: center; /* Center-align text */
47
- height:28px;
48
- border-left-style: solid;
49
- border-left-width: 1px;
50
- border-left-color: transparent;
51
- padding-top: 0px;
52
- padding-left: 2px;
53
- margin-left: 2px;
54
- padding-bottom: 0px;
55
- }
56
-
57
- .common_IconBar .icon-bar div.spacer.vline {
58
- border-left-color: darkgray;
59
- padding-left: 4px;
60
- margin-left: 4px;
61
- }
62
-
63
- .common_IconBar .icon-bar a.spacer:hover {
64
- background-color: transparent;
65
- }
66
-
67
- .common_TitleBar > .title-title {
68
- margin: 4px;
69
- }
70
-
71
- .common_TitleBar > .icon-bar {
72
- margin: 4px;
73
- }
74
-
75
- .common_TitleBar .title-icon {
76
- padding: 4px 0;
77
- position: static;
78
-
79
- }
80
- .common_TitleBar .data-count{
81
- position: absolute;
82
- visibility: hidden;
83
- }
84
-
85
- .common_TitleBar .title-text {
86
- padding: 4px 0;
87
- text-overflow: ellipsis;
88
- white-space: nowrap;
89
- overflow: hidden;
90
- font-size: 20px;
91
- font-weight: bold;
92
- }
93
- .common_TitleBar .description-text {
94
- padding: 0px;
95
- text-overflow: ellipsis;
96
- white-space: nowrap;
97
- overflow: hidden;
98
- font-weight: normal;
99
- }
1
+ .common_IconBar {
2
+ display: flex;
3
+ flex-flow: row;
4
+ justify-content: space-between;
5
+ }
6
+
7
+ .common_IconBar .icon-bar {
8
+ display: flex;
9
+ opacity: 0.95;
10
+ flex-wrap: nowrap;
11
+ margin: 0px;
12
+ white-space: nowrap;
13
+ line-height: 28px;
14
+ z-index:1;
15
+ }
16
+
17
+ .common_IconBar .icon-bar a {
18
+ text-align: center; /* Center-align text */
19
+ padding-top: 4px;
20
+ padding-left: 2px;
21
+ padding-right: 2px;
22
+ padding-bottom: 4px;
23
+ transition: all 0.3s ease; /* Add transition for hover effects */
24
+ color: darkgray; /* White text color */
25
+ }
26
+
27
+ .common_IconBar .icon-bar a.disabled {
28
+ opacity: 0.3;
29
+ pointer-events: none;
30
+ color: darkgray;
31
+ }
32
+
33
+ .common_IconBar .icon-bar a:hover {
34
+ background-color: whitesmoke; /* Add a hover color */
35
+ }
36
+
37
+ .common_IconBar .icon-bar a {
38
+ background-color: white;
39
+ }
40
+
41
+ .common_IconBar .icon-bar a.selected {
42
+ background-color: #efe5e5; /* Add a hover color */
43
+ }
44
+
45
+ .common_IconBar .icon-bar div.spacer {
46
+ text-align: center; /* Center-align text */
47
+ height:28px;
48
+ border-left-style: solid;
49
+ border-left-width: 1px;
50
+ border-left-color: transparent;
51
+ padding-top: 0px;
52
+ padding-left: 2px;
53
+ margin-left: 2px;
54
+ padding-bottom: 0px;
55
+ }
56
+
57
+ .common_IconBar .icon-bar div.spacer.vline {
58
+ border-left-color: darkgray;
59
+ padding-left: 4px;
60
+ margin-left: 4px;
61
+ }
62
+
63
+ .common_IconBar .icon-bar a.spacer:hover {
64
+ background-color: transparent;
65
+ }
66
+
67
+ .common_TitleBar > .title-title {
68
+ margin: 4px;
69
+ }
70
+
71
+ .common_TitleBar > .icon-bar {
72
+ margin: 4px;
73
+ }
74
+
75
+ .common_TitleBar .title-icon {
76
+ padding: 4px 0;
77
+ position: static;
78
+
79
+ }
80
+ .common_TitleBar .data-count{
81
+ position: absolute;
82
+ visibility: hidden;
83
+ }
84
+
85
+ .common_TitleBar .title-text {
86
+ padding: 4px 0;
87
+ text-overflow: ellipsis;
88
+ white-space: nowrap;
89
+ overflow: hidden;
90
+ font-size: 20px;
91
+ font-weight: bold;
92
+ }
93
+ .common_TitleBar .description-text {
94
+ padding: 0px;
95
+ text-overflow: ellipsis;
96
+ white-space: nowrap;
97
+ overflow: hidden;
98
+ font-weight: normal;
99
+ }