pixl-xyapp 2.1.28 → 2.1.30

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 CHANGED
@@ -1594,9 +1594,7 @@ fieldset.info_fieldset {
1594
1594
  background: transparent;
1595
1595
  border: 1px solid var(--border-color);
1596
1596
  padding: 15px;
1597
- margin-top: 12px;
1598
- margin-left: 0;
1599
- margin-right: 0;
1597
+ margin: 12px 0 12px 0;
1600
1598
  }
1601
1599
  fieldset.info_fieldset > legend {
1602
1600
  padding-left: 5px;
@@ -1611,6 +1609,9 @@ fieldset.info_fieldset > .tool_desc {
1611
1609
  font-size: 12px;
1612
1610
  color: var(--label-color);
1613
1611
  }
1612
+ fieldset.info_fieldset > .tool_desc.empty {
1613
+ margin-bottom: 0px;
1614
+ }
1614
1615
 
1615
1616
  body.dark fieldset.info_fieldset {
1616
1617
  border: 1px solid rgb(60, 65, 70);
package/js/popover.js CHANGED
@@ -8,7 +8,7 @@ var Popover = {
8
8
  attach: function(elem, html, shrinkwrap) {
9
9
  if (this.enabled) this.detach();
10
10
  var $elem = $(elem);
11
- var rect = this.isSafari ? this.getBoundingClientRect($elem[0]) : $elem[0].getBoundingClientRect();
11
+ var rect = (this.isSafari && !Dialog.active) ? this.getBoundingClientRect($elem[0]) : $elem[0].getBoundingClientRect();
12
12
  var win = get_inner_window_size();
13
13
 
14
14
  var $box = $('<div class="arrow_box"></div>').html(html).css({
package/js/tools.js CHANGED
@@ -330,6 +330,7 @@ function render_menu_options(items, sel_values, auto_add) {
330
330
 
331
331
  if (!sel_values) sel_values = [];
332
332
  if (!Array.isArray(sel_values)) sel_values = [sel_values];
333
+ sel_values = sel_values.map( String );
333
334
 
334
335
  for (var idx = 0, len = items.length; idx < len; idx++) {
335
336
  var item = items[idx];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixl-xyapp",
3
- "version": "2.1.28",
3
+ "version": "2.1.30",
4
4
  "description": "Front-end web application and theme for xyOps.",
5
5
  "author": "Joseph Huckaby <jhuckaby@pixlcore.com>",
6
6
  "homepage": "https://github.com/pixlcore/pixl-xyapp",