@hpcc-js/other 2.17.1 → 2.17.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 (46) hide show
  1. package/LICENSE +43 -43
  2. package/README.md +41 -41
  3. package/dist/index.es6.js +5 -5
  4. package/dist/index.es6.js.map +1 -1
  5. package/dist/index.js +5 -5
  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 +5 -5
  10. package/src/Audio.ts +83 -83
  11. package/src/AutoCompleteText.css +21 -21
  12. package/src/AutoCompleteText.ts +124 -124
  13. package/src/CalendarHeatMap.css +26 -26
  14. package/src/CalendarHeatMap.ts +243 -243
  15. package/src/Comms.ts +1085 -1085
  16. package/src/ESP.ts +451 -451
  17. package/src/HPCCBadge.ts +220 -220
  18. package/src/HeatMap.ts +135 -135
  19. package/src/Html.css +5 -5
  20. package/src/Html.ts +44 -44
  21. package/src/IconList.css +3 -3
  22. package/src/IconList.ts +86 -86
  23. package/src/Legend.css +85 -85
  24. package/src/Legend.ts +220 -220
  25. package/src/MorphText.css +11 -11
  26. package/src/MorphText.ts +102 -102
  27. package/src/NestedTable.ts +51 -51
  28. package/src/Opportunity.css +80 -80
  29. package/src/Opportunity.ts +488 -488
  30. package/src/Paginator.css +120 -120
  31. package/src/Paginator.ts +164 -164
  32. package/src/Persist.ts +151 -151
  33. package/src/PropertyEditor.css +130 -130
  34. package/src/PropertyEditor.ts +750 -750
  35. package/src/RadioCheckbox.css +6 -6
  36. package/src/RadioCheckbox.ts +123 -123
  37. package/src/Select.css +7 -7
  38. package/src/Select.ts +120 -120
  39. package/src/Table.css +92 -92
  40. package/src/Table.ts +1050 -1050
  41. package/src/ThemeEditor.css +195 -195
  42. package/src/ThemeEditor.ts +744 -744
  43. package/src/__package__.ts +3 -3
  44. package/src/index.ts +23 -23
  45. package/types/__package__.d.ts +2 -2
  46. package/types-3.4/__package__.d.ts +2 -2
package/src/Table.css CHANGED
@@ -1,92 +1,92 @@
1
- .other_Table {
2
- color:#333333;
3
- border-width: 1px;
4
- border-color: #999999;
5
- }
6
-
7
- .other_Table table {
8
- border-collapse: collapse;
9
- border-spacing: 0;
10
- }
11
- .other_Table .tableDiv {
12
- position: absolute;
13
- }
14
-
15
- .other_Table th, .labels-wrapper th {
16
- padding:5px 10px;
17
- border-width: 1px;
18
- border-style: solid;
19
- border-color: #a9c6c9;
20
- color:white;
21
- white-space: nowrap;
22
- cursor : pointer;
23
- box-sizing: border-box;
24
- }
25
- .other_Table thead > tr, .cols-wrapper tr {
26
- background-color:#1f77b4;
27
- }
28
-
29
- .other_Table .thIcon, .labels-wrapper .thIcon {
30
- font-family: FontAwesome;
31
- padding-left: 8px;
32
- }
33
-
34
- .other_Table .tableDiv tbody > tr:nth-child(odd) {
35
- background-color: #f3faff;
36
- color:black;
37
- }
38
-
39
- .other_Table .tableDiv tbody > tr:nth-child(even) {
40
- background-color: white;
41
- color:black;
42
- }
43
- .other_Table .tableDiv tbody > tr.selected {
44
- background-color:#f48a00;
45
- color: white;
46
- }
47
-
48
- .other_Table .rows-wrapper table > tbody > tr {
49
- background-color:#BCE1FB;
50
- color:black;
51
- }
52
-
53
- .other_Table .rows-wrapper .labels-wrapper {
54
- width: 100%;
55
- }
56
- .other_Table table tbody > tr.selected {
57
- background-color:#f48a00;
58
- color: white;
59
- }
60
-
61
- .other_Table .tableDiv tbody > tr:hover, .other_Table .tableDiv tbody > tr.hover, .rows-wrapper table tbody tr.hover {
62
- background-color: #bfd7e7;
63
- color: white;
64
- }
65
- .other_Table .tableDiv tbody > tr.selected:hover, .other_Table .tableDiv tbody > tr.selected.hover {
66
- background-color: #5ea8db;
67
- color: white;
68
- }
69
- .other_Table .rows-wrapper tbody tr.hover.selected {
70
- background-color:#5ea8db;
71
- color: white;
72
- }
73
-
74
- .other_Table tr.selected:hover, .other_Table tr.selected.hover {
75
- background-color:#5ea8db;
76
- color: white;
77
- }
78
-
79
- .other_Table td, .rows-wrapper td{
80
- border-width: 1px;
81
- padding:2px 5px;
82
- border-style: solid;
83
- border-color: #a9c6c9;
84
- white-space: nowrap;
85
- box-sizing:border-box;
86
- vertical-align: middle;
87
- }
88
-
89
- .other_Table tfoot td, .rows-wrapper tfoot td {
90
- background-color: #ADDFF3;
91
- font-weight: bold;
92
- }
1
+ .other_Table {
2
+ color:#333333;
3
+ border-width: 1px;
4
+ border-color: #999999;
5
+ }
6
+
7
+ .other_Table table {
8
+ border-collapse: collapse;
9
+ border-spacing: 0;
10
+ }
11
+ .other_Table .tableDiv {
12
+ position: absolute;
13
+ }
14
+
15
+ .other_Table th, .labels-wrapper th {
16
+ padding:5px 10px;
17
+ border-width: 1px;
18
+ border-style: solid;
19
+ border-color: #a9c6c9;
20
+ color:white;
21
+ white-space: nowrap;
22
+ cursor : pointer;
23
+ box-sizing: border-box;
24
+ }
25
+ .other_Table thead > tr, .cols-wrapper tr {
26
+ background-color:#1f77b4;
27
+ }
28
+
29
+ .other_Table .thIcon, .labels-wrapper .thIcon {
30
+ font-family: FontAwesome;
31
+ padding-left: 8px;
32
+ }
33
+
34
+ .other_Table .tableDiv tbody > tr:nth-child(odd) {
35
+ background-color: #f3faff;
36
+ color:black;
37
+ }
38
+
39
+ .other_Table .tableDiv tbody > tr:nth-child(even) {
40
+ background-color: white;
41
+ color:black;
42
+ }
43
+ .other_Table .tableDiv tbody > tr.selected {
44
+ background-color:#f48a00;
45
+ color: white;
46
+ }
47
+
48
+ .other_Table .rows-wrapper table > tbody > tr {
49
+ background-color:#BCE1FB;
50
+ color:black;
51
+ }
52
+
53
+ .other_Table .rows-wrapper .labels-wrapper {
54
+ width: 100%;
55
+ }
56
+ .other_Table table tbody > tr.selected {
57
+ background-color:#f48a00;
58
+ color: white;
59
+ }
60
+
61
+ .other_Table .tableDiv tbody > tr:hover, .other_Table .tableDiv tbody > tr.hover, .rows-wrapper table tbody tr.hover {
62
+ background-color: #bfd7e7;
63
+ color: white;
64
+ }
65
+ .other_Table .tableDiv tbody > tr.selected:hover, .other_Table .tableDiv tbody > tr.selected.hover {
66
+ background-color: #5ea8db;
67
+ color: white;
68
+ }
69
+ .other_Table .rows-wrapper tbody tr.hover.selected {
70
+ background-color:#5ea8db;
71
+ color: white;
72
+ }
73
+
74
+ .other_Table tr.selected:hover, .other_Table tr.selected.hover {
75
+ background-color:#5ea8db;
76
+ color: white;
77
+ }
78
+
79
+ .other_Table td, .rows-wrapper td{
80
+ border-width: 1px;
81
+ padding:2px 5px;
82
+ border-style: solid;
83
+ border-color: #a9c6c9;
84
+ white-space: nowrap;
85
+ box-sizing:border-box;
86
+ vertical-align: middle;
87
+ }
88
+
89
+ .other_Table tfoot td, .rows-wrapper tfoot td {
90
+ background-color: #ADDFF3;
91
+ font-weight: bold;
92
+ }