ps-toolkit-ui 1.6.16 → 1.6.19
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/bundles/ps-toolkit-ui.umd.js +2 -2
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/form.class.js +3 -3
- package/fesm2015/ps-toolkit-ui.js +2 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -1653,14 +1653,14 @@
|
|
|
1653
1653
|
return;
|
|
1654
1654
|
}
|
|
1655
1655
|
var br = new InputClass(this.environment, this.l, null, null, exports.InputType.Label, (this.onTop ? 'space' : 'underline') + (onSubmit === null ? '' : ' m-v-5'));
|
|
1656
|
-
var save = new InputClass(this.environment, this.l, name, 'fa-duotone fa-check', exports.InputType.Submit, 'save-form-btn
|
|
1656
|
+
var save = new InputClass(this.environment, this.l, name, 'fa-duotone fa-check', exports.InputType.Submit, 'save-form-btn h-30 ' + cls);
|
|
1657
1657
|
save.onClick = function () {
|
|
1658
1658
|
_this.submit(onSubmit);
|
|
1659
1659
|
};
|
|
1660
1660
|
this.inputs.push(br);
|
|
1661
1661
|
this.inputs.push(save);
|
|
1662
1662
|
if (clear) {
|
|
1663
|
-
var erase = new InputClass(this.environment, this.l, null, 'fa-duotone fa-eraser', exports.InputType.Button, 'f-l w-u grey erase-form-btn
|
|
1663
|
+
var erase = new InputClass(this.environment, this.l, null, 'fa-duotone fa-eraser', exports.InputType.Button, 'f-l w-u grey erase-form-btn h-30');
|
|
1664
1664
|
erase.onClick = function () {
|
|
1665
1665
|
if (_this.onTop) {
|
|
1666
1666
|
_this.clear();
|