@hpcc-js/other 3.4.10 → 3.5.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.
- package/LICENSE +43 -43
- package/README.md +41 -41
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +5 -5
- package/src/Audio.ts +86 -86
- package/src/AutoCompleteText.css +48 -21
- package/src/AutoCompleteText.ts +132 -132
- package/src/CalendarHeatMap.css +26 -26
- package/src/CalendarHeatMap.ts +250 -250
- package/src/Comms.ts +1083 -1083
- package/src/ESP.ts +451 -451
- package/src/HPCCBadge.ts +220 -220
- package/src/HeatMap.ts +150 -150
- package/src/Html.css +5 -5
- package/src/Html.ts +48 -48
- package/src/IconList.css +3 -3
- package/src/IconList.ts +86 -86
- package/src/Legend.css +104 -85
- package/src/Legend.ts +227 -227
- package/src/MorphText.css +11 -11
- package/src/MorphText.ts +109 -109
- package/src/NestedTable.ts +51 -51
- package/src/Opportunity.css +81 -80
- package/src/Opportunity.ts +500 -500
- package/src/Paginator.css +131 -120
- package/src/Paginator.ts +172 -172
- package/src/Persist.ts +151 -151
- package/src/PropertyEditor.css +179 -130
- package/src/PropertyEditor.ts +762 -762
- package/src/RadioCheckbox.css +5 -6
- package/src/RadioCheckbox.ts +130 -130
- package/src/Select.css +6 -7
- package/src/Select.ts +130 -130
- package/src/Table.css +107 -92
- package/src/Table.ts +1099 -1099
- package/src/ThemeEditor.css +230 -195
- package/src/ThemeEditor.ts +758 -758
- package/src/__package__.ts +3 -3
- package/src/index.ts +23 -23
package/src/ThemeEditor.css
CHANGED
|
@@ -1,196 +1,231 @@
|
|
|
1
|
-
.other_ThemeEditor *{
|
|
2
|
-
box-sizing:border-box;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
.other_ThemeEditor thead
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
background-color
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
.other_ThemeEditor th
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
.other_ThemeEditor
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
.other_ThemeEditor tr.sharedPropertyRow
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
.
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
.other_ThemeEditor
|
|
105
|
-
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.other_ThemeEditor
|
|
122
|
-
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
.other_ThemeEditor
|
|
139
|
-
.other_ThemeEditor
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
.other_ThemeEditor .te-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
1
|
+
.other_ThemeEditor * {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.other_ThemeEditor table {
|
|
6
|
+
width: 100%;
|
|
7
|
+
margin-bottom: 4px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.other_ThemeEditor table:last-child {
|
|
11
|
+
margin-bottom: 0px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.other_ThemeEditor thead>tr>th {
|
|
15
|
+
text-align: left;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.other_ThemeEditor thead>tr>th>b {
|
|
19
|
+
font-weight: bold;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.other_ThemeEditor thead>tr>th {
|
|
23
|
+
background-color: #FAFAFA;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.other_ThemeEditor tbody>tr>th,
|
|
27
|
+
.other_ThemeEditor tbody>tr>td {
|
|
28
|
+
font-weight: normal;
|
|
29
|
+
background-color: #FAFAFA;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.other_ThemeEditor thead>tr:first-child>th {
|
|
33
|
+
background-color: #E5E5E5;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.other_ThemeEditor thead>tr.mm-content>th {
|
|
37
|
+
padding: 0 4px;
|
|
38
|
+
font-size: 12px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.other_ThemeEditor th,
|
|
42
|
+
.other_ThemeEditor td {
|
|
43
|
+
padding: 4px;
|
|
44
|
+
white-space: nowrap;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.other_ThemeEditor thead.mm-label>tr:first-child>th {
|
|
48
|
+
position: relative;
|
|
49
|
+
padding-left: 29px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.other_ThemeEditor thead.mm-label>tr:first-child>th::before {
|
|
53
|
+
content: "[+]";
|
|
54
|
+
position: absolute;
|
|
55
|
+
left: 3px;
|
|
56
|
+
top: 3px;
|
|
57
|
+
color: #404040;
|
|
58
|
+
height: 15px;
|
|
59
|
+
width: 15px;
|
|
60
|
+
font-family: monospace;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.other_ThemeEditor thead.mm-label.max>tr:first-child>th::before {
|
|
64
|
+
content: "[-]";
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.other_ThemeEditor tr.sharedPropertyRow>td.label::after {
|
|
68
|
+
content: "[+]";
|
|
69
|
+
position: absolute;
|
|
70
|
+
right: 10px;
|
|
71
|
+
top: 3px;
|
|
72
|
+
color: #404040;
|
|
73
|
+
height: 15px;
|
|
74
|
+
width: 15px;
|
|
75
|
+
font-family: monospace;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.other_ThemeEditor tr.sharedPropertyRow>td.label.expanded::after {
|
|
79
|
+
content: "[-]";
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.other_ThemeEditor tr.sharedPropertyRow>td.label {
|
|
83
|
+
position: relative;
|
|
84
|
+
padding-right: 30px;
|
|
85
|
+
text-decoration: underline;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.other_ThemeEditor tr.sharedPropertyRow>td.label:hover {
|
|
89
|
+
text-decoration: none;
|
|
90
|
+
cursor: pointer;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.other_ThemeEditor tr.propertyRow>th,
|
|
94
|
+
.other_ThemeEditor tr.propertyRow>td {
|
|
95
|
+
background-color: #F4F4F4;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.other_ThemeEditor tr.propertyRow>td.label {
|
|
99
|
+
padding-left: 24px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.other_ThemeEditor table,
|
|
103
|
+
.other_ThemeEditor th,
|
|
104
|
+
.other_ThemeEditor td {
|
|
105
|
+
border: 1px solid #e5e5e5;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.other_ThemeEditor .mm-label.min .mm-content,
|
|
109
|
+
.other_ThemeEditor .mm-label.min+.mm-content {
|
|
110
|
+
display: none;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.mm-label:hover {
|
|
114
|
+
cursor: pointer;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.other_ThemeEditor .sharedPropertyRow>.te-label {
|
|
118
|
+
cursor: pointer;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.other_ThemeEditor .sharedPropertyRow>.te-label:hover {
|
|
122
|
+
text-decoration: none;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.other_ThemeEditor .propertyRow.shown>.te-label {
|
|
126
|
+
padding-left: 15px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.other_ThemeEditor .propertyRow>td {
|
|
130
|
+
background-color: #F4F4F4;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.other_ThemeEditor [class*=" te-"] {
|
|
134
|
+
/*float:left;*/
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.other_ThemeEditor input,
|
|
138
|
+
.other_ThemeEditor textarea,
|
|
139
|
+
.other_ThemeEditor select {
|
|
140
|
+
height: 30px;
|
|
141
|
+
float: left;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.other_ThemeEditor input,
|
|
145
|
+
.other_ThemeEditor select {
|
|
146
|
+
width: 150px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.other_ThemeEditor .te-checkbox {
|
|
150
|
+
width: 20px;
|
|
151
|
+
height: 20px;
|
|
152
|
+
margin: 0;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.other_ThemeEditor .te-html-color-input {
|
|
156
|
+
height: 30px;
|
|
157
|
+
width: 120px;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.other_ThemeEditor .te-html-color-button {
|
|
161
|
+
width: 30px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.other_ThemeEditor button,
|
|
165
|
+
.other_ThemeEditor .te-html-color-button {
|
|
166
|
+
background-color: #CCC;
|
|
167
|
+
border: 1px solid #A9A9A9;
|
|
168
|
+
border-left: 0;
|
|
169
|
+
height: 30px;
|
|
170
|
+
float: left;
|
|
171
|
+
padding: 4px;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.other_ThemeEditor button,
|
|
175
|
+
.other_ThemeEditor .te-html-color-button,
|
|
176
|
+
.other_ThemeEditor .te-section-table thead {
|
|
177
|
+
cursor: pointer;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.other_ThemeEditor button:hover,
|
|
181
|
+
.other_ThemeEditor .te-html-color-button:hover {
|
|
182
|
+
background-color: #BBB;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.other_ThemeEditor button:active,
|
|
186
|
+
.other_ThemeEditor .te-html-color-button:active {
|
|
187
|
+
background-color: #AAA;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.other_ThemeEditor .te-label {
|
|
191
|
+
white-space: nowrap;
|
|
192
|
+
width: 1%;
|
|
193
|
+
vertical-align: top;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.other_ThemeEditor .te-section-table>tbody>tr:hover {
|
|
197
|
+
background-color: #F8FF98;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.te-section-table thead th {
|
|
201
|
+
font-weight: bold;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.te-section-table.expanded>thead>tr>th:after {
|
|
205
|
+
font: normal normal normal 14px/1 FontAwesome;
|
|
206
|
+
content: "ï…‡";
|
|
207
|
+
float: right;
|
|
208
|
+
margin-right: 6px;
|
|
209
|
+
margin-top: 4px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.te-section-table.collapsed>thead>tr>th:after {
|
|
213
|
+
font: normal normal normal 14px/1 FontAwesome;
|
|
214
|
+
content: "";
|
|
215
|
+
float: right;
|
|
216
|
+
margin-right: 6px;
|
|
217
|
+
margin-top: 4px;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
#te-tableModeOptions thead>tr>th,
|
|
221
|
+
#te-themeEditorOptions thead>tr>th {
|
|
222
|
+
border: 1px solid #6E6E73;
|
|
223
|
+
background-color: #6E6E73;
|
|
224
|
+
color: #FAFAFA;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/*
|
|
228
|
+
.widget-property-hover{
|
|
229
|
+
background-color: #F1C40F!important;
|
|
230
|
+
border-color:#f39c12;
|
|
196
231
|
}*/
|