@indigina/kendo 2.0.24 → 2.0.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/kendo",
3
- "version": "2.0.24",
3
+ "version": "2.0.26",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^21.1.3",
6
6
  "@angular/common": "^21.1.3",
@@ -10,8 +10,8 @@
10
10
  "@ngx-loading-bar/core": "^7.0.1",
11
11
  "@ngx-loading-bar/http-client": "^7.0.1",
12
12
  "@microsoft/signalr": "^10.0.0",
13
- "@azure/msal-angular": "^4.0.4",
14
- "@azure/msal-browser": "^4.2.0",
13
+ "@azure/msal-angular": "^5.0.4",
14
+ "@azure/msal-browser": "^5.2.0",
15
15
  "moment": "^2.30.1",
16
16
  "moment-timezone": "^0.6.0"
17
17
  },
@@ -226,6 +226,10 @@ declare abstract class AppSettings {
226
226
  static ɵprov: i0.ɵɵInjectableDeclaration<AppSettings>;
227
227
  }
228
228
 
229
+ interface HttpRequestOptions {
230
+ muteNotFoundError?: boolean;
231
+ }
232
+
229
233
  declare class SettingsService {
230
234
  putCurrentCallbackPath(): void;
231
235
  putCallbackPath(pathUri: string): void;
@@ -252,10 +256,6 @@ declare class AppToastrService {
252
256
  static ɵprov: i0.ɵɵInjectableDeclaration<AppToastrService>;
253
257
  }
254
258
 
255
- interface HttpRequestOptions {
256
- muteNotFoundError?: boolean;
257
- }
258
-
259
259
  declare class HttpService {
260
260
  private appToastrService;
261
261
  private httpClient;
@@ -266,7 +266,7 @@ declare class HttpService {
266
266
  constructor(appToastrService: AppToastrService, httpClient: HttpClient, appSettings: AppSettings, translate: TranslateService, router: Router, settingsService: SettingsService);
267
267
  get<T>(path: string, options?: HttpRequestOptions): Observable<T>;
268
268
  delete(path: string): Observable<object>;
269
- post<T>(path: string, data: T | FormData, successTranslateMessage?: string): Observable<T>;
269
+ post<T>(path: string, data: T | FormData, showSuccessMessage?: boolean, successTranslateMessage?: string): Observable<T>;
270
270
  put<T>(path: string, data: T | FormData, successTranslateMessage?: string, showSuccessMessage?: boolean): Observable<T>;
271
271
  createUrl(path: string): string;
272
272
  private handleServerError;