pixl-xyapp 2.1.2 → 2.1.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/css/base.css +3 -1
- package/js/select.js +9 -0
- package/js/tools.js +1 -1
- package/package.json +1 -1
package/css/base.css
CHANGED
|
@@ -1084,8 +1084,10 @@ body.dark .button.primary {
|
|
|
1084
1084
|
color: var(--label-color);
|
|
1085
1085
|
}
|
|
1086
1086
|
.form_row > div.fr_caption a {
|
|
1087
|
+
color: var(--blue);
|
|
1088
|
+
}
|
|
1089
|
+
.form_row > div.fr_caption a:hover {
|
|
1087
1090
|
color: var(--theme-color);
|
|
1088
|
-
font-weight: bold;
|
|
1089
1091
|
}
|
|
1090
1092
|
|
|
1091
1093
|
/* Form Elements */
|
package/js/select.js
CHANGED
|
@@ -47,6 +47,9 @@ var SingleSelect = {
|
|
|
47
47
|
// also trigger a redraw if the underlying hidden select changes
|
|
48
48
|
$this.on('change', redraw);
|
|
49
49
|
|
|
50
|
+
// also expose redraw as a custom event that can be triggered
|
|
51
|
+
$this.on('redraw', redraw);
|
|
52
|
+
|
|
50
53
|
$ms.on('mouseup', function() {
|
|
51
54
|
// create popover dialog for selecting and filtering
|
|
52
55
|
var html = '';
|
|
@@ -343,6 +346,9 @@ var MultiSelect = {
|
|
|
343
346
|
// also trigger a redraw if the underlying hidden select changes
|
|
344
347
|
$this.on('change', redraw);
|
|
345
348
|
|
|
349
|
+
// also expose redraw as a custom event that can be triggered
|
|
350
|
+
$this.on('redraw', redraw);
|
|
351
|
+
|
|
346
352
|
$ms.on('mouseup', function() {
|
|
347
353
|
// create popover dialog for selecting and filtering
|
|
348
354
|
var html = '';
|
|
@@ -717,6 +723,9 @@ var TextSelect = {
|
|
|
717
723
|
// also trigger a redraw if the underlying hidden select changes
|
|
718
724
|
$this.on('change', redraw);
|
|
719
725
|
|
|
726
|
+
// also expose redraw as a custom event that can be triggered
|
|
727
|
+
$this.on('redraw', redraw);
|
|
728
|
+
|
|
720
729
|
$ms.on('mouseup', function() {
|
|
721
730
|
// create popover dialog for adding new items
|
|
722
731
|
var html = '';
|
package/js/tools.js
CHANGED