ps-toolkit-ui 1.10.66 → 1.10.69

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.
@@ -1776,7 +1776,12 @@
1776
1776
  save.onClick = function () {
1777
1777
  _this.submit(onSubmit);
1778
1778
  };
1779
- this.inputs.push(br);
1779
+ if (!cls.includes('only-icon')) {
1780
+ this.inputs.push(br);
1781
+ }
1782
+ else {
1783
+ save.class = 'save-form-btn h-30';
1784
+ }
1780
1785
  this.inputs.push(save);
1781
1786
  if (clear) {
1782
1787
  var erase = new InputClass(this.environment, this.l, null, 'fa-duotone fa-eraser', exports.InputType.Button, 'f-l w-u grey erase-form-btn ' + (this.onTop ? 'h-25 ' : 'h-30 '));