ps-toolkit-ui 0.2.0 → 0.2.1

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.
@@ -1584,7 +1584,7 @@
1584
1584
  return;
1585
1585
  }
1586
1586
  var br = new InputClass(this.environment, this.l, null, null, exports.InputType.Label, (this.onTop ? 'space' : 'underline') + (onSubmit === null ? '' : ' m-v-5'));
1587
- var save = new InputClass(this.environment, this.l, name, 'fa-duotone fa-check', exports.InputType.Submit, 'w-35 f-l save-form-btn ' + cls + (onSubmit === null ? ' h-30' : ' h-25'));
1587
+ var save = new InputClass(this.environment, this.l, name, 'fa-duotone fa-check', exports.InputType.Submit, 'w-1100-40 w-500-50 w-400-60 w-70 f-l save-form-btn ' + cls + (onSubmit === null ? ' h-30' : ' h-25'));
1588
1588
  save.onClick = function () {
1589
1589
  _this.submit(onSubmit);
1590
1590
  };
@@ -4137,7 +4137,7 @@
4137
4137
  { type: core.Component, args: [{
4138
4138
  selector: 'lib-form',
4139
4139
  template: "<form [style]=\"form.style\" *ngIf=\"form\" [id]=\"form.id + 'Form'\" [className]=\"'form' + (form.class ? ' ' + form.class : '')\">\r\n <div *ngIf=\"form.displayLabel\" [className]=\"(form.subName ? '' : 'underline ') + 'title'\">{{this.form.l(this.form.name)}}</div>\r\n <div *ngIf=\"form.displayLabel && form.subName\" class=\"sub-title underline\">{{this.form.l(this.form.subName)}}</div>\r\n <div *ngIf=\"form.loading\" class=\"loading\">\r\n <div class=\"text\" [innerHTML]=\"form.l('LoadingTable', 'Processing')\"></div>\r\n </div>\r\n <div *ngIf=\"!form.permission\" class=\"loading\">\r\n <div class=\"text\"><i class=\"fas fa-shield-alt icon\"></i>{{ form.l(\"PermissionDenied\") }}</div>\r\n </div>\r\n <div class=\"inputs\">\r\n <span *ngFor=\"let inp of form.inputs; let i = index\">\r\n <lib-form-textbox (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && (inp.type == type.Text || inp.type == type.Password || inp.type == type.Mobile || inp.type == type.Phone || inp.type == type.Email || inp.type == type.NationalCode || inp.type == type.Number || inp.type == type.Url || inp.type == type.PostalCode || inp.type == type.Price || inp.type == type.Sheba)\" [inp]=\"inp\"></lib-form-textbox>\r\n <lib-form-textarea (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.TextArea\" [inp]=\"inp\"></lib-form-textarea>\r\n <lib-form-checkbox (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.Check\" [inp]=\"inp\"></lib-form-checkbox>\r\n <lib-form-select [inForm]=\"true\" (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && (inp.type == type.Select || inp.type == type.SelectSearch || inp.type == type.SelectAutoComplete)\" [inp]=\"inp\"></lib-form-select>\r\n <lib-form-date [inForm]=\"true\" (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.Date\" [inp]=\"inp\"></lib-form-date>\r\n <lib-form-time [inForm]=\"true\" (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.Time\" [inp]=\"inp\"></lib-form-time>\r\n <lib-form-datetime [inForm]=\"true\" (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.DateTime\" [inp]=\"inp\"></lib-form-datetime>\r\n <lib-form-label *ngIf=\"inp.visible && inp.type == type.Label\" [inp]=\"inp\"></lib-form-label>\r\n <lib-form-file (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.File\" [inp]=\"inp\"></lib-form-file>\r\n <lib-form-button (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && (inp.type == type.Button || inp.type == type.Submit)\" [inp]=\"inp\"></lib-form-button>\r\n <lib-form-icon (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.Icon\" [inp]=\"inp\"></lib-form-icon>\r\n <lib-form-radio (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.Radio\" [inp]=\"inp\"></lib-form-radio>\r\n <lib-form-tree (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.Tree\" [inp]=\"inp\"></lib-form-tree>\r\n <lib-form-plaque (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && (inp.type == type.Plaque || inp.type == type.PlaqueM)\" [inp]=\"inp\"></lib-form-plaque>\r\n <lib-form-plaque-select (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && (inp.type == type.SelectAutoCompletePlaque || inp.type == type.SelectAutoCompletePlaqueM)\" [inp]=\"inp\"></lib-form-plaque-select>\r\n <lib-form-bank-card (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.BankCard\" [inp]=\"inp\"></lib-form-bank-card>\r\n <lib-form-car-search (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.CarSearch\" [inp]=\"inp\"></lib-form-car-search>\r\n <lib-form-car (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.Car\" [inp]=\"inp\"></lib-form-car>\r\n <lib-form-finger (changeIndex)=\"changeIndex(i, $event)\" *ngIf=\"inp.visible && inp.type == type.Finger\" [inp]=\"inp\"></lib-form-finger>\r\n <lib-form-table *ngIf=\"inp.visible && inp.type == type.Table\" [inp]=\"inp\"></lib-form-table>\r\n <lib-form-hidden *ngIf=\"inp.type == type.Hidden\" [inp]=\"inp\"></lib-form-hidden>\r\n </span>\r\n </div>\r\n</form>\r\n",
4140
- styles: [".form{border-radius:5px;float:right;padding:20px;position:relative;width:100%}.form>.title{font-family:VazirBold;font-size:16px;height:40px}.form>.sub-title,.form>.title{float:right;line-height:30px;margin-bottom:10px;position:relative;text-align:right;width:100%}.form>.sub-title{color:var(--black-88);font-family:VazirLight;font-size:12px;height:30px}.form .loading{background-color:#fff;border-radius:5px;height:100%;right:0;top:0;z-index:4}.form .loading,.form .loading .text{position:absolute;text-align:center;width:100%}.form .loading .text{font-family:VazirBold;height:35px;line-height:35px;top:calc(50% - 20px)}::ng-deep .form .loading .icon{font-size:20px!important;line-height:30px;margin-left:5px;position:relative;top:5px}.form-buttons,.form-error{float:right;width:100%}.form-error{color:var(--red-cc);font-size:11px;height:15px;line-height:8px;margin-top:10px;padding:0 10px;position:relative;text-align:center}.form-error .message{float:left;width:calc(100% - 40px)}.form-error .icon{float:right;height:20px;line-height:6px;right:0;top:0;width:40px}.form .inputs{margin:0 -15px}@media (max-width:399.98px){::ng-deep .form .inputs .save-form-btn{width:70%!important}::ng-deep .form .form-input-con.bank-card,::ng-deep .form .form-input-con.button:not(.save-form-btn):not(.erase-form-btn):not(.search-form-inp),::ng-deep .form .form-input-con.checkbox:not(.search-form-inp),::ng-deep .form .form-input-con.date:not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.select:not(.plaque-part-item):not(.plaque-inp):not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.text:not(.plaque-part-item):not(.plaque-inp):not(.bank-card-part-item):not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.textarea{margin-left:0!important;margin-right:0!important;width:100%!important}}@media (min-width:400px) and (max-width:499.98px){::ng-deep .form .inputs .save-form-btn{width:60%!important}::ng-deep .form .form-input-con.bank-card,::ng-deep .form .form-input-con.button:not(.save-form-btn):not(.erase-form-btn):not(.search-form-inp),::ng-deep .form .form-input-con.checkbox:not(.search-form-inp),::ng-deep .form .form-input-con.date:not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.select:not(.plaque-part-item):not(.plaque-inp):not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.text:not(.plaque-part-item):not(.plaque-inp):not(.bank-card-part-item):not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.textarea{margin-left:0!important;margin-right:0!important;width:100%!important}}@media (min-width:500px) and (max-width:599.98px){::ng-deep .form .inputs .save-form-btn{width:50%!important}::ng-deep .form .form-input-con.bank-card,::ng-deep .form .form-input-con.button:not(.save-form-btn):not(.erase-form-btn):not(.search-form-inp),::ng-deep .form .form-input-con.checkbox:not(.search-form-inp),::ng-deep .form .form-input-con.date:not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.select:not(.plaque-part-item):not(.plaque-inp):not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.text:not(.plaque-part-item):not(.plaque-inp):not(.bank-card-part-item):not(.table-search):not(.search-form-inp){margin-left:0!important;margin-right:0!important;width:50%!important}::ng-deep .form .form-input-con.textarea{margin-left:0!important;margin-right:0!important;width:100%!important}}@media (min-width:600px) and (max-width:699.98px){::ng-deep .form .inputs .save-form-btn{width:50%!important}}@media (min-width:700px) and (max-width:799.98px){::ng-deep .form .inputs .save-form-btn{width:50%!important}}@media (min-width:800px) and (max-width:899.98px){::ng-deep .form .inputs .save-form-btn{width:50%!important}}@media (min-width:900px) and (max-width:999.98px){::ng-deep .form .inputs .save-form-btn{width:50%!important}}@media (min-width:1000px) and (max-width:1099.98px){::ng-deep .form .inputs .save-form-btn{width:50%!important}}@media (min-width:1100px) and (max-width:1199.98px){::ng-deep .form .inputs .save-form-btn{width:40%!important}}"]
4140
+ styles: [".form{border-radius:5px;float:right;padding:20px;position:relative;width:100%}.form>.title{font-family:VazirBold;font-size:16px;height:40px}.form>.sub-title,.form>.title{float:right;line-height:30px;margin-bottom:10px;position:relative;text-align:right;width:100%}.form>.sub-title{color:var(--black-88);font-family:VazirLight;font-size:12px;height:30px}.form .loading{background-color:#fff;border-radius:5px;height:100%;right:0;top:0;z-index:4}.form .loading,.form .loading .text{position:absolute;text-align:center;width:100%}.form .loading .text{font-family:VazirBold;height:35px;line-height:35px;top:calc(50% - 20px)}::ng-deep .form .loading .icon{font-size:20px!important;line-height:30px;margin-left:5px;position:relative;top:5px}.form-buttons,.form-error{float:right;width:100%}.form-error{color:var(--red-cc);font-size:11px;height:15px;line-height:8px;margin-top:10px;padding:0 10px;position:relative;text-align:center}.form-error .message{float:left;width:calc(100% - 40px)}.form-error .icon{float:right;height:20px;line-height:6px;right:0;top:0;width:40px}.form .inputs{margin:0 -15px}@media (max-width:399.98px){::ng-deep .form .form-input-con.bank-card,::ng-deep .form .form-input-con.button:not(.save-form-btn):not(.erase-form-btn):not(.search-form-inp),::ng-deep .form .form-input-con.checkbox:not(.search-form-inp),::ng-deep .form .form-input-con.date:not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.select:not(.plaque-part-item):not(.plaque-inp):not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.text:not(.plaque-part-item):not(.plaque-inp):not(.bank-card-part-item):not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.textarea{margin-left:0!important;margin-right:0!important;width:100%!important}}@media (min-width:400px) and (max-width:499.98px){::ng-deep .form .form-input-con.bank-card,::ng-deep .form .form-input-con.button:not(.save-form-btn):not(.erase-form-btn):not(.search-form-inp),::ng-deep .form .form-input-con.checkbox:not(.search-form-inp),::ng-deep .form .form-input-con.date:not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.select:not(.plaque-part-item):not(.plaque-inp):not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.text:not(.plaque-part-item):not(.plaque-inp):not(.bank-card-part-item):not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.textarea{margin-left:0!important;margin-right:0!important;width:100%!important}}@media (min-width:500px) and (max-width:599.98px){::ng-deep .form .form-input-con.bank-card,::ng-deep .form .form-input-con.button:not(.save-form-btn):not(.erase-form-btn):not(.search-form-inp),::ng-deep .form .form-input-con.checkbox:not(.search-form-inp),::ng-deep .form .form-input-con.date:not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.select:not(.plaque-part-item):not(.plaque-inp):not(.table-search):not(.search-form-inp),::ng-deep .form .form-input-con.text:not(.plaque-part-item):not(.plaque-inp):not(.bank-card-part-item):not(.table-search):not(.search-form-inp){margin-left:0!important;margin-right:0!important;width:50%!important}::ng-deep .form .form-input-con.textarea{margin-left:0!important;margin-right:0!important;width:100%!important}}"]
4141
4141
  },] }
4142
4142
  ];
4143
4143
  FormComponent.ctorParameters = function () { return []; };