@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/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
|
+
}
|