@indigina/kendo 2.0.26 → 2.0.27

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.
@@ -1080,7 +1080,7 @@ class HttpService {
1080
1080
  delete(path) {
1081
1081
  return this.httpClient.delete(this.createUrl(path)).pipe(tap(() => this.showSuccessMessage('ToastrMessages.RemovedSuccessfully')), catchError((err) => this.handleServerError(err)));
1082
1082
  }
1083
- post(path, data, showSuccessMessage = true, successTranslateMessage = null) {
1083
+ post(path, data, successTranslateMessage = null, showSuccessMessage = true) {
1084
1084
  return this.httpClient.post(this.createUrl(path), data).pipe(tap(() => {
1085
1085
  if (showSuccessMessage) {
1086
1086
  this.showSuccessMessage(successTranslateMessage ?? 'ToastrMessages.SavedSuccessfully');